mm/gup: fix memfd_pin_folios alloc race panic
authorSteve Sistare <steven.sistare@oracle.com>
Tue, 3 Sep 2024 14:25:21 +0000 (07:25 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Thu, 26 Sep 2024 21:01:43 +0000 (14:01 -0700)
If memfd_pin_folios tries to create a hugetlb page, but someone else
already did, then folio gets the value -EEXIST here:

        folio = memfd_alloc_folio(memfd, start_idx);
        if (IS_ERR(folio)) {
                ret = PTR_ERR(folio);
                if (ret != -EEXIST)
                        goto err;

then on the next trip through the "while start_idx" loop we panic here:

        if (folio) {
                folio_put(folio);

To fix, set the folio to NULL on error.

Link: https://lkml.kernel.org/r/1725373521-451395-6-git-send-email-steven.sistare@oracle.com
Fixes: 89c1905d9c14 ("mm/gup: introduce memfd_pin_folios() for pinning memfd folios")
Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
Acked-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Jason Gunthorpe <jgg@nvidia.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Muchun Song <muchun.song@linux.dev>
Cc: Peter Xu <peterx@redhat.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/gup.c

index 3e7eac9a4f2b4c4536bbe46bd9da496f01195c10..8d9b560a0fec2f8e29a380139a3a2ddf68cb50f7 100644 (file)
--- a/mm/gup.c
+++ b/mm/gup.c
@@ -3702,6 +3702,7 @@ long memfd_pin_folios(struct file *memfd, loff_t start, loff_t end,
                                        ret = PTR_ERR(folio);
                                        if (ret != -EEXIST)
                                                goto err;
+                                       folio = NULL;
                                }
                        }
                }