]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
mm/memory: do not populate page table entries beyond i_size
authorKiryl Shutsemau <kas@kernel.org>
Mon, 27 Oct 2025 11:56:35 +0000 (11:56 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Nov 2025 09:36:07 +0000 (10:36 +0100)
commit 74207de2ba10c2973334906822dc94d2e859ffc5 upstream.

Patch series "Fix SIGBUS semantics with large folios", v3.

Accessing memory within a VMA, but beyond i_size rounded up to the next
page size, is supposed to generate SIGBUS.

Darrick reported[1] an xfstests regression in v6.18-rc1.  generic/749
failed due to missing SIGBUS.  This was caused by my recent changes that
try to fault in the whole folio where possible:

        19773df031bc ("mm/fault: try to map the entire file folio in finish_fault()")
        357b92761d94 ("mm/filemap: map entire large folio faultaround")

These changes did not consider i_size when setting up PTEs, leading to
xfstest breakage.

However, the problem has been present in the kernel for a long time -
since huge tmpfs was introduced in 2016.  The kernel happily maps
PMD-sized folios as PMD without checking i_size.  And huge=always tmpfs
allocates PMD-size folios on any writes.

I considered this corner case when I implemented a large tmpfs, and my
conclusion was that no one in their right mind should rely on receiving a
SIGBUS signal when accessing beyond i_size.  I cannot imagine how it could
be useful for the workload.

But apparently filesystem folks care a lot about preserving strict SIGBUS
semantics.

Generic/749 was introduced last year with reference to POSIX, but no real
workloads were mentioned.  It also acknowledged the tmpfs deviation from
the test case.

POSIX indeed says[3]:

        References within the address range starting at pa and
        continuing for len bytes to whole pages following the end of an
        object shall result in delivery of a SIGBUS signal.

The patchset fixes the regression introduced by recent changes as well as
more subtle SIGBUS breakage due to split failure on truncation.

This patch (of 2):

Accesses within VMA, but beyond i_size rounded up to PAGE_SIZE are
supposed to generate SIGBUS.

Recent changes attempted to fault in full folio where possible.  They did
not respect i_size, which led to populating PTEs beyond i_size and
breaking SIGBUS semantics.

Darrick reported generic/749 breakage because of this.

However, the problem existed before the recent changes.  With huge=always
tmpfs, any write to a file leads to PMD-size allocation.  Following the
fault-in of the folio will install PMD mapping regardless of i_size.

Fix filemap_map_pages() and finish_fault() to not install:
  - PTEs beyond i_size;
  - PMD mappings across i_size;

Make an exception for shmem/tmpfs that for long time intentionally
mapped with PMDs across i_size.

Link: https://lkml.kernel.org/r/20251027115636.82382-1-kirill@shutemov.name
Link: https://lkml.kernel.org/r/20251027115636.82382-2-kirill@shutemov.name
Signed-off-by: Kiryl Shutsemau <kas@kernel.org>
Fixes: 6795801366da ("xfs: Support large folios")
Reported-by: "Darrick J. Wong" <djwong@kernel.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Baolin Wang <baolin.wang@linux.alibaba.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Dave Chinner <david@fromorbit.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Liam Howlett <liam.howlett@oracle.com>
Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Mike Rapoport <rppt@kernel.org>
Cc: Rik van Riel <riel@surriel.com>
Cc: Shakeel Butt <shakeel.butt@linux.dev>
Cc: Suren Baghdasaryan <surenb@google.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Kiryl Shutsemau <kas@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
mm/filemap.c
mm/memory.c

index ec69fadf014cd76d2ecb97bc5b2dfb627420694a..d8d9c0f0beb6d95d18e9c6f83b334e5ae6795bc7 100644 (file)
@@ -3653,13 +3653,27 @@ vm_fault_t filemap_map_pages(struct vm_fault *vmf,
        vm_fault_t ret = 0;
        unsigned long rss = 0;
        unsigned int nr_pages = 0, mmap_miss = 0, mmap_miss_saved, folio_type;
+       bool can_map_large;
 
        rcu_read_lock();
        folio = next_uptodate_folio(&xas, mapping, end_pgoff);
        if (!folio)
                goto out;
 
-       if (filemap_map_pmd(vmf, folio, start_pgoff)) {
+       file_end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE) - 1;
+       end_pgoff = min(end_pgoff, file_end);
+
+       /*
+        * Do not allow to map with PTEs beyond i_size and with PMD
+        * across i_size to preserve SIGBUS semantics.
+        *
+        * Make an exception for shmem/tmpfs that for long time
+        * intentionally mapped with PMDs across i_size.
+        */
+       can_map_large = shmem_mapping(mapping) ||
+               file_end >= folio_next_index(folio);
+
+       if (can_map_large && filemap_map_pmd(vmf, folio, start_pgoff)) {
                ret = VM_FAULT_NOPAGE;
                goto out;
        }
@@ -3672,10 +3686,6 @@ vm_fault_t filemap_map_pages(struct vm_fault *vmf,
                goto out;
        }
 
-       file_end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE) - 1;
-       if (end_pgoff > file_end)
-               end_pgoff = file_end;
-
        folio_type = mm_counter_file(folio);
        do {
                unsigned long end;
index b6daa0e673a54958b9c95f29d63371ae2bdea02c..090e9c6f99920928a7069d46d63a8af1a8719f32 100644 (file)
@@ -68,6 +68,7 @@
 #include <linux/gfp.h>
 #include <linux/migrate.h>
 #include <linux/string.h>
+#include <linux/shmem_fs.h>
 #include <linux/memory-tiers.h>
 #include <linux/debugfs.h>
 #include <linux/userfaultfd_k.h>
@@ -5088,6 +5089,8 @@ fallback:
        else
                page = vmf->page;
 
+       folio = page_folio(page);
+
        /*
         * check even for read faults because we might have lost our CoWed
         * page
@@ -5098,8 +5101,25 @@ fallback:
                        return ret;
        }
 
+       if (!needs_fallback && vma->vm_file) {
+               struct address_space *mapping = vma->vm_file->f_mapping;
+               pgoff_t file_end;
+
+               file_end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
+
+               /*
+                * Do not allow to map with PTEs beyond i_size and with PMD
+                * across i_size to preserve SIGBUS semantics.
+                *
+                * Make an exception for shmem/tmpfs that for long time
+                * intentionally mapped with PMDs across i_size.
+                */
+               needs_fallback = !shmem_mapping(mapping) &&
+                       file_end < folio_next_index(folio);
+       }
+
        if (pmd_none(*vmf->pmd)) {
-               if (PageTransCompound(page)) {
+               if (!needs_fallback && PageTransCompound(page)) {
                        ret = do_set_pmd(vmf, page);
                        if (ret != VM_FAULT_FALLBACK)
                                return ret;
@@ -5111,7 +5131,6 @@ fallback:
                        return VM_FAULT_OOM;
        }
 
-       folio = page_folio(page);
        nr_pages = folio_nr_pages(folio);
 
        /*