]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ext4: avoid ptr null pointer dereference
authorBaokun Li <libaokun1@huawei.com>
Tue, 16 Jul 2024 09:29:29 +0000 (17:29 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Jul 2024 11:21:25 +0000 (13:21 +0200)
When commit 13df4d44a3aa ("ext4: fix slab-out-of-bounds in
ext4_mb_find_good_group_avg_frag_lists()") was backported to stable, the
commit f536808adcc3 ("ext4: refactor out ext4_generic_attr_store()") that
uniformly determines if the ptr is null is not merged in, so it needs to
be judged whether ptr is null or not in each case of the switch, otherwise
null pointer dereferencing may occur.

Fixes: 677ff4589f15 ("ext4: fix slab-out-of-bounds in ext4_mb_find_good_group_avg_frag_lists()")
Signed-off-by: Baokun Li <libaokun1@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/sysfs.c

index 63cbda3700ea93745a5aff1586854ae42a3d9f5e..d65dccb44ed5922ba5ee051af7d24d083d37aefe 100644 (file)
@@ -473,6 +473,8 @@ static ssize_t ext4_attr_store(struct kobject *kobj,
                        *((unsigned int *) ptr) = t;
                return len;
        case attr_clusters_in_group:
+               if (!ptr)
+                       return 0;
                ret = kstrtouint(skip_spaces(buf), 0, &t);
                if (ret)
                        return ret;