]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
fs/sysv: Null check to prevent null-ptr-deref bug
authorPrince Kumar Maurya <princekumarmaurya06@gmail.com>
Wed, 31 May 2023 01:31:41 +0000 (18:31 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Aug 2023 09:33:56 +0000 (11:33 +0200)
commit ea2b62f305893992156a798f665847e0663c9f41 upstream.

sb_getblk(inode->i_sb, parent) return a null ptr and taking lock on
that leads to the null-ptr-deref bug.

Reported-by: syzbot+aad58150cbc64ba41bdc@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=aad58150cbc64ba41bdc
Signed-off-by: Prince Kumar Maurya <princekumarmaurya06@gmail.com>
Message-Id: <20230531013141.19487-1-princekumarmaurya06@gmail.com>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/sysv/itree.c

index 31f66053e2393bf9beea05f47c75887052fc6a53..e3d1673b8ec9728c265b54dc3752b096f257a663 100644 (file)
@@ -145,6 +145,10 @@ static int alloc_branch(struct inode *inode,
                 */
                parent = block_to_cpu(SYSV_SB(inode->i_sb), branch[n-1].key);
                bh = sb_getblk(inode->i_sb, parent);
+               if (!bh) {
+                       sysv_free_block(inode->i_sb, branch[n].key);
+                       break;
+               }
                lock_buffer(bh);
                memset(bh->b_data, 0, blocksize);
                branch[n].bh = bh;