]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
fat: fix using uninitialized fields of fat_inode/fsinfo_inode
authorOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Fri, 10 Mar 2017 00:17:37 +0000 (16:17 -0800)
committerWilly Tarreau <w@1wt.eu>
Tue, 20 Jun 2017 12:04:27 +0000 (14:04 +0200)
commit496355ec8c2f26fa65a5650ce4a0d89a3fc2bf46
tree8c0e03356f9d017b7843cdd62b87df3f9fd46d35
parent51f2df44a30f0d7c32d84d7dc570eda8829291b0
fat: fix using uninitialized fields of fat_inode/fsinfo_inode

commit c0d0e351285161a515396b7b1ee53ec9ffd97e3c upstream.

Recently fallocate patch was merged and it uses
MSDOS_I(inode)->mmu_private at fat_evict_inode().  However,
fat_inode/fsinfo_inode that was introduced in past didn't initialize
MSDOS_I(inode) properly.

With those combinations, it became the cause of accessing random entry
in FAT area.

Link: http://lkml.kernel.org/r/87pohrj4i8.fsf@mail.parknet.co.jp
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Reported-by: Moreno Bartalucci <moreno.bartalucci@tecnorama.it>
Tested-by: Moreno Bartalucci <moreno.bartalucci@tecnorama.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Willy Tarreau <w@1wt.eu>
fs/fat/inode.c