aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDongliang Mu <[email protected]>2022-03-22 14:38:39 -0700
committerLinus Torvalds <[email protected]>2022-03-22 15:57:00 -0700
commit714fbf2647b1a33d914edd695d4da92029c7e7c0 (patch)
treecc103b8f939c5560021748337656a9e76286f4f6
parent2b76e68d7249f2f209b3ee3d15e8a2fb805220a3 (diff)
ntfs: add sanity check on allocation size
ntfs_read_inode_mount invokes ntfs_malloc_nofs with zero allocation size. It triggers one BUG in the __ntfs_malloc function. Fix this by adding sanity check on ni->attr_list_size. Link: https://lkml.kernel.org/r/[email protected] Reported-by: [email protected] Signed-off-by: Dongliang Mu <[email protected]> Acked-by: Anton Altaparmakov <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--fs/ntfs/inode.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ntfs/inode.c b/fs/ntfs/inode.c
index 4474adb393ca..517b71c73aa9 100644
--- a/fs/ntfs/inode.c
+++ b/fs/ntfs/inode.c
@@ -1881,6 +1881,10 @@ int ntfs_read_inode_mount(struct inode *vi)
}
/* Now allocate memory for the attribute list. */
ni->attr_list_size = (u32)ntfs_attr_size(a);
+ if (!ni->attr_list_size) {
+ ntfs_error(sb, "Attr_list_size is zero");
+ goto put_err_out;
+ }
ni->attr_list = ntfs_malloc_nofs(ni->attr_list_size);
if (!ni->attr_list) {
ntfs_error(sb, "Not enough memory to allocate buffer "