Linux kernel -stable discussions
 help / color / mirror / Atom feed
* [PATCH 6.6.y] ext4: filesystems without casefold feature cannot be mounted with siphash
@ 2025-01-24  1:23 Rajani kantha
  2025-01-30 12:58 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Rajani kantha @ 2025-01-24  1:23 UTC (permalink / raw)
  To: lizhi.xu, tytso, stable

From: Lizhi Xu <lizhi.xu@windriver.com>

[ upstream commit 985b67cd86392310d9e9326de941c22fc9340eec ]

When mounting the ext4 filesystem, if the default hash version is set to
DX_HASH_SIPHASH but the casefold feature is not set, exit the mounting.

Reported-by: syzbot+340581ba9dceb7e06fb3@syzkaller.appspotmail.com
Signed-off-by: Lizhi Xu <lizhi.xu@windriver.com>
Link: https://patch.msgid.link/20240605012335.44086-1-lizhi.xu@windriver.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Rajani Kantha <rajanikantha@engineer.com>
---
 fs/ext4/super.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 71ced0ada9a2..7522bd019639 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -3626,6 +3626,13 @@ int ext4_feature_set_ok(struct super_block *sb, int readonly)
 		return 0;
 	}
 #endif
+	if (EXT4_SB(sb)->s_es->s_def_hash_version == DX_HASH_SIPHASH &&
+	    !ext4_has_feature_casefold(sb)) {
+		ext4_msg(sb, KERN_ERR,
+			 "Filesystem without casefold feature cannot be "
+			 "mounted with siphash");
+		return 0;
+	}

 	if (readonly)
 		return 1;
--
2.35.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-01-30 12:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-24  1:23 [PATCH 6.6.y] ext4: filesystems without casefold feature cannot be mounted with siphash Rajani kantha
2025-01-30 12:58 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox