memfd: check for non-NULL file_seals in memfd_create() syscall
authorRoberto Sassu <roberto.sassu@huawei.com>
Wed, 7 Jun 2023 13:24:27 +0000 (15:24 +0200)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 19 Jun 2023 20:19:31 +0000 (13:19 -0700)
commit935d44acf621aa0688fef8312dec3e5940f38f4e
treeeef706b0b5d6eb69ca354954d96c52119c34d232
parent95a301eefa82057571207edd06ea36218985a75e
memfd: check for non-NULL file_seals in memfd_create() syscall

Ensure that file_seals is non-NULL before using it in the memfd_create()
syscall.  One situation in which memfd_file_seals_ptr() could return a
NULL pointer when CONFIG_SHMEM=n, oopsing the kernel.

Link: https://lkml.kernel.org/r/20230607132427.2867435-1-roberto.sassu@huaweicloud.com
Fixes: 47b9012ecdc7 ("shmem: add sealing support to hugetlb-backed memfd")
Signed-off-by: Roberto Sassu <roberto.sassu@huawei.com>
Cc: Marc-Andr Lureau <marcandre.lureau@redhat.com>
Cc: Mike Kravetz <mike.kravetz@oracle.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/memfd.c