linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* Regression: mmap rejects shared, read-only mappings of write-sealed memfds
@ 2024-11-27 20:49 Julian Orth
  2024-11-27 21:59 ` Lorenzo Stoakes
  0 siblings, 1 reply; 2+ messages in thread
From: Julian Orth @ 2024-11-27 20:49 UTC (permalink / raw)
  To: Lorenzo Stoakes; +Cc: linux-mm, linux-kernel

Since around

    5de19506 mm: resolve faulty mmap_region() error path behaviour

mmap rejects shared, read-only mapping of memfds that have a write-seal applied.

Before the commit, the code in mmap_region was

    if (file) {
        vma->vm_file = get_file(file);
        error = mmap_file(file, vma);
        if (error)
            goto unmap_and_free_vma;

        if (vma_is_shared_maywrite(vma)) {
            error = mapping_map_writable(file->f_mapping);

where mmap_file would clear the VM_MAYWRITE flag for write-sealed memfds.

After the commit, the code in mmap_region is simply

    if (file && is_shared_maywrite(vm_flags)) {
        int error = mapping_map_writable(file->f_mapping);

with mmap_file not being called until much later.

This regression seems to have been first released in 6.12 and is still
present on master.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-11-27 21:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-11-27 20:49 Regression: mmap rejects shared, read-only mappings of write-sealed memfds Julian Orth
2024-11-27 21:59 ` Lorenzo Stoakes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox