lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1434035567-12651-1-git-send-email-waydi1@gmail.com> Date: Fri, 12 Jun 2015 00:12:47 +0900 From: Seunghun Lee <waydi1@...il.com> To: tytso@....edu Cc: linux-ext4@...r.kernel.org, linux-kernel@...r.kernel.org, Seunghun Lee <waydi1@...il.com> Subject: [PATCH] ext4 crypto: prevent mount when blocksize != pagesize Encryption mode is unsupported when blocksize != pagesize. Signed-off-by: Seunghun Lee <waydi1@...il.com> --- fs/ext4/super.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 31e85be..032c9e3 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -1583,6 +1583,15 @@ static int handle_mount_opt(struct super_block *sb, char *opt, int token, IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, arg); } else if (token == Opt_test_dummy_encryption) { #ifdef CONFIG_EXT4_FS_ENCRYPTION + int blocksize = + BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size); + + if (blocksize != PAGE_CACHE_SIZE) { + ext4_msg(sb, KERN_ERR, + "unsupported blocksize for Test dummy encryption mode"); + return -1; + } + sbi->s_mount_flags |= EXT4_MF_TEST_DUMMY_ENCRYPTION; ext4_msg(sb, KERN_WARNING, "Test dummy encryption mode enabled"); -- 2.3.5 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists