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: <1382030698-8746-1-git-send-email-cmaiolino@redhat.com> Date: Thu, 17 Oct 2013 14:24:58 -0300 From: Carlos Maiolino <cmaiolino@...hat.com> To: linux-ext4@...r.kernel.org Subject: [PATCH] ext2: Make sb magic number endianness conversion consistent All ext2_super_block fields are converted from le16 to cpu when checked or loaded into memory. Magic number check is the only field where we convert the magic number to le16. So, make the conversion pattern consistent with the remaining code Signed-off-by: Carlos Maiolino <cmaiolino@...hat.com> --- fs/ext2/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 2885349..808f99f 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -927,7 +927,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent) } es = (struct ext2_super_block *) (((char *)bh->b_data) + offset); sbi->s_es = es; - if (es->s_magic != cpu_to_le16(EXT2_SUPER_MAGIC)) { + if (le16_to_cpu(es->s_magic) != EXT2_SUPER_MAGIC) { ext2_msg(sb, KERN_ERR, "error: magic mismatch"); goto failed_mount; } -- 1.8.1.4 -- 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