* [PATCH v2 01/40] mm/vma: fix mmap_prepare file handling, remove file_doesnt_need_get
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 15:40 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 02/40] mm/vma: predicate setting mmap_prepare VMA fields on new vma alloc Lorenzo Stoakes (ARM)
` (39 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
The map->file_doesnt_need_get flag is confusing and the existing
implementation has holes.
Drivers are permitted to change the owning file of a mapping. If they do
so, they are required to take a reference on that file.
The mmap() operation which ultimately invokes __mmap_region() is guaranteed
to drop the refcount for the original file the mapping was made under, but
this is not true for the replaced file.
This has been addressed so far by tracking map->file_doesnt_need_get, which
is rather poorly named and unfortunately fails to correctly track whether
or not an additional put were needed in a number of cases.
Make life easier by removing this flag, and instead drop the reference for
both mmap_prepare and the deprecated mmap callback in a new function
put_map().
Track whether this needs to be done by aligning mmap_state with
vm_area_desc and store the original file in the map->file field, keeping
the updated file in map->vm_file.
In order to have the same behaviour for both types of hooks, only drop the
reference __mmap_new_file_vma() itself took in its error path, deferring
the replaced file's reference to put_map().
To make this work correctly, map->vm_file has to be updated before any
error handling, so update __mmap_new_file_vma() and call_mmap_prepare() to
set this field first.
Also when mmap_prepare() changes the file and is then merged, the reference
count also must be decremented, so update the logic to call put_map() in
this case too.
Also update __compat_vma_mmap() to manually perform this step for stacked
file systems using the compatibility layer, and update
compat_set_vma_from_desc() to replace vma_set_file() with a correct
refcount/file update.
No in-tree driver is impacted by the incorrect implementation of this
currently (no driver that does this is mergeable for one), so this does not
need to be a fix.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/internal.h | 1 +
mm/util.c | 5 +++-
mm/vma.c | 95 ++++++++++++++++++++++++++++++++++-------------------------
mm/vma.h | 6 ++--
4 files changed, 64 insertions(+), 43 deletions(-)
diff --git a/mm/internal.h b/mm/internal.h
index 0dca33db068f..fe576d468af4 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -7,6 +7,7 @@
#ifndef __MM_INTERNAL_H
#define __MM_INTERNAL_H
+#include <linux/file.h>
#include <linux/fs.h>
#include <linux/khugepaged.h>
#include <linux/mm.h>
diff --git a/mm/util.c b/mm/util.c
index bf0513d1d3d0..016932780925 100644
--- a/mm/util.c
+++ b/mm/util.c
@@ -1228,8 +1228,11 @@ int __compat_vma_mmap(struct vm_area_desc *desc,
/* Perform any preparatory tasks for mmap action. */
err = mmap_action_prepare(desc);
- if (err)
+ if (err) {
+ if (desc->vm_file != vma->vm_file)
+ fput(desc->vm_file);
return err;
+ }
/* Update the VMA from the descriptor. */
compat_set_vma_from_desc(vma, desc);
/* Complete any specified mmap actions. */
diff --git a/mm/vma.c b/mm/vma.c
index 55917d097933..a319a9fc2f29 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -24,7 +24,8 @@ struct mmap_state {
vm_flags_t vm_flags;
vma_flags_t vma_flags;
};
- struct file *file;
+ struct file *file; /* mmap()-specified file. */
+ struct file *vm_file; /* May be updated by mmap_prepare. */
pgprot_t page_prot;
/* User-defined fields, perhaps updated by .mmap_prepare(). */
@@ -43,8 +44,6 @@ struct mmap_state {
/* Determine if we can check KSM flags early in mmap() logic. */
bool check_ksm_early :1;
- /* If .mmap_prepare changed the file, we don't need to pin. */
- bool file_doesnt_need_get :1;
};
#define MMAP_STATE(name, mm_, vmi_, addr_, len_, pgoff_, anon_pgoff_, vma_flags_, file_) \
@@ -58,6 +57,7 @@ struct mmap_state {
.pglen = PHYS_PFN(len_), \
.vma_flags = vma_flags_, \
.file = file_, \
+ .vm_file = file_, \
.page_prot = vma_flags_to_page_prot(vma_flags_), \
}
@@ -70,7 +70,7 @@ struct mmap_state {
.vma_flags = (map_)->vma_flags, \
.pgoff = (map_)->pgoff, \
.anon_pgoff = (map_)->anon_pgoff, \
- .file = (map_)->file, \
+ .file = (map_)->vm_file, \
.prev = (map_)->prev, \
.middle = vma_, \
.next = (vma_) ? NULL : (map_)->next, \
@@ -2447,7 +2447,7 @@ void mm_drop_all_locks(struct mm_struct *mm)
*/
static bool accountable_mapping(struct mmap_state *map)
{
- const struct file *file = map->file;
+ const struct file *file = map->vm_file;
/*
* hugetlb has its own accounting separate from the core VM
@@ -2496,7 +2496,7 @@ static void vms_abort_munmap_vmas(struct vma_munmap_struct *vms,
static void update_ksm_flags(struct mmap_state *map)
{
- map->vma_flags = ksm_vma_flags(map->mm, map->file, map->vma_flags);
+ map->vma_flags = ksm_vma_flags(map->mm, map->vm_file, map->vma_flags);
}
static void set_desc_from_map(struct vm_area_desc *desc,
@@ -2506,7 +2506,7 @@ static void set_desc_from_map(struct vm_area_desc *desc,
desc->end = map->end;
desc->pgoff = map->pgoff;
- desc->vm_file = map->file;
+ desc->vm_file = map->vm_file;
desc->vma_flags = map->vma_flags;
desc->page_prot = map->page_prot;
}
@@ -2586,6 +2586,10 @@ static int __mmap_setup(struct mmap_state *map, struct vm_area_desc *desc,
return 0;
}
+static bool map_same_file(struct mmap_state *map)
+{
+ return map->vm_file == map->file;
+}
static int __mmap_new_file_vma(struct mmap_state *map,
struct vm_area_struct *vma)
@@ -2593,20 +2597,23 @@ static int __mmap_new_file_vma(struct mmap_state *map,
struct vma_iterator *vmi = map->vmi;
int error;
- vma->vm_file = map->file;
- if (!map->file_doesnt_need_get)
- get_file(map->file);
+ vma->vm_file = map->vm_file;
+ if (map_same_file(map))
+ get_file(map->vm_file);
- if (!map->file->f_op->mmap)
+ if (!map->vm_file->f_op->mmap)
return 0;
error = mmap_file(vma->vm_file, vma);
+ map->vm_file = vma->vm_file;
+
if (error) {
UNMAP_STATE(unmap, vmi, vma, vma->vm_start, vma->vm_end,
map->prev, map->next);
- fput(vma->vm_file);
- vma->vm_file = NULL;
+ if (map_same_file(map))
+ fput(map->vm_file);
+ vma->vm_file = NULL;
vma_iter_set(vmi, vma->vm_end);
/* Undo any partial mapping done by a device driver. */
unmap_region(&unmap);
@@ -2623,7 +2630,6 @@ static int __mmap_new_file_vma(struct mmap_state *map,
!vma_flags_test(&map->vma_flags, VMA_MAYWRITE_BIT) &&
vma_test(vma, VMA_MAYWRITE_BIT));
- map->file = vma->vm_file;
map->vma_flags = vma->flags;
return 0;
@@ -2631,7 +2637,7 @@ static int __mmap_new_file_vma(struct mmap_state *map,
static void map_set_anon(struct mmap_state *map)
{
- map->file = NULL;
+ map->vm_file = NULL;
map->vm_ops = NULL;
map->pgoff = map->addr >> PAGE_SHIFT;
}
@@ -2643,7 +2649,7 @@ static bool map_is_private(const struct mmap_state *map)
static bool map_is_anon(const struct mmap_state *map)
{
- return map_is_private(map) && !map->file;
+ return map_is_private(map) && !map->vm_file;
}
/*
@@ -2688,7 +2694,7 @@ static int __mmap_new_vma(struct mmap_state *map, struct vm_area_struct **vmap,
}
/* Invoke callbacks. */
- if (map->file)
+ if (map->vm_file)
error = __mmap_new_file_vma(map, vma);
else if (!is_anon)
error = shmem_zero_setup(vma);
@@ -2797,36 +2803,34 @@ static int call_mmap_prepare(struct mmap_state *map,
int err;
/* Invoke the hook. */
- err = vfs_mmap_prepare(map->file, desc);
- if (err)
- return err;
-
- /* It's invalid for mmap_preprare hooks to clear vm_ops. */
- if (!desc->vm_ops)
- return -EINVAL;
-
- err = call_action_prepare(map, desc);
+ err = vfs_mmap_prepare(map->vm_file, desc);
if (err)
return err;
/* Update fields permitted to be changed. */
map->pgoff = desc->pgoff;
- if (desc->vm_file != map->file) {
- map->file_doesnt_need_get = true;
- map->file = desc->vm_file;
- }
+ if (desc->vm_file != map->vm_file)
+ map->vm_file = desc->vm_file;
map->vma_flags = desc->vma_flags;
map->page_prot = desc->page_prot;
/* User-defined fields. */
map->vm_ops = desc->vm_ops;
map->vm_private_data = desc->private_data;
+ /* It's invalid for mmap_prepare hooks to clear vm_ops. */
+ if (!desc->vm_ops)
+ return -EINVAL;
+
+ err = call_action_prepare(map, desc);
+ if (err)
+ return err;
+
/*
* MAP_PRIVATE-/dev/zero mappings are an ancient way of getting
* anonymous mappings. Rather than allowing these mappings to be odd
* outliers, simply make them truly anonymous.
*/
- if (map_is_private(map) && file_is_dev_zero(map->file))
+ if (map_is_private(map) && file_is_dev_zero(map->vm_file))
map_set_anon(map);
return 0;
@@ -2845,7 +2849,7 @@ static void set_vma_user_defined_fields(struct vm_area_struct *vma,
*/
static bool can_set_ksm_flags_early(struct mmap_state *map)
{
- struct file *file = map->file;
+ struct file *file = map->vm_file;
/* Anonymous mappings have no driver which can change them. */
if (!file)
@@ -2868,6 +2872,20 @@ static bool can_set_ksm_flags_early(struct mmap_state *map)
return false;
}
+static void put_map(struct mmap_state *map)
+{
+ /*
+ * An error occurred or the VMA was merged.
+ *
+ * If the file was changed by the driver (which is required to increment
+ * the replacement file's reference count), drop its reference count.
+ *
+ * On error, the caller always drops the original file regardless.
+ */
+ if (map->vm_file && !map_same_file(map))
+ fput(map->vm_file);
+}
+
static unsigned long __mmap_region(struct file *file, unsigned long addr,
unsigned long len, vma_flags_t vma_flags,
unsigned long pgoff, struct list_head *uf)
@@ -2922,7 +2940,10 @@ static unsigned long __mmap_region(struct file *file, unsigned long addr,
__mmap_complete(&map, vma);
- if (have_mmap_prepare && allocated_new) {
+ if (!allocated_new) {
+ /* Merged, so need to drop refcount. */
+ put_map(&map);
+ } else if (have_mmap_prepare) {
error = mmap_action_complete(vma, &desc.action,
/*is_compat=*/false);
if (error)
@@ -2936,13 +2957,7 @@ static unsigned long __mmap_region(struct file *file, unsigned long addr,
if (map.charged)
vm_unacct_memory(map.charged);
abort_munmap:
- /*
- * This indicates that .mmap_prepare has set a new file, differing from
- * desc->vm_file. But since we're aborting the operation, only the
- * original file will be cleaned up. Ensure we clean up both.
- */
- if (map.file_doesnt_need_get)
- fput(map.file);
+ put_map(&map);
vms_abort_munmap_vmas(&map.vms, &map.mas_detach);
return error;
}
diff --git a/mm/vma.h b/mm/vma.h
index e97bd2dfa786..f15faa83f3d6 100644
--- a/mm/vma.h
+++ b/mm/vma.h
@@ -394,8 +394,10 @@ static inline void compat_set_vma_from_desc(struct vm_area_struct *vma,
/* Mutable fields. Populated with initial state. */
vma_set_pgoff(vma, desc->pgoff);
- if (desc->vm_file != vma->vm_file)
- vma_set_file(vma, desc->vm_file);
+ if (desc->vm_file != vma->vm_file) {
+ fput(vma->vm_file);
+ vma->vm_file = desc->vm_file;
+ }
vma->flags = desc->vma_flags;
vma->vm_page_prot = desc->page_prot;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 01/40] mm/vma: fix mmap_prepare file handling, remove file_doesnt_need_get
2026-09-14 14:57 ` [PATCH v2 01/40] mm/vma: fix mmap_prepare file handling, remove file_doesnt_need_get Lorenzo Stoakes (ARM)
@ 2026-09-14 15:40 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 15:40 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Christian Borntraeger, linux-scsi, Heiko Carstens, linux-rdma,
Marc Zyngier, linux-s390, selinux, bpf, Oliver Upton,
Vasily Gorbik, linux-perf-users, kvm, linux-trace-kernel,
dri-devel, Alexander Gordeev, kvmarm
> The map->file_doesnt_need_get flag is confusing and the existing
> implementation has holes.
>
> Drivers are permitted to change the owning file of a mapping. If they do
> so, they are required to take a reference on that file.
>
> The mmap() operation which ultimately invokes __mmap_region() is guaranteed
> to drop the refcount for the original file the mapping was made under, but
> this is not true for the replaced file.
>
> This has been addressed so far by tracking map->file_doesnt_need_get, which
> is rather poorly named and unfortunately fails to correctly track whether
> or not an additional put were needed in a number of cases.
>
> Make life easier by removing this flag, and instead drop the reference for
> [ ... ]
> No in-tree driver is impacted by the incorrect implementation of this
> currently (no driver that does this is mergeable for one), so this does not
> need to be a fix.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=1
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 02/40] mm/vma: predicate setting mmap_prepare VMA fields on new vma alloc
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
2026-09-14 14:57 ` [PATCH v2 01/40] mm/vma: fix mmap_prepare file handling, remove file_doesnt_need_get Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 15:55 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 03/40] mm/vma: introduce and use vma_[flags_]can_merge() Lorenzo Stoakes (ARM)
` (38 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
It only makes sense to manipulate VMA fields if we allocated a new VMA,
rather than merged it.
VMA merging does not compare vm_ops or vm_private_data, so a merged VMA
keeps its own, which is also what the legacy f_op->mmap path does since it
never touches an existing VMA. Previously set_vma_user_defined_fields()
overwrote the merged VMA's fields with those set for the new mapping. In
practice these are the same values, with rare exceptions such as shmem
selecting vm_ops based on whether the file has been unlinked, so no
user-visible change is expected.
Make this dependency explicit, and additionally constify have_mmap_prepare
while we're here.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/vma.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mm/vma.c b/mm/vma.c
index a319a9fc2f29..cd9e2113f66e 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -2892,7 +2892,7 @@ static unsigned long __mmap_region(struct file *file, unsigned long addr,
{
struct mm_struct *mm = current->mm;
struct vm_area_struct *vma = NULL;
- bool have_mmap_prepare = file && file->f_op->mmap_prepare;
+ const bool have_mmap_prepare = file && file->f_op->mmap_prepare;
VMA_ITERATOR(vmi, mm, addr);
const pgoff_t anon_pgoff = addr >> PAGE_SHIFT;
MMAP_STATE(map, mm, &vmi, addr, len, pgoff, anon_pgoff, vma_flags, file);
@@ -2935,7 +2935,7 @@ static unsigned long __mmap_region(struct file *file, unsigned long addr,
allocated_new = true;
}
- if (have_mmap_prepare && !map_is_anon(&map))
+ if (have_mmap_prepare && allocated_new && !map_is_anon(&map))
set_vma_user_defined_fields(vma, &map);
__mmap_complete(&map, vma);
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 02/40] mm/vma: predicate setting mmap_prepare VMA fields on new vma alloc
2026-09-14 14:57 ` [PATCH v2 02/40] mm/vma: predicate setting mmap_prepare VMA fields on new vma alloc Lorenzo Stoakes (ARM)
@ 2026-09-14 15:55 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 15:55 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Vasily Gorbik, Christian Borntraeger, kvmarm, kvm, linux-s390,
Heiko Carstens, Marc Zyngier, selinux, Oliver Upton,
linux-trace-kernel, linux-perf-users, linux-scsi,
Alexander Gordeev, linux-rdma, dri-devel, bpf
> It only makes sense to manipulate VMA fields if we allocated a new VMA,
> rather than merged it.
>
> VMA merging does not compare vm_ops or vm_private_data, so a merged VMA
> keeps its own, which is also what the legacy f_op->mmap path does since it
> never touches an existing VMA. Previously set_vma_user_defined_fields()
> overwrote the merged VMA's fields with those set for the new mapping. In
> practice these are the same values, with rare exceptions such as shmem
> selecting vm_ops based on whether the file has been unlinked, so no
> user-visible change is expected.
>
> Make this dependency explicit, and additionally constify have_mmap_prepare
> while we're here.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=2
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 03/40] mm/vma: introduce and use vma_[flags_]can_merge()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
2026-09-14 14:57 ` [PATCH v2 01/40] mm/vma: fix mmap_prepare file handling, remove file_doesnt_need_get Lorenzo Stoakes (ARM)
2026-09-14 14:57 ` [PATCH v2 02/40] mm/vma: predicate setting mmap_prepare VMA fields on new vma alloc Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 15:59 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 04/40] mm: consistently validate VMA state after mmap[_prepare] hooks Lorenzo Stoakes (ARM)
` (37 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Replace the open-coded VMA_SPECIAL_FLAGS check in the VMA merge logic with
two new functions vma_flags_can_merge() and vma_can_merge() and update the
merge logic to use the former.
This abstracts the check and expresses it in terms of the desired behaviour
rather than an arbitrary and confusing VMA flag.
This also lays the groundwork for making further improvements in VMA flag
usage.
Also update the userland VMA tests to reflect the change.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 21 +++++++++++++++++++++
mm/vma.c | 19 +++++++++++--------
tools/testing/vma/include/dup.h | 5 +++++
3 files changed, 37 insertions(+), 8 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 969594074fd2..68250ece4219 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1612,6 +1612,27 @@ static inline bool vma_is_shared_maywrite(const struct vm_area_struct *vma)
return is_shared_maywrite(&vma->flags);
}
+/**
+ * vma_flags_can_merge() - Do the specified VMA flags permit the VMA to be
+ * merged with another?
+ * @flags: The VMA flags to test.
+ * Returns: true if the flags permit merging, false otherwise.
+ */
+static inline bool vma_flags_can_merge(const vma_flags_t *flags)
+{
+ return !vma_flags_test_any_mask(flags, VMA_SPECIAL_FLAGS);
+}
+
+/**
+ * vma_can_merge() - Do @vma's flags permit it to be merged with another VMA?
+ * @vma: The VMA to test.
+ * Returns: true if the flags permit merging, otherwise false.
+ */
+static inline bool vma_can_merge(const struct vm_area_struct *vma)
+{
+ return vma_flags_can_merge(&vma->flags);
+}
+
/**
* vma_kernel_pagesize - Default page size granularity for this VMA.
* @vma: The user mapping.
diff --git a/mm/vma.c b/mm/vma.c
index cd9e2113f66e..dc74b3d721cc 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -924,13 +924,14 @@ static __must_check struct vm_area_struct *vma_merge_existing_range(
vmg->state = VMA_MERGE_NOMERGE;
+ if (!vma_flags_can_merge(&vmg->vma_flags))
+ return NULL;
/*
- * If a special mapping or if the range being modified is neither at the
- * furthermost left or right side of the VMA, then we have no chance of
- * merging and should abort.
+ * If the range being modified is neither at the furthermost left or
+ * right side of the VMA, then we have no chance of merging and should
+ * abort.
*/
- if (vma_flags_test_any_mask(&vmg->vma_flags, VMA_SPECIAL_FLAGS) ||
- (!left_side && !right_side))
+ if (!left_side && !right_side)
return NULL;
if (left_side)
@@ -1152,9 +1153,11 @@ struct vm_area_struct *vma_merge_new_range(struct vma_merge_struct *vmg)
vmg->state = VMA_MERGE_NOMERGE;
- /* Special VMAs are unmergeable, also if no prev/next. */
- if (vma_flags_test_any_mask(&vmg->vma_flags, VMA_SPECIAL_FLAGS) ||
- (!prev && !next))
+ if (!vma_flags_can_merge(&vmg->vma_flags))
+ return NULL;
+
+ /* VMAs with no prev/next are unmergeable. */
+ if (!prev && !next)
return NULL;
can_merge_left = can_vma_merge_left(vmg);
diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
index 16c09dac59d9..2fd422789717 100644
--- a/tools/testing/vma/include/dup.h
+++ b/tools/testing/vma/include/dup.h
@@ -1647,3 +1647,8 @@ static inline bool file_is_dev_zero(const struct file *file)
{
return file && file->f_op == &zero_fops;
}
+
+static inline bool vma_flags_can_merge(const vma_flags_t *flags)
+{
+ return !vma_flags_test_any_mask(flags, VMA_SPECIAL_FLAGS);
+}
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 03/40] mm/vma: introduce and use vma_[flags_]can_merge()
2026-09-14 14:57 ` [PATCH v2 03/40] mm/vma: introduce and use vma_[flags_]can_merge() Lorenzo Stoakes (ARM)
@ 2026-09-14 15:59 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 15:59 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Christian Borntraeger, linux-trace-kernel, linux-perf-users,
kvmarm, linux-scsi, selinux, kvm, bpf, Heiko Carstens,
Marc Zyngier, linux-rdma, Vasily Gorbik, linux-s390, Oliver Upton,
dri-devel, Alexander Gordeev
> Replace the open-coded VMA_SPECIAL_FLAGS check in the VMA merge logic with
> two new functions vma_flags_can_merge() and vma_can_merge() and update the
> merge logic to use the former.
>
> This abstracts the check and expresses it in terms of the desired behaviour
> rather than an arbitrary and confusing VMA flag.
>
> This also lays the groundwork for making further improvements in VMA flag
> usage.
>
> Also update the userland VMA tests to reflect the change.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=3
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 04/40] mm: consistently validate VMA state after mmap[_prepare] hooks
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (2 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 03/40] mm/vma: introduce and use vma_[flags_]can_merge() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 16:18 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 05/40] mm/vma: ensure mmap_prepare doesn't set actions on a mergeable vma Lorenzo Stoakes (ARM)
` (36 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
When the f_op->mmap_prepare or deprecated f_op->mmap hooks are invoked, the
driver might have done something crazy that is not permitted by the kernel.
Currently we check for three such cases in __mmap_new_file_vma(), but only
if the legacy f_op->mmap hook is used:
* Did sparc ADI result in invalid flags?
* Did the driver alter vma->vm_start?
* Did the driver make a file-backed mapping on a read-only file writable?
Generalise these checks for both mmap_prepare and mmap and apply to all
invocations of mmap_file(), the f_op->mmap and f_op->mmap_prepare handling
in the core VMA code and the mmap_prepare compatibility layer.
We also WARN_ON_ONCE() on these conditions as they are things that should
simply not occur in the kernel and it's important to call it out when it
does.
We invoke mmap_prepare_validate() after mmap_action_prepare(), as mmap
actions often manipulate state in the descriptor thus providing the final
state the VMA will be derived from.
Also call mmap_validate_vma_flags() in insert_vm_struct() to ensure that
special regions which are inserted (such as a VDSO or VVAR) also satisfy
the sanity checks.
This way every VMA established through an mmap hook, whether via mmap() or
the compatibility layer, or inserted via insert_vm_struct(), has been
validated. brk() VMAs never pass through a driver hook and so need no such
check.
While we're here, also fixup a couple disjoint blocks of #ifdef CONFIG_MMU.
Finally, update the VMA userland tests to reflect the change.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/internal.h | 49 +++++++++++++--------
mm/util.c | 19 +++++---
mm/vma.c | 96 ++++++++++++++++++++++++++++++++++-------
mm/vma.h | 24 +++++++++--
tools/testing/vma/include/dup.h | 10 +++++
5 files changed, 156 insertions(+), 42 deletions(-)
diff --git a/mm/internal.h b/mm/internal.h
index fe576d468af4..1ed11eaf276a 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -213,6 +213,24 @@ static inline void *folio_raw_mapping(const struct folio *folio)
return (void *)(mapping & ~FOLIO_MAPPING_FLAGS);
}
+/*
+ * If the VMA has a close hook then close it, and since closing it might leave
+ * it in an inconsistent state which makes the use of any hooks suspect, clear
+ * them down by installing dummy empty hooks.
+ */
+static inline void vma_close(struct vm_area_struct *vma)
+{
+ if (vma->vm_ops && vma->vm_ops->close) {
+ vma->vm_ops->close(vma);
+
+ /*
+ * The mapping is in an inconsistent state, and no further hooks
+ * may be invoked upon it.
+ */
+ vma->vm_ops = &vma_dummy_vm_ops;
+ }
+}
+
/*
* This is a file-backed mapping, and is about to be memory mapped - invoke its
* mmap hook and safely handle error conditions. On error, VMA hooks will be
@@ -225,8 +243,11 @@ static inline void *folio_raw_mapping(const struct folio *folio)
*/
static inline int mmap_file(struct file *file, struct vm_area_struct *vma)
{
- int err = vfs_mmap(file, vma);
+ const unsigned long prev_start = vma->vm_start;
+ const vma_flags_t prev_flags = vma->flags;
+ int err;
+ err = vfs_mmap(file, vma);
/*
* Either we tried to call the file hook for mmap() and an error arose
* or a driver set vma->vm_ops = NULL intending there to be no VMA
@@ -239,26 +260,16 @@ static inline int mmap_file(struct file *file, struct vm_area_struct *vma)
*/
if (unlikely(err || !vma->vm_ops))
vma->vm_ops = &vma_dummy_vm_ops;
+ if (unlikely(err))
+ return err;
- return err;
-}
-
-/*
- * If the VMA has a close hook then close it, and since closing it might leave
- * it in an inconsistent state which makes the use of any hooks suspect, clear
- * them down by installing dummy empty hooks.
- */
-static inline void vma_close(struct vm_area_struct *vma)
-{
- if (vma->vm_ops && vma->vm_ops->close) {
- vma->vm_ops->close(vma);
-
- /*
- * The mapping is in an inconsistent state, and no further hooks
- * may be invoked upon it.
- */
- vma->vm_ops = &vma_dummy_vm_ops;
+ err = mmap_hook_validate(prev_start, &prev_flags, vma);
+ if (unlikely(err)) {
+ vma->vm_start = prev_start;
+ vma_close(vma);
}
+
+ return err;
}
/* unmap_vmas is in mm/memory.c */
diff --git a/mm/util.c b/mm/util.c
index 016932780925..bdd5923eebc7 100644
--- a/mm/util.c
+++ b/mm/util.c
@@ -1224,19 +1224,28 @@ EXPORT_SYMBOL(compat_set_desc_from_vma);
int __compat_vma_mmap(struct vm_area_desc *desc,
struct vm_area_struct *vma)
{
+ struct vm_area_desc prev_desc;
int err;
+ /* Derive state prior to mmap_prepare hook. */
+ compat_set_desc_from_vma(&prev_desc, desc->file, vma);
/* Perform any preparatory tasks for mmap action. */
err = mmap_action_prepare(desc);
- if (err) {
- if (desc->vm_file != vma->vm_file)
- fput(desc->vm_file);
- return err;
- }
+ if (err)
+ goto err_put;
+ /* Check the caller did nothing crazy. */
+ err = mmap_prepare_validate(&prev_desc, desc);
+ if (err)
+ goto err_put;
/* Update the VMA from the descriptor. */
compat_set_vma_from_desc(vma, desc);
/* Complete any specified mmap actions. */
return mmap_action_complete(vma, &desc->action, /*is_compat=*/true);
+
+err_put:
+ if (desc->vm_file != vma->vm_file)
+ fput(desc->vm_file);
+ return err;
}
EXPORT_SYMBOL(__compat_vma_mmap);
diff --git a/mm/vma.c b/mm/vma.c
index dc74b3d721cc..626a18c08a26 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -2623,16 +2623,6 @@ static int __mmap_new_file_vma(struct mmap_state *map,
return error;
}
- /* Drivers cannot alter the address of the VMA. */
- WARN_ON_ONCE(map->addr != vma->vm_start);
- /*
- * Drivers should not permit writability when previously it was
- * disallowed.
- */
- VM_WARN_ON_ONCE(!vma_flags_same_pair(&map->vma_flags, &vma->flags) &&
- !vma_flags_test(&map->vma_flags, VMA_MAYWRITE_BIT) &&
- vma_test(vma, VMA_MAYWRITE_BIT));
-
map->vma_flags = vma->flags;
return 0;
@@ -2710,11 +2700,6 @@ static int __mmap_new_vma(struct mmap_state *map, struct vm_area_struct **vmap,
vma->flags = map->vma_flags;
}
-#ifdef CONFIG_SPARC64
- /* TODO: Fix SPARC ADI! */
- WARN_ON_ONCE(!arch_validate_flags(map->vm_flags));
-#endif
-
/* Lock the VMA since it is modified after insertion into VMA tree */
vma_start_write(vma);
vma_iter_store_new(vmi, vma);
@@ -2777,6 +2762,76 @@ static void __mmap_complete(struct mmap_state *map, struct vm_area_struct *vma)
vma_set_page_prot(vma);
}
+/* Check to ensure that the VMA flags of a newly mapped VMA are sane. */
+static int mmap_validate_vma_flags(const vma_flags_t *flags)
+{
+#ifdef CONFIG_SPARC64
+ const vm_flags_t legacy_flags = vma_flags_to_legacy(*flags);
+
+ /* TODO: Fix SPARC ADI! */
+ if (WARN_ON_ONCE(!arch_validate_flags(legacy_flags)))
+ return -EINVAL;
+#endif
+
+ return 0;
+}
+
+/* Check to ensure a driver hasn't done something crazy. */
+static int mmap_validate(unsigned long prev_start,
+ unsigned long curr_start,
+ const vma_flags_t *prev_flags,
+ const vma_flags_t *curr_flags)
+{
+ bool was_maywrite, is_maywrite;
+
+ /* Drivers cannot alter the address of the VMA. */
+ if (WARN_ON_ONCE(prev_start != curr_start))
+ return -EINVAL;
+
+ was_maywrite = vma_flags_test(prev_flags, VMA_MAYWRITE_BIT);
+ is_maywrite = vma_flags_test(curr_flags, VMA_MAYWRITE_BIT);
+
+ /* A driver may not make a previously unwritable mapping writable. */
+ if (WARN_ON_ONCE(!was_maywrite && is_maywrite))
+ return -EINVAL;
+
+ return mmap_validate_vma_flags(curr_flags);
+}
+
+/**
+ * mmap_prepare_validate() - Ensure the driver hasn't violated invariants in its
+ * f_op->mmap_prepare hook.
+ * @prev_desc: The VMA descriptor prior to the mmap_prepare hook being called.
+ * @desc: The VMA descriptor after the mmap_prepare hook has been called.
+ *
+ * Returns: 0 on success, otherwise an error.
+ */
+int mmap_prepare_validate(const struct vm_area_desc *prev_desc,
+ const struct vm_area_desc *desc)
+{
+ return mmap_validate(prev_desc->start, desc->start,
+ &prev_desc->vma_flags, &desc->vma_flags);
+}
+
+/**
+ * mmap_hook_validate() - Ensure the driver hasn't violated invariants in
+ * its f_op->mmap hook.
+ * @prev_start: The start of the mapping prior to the mmap hook.
+ * @prev_flags: The VMA flags set for the VMA prior to the mmap hook.
+ * @vma: The VMA after the hook has been applied.
+ *
+ * Returns: 0 on success, otherwise an error.
+ */
+int mmap_hook_validate(unsigned long prev_start,
+ const vma_flags_t *prev_flags,
+ const struct vm_area_struct *vma)
+{
+ const unsigned long start = vma->vm_start;
+ const vma_flags_t *flags = &vma->flags;
+
+ return mmap_validate(prev_start, start, prev_flags, flags);
+}
+
static int call_action_prepare(struct mmap_state *map,
struct vm_area_desc *desc)
{
@@ -2803,6 +2858,7 @@ static int call_action_prepare(struct mmap_state *map,
static int call_mmap_prepare(struct mmap_state *map,
struct vm_area_desc *desc)
{
+ const struct vm_area_desc prev_desc = *desc;
int err;
/* Invoke the hook. */
@@ -2828,6 +2884,11 @@ static int call_mmap_prepare(struct mmap_state *map,
if (err)
return err;
+ /* Check the caller did nothing crazy. */
+ err = mmap_prepare_validate(&prev_desc, desc);
+ if (err)
+ return err;
+
/*
* MAP_PRIVATE-/dev/zero mappings are an ancient way of getting
* anonymous mappings. Rather than allowing these mappings to be odd
@@ -3455,10 +3516,15 @@ int __vm_munmap(unsigned long start, size_t len, bool unlock)
int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
{
unsigned long charged = vma_pages(vma);
+ int err;
if (find_vma_intersection(mm, vma->vm_start, vma->vm_end))
return -ENOMEM;
+ err = mmap_validate_vma_flags(&vma->flags);
+ if (err)
+ return err;
+
if (vma_test(vma, VMA_ACCOUNT_BIT) &&
security_vm_enough_memory_mm(mm, charged))
return -ENOMEM;
diff --git a/mm/vma.h b/mm/vma.h
index f15faa83f3d6..77d395b8b103 100644
--- a/mm/vma.h
+++ b/mm/vma.h
@@ -782,14 +782,19 @@ struct vm_area_struct *vm_area_alloc(struct mm_struct *mm);
struct vm_area_struct *vm_area_dup(struct vm_area_struct *orig);
void vm_area_free(struct vm_area_struct *vma);
-/* vma_exec.c */
#ifdef CONFIG_MMU
+int mmap_prepare_validate(const struct vm_area_desc *prev_desc,
+ const struct vm_area_desc *desc);
+
+int mmap_hook_validate(unsigned long prev_start,
+ const vma_flags_t *prev_flags,
+ const struct vm_area_struct *vma);
+
+/* vma_exec.c */
int create_init_stack_vma(struct mm_struct *mm, struct vm_area_struct **vmap,
unsigned long *top_mem_p);
int relocate_vma_down(struct vm_area_struct *vma, unsigned long shift);
-#endif
-#ifdef CONFIG_MMU
/*
* Denies creating a writable executable mapping or gaining executable permissions.
*
@@ -838,6 +843,19 @@ static inline bool map_deny_write_exec(const vma_flags_t *old,
return false;
}
+#else
+static inline int mmap_prepare_validate(const struct vm_area_desc *prev_desc,
+ const struct vm_area_desc *desc)
+{
+ return 0;
+}
+
+static inline int mmap_hook_validate(unsigned long prev_start,
+ const vma_flags_t *prev_flags,
+ const struct vm_area_struct *vma)
+{
+ return 0;
+}
#endif
struct vm_area_struct *__install_special_mapping(struct mm_struct *mm,
diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
index 2fd422789717..2986ae6ca1e5 100644
--- a/tools/testing/vma/include/dup.h
+++ b/tools/testing/vma/include/dup.h
@@ -1359,13 +1359,23 @@ static inline int vfs_mmap_prepare(struct file *file, struct vm_area_desc *desc)
return file->f_op->mmap_prepare(desc);
}
+int mmap_prepare_validate(const struct vm_area_desc *prev_desc,
+ const struct vm_area_desc *desc);
+
static inline int __compat_vma_mmap(struct vm_area_desc *desc,
struct vm_area_struct *vma)
{
+ struct vm_area_desc prev_desc;
int err;
+ /* Derive state prior to mmap_prepare hook. */
+ compat_set_desc_from_vma(&prev_desc, desc->file, vma);
/* Perform any preparatory tasks for mmap action. */
err = mmap_action_prepare(desc);
+ if (err)
+ return err;
+ /* Check the caller did nothing crazy. */
+ err = mmap_prepare_validate(&prev_desc, desc);
if (err)
return err;
/* Update the VMA from the descriptor. */
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 04/40] mm: consistently validate VMA state after mmap[_prepare] hooks
2026-09-14 14:57 ` [PATCH v2 04/40] mm: consistently validate VMA state after mmap[_prepare] hooks Lorenzo Stoakes (ARM)
@ 2026-09-14 16:18 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 16:18 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-scsi, Vasily Gorbik, dri-devel, Heiko Carstens, selinux,
kvmarm, linux-trace-kernel, bpf, linux-perf-users, kvm,
Oliver Upton, Christian Borntraeger, Marc Zyngier, linux-rdma,
Alexander Gordeev, linux-s390
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
New issues:
- [High] Premature execution of vma_close() before unmap_region() during validation failure creates a Use-After-Free race window.
- [High] Restoring vma->vm_start before calling unmap_region() on the validation error path leaves orphaned PTEs, causing permanent UAF.
Pre-existing issues:
- [High] mmap_validate() fails to check if a driver erroneously sets VMA_WRITE_BIT on a mapping without VMA_MAYWRITE_BIT, allowing read-only files to be mapped writable.
- [High] mmap_validate() fails to check if a driver alters vma->vm_end, which silently corrupts the maple tree.
--
commit d07b85544000595b057fc1ff43289af0359a7b6c
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
mm: consistently validate VMA state after mmap[_prepare] hooks
This patch generalizes VMA state validation checks for both mmap_prepare
and legacy mmap hooks. It aims to ensure that drivers do not violate
invariants, such as altering the VMA start address or creating writable
mappings on read-only files, and adds validations for insert_vm_struct().
> diff --git a/mm/internal.h b/mm/internal.h
> index fe576d468af45..1ed11eaf276a7 100644
> --- a/mm/internal.h
> +++ b/mm/internal.h
[ ... ]
> @@ -239,26 +260,16 @@ static inline int mmap_file(struct file *file, struct vm_area_struct *vma)
> */
> if (unlikely(err || !vma->vm_ops))
> vma->vm_ops = &vma_dummy_vm_ops;
> + if (unlikely(err))
> + return err;
>
> - return err;
> -}
> -
> -/*
> - * If the VMA has a close hook then close it, and since closing it might leave
> - * it in an inconsistent state which makes the use of any hooks suspect, clear
> - * them down by installing dummy empty hooks.
> - */
> -static inline void vma_close(struct vm_area_struct *vma)
> -{
> - if (vma->vm_ops && vma->vm_ops->close) {
> - vma->vm_ops->close(vma);
> -
> - /*
> - * The mapping is in an inconsistent state, and no further hooks
> - * may be invoked upon it.
> - */
> - vma->vm_ops = &vma_dummy_vm_ops;
> + err = mmap_hook_validate(prev_start, &prev_flags, vma);
> + if (unlikely(err)) {
> + vma->vm_start = prev_start;
[Severity: High]
If a driver's legacy mmap hook erroneously decreases vma->vm_start (expanding
the VMA downwards) and populates PTEs in that expanded range,
mmap_hook_validate() catches the violation. By forcing vma->vm_start back to
prev_start here before __mmap_new_file_vma() invokes unmap_region(), doesn't
that initialize the unmap operation with the smaller, restored address range?
This would cause unmap_region() to skip the expanded PTEs, leaving them
orphaned and causing a permanent use-after-free since the backing memory gets
freed. Should the unmap occur before restoring the start address?
> + vma_close(vma);
[Severity: High]
Is it safe to invoke vma_close() here immediately on validation failure?
If a driver successfully populates page tables (for example, via
remap_pfn_range) but fails the mmap_hook_validate() checks, calling
vma_close() frees driver memory prematurely. Since unmap_region() is not
called until mmap_file() returns to __mmap_new_file_vma(), hardware PTEs
remain populated while the backing resources are freed, creating a
use-after-free race window.
> }
> +
> + return err;
> }
>
> /* unmap_vmas is in mm/memory.c */
> diff --git a/mm/vma.c b/mm/vma.c
> index dc74b3d721cc5..626a18c08a269 100644
> --- a/mm/vma.c
> +++ b/mm/vma.c
[ ... ]
> @@ -2777,6 +2762,76 @@ static void __mmap_complete(struct mmap_state *map, struct vm_area_struct *vma)
> vma_set_page_prot(vma);
> }
>
> +/* Check to ensure that the VMA flags of a newly mapped VMA are sane. */
> +static int mmap_validate_vma_flags(const vma_flags_t *flags)
> +{
[ ... ]
> +/* Check to ensure a driver hasn't done something crazy. */
> +static int mmap_validate(unsigned long prev_start,
> + unsigned long curr_start,
> + const vma_flags_t *prev_flags,
> + const vma_flags_t *curr_flags)
> +{
> + bool was_maywrite, is_maywrite;
> +
> + /* Drivers cannot alter the address of the VMA. */
> + if (WARN_ON_ONCE(prev_start != curr_start))
> + return -EINVAL;
[Severity: High]
This isn't a bug introduced by this patch, but since the patch aims to
implement comprehensive VMA state validation after mmap hooks, shouldn't it
also verify that the end address (vma->vm_end) remains unmodified? If a
buggy driver alters vm_end, the VMA object's bounds will mismatch the maple
tree node's pre-allocated bounds. This structural inconsistency corrupts
the maple tree and can lead to kernel panics later.
> +
> + was_maywrite = vma_flags_test(prev_flags, VMA_MAYWRITE_BIT);
> + is_maywrite = vma_flags_test(curr_flags, VMA_MAYWRITE_BIT);
> +
> + /* A driver may not make a previously unwritable mapping writable. */
> + if (WARN_ON_ONCE(!was_maywrite && is_maywrite))
> + return -EINVAL;
[Severity: High]
This is a pre-existing issue, but this check appears to bypass a critical
condition. It only evaluates VMA_MAYWRITE_BIT. If a malicious or buggy
driver bitwise-ORs VMA_WRITE_BIT into vma->flags in its mmap hook without
setting VMA_MAYWRITE_BIT, wouldn't it bypass this check completely? This
could allow a read-only file mapping to be committed with VM_WRITE set,
granting hardware write permissions and allowing an unprivileged user to
overwrite read-only files.
> +
> + return mmap_validate_vma_flags(curr_flags);
> +}
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=4
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 05/40] mm/vma: ensure mmap_prepare doesn't set actions on a mergeable vma
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (3 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 04/40] mm: consistently validate VMA state after mmap[_prepare] hooks Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 16:45 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 06/40] mm: make map_kernel_pages_[prepare,complete] internal and unexported Lorenzo Stoakes (ARM)
` (35 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
When a user requests an mmap_action be performed in mmap_prepare, this
involves populating the VMA range with data.
However, if the VMA is mergeable, it might then mistakenly be merged with
another VMA without having populated the range.
Every mmap action currently available sets VMA flags such that the VMA
cannot be merged.
However, to ensure that no future mmap action falls foul of this, assert
that this is the case upon mmap_prepare validation.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/vma.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/mm/vma.c b/mm/vma.c
index 626a18c08a26..2648fb0e1995 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -2809,6 +2809,15 @@ static int mmap_validate(unsigned long prev_start,
int mmap_prepare_validate(const struct vm_area_desc *prev_desc,
const struct vm_area_desc *desc)
{
+ /*
+ * It is not valid to execute mmap actions for VMAs which can be merged,
+ * as any such merge would leave portions of the mapping incorrectly
+ * unmapped.
+ */
+ if (vma_flags_can_merge(&desc->vma_flags) &&
+ WARN_ON_ONCE(desc->action.type != MMAP_NOTHING))
+ return -EINVAL;
+
return mmap_validate(prev_desc->start, desc->start,
&prev_desc->vma_flags, &desc->vma_flags);
}
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 05/40] mm/vma: ensure mmap_prepare doesn't set actions on a mergeable vma
2026-09-14 14:57 ` [PATCH v2 05/40] mm/vma: ensure mmap_prepare doesn't set actions on a mergeable vma Lorenzo Stoakes (ARM)
@ 2026-09-14 16:45 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 16:45 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: selinux, Vasily Gorbik, Heiko Carstens, Alexander Gordeev,
Marc Zyngier, linux-s390, linux-rdma, Christian Borntraeger,
linux-scsi, dri-devel, bpf, kvm, linux-trace-kernel, Oliver Upton,
linux-perf-users, kvmarm
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Critical] State modification applied to `desc->vma_flags` during action preparation is not propagated back to `map->vma_flags`, resulting in incorrect VMA merging and the silent loss of critical flags like `VM_PFNMAP` and `VM_IO`.
--
commit 31f214221abd5db93fe1f46874d29ea3c59a0cc7
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
mm/vma: ensure mmap_prepare doesn't set actions on a mergeable vma
When a user requests an mmap_action be performed in mmap_prepare, this
involves populating the VMA range with data. This patch asserts that no
future mmap action is performed on a mergeable VMA upon mmap_prepare
validation.
> diff --git a/mm/vma.c b/mm/vma.c
> index 626a18c08a269..2648fb0e19959 100644
> --- a/mm/vma.c
> +++ b/mm/vma.c
> @@ -2809,6 +2809,15 @@ static int mmap_validate(unsigned long prev_start,
> int mmap_prepare_validate(const struct vm_area_desc *prev_desc,
> const struct vm_area_desc *desc)
> {
> + /*
> + * It is not valid to execute mmap actions for VMAs which can be merged,
> + * as any such merge would leave portions of the mapping incorrectly
> + * unmapped.
> + */
> + if (vma_flags_can_merge(&desc->vma_flags) &&
> + WARN_ON_ONCE(desc->action.type != MMAP_NOTHING))
> + return -EINVAL;
> +
[Severity: Critical]
Does this check actually prevent the merge? Looking at call_mmap_prepare(),
map->vma_flags is copied from desc->vma_flags before call_action_prepare()
is called:
mm/vma.c:call_mmap_prepare() {
...
map->vma_flags = desc->vma_flags;
...
err = call_action_prepare(map, desc);
if (err)
return err;
err = mmap_prepare_validate(&prev_desc, desc);
...
}
If call_action_prepare() mutates desc->vma_flags to include action-specific
unmergeable flags, vma_flags_can_merge(&desc->vma_flags) will be false here,
allowing the validation to pass. However, these changes don't appear to be
synchronized back to map->vma_flags.
Could this cause the actual VMA operations to operate on the stale and
mergeable map->vma_flags?
If a VMA lacks VM_PFNMAP or VM_IO but contains PFN-mapped pages, could this
lead to memory corruption if kernel mechanisms assume the pages are normal
memory and call put_page() on raw PFNs?
> return mmap_validate(prev_desc->start, desc->start,
> &prev_desc->vma_flags, &desc->vma_flags);
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=5
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 06/40] mm: make map_kernel_pages_[prepare,complete] internal and unexported
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (4 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 05/40] mm/vma: ensure mmap_prepare doesn't set actions on a mergeable vma Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 16:47 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 07/40] mm/vma: tidy up map kernel pages enum values Lorenzo Stoakes (ARM)
` (34 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
There's no reason to export the symbols for these functions which are only
called from internal mm logic, additionally there's no reason for them to
be declared in mm.h.
This patch therefore removes the exports and moves the declarations to
mm/internal.h.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 3 ---
mm/internal.h | 3 +++
mm/memory.c | 2 --
3 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 68250ece4219..0c17f0932b76 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -4768,9 +4768,6 @@ int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
int vm_insert_page(struct vm_area_struct *, unsigned long addr, struct page *);
int vm_insert_pages(struct vm_area_struct *vma, unsigned long addr,
struct page **pages, unsigned long *num);
-int map_kernel_pages_prepare(struct vm_area_desc *desc);
-int map_kernel_pages_complete(struct vm_area_struct *vma,
- struct mmap_action *action);
int vm_map_pages(struct vm_area_struct *vma, struct page **pages,
unsigned long num);
int vm_map_pages_zero(struct vm_area_struct *vma, struct page **pages,
diff --git a/mm/internal.h b/mm/internal.h
index 1ed11eaf276a..0cd26277a4c8 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -1511,6 +1511,9 @@ int remap_pfn_range_prepare(struct vm_area_desc *desc);
int remap_pfn_range_complete(struct vm_area_struct *vma,
struct mmap_action *action);
int simple_ioremap_prepare(struct vm_area_desc *desc);
+int map_kernel_pages_prepare(struct vm_area_desc *desc);
+int map_kernel_pages_complete(struct vm_area_struct *vma,
+ struct mmap_action *action);
static inline int io_remap_pfn_range_prepare(struct vm_area_desc *desc)
{
diff --git a/mm/memory.c b/mm/memory.c
index 926276d41920..448342883e9d 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2628,7 +2628,6 @@ int map_kernel_pages_prepare(struct vm_area_desc *desc)
return 0;
}
-EXPORT_SYMBOL(map_kernel_pages_prepare);
int map_kernel_pages_complete(struct vm_area_struct *vma,
struct mmap_action *action)
@@ -2640,7 +2639,6 @@ int map_kernel_pages_complete(struct vm_area_struct *vma,
action->map_kernel.pages,
&nr_pages, vma->vm_page_prot);
}
-EXPORT_SYMBOL(map_kernel_pages_complete);
/**
* vm_insert_page - insert single page into user vma
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 06/40] mm: make map_kernel_pages_[prepare,complete] internal and unexported
2026-09-14 14:57 ` [PATCH v2 06/40] mm: make map_kernel_pages_[prepare,complete] internal and unexported Lorenzo Stoakes (ARM)
@ 2026-09-14 16:47 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 16:47 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: selinux, Vasily Gorbik, kvm, Heiko Carstens, dri-devel,
Alexander Gordeev, Marc Zyngier, Christian Borntraeger,
linux-s390, kvmarm, linux-scsi, bpf, linux-rdma,
linux-trace-kernel, Oliver Upton, linux-perf-users
> There's no reason to export the symbols for these functions which are only
> called from internal mm logic, additionally there's no reason for them to
> be declared in mm.h.
>
> This patch therefore removes the exports and moves the declarations to
> mm/internal.h.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=6
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 07/40] mm/vma: tidy up map kernel pages enum values
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (5 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 06/40] mm: make map_kernel_pages_[prepare,complete] internal and unexported Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 16:50 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 08/40] mm: add mmap action for discontiguous kernel page mapping Lorenzo Stoakes (ARM)
` (33 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
MMAP_MAP_KERNEL_PAGES is a mouthful, discard the MAP_ as that's implied by
MMAP.
Also while we're here delete useless comments for mmap actions whose names
clearly indicate what they are for.
Also update the userland VMA tests to reflect this change.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 2 +-
include/linux/mm_types.h | 8 ++++----
mm/util.c | 8 ++++----
tools/testing/vma/include/dup.h | 8 ++++----
4 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 0c17f0932b76..a1f2d375cf7d 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -4623,7 +4623,7 @@ static inline void mmap_action_map_kernel_pages(struct vm_area_desc *desc,
{
struct mmap_action *action = &desc->action;
- action->type = MMAP_MAP_KERNEL_PAGES;
+ action->type = MMAP_KERNEL_PAGES;
action->map_kernel.start = start;
action->map_kernel.pages = pages;
action->map_kernel.nr_pages = nr_pages;
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 5413bd10fff2..9ca2ea3664bc 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -815,11 +815,11 @@ struct pfnmap_track_ctx {
/* What action should be taken after an .mmap_prepare call is complete? */
enum mmap_action_type {
- MMAP_NOTHING, /* Mapping is complete, no further action. */
- MMAP_REMAP_PFN, /* Remap PFN range. */
- MMAP_IO_REMAP_PFN, /* I/O remap PFN range. */
+ MMAP_NOTHING,
+ MMAP_REMAP_PFN,
+ MMAP_IO_REMAP_PFN,
MMAP_SIMPLE_IO_REMAP, /* I/O remap with guardrails. */
- MMAP_MAP_KERNEL_PAGES, /* Map kernel page range from array. */
+ MMAP_KERNEL_PAGES, /* Map kernel page range from array. */
};
/*
diff --git a/mm/util.c b/mm/util.c
index bdd5923eebc7..438170490e7f 100644
--- a/mm/util.c
+++ b/mm/util.c
@@ -1467,7 +1467,7 @@ int mmap_action_prepare(struct vm_area_desc *desc)
return io_remap_pfn_range_prepare(desc);
case MMAP_SIMPLE_IO_REMAP:
return simple_ioremap_prepare(desc);
- case MMAP_MAP_KERNEL_PAGES:
+ case MMAP_KERNEL_PAGES:
return map_kernel_pages_prepare(desc);
}
@@ -1498,7 +1498,7 @@ int mmap_action_complete(struct vm_area_struct *vma,
case MMAP_REMAP_PFN:
err = remap_pfn_range_complete(vma, action);
break;
- case MMAP_MAP_KERNEL_PAGES:
+ case MMAP_KERNEL_PAGES:
err = map_kernel_pages_complete(vma, action);
break;
case MMAP_IO_REMAP_PFN:
@@ -1521,7 +1521,7 @@ int mmap_action_prepare(struct vm_area_desc *desc)
case MMAP_REMAP_PFN:
case MMAP_IO_REMAP_PFN:
case MMAP_SIMPLE_IO_REMAP:
- case MMAP_MAP_KERNEL_PAGES:
+ case MMAP_KERNEL_PAGES:
WARN_ON_ONCE(1); /* nommu cannot handle these. */
break;
}
@@ -1542,7 +1542,7 @@ int mmap_action_complete(struct vm_area_struct *vma,
case MMAP_REMAP_PFN:
case MMAP_IO_REMAP_PFN:
case MMAP_SIMPLE_IO_REMAP:
- case MMAP_MAP_KERNEL_PAGES:
+ case MMAP_KERNEL_PAGES:
WARN_ON_ONCE(1); /* nommu cannot handle this. */
err = -EINVAL;
diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
index 2986ae6ca1e5..1098655a5f4a 100644
--- a/tools/testing/vma/include/dup.h
+++ b/tools/testing/vma/include/dup.h
@@ -454,11 +454,11 @@ static __always_inline bool vma_flags_empty(const vma_flags_t *flags)
/* What action should be taken after an .mmap_prepare call is complete? */
enum mmap_action_type {
- MMAP_NOTHING, /* Mapping is complete, no further action. */
- MMAP_REMAP_PFN, /* Remap PFN range. */
- MMAP_IO_REMAP_PFN, /* I/O remap PFN range. */
+ MMAP_NOTHING,
+ MMAP_REMAP_PFN,
+ MMAP_IO_REMAP_PFN,
MMAP_SIMPLE_IO_REMAP, /* I/O remap with guardrails. */
- MMAP_MAP_KERNEL_PAGES, /* Map kernel page range from an array. */
+ MMAP_KERNEL_PAGES, /* Map kernel page range from array. */
};
/*
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 07/40] mm/vma: tidy up map kernel pages enum values
2026-09-14 14:57 ` [PATCH v2 07/40] mm/vma: tidy up map kernel pages enum values Lorenzo Stoakes (ARM)
@ 2026-09-14 16:50 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 16:50 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Vasily Gorbik, dri-devel, bpf, Christian Borntraeger, kvm,
linux-s390, Marc Zyngier, Heiko Carstens, linux-trace-kernel,
linux-perf-users, kvmarm, Alexander Gordeev, Oliver Upton,
linux-scsi, selinux, linux-rdma
> MMAP_MAP_KERNEL_PAGES is a mouthful, discard the MAP_ as that's implied by
> MMAP.
>
> Also while we're here delete useless comments for mmap actions whose names
> clearly indicate what they are for.
>
> Also update the userland VMA tests to reflect this change.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=7
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 08/40] mm: add mmap action for discontiguous kernel page mapping
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (6 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 07/40] mm/vma: tidy up map kernel pages enum values Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 17:03 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 09/40] docs: filesystems: update mmap_prepare docs for discontig kernel pgs Lorenzo Stoakes (ARM)
` (32 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
The existing kernel page mapping mmap actions allow for partial and full
mapping of an array of struct page pointers.
However some drivers require the mapping of discontiguous ranges. Permit
this by providing discontig_kernel_page_ops which allows a driver to
specify how the operation should begin and how batches of pages should be
retrieved.
It uses the minimum exposed interface to do so, providing address, page
offset and both vm_private_data state and a local private state object.
ops->init can establish state for the operation, and ops->get outputs the
pages to map and their count. Should an error arise the core unmaps the
VMA, invoking vm_ops->close, which is therefore where any state established
by ops->init is released.
Batches may not exceed the VMA, but may map less than its full range in
case the driver wishes to allow the user to map an area larger than the
available data.
To use it, users invoke mmap_action_map_discontig_kernel_pages() with
initial local private state and a set of operations.
Users can then use one of the provided helper functions to perform an
action:
* discontig_kernel_map_abort() - Abort and leave the mapping as it has
been accumulated so far.
* discontig_kernel_map_page() - Map a single page, or a compound page given
its head page.
* discontig_kernel_map_page_range() - Maps a struct page ** array of a
specified count.
The userland VMA tests are updated accordingly.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 45 +++++++++++++++++
include/linux/mm_types.h | 44 +++++++++++++++-
mm/internal.h | 3 ++
mm/memory.c | 108 ++++++++++++++++++++++++++++++++++++++--
mm/util.c | 7 +++
tools/testing/vma/include/dup.h | 11 +++-
6 files changed, 209 insertions(+), 9 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index a1f2d375cf7d..2a92193ac6a5 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -4647,10 +4647,55 @@ static inline void mmap_action_map_kernel_pages_full(struct vm_area_desc *desc,
vma_desc_pages(desc));
}
+static inline
+void mmap_action_map_discontig_kernel_pages(struct vm_area_desc *desc,
+ void *init_private, const struct discontig_kernel_page_ops *ops)
+{
+ struct mmap_action *action = &desc->action;
+
+ action->type = MMAP_DISCONTIG_KERNEL_PAGES;
+ action->map_kernel_discontig.init_private = init_private;
+ action->map_kernel_discontig.ops = ops;
+}
+
int mmap_action_prepare(struct vm_area_desc *desc);
int mmap_action_complete(struct vm_area_struct *vma,
struct mmap_action *action, bool is_compat);
+static inline void
+discontig_kernel_map_abort(struct discontig_kernel_page_state *state)
+{
+ state->action = DISCONTIG_KERNEL_PAGE_ABORT;
+}
+
+static inline void
+discontig_kernel_map_page(struct discontig_kernel_page_state *state,
+ struct page *page)
+{
+ struct folio *folio = page_folio(page);
+
+ if (folio_test_large(folio)) {
+ VM_WARN_ON_ONCE(page != folio_page(folio, 0));
+ state->action = DISCONTIG_KERNEL_PAGE_MAP_COMPOUND_PAGE;
+ state->__folio = folio;
+ state->__nr_pages = min(state->nr_pages_remain,
+ folio_nr_pages(folio));
+ } else {
+ state->action = DISCONTIG_KERNEL_PAGE_MAP_PAGE;
+ state->__page = page;
+ state->__nr_pages = 1;
+ }
+}
+
+static inline void
+discontig_kernel_map_page_range(struct discontig_kernel_page_state *state,
+ struct page **page_arr, unsigned long nr_pages)
+{
+ state->action = DISCONTIG_KERNEL_PAGE_MAP_PAGE_RANGE;
+ state->__page_arr = page_arr;
+ state->__nr_pages = nr_pages;
+}
+
/* Look up the first VMA which exactly match the interval vm_start ... vm_end */
static inline struct vm_area_struct *find_exact_vma(struct mm_struct *mm,
unsigned long vm_start, unsigned long vm_end)
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 9ca2ea3664bc..0cb4f9603956 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -818,8 +818,44 @@ enum mmap_action_type {
MMAP_NOTHING,
MMAP_REMAP_PFN,
MMAP_IO_REMAP_PFN,
- MMAP_SIMPLE_IO_REMAP, /* I/O remap with guardrails. */
- MMAP_KERNEL_PAGES, /* Map kernel page range from array. */
+ MMAP_SIMPLE_IO_REMAP, /* I/O remap with guardrails. */
+ MMAP_KERNEL_PAGES, /* Map kernel page range from array. */
+ MMAP_DISCONTIG_KERNEL_PAGES, /* Map kernel discontig page range. */
+};
+
+enum discontig_kernel_page_action {
+ DISCONTIG_KERNEL_PAGE_ABORT,
+ DISCONTIG_KERNEL_PAGE_MAP_PAGE,
+ DISCONTIG_KERNEL_PAGE_MAP_COMPOUND_PAGE,
+ DISCONTIG_KERNEL_PAGE_MAP_PAGE_RANGE,
+};
+
+struct discontig_kernel_page_state {
+ /* Map state. */
+ const unsigned long start; /* Start address of VMA. */
+ const unsigned long end; /* End address of VMA. */
+ unsigned long addr; /* The current address to be mapped. */
+ pgoff_t pgoff; /* The current pgoff to be mapped. */
+ unsigned long nr_pages_mapped; /* The number of pages mapped. */
+ unsigned long nr_pages_remain; /* The number of pages remaining. */
+
+ /* User-defined state. */
+ void *vm_private_data; /* VMA private data. */
+ void *private; /* Mapping private data. */
+
+ /* Users should not touch these, use discontig_kernel_map_*() helpers. */
+ enum discontig_kernel_page_action action;
+ union {
+ struct page *__page;
+ struct folio *__folio;
+ struct page **__page_arr;
+ };
+ unsigned long __nr_pages;
+};
+
+struct discontig_kernel_page_ops {
+ int (*init)(void *vm_private_data, void **private);
+ int (*get)(struct discontig_kernel_page_state *state);
};
/*
@@ -844,6 +880,10 @@ struct mmap_action {
unsigned long nr_pages;
pgoff_t pgoff;
} map_kernel;
+ struct {
+ void *init_private;
+ const struct discontig_kernel_page_ops *ops;
+ } map_kernel_discontig;
};
enum mmap_action_type type;
diff --git a/mm/internal.h b/mm/internal.h
index 0cd26277a4c8..3a395e8c224c 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -1514,6 +1514,9 @@ int simple_ioremap_prepare(struct vm_area_desc *desc);
int map_kernel_pages_prepare(struct vm_area_desc *desc);
int map_kernel_pages_complete(struct vm_area_struct *vma,
struct mmap_action *action);
+int map_discontig_kernel_pages_prepare(struct vm_area_desc *desc);
+int map_discontig_kernel_pages_complete(struct vm_area_struct *vma,
+ struct mmap_action *action);
static inline int io_remap_pfn_range_prepare(struct vm_area_desc *desc)
{
diff --git a/mm/memory.c b/mm/memory.c
index 448342883e9d..42f084517247 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2609,17 +2609,23 @@ int vm_insert_pages(struct vm_area_struct *vma, unsigned long addr,
}
EXPORT_SYMBOL(vm_insert_pages);
+static void __map_kernel_pages_prepare(struct vm_area_desc *desc)
+{
+ if (vma_desc_test(desc, VMA_MIXEDMAP_BIT))
+ return;
+
+ VM_WARN_ON_ONCE(mmap_read_trylock(desc->mm));
+ VM_WARN_ON_ONCE(vma_desc_test(desc, VMA_PFNMAP_BIT));
+ vma_desc_set_flags(desc, VMA_MIXEDMAP_BIT);
+}
+
int map_kernel_pages_prepare(struct vm_area_desc *desc)
{
const struct mmap_action *action = &desc->action;
const unsigned long addr = action->map_kernel.start;
unsigned long nr_pages, end;
- if (!vma_desc_test(desc, VMA_MIXEDMAP_BIT)) {
- VM_WARN_ON_ONCE(mmap_read_trylock(desc->mm));
- VM_WARN_ON_ONCE(vma_desc_test(desc, VMA_PFNMAP_BIT));
- vma_desc_set_flags(desc, VMA_MIXEDMAP_BIT);
- }
+ __map_kernel_pages_prepare(desc);
nr_pages = action->map_kernel.nr_pages;
end = addr + PAGE_SIZE * nr_pages;
@@ -2640,6 +2646,98 @@ int map_kernel_pages_complete(struct vm_area_struct *vma,
&nr_pages, vma->vm_page_prot);
}
+int map_discontig_kernel_pages_prepare(struct vm_area_desc *desc)
+{
+ const struct mmap_action *action = &desc->action;
+ const struct discontig_kernel_page_ops *ops =
+ action->map_kernel_discontig.ops;
+
+ /* At minimum need to be able to get pages. */
+ if (WARN_ON_ONCE(!ops->get))
+ return -EINVAL;
+
+ __map_kernel_pages_prepare(desc);
+ return 0;
+}
+
+static int apply_discontig_action(struct vm_area_struct *vma,
+ struct discontig_kernel_page_state *state)
+{
+ unsigned long nr_pages = state->__nr_pages;
+ unsigned long addr = state->addr;
+ unsigned long i;
+
+ if (state->action == DISCONTIG_KERNEL_PAGE_MAP_PAGE)
+ return insert_page(vma, addr, state->__page,
+ vma->vm_page_prot, /*mkwrite=*/false);
+ if (state->action == DISCONTIG_KERNEL_PAGE_MAP_PAGE_RANGE)
+ return insert_pages(vma, addr, state->__page_arr,
+ &nr_pages, vma->vm_page_prot);
+
+ /* Compound folio - have to iterate through each page. */
+ for (i = 0; i < nr_pages; i++, addr += PAGE_SIZE) {
+ struct page *page = folio_page(state->__folio, i);
+ int err;
+
+ err = insert_page(vma, addr, page, vma->vm_page_prot,
+ /*mkwrite=*/false);
+ if (err)
+ return err;
+ }
+ return 0;
+}
+
+int map_discontig_kernel_pages_complete(struct vm_area_struct *vma,
+ struct mmap_action *action)
+{
+ const struct discontig_kernel_page_ops *ops =
+ action->map_kernel_discontig.ops;
+ struct discontig_kernel_page_state state = {
+ .start = vma->vm_start,
+ .end = vma->vm_end,
+ .addr = vma->vm_start,
+ .pgoff = vma->vm_pgoff,
+ .nr_pages_mapped = 0,
+ .nr_pages_remain = vma_pages(vma),
+ .vm_private_data = vma->vm_private_data,
+ .private = action->map_kernel_discontig.init_private,
+ };
+ int err = 0;
+
+ if (ops->init)
+ err = ops->init(vma->vm_private_data, &state.private);
+ if (err)
+ return err;
+
+ do {
+ unsigned long end, pgoff_end;
+ unsigned long nr_pages;
+
+ /* Default to abort. */
+ state.action = DISCONTIG_KERNEL_PAGE_ABORT;
+ err = ops->get(&state);
+ if (err || state.action == DISCONTIG_KERNEL_PAGE_ABORT)
+ return err;
+ nr_pages = state.__nr_pages;
+
+ if (!nr_pages || nr_pages > state.nr_pages_remain)
+ return -EINVAL;
+ end = state.addr + PAGE_SIZE * nr_pages;
+ pgoff_end = state.pgoff + nr_pages;
+
+ err = apply_discontig_action(vma, &state);
+ if (err)
+ return err;
+
+ state.addr = end;
+ state.pgoff = pgoff_end;
+ state.nr_pages_mapped += nr_pages;
+ state.nr_pages_remain -= nr_pages;
+ } while (state.addr < vma->vm_end);
+
+ return 0;
+}
+
/**
* vm_insert_page - insert single page into user vma
* @vma: user vma to map to
diff --git a/mm/util.c b/mm/util.c
index 438170490e7f..c5ee52aede1e 100644
--- a/mm/util.c
+++ b/mm/util.c
@@ -1469,6 +1469,8 @@ int mmap_action_prepare(struct vm_area_desc *desc)
return simple_ioremap_prepare(desc);
case MMAP_KERNEL_PAGES:
return map_kernel_pages_prepare(desc);
+ case MMAP_DISCONTIG_KERNEL_PAGES:
+ return map_discontig_kernel_pages_prepare(desc);
}
WARN_ON_ONCE(1);
@@ -1501,6 +1503,9 @@ int mmap_action_complete(struct vm_area_struct *vma,
case MMAP_KERNEL_PAGES:
err = map_kernel_pages_complete(vma, action);
break;
+ case MMAP_DISCONTIG_KERNEL_PAGES:
+ err = map_discontig_kernel_pages_complete(vma, action);
+ break;
case MMAP_IO_REMAP_PFN:
case MMAP_SIMPLE_IO_REMAP:
/* Should have been delegated. */
@@ -1522,6 +1527,7 @@ int mmap_action_prepare(struct vm_area_desc *desc)
case MMAP_IO_REMAP_PFN:
case MMAP_SIMPLE_IO_REMAP:
case MMAP_KERNEL_PAGES:
+ case MMAP_DISCONTIG_KERNEL_PAGES:
WARN_ON_ONCE(1); /* nommu cannot handle these. */
break;
}
@@ -1543,6 +1549,7 @@ int mmap_action_complete(struct vm_area_struct *vma,
case MMAP_IO_REMAP_PFN:
case MMAP_SIMPLE_IO_REMAP:
case MMAP_KERNEL_PAGES:
+ case MMAP_DISCONTIG_KERNEL_PAGES:
WARN_ON_ONCE(1); /* nommu cannot handle this. */
err = -EINVAL;
diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
index 1098655a5f4a..1d5f6b3cbd21 100644
--- a/tools/testing/vma/include/dup.h
+++ b/tools/testing/vma/include/dup.h
@@ -457,14 +457,17 @@ enum mmap_action_type {
MMAP_NOTHING,
MMAP_REMAP_PFN,
MMAP_IO_REMAP_PFN,
- MMAP_SIMPLE_IO_REMAP, /* I/O remap with guardrails. */
- MMAP_KERNEL_PAGES, /* Map kernel page range from array. */
+ MMAP_SIMPLE_IO_REMAP, /* I/O remap with guardrails. */
+ MMAP_KERNEL_PAGES, /* Map kernel page range from array. */
+ MMAP_DISCONTIG_KERNEL_PAGES, /* Map kernel discontig page range. */
};
/*
* Describes an action an mmap_prepare hook can instruct to be taken to complete
* the mapping of a VMA. Specified in vm_area_desc.
*/
+struct discontig_kernel_page_ops;
+
struct mmap_action {
union {
struct {
@@ -483,6 +486,10 @@ struct mmap_action {
unsigned long nr_pages;
pgoff_t pgoff;
} map_kernel;
+ struct {
+ void *init_private;
+ const struct discontig_kernel_page_ops *ops;
+ } map_kernel_discontig;
};
enum mmap_action_type type;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 08/40] mm: add mmap action for discontiguous kernel page mapping
2026-09-14 14:57 ` [PATCH v2 08/40] mm: add mmap action for discontiguous kernel page mapping Lorenzo Stoakes (ARM)
@ 2026-09-14 17:03 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 17:03 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-s390, bpf, Marc Zyngier, kvm, Heiko Carstens, linux-rdma,
selinux, Christian Borntraeger, linux-trace-kernel,
linux-perf-users, kvmarm, Alexander Gordeev, linux-scsi,
Vasily Gorbik, Oliver Upton, dri-devel
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [High] `discontig_kernel_map_page()` silently maps entire compound pages instead of single pages and maps incorrect memory when passed a tail page.
- [Medium] API design causes an unavoidable memory leak if a driver allocates state in `ops->init()` and a subsequent failure occurs.
- [Low] Missing NULL check for the `ops` struct before dereferencing it in validation code.
--
commit d5639a50ca1090febd85053c26c1f0a170b51deb
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Date: Mon Sep 14 14:57:28 2026 +0000
mm: add mmap action for discontiguous kernel page mapping
This commit introduces a new mmap action allowing drivers to map discontiguous
kernel pages. It adds discontig_kernel_page_ops for defining the mapping
operation, including initialization and page retrieval logic. Helpers are
provided to map single pages, ranges, or compound pages.
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index a1f2d375cf7d8..2a92193ac6a5e 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
[ ... ]
> @@ -4647,10 +4647,55 @@ static inline void mmap_action_map_kernel_pages_full(struct vm_area_desc *desc,
> +static inline void
> +discontig_kernel_map_page(struct discontig_kernel_page_state *state,
> + struct page *page)
> +{
> + struct folio *folio = page_folio(page);
> +
> + if (folio_test_large(folio)) {
> + VM_WARN_ON_ONCE(page != folio_page(folio, 0));
> + state->action = DISCONTIG_KERNEL_PAGE_MAP_COMPOUND_PAGE;
> + state->__folio = folio;
> + state->__nr_pages = min(state->nr_pages_remain,
> + folio_nr_pages(folio));
[Severity: High]
If a driver passes a tail page here intending to map just that specific page,
does this unintentionally escalate the mapping to the entire compound page?
The API discards the specific page pointer and sets up a folio mapping
instead. Even though there is a warning when passing a tail page, the code
proceeds to map starting from the head page in apply_discontig_action(),
which could expose unrequested kernel memory to userspace.
> diff --git a/mm/memory.c b/mm/memory.c
> index 448342883e9da..42f0845172471 100644
> --- a/mm/memory.c
> +++ b/mm/memory.c
[ ... ]
> +int map_discontig_kernel_pages_prepare(struct vm_area_desc *desc)
> +{
> + const struct mmap_action *action = &desc->action;
> + const struct discontig_kernel_page_ops *ops =
> + action->map_kernel_discontig.ops;
> +
> + /* At minimum need to be able to get pages. */
> + if (WARN_ON_ONCE(!ops->get))
[Severity: Low]
Is it possible for the ops pointer to be NULL here?
If a driver erroneously sets up a discontiguous mapping action but passes a
NULL ops pointer, dereferencing ops->get will cause a panic before the
intended validation warning can trigger.
> + return -EINVAL;
> +
> + __map_kernel_pages_prepare(desc);
> + return 0;
> +}
> +
> +static int apply_discontig_action(struct vm_area_struct *vma,
> + struct discontig_kernel_page_state *state)
> +{
> + unsigned long nr_pages = state->__nr_pages;
> + unsigned long addr = state->addr;
> + unsigned long i;
[ ... ]
> + /* Compound folio - have to iterate through each page. */
> + for (i = 0; i < nr_pages; i++, addr += PAGE_SIZE) {
> + struct page *page = folio_page(state->__folio, i);
[Severity: High]
As mentioned above, if a tail page was passed to discontig_kernel_map_page(),
this loop always starts mapping from the head page (i = 0) of the folio.
Could this map the wrong memory into userspace if the caller specifically
requested a tail page?
> + int err;
> +
> + err = insert_page(vma, addr, page, vma->vm_page_prot,
> + /*mkwrite=*/false);
> + if (err)
> + return err;
> + }
> + return 0;
> +}
> +
> +int map_discontig_kernel_pages_complete(struct vm_area_struct *vma,
> + struct mmap_action *action)
> +{
> + const struct discontig_kernel_page_ops *ops =
> + action->map_kernel_discontig.ops;
> + struct discontig_kernel_page_state state = {
> + .start = vma->vm_start,
> + .end = vma->vm_end,
> + .addr = vma->vm_start,
> + .pgoff = vma->vm_pgoff,
> + .nr_pages_mapped = 0,
> + .nr_pages_remain = vma_pages(vma),
> + .vm_private_data = vma->vm_private_data,
> + .private = action->map_kernel_discontig.init_private,
> + };
> + int err = 0;
> +
> + if (ops->init)
> + err = ops->init(vma->vm_private_data, &state.private);
> + if (err)
> + return err;
> +
> + do {
> + unsigned long end, pgoff_end;
> + unsigned long nr_pages;
> +
> + /* Default to abort. */
> + state.action = DISCONTIG_KERNEL_PAGE_ABORT;
> + err = ops->get(&state);
> + if (err || state.action == DISCONTIG_KERNEL_PAGE_ABORT)
> + return err;
[Severity: Medium]
Does this error path leak memory if a driver allocated state in ops->init()?
The commit message mentions that any state established by ops->init() is
released in vm_ops->close. However, if an error occurs here (or below in
apply_discontig_action), the function returns immediately.
Since state is a local variable on the stack, and the driver's close callback
only receives the vma (which has no access to state.private), it appears any
memory assigned to *private would be permanently leaked.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=8
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 09/40] docs: filesystems: update mmap_prepare docs for discontig kernel pgs
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (7 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 08/40] mm: add mmap action for discontiguous kernel page mapping Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 17:07 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 10/40] drivers/usb/mon: update to use mmap_prepare + map kernel pages Lorenzo Stoakes (ARM)
` (31 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Describe the newly introduced discontiguous kernel page mapping mechanism,
detailing how to use it sensibly and how the API looks.
Explicitly detail the various discontiguous actions available and how to
use them.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
Documentation/filesystems/mmap_prepare.rst | 81 ++++++++++++++++++++++++++++++
1 file changed, 81 insertions(+)
diff --git a/Documentation/filesystems/mmap_prepare.rst b/Documentation/filesystems/mmap_prepare.rst
index 82c99c95ad85..a476e1006bf1 100644
--- a/Documentation/filesystems/mmap_prepare.rst
+++ b/Documentation/filesystems/mmap_prepare.rst
@@ -164,5 +164,86 @@ pointer. These are:
sufficient entries in the page array to cover the entire range of the
described VMA.
+* mmap_action_map_discontig_kernel_pages() - Maps a discontiguous range of
+ `struct page` pointers over the VMA. They must span from the start of the VMA,
+ but may terminate prior to the end (leaving the remainder unmapped).
+
**NOTE:** The ``action`` field should never normally be manipulated directly,
rather you ought to use one of these helpers.
+
+Discontiguous Actions
+=====================
+
+Some actions can be performed across discontiguous ranges.
+
+Map kernel pages
+----------------
+
+To map kernel pages discontiguously, you must provide hooks using ``struct
+discontig_kernel_page_ops``:
+
+.. code-block:: C
+
+ struct discontig_kernel_page_ops {
+ int (*init)(void *vm_private_data, void **private);
+ int (*get)(struct discontig_kernel_page_state *state);
+ };
+
+The ``init`` hook is optional and allows state to be established before the
+operation starts, for instance taking a reference count. Nothing is invoked
+after the operation, so ``init`` must not leave locks held, and state that must
+be released once the mapping goes away should be released in
+``vm_ops->close``.
+
+The ``init`` hook, if provided, is invoked prior to the operation starting. It
+may update what is pointed to by ``vm_private_data`` and/or ``private``. If an
+error is returned, then the operation is aborted. The ``private`` field can be
+reassigned.
+
+**NOTE:** The operation may sleep between invocations of ``get``, so locks
+needed to stabilise state must be taken and released within each hook.
+
+The ``get`` handler is the key means through which the operation is
+executed. The current state of the operation is provided through ``struct
+discontig_kernel_page_state``:
+
+.. code-block:: C
+
+ struct discontig_kernel_page_state {
+ /* Map state. */
+ unsigned long start; /* Start address of VMA. */
+ unsigned long end; /* End address of VMA. */
+ unsigned long addr; /* The current address to be mapped. */
+ pgoff_t pgoff; /* The current pgoff to be mapped. */
+ unsigned long nr_pages_mapped; /* The number of pages mapped. */
+ unsigned long nr_pages_remain; /* The number of pages remaining. */
+
+ /* User-defined state. */
+ void *vm_private_data; /* VMA private data. */
+ void *private; /* Mapping private data. */
+
+ /* Users should not touch these, use discontig_kernel_map_*() helpers. */
+ ... internal fields ...
+ };
+
+With ``private`` being an additional user-controllable state variable,
+initialised via ``mmap_action_map_discontig_kernel_pages()``, and
+``vm_private_data`` being equal to the ``desc->private_data`` field set in
+the ``mmap_prepare()`` hook.
+
+In the ``get`` hook, the user must choose how to map kernel pages:
+
+* ``discontig_kernel_map_abort()`` - Call this to abort the operation, whatever
+ has been mapped so far will be retained, the rest of the mapping will SIGBUS
+ if accessed.
+* ``discontig_kernel_map_page()`` - Maps a single page, correctly handling
+ compound pages (if the compound page is bigger than the remaining pages in the
+ VMA, then only those pages that fit will be mapped). For a compound page, the
+ head page must be passed.
+* ``discontig_kernel_map_page_range()`` - Map an array of pages of a specified
+ size. Note that if the number of pages specified exceeds the VMA size then an
+ error will arise.
+
+If an error arises after ``init`` succeeded, the core unmaps the VMA, invoking
+``vm_ops->close`` if set, which is therefore the place to release any state
+that ``init`` established.
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 09/40] docs: filesystems: update mmap_prepare docs for discontig kernel pgs
2026-09-14 14:57 ` [PATCH v2 09/40] docs: filesystems: update mmap_prepare docs for discontig kernel pgs Lorenzo Stoakes (ARM)
@ 2026-09-14 17:07 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 17:07 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Christian Borntraeger, kvm, Oliver Upton, linux-trace-kernel,
linux-rdma, selinux, Marc Zyngier, linux-s390, dri-devel, kvmarm,
linux-perf-users, Heiko Carstens, Alexander Gordeev, bpf,
linux-scsi, Vasily Gorbik
> Describe the newly introduced discontiguous kernel page mapping mechanism,
> detailing how to use it sensibly and how the API looks.
>
> Explicitly detail the various discontiguous actions available and how to
> use them.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=9
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 10/40] drivers/usb/mon: update to use mmap_prepare + map kernel pages
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (8 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 09/40] docs: filesystems: update mmap_prepare docs for discontig kernel pgs Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 17:18 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 11/40] infiniband: update hfi1 to use remap_vmalloc_range() Lorenzo Stoakes (ARM)
` (30 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Replace the deprecated .mmap hook with its replacement .mmap_prepare. As
part of this change, additionally take the approach of mapping pages upon
mmap rather than providing a fault handler.
The page span cannot be mutated when an mmap mapping is in place, so this
is safe to do in advance (the MON_IOCT_RING_SIZE ioctl operation exits
-EBUSY if it's attempted, gated by the rp->mmap_active reference count).
Utilise the newly introduced mmap_action_map_discontig_kernel_pages() to do
this, which allows for iteration over pages in mon_bin_discontig_get().
mon_bin_discontig_init() increments the rp->mmap_active reference count to
stabilise page spans. Should an error arise the core unmaps the VMA and
mon_bin_vma_close() drops the reference again.
The vm_ops->close hook implemented in mon_bin_vma_close() will ensure
correct reference count arithmetic upon unmap (with mon_bin_vma_open()
accounting for splitting).
The existing semantics are all retained, including not mapping past the
range of available pages, with a SIGBUS being raised in a userland process
that attempts to access past this point.
Ultimately insert_page() is invoked to insert each page, which increments
the reference count on each mapped page. This mimics what was being done
previously, only we pre-map the entire range rather than doing so on
demand.
The existing fault handler did nothing that required demand paging, and was
presumably implemented this way for historical reasons.
One behavioural difference: pages are no longer faulted in on demand, so a
page discarded with MADV_DONTNEED is not repopulated and a subsequent
access raises SIGBUS, as with other pre-populated kernel mappings.
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
drivers/usb/mon/mon_bin.c | 82 ++++++++++++++++++++++++++++++-----------------
1 file changed, 53 insertions(+), 29 deletions(-)
diff --git a/drivers/usb/mon/mon_bin.c b/drivers/usb/mon/mon_bin.c
index 687f6a8981f3..9d00b21a8153 100644
--- a/drivers/usb/mon/mon_bin.c
+++ b/drivers/usb/mon/mon_bin.c
@@ -1219,6 +1219,15 @@ mon_bin_poll(struct file *file, struct poll_table_struct *wait)
return mask;
}
+static void __mon_bin_vma_open(struct mon_reader_bin *rp)
+{
+ unsigned long flags;
+
+ spin_lock_irqsave(&rp->b_lock, flags);
+ rp->mmap_active++;
+ spin_unlock_irqrestore(&rp->b_lock, flags);
+}
+
/*
* open and close: just keep track of how many times the device is
* mapped, to use the proper memory allocation function.
@@ -1226,64 +1235,79 @@ mon_bin_poll(struct file *file, struct poll_table_struct *wait)
static void mon_bin_vma_open(struct vm_area_struct *vma)
{
struct mon_reader_bin *rp = vma->vm_private_data;
- unsigned long flags;
- spin_lock_irqsave(&rp->b_lock, flags);
- rp->mmap_active++;
- spin_unlock_irqrestore(&rp->b_lock, flags);
+ __mon_bin_vma_open(rp);
}
-static void mon_bin_vma_close(struct vm_area_struct *vma)
+static void __mon_bin_vma_close(struct mon_reader_bin *rp)
{
unsigned long flags;
- struct mon_reader_bin *rp = vma->vm_private_data;
spin_lock_irqsave(&rp->b_lock, flags);
rp->mmap_active--;
spin_unlock_irqrestore(&rp->b_lock, flags);
}
-/*
- * Map ring pages to user space.
- */
-static vm_fault_t mon_bin_vma_fault(struct vm_fault *vmf)
+static void mon_bin_vma_close(struct vm_area_struct *vma)
{
- struct mon_reader_bin *rp = vmf->vma->vm_private_data;
+ struct mon_reader_bin *rp = vma->vm_private_data;
+
+ __mon_bin_vma_close(rp);
+}
+
+static const struct vm_operations_struct mon_bin_vm_ops = {
+ .open = mon_bin_vma_open,
+ .close = mon_bin_vma_close,
+};
+
+static int mon_bin_discontig_init(void *vm_private_data, void **private)
+{
+ struct mon_reader_bin *rp = vm_private_data;
+
+ /* Dropped by mon_bin_vma_close() on unmap, including on error. */
+ __mon_bin_vma_open(rp);
+ return 0;
+}
+
+static int mon_bin_discontig_get(struct discontig_kernel_page_state *state)
+{
+ struct mon_reader_bin *rp = state->vm_private_data;
unsigned long offset, chunk_idx;
- struct page *pageptr;
unsigned long flags;
spin_lock_irqsave(&rp->b_lock, flags);
- offset = vmf->pgoff << PAGE_SHIFT;
+
+ offset = state->pgoff << PAGE_SHIFT;
if (offset >= rp->b_size) {
spin_unlock_irqrestore(&rp->b_lock, flags);
- return VM_FAULT_SIGBUS;
+ discontig_kernel_map_abort(state);
+ return 0;
}
chunk_idx = offset / CHUNK_SIZE;
- pageptr = rp->b_vec[chunk_idx].pg;
- get_page(pageptr);
- vmf->page = pageptr;
+ discontig_kernel_map_page(state, rp->b_vec[chunk_idx].pg);
+
spin_unlock_irqrestore(&rp->b_lock, flags);
return 0;
}
-static const struct vm_operations_struct mon_bin_vm_ops = {
- .open = mon_bin_vma_open,
- .close = mon_bin_vma_close,
- .fault = mon_bin_vma_fault,
+static const struct discontig_kernel_page_ops mon_discontig_ops = {
+ .init = mon_bin_discontig_init,
+ .get = mon_bin_discontig_get,
};
-static int mon_bin_mmap(struct file *filp, struct vm_area_struct *vma)
+static int mon_bin_mmap_prepare(struct vm_area_desc *desc)
{
- /* don't do anything here: "fault" will set up page table entries */
- vma->vm_ops = &mon_bin_vm_ops;
+ const struct file *filp = desc->file;
- if (vma->vm_flags & VM_WRITE)
+ if (vma_desc_test(desc, VMA_WRITE_BIT))
return -EPERM;
- vm_flags_mod(vma, VM_DONTEXPAND | VM_DONTDUMP, VM_MAYWRITE);
- vma->vm_private_data = filp->private_data;
- mon_bin_vma_open(vma);
+ desc->vm_ops = &mon_bin_vm_ops;
+ vma_desc_clear_flags(desc, VMA_MAYWRITE_BIT);
+ vma_desc_set_flags(desc, VMA_DONTEXPAND_BIT, VMA_DONTDUMP_BIT);
+ desc->private_data = filp->private_data;
+
+ mmap_action_map_discontig_kernel_pages(desc, NULL, &mon_discontig_ops);
return 0;
}
@@ -1298,7 +1322,7 @@ static const struct file_operations mon_fops_binary = {
.compat_ioctl = mon_bin_compat_ioctl,
#endif
.release = mon_bin_release,
- .mmap = mon_bin_mmap,
+ .mmap_prepare = mon_bin_mmap_prepare,
};
static int mon_bin_wait_event(struct file *file, struct mon_reader_bin *rp)
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 10/40] drivers/usb/mon: update to use mmap_prepare + map kernel pages
2026-09-14 14:57 ` [PATCH v2 10/40] drivers/usb/mon: update to use mmap_prepare + map kernel pages Lorenzo Stoakes (ARM)
@ 2026-09-14 17:18 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 17:18 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Heiko Carstens, Oliver Upton, kvmarm, kvm, Vasily Gorbik,
Marc Zyngier, linux-scsi, linux-s390, selinux, linux-rdma,
Alexander Gordeev, linux-perf-users, linux-trace-kernel,
dri-devel, Christian Borntraeger, bpf
> Replace the deprecated .mmap hook with its replacement .mmap_prepare. As
> part of this change, additionally take the approach of mapping pages upon
> mmap rather than providing a fault handler.
>
> The page span cannot be mutated when an mmap mapping is in place, so this
> is safe to do in advance (the MON_IOCT_RING_SIZE ioctl operation exits
> -EBUSY if it's attempted, gated by the rp->mmap_active reference count).
>
> Utilise the newly introduced mmap_action_map_discontig_kernel_pages() to do
> this, which allows for iteration over pages in mon_bin_discontig_get().
>
> mon_bin_discontig_init() increments the rp->mmap_active reference count to
> stabilise page spans. Should an error arise the core unmaps the VMA and
> mon_bin_vma_close() drops the reference again.
>
> [ ... ]
> page discarded with MADV_DONTNEED is not repopulated and a subsequent
> access raises SIGBUS, as with other pre-populated kernel mappings.
>
> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=10
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 11/40] infiniband: update hfi1 to use remap_vmalloc_range()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (9 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 10/40] drivers/usb/mon: update to use mmap_prepare + map kernel pages Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 17:39 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 12/40] selinux: reject writable opens of policy file, drop mmap shared/write check Lorenzo Stoakes (ARM)
` (29 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
In cases which map chip memory from vmalloc()'d ranges, the hfi1 infiniband
drivers currently installs a fault handler, and then smuggles the kernel
virtual address of this range in vma->vm_pgoff.
This is exposing KASLR-sensitive internal kernel state in the VMA, and is
entirely unnecessary.
Instead, use remap_vmalloc_range() to remap the VMA to the span, and
eliminate the fault handler altogether.
remap_vmalloc_range() checks that the VMA does not extend beyond the
vmalloc area, and the driver already requires the VMA to exactly match the
span of the memory being mapped, so this has no impact.
The memory is all preallocated so not having a fault handler has no impact
either, other than pre-mapping the ranges which is beneficial.
We also remove the VM_IO flag as it's not appropriate here, and the
VM_DONTEXPAND flag as remap_vmalloc_range() will set it (and also mark the
range correctly as a mixed map).
We also update the vmalloc paths to place the virtual kernel address in
memvirt, rather than overloading the physical address memaddr. We predicate
the vmalloc handling on the vmalloc flag before we check memvirt for the
virtual address-derived PFN remap path, so this works fine.
remap_vmalloc_range() requires that the vmalloc()'d areas were all
allocated using vmalloc_user() - each of cq->comps,
uctxt->subctxt_rcvegrbuf, uctxt->subctxt_rcvhdr_base,
uctxt->subctxt_uregbase and dd->events were allocated this way, so that
requirement is satisfied.
We also remove VM_IO and VM_DONTEXPAND from the STATUS command, as these
are both set on remap.
Finally, we remove VM_DONTEXPAND from the PIO_BUFS, PIO_BUFS_SOP and UREGS
commands, as these are also all set on remap. PIO_CRED retains it, as
dma_mmap_coherent() may map via vm_insert_page() on the IOMMU-DMA path,
which sets only VM_MIXEDMAP. The RCV_HDRQ, RCV_EGRBUF and RTAIL commands
also map via dma_mmap_coherent() and never set VM_DONTEXPAND, so set it for
them for the same reason.
Note that we retain expected behaviour throughout - the vmalloc remapped
ranges set VM_MIXEDMAP | VM_DONTDUMP | VM_DONTEXPAND for each range.
VM_IO was never appropriate as the ranges are explicitly not MMIO, and the
reference to the v3.7 VM_RESERVED semantics map on to VM_MIXEDMAP |
VM_DONTDUMP | VM_DONTEXPAND correctly - no core dump, unmergeable, no
normal vm page for purposes of reclaim/migration/etc.
There is a change in behaviour in that pages mapped using
remap_vmalloc_range() will now have normal GUP-able pages, however this
should have no impact as there is no reason not to allow this.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
drivers/infiniband/hw/hfi1/file_ops.c | 83 +++++++++++------------------------
1 file changed, 25 insertions(+), 58 deletions(-)
diff --git a/drivers/infiniband/hw/hfi1/file_ops.c b/drivers/infiniband/hw/hfi1/file_ops.c
index dc548e6802e2..b02d1f1dbb27 100644
--- a/drivers/infiniband/hw/hfi1/file_ops.c
+++ b/drivers/infiniband/hw/hfi1/file_ops.c
@@ -70,7 +70,6 @@ static int set_ctxt_pkey(struct hfi1_ctxtdata *uctxt, unsigned long arg);
static int ctxt_reset(struct hfi1_ctxtdata *uctxt);
static int manage_rcvq(struct hfi1_ctxtdata *uctxt, u16 subctxt,
unsigned long arg);
-static vm_fault_t vma_fault(struct vm_fault *vmf);
static long hfi1_file_ioctl(struct file *fp, unsigned int cmd,
unsigned long arg);
@@ -85,10 +84,6 @@ static const struct file_operations hfi1_file_ops = {
.llseek = noop_llseek,
};
-static const struct vm_operations_struct vm_ops = {
- .fault = vma_fault,
-};
-
/*
* Types of memories mapped into user processes' space
*/
@@ -304,13 +299,13 @@ static ssize_t hfi1_write_iter(struct kiocb *kiocb, struct iov_iter *from)
return reqs;
}
-static inline void mmap_cdbg(u16 ctxt, u8 subctxt, u8 type, u8 mapio, u8 vmf,
+static inline void mmap_cdbg(u16 ctxt, u8 subctxt, u8 type, u8 mapio, u8 is_vmalloc,
u64 memaddr, void *memvirt, dma_addr_t memdma,
ssize_t memlen, struct vm_area_struct *vma)
{
hfi1_cdbg(PROC,
- "%u:%u type:%u io/vf/dma:%d/%d/%d, addr:0x%llx, len:%lu(%lu), flags:0x%lx",
- ctxt, subctxt, type, mapio, vmf, !!memdma,
+ "%u:%u type:%u io/vmalloc/dma:%d/%d/%d, addr:0x%llx, len:%lu(%lu), flags:0x%lx",
+ ctxt, subctxt, type, mapio, is_vmalloc, !!memdma,
memaddr ?: (u64)memvirt, memlen,
vma->vm_end - vma->vm_start, vma->vm_flags);
}
@@ -325,7 +320,7 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
memaddr = 0;
void *memvirt = NULL;
dma_addr_t memdma = 0;
- u8 subctxt, mapio = 0, vmf = 0, type;
+ u8 subctxt, mapio = 0, is_vmalloc = 0, type;
ssize_t memlen = 0;
int ret = 0;
u16 ctxt;
@@ -347,7 +342,7 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
/*
* vm_pgoff is used as a buffer selector cookie. Always mmap from
* the beginning.
- */
+ */
vma->vm_pgoff = 0;
flags = vma->vm_flags;
@@ -366,7 +361,7 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
*/
memlen = PAGE_ALIGN(uctxt->sc->credits * PIO_BLOCK_SIZE);
flags &= ~VM_MAYREAD;
- flags |= VM_DONTCOPY | VM_DONTEXPAND;
+ flags |= VM_DONTCOPY;
vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
mapio = 1;
break;
@@ -401,6 +396,7 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
memlen = rcvhdrq_size(uctxt);
memvirt = uctxt->rcvhdrq;
memdma = uctxt->rcvhdrq_dma;
+ flags |= VM_DONTEXPAND;
break;
case RCV_EGRBUF: {
unsigned long vm_start_save;
@@ -422,7 +418,7 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
ret = -EPERM;
goto done;
}
- vm_flags_clear(vma, VM_MAYWRITE);
+ vm_flags_mod(vma, VM_DONTEXPAND, VM_MAYWRITE);
/*
* Mmap multiple separate allocations into a single vma. From
* here, dma_mmap_coherent() calls dma_direct_mmap(), which
@@ -438,7 +434,7 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
memvirt = uctxt->egrbufs.buffers[i].addr;
memdma = uctxt->egrbufs.buffers[i].dma;
vma->vm_end += memlen;
- mmap_cdbg(ctxt, subctxt, type, mapio, vmf, memaddr,
+ mmap_cdbg(ctxt, subctxt, type, mapio, is_vmalloc, memaddr,
memvirt, memdma, memlen, vma);
ret = dma_mmap_coherent(&dd->pcidev->dev, vma,
memvirt, memdma, memlen);
@@ -467,7 +463,7 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
* user registers.
*/
memlen = PAGE_SIZE;
- flags |= VM_DONTCOPY | VM_DONTEXPAND;
+ flags |= VM_DONTCOPY;
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
mapio = 1;
break;
@@ -476,15 +472,10 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
* Use the page where this context's flags are. User level
* knows where it's own bitmap is within the page.
*/
- memaddr = (unsigned long)
- (dd->events + uctxt_offset(uctxt)) & PAGE_MASK;
+ memvirt = dd->events + uctxt_offset(uctxt);
+ memvirt = (void *)(((uintptr_t)memvirt) & PAGE_MASK);
memlen = PAGE_SIZE;
- /*
- * v3.7 removes VM_RESERVED but the effect is kept by
- * using VM_IO.
- */
- flags |= VM_IO | VM_DONTEXPAND;
- vmf = 1;
+ is_vmalloc = 1;
break;
case STATUS:
if (flags & VM_WRITE) {
@@ -493,7 +484,6 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
}
memaddr = kvirt_to_phys((void *)dd->status);
memlen = PAGE_SIZE;
- flags |= VM_IO | VM_DONTEXPAND;
break;
case RTAIL:
if (!HFI1_CAP_IS_USET(DMA_RTAIL)) {
@@ -512,25 +502,23 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
memvirt = (void *)hfi1_rcvhdrtail_kvaddr(uctxt);
memdma = uctxt->rcvhdrqtailaddr_dma;
flags &= ~VM_MAYWRITE;
+ flags |= VM_DONTEXPAND;
break;
case SUBCTXT_UREGS:
- memaddr = (u64)uctxt->subctxt_uregbase;
+ memvirt = uctxt->subctxt_uregbase;
memlen = PAGE_SIZE;
- flags |= VM_IO | VM_DONTEXPAND;
- vmf = 1;
+ is_vmalloc = 1;
break;
case SUBCTXT_RCV_HDRQ:
- memaddr = (u64)uctxt->subctxt_rcvhdr_base;
+ memvirt = uctxt->subctxt_rcvhdr_base;
memlen = rcvhdrq_size(uctxt) * uctxt->subctxt_cnt;
- flags |= VM_IO | VM_DONTEXPAND;
- vmf = 1;
+ is_vmalloc = 1;
break;
case SUBCTXT_EGRBUF:
- memaddr = (u64)uctxt->subctxt_rcvegrbuf;
+ memvirt = uctxt->subctxt_rcvegrbuf;
memlen = uctxt->egrbufs.size * uctxt->subctxt_cnt;
- flags |= VM_IO | VM_DONTEXPAND;
flags &= ~VM_MAYWRITE;
- vmf = 1;
+ is_vmalloc = 1;
break;
case SDMA_COMP: {
struct hfi1_user_sdma_comp_q *cq = fd->cq;
@@ -539,10 +527,9 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
ret = -EFAULT;
goto done;
}
- memaddr = (u64)cq->comps;
+ memvirt = cq->comps;
memlen = PAGE_ALIGN(sizeof(*cq->comps) * cq->nentries);
- flags |= VM_IO | VM_DONTEXPAND;
- vmf = 1;
+ is_vmalloc = 1;
break;
}
default:
@@ -559,12 +546,10 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
}
vm_flags_reset(vma, flags);
- mmap_cdbg(ctxt, subctxt, type, mapio, vmf, memaddr, memvirt, memdma,
+ mmap_cdbg(ctxt, subctxt, type, mapio, is_vmalloc, memaddr, memvirt, memdma,
memlen, vma);
- if (vmf) {
- vma->vm_pgoff = PFN_DOWN(memaddr);
- vma->vm_ops = &vm_ops;
- ret = 0;
+ if (is_vmalloc) {
+ ret = remap_vmalloc_range(vma, memvirt, 0);
} else if (memdma) {
ret = dma_mmap_coherent(&dd->pcidev->dev, vma,
memvirt, memdma, memlen);
@@ -588,24 +573,6 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
return ret;
}
-/*
- * Local (non-chip) user memory is not mapped right away but as it is
- * accessed by the user-level code.
- */
-static vm_fault_t vma_fault(struct vm_fault *vmf)
-{
- struct page *page;
-
- page = vmalloc_to_page((void *)(vmf->pgoff << PAGE_SHIFT));
- if (!page)
- return VM_FAULT_SIGBUS;
-
- get_page(page);
- vmf->page = page;
-
- return 0;
-}
-
static __poll_t hfi1_poll(struct file *fp, struct poll_table_struct *pt)
{
struct hfi1_ctxtdata *uctxt;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 11/40] infiniband: update hfi1 to use remap_vmalloc_range()
2026-09-14 14:57 ` [PATCH v2 11/40] infiniband: update hfi1 to use remap_vmalloc_range() Lorenzo Stoakes (ARM)
@ 2026-09-14 17:39 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 17:39 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Vasily Gorbik, dri-devel, Oliver Upton, Heiko Carstens,
Marc Zyngier, linux-s390, kvm, bpf, Christian Borntraeger,
linux-rdma, selinux, kvmarm, linux-trace-kernel, linux-scsi,
linux-perf-users, Alexander Gordeev
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] The patch breaks mmap for the EVENTS region for all dynamic contexts because remap_vmalloc_range() strictly requires the base address of the vmalloc allocation, but the patch passes a pointer with an offset.
--
commit b52cc1703a348bc2ace5ff6752750d7fd8d2282e
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
infiniband: update hfi1 to use remap_vmalloc_range()
This commit updates the hfi1 infiniband driver to use remap_vmalloc_range()
for mapping chip memory from vmalloc'd ranges instead of using a custom
fault handler. It aims to prevent exposing kernel virtual addresses and
cleans up VM flags.
> diff --git a/drivers/infiniband/hw/hfi1/file_ops.c b/drivers/infiniband/hw/hfi1/file_ops.c
> --- a/drivers/infiniband/hw/hfi1/file_ops.c
> +++ b/drivers/infiniband/hw/hfi1/file_ops.c
> @@ -476,15 +472,10 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
> * Use the page where this context's flags are. User level
> * knows where it's own bitmap is within the page.
> */
> - memaddr = (unsigned long)
> - (dd->events + uctxt_offset(uctxt)) & PAGE_MASK;
> + memvirt = dd->events + uctxt_offset(uctxt);
> + memvirt = (void *)(((uintptr_t)memvirt) & PAGE_MASK);
> memlen = PAGE_SIZE;
> - /*
> - * v3.7 removes VM_RESERVED but the effect is kept by
> - * using VM_IO.
> - */
> - flags |= VM_IO | VM_DONTEXPAND;
> - vmf = 1;
> + is_vmalloc = 1;
> break;
> case STATUS:
[ ... ]
> @@ -559,12 +546,10 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
> }
>
> vm_flags_reset(vma, flags);
> - mmap_cdbg(ctxt, subctxt, type, mapio, vmf, memaddr, memvirt, memdma,
> + mmap_cdbg(ctxt, subctxt, type, mapio, is_vmalloc, memaddr, memvirt, memdma,
> memlen, vma);
> - if (vmf) {
> - vma->vm_pgoff = PFN_DOWN(memaddr);
> - vma->vm_ops = &vm_ops;
> - ret = 0;
> + if (is_vmalloc) {
> + ret = remap_vmalloc_range(vma, memvirt, 0);
[Severity: High]
Will this fail for secondary contexts where uctxt_offset(uctxt) > 0?
When mapping the EVENTS region for any context > 0, memvirt is calculated as
an offset from the vmalloc base address (dd->events). However,
remap_vmalloc_range() strictly requires the exact base address of the
vmalloc allocation.
Because remap_vmalloc_range() expects the provided address to exactly match
the area base address, won't it unconditionally return -EINVAL when passed
this interior pointer?
If so, does this mean userspace applications attempting to mmap the EVENTS
page for any dynamic context will receive an unexpected -EINVAL error,
breaking core functionality for secondary contexts?
> } else if (memdma) {
> ret = dma_mmap_coherent(&dd->pcidev->dev, vma,
> memvirt, memdma, memlen);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=11
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 12/40] selinux: reject writable opens of policy file, drop mmap shared/write check
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (10 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 11/40] infiniband: update hfi1 to use remap_vmalloc_range() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 17:57 ` sashiko-bot
2026-09-14 19:57 ` Paul Moore
2026-09-14 14:57 ` [PATCH v2 13/40] ALSA: pcm: use vm_insert_page() to map PCM status page Lorenzo Stoakes (ARM)
` (28 subsequent siblings)
40 siblings, 2 replies; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
The policy file has no write method and is exposed read-only (S_IRUGO in
selinux_files[]), yet sel_open_policy() performs no open mode check, so a
CAP_DAC_OVERRIDE caller can open it O_RDWR. Reject FMODE_WRITE at open, as
kernfs does.
The file can then never be mapped with FMODE_WRITE, so do_mmap() always
clears VM_MAYWRITE and VM_SHARED for MAP_SHARED mappings and the VM_SHARED
check in sel_mmap_policy() cannot be reached. Remove it.
This also stops sel_mmap_policy() clearing VM_MAYWRITE on a mapping that is
neither a PFN map nor a mixed map, ahead of the core enforcing that only
such mappings may do so.
Acked-by: Stephen Smalley <stephen.smalley.work@gmail.com>
Reviewed-by: Jann Horn <jannh@google.com>
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
security/selinux/selinuxfs.c | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c
index c7d91476971c..545a6f89f9e7 100644
--- a/security/selinux/selinuxfs.c
+++ b/security/selinux/selinuxfs.c
@@ -340,6 +340,9 @@ static int sel_open_policy(struct inode *inode, struct file *filp)
struct policy_load_memory *plm = NULL;
int rc;
+ if (filp->f_mode & FMODE_WRITE)
+ return -EACCES;
+
rc = avc_has_perm(current_sid(), SECINITSID_SECURITY,
SECCLASS_SECURITY, SECURITY__READ_POLICY, NULL);
if (rc)
@@ -424,14 +427,6 @@ static const struct vm_operations_struct sel_mmap_policy_ops = {
static int sel_mmap_policy(struct file *filp, struct vm_area_struct *vma)
{
- if (vma->vm_flags & VM_SHARED) {
- /* do not allow mprotect to make mapping writable */
- vm_flags_clear(vma, VM_MAYWRITE);
-
- if (vma->vm_flags & VM_WRITE)
- return -EACCES;
- }
-
vm_flags_set(vma, VM_DONTEXPAND | VM_DONTDUMP);
vma->vm_ops = &sel_mmap_policy_ops;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 12/40] selinux: reject writable opens of policy file, drop mmap shared/write check
2026-09-14 14:57 ` [PATCH v2 12/40] selinux: reject writable opens of policy file, drop mmap shared/write check Lorenzo Stoakes (ARM)
@ 2026-09-14 17:57 ` sashiko-bot
2026-09-14 19:57 ` Paul Moore
1 sibling, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 17:57 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: kvmarm, Alexander Gordeev, dri-devel, Christian Borntraeger,
Marc Zyngier, linux-perf-users, linux-s390, linux-trace-kernel,
linux-rdma, linux-scsi, kvm, Heiko Carstens, selinux,
Vasily Gorbik, bpf, Oliver Upton
> The policy file has no write method and is exposed read-only (S_IRUGO in
> selinux_files[]), yet sel_open_policy() performs no open mode check, so a
> CAP_DAC_OVERRIDE caller can open it O_RDWR. Reject FMODE_WRITE at open, as
> kernfs does.
>
> The file can then never be mapped with FMODE_WRITE, so do_mmap() always
> clears VM_MAYWRITE and VM_SHARED for MAP_SHARED mappings and the VM_SHARED
> check in sel_mmap_policy() cannot be reached. Remove it.
>
> This also stops sel_mmap_policy() clearing VM_MAYWRITE on a mapping that is
> neither a PFN map nor a mixed map, ahead of the core enforcing that only
> such mappings may do so.
>
> Acked-by: Stephen Smalley <stephen.smalley.work@gmail.com>
> Reviewed-by: Jann Horn <jannh@google.com>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=12
^ permalink raw reply [flat|nested] 82+ messages in thread
* Re: [PATCH v2 12/40] selinux: reject writable opens of policy file, drop mmap shared/write check
2026-09-14 14:57 ` [PATCH v2 12/40] selinux: reject writable opens of policy file, drop mmap shared/write check Lorenzo Stoakes (ARM)
2026-09-14 17:57 ` sashiko-bot
@ 2026-09-14 19:57 ` Paul Moore
1 sibling, 0 replies; 82+ messages in thread
From: Paul Moore @ 2026-09-14 19:57 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Stephen Smalley, Jaroslav Kysela, Takashi Iwai,
Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Eduard Zingerman, Kumar Kartikeya Dwivedi, Zi Yan, Baolin Wang,
Nico Pache, Ryan Roberts, Dev Jain, Barry Song, Lance Yang,
Usama Arif, Kiryl Shutsemau, Doug Gilbert, James E.J. Bottomley,
Martin K. Petersen, Jaya Kumar, Simona Vetter, Helge Deller,
Sebastian Reichel, John Hubbard, Peter Xu, Masami Hiramatsu,
Oleg Nesterov, Peter Zijlstra, Thomas Gleixner, Ingo Molnar,
Borislav Petkov, Dave Hansen, x86, Arnaldo Carvalho de Melo,
Namhyung Kim, Mark Rutland, Rik van Riel, Harry Yoo, Juri Lelli,
Vincent Guittot, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Will Deacon, Aneesh Kumar K.V,
Nick Piggin, Arnd Bergmann, Muchun Song, Oscar Salvador,
Matthew Wilcox (Oracle), Jan Kara, Marc Zyngier, Oliver Upton,
Catalin Marinas, Madhavan Srinivasan, Anup Patel, Paul Walmsley,
Palmer Dabbelt, Albert Ou, Christian Borntraeger, Janosch Frank,
Claudio Imbrenda, Alexander Gordeev, Gerald Schaefer,
Heiko Carstens, Vasily Gorbik, David S. Miller, Andreas Larsson,
Alexander Viro, Christian Brauner, Matthew Brost, Joshua Hahn,
Rakie Kim, Byungchul Park, Gregory Price, Ying Huang,
Alistair Popple, Chris Li, Kairui Song, Kemeng Shi, Nhat Pham,
Baoquan He, Youngjun Park, Johannes Weiner, Qi Zheng,
Shakeel Butt, Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou,
Michal Hocko, Miklos Szeredi, Xu Xin, linux-mm, linux-kernel,
linux-doc, linux-usb, linux-rdma, selinux, linux-sound, bpf,
linux-scsi, linux-fbdev, dri-devel, linux-trace-kernel,
linux-perf-users, linux-arch, linux-fsdevel, linux-arm-kernel,
kvmarm, linuxppc-dev, kvm, kvm-riscv, linux-riscv, linux-s390,
sparclinux, fuse-devel
On Mon, Sep 14, 2026 at 11:05 AM Lorenzo Stoakes (ARM) <ljs@kernel.org> wrote:
>
> The policy file has no write method and is exposed read-only (S_IRUGO in
> selinux_files[]), yet sel_open_policy() performs no open mode check, so a
> CAP_DAC_OVERRIDE caller can open it O_RDWR. Reject FMODE_WRITE at open, as
> kernfs does.
>
> The file can then never be mapped with FMODE_WRITE, so do_mmap() always
> clears VM_MAYWRITE and VM_SHARED for MAP_SHARED mappings and the VM_SHARED
> check in sel_mmap_policy() cannot be reached. Remove it.
>
> This also stops sel_mmap_policy() clearing VM_MAYWRITE on a mapping that is
> neither a PFN map nor a mixed map, ahead of the core enforcing that only
> such mappings may do so.
>
> Acked-by: Stephen Smalley <stephen.smalley.work@gmail.com>
> Reviewed-by: Jann Horn <jannh@google.com>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
> ---
> security/selinux/selinuxfs.c | 11 +++--------
> 1 file changed, 3 insertions(+), 8 deletions(-)
Acked-by: Paul Moore <paul@paul-moore.com>
--
paul-moore.com
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 13/40] ALSA: pcm: use vm_insert_page() to map PCM status page
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (11 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 12/40] selinux: reject writable opens of policy file, drop mmap shared/write check Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 18:30 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 14/40] bpf: arena: mark arena_map_mmap() mappings VM_MIXEDMAP Lorenzo Stoakes (ARM)
` (27 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM), Takashi Iwai
There's no need to keep a fault handler around for this, instead map on
mmap.
While we're here, rename area to vma to be consistent.
This correctly makes the mapping a mixed map mapping.
This works towards establishing the invariant that only PFN mapped or mixed
map mappings may clear the VM_MAYWRITE flag. The status page mapping clears
VM_MAYWRITE, so it must be kernel-owned; the control page mapping remains
writable and is left fault-based.
The assumption is made that the struct pcm_mmap_status structure is at most
a page in size, which is asserted as a build bug.
This is safe to assume, as the size of the structure is 56 bytes at most.
Acked-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
sound/core/pcm_native.c | 38 +++++++++++++-------------------------
1 file changed, 13 insertions(+), 25 deletions(-)
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c
index 62324282fcae..c98fb3df14f3 100644
--- a/sound/core/pcm_native.c
+++ b/sound/core/pcm_native.c
@@ -3760,39 +3760,27 @@ static __poll_t snd_pcm_poll(struct file *file, poll_table *wait)
/*
* mmap status record
*/
-static vm_fault_t snd_pcm_mmap_status_fault(struct vm_fault *vmf)
+static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
+ struct vm_area_struct *vma)
{
- struct snd_pcm_substream *substream = vmf->vma->vm_private_data;
+ const unsigned long size = vma->vm_end - vma->vm_start;
struct snd_pcm_runtime *runtime;
-
- if (substream == NULL)
- return VM_FAULT_SIGBUS;
- runtime = substream->runtime;
- vmf->page = virt_to_page(runtime->status);
- get_page(vmf->page);
- return 0;
-}
+ struct page *page;
-static const struct vm_operations_struct snd_pcm_vm_ops_status =
-{
- .fault = snd_pcm_mmap_status_fault,
-};
+ BUILD_BUG_ON(sizeof(struct snd_pcm_mmap_status) > PAGE_SIZE);
-static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
- struct vm_area_struct *area)
-{
- long size;
- if (!(area->vm_flags & VM_READ))
+ if (!(vma->vm_flags & VM_READ))
return -EINVAL;
- size = area->vm_end - area->vm_start;
- if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status)))
+ if (size != PAGE_SIZE)
return -EINVAL;
- area->vm_ops = &snd_pcm_vm_ops_status;
- area->vm_private_data = substream;
- vm_flags_mod(area, VM_DONTEXPAND | VM_DONTDUMP,
+
+ vm_flags_mod(vma, VM_DONTEXPAND | VM_DONTDUMP,
VM_WRITE | VM_MAYWRITE);
+ vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
- return 0;
+ runtime = substream->runtime;
+ page = virt_to_page(runtime->status);
+ return vm_insert_page(vma, vma->vm_start, page);
}
/*
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 13/40] ALSA: pcm: use vm_insert_page() to map PCM status page
2026-09-14 14:57 ` [PATCH v2 13/40] ALSA: pcm: use vm_insert_page() to map PCM status page Lorenzo Stoakes (ARM)
@ 2026-09-14 18:30 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 18:30 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Heiko Carstens, Oliver Upton, kvm, linux-trace-kernel, linux-scsi,
linux-perf-users, Marc Zyngier, Alexander Gordeev, bpf,
linux-rdma, dri-devel, linux-s390, Vasily Gorbik, selinux,
Christian Borntraeger, kvmarm
> There's no need to keep a fault handler around for this, instead map on
> mmap.
>
> While we're here, rename area to vma to be consistent.
>
> This correctly makes the mapping a mixed map mapping.
>
> This works towards establishing the invariant that only PFN mapped or mixed
> map mappings may clear the VM_MAYWRITE flag. The status page mapping clears
> VM_MAYWRITE, so it must be kernel-owned; the control page mapping remains
> writable and is left fault-based.
>
> The assumption is made that the struct pcm_mmap_status structure is at most
> a page in size, which is asserted as a build bug.
>
> This is safe to assume, as the size of the structure is 56 bytes at most.
>
> Acked-by: Takashi Iwai <tiwai@suse.de>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=13
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 14/40] bpf: arena: mark arena_map_mmap() mappings VM_MIXEDMAP
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (12 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 13/40] ALSA: pcm: use vm_insert_page() to map PCM status page Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 18:46 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 15/40] mm/vma: add vma[_flags]_is_kernel_owned() predicates Lorenzo Stoakes (ARM)
` (26 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
The bpf_map->ops->map_mmap callback invoked by bpf_map_mmap() can be set to
one of ringbuf_map_mmap_kern(), ringbuf_map_mmap_user(), array_map_mmap()
or arena_map_mmap().
It is convention in mm to mark mappings whose pages the kernel manages
itself with VM_MIXEDMAP, so the core mm knows not to treat them as ordinary
page cache or anonymous memory.
The map_mmap callbacks ringbuf_map_mmap_kern() and ringbuf_map_mmap_user()
use remap_vmalloc_range(), which ultimately invokes vm_insert_page() and so
marks the ranges VM_MIXEDMAP, and array_map_mmap() sets VM_MIXEDMAP
explicitly.
However, the exception to this is arena_map_mmap(), which doesn't set the
flag.
This patch corrects this and updates the comment to reflect it.
The pages are refcounted and vm_normal_page() finds them regardless of the
flag, and VM_DONTEXPAND remains set (marking the memory as VM_SPECIAL and
thus unmergeable). The one effect is that NUMA balancing now skips these
VMAs, as it already does for the other bpf map mappings, which is the
reason array_map_mmap() gives for setting the flag.
The intent of this patch is to be able to establish the invariant that only
PFN-mapped or mixed map ranges may clear the VM_MAYWRITE flag, as is done
in bpf_map_mmap().
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
kernel/bpf/arena.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/kernel/bpf/arena.c b/kernel/bpf/arena.c
index 7b6847200b43..b69fe5e34339 100644
--- a/kernel/bpf/arena.c
+++ b/kernel/bpf/arena.c
@@ -620,8 +620,9 @@ static int arena_map_mmap(struct bpf_map *map, struct vm_area_struct *vma)
* clears VM_MAYEXEC. Set VM_DONTEXPAND to avoid potential change
* of user_vm_start. Set VM_DONTCOPY to prevent arena VMA from
* being copied into the child process on fork.
+ * This is a kernel page so set VM_MIXEDMAP.
*/
- vm_flags_set(vma, VM_DONTEXPAND | VM_DONTCOPY);
+ vm_flags_set(vma, VM_MIXEDMAP | VM_DONTEXPAND | VM_DONTCOPY);
vma->vm_ops = &arena_vm_ops;
return 0;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 14/40] bpf: arena: mark arena_map_mmap() mappings VM_MIXEDMAP
2026-09-14 14:57 ` [PATCH v2 14/40] bpf: arena: mark arena_map_mmap() mappings VM_MIXEDMAP Lorenzo Stoakes (ARM)
@ 2026-09-14 18:46 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 18:46 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-s390, linux-scsi, Vasily Gorbik, linux-perf-users,
Marc Zyngier, kvm, Heiko Carstens, bpf, dri-devel, selinux,
Oliver Upton, linux-trace-kernel, kvmarm, Alexander Gordeev,
Christian Borntraeger, linux-rdma
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] VMA traversal on an external `mm_struct` in `zap_pages` without verifying if the address space is stable.
--
commit cbf53175992b654249c64afadb9a535e0ca6aecd
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
bpf: arena: mark arena_map_mmap() mappings VM_MIXEDMAP
The bpf_map->ops->map_mmap callback invoked by bpf_map_mmap() can be set to
one of ringbuf_map_mmap_kern(), ringbuf_map_mmap_user(), array_map_mmap()
or arena_map_mmap().
[ ... ]
> diff --git a/kernel/bpf/arena.c b/kernel/bpf/arena.c
> index 7b6847200b431..b69fe5e343393 100644
> --- a/kernel/bpf/arena.c
> +++ b/kernel/bpf/arena.c
> @@ -620,8 +620,9 @@ static int arena_map_mmap(struct bpf_map *map, struct vm_area_struct *vma)
> * clears VM_MAYEXEC. Set VM_DONTEXPAND to avoid potential change
> * of user_vm_start. Set VM_DONTCOPY to prevent arena VMA from
> * being copied into the child process on fork.
> + * This is a kernel page so set VM_MIXEDMAP.
> */
> - vm_flags_set(vma, VM_DONTEXPAND | VM_DONTCOPY);
> + vm_flags_set(vma, VM_MIXEDMAP | VM_DONTEXPAND | VM_DONTCOPY);
> vma->vm_ops = &arena_vm_ops;
> return 0;
> }
[Severity: High]
This is a pre-existing issue, but does zap_pages() traverse the maple tree
of an external mm without verifying if the address space is stable?
kernel/bpf/arena.c:zap_pages()
mmap_read_lock(mm);
/*
* Re-resolve: while we waited the VMA could have been unmapped
* and a different mapping installed at the same address.
*/
vma = find_vma(mm, vm_start);
If a BPF program frees arena pages, triggering zap_pages(), it iterates
over the mm_struct of every process that mapped the arena and calls
find_vma(mm, vm_start). If one of those processes concurrently failed
dup_mmap() during fork() or was reaped by the OOM killer, its address
space is marked MMF_UNSTABLE and its maple tree is in an inconsistent
state.
Can traversing an unstable maple tree here cause a kernel panic when
find_vma() encounters XA_ZERO_ENTRY markers or incomplete tree state?
Should this path call check_stable_address_space(mm) before traversing?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=14
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 15/40] mm/vma: add vma[_flags]_is_kernel_owned() predicates
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (13 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 14/40] bpf: arena: mark arena_map_mmap() mappings VM_MIXEDMAP Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 18:50 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 16/40] mm/vma: only allow mmap to clear VMA_MAYWRITE_BIT if kernel-owned Lorenzo Stoakes (ARM)
` (25 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Rather than referring to VMA flags with uncertain meaning, add a new
predicate that explicitly describes what possession of the VMA_PFNMAP_BIT
or VMA_MIXEDMAP_BIT flags mean, and then refer to that function for
determining VMA mergeability.
Either flag means the contents of the mapping are owned by the kernel,
usually a driver, rather than by the core mm: the memory may be MMIO,
kernel-allocated pages or even ordinary pages the driver maps itself, but
the core must not populate, reclaim, migrate, copy-on-write or merge the
range on its own initiative.
We initially also include VMA_IO_BIT here, as by implication, these must be
kernel-owned. (mlock() also sets VMA_IO_BIT transiently on ordinary VMAs
while locking them, which is addressed later in this series.)
However the intent is to in future remove this, as no mapping should be
marked as an I/O mapping without also being marked with VMA_PFNMAP_BIT.
This forms the basis of further work intended to improve how we express VMA
properties such as this.
Also update the VMA userland tests to reflect the change.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 56 ++++++++++++++++++++++++++++++++++++++++-
tools/testing/vma/include/dup.h | 29 ++++++++++++++++++++-
2 files changed, 83 insertions(+), 2 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 2a92193ac6a5..cab29d6e15c1 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1612,6 +1612,44 @@ static inline bool vma_is_shared_maywrite(const struct vm_area_struct *vma)
return is_shared_maywrite(&vma->flags);
}
+/**
+ * vma_flags_is_kernel_owned() - Do the specified VMA flags indicate that the
+ * contents of the VMA are owned by the kernel rather than the core mm?
+ * @flags: The VMA flags to test.
+ *
+ * A kernel-owned mapping is one whose contents are established and controlled
+ * by the kernel, typically a driver, rather than by the core mm's fault and
+ * rmap machinery.
+ *
+ * The mapping may be memory-mapped I/O, kernel-allocated pages or ordinary
+ * pages the owner has chosen to map itself (shmem via a PFN map, for instance).
+ *
+ * In all cases the core mm must not populate, reclaim, migrate, copy-on-write
+ * or merge it of its own accord.
+ *
+ * Pages mapped this way are not necessarily reference counted or map counted.
+ *
+ * Returns: true if the flags indicate a kernel-owned mapping.
+ */
+static inline bool vma_flags_is_kernel_owned(const vma_flags_t *flags)
+{
+ return vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT,
+ VMA_IO_BIT);
+}
+
+/**
+ * vma_is_kernel_owned() - Are the contents of @vma owned by the kernel?
+ * @vma: The VMA to test.
+ *
+ * See vma_flags_is_kernel_owned() for a description of this property.
+ *
+ * Returns: true if the VMA is kernel-owned.
+ */
+static inline bool vma_is_kernel_owned(const struct vm_area_struct *vma)
+{
+ return vma_flags_is_kernel_owned(&vma->flags);
+}
+
/**
* vma_flags_can_merge() - Do the specified VMA flags permit the VMA to be
* merged with another?
@@ -1620,7 +1658,23 @@ static inline bool vma_is_shared_maywrite(const struct vm_area_struct *vma)
*/
static inline bool vma_flags_can_merge(const vma_flags_t *flags)
{
- return !vma_flags_test_any_mask(flags, VMA_SPECIAL_FLAGS);
+ /*
+ * VMA merging assumes that a VMA's flags and fields completely describe
+ * its state.
+ *
+ * However, kernel-owned mappings may have established state upon mapping
+ * not embodied in any attribute of the VMA.
+ *
+ * Additionally, private (CoW) PFN maps encode the source PFN of the
+ * range in vma->vm_pgoff, which may otherwise cause spurious merges.
+ */
+ if (vma_flags_is_kernel_owned(flags))
+ return false;
+ /* VMA explicitly marked as being unmergeable. */
+ if (vma_flags_test(flags, VMA_DONTEXPAND_BIT))
+ return false;
+
+ return true;
}
/**
diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
index 1d5f6b3cbd21..9205ebf31ce7 100644
--- a/tools/testing/vma/include/dup.h
+++ b/tools/testing/vma/include/dup.h
@@ -1665,7 +1665,34 @@ static inline bool file_is_dev_zero(const struct file *file)
return file && file->f_op == &zero_fops;
}
+static inline bool vma_flags_is_kernel_owned(const vma_flags_t *flags)
+{
+ return vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT,
+ VMA_IO_BIT);
+}
+
+static inline bool vma_is_kernel_owned(const struct vm_area_struct *vma)
+{
+ return vma_flags_is_kernel_owned(&vma->flags);
+}
+
static inline bool vma_flags_can_merge(const vma_flags_t *flags)
{
- return !vma_flags_test_any_mask(flags, VMA_SPECIAL_FLAGS);
+ /*
+ * VMA merging assumes that the properties of a VMA completely describe
+ * the properties of that VMA.
+ *
+ * However, kernel-owned mappings may have established state upon mapping
+ * not embodied in any attribute of the VMA.
+ *
+ * Additionally, PFN maps encode the source PFN of the range in
+ * vma->vm_pgoff, which may otherwise cause spurious merges.
+ */
+ if (vma_flags_is_kernel_owned(flags))
+ return false;
+ /* VMA explicitly marked as being unmergeable. */
+ if (vma_flags_test(flags, VMA_DONTEXPAND_BIT))
+ return false;
+
+ return true;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 15/40] mm/vma: add vma[_flags]_is_kernel_owned() predicates
2026-09-14 14:57 ` [PATCH v2 15/40] mm/vma: add vma[_flags]_is_kernel_owned() predicates Lorenzo Stoakes (ARM)
@ 2026-09-14 18:50 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 18:50 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-s390, Heiko Carstens, linux-rdma, kvm, Marc Zyngier,
Alexander Gordeev, dri-devel, Vasily Gorbik, bpf,
Christian Borntraeger, linux-perf-users, selinux, linux-scsi,
kvmarm, Oliver Upton, linux-trace-kernel
> Rather than referring to VMA flags with uncertain meaning, add a new
> predicate that explicitly describes what possession of the VMA_PFNMAP_BIT
> or VMA_MIXEDMAP_BIT flags mean, and then refer to that function for
> determining VMA mergeability.
>
> Either flag means the contents of the mapping are owned by the kernel,
> usually a driver, rather than by the core mm: the memory may be MMIO,
> kernel-allocated pages or even ordinary pages the driver maps itself, but
> the core must not populate, reclaim, migrate, copy-on-write or merge the
> range on its own initiative.
>
> We initially also include VMA_IO_BIT here, as by implication, these must be
> kernel-owned. (mlock() also sets VMA_IO_BIT transiently on ordinary VMAs
> while locking them, which is addressed later in this series.)
>
> However the intent is to in future remove this, as no mapping should be
> marked as an I/O mapping without also being marked with VMA_PFNMAP_BIT.
>
> This forms the basis of further work intended to improve how we express VMA
> properties such as this.
>
> Also update the VMA userland tests to reflect the change.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=15
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 16/40] mm/vma: only allow mmap to clear VMA_MAYWRITE_BIT if kernel-owned
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (14 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 15/40] mm/vma: add vma[_flags]_is_kernel_owned() predicates Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 19:14 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 17/40] mm/vma: add and use vma_[flags]_is_fixed_mapping Lorenzo Stoakes (ARM)
` (24 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
For ordinary files the only way the VMA_MAYWRITE_BIT flag is cleared is if
the underlying file is itself read-only.
This means that mprotect() cannot mark a shared mapping of a read-only file
as read/write, as doing so would violate the read only attribute, and
permit writes.
In general, we do not want file systems to be able to do this for
read/write files.
Doing so would violate fundamental user expectation of file attributes and
likely break userspace.
However, drivers pose a tricky problem here - the /dev/xxx file may be
read/write but provide access to a resource which is fundamentally
read-only.
Therefore we must allow drivers to be able to clear VMA_MAYWRITE_BIT.
To achieve both of these things, restrict this ability to kernel-owned
mappings as identified by vma_flags_is_kernel_owned().
This constrains this ability to drivers which own the mapping's contents,
whether memory-mapped I/O, kernel-allocated pages, or ordinary pages they
map themselves, and so define its semantics.
Every in-tree mmap hook which clears VMA_MAYWRITE_BIT, some twenty sites
across drivers, filesystems and bpf, establishes a kernel-owned mapping,
with usbmon and the ALSA PCM status page converted earlier in this series
to do so.
Note that drivers may, if they do not gate on VMA_SHARED_BIT, be able to
disable MAP_PRIVATE-file-backed mapping CoW semantics.
This is perhaps not always intended, but we retain this capacity to
maintain existing behaviour.
As all drivers which clear VMA_MAYWRITE_BIT establish kernel-owned
mappings, no functional change is intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/vma.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/mm/vma.c b/mm/vma.c
index 2648fb0e1995..d71ec51255b1 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -2795,6 +2795,11 @@ static int mmap_validate(unsigned long prev_start,
if (WARN_ON_ONCE(!was_maywrite && is_maywrite))
return -EINVAL;
+ /* Only kernel-owned mappings may clear VMA_MAYWRITE_BIT. */
+ if (!vma_flags_is_kernel_owned(curr_flags) &&
+ WARN_ON_ONCE(was_maywrite && !is_maywrite))
+ return -EINVAL;
+
return mmap_validate_vma_flags(curr_flags);
}
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 16/40] mm/vma: only allow mmap to clear VMA_MAYWRITE_BIT if kernel-owned
2026-09-14 14:57 ` [PATCH v2 16/40] mm/vma: only allow mmap to clear VMA_MAYWRITE_BIT if kernel-owned Lorenzo Stoakes (ARM)
@ 2026-09-14 19:14 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 19:14 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: bpf, Heiko Carstens, linux-perf-users, linux-trace-kernel, kvm,
Alexander Gordeev, linux-scsi, Marc Zyngier, kvmarm, selinux,
linux-s390, dri-devel, linux-rdma, Christian Borntraeger,
Vasily Gorbik, Oliver Upton
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [Critical] VMA flags and `pgoff` modifications performed by `mmap_action_prepare()` are lost in `call_mmap_prepare()`, resulting in missing `VM_MIXEDMAP` / `VM_PFNMAP` flags on the final VMA.
--
commit 7ddd38612e8ff73188b344ec633bfe65678e0dce
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
mm/vma: only allow mmap to clear VMA_MAYWRITE_BIT if kernel-owned
For ordinary files the only way the VMA_MAYWRITE_BIT flag is cleared is if
the underlying file is itself read-only.
[ ... ]
As all drivers which clear VMA_MAYWRITE_BIT establish kernel-owned
mappings, no functional change is intended.
> diff --git a/mm/vma.c b/mm/vma.c
> index 2648fb0e19959..d71ec51255b18 100644
> --- a/mm/vma.c
> +++ b/mm/vma.c
> @@ -2795,6 +2795,11 @@ static int mmap_validate(unsigned long prev_start,
> if (WARN_ON_ONCE(!was_maywrite && is_maywrite))
> return -EINVAL;
>
> + /* Only kernel-owned mappings may clear VMA_MAYWRITE_BIT. */
> + if (!vma_flags_is_kernel_owned(curr_flags) &&
> + WARN_ON_ONCE(was_maywrite && !is_maywrite))
> + return -EINVAL;
> +
> return mmap_validate_vma_flags(curr_flags);
> }
[Severity: Critical]
This isn't a bug introduced by this patch, but while reviewing mm/vma.c,
I noticed a potential issue in call_mmap_prepare():
mm/vma.c:call_mmap_prepare() {
/* Update fields permitted to be changed. */
map->pgoff = desc->pgoff;
if (desc->vm_file != map->vm_file)
map->vm_file = desc->vm_file;
map->vma_flags = desc->vma_flags;
map->page_prot = desc->page_prot;
/* User-defined fields. */
map->vm_ops = desc->vm_ops;
map->vm_private_data = desc->private_data;
/* It's invalid for mmap_prepare hooks to clear vm_ops. */
if (!desc->vm_ops)
return -EINVAL;
err = call_action_prepare(map, desc);
if (err)
return err;
}
Are the VMA flags and pgoff modifications performed by call_action_prepare()
lost here? Since map->vma_flags and map->pgoff are initialized from desc
before calling call_action_prepare(), the updated fields in desc are never
synchronized back to map.
Could this lead to missing VM_MIXEDMAP or VM_PFNMAP flags on the final VMA?
If unprivileged userspace calls mmap() on a driver using remap_pfn_range(),
might the core memory management subsystem treat hardware/PFN mapped pages
as normal anonymous or file-backed RAM pages?
This could result in the kernel attempting to manage page reference counts on
arbitrary physical I/O memory PFNs when the VMA is later unmapped or
accessed, potentially leading to immediate crashes or silent corruption.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=16
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 17/40] mm/vma: add and use vma_[flags]_is_fixed_mapping
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (15 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 16/40] mm/vma: only allow mmap to clear VMA_MAYWRITE_BIT if kernel-owned Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 19:24 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 18/40] scsi: sg: convert mmap hook to mmap_prepare and rework Lorenzo Stoakes (ARM)
` (23 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
This determines whether a VMA cannot be expanded or merged because what
they mapped was determined to be a set size at mmap time.
This typically refers to kernel-owned mappings, however VMA_DONTEXPAND_BIT
is not reliably set alongside VMA_PFNMAP_BIT or VMA_MIXEDMAP_BIT, so we
must explicitly test for this for now.
We also explicitly test for VMA_PFNMAP_BIT as VMA_DONTEXPAND_BIT may not be
set for VMA_PFNMAP_BIT's despite the one implying the other.
Use this predicate in vma_flags_can_merge() and in check_prep_vma() in the
mremap logic testing to see if mremap() can expand the VMA. The criteria
for khugepaged and MADV_COLLAPSE eligibility in
__thp_vma_allowable_orders() are precisely those for mergeability, so use
vma_can_merge() there (with an expanded comment).
This obviates the need for the VM_NO_KHUGEPAGED mask, so remove it.
Hugetlb VMAs remain excluded from khugepaged as hugetlbfs always sets
VMA_DONTEXPAND_BIT.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 39 +++++++++++++++++++++++++++++++++++----
mm/huge_memory.c | 11 +++++++----
mm/mremap.c | 5 ++---
3 files changed, 44 insertions(+), 11 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index cab29d6e15c1..ca598e5f9715 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -600,9 +600,6 @@ enum {
#define VMA_REMAP_FLAGS mk_vma_flags(VMA_IO_BIT, VMA_PFNMAP_BIT, \
VMA_DONTEXPAND_BIT, VMA_DONTDUMP_BIT)
-/* This mask prevents VMA from being scanned with khugepaged */
-#define VM_NO_KHUGEPAGED (VM_SPECIAL | VM_HUGETLB)
-
/* This mask defines which mm->def_flags a process can inherit its parent */
#define VM_INIT_DEF_MASK VM_NOHUGEPAGE
@@ -1650,6 +1647,40 @@ static inline bool vma_is_kernel_owned(const struct vm_area_struct *vma)
return vma_flags_is_kernel_owned(&vma->flags);
}
+/**
+ * vma_flags_is_fixed_mapping() - Do the specified VMA flags indicate that this
+ * is a fixed mapping that cannot be expanded or merged?
+ * @flags: The VMA flags to test.
+ *
+ * Fixed mappings are those whose size is set at the point of mmap (for
+ * instance, a kernel-owned mapping of a fixed range of memory), and thus
+ * cannot be expanded or merged.
+ *
+ * Returns: true if the flags indicate a fixed mapping.
+ */
+static inline bool vma_flags_is_fixed_mapping(const vma_flags_t *flags)
+{
+ /*
+ * VMA_PFNMAP_BIT should imply VMA_DONTEXPAND_BIT, but some callers set
+ * only the former.
+ */
+ return vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_DONTEXPAND_BIT);
+}
+
+/**
+ * vma_is_fixed_mapping() - Is this VMA a fixed mapping that cannot be
+ * expanded or merged?
+ * @vma: The VMA to test.
+ *
+ * See vma_flags_is_fixed_mapping() for a description of this property.
+ *
+ * Returns: true if the VMA maps a fixed mapping.
+ */
+static inline bool vma_is_fixed_mapping(const struct vm_area_struct *vma)
+{
+ return vma_flags_is_fixed_mapping(&vma->flags);
+}
+
/**
* vma_flags_can_merge() - Do the specified VMA flags permit the VMA to be
* merged with another?
@@ -1671,7 +1702,7 @@ static inline bool vma_flags_can_merge(const vma_flags_t *flags)
if (vma_flags_is_kernel_owned(flags))
return false;
/* VMA explicitly marked as being unmergeable. */
- if (vma_flags_test(flags, VMA_DONTEXPAND_BIT))
+ if (vma_flags_is_fixed_mapping(flags))
return false;
return true;
diff --git a/mm/huge_memory.c b/mm/huge_memory.c
index 4cd917f77f3f..4d0acd9a1099 100644
--- a/mm/huge_memory.c
+++ b/mm/huge_memory.c
@@ -212,11 +212,14 @@ unsigned long __thp_vma_allowable_orders(struct vm_area_struct *vma,
return in_pf ? orders : 0;
/*
- * khugepaged special VMA and hugetlb VMA.
- * Must be checked after dax since some dax mappings may have
- * VM_MIXEDMAP set.
+ * khugepaged moves data from VMAs once collapsed, after they have been
+ * faulted in, relying on refaulting for file-backed memory.
+ *
+ * Kernel-owned mappings cannot be reliably reconstructed from page
+ * faults, and fixed mappings (including hugetlb) may not be marked as
+ * kernel-owned - precisely the mappings which cannot be merged.
*/
- if (!in_pf && !smaps && (vm_flags & VM_NO_KHUGEPAGED))
+ if (!in_pf && !smaps && !vma_can_merge(vma))
return 0;
/*
diff --git a/mm/mremap.c b/mm/mremap.c
index 7c368440fafe..ed19b47c2caf 100644
--- a/mm/mremap.c
+++ b/mm/mremap.c
@@ -1788,8 +1788,7 @@ static int check_prep_vma(struct vma_remap_struct *vrm)
return -EINVAL;
}
- if ((vrm->flags & MREMAP_DONTUNMAP) &&
- vma_test_any(vma, VMA_DONTEXPAND_BIT, VMA_PFNMAP_BIT))
+ if ((vrm->flags & MREMAP_DONTUNMAP) && vma_is_fixed_mapping(vma))
return -EINVAL;
/*
@@ -1827,7 +1826,7 @@ static int check_prep_vma(struct vma_remap_struct *vrm)
if (pgoff + (new_len >> PAGE_SHIFT) < pgoff)
return -EINVAL;
- if (vma_test_any(vma, VMA_DONTEXPAND_BIT, VMA_PFNMAP_BIT))
+ if (vma_is_fixed_mapping(vma))
return -EFAULT;
if (!mlock_future_ok(mm, vma_test(vma, VMA_LOCKED_BIT), vrm->delta))
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 17/40] mm/vma: add and use vma_[flags]_is_fixed_mapping
2026-09-14 14:57 ` [PATCH v2 17/40] mm/vma: add and use vma_[flags]_is_fixed_mapping Lorenzo Stoakes (ARM)
@ 2026-09-14 19:24 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 19:24 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: selinux, Vasily Gorbik, Christian Borntraeger, linux-trace-kernel,
bpf, Alexander Gordeev, Oliver Upton, linux-s390, linux-rdma,
linux-scsi, linux-perf-users, kvm, Heiko Carstens, dri-devel,
Marc Zyngier, kvmarm
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Incomplete refactoring: vma_flags_can_merge() in the VMA testing framework (tools/testing/vma/include/dup.h) was not updated to use the new vma_flags_is_fixed_mapping() predicate.
--
commit 11aa075e5d40e13021c110a6f4f112bc2d087fdf
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
mm/vma: add and use vma_[flags]_is_fixed_mapping
This commit introduces new predicates to determine if a VMA is a fixed
mapping that cannot be expanded or merged. It updates core VMA merging logic
and mremap checks to use these new helpers.
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index cab29d6e15c14..ca598e5f97154 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
[ ... ]
> @@ -1671,7 +1702,7 @@ static inline bool vma_flags_can_merge(const vma_flags_t *flags)
> if (vma_flags_is_kernel_owned(flags))
> return false;
> /* VMA explicitly marked as being unmergeable. */
> - if (vma_flags_test(flags, VMA_DONTEXPAND_BIT))
> + if (vma_flags_is_fixed_mapping(flags))
[Severity: Low]
Since this patch updates vma_flags_can_merge() in include/linux/mm.h to use
the new vma_flags_is_fixed_mapping() helper, should the duplicated version
of vma_flags_can_merge() in tools/testing/vma/include/dup.h also be updated
to match?
Leaving it out causes the mock in the testing framework to textually diverge
from the core implementation. While the logical behavior remains the same
because vma_flags_is_kernel_owned() catches VMA_PFNMAP_BIT, it seems the
duplicated code missed getting this newly introduced helper.
For reference, vma_flags_can_merge() in tools/testing/vma/include/dup.h
still contains the old test:
/* VMA explicitly marked as being unmergeable. */
if (vma_flags_test(flags, VMA_DONTEXPAND_BIT))
return false;
> return false;
>
> return true;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=17
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 18/40] scsi: sg: convert mmap hook to mmap_prepare and rework
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (16 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 17/40] mm/vma: add and use vma_[flags]_is_fixed_mapping Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 19:30 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 19/40] fbdev: defio: assert FBINFO_VIRTFB, drop VM_IO, add VM_MIXEDMAP Lorenzo Stoakes (ARM)
` (22 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Move from the deprecated mmap hook to the new mmap_prepare hook.
We are mapping kernel pages here, so use the discontiguous kernel mapping
mmap action to do so.
Unwind the rather confusing loop and instead map as many pages as we can at
one time.
Note that we do not need to pay attention to rsv_schp->k_use_sg here, as
the pages are populated for the length of the buffer at
rsv_schp->page_order granularity as compound pages.
The discontiguous kernel page mapping logic handles the compound pages for
us.
sfp->mmap_called keeps the buffer stable for us. As before it is never
cleared, so a failed mmap also leaves it set.
We also remove some useless vma, vma->vm_file NULL checks - these will
always be non-NULL if you reached the mmap hook logic.
We retain log output for consistency, but change what's output on page
mapping to indicate that sg_discontig_get() does the work now.
Note that we drop the VMA_IO_BIT flag for the VMA here. It was never
necessary as we invoke alloc_pages() which gives us refcounted folios that
are fine for GUP to access (VMA_IO_BIT would prevent that).
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
drivers/scsi/sg.c | 115 ++++++++++++++++++++++++------------------------------
1 file changed, 51 insertions(+), 64 deletions(-)
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c
index 5408f002e6c0..3f9e08725602 100644
--- a/drivers/scsi/sg.c
+++ b/drivers/scsi/sg.c
@@ -1212,85 +1212,72 @@ sg_fasync(int fd, struct file *filp, int mode)
return fasync_helper(fd, filp, mode, &sfp->async_qp);
}
-static vm_fault_t
-sg_vma_fault(struct vm_fault *vmf)
+static int sg_discontig_init(void *vm_private_data, void **private)
{
- struct vm_area_struct *vma = vmf->vma;
- Sg_fd *sfp;
- unsigned long offset, len, sa;
- Sg_scatter_hold *rsv_schp;
- int k, length;
-
- if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
- return VM_FAULT_SIGBUS;
- rsv_schp = &sfp->reserve;
- offset = vmf->pgoff << PAGE_SHIFT;
- if (offset >= rsv_schp->bufflen)
- return VM_FAULT_SIGBUS;
- SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
- "sg_vma_fault: offset=%lu, scatg=%d\n",
- offset, rsv_schp->k_use_sg));
- sa = vma->vm_start;
- length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
- for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
- len = vma->vm_end - sa;
- len = (len < length) ? len : length;
- if (offset < len) {
- struct page *page = rsv_schp->pages[k] + (offset >> PAGE_SHIFT);
- get_page(page); /* increment page count */
- vmf->page = page;
- return 0; /* success */
- }
- sa += len;
- offset -= len;
+ const unsigned long req_sz = (unsigned long)*private;
+ Sg_fd *sfp = vm_private_data;
+ Sg_scatter_hold *rsv_schp = &sfp->reserve;
+ int err = 0;
+
+ mutex_lock(&sfp->f_mutex);
+ if (req_sz > rsv_schp->bufflen) {
+ err = -ENOMEM; /* cannot map more than reserved buffer */
+ goto out;
+ }
+ sfp->mmap_called = 1; /* Prevents changes to buffer size. */
+out:
+ mutex_unlock(&sfp->f_mutex);
+ return err;
+}
+
+static int
+sg_discontig_get(struct discontig_kernel_page_state *state)
+{
+ Sg_fd *sfp = state->vm_private_data;
+ Sg_scatter_hold *rsv_schp = &sfp->reserve;
+ const unsigned int order = rsv_schp->page_order;
+ const pgoff_t nr_pages = state->nr_pages_mapped;
+
+ if (nr_pages >= (rsv_schp->bufflen >> PAGE_SHIFT)) {
+ discontig_kernel_map_abort(state);
+ return 0;
}
- return VM_FAULT_SIGBUS;
+ SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
+ "%s: offset=%lu, scatg=%d\n", __func__,
+ nr_pages << PAGE_SHIFT, rsv_schp->k_use_sg));
+
+ discontig_kernel_map_page(state, rsv_schp->pages[nr_pages >> order]);
+ return 0;
}
-static const struct vm_operations_struct sg_mmap_vm_ops = {
- .fault = sg_vma_fault,
+static const struct discontig_kernel_page_ops sg_discontig_ops = {
+ .init = sg_discontig_init,
+ .get = sg_discontig_get,
};
static int
-sg_mmap(struct file *filp, struct vm_area_struct *vma)
+sg_mmap_prepare(struct vm_area_desc *desc)
{
- Sg_fd *sfp;
- unsigned long req_sz, len, sa;
- Sg_scatter_hold *rsv_schp;
- int k, length;
- int ret = 0;
+ Sg_fd *sfp = desc->file->private_data;
+ const unsigned long req_sz = vma_desc_size(desc);
- if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
+ if (!sfp)
return -ENXIO;
- req_sz = vma->vm_end - vma->vm_start;
+
SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
"sg_mmap starting, vm_start=%p, len=%d\n",
- (void *) vma->vm_start, (int) req_sz));
- if (vma->vm_pgoff)
+ (void *) desc->start, (int) req_sz));
+
+ if (desc->pgoff)
return -EINVAL; /* want no offset */
- rsv_schp = &sfp->reserve;
- mutex_lock(&sfp->f_mutex);
- if (req_sz > rsv_schp->bufflen) {
- ret = -ENOMEM; /* cannot map more than reserved buffer */
- goto out;
- }
- sa = vma->vm_start;
- length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
- for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
- len = vma->vm_end - sa;
- len = (len < length) ? len : length;
- sa += len;
- }
+ vma_desc_set_flags(desc, VMA_DONTEXPAND_BIT, VMA_DONTDUMP_BIT);
+ desc->private_data = sfp;
- sfp->mmap_called = 1;
- vm_flags_set(vma, VM_IO | VM_DONTEXPAND | VM_DONTDUMP);
- vma->vm_private_data = sfp;
- vma->vm_ops = &sg_mmap_vm_ops;
-out:
- mutex_unlock(&sfp->f_mutex);
- return ret;
+ mmap_action_map_discontig_kernel_pages(desc, (void *)req_sz,
+ &sg_discontig_ops);
+ return 0;
}
static void
@@ -1415,7 +1402,7 @@ static const struct file_operations sg_fops = {
.unlocked_ioctl = sg_ioctl,
.compat_ioctl = compat_ptr_ioctl,
.open = sg_open,
- .mmap = sg_mmap,
+ .mmap_prepare = sg_mmap_prepare,
.release = sg_release,
.fasync = sg_fasync,
};
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 18/40] scsi: sg: convert mmap hook to mmap_prepare and rework
2026-09-14 14:57 ` [PATCH v2 18/40] scsi: sg: convert mmap hook to mmap_prepare and rework Lorenzo Stoakes (ARM)
@ 2026-09-14 19:30 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 19:30 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Oliver Upton, kvm, linux-rdma, Heiko Carstens,
Christian Borntraeger, linux-scsi, dri-devel, kvmarm,
Marc Zyngier, Alexander Gordeev, linux-s390, linux-perf-users,
Vasily Gorbik, selinux, linux-trace-kernel, bpf
> Move from the deprecated mmap hook to the new mmap_prepare hook.
>
> We are mapping kernel pages here, so use the discontiguous kernel mapping
> mmap action to do so.
>
> Unwind the rather confusing loop and instead map as many pages as we can at
> one time.
>
> Note that we do not need to pay attention to rsv_schp->k_use_sg here, as
> the pages are populated for the length of the buffer at
> rsv_schp->page_order granularity as compound pages.
>
> The discontiguous kernel page mapping logic handles the compound pages for
> us.
>
> sfp->mmap_called keeps the buffer stable for us. As before it is never
> cleared, so a failed mmap also leaves it set.
>
> We also remove some useless vma, vma->vm_file NULL checks - these will
> always be non-NULL if you reached the mmap hook logic.
>
> We retain log output for consistency, but change what's output on page
> mapping to indicate that sg_discontig_get() does the work now.
>
> Note that we drop the VMA_IO_BIT flag for the VMA here. It was never
> necessary as we invoke alloc_pages() which gives us refcounted folios that
> are fine for GUP to access (VMA_IO_BIT would prevent that).
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=18
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 19/40] fbdev: defio: assert FBINFO_VIRTFB, drop VM_IO, add VM_MIXEDMAP
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (17 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 18/40] scsi: sg: convert mmap hook to mmap_prepare and rework Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 19:44 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 20/40] HSI: cmt_speech: convert mmap hook to mmap_prepare, refactor Lorenzo Stoakes (ARM)
` (21 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Currently all drivers which use defio allocate system memory. All of them
also set FBINFO_VIRTFB, other than ssd1307fb, however this driver allocates
system RAM, so simply failed to set this flag when it ought to.
This patch sets FBINFO_VIRTFB on ssd1307fb probe, then drops setting VM_IO
in fb_deferred_io_mmap() and instead requires FBINFO_VIRTFB to be set,
erroring out with a kernel warning if not.
The logic requires a page from the driver and since commit 1ecbc7dd2902
("fbdev/deferred-io: Always call get_page() for framebuffer pages") has
always required it to be refcounted, so this was implicitly already the
case.
Finally this patch sets VM_MIXEDMAP, as the logic is mapping
kernel-allocated memory so this is appropriate.
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
drivers/video/fbdev/core/fb_defio.c | 6 +++---
drivers/video/fbdev/ssd1307fb.c | 2 ++
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/video/fbdev/core/fb_defio.c b/drivers/video/fbdev/core/fb_defio.c
index fd00b86e1ae6..fb359ecc3966 100644
--- a/drivers/video/fbdev/core/fb_defio.c
+++ b/drivers/video/fbdev/core/fb_defio.c
@@ -366,13 +366,13 @@ int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma)
{
vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);
+ if (WARN_ON_ONCE(!(info->flags & FBINFO_VIRTFB)))
+ return -EINVAL;
if (!try_module_get(THIS_MODULE))
return -EINVAL;
vma->vm_ops = &fb_deferred_io_vm_ops;
- vm_flags_set(vma, VM_DONTEXPAND | VM_DONTDUMP);
- if (!(info->flags & FBINFO_VIRTFB))
- vm_flags_set(vma, VM_IO);
+ vm_flags_set(vma, VM_MIXEDMAP | VM_DONTEXPAND | VM_DONTDUMP);
vma->vm_private_data = info->fbdefio_state;
fb_deferred_io_state_get(info->fbdefio_state); /* released in vma->vm_ops->close() */
diff --git a/drivers/video/fbdev/ssd1307fb.c b/drivers/video/fbdev/ssd1307fb.c
index c4fdecafd856..958514a35433 100644
--- a/drivers/video/fbdev/ssd1307fb.c
+++ b/drivers/video/fbdev/ssd1307fb.c
@@ -763,6 +763,8 @@ static int ssd1307fb_probe(struct i2c_client *client)
info->fix.smem_start = __pa(vmem);
info->fix.smem_len = vmem_size;
+ info->flags = FBINFO_VIRTFB;
+
fb_deferred_io_init(info);
i2c_set_clientdata(client, info);
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 19/40] fbdev: defio: assert FBINFO_VIRTFB, drop VM_IO, add VM_MIXEDMAP
2026-09-14 14:57 ` [PATCH v2 19/40] fbdev: defio: assert FBINFO_VIRTFB, drop VM_IO, add VM_MIXEDMAP Lorenzo Stoakes (ARM)
@ 2026-09-14 19:44 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 19:44 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-perf-users, Marc Zyngier, dri-devel, Oliver Upton, kvm,
selinux, Vasily Gorbik, kvmarm, Heiko Carstens, bpf, linux-rdma,
linux-s390, linux-trace-kernel, Alexander Gordeev, linux-scsi,
Christian Borntraeger
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
Pre-existing issues:
- [Critical] The driver passes a virtual address to __free_pages(), causing an out-of-bounds pointer dereference and kernel panic.
- [High] Ignored return value of fb_deferred_io_init() leads to NULL pointer dereferences in mmap, open, and cleanup error paths.
- [High] Missing .driver_data initialization in i2c_device_id array leads to NULL pointer dereference on sysfs instantiation.
--
commit d46565518c57c096a66d45b42bbe529fae5740d7
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
fbdev: defio: assert FBINFO_VIRTFB, drop VM_IO, add VM_MIXEDMAP
Currently all drivers which use defio allocate system memory. All of them
also set FBINFO_VIRTFB, other than ssd1307fb, however this driver allocates
system RAM, so simply failed to set this flag when it ought to.
> diff --git a/drivers/video/fbdev/ssd1307fb.c b/drivers/video/fbdev/ssd1307fb.c
> index c4fdecafd8560..958514a354338 100644
> --- a/drivers/video/fbdev/ssd1307fb.c
> +++ b/drivers/video/fbdev/ssd1307fb.c
> @@ -763,6 +763,8 @@ static int ssd1307fb_probe(struct i2c_client *client)
> info->fix.smem_start = __pa(vmem);
> info->fix.smem_len = vmem_size;
>
> + info->flags = FBINFO_VIRTFB;
> +
> fb_deferred_io_init(info);
[Severity: High]
This isn't a bug introduced by this patch, but if memory allocation fails
in fb_deferred_io_init(), it returns -ENOMEM but ssd1307fb_probe() ignores
it, leaving info->fbdefio_state as NULL and info->deferred_work
uninitialized.
Subsequent probe failure or device removal calls fb_deferred_io_cleanup(),
which can unconditionally call flush_delayed_work() on the uninitialized
workqueue and then dereference the NULL fbdefio_state:
drivers/video/fbdev/core/fb_defio.c:fb_deferred_io_cleanup() {
...
mutex_lock(&fbdefio_state->lock);
...
}
Additionally, userspace calling open() or mmap() could trigger NULL pointer
dereferences in fb_deferred_io_open() and fb_deferred_io_mmap().
Does the ignored return value of fb_deferred_io_init() lead to NULL pointer
dereferences in mmap, open, and cleanup error paths?
>
> i2c_set_clientdata(client, info);
[Severity: Critical]
This is a pre-existing issue, but the driver allocates video memory using
__get_free_pages(), which returns a virtual address (void *).
During probe failure, it passes this virtual address directly to
__free_pages():
drivers/video/fbdev/ssd1307fb.c:ssd1307fb_probe() {
...
fb_defio_error:
__free_pages(vmem, get_order(vmem_size));
...
}
And during module unload, it does the same:
drivers/video/fbdev/ssd1307fb.c:ssd1307fb_remove() {
...
__free_pages(__va(info->fix.smem_start), get_order(info->fix.smem_len));
...
}
Because C implicitly casts void * to struct page *, the kernel could treat
the zeroed video memory as a page struct, reading garbage PFNs, corrupting
the buddy allocator state, and crashing.
Does passing a virtual address to __free_pages() in these paths cause an
out-of-bounds pointer dereference and kernel panic? Should this be using
free_pages() instead?
[Severity: High]
This isn't a bug introduced by this patch, but if the driver is instantiated
via the legacy I2C sysfs interface, device_get_match_data() falls back to
matching against ssd1307fb_i2c_id:
drivers/video/fbdev/ssd1307fb.c:ssd1307fb_i2c_id[] = {
{ .name = "ssd1305fb" },
...
};
Because entries in this array omit the .driver_data field, it defaults to
NULL. The probe function then unconditionally dereferences this NULL pointer:
drivers/video/fbdev/ssd1307fb.c:ssd1307fb_probe() {
...
par->vcomh = par->device_info->default_vcomh;
...
}
Does the missing .driver_data initialization in the i2c_device_id array
lead to a NULL pointer dereference on sysfs instantiation?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=19
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 20/40] HSI: cmt_speech: convert mmap hook to mmap_prepare, refactor
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (18 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 19/40] fbdev: defio: assert FBINFO_VIRTFB, drop VM_IO, add VM_MIXEDMAP Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 20:15 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 21/40] mm/gup: error out early on !VMA_MAYREAD_BIT VMAs Lorenzo Stoakes (ARM)
` (20 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Use the mmap_prepare in favour of the deprecated mmap hook as part of the
work to convert one to another.
Since this is simply a refcounted kernel page that has been allocated, it
should not be marked VM_IO and should be inserted using the kernel page
insertion mechanism, so convert it to do this instead.
Use the VMA descriptor's private data field as a scratch buffer to store
the page in - this stays valid throughout the kernel page mapping
operation.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
drivers/hsi/clients/cmt_speech.c | 33 +++++++++------------------------
1 file changed, 9 insertions(+), 24 deletions(-)
diff --git a/drivers/hsi/clients/cmt_speech.c b/drivers/hsi/clients/cmt_speech.c
index 7226677ebde7..801697b74d4f 100644
--- a/drivers/hsi/clients/cmt_speech.c
+++ b/drivers/hsi/clients/cmt_speech.c
@@ -1084,22 +1084,6 @@ static void cs_hsi_stop(struct cs_hsi_iface *hi)
kfree(hi);
}
-static vm_fault_t cs_char_vma_fault(struct vm_fault *vmf)
-{
- struct cs_char *csdata = vmf->vma->vm_private_data;
- struct page *page;
-
- page = virt_to_page((void *)csdata->mmap_base);
- get_page(page);
- vmf->page = page;
-
- return 0;
-}
-
-static const struct vm_operations_struct cs_char_vm_ops = {
- .fault = cs_char_vma_fault,
-};
-
static int cs_char_fasync(int fd, struct file *file, int on)
{
struct cs_char *csdata = file->private_data;
@@ -1256,18 +1240,19 @@ static long cs_char_ioctl(struct file *file, unsigned int cmd,
return r;
}
-static int cs_char_mmap(struct file *file, struct vm_area_struct *vma)
+static int cs_char_mmap_prepare(struct vm_area_desc *desc)
{
- if (vma->vm_end < vma->vm_start)
- return -EINVAL;
+ struct file *file = desc->file;
+ struct cs_char *csdata = file->private_data;
+ struct page **pages = (struct page **)&desc->private_data;
- if (vma_pages(vma) != 1)
+ if (vma_desc_pages(desc) != 1)
return -EINVAL;
- vm_flags_set(vma, VM_IO | VM_DONTDUMP | VM_DONTEXPAND);
- vma->vm_ops = &cs_char_vm_ops;
- vma->vm_private_data = file->private_data;
+ vma_desc_set_flags(desc, VMA_DONTDUMP_BIT, VMA_DONTEXPAND_BIT);
+ *pages = virt_to_page((void *)csdata->mmap_base);
+ mmap_action_map_kernel_pages_full(desc, pages);
return 0;
}
@@ -1353,7 +1338,7 @@ static const struct file_operations cs_char_fops = {
.write = cs_char_write,
.poll = cs_char_poll,
.unlocked_ioctl = cs_char_ioctl,
- .mmap = cs_char_mmap,
+ .mmap_prepare = cs_char_mmap_prepare,
.open = cs_char_open,
.release = cs_char_release,
.fasync = cs_char_fasync,
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 20/40] HSI: cmt_speech: convert mmap hook to mmap_prepare, refactor
2026-09-14 14:57 ` [PATCH v2 20/40] HSI: cmt_speech: convert mmap hook to mmap_prepare, refactor Lorenzo Stoakes (ARM)
@ 2026-09-14 20:15 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 20:15 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Alexander Gordeev, Heiko Carstens, bpf, linux-s390, kvm,
Vasily Gorbik, Marc Zyngier, kvmarm, Oliver Upton,
linux-perf-users, linux-trace-kernel, linux-scsi, selinux,
linux-rdma, dri-devel, Christian Borntraeger
> Use the mmap_prepare in favour of the deprecated mmap hook as part of the
> work to convert one to another.
>
> Since this is simply a refcounted kernel page that has been allocated, it
> should not be marked VM_IO and should be inserted using the kernel page
> insertion mechanism, so convert it to do this instead.
>
> Use the VMA descriptor's private data field as a scratch buffer to store
> the page in - this stays valid throughout the kernel page mapping
> operation.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=20
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 21/40] mm/gup: error out early on !VMA_MAYREAD_BIT VMAs
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (19 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 20/40] HSI: cmt_speech: convert mmap hook to mmap_prepare, refactor Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 20:33 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 22/40] uprobes: remove VM_IO, set VM_MIXEDMAP for mapped kernel pages Lorenzo Stoakes (ARM)
` (19 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
When populating a VMA range via the aptly named populate_vma_page_range()
an unreadable VMA will always eventually fail with -EFAULT.
That a VMA is accessible is always checked, however VMA_MAYREAD_BIT is not.
All user mappings always have VMA_MAYREAD_BIT set, so this check only
impacts kernel mappings.
It is implemented specifically to disallow population of uprobes XOL
mappings which are exec-only.
A nasty interaction with these mappings may occur if they are mlocked, so
actively disallow this early.
This allows a subsequent commit to remove the VM_IO check in
__mm_populate() which otherwise requires non-MMIO mappings to be wrongly
flagged simply as a workaround.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/gup.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/mm/gup.c b/mm/gup.c
index c2dfcb4744bc..e6310a7cc05b 100644
--- a/mm/gup.c
+++ b/mm/gup.c
@@ -1836,6 +1836,10 @@ long populate_vma_page_range(struct vm_area_struct *vma,
if (!vma_is_accessible(vma))
return -EFAULT;
+ /* Unreadable VMAs also cannot be faulted in. */
+ if (!vma_test(vma, VMA_MAYREAD_BIT))
+ return -EFAULT;
+
gup_flags = FOLL_TOUCH;
/*
* We want to touch writable mappings with a write fault in order
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 21/40] mm/gup: error out early on !VMA_MAYREAD_BIT VMAs
2026-09-14 14:57 ` [PATCH v2 21/40] mm/gup: error out early on !VMA_MAYREAD_BIT VMAs Lorenzo Stoakes (ARM)
@ 2026-09-14 20:33 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 20:33 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-rdma, Heiko Carstens, Alexander Gordeev, dri-devel, selinux,
Oliver Upton, linux-scsi, kvm, linux-s390, kvmarm, Marc Zyngier,
Vasily Gorbik, Christian Borntraeger, linux-perf-users,
linux-trace-kernel, bpf
> When populating a VMA range via the aptly named populate_vma_page_range()
> an unreadable VMA will always eventually fail with -EFAULT.
>
> That a VMA is accessible is always checked, however VMA_MAYREAD_BIT is not.
>
> All user mappings always have VMA_MAYREAD_BIT set, so this check only
> impacts kernel mappings.
>
> It is implemented specifically to disallow population of uprobes XOL
> mappings which are exec-only.
>
> A nasty interaction with these mappings may occur if they are mlocked, so
> actively disallow this early.
>
> This allows a subsequent commit to remove the VM_IO check in
> __mm_populate() which otherwise requires non-MMIO mappings to be wrongly
> flagged simply as a workaround.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=21
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 22/40] uprobes: remove VM_IO, set VM_MIXEDMAP for mapped kernel pages
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (20 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 21/40] mm/gup: error out early on !VMA_MAYREAD_BIT VMAs Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 20:47 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 23/40] mm/mlock: clear VMA_LOCKED_MASK over mmap callback Lorenzo Stoakes (ARM)
` (18 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
These are not MMIO pages so VMA_IO_BIT is an inappropriate flag to set.
Instead, set them VMA_MIXEDMAP_BIT as they are kernel mappings and this is
the appropriate flag to set for those.
This provides the semantics required - no VMA merging is permitted, but
does not prevent GUP.
However this has no meaningful impact as these are refcounted and thus can
be GUPed.
A previous commit already prevented __mm_populate() from being invoked on
XOL areas, which VMA_IO_BIT was previously relied upon to do, so that is no
longer required.
Both VMAs set a VMA name, so always_dump_vma() returns true before
vma_dump_size() reaches its VMA_IO_BIT check, and thus there is no change
in core dump behaviour.
Change this for both the core xol_add_vma() function and the x86-specific
get_uprobe_trampoline() function.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
arch/x86/kernel/uprobes.c | 2 +-
kernel/events/uprobes.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/x86/kernel/uprobes.c b/arch/x86/kernel/uprobes.c
index 65a2de82ecd2..0f60c0d076b6 100644
--- a/arch/x86/kernel/uprobes.c
+++ b/arch/x86/kernel/uprobes.c
@@ -715,7 +715,7 @@ static struct vm_area_struct *get_uprobe_trampoline(struct mm_struct *mm, unsign
*new_mapping = true;
return _install_special_mapping(mm, vaddr, PAGE_SIZE,
- VM_READ|VM_EXEC|VM_MAYEXEC|VM_MAYREAD|VM_IO,
+ VM_READ|VM_EXEC|VM_MAYEXEC|VM_MAYREAD|VM_MIXEDMAP,
&tramp_mapping);
}
diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c
index 7709ea882477..b89cc5cee002 100644
--- a/kernel/events/uprobes.c
+++ b/kernel/events/uprobes.c
@@ -1726,8 +1726,8 @@ static int xol_add_vma(struct mm_struct *mm, struct xol_area *area)
}
vma = _install_special_mapping(mm, area->vaddr, PAGE_SIZE,
- VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO|
- VM_SEALED_SYSMAP,
+ VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|
+ VM_MIXEDMAP|VM_SEALED_SYSMAP,
&xol_mapping);
if (IS_ERR(vma)) {
ret = PTR_ERR(vma);
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 22/40] uprobes: remove VM_IO, set VM_MIXEDMAP for mapped kernel pages
2026-09-14 14:57 ` [PATCH v2 22/40] uprobes: remove VM_IO, set VM_MIXEDMAP for mapped kernel pages Lorenzo Stoakes (ARM)
@ 2026-09-14 20:47 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 20:47 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Christian Borntraeger, kvm, Oliver Upton, linux-rdma,
Alexander Gordeev, Heiko Carstens, linux-scsi, linux-perf-users,
Vasily Gorbik, bpf, selinux, linux-s390, Marc Zyngier,
linux-trace-kernel, dri-devel, kvmarm
> These are not MMIO pages so VMA_IO_BIT is an inappropriate flag to set.
>
> Instead, set them VMA_MIXEDMAP_BIT as they are kernel mappings and this is
> the appropriate flag to set for those.
>
> This provides the semantics required - no VMA merging is permitted, but
> does not prevent GUP.
>
> However this has no meaningful impact as these are refcounted and thus can
> be GUPed.
>
> A previous commit already prevented __mm_populate() from being invoked on
> XOL areas, which VMA_IO_BIT was previously relied upon to do, so that is no
> longer required.
>
> Both VMAs set a VMA name, so always_dump_vma() returns true before
> vma_dump_size() reaches its VMA_IO_BIT check, and thus there is no change
> in core dump behaviour.
>
> Change this for both the core xol_add_vma() function and the x86-specific
> get_uprobe_trampoline() function.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=22
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 23/40] mm/mlock: clear VMA_LOCKED_MASK over mmap callback
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (21 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 22/40] uprobes: remove VM_IO, set VM_MIXEDMAP for mapped kernel pages Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 21:09 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 24/40] mm/mlock: eliminate weird VMA_IO_BIT abuse and simplify Lorenzo Stoakes (ARM)
` (17 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Currently there's a confusing mess around VMA_LOCKED_BIT and
VMA_LOCKONFAULT_BIT.
It is permitted for drivers to set any flags they like, with the VMA
already possessing lock flags.
This results in the absurd situation of a VMA possessing both
VMA_SPECIAL_FLAGS and VMA_LOCKED_MASK flags, which is not permitted.
This has resulted in mlock_vma_folio() having a very silly check for this
scenario to work around it.
There is no need for this - just clear the flags before invoking the hook
and reinstate them afterwards if they are required.
Nothing relies upon this being set during the mmap operation.
mmap_prepare is unaffected by this so requires no fix.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/internal.h | 9 +--------
mm/vma.c | 14 ++++++++++++++
2 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/mm/internal.h b/mm/internal.h
index 3a395e8c224c..9108b2b2cd03 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -969,14 +969,7 @@ void mlock_folio(struct folio *folio);
static inline void mlock_vma_folio(struct folio *folio,
struct vm_area_struct *vma)
{
- /*
- * The VM_SPECIAL check here serves two purposes.
- * 1) VM_IO check prevents migration from double-counting during mlock.
- * 2) Although mmap_region() and mlock_fixup() take care that VM_LOCKED
- * is never left set on a VM_SPECIAL vma, there is an interval while
- * file->f_op->mmap() is using vm_insert_page(s), when VM_LOCKED may
- * still be set while VM_SPECIAL bits are added: so ignore it then.
- */
+ /* The VM_IO check prevents migration from double-counting during mlock. */
if (unlikely((vma->vm_flags & (VM_LOCKED|VM_SPECIAL)) == VM_LOCKED))
mlock_folio(folio);
}
diff --git a/mm/vma.c b/mm/vma.c
index d71ec51255b1..c6ed04d27351 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -2607,6 +2607,11 @@ static int __mmap_new_file_vma(struct mmap_state *map,
if (!map->vm_file->f_op->mmap)
return 0;
+ /*
+ * Driver-specified flags may make the lock flags invalid, so clear
+ * VMA_LOCKED_MASK and reinstate it afterwards if appropriate.
+ */
+ vma_clear_flags_mask(vma, VMA_LOCKED_MASK);
error = mmap_file(vma->vm_file, vma);
map->vm_file = vma->vm_file;
@@ -2623,6 +2628,15 @@ static int __mmap_new_file_vma(struct mmap_state *map,
return error;
}
+ /* If VMA flags still valid for locked mask, reinstate. */
+ if (vma_supports_mlock(vma)) {
+ const vma_flags_t mask =
+ vma_flags_and_mask(&map->vma_flags,
+ VMA_LOCKED_MASK);
+
+ vma_set_flags_mask(vma, mask);
+ }
+
map->vma_flags = vma->flags;
return 0;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 23/40] mm/mlock: clear VMA_LOCKED_MASK over mmap callback
2026-09-14 14:57 ` [PATCH v2 23/40] mm/mlock: clear VMA_LOCKED_MASK over mmap callback Lorenzo Stoakes (ARM)
@ 2026-09-14 21:09 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 21:09 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Heiko Carstens, bpf, kvmarm, linux-trace-kernel, linux-perf-users,
linux-scsi, Marc Zyngier, linux-s390, Alexander Gordeev, selinux,
linux-rdma, Christian Borntraeger, dri-devel, Vasily Gorbik,
Oliver Upton, kvm
> Currently there's a confusing mess around VMA_LOCKED_BIT and
> VMA_LOCKONFAULT_BIT.
>
> It is permitted for drivers to set any flags they like, with the VMA
> already possessing lock flags.
>
> This results in the absurd situation of a VMA possessing both
> VMA_SPECIAL_FLAGS and VMA_LOCKED_MASK flags, which is not permitted.
>
> This has resulted in mlock_vma_folio() having a very silly check for this
> scenario to work around it.
>
> There is no need for this - just clear the flags before invoking the hook
> and reinstate them afterwards if they are required.
>
> Nothing relies upon this being set during the mmap operation.
>
> mmap_prepare is unaffected by this so requires no fix.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=23
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 24/40] mm/mlock: eliminate weird VMA_IO_BIT abuse and simplify
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (22 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 23/40] mm/mlock: clear VMA_LOCKED_MASK over mmap callback Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 21:44 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 25/40] mm/vma: enforce that only kernel-owned mappings may set VMA_IO_BIT Lorenzo Stoakes (ARM)
` (16 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
When performing mlock() or munlock() otherwise normal VMAs have VMA_IO_BIT
solely to fix a race with migration which might otherwise double-count
mlock VMAs.
This is unnecessary - at the point of applying folio mlock state, whether
setting or clearing PG_mlocked, we know whether or not we are locking.
Solve this in two ways - thread a boolean through the page table walk
indicating whether a lock or unlock is being performed, and run a locking
walk with VMA_LOCKONFAULT_BIT set and VMA_LOCKED_BIT cleared.
This state never occurs otherwise, as VMA_LOCKONFAULT_BIT always implies
VMA_LOCKED_BIT. These are also always cleared together.
Then, update folio_add_lru_vma() and mlock_folio() to check only for
VMA_LOCKED_BIT, and update try_to_unmap_one() to check for VMA_LOCKED_MASK
instead.
Also remove the useless invocation of allow_mlock_munlock() which simply
returns true if unlocking and instead rename it to allow_mlock() and only
call it when locking.
Finally, with the other mlock abuse of VMA_IO_BIT addressed, update
mlock_vma_folio() and folio_add_lru_vma() to simply test for
VMA_LOCKED_BIT. munlock_vma_folio() tests VMA_LOCKED_MASK instead, as an
unmap racing with the locking walk must still munlock folios the walk has
already counted.
While here, also replace some deprecated VMA flag predicates.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/folio.c | 2 +-
mm/internal.h | 10 +++++++---
mm/mlock.c | 51 +++++++++++++++++++--------------------------------
mm/rmap.c | 4 +++-
4 files changed, 30 insertions(+), 37 deletions(-)
diff --git a/mm/folio.c b/mm/folio.c
index 47a437e0f7fd..35e242b48870 100644
--- a/mm/folio.c
+++ b/mm/folio.c
@@ -505,7 +505,7 @@ void folio_add_lru_vma(struct folio *folio, struct vm_area_struct *vma)
{
VM_BUG_ON_FOLIO(folio_test_lru(folio), folio);
- if (unlikely((vma->vm_flags & (VM_LOCKED | VM_SPECIAL)) == VM_LOCKED))
+ if (vma_test(vma, VMA_LOCKED_BIT))
mlock_new_folio(folio);
else
folio_add_lru(folio);
diff --git a/mm/internal.h b/mm/internal.h
index 9108b2b2cd03..59cfe336e468 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -969,8 +969,7 @@ void mlock_folio(struct folio *folio);
static inline void mlock_vma_folio(struct folio *folio,
struct vm_area_struct *vma)
{
- /* The VM_IO check prevents migration from double-counting during mlock. */
- if (unlikely((vma->vm_flags & (VM_LOCKED|VM_SPECIAL)) == VM_LOCKED))
+ if (vma_test(vma, VMA_LOCKED_BIT))
mlock_folio(folio);
}
@@ -987,7 +986,12 @@ static inline void munlock_vma_folio(struct folio *folio,
* always munlock the folio and page reclaim will correct it
* if it's wrong.
*/
- if (unlikely(vma->vm_flags & VM_LOCKED))
+ /*
+ * VMA_LOCKONFAULT_BIT alone marks an mlock walk in progress, see
+ * mlock_vma_pages_range(). An unmap racing with the walk must still
+ * munlock folios the walk has already counted.
+ */
+ if (unlikely(vma_test_any_mask(vma, VMA_LOCKED_MASK)))
munlock_folio(folio);
}
diff --git a/mm/mlock.c b/mm/mlock.c
index 39215a3eab1f..4235a1518fc9 100644
--- a/mm/mlock.c
+++ b/mm/mlock.c
@@ -316,22 +316,10 @@ static inline unsigned int folio_mlock_step(struct folio *folio,
return folio_pte_batch(folio, pte, ptent, count);
}
-static inline bool allow_mlock_munlock(struct folio *folio,
+static inline bool allow_mlock(struct folio *folio,
struct vm_area_struct *vma, unsigned long start,
unsigned long end, unsigned int step)
{
- /*
- * For unlock, allow munlock large folio which is partially
- * mapped to VMA. As it's possible that large folio is
- * mlocked and VMA is split later.
- *
- * During memory pressure, such kind of large folio can
- * be split. And the pages are not in VM_LOCKed VMA
- * can be reclaimed.
- */
- if (!vma_test(vma, VMA_LOCKED_BIT))
- return true;
-
/* folio_within_range() cannot take KSM, but any small folio is OK */
if (!folio_test_large(folio))
return true;
@@ -352,6 +340,7 @@ static int mlock_pte_range(pmd_t *pmd, unsigned long addr,
{
struct vm_area_struct *vma = walk->vma;
+ const bool lock = walk->private;
spinlock_t *ptl;
pte_t *start_pte, *pte;
pte_t ptent;
@@ -368,7 +357,7 @@ static int mlock_pte_range(pmd_t *pmd, unsigned long addr,
folio = pmd_folio(*pmd);
if (folio_is_zone_device(folio))
goto out;
- if (vma_test(vma, VMA_LOCKED_BIT))
+ if (lock)
mlock_folio(folio);
else
munlock_folio(folio);
@@ -390,10 +379,10 @@ static int mlock_pte_range(pmd_t *pmd, unsigned long addr,
continue;
step = folio_mlock_step(folio, pte, addr, end);
- if (!allow_mlock_munlock(folio, vma, start, end, step))
+ if (lock && !allow_mlock(folio, vma, start, end, step))
goto next_entry;
- if (vma_test(vma, VMA_LOCKED_BIT))
+ if (lock)
mlock_folio(folio);
else
munlock_folio(folio);
@@ -428,31 +417,29 @@ static void mlock_vma_pages_range(struct vm_area_struct *vma,
.pmd_entry = mlock_pte_range,
.walk_lock = PGWALK_WRLOCK_VERIFY,
};
+ const bool lock = vma_flags_test(new_vma_flags, VMA_LOCKED_BIT);
+ vma_flags_t walk_flags = *new_vma_flags;
/*
- * There is a slight chance that concurrent page migration,
- * or page reclaim finding a page of this now-VMA_LOCKED_BIT vma,
- * will call mlock_vma_folio() and raise page's mlock_count:
- * double counting, leaving the page unevictable indefinitely.
- * Communicate this danger to mlock_vma_folio() with VMA_IO_BIT,
- * which is a VMA_SPECIAL_FLAGS flag not allowed on VMA_LOCKED_BIT vmas.
- * mmap_lock is held in write mode here, so this weird
- * combination should not be visible to other mmap_lock users;
- * but WRITE_ONCE so rmap walkers must see VMA_IO_BIT if VMA_LOCKED_BIT.
+ * LOCKONFAULT without LOCKED never otherwise occurs: it marks a walk in
+ * progress so that rmap-side callers, which test VMA_LOCKED_BIT, do not
+ * count folios, while try_to_unmap_one(), which tests VMA_LOCKED_MASK,
+ * still refuses to unmap them.
*/
- if (vma_flags_test(new_vma_flags, VMA_LOCKED_BIT))
- vma_flags_set(new_vma_flags, VMA_IO_BIT);
+ if (lock) {
+ vma_flags_clear(&walk_flags, VMA_LOCKED_BIT);
+ vma_flags_set(&walk_flags, VMA_LOCKONFAULT_BIT);
+ }
+
vma_start_write(vma);
- vma_flags_reset_once(vma, new_vma_flags);
+ vma_flags_reset_once(vma, &walk_flags);
lru_add_drain();
- walk_page_range_vma(vma, start, end, &mlock_walk_ops, NULL);
+ walk_page_range_vma(vma, start, end, &mlock_walk_ops, (void *)lock);
lru_add_drain();
- if (vma_flags_test(new_vma_flags, VMA_IO_BIT)) {
- vma_flags_clear(new_vma_flags, VMA_IO_BIT);
+ if (lock)
vma_flags_reset_once(vma, new_vma_flags);
- }
}
/*
diff --git a/mm/rmap.c b/mm/rmap.c
index 5332c52909be..6661bc11ce65 100644
--- a/mm/rmap.c
+++ b/mm/rmap.c
@@ -2239,9 +2239,11 @@ static bool try_to_unmap_one(struct folio *folio, struct vm_area_struct *vma,
/*
* If the folio is in an mlock()d vma, we must not swap it out.
+ * VMA_LOCKONFAULT_BIT alone marks an mlock walk in progress, see
+ * mlock_vma_pages_range().
*/
if (!(flags & TTU_IGNORE_MLOCK) &&
- (vma->vm_flags & VM_LOCKED)) {
+ vma_test_any_mask(vma, VMA_LOCKED_MASK)) {
ptes++;
/*
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 24/40] mm/mlock: eliminate weird VMA_IO_BIT abuse and simplify
2026-09-14 14:57 ` [PATCH v2 24/40] mm/mlock: eliminate weird VMA_IO_BIT abuse and simplify Lorenzo Stoakes (ARM)
@ 2026-09-14 21:44 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 21:44 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Vasily Gorbik, kvm, linux-scsi, bpf, linux-perf-users,
Alexander Gordeev, Heiko Carstens, kvmarm, Christian Borntraeger,
linux-trace-kernel, linux-rdma, selinux, Marc Zyngier,
Oliver Upton, linux-s390, dri-devel
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Casting `bool` to `void *` causes a compiler warning/error (-Wint-to-pointer-cast).
--
commit 5ca9abe89befb83b06ebb688a6a1ab1fe25a4e0e
Author: Lorenzo Stoakes (ARM) <ljs@kernel.org>
mm/mlock: eliminate weird VMA_IO_BIT abuse and simplify
This commit eliminates the use of VMA_IO_BIT during mlock/munlock operations
which was previously used to prevent double-counting during migration. Instead,
it threads a boolean through the page table walk and temporarily sets
VMA_LOCKONFAULT_BIT without VMA_LOCKED_BIT to indicate a locking walk in
progress. It also simplifies checking for VMA_LOCKED_BIT across various folio
locking paths.
> diff --git a/mm/mlock.c b/mm/mlock.c
> index 39215a3eab1fb..4235a1518fc9e 100644
> --- a/mm/mlock.c
> +++ b/mm/mlock.c
[ ... ]
> @@ -428,31 +417,29 @@ static void mlock_vma_pages_range(struct vm_area_struct *vma,
[ ... ]
> lru_add_drain();
> - walk_page_range_vma(vma, start, end, &mlock_walk_ops, NULL);
> + walk_page_range_vma(vma, start, end, &mlock_walk_ops, (void *)lock);
[Severity: Low]
Does this direct cast from a boolean to a void pointer cause a compiler
warning?
Since a boolean is typically 1 byte and a void pointer is 8 bytes on 64-bit
systems, casting directly might trigger a -Wint-to-pointer-cast warning.
When building with -Werror enabled, this can result in a build failure.
Would it be safer to cast it through unsigned long first, like
(void *)(unsigned long)lock?
> lru_add_drain();
>
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=24
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 25/40] mm/vma: enforce that only kernel-owned mappings may set VMA_IO_BIT
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (23 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 24/40] mm/mlock: eliminate weird VMA_IO_BIT abuse and simplify Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:18 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 26/40] mm: remove VMA_IO_BIT check in vma[_flags]_is_kernel_owned() Lorenzo Stoakes (ARM)
` (15 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
It makes no sense for a mapping whose contents the kernel does not own to
specify that the range is MMIO.
Prior to this patch, all in-tree drivers which did so have been updated
such that they are marked as kernel-owned. The check WARNs and fails the
mmap for any out-of-tree driver that still sets VMA_IO_BIT without a kernel
mapping.
No functional change intended for in-tree code.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/vma.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/mm/vma.c b/mm/vma.c
index c6ed04d27351..fa429771bea8 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -2787,6 +2787,12 @@ static int mmap_validate_vma_flags(const vma_flags_t *flags)
return -EINVAL;
#endif
+ if (!vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT)) {
+ /* Only kernel-owned mappings may set VMA_IO_BIT. */
+ if (WARN_ON_ONCE(vma_flags_test(flags, VMA_IO_BIT)))
+ return -EINVAL;
+ }
+
return 0;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 25/40] mm/vma: enforce that only kernel-owned mappings may set VMA_IO_BIT
2026-09-14 14:57 ` [PATCH v2 25/40] mm/vma: enforce that only kernel-owned mappings may set VMA_IO_BIT Lorenzo Stoakes (ARM)
@ 2026-09-14 22:18 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:18 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Alexander Gordeev, linux-trace-kernel, linux-rdma, linux-scsi,
Oliver Upton, Heiko Carstens, bpf, kvm, selinux, linux-perf-users,
Marc Zyngier, Christian Borntraeger, dri-devel, Vasily Gorbik,
linux-s390, kvmarm
> It makes no sense for a mapping whose contents the kernel does not own to
> specify that the range is MMIO.
>
> Prior to this patch, all in-tree drivers which did so have been updated
> such that they are marked as kernel-owned. The check WARNs and fails the
> mmap for any out-of-tree driver that still sets VMA_IO_BIT without a kernel
> mapping.
>
> No functional change intended for in-tree code.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=25
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 26/40] mm: remove VMA_IO_BIT check in vma[_flags]_is_kernel_owned()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (24 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 25/40] mm/vma: enforce that only kernel-owned mappings may set VMA_IO_BIT Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:09 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 27/40] mm: remove hugetlb_inline.h Lorenzo Stoakes (ARM)
` (14 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
We have now made it such that every driver which sets VMA_IO_BIT marks it
as kernel-owned.
However, vma_flags_is_kernel_owned() currently checks for VMA_IO_BIT. This
was a product of drivers previously marking a range as kernel-owned by
setting VMA_IO_BIT alone.
Fix this by removing the VMA_IO_BIT check in vma_flags_is_kernel_owned(),
and update mmap_validate_vma_flags() to use vma_flags_is_kernel_owned()
rather than open-coding the VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT check.
This change means that vma[_flags]_can_merge() doesn't check VMA_IO_BIT any
longer (which is now redundant) as it calls vma_flags_is_kernel_owned().
Now that the predicate means precisely VMA_PFNMAP_BIT or VMA_MIXEDMAP_BIT,
also use it at the other sites which open-code that pair, so the intent is
stated rather than the flags, with no functional change:
zap_special_vma_range() only zaps kernel-owned mappings, as drivers use it
to tear down ranges they established themselves.
The mprotect() arch PFN modification check applies to kernel-owned
mappings, which may map PFNs without struct pages.
NUMA balancing skips VM_MIXEDMAP mappings having already excluded VM_IO
and VM_PFNMAP mappings via vma_migratable(), so it skips exactly the
kernel-owned mappings - say so.
Finally, update the VMA userland merge 'special' flag tests to no longer
assert that VMA_IO_BIT prevents merge as VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT
now suffices.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 3 +--
kernel/sched/fair.c | 2 +-
mm/memory.c | 6 +++---
mm/mprotect.c | 3 +--
mm/vma.c | 2 +-
tools/testing/vma/include/dup.h | 3 +--
tools/testing/vma/tests/merge.c | 10 ++--------
7 files changed, 10 insertions(+), 19 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index ca598e5f9715..4b6aa0b47b00 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1630,8 +1630,7 @@ static inline bool vma_is_shared_maywrite(const struct vm_area_struct *vma)
*/
static inline bool vma_flags_is_kernel_owned(const vma_flags_t *flags)
{
- return vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT,
- VMA_IO_BIT);
+ return vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT);
}
/**
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 8dff37059faf..a71f0ab79bcd 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -4212,7 +4212,7 @@ static void task_numa_work(struct callback_head *work)
for (; vma; vma = vma_next(&vmi)) {
if (!vma_migratable(vma) || !vma_policy_mof(vma) ||
- is_vm_hugetlb_page(vma) || (vma->vm_flags & VM_MIXEDMAP)) {
+ is_vm_hugetlb_page(vma) || vma_is_kernel_owned(vma)) {
trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_UNSUITABLE);
continue;
}
diff --git a/mm/memory.c b/mm/memory.c
index 42f084517247..38fe455dc70c 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2343,19 +2343,19 @@ void zap_vma_range(struct vm_area_struct *vma, unsigned long address,
}
/**
- * zap_special_vma_range - zap all page table entries in a special vma range
+ * zap_special_vma_range - zap all page table entries in a kernel-owned VMA
* @vma: the vma covering the range to zap
* @address: starting address of the range to zap
* @size: number of bytes to zap
*
* This function does nothing when the provided address range is not fully
- * contained in @vma, or when the @vma is not VM_PFNMAP or VM_MIXEDMAP.
+ * contained in @vma, or when @vma is not kernel-owned.
*/
void zap_special_vma_range(struct vm_area_struct *vma, unsigned long address,
unsigned long size)
{
if (!range_in_vma(vma, address, address + size) ||
- !(vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP)))
+ !vma_is_kernel_owned(vma))
return;
zap_vma_range(vma, address, size);
diff --git a/mm/mprotect.c b/mm/mprotect.c
index 2888ee638d87..fe32fd87cf5c 100644
--- a/mm/mprotect.c
+++ b/mm/mprotect.c
@@ -783,8 +783,7 @@ mprotect_fixup(struct vma_iterator *vmi, struct mmu_gather *tlb,
* uncommon case, so doesn't need to be very optimized.
*/
if (arch_has_pfn_modify_check() &&
- vma_flags_test_any(&old_vma_flags, VMA_PFNMAP_BIT,
- VMA_MIXEDMAP_BIT) &&
+ vma_flags_is_kernel_owned(&old_vma_flags) &&
!vma_flags_test_any_mask(&new_vma_flags, VMA_ACCESS_FLAGS)) {
pgprot_t new_pgprot = vm_get_page_prot(newflags);
diff --git a/mm/vma.c b/mm/vma.c
index fa429771bea8..54e5f4bbd8af 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -2787,7 +2787,7 @@ static int mmap_validate_vma_flags(const vma_flags_t *flags)
return -EINVAL;
#endif
- if (!vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT)) {
+ if (!vma_flags_is_kernel_owned(flags)) {
/* Only kernel-owned mappings may set VMA_IO_BIT. */
if (WARN_ON_ONCE(vma_flags_test(flags, VMA_IO_BIT)))
return -EINVAL;
diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
index 9205ebf31ce7..de429ed4d60c 100644
--- a/tools/testing/vma/include/dup.h
+++ b/tools/testing/vma/include/dup.h
@@ -1667,8 +1667,7 @@ static inline bool file_is_dev_zero(const struct file *file)
static inline bool vma_flags_is_kernel_owned(const vma_flags_t *flags)
{
- return vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT,
- VMA_IO_BIT);
+ return vma_flags_test_any(flags, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT);
}
static inline bool vma_is_kernel_owned(const struct vm_area_struct *vma)
diff --git a/tools/testing/vma/tests/merge.c b/tools/testing/vma/tests/merge.c
index acaab282939c..b26f1a66a170 100644
--- a/tools/testing/vma/tests/merge.c
+++ b/tools/testing/vma/tests/merge.c
@@ -496,17 +496,11 @@ static bool test_vma_merge_special_flags(void)
.mm = &mm,
.vmi = &vmi,
};
- vma_flag_t special_flags[] = { VMA_IO_BIT, VMA_DONTEXPAND_BIT,
+ vma_flag_t special_flags[] = { VMA_DONTEXPAND_BIT,
VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT };
- vma_flags_t all_special_flags = EMPTY_VMA_FLAGS;
int i;
struct vm_area_struct *vma_left, *vma;
- /* Make sure there aren't new VM_SPECIAL flags. */
- for (i = 0; i < ARRAY_SIZE(special_flags); i++)
- vma_flags_set(&all_special_flags, special_flags[i]);
- ASSERT_FLAGS_SAME_MASK(&all_special_flags, VMA_SPECIAL_FLAGS);
-
/*
* 01234
* AAA
@@ -520,7 +514,7 @@ static bool test_vma_merge_special_flags(void)
* 01234
* AAA*
*
- * This should merge if not for the VM_SPECIAL flag.
+ * This should merge if not for the 'special' flag.
*/
vmg_set_range(&vmg, 0x3000, 0x4000, 3, vma_flags);
for (i = 0; i < ARRAY_SIZE(special_flags); i++) {
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 26/40] mm: remove VMA_IO_BIT check in vma[_flags]_is_kernel_owned()
2026-09-14 14:57 ` [PATCH v2 26/40] mm: remove VMA_IO_BIT check in vma[_flags]_is_kernel_owned() Lorenzo Stoakes (ARM)
@ 2026-09-14 22:09 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:09 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Vasily Gorbik, linux-rdma, Oliver Upton, linux-trace-kernel,
Heiko Carstens, Christian Borntraeger, kvmarm, Marc Zyngier, kvm,
bpf, linux-scsi, Alexander Gordeev, dri-devel, selinux,
linux-s390, linux-perf-users
> We have now made it such that every driver which sets VMA_IO_BIT marks it
> as kernel-owned.
>
> However, vma_flags_is_kernel_owned() currently checks for VMA_IO_BIT. This
> was a product of drivers previously marking a range as kernel-owned by
> setting VMA_IO_BIT alone.
>
> Fix this by removing the VMA_IO_BIT check in vma_flags_is_kernel_owned(),
> and update mmap_validate_vma_flags() to use vma_flags_is_kernel_owned()
> rather than open-coding the VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT check.
>
> This change means that vma[_flags]_can_merge() doesn't check VMA_IO_BIT any
> longer (which is now redundant) as it calls vma_flags_is_kernel_owned().
>
> Now that the predicate means precisely VMA_PFNMAP_BIT or VMA_MIXEDMAP_BIT,
> [ ... ]
> Finally, update the VMA userland merge 'special' flag tests to no longer
> assert that VMA_IO_BIT prevents merge as VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT
> now suffices.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=26
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 27/40] mm: remove hugetlb_inline.h
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (25 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 26/40] mm: remove VMA_IO_BIT check in vma[_flags]_is_kernel_owned() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:09 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 28/40] mm: rename is_vm_hugetlb_page() to vma_is_hugetlb() Lorenzo Stoakes (ARM)
` (13 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
This header really makes little sense - every place it is included mm.h is
also included, and the header itself includes mm.h, so it does nothing to
reduce header size.
It also oddly does an #ifdef around checking VMA_HUGETLB_BIT, however
VMA_HUGETLB_BIT is unconditionally available, and will never be set if
hugetlb is not enabled.
Simply remove the header, eliminate the odd ifdeffery and place the
predicates in mm.h.
The naming of these predicates is odd, but to keep changes separate, we
will address this in a separate patch.
The file was never put into MAINTAINERS so there's no change required
there.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
drivers/gpu/drm/drm_gpusvm.c | 2 +-
include/asm-generic/tlb.h | 2 +-
include/linux/hugetlb.h | 1 -
include/linux/hugetlb_inline.h | 28 ----------------------------
include/linux/mm.h | 11 +++++++++++
include/linux/pagemap.h | 1 -
include/linux/userfaultfd_k.h | 1 -
kernel/sched/fair.c | 1 -
mm/vma_internal.h | 1 -
9 files changed, 13 insertions(+), 35 deletions(-)
diff --git a/drivers/gpu/drm/drm_gpusvm.c b/drivers/gpu/drm/drm_gpusvm.c
index a93eee7ddb9e..793dacec2100 100644
--- a/drivers/gpu/drm/drm_gpusvm.c
+++ b/drivers/gpu/drm/drm_gpusvm.c
@@ -9,9 +9,9 @@
#include <linux/dma-mapping.h>
#include <linux/export.h>
#include <linux/hmm.h>
-#include <linux/hugetlb_inline.h>
#include <linux/memremap.h>
#include <linux/mm_types.h>
+#include <linux/mm.h>
#include <linux/slab.h>
#include <drm/drm_device.h>
diff --git a/include/asm-generic/tlb.h b/include/asm-generic/tlb.h
index 044dabc1fe9c..8b8123e5b7d7 100644
--- a/include/asm-generic/tlb.h
+++ b/include/asm-generic/tlb.h
@@ -11,9 +11,9 @@
#ifndef _ASM_GENERIC__TLB_H
#define _ASM_GENERIC__TLB_H
+#include <linux/mm.h>
#include <linux/mmu_notifier.h>
#include <linux/swap.h>
-#include <linux/hugetlb_inline.h>
#include <asm/tlbflush.h>
#include <asm/cacheflush.h>
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h
index 80a5a03e9cee..d7e6563cef75 100644
--- a/include/linux/hugetlb.h
+++ b/include/linux/hugetlb.h
@@ -7,7 +7,6 @@
#include <linux/mm_types.h>
#include <linux/mmdebug.h>
#include <linux/fs.h>
-#include <linux/hugetlb_inline.h>
#include <linux/cgroup.h>
#include <linux/page_ref.h>
#include <linux/list.h>
diff --git a/include/linux/hugetlb_inline.h b/include/linux/hugetlb_inline.h
deleted file mode 100644
index 5c29cd3223a1..000000000000
--- a/include/linux/hugetlb_inline.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _LINUX_HUGETLB_INLINE_H
-#define _LINUX_HUGETLB_INLINE_H
-
-#include <linux/mm.h>
-
-#ifdef CONFIG_HUGETLB_PAGE
-
-static inline bool is_vma_hugetlb_flags(const vma_flags_t *flags)
-{
- return vma_flags_test(flags, VMA_HUGETLB_BIT);
-}
-
-#else
-
-static inline bool is_vma_hugetlb_flags(const vma_flags_t *flags)
-{
- return false;
-}
-
-#endif
-
-static inline bool is_vm_hugetlb_page(const struct vm_area_struct *vma)
-{
- return is_vma_hugetlb_flags(&vma->flags);
-}
-
-#endif
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 4b6aa0b47b00..726c2fee35fb 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1609,6 +1609,17 @@ static inline bool vma_is_shared_maywrite(const struct vm_area_struct *vma)
return is_shared_maywrite(&vma->flags);
}
+static inline bool is_vma_hugetlb_flags(const vma_flags_t *flags)
+{
+ return IS_ENABLED(CONFIG_HUGETLB_PAGE) &&
+ vma_flags_test(flags, VMA_HUGETLB_BIT);
+}
+
+static inline bool is_vm_hugetlb_page(const struct vm_area_struct *vma)
+{
+ return is_vma_hugetlb_flags(&vma->flags);
+}
+
/**
* vma_flags_is_kernel_owned() - Do the specified VMA flags indicate that the
* contents of the VMA are owned by the kernel rather than the core mm?
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h
index 939f3a5e973f..d7d8b312466c 100644
--- a/include/linux/pagemap.h
+++ b/include/linux/pagemap.h
@@ -14,7 +14,6 @@
#include <linux/gfp.h>
#include <linux/bitops.h>
#include <linux/hardirq.h> /* for in_interrupt() */
-#include <linux/hugetlb_inline.h>
struct folio_batch;
diff --git a/include/linux/userfaultfd_k.h b/include/linux/userfaultfd_k.h
index a4351cffc60c..a14b8a9ffb7b 100644
--- a/include/linux/userfaultfd_k.h
+++ b/include/linux/userfaultfd_k.h
@@ -18,7 +18,6 @@
#include <linux/swap.h>
#include <linux/leafops.h>
#include <asm-generic/pgtable_uffd.h>
-#include <linux/hugetlb_inline.h>
/* The set of all possible UFFD-related VM flags. */
#define __VM_UFFD_FLAGS (VM_UFFD_MISSING | VM_UFFD_MINOR | \
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index a71f0ab79bcd..c75b5c50af30 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -22,7 +22,6 @@
*/
#include <linux/energy_model.h>
#include <linux/mmap_lock.h>
-#include <linux/hugetlb_inline.h>
#include <linux/jiffies.h>
#include <linux/mm_api.h>
#include <linux/highmem.h>
diff --git a/mm/vma_internal.h b/mm/vma_internal.h
index 4d300e7bbaf4..4f73f0a4db79 100644
--- a/mm/vma_internal.h
+++ b/mm/vma_internal.h
@@ -18,7 +18,6 @@
#include <linux/fs.h>
#include <linux/huge_mm.h>
#include <linux/hugetlb.h>
-#include <linux/hugetlb_inline.h>
#include <linux/kernel.h>
#include <linux/ksm.h>
#include <linux/khugepaged.h>
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 27/40] mm: remove hugetlb_inline.h
2026-09-14 14:57 ` [PATCH v2 27/40] mm: remove hugetlb_inline.h Lorenzo Stoakes (ARM)
@ 2026-09-14 22:09 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:09 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: bpf, Heiko Carstens, Vasily Gorbik, linux-trace-kernel,
linux-s390, linux-perf-users, Marc Zyngier, Oliver Upton,
linux-scsi, dri-devel, linux-rdma, Christian Borntraeger, kvm,
kvmarm, Alexander Gordeev, selinux
> This header really makes little sense - every place it is included mm.h is
> also included, and the header itself includes mm.h, so it does nothing to
> reduce header size.
>
> It also oddly does an #ifdef around checking VMA_HUGETLB_BIT, however
> VMA_HUGETLB_BIT is unconditionally available, and will never be set if
> hugetlb is not enabled.
>
> Simply remove the header, eliminate the odd ifdeffery and place the
> predicates in mm.h.
>
> The naming of these predicates is odd, but to keep changes separate, we
> will address this in a separate patch.
>
> The file was never put into MAINTAINERS so there's no change required
> there.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=27
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 28/40] mm: rename is_vm_hugetlb_page() to vma_is_hugetlb()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (26 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 27/40] mm: remove hugetlb_inline.h Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 14:57 ` [PATCH v2 29/40] mm: drop some redundant checks around hugetlb VMAs Lorenzo Stoakes (ARM)
` (12 subsequent siblings)
40 siblings, 0 replies; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
The is_vm_hugetlb_page() predicate is badly named - the mapping can span
more than a page and it is inconsistent with other VMA predicates that
typically are prefixed by vma_.
Rename to vma_is_hugetlb() for consistency, and while we're here update
some VM_BUG_ON_VMA() to VM_WARN_ON_ONCE_VMA() as to avoid unnecessary
oopses.
No functional change intended.
Acked-by: Marc Zyngier <maz@kernel.org>
Acked-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Acked-by: Anup Patel <anup@brainfault.org>
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
arch/arm64/kvm/mmu.c | 4 ++--
arch/powerpc/mm/book3s64/radix_tlb.c | 6 +++---
arch/powerpc/mm/nohash/e500_hugetlbpage.c | 2 +-
arch/powerpc/mm/nohash/tlb.c | 2 +-
arch/riscv/kvm/mmu.c | 2 +-
arch/riscv/mm/tlbflush.c | 2 +-
arch/s390/mm/gmap_helpers.c | 6 +++---
arch/sparc/mm/init_64.c | 2 +-
drivers/gpu/drm/drm_gpusvm.c | 2 +-
fs/coredump.c | 2 +-
fs/hugetlbfs/inode.c | 2 +-
fs/proc/task_mmu.c | 8 ++++----
include/asm-generic/tlb.h | 2 +-
include/linux/hugetlb.h | 4 ++--
include/linux/mm.h | 19 ++++++++++++++++---
include/linux/rmap.h | 2 +-
kernel/events/core.c | 2 +-
kernel/sched/fair.c | 2 +-
mm/gup.c | 4 ++--
mm/huge_memory.c | 2 +-
mm/hugetlb.c | 14 +++++++-------
mm/internal.h | 2 +-
mm/madvise.c | 4 ++--
mm/memory.c | 12 ++++++------
mm/mempolicy.c | 2 +-
mm/migrate_device.c | 2 +-
mm/mmap.c | 2 +-
mm/mmu_gather.c | 2 +-
mm/mprotect.c | 2 +-
mm/mremap.c | 6 +++---
mm/page_vma_mapped.c | 4 ++--
mm/pagewalk.c | 2 +-
mm/swapfile.c | 2 +-
mm/userfaultfd.c | 26 +++++++++++++-------------
mm/vma.c | 8 ++++----
mm/vmscan.c | 2 +-
tools/testing/vma/include/stubs.h | 2 +-
37 files changed, 92 insertions(+), 79 deletions(-)
diff --git a/arch/arm64/kvm/mmu.c b/arch/arm64/kvm/mmu.c
index 9ba86450fe4a..a7968f8d24bf 100644
--- a/arch/arm64/kvm/mmu.c
+++ b/arch/arm64/kvm/mmu.c
@@ -1463,13 +1463,13 @@ static int get_vma_page_shift(struct vm_area_struct *vma, unsigned long hva)
{
unsigned long pa;
- if (is_vm_hugetlb_page(vma) && !(vma->vm_flags & VM_PFNMAP))
+ if (vma_is_hugetlb(vma) && !(vma->vm_flags & VM_PFNMAP))
return huge_page_shift(hstate_vma(vma));
if (!(vma->vm_flags & VM_PFNMAP))
return PAGE_SHIFT;
- VM_BUG_ON(is_vm_hugetlb_page(vma));
+ VM_BUG_ON(vma_is_hugetlb(vma));
pa = (vma->vm_pgoff << PAGE_SHIFT) + (hva - vma->vm_start);
diff --git a/arch/powerpc/mm/book3s64/radix_tlb.c b/arch/powerpc/mm/book3s64/radix_tlb.c
index 7de5760164a9..b4603a98224b 100644
--- a/arch/powerpc/mm/book3s64/radix_tlb.c
+++ b/arch/powerpc/mm/book3s64/radix_tlb.c
@@ -627,7 +627,7 @@ void radix__local_flush_tlb_page(struct vm_area_struct *vma, unsigned long vmadd
{
#ifdef CONFIG_HUGETLB_PAGE
/* need the return fix for nohash.c */
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
return radix__local_flush_hugetlb_page(vma, vmaddr);
#endif
radix__local_flush_tlb_page_psize(vma->vm_mm, vmaddr, mmu_virtual_psize);
@@ -945,7 +945,7 @@ void radix__flush_tlb_page_psize(struct mm_struct *mm, unsigned long vmaddr,
void radix__flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr)
{
#ifdef CONFIG_HUGETLB_PAGE
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
return radix__flush_hugetlb_page(vma, vmaddr);
#endif
radix__flush_tlb_page_psize(vma->vm_mm, vmaddr, mmu_virtual_psize);
@@ -1113,7 +1113,7 @@ void radix__flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
{
#ifdef CONFIG_HUGETLB_PAGE
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
return radix__flush_hugetlb_tlb_range(vma, start, end);
#endif
diff --git a/arch/powerpc/mm/nohash/e500_hugetlbpage.c b/arch/powerpc/mm/nohash/e500_hugetlbpage.c
index a134d28a0e4d..b87623f04be5 100644
--- a/arch/powerpc/mm/nohash/e500_hugetlbpage.c
+++ b/arch/powerpc/mm/nohash/e500_hugetlbpage.c
@@ -180,7 +180,7 @@ book3e_hugetlb_preload(struct vm_area_struct *vma, unsigned long ea, pte_t pte)
*/
void __update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t *ptep)
{
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
book3e_hugetlb_preload(vma, address, *ptep);
}
diff --git a/arch/powerpc/mm/nohash/tlb.c b/arch/powerpc/mm/nohash/tlb.c
index 0a650742f3a0..07a2db16c2b1 100644
--- a/arch/powerpc/mm/nohash/tlb.c
+++ b/arch/powerpc/mm/nohash/tlb.c
@@ -278,7 +278,7 @@ void __flush_tlb_page(struct mm_struct *mm, unsigned long vmaddr,
void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr)
{
#ifdef CONFIG_HUGETLB_PAGE
- if (vma && is_vm_hugetlb_page(vma))
+ if (vma && vma_is_hugetlb(vma))
flush_hugetlb_page(vma, vmaddr);
#endif
diff --git a/arch/riscv/kvm/mmu.c b/arch/riscv/kvm/mmu.c
index 6035b5ec9503..5c5c77f98bf0 100644
--- a/arch/riscv/kvm/mmu.c
+++ b/arch/riscv/kvm/mmu.c
@@ -664,7 +664,7 @@ int kvm_riscv_mmu_map(struct kvm_vcpu *vcpu, struct kvm_memory_slot *memslot,
return -EFAULT;
}
- is_hugetlb = is_vm_hugetlb_page(vma);
+ is_hugetlb = vma_is_hugetlb(vma);
if (is_hugetlb)
vma_pageshift = huge_page_shift(hstate_vma(vma));
else
diff --git a/arch/riscv/mm/tlbflush.c b/arch/riscv/mm/tlbflush.c
index 962db300a166..a74a7d5258aa 100644
--- a/arch/riscv/mm/tlbflush.c
+++ b/arch/riscv/mm/tlbflush.c
@@ -149,7 +149,7 @@ void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
{
unsigned long stride_size;
- if (!is_vm_hugetlb_page(vma)) {
+ if (!vma_is_hugetlb(vma)) {
stride_size = PAGE_SIZE;
} else {
stride_size = huge_page_size(hstate_vma(vma));
diff --git a/arch/s390/mm/gmap_helpers.c b/arch/s390/mm/gmap_helpers.c
index ff63ffb1dbd2..3f6783b93e67 100644
--- a/arch/s390/mm/gmap_helpers.c
+++ b/arch/s390/mm/gmap_helpers.c
@@ -102,7 +102,7 @@ __context_unsafe(/* pte_unmap_unlock() not instrumented */)
/* Find the vm address for the guest address */
vma = vma_lookup(mm, vmaddr);
- if (!vma || is_vm_hugetlb_page(vma))
+ if (!vma || vma_is_hugetlb(vma))
return;
/* Get pointer to the page table entry */
@@ -139,7 +139,7 @@ void gmap_helper_discard(struct mm_struct *mm, unsigned long vmaddr, unsigned lo
vma = find_vma_intersection(mm, vmaddr, end);
if (!vma)
return;
- if (!is_vm_hugetlb_page(vma))
+ if (!vma_is_hugetlb(vma))
zap_vma_range(vma, vmaddr, min(end, vma->vm_end) - vmaddr);
vmaddr = vma->vm_end;
}
@@ -247,7 +247,7 @@ static int __gmap_helper_unshare_zeropages(struct mm_struct *mm)
* proof to catch unexpected zeropages in other mappings and
* fail.
*/
- if ((vma->vm_flags & VM_PFNMAP) || is_vm_hugetlb_page(vma))
+ if ((vma->vm_flags & VM_PFNMAP) || vma_is_hugetlb(vma))
continue;
addr = vma->vm_start;
diff --git a/arch/sparc/mm/init_64.c b/arch/sparc/mm/init_64.c
index 103db4683b16..9bbccb5d23a8 100644
--- a/arch/sparc/mm/init_64.c
+++ b/arch/sparc/mm/init_64.c
@@ -413,7 +413,7 @@ void update_mmu_cache_range(struct vm_fault *vmf, struct vm_area_struct *vma,
if (mm->context.hugetlb_pte_count || mm->context.thp_pte_count) {
unsigned long hugepage_size = PAGE_SIZE;
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
hugepage_size = huge_page_size(hstate_vma(vma));
if (hugepage_size >= PUD_SIZE) {
diff --git a/drivers/gpu/drm/drm_gpusvm.c b/drivers/gpu/drm/drm_gpusvm.c
index 793dacec2100..a1d4989b0b61 100644
--- a/drivers/gpu/drm/drm_gpusvm.c
+++ b/drivers/gpu/drm/drm_gpusvm.c
@@ -1142,7 +1142,7 @@ drm_gpusvm_range_find_or_insert(struct drm_gpusvm *gpusvm,
* have to change.
*/
migrate_devmem = ctx->devmem_possible &&
- vma_is_anonymous(vas) && !is_vm_hugetlb_page(vas);
+ vma_is_anonymous(vas) && !vma_is_hugetlb(vas);
chunk_size = drm_gpusvm_range_chunk_size(gpusvm, notifier, vas,
fault_addr, gpuva_start,
diff --git a/fs/coredump.c b/fs/coredump.c
index ac3cd74808c6..fb21fb6703dd 100644
--- a/fs/coredump.c
+++ b/fs/coredump.c
@@ -1608,7 +1608,7 @@ static unsigned long vma_dump_size(struct vm_area_struct *vma,
}
/* Hugetlb memory check */
- if (is_vm_hugetlb_page(vma)) {
+ if (vma_is_hugetlb(vma)) {
if ((vma->vm_flags & VM_SHARED) && FILTER(HUGETLB_SHARED))
goto whole;
if (!(vma->vm_flags & VM_SHARED) && FILTER(HUGETLB_PRIVATE))
diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c
index 7611a8470ea2..ba7097d5720c 100644
--- a/fs/hugetlbfs/inode.c
+++ b/fs/hugetlbfs/inode.c
@@ -108,7 +108,7 @@ static int hugetlbfs_file_mmap(struct file *file, struct vm_area_struct *vma)
* vma address alignment (but not the pgoff alignment) has
* already been checked by prepare_hugepage_range. If you add
* any error returns here, do so after setting VM_HUGETLB, so
- * is_vm_hugetlb_page tests below unmap_region go the right
+ * vma_is_hugetlb tests below unmap_region go the right
* way when do_mmap unwinds (may be important on powerpc
* and ia64).
*/
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
index e671b4fd8ded..565e6446bd31 100644
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -3015,7 +3015,7 @@ static int pagemap_scan_pte_hole(unsigned long addr, unsigned long end,
* hugetlb differs, see pagemap_hugetlb_category().
*/
categories = p->cur_vma_category;
- if (userfaultfd_wp(vma) && !is_vm_hugetlb_page(vma))
+ if (userfaultfd_wp(vma) && !vma_is_hugetlb(vma))
categories |= PAGE_IS_WRITTEN;
if (!pagemap_scan_is_interesting_page(categories, p))
@@ -3028,7 +3028,7 @@ static int pagemap_scan_pte_hole(unsigned long addr, unsigned long end,
if (~p->arg.flags & PM_SCAN_WP_MATCHING)
return ret;
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
err = pagemap_scan_hugetlb_hole_wp(vma, addr, end);
else
err = uffd_wp_range(vma, addr, end - addr, true);
@@ -3470,7 +3470,7 @@ static int show_numa_map(struct seq_file *m, void *v)
seq_puts(m, " stack");
}
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
seq_puts(m, " huge");
/* Skip walking pages if gate VMA */
@@ -3499,7 +3499,7 @@ static int show_numa_map(struct seq_file *m, void *v)
if (md->swapcache)
seq_printf(m, " swapcache=%lu", md->swapcache);
- if (md->active < md->pages && !is_vm_hugetlb_page(vma))
+ if (md->active < md->pages && !vma_is_hugetlb(vma))
seq_printf(m, " active=%lu", md->active);
if (md->writeback)
diff --git a/include/asm-generic/tlb.h b/include/asm-generic/tlb.h
index 8b8123e5b7d7..48d47b34cc77 100644
--- a/include/asm-generic/tlb.h
+++ b/include/asm-generic/tlb.h
@@ -438,7 +438,7 @@ tlb_update_vma_flags(struct mmu_gather *tlb, struct vm_area_struct *vma)
* We rely on tlb_end_vma() to issue a flush, such that when we reset
* these values the batch is empty.
*/
- tlb->vma_huge = is_vm_hugetlb_page(vma);
+ tlb->vma_huge = vma_is_hugetlb(vma);
tlb->vma_exec = !!(vma->vm_flags & VM_EXEC);
/*
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h
index d7e6563cef75..24727ece20fe 100644
--- a/include/linux/hugetlb.h
+++ b/include/linux/hugetlb.h
@@ -251,14 +251,14 @@ extern void __hugetlb_zap_end(struct vm_area_struct *vma,
static inline void hugetlb_zap_begin(struct vm_area_struct *vma,
unsigned long *start, unsigned long *end)
{
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
__hugetlb_zap_begin(vma, start, end);
}
static inline void hugetlb_zap_end(struct vm_area_struct *vma,
struct zap_details *details)
{
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
__hugetlb_zap_end(vma, details);
}
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 726c2fee35fb..154fc25c9efa 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1609,15 +1609,28 @@ static inline bool vma_is_shared_maywrite(const struct vm_area_struct *vma)
return is_shared_maywrite(&vma->flags);
}
-static inline bool is_vma_hugetlb_flags(const vma_flags_t *flags)
+/**
+ * vma_flags_is_hugetlb() - Do the specified VMA flags indicate that the
+ * VMA is a hugetlb mapping?
+ * @flags: The VMA flags to test.
+ *
+ * Returns: true if the flags indicate a hugetlb mapping, false otherwise.
+ */
+static inline bool vma_flags_is_hugetlb(const vma_flags_t *flags)
{
return IS_ENABLED(CONFIG_HUGETLB_PAGE) &&
vma_flags_test(flags, VMA_HUGETLB_BIT);
}
-static inline bool is_vm_hugetlb_page(const struct vm_area_struct *vma)
+/**
+ * vma_is_hugetlb() - Is @vma a hugetlb mapping?
+ * @vma: The VMA to test.
+ *
+ * Returns: true if @vma is a hugetlb mapping, false otherwise.
+ */
+static inline bool vma_is_hugetlb(const struct vm_area_struct *vma)
{
- return is_vma_hugetlb_flags(&vma->flags);
+ return vma_flags_is_hugetlb(&vma->flags);
}
/**
diff --git a/include/linux/rmap.h b/include/linux/rmap.h
index 0b332770abee..74cca0e3c726 100644
--- a/include/linux/rmap.h
+++ b/include/linux/rmap.h
@@ -888,7 +888,7 @@ struct page_vma_mapped_walk {
static inline void page_vma_mapped_walk_done(struct page_vma_mapped_walk *pvmw)
{
/* HugeTLB pte is set to the relevant page table entry without pte_mapped. */
- if (pvmw->pte && !is_vm_hugetlb_page(pvmw->vma))
+ if (pvmw->pte && !vma_is_hugetlb(pvmw->vma))
pte_unmap(pvmw->pte);
if (pvmw->ptl)
spin_unlock(pvmw->ptl);
diff --git a/kernel/events/core.c b/kernel/events/core.c
index a6c8e38a3110..8ca8a6842924 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -9808,7 +9808,7 @@ static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
if (vma->vm_flags & VM_LOCKED)
flags |= MAP_LOCKED;
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
flags |= MAP_HUGETLB;
if (file) {
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index c75b5c50af30..ae6c1a606eb5 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -4211,7 +4211,7 @@ static void task_numa_work(struct callback_head *work)
for (; vma; vma = vma_next(&vmi)) {
if (!vma_migratable(vma) || !vma_policy_mof(vma) ||
- is_vm_hugetlb_page(vma) || vma_is_kernel_owned(vma)) {
+ vma_is_hugetlb(vma) || vma_is_kernel_owned(vma)) {
trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_UNSUITABLE);
continue;
}
diff --git a/mm/gup.c b/mm/gup.c
index e6310a7cc05b..f166acf794e3 100644
--- a/mm/gup.c
+++ b/mm/gup.c
@@ -621,7 +621,7 @@ static struct page *no_page_table(struct vm_area_struct *vma,
* But we can only make this optimization where a hole would surely
* be zero-filled if handle_mm_fault() actually did handle it.
*/
- if (is_vm_hugetlb_page(vma)) {
+ if (vma_is_hugetlb(vma)) {
struct hstate *h = hstate_vma(vma);
if (!hugetlbfs_pagecache_present(h, vma, address))
@@ -1213,7 +1213,7 @@ static int check_vma_flags(struct vm_area_struct *vma, unsigned long gup_flags)
if ((gup_flags & FOLL_LONGTERM) && vma_is_fsdax(vma))
return -EOPNOTSUPP;
- if ((gup_flags & FOLL_SPLIT_PMD) && is_vm_hugetlb_page(vma))
+ if ((gup_flags & FOLL_SPLIT_PMD) && vma_is_hugetlb(vma))
return -EOPNOTSUPP;
if (vma_is_secretmem(vma))
diff --git a/mm/huge_memory.c b/mm/huge_memory.c
index 4d0acd9a1099..c3c98ea672c3 100644
--- a/mm/huge_memory.c
+++ b/mm/huge_memory.c
@@ -4769,7 +4769,7 @@ static inline bool vma_not_suitable_for_thp_split(struct vm_area_struct *vma)
return true;
if (vma_test(vma, VMA_IO_BIT))
return true;
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
return true;
return false;
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index d3a0650ff690..817f57f13b09 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -1147,7 +1147,7 @@ static inline struct resv_map *inode_resv_map(struct inode *inode)
static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
{
- VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
+ VM_WARN_ON_ONCE_VMA(!vma_is_hugetlb(vma), vma);
if (vma->vm_flags & VM_MAYSHARE) {
struct address_space *mapping = vma->vm_file->f_mapping;
struct inode *inode = mapping->host;
@@ -1162,7 +1162,7 @@ static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
{
- VM_WARN_ON_ONCE_VMA(!is_vm_hugetlb_page(vma), vma);
+ VM_WARN_ON_ONCE_VMA(!vma_is_hugetlb(vma), vma);
VM_WARN_ON_ONCE_VMA(vma_test(vma, VMA_MAYSHARE_BIT), vma);
set_vma_private_data(vma, (unsigned long)map);
@@ -1170,7 +1170,7 @@ static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
{
- VM_WARN_ON_ONCE_VMA(!is_vm_hugetlb_page(vma), vma);
+ VM_WARN_ON_ONCE_VMA(!vma_is_hugetlb(vma), vma);
VM_WARN_ON_ONCE_VMA(vma_test(vma, VMA_MAYSHARE_BIT), vma);
set_vma_private_data(vma, get_vma_private_data(vma) | flags);
@@ -1178,7 +1178,7 @@ static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
{
- VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
+ VM_WARN_ON_ONCE_VMA(!vma_is_hugetlb(vma), vma);
return (get_vma_private_data(vma) & flag) != 0;
}
@@ -1192,7 +1192,7 @@ bool __vma_private_lock(struct vm_area_struct *vma)
void hugetlb_dup_vma_private(struct vm_area_struct *vma)
{
- VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
+ VM_WARN_ON_ONCE_VMA(!vma_is_hugetlb(vma), vma);
/*
* Clear vm_private_data
* - For shared mappings this is a per-vma semaphore that may be
@@ -5279,7 +5279,7 @@ void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
unsigned long last_addr_mask;
i_mmap_assert_write_locked(vma->vm_file->f_mapping);
- WARN_ON(!is_vm_hugetlb_page(vma));
+ WARN_ON(!vma_is_hugetlb(vma));
BUG_ON(start & ~huge_page_mask(h));
BUG_ON(end & ~huge_page_mask(h));
@@ -7505,6 +7505,6 @@ void hugetlb_unshare_all_pmds(struct vm_area_struct *vma)
*/
void fixup_hugetlb_reservations(struct vm_area_struct *vma)
{
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
clear_vma_resv_huge_pages(vma);
}
diff --git a/mm/internal.h b/mm/internal.h
index 59cfe336e468..1b6153013061 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -1115,7 +1115,7 @@ static inline bool vma_supports_mlock(const struct vm_area_struct *vma)
return false;
if (vma_test_single_mask(vma, VMA_DROPPABLE))
return false;
- if (vma_is_dax(vma) || is_vm_hugetlb_page(vma))
+ if (vma_is_dax(vma) || vma_is_hugetlb(vma))
return false;
return vma != get_gate_vma(current->mm);
}
diff --git a/mm/madvise.c b/mm/madvise.c
index fbb72ab49aa6..467601a8525b 100644
--- a/mm/madvise.c
+++ b/mm/madvise.c
@@ -881,7 +881,7 @@ bool madvise_dontneed_free_valid_vma(struct madvise_behavior *madv_behavior)
int behavior = madv_behavior->behavior;
struct madvise_behavior_range *range = &madv_behavior->range;
- if (!is_vm_hugetlb_page(vma)) {
+ if (!vma_is_hugetlb(vma)) {
unsigned int forbidden = VM_PFNMAP;
if (behavior != MADV_DONTNEED_LOCKED)
@@ -1578,7 +1578,7 @@ static int madvise_vma_behavior(struct madvise_behavior *madv_behavior)
new_flags |= VM_DONTDUMP;
break;
case MADV_DODUMP:
- if ((!is_vm_hugetlb_page(vma) && (new_flags & VM_SPECIAL)) ||
+ if ((!vma_is_hugetlb(vma) && (new_flags & VM_SPECIAL)) ||
(new_flags & VM_DROPPABLE))
return -EINVAL;
new_flags &= ~VM_DONTDUMP;
diff --git a/mm/memory.c b/mm/memory.c
index 38fe455dc70c..02e9d5d2e279 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -1564,7 +1564,7 @@ copy_page_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma)
if (!vma_needs_copy(dst_vma, src_vma))
return 0;
- if (is_vm_hugetlb_page(src_vma))
+ if (vma_is_hugetlb(src_vma))
return copy_hugetlb_page_range(dst_mm, src_mm, dst_vma, src_vma);
/*
@@ -2178,7 +2178,7 @@ static void __zap_vma_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
if (vma->vm_file && !reaping)
uprobe_munmap(vma, start, end);
- if (unlikely(is_vm_hugetlb_page(vma))) {
+ if (unlikely(vma_is_hugetlb(vma))) {
zap_flags_t zap_flags = details ? details->zap_flags : 0;
VM_WARN_ON_ONCE(reaping);
@@ -2313,7 +2313,7 @@ void zap_vma_range_batched(struct mmu_gather *tlb,
*/
__zap_vma_range(tlb, vma, address, end, details);
mmu_notifier_invalidate_range_end(&range);
- if (is_vm_hugetlb_page(vma)) {
+ if (vma_is_hugetlb(vma)) {
/*
* flush tlb and free resources before hugetlb_zap_end(), to
* avoid concurrent page faults' allocation failure.
@@ -6933,7 +6933,7 @@ vm_fault_t handle_mm_fault(struct vm_area_struct *vma, unsigned long address,
lru_gen_enter_fault(vma);
- if (unlikely(is_vm_hugetlb_page(vma)))
+ if (unlikely(vma_is_hugetlb(vma)))
ret = hugetlb_fault(vma->vm_mm, vma, address, flags);
else
ret = __handle_mm_fault(vma, address, flags);
@@ -7803,12 +7803,12 @@ void ptlock_free(struct ptdesc *ptdesc)
void vma_pgtable_walk_begin(struct vm_area_struct *vma)
{
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
hugetlb_vma_lock_read(vma);
}
void vma_pgtable_walk_end(struct vm_area_struct *vma)
{
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
hugetlb_vma_unlock_read(vma);
}
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index 8fc8a975657e..044ffb4f4128 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -2023,7 +2023,7 @@ bool vma_migratable(struct vm_area_struct *vma)
if (vma_is_dax(vma))
return false;
- if (is_vm_hugetlb_page(vma) &&
+ if (vma_is_hugetlb(vma) &&
!hugepage_migration_supported(hstate_vma(vma)))
return false;
diff --git a/mm/migrate_device.c b/mm/migrate_device.c
index 0c437004329d..c38cbaaef5a4 100644
--- a/mm/migrate_device.c
+++ b/mm/migrate_device.c
@@ -743,7 +743,7 @@ int migrate_vma_setup(struct migrate_vma *args)
args->start &= PAGE_MASK;
args->end &= PAGE_MASK;
- if (!args->vma || is_vm_hugetlb_page(args->vma) ||
+ if (!args->vma || vma_is_hugetlb(args->vma) ||
(args->vma->vm_flags & VM_SPECIAL) || vma_is_dax(args->vma))
return -EINVAL;
if (nr_pages <= 0)
diff --git a/mm/mmap.c b/mm/mmap.c
index 4bf26b0f1e6e..98449f364af1 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -1786,7 +1786,7 @@ __latent_entropy int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
/*
* Copy/update hugetlb private vma information.
*/
- if (is_vm_hugetlb_page(tmp))
+ if (vma_is_hugetlb(tmp))
hugetlb_dup_vma_private(tmp);
/*
diff --git a/mm/mmu_gather.c b/mm/mmu_gather.c
index 2a72a9686773..9f353f0e2ef4 100644
--- a/mm/mmu_gather.c
+++ b/mm/mmu_gather.c
@@ -480,7 +480,7 @@ void tlb_gather_mmu_vma(struct mmu_gather *tlb, struct vm_area_struct *vma)
{
tlb_gather_mmu(tlb, vma->vm_mm);
tlb_update_vma_flags(tlb, vma);
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
/* All entries have the same size. */
tlb_change_page_size(tlb, huge_page_size(hstate_vma(vma)));
}
diff --git a/mm/mprotect.c b/mm/mprotect.c
index fe32fd87cf5c..a1b6d29bf039 100644
--- a/mm/mprotect.c
+++ b/mm/mprotect.c
@@ -717,7 +717,7 @@ long change_protection(struct mmu_gather *tlb,
(cp_flags & MM_CP_UFFD_RWP))
newprot = PAGE_NONE;
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
pages = hugetlb_change_protection(vma, start, end, newprot,
cp_flags);
else
diff --git a/mm/mremap.c b/mm/mremap.c
index ed19b47c2caf..1122282a1d6a 100644
--- a/mm/mremap.c
+++ b/mm/mremap.c
@@ -812,7 +812,7 @@ unsigned long move_page_tables(struct pagetable_move_control *pmc)
if (!pmc->len_in)
return 0;
- if (is_vm_hugetlb_page(pmc->old))
+ if (vma_is_hugetlb(pmc->old))
return move_hugetlb_page_tables(pmc->old, pmc->new, pmc->old_addr,
pmc->new_addr, pmc->len_in);
@@ -1735,7 +1735,7 @@ static bool vma_multi_allowed(struct vm_area_struct *vma)
/* Known good. */
if (vma_is_shmem(vma))
return true;
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
return true;
if (file->f_op->get_unmapped_area == thp_get_unmapped_area)
return true;
@@ -1758,7 +1758,7 @@ static int check_prep_vma(struct vma_remap_struct *vrm)
return -EPERM;
/* Align to hugetlb page size, if required. */
- if (is_vm_hugetlb_page(vma) && !align_hugetlb(vrm))
+ if (vma_is_hugetlb(vma) && !align_hugetlb(vrm))
return -EINVAL;
vrm_set_delta(vrm);
diff --git a/mm/page_vma_mapped.c b/mm/page_vma_mapped.c
index 28e306fdb3a5..8408aee7571b 100644
--- a/mm/page_vma_mapped.c
+++ b/mm/page_vma_mapped.c
@@ -109,7 +109,7 @@ static bool check_pte(struct page_vma_mapped_walk *pvmw, unsigned long pte_nr)
unsigned long pfn;
pte_t ptent;
- if (is_vm_hugetlb_page(pvmw->vma))
+ if (vma_is_hugetlb(pvmw->vma))
ptent = huge_ptep_get(pvmw->vma->vm_mm, pvmw->address,
pvmw->pte);
else
@@ -206,7 +206,7 @@ bool page_vma_mapped_walk(struct page_vma_mapped_walk *pvmw)
if (pvmw->pmd && !pvmw->pte)
return not_found(pvmw);
- if (unlikely(is_vm_hugetlb_page(vma))) {
+ if (unlikely(vma_is_hugetlb(vma))) {
struct hstate *hstate = hstate_vma(vma);
unsigned long size = huge_page_size(hstate);
/* The only possible mapping was handled on last iteration */
diff --git a/mm/pagewalk.c b/mm/pagewalk.c
index 7411702a37f5..e6493bbe6919 100644
--- a/mm/pagewalk.c
+++ b/mm/pagewalk.c
@@ -408,7 +408,7 @@ static int __walk_page_range(unsigned long start, unsigned long end,
int err = 0;
struct vm_area_struct *vma = walk->vma;
const struct mm_walk_ops *ops = walk->ops;
- bool is_hugetlb = is_vm_hugetlb_page(vma);
+ bool is_hugetlb = vma_is_hugetlb(vma);
/* We do not support hugetlb PTE installation. */
if (ops->install_pte && is_hugetlb)
diff --git a/mm/swapfile.c b/mm/swapfile.c
index 2cd0d0ba966c..c1c5fbb3c909 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -2707,7 +2707,7 @@ static int unuse_mm(struct mm_struct *mm, unsigned int type)
if (check_stable_address_space(mm))
goto unlock;
for_each_vma(vmi, vma) {
- if (vma->anon_vma && !is_vm_hugetlb_page(vma)) {
+ if (vma->anon_vma && !vma_is_hugetlb(vma)) {
ret = unuse_vma(vma, type);
if (ret)
break;
diff --git a/mm/userfaultfd.c b/mm/userfaultfd.c
index 79cc7b546f13..949017e60608 100644
--- a/mm/userfaultfd.c
+++ b/mm/userfaultfd.c
@@ -237,7 +237,7 @@ static int mfill_get_vma(struct mfill_state *state)
if ((flags & MFILL_ATOMIC_WP) && !(dst_vma->vm_flags & VM_UFFD_WP))
goto out_unlock;
- if (is_vm_hugetlb_page(dst_vma))
+ if (vma_is_hugetlb(dst_vma))
return 0;
ops = vma_uffd_ops(dst_vma);
@@ -804,7 +804,7 @@ static __always_inline ssize_t mfill_atomic_hugetlb(
}
err = -ENOENT;
- if (!is_vm_hugetlb_page(dst_vma))
+ if (!vma_is_hugetlb(dst_vma))
goto out_unlock_vma;
err = -EINVAL;
@@ -967,7 +967,7 @@ static __always_inline ssize_t mfill_atomic(struct userfaultfd_ctx *ctx,
/*
* If this is a HUGETLB vma, pass off to appropriate routine
*/
- if (is_vm_hugetlb_page(state.vma))
+ if (vma_is_hugetlb(state.vma))
return mfill_atomic_hugetlb(ctx, state.vma, dst_start,
src_start, len, flags);
@@ -1114,7 +1114,7 @@ static int mwriteprotect_range(struct userfaultfd_ctx *ctx, unsigned long start,
break;
}
- if (is_vm_hugetlb_page(dst_vma)) {
+ if (vma_is_hugetlb(dst_vma)) {
err = -EINVAL;
page_mask = vma_kernel_pagesize(dst_vma) - 1;
if ((start & page_mask) || (len & page_mask))
@@ -1172,7 +1172,7 @@ int mrwprotect_range(struct userfaultfd_ctx *ctx, unsigned long start,
if (!userfaultfd_rwp(dst_vma))
return -ENOENT;
- if (is_vm_hugetlb_page(dst_vma)) {
+ if (vma_is_hugetlb(dst_vma)) {
unsigned long page_mask;
page_mask = vma_kernel_pagesize(dst_vma) - 1;
@@ -2149,7 +2149,7 @@ static bool vma_can_userfault(struct vm_area_struct *vma, vm_flags_t vm_flags,
if (vma->vm_flags & (VM_DROPPABLE | VM_SHADOW_STACK))
return false;
- if (!is_vm_hugetlb_page(vma) && (vma->vm_flags & VM_SPECIAL))
+ if (!vma_is_hugetlb(vma) && (vma->vm_flags & VM_SPECIAL))
return false;
vm_flags &= __VM_UFFD_FLAGS;
@@ -2319,7 +2319,7 @@ static int userfaultfd_register_range(struct userfaultfd_ctx *ctx,
*/
userfaultfd_set_ctx(vma, ctx, vm_flags);
- if (is_vm_hugetlb_page(vma) && uffd_disable_huge_pmd_share(vma))
+ if (vma_is_hugetlb(vma) && uffd_disable_huge_pmd_share(vma))
hugetlb_unshare_all_pmds(vma);
skip:
@@ -2895,7 +2895,7 @@ vm_fault_t handle_userfault(struct vm_fault *vmf, unsigned long reason)
* (sleepable) vma lock can modify the current task state, that
* must be before explicitly calling set_current_state().
*/
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
hugetlb_vma_lock_read(vma);
spin_lock_irq(&ctx->fault_pending_wqh.lock);
@@ -2912,7 +2912,7 @@ vm_fault_t handle_userfault(struct vm_fault *vmf, unsigned long reason)
set_current_state(blocking_state);
spin_unlock_irq(&ctx->fault_pending_wqh.lock);
- if (is_vm_hugetlb_page(vma)) {
+ if (vma_is_hugetlb(vma)) {
must_wait = userfaultfd_huge_must_wait(ctx, vmf, reason);
hugetlb_vma_unlock_read(vma);
} else {
@@ -3744,7 +3744,7 @@ static int userfaultfd_register(struct userfaultfd_ctx *ctx,
* If the first vma contains huge pages, make sure start address
* is aligned to huge page size.
*/
- if (is_vm_hugetlb_page(vma)) {
+ if (vma_is_hugetlb(vma)) {
unsigned long vma_hpagesize = vma_kernel_pagesize(vma);
if (start & (vma_hpagesize - 1))
@@ -3795,7 +3795,7 @@ static int userfaultfd_register(struct userfaultfd_ctx *ctx,
* If this vma contains ending address, and huge pages
* check alignment.
*/
- if (is_vm_hugetlb_page(cur) && end <= cur->vm_end &&
+ if (vma_is_hugetlb(cur) && end <= cur->vm_end &&
end > cur->vm_start) {
unsigned long vma_hpagesize = vma_kernel_pagesize(cur);
@@ -3831,7 +3831,7 @@ static int userfaultfd_register(struct userfaultfd_ctx *ctx,
/*
* Note vmas containing huge pages
*/
- if (is_vm_hugetlb_page(cur))
+ if (vma_is_hugetlb(cur))
basic_ioctls = true;
found = true;
@@ -3917,7 +3917,7 @@ static int userfaultfd_unregister(struct userfaultfd_ctx *ctx,
* If the first vma contains huge pages, make sure start address
* is aligned to huge page size.
*/
- if (is_vm_hugetlb_page(vma)) {
+ if (vma_is_hugetlb(vma)) {
unsigned long vma_hpagesize = vma_kernel_pagesize(vma);
if (start & (vma_hpagesize - 1))
diff --git a/mm/vma.c b/mm/vma.c
index 54e5f4bbd8af..777656306705 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -599,7 +599,7 @@ __split_vma(struct vma_iterator *vmi, struct vm_area_struct *vma,
* boundary.
*/
vma_adjust_trans_huge(vma, vma->vm_start, addr, NULL);
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
hugetlb_split(vma, addr);
if (new_below) {
@@ -2236,7 +2236,7 @@ bool vma_wants_writenotify(struct vm_area_struct *vma, pgprot_t vm_page_prot)
* Do we need to track softdirty? hugetlb does not support softdirty
* tracking yet.
*/
- if (vma_soft_dirty_enabled(vma) && !is_vm_hugetlb_page(vma))
+ if (vma_soft_dirty_enabled(vma) && !vma_is_hugetlb(vma))
return true;
/* Do we need write faults for uffd-wp tracking? */
@@ -2355,7 +2355,7 @@ int mm_take_all_locks(struct mm_struct *mm)
if (signal_pending(current))
goto out_unlock;
if (vma->vm_file && vma->vm_file->f_mapping &&
- is_vm_hugetlb_page(vma))
+ vma_is_hugetlb(vma))
vm_lock_mapping(mm, vma->vm_file->f_mapping);
}
@@ -2364,7 +2364,7 @@ int mm_take_all_locks(struct mm_struct *mm)
if (signal_pending(current))
goto out_unlock;
if (vma->vm_file && vma->vm_file->f_mapping &&
- !is_vm_hugetlb_page(vma))
+ !vma_is_hugetlb(vma))
vm_lock_mapping(mm, vma->vm_file->f_mapping);
}
diff --git a/mm/vmscan.c b/mm/vmscan.c
index aaceed4759ee..12ed3388ee41 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -3471,7 +3471,7 @@ static int should_skip_vma(unsigned long start, unsigned long end, struct mm_wal
if (!vma_is_accessible(vma))
return true;
- if (is_vm_hugetlb_page(vma))
+ if (vma_is_hugetlb(vma))
return true;
if (!vma_has_recency(vma))
diff --git a/tools/testing/vma/include/stubs.h b/tools/testing/vma/include/stubs.h
index d6136e19a8af..48d1dc53df42 100644
--- a/tools/testing/vma/include/stubs.h
+++ b/tools/testing/vma/include/stubs.h
@@ -193,7 +193,7 @@ static inline bool mapping_can_writeback(struct address_space *mapping)
return true;
}
-static inline bool is_vm_hugetlb_page(struct vm_area_struct *vma)
+static inline bool vma_is_hugetlb(struct vm_area_struct *vma)
{
return false;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* [PATCH v2 29/40] mm: drop some redundant checks around hugetlb VMAs
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (27 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 28/40] mm: rename is_vm_hugetlb_page() to vma_is_hugetlb() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:08 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 30/40] mm/madvise: update is_valid_guard_vma() to use vma_can_merge() Lorenzo Stoakes (ARM)
` (11 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Adjust code which inadvertently perform redundant checks on hugetlb VMAs
and clean them up:
* hugetlb VMAs have VMA_DONTEXPAND_BIT set so a VMA_SPECIAL_FLAGS check
suffices. (migrate_vma_setup() regains an explicit hugetlb test later in
the series, once VMA_SPECIAL_FLAGS is removed.)
* hugetlb VMAs unconditionally set vma->vm_ops, so they are never
anonymous.
* hugetlb VMAs do not set VMA_PFNMAP_BIT so checking for this is redundant.
While we're here also drop a VM_BUG_ON() which the simplified check above
makes unreachable, and use the new VMA flag API.
No functional change intended.
Acked-by: Marc Zyngier <maz@kernel.org>
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
arch/arm64/kvm/mmu.c | 4 +---
drivers/gpu/drm/drm_gpusvm.c | 3 +--
mm/migrate_device.c | 4 ++--
3 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/arch/arm64/kvm/mmu.c b/arch/arm64/kvm/mmu.c
index a7968f8d24bf..3c1240ffc38d 100644
--- a/arch/arm64/kvm/mmu.c
+++ b/arch/arm64/kvm/mmu.c
@@ -1463,14 +1463,12 @@ static int get_vma_page_shift(struct vm_area_struct *vma, unsigned long hva)
{
unsigned long pa;
- if (vma_is_hugetlb(vma) && !(vma->vm_flags & VM_PFNMAP))
+ if (vma_is_hugetlb(vma))
return huge_page_shift(hstate_vma(vma));
if (!(vma->vm_flags & VM_PFNMAP))
return PAGE_SHIFT;
- VM_BUG_ON(vma_is_hugetlb(vma));
-
pa = (vma->vm_pgoff << PAGE_SHIFT) + (hva - vma->vm_start);
#ifndef __PAGETABLE_PMD_FOLDED
diff --git a/drivers/gpu/drm/drm_gpusvm.c b/drivers/gpu/drm/drm_gpusvm.c
index a1d4989b0b61..fab34fea99c2 100644
--- a/drivers/gpu/drm/drm_gpusvm.c
+++ b/drivers/gpu/drm/drm_gpusvm.c
@@ -1141,8 +1141,7 @@ drm_gpusvm_range_find_or_insert(struct drm_gpusvm *gpusvm,
* limitations. If/when migrate_vma_* add more support, this logic will
* have to change.
*/
- migrate_devmem = ctx->devmem_possible &&
- vma_is_anonymous(vas) && !vma_is_hugetlb(vas);
+ migrate_devmem = ctx->devmem_possible && vma_is_anonymous(vas);
chunk_size = drm_gpusvm_range_chunk_size(gpusvm, notifier, vas,
fault_addr, gpuva_start,
diff --git a/mm/migrate_device.c b/mm/migrate_device.c
index c38cbaaef5a4..b9c453c28795 100644
--- a/mm/migrate_device.c
+++ b/mm/migrate_device.c
@@ -743,8 +743,8 @@ int migrate_vma_setup(struct migrate_vma *args)
args->start &= PAGE_MASK;
args->end &= PAGE_MASK;
- if (!args->vma || vma_is_hugetlb(args->vma) ||
- (args->vma->vm_flags & VM_SPECIAL) || vma_is_dax(args->vma))
+ if (!args->vma || vma_test_any_mask(args->vma, VMA_SPECIAL_FLAGS) ||
+ vma_is_dax(args->vma))
return -EINVAL;
if (nr_pages <= 0)
return -EINVAL;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 29/40] mm: drop some redundant checks around hugetlb VMAs
2026-09-14 14:57 ` [PATCH v2 29/40] mm: drop some redundant checks around hugetlb VMAs Lorenzo Stoakes (ARM)
@ 2026-09-14 22:08 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:08 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-s390, Alexander Gordeev, linux-scsi, linux-perf-users,
Heiko Carstens, linux-rdma, Christian Borntraeger, dri-devel,
selinux, kvm, linux-trace-kernel, Vasily Gorbik, Marc Zyngier,
Oliver Upton, bpf, kvmarm
> Adjust code which inadvertently perform redundant checks on hugetlb VMAs
> and clean them up:
>
> * hugetlb VMAs have VMA_DONTEXPAND_BIT set so a VMA_SPECIAL_FLAGS check
> suffices. (migrate_vma_setup() regains an explicit hugetlb test later in
> the series, once VMA_SPECIAL_FLAGS is removed.)
>
> * hugetlb VMAs unconditionally set vma->vm_ops, so they are never
> anonymous.
>
> * hugetlb VMAs do not set VMA_PFNMAP_BIT so checking for this is redundant.
>
> While we're here also drop a VM_BUG_ON() which the simplified check above
> makes unreachable, and use the new VMA flag API.
>
> No functional change intended.
>
> Acked-by: Marc Zyngier <maz@kernel.org>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=29
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 30/40] mm/madvise: update is_valid_guard_vma() to use vma_can_merge()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (28 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 29/40] mm: drop some redundant checks around hugetlb VMAs Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:14 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 31/40] mm/vma: introduce vma[_flags]_is_persistent() Lorenzo Stoakes (ARM)
` (10 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
We currently disallow the installation of lightweight guard regions in VMAs
whose flags intersect VMA_SPECIAL_FLAGS or VMA_HUGETLB_BIT, or
VMA_LOCKED_BIT unless allow_locked is set.
hugetlb VMAs set VMA_DONTEXPAND_BIT so this was already redundant,
VMA_SPECIAL_FLAGS already sufficed.
However, now that VMA_IO_BIT is only set if VMA_PFNMAP or VMA_MIXEDMAP_BIT
is set, this check collapses to being the equivalent of
!vma_can_merge().
Update is_valid_guard_vma() to reflect this.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/madvise.c | 20 +++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/mm/madvise.c b/mm/madvise.c
index 467601a8525b..0922d5f07a12 100644
--- a/mm/madvise.c
+++ b/mm/madvise.c
@@ -1221,19 +1221,25 @@ static long madvise_remove(struct madvise_behavior *madv_behavior)
return error;
}
-static bool is_valid_guard_vma(struct vm_area_struct *vma, bool allow_locked)
+static bool is_valid_guard_vma(const struct vm_area_struct *vma,
+ bool allow_locked)
{
- vm_flags_t disallowed = VM_SPECIAL | VM_HUGETLB;
-
/*
- * A user could lock after setting a guard range but that's fine, as
+ * A user could lock after setting a guard range but that's fine as
* they'd not be able to fault in. The issue arises when we try to zap
* existing locked VMAs. We don't want to do that.
*/
- if (!allow_locked)
- disallowed |= VM_LOCKED;
+ if (!allow_locked && vma_test(vma, VMA_LOCKED_BIT))
+ return false;
+ /*
+ * Guard regions require a VMA whose page tables are managed solely by
+ * the core, which is also what merging requires, so disallow any flags
+ * that would prevent a merge.
+ */
+ if (!vma_can_merge(vma))
+ return false;
- return !(vma->vm_flags & disallowed);
+ return true;
}
static bool is_guard_pte_marker(pte_t ptent)
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 30/40] mm/madvise: update is_valid_guard_vma() to use vma_can_merge()
2026-09-14 14:57 ` [PATCH v2 30/40] mm/madvise: update is_valid_guard_vma() to use vma_can_merge() Lorenzo Stoakes (ARM)
@ 2026-09-14 22:14 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:14 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-trace-kernel, kvm, linux-scsi, linux-perf-users,
Christian Borntraeger, linux-rdma, Alexander Gordeev, dri-devel,
Marc Zyngier, bpf, selinux, Heiko Carstens, kvmarm, Oliver Upton,
Vasily Gorbik, linux-s390
> We currently disallow the installation of lightweight guard regions in VMAs
> whose flags intersect VMA_SPECIAL_FLAGS or VMA_HUGETLB_BIT, or
> VMA_LOCKED_BIT unless allow_locked is set.
>
> hugetlb VMAs set VMA_DONTEXPAND_BIT so this was already redundant,
> VMA_SPECIAL_FLAGS already sufficed.
>
> However, now that VMA_IO_BIT is only set if VMA_PFNMAP or VMA_MIXEDMAP_BIT
> is set, this check collapses to being the equivalent of
> !vma_can_merge().
>
> Update is_valid_guard_vma() to reflect this.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=30
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 31/40] mm/vma: introduce vma[_flags]_is_persistent()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (29 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 30/40] mm/madvise: update is_valid_guard_vma() to use vma_can_merge() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:12 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 32/40] mm/uffd: use predicates for userfaultfd checks Lorenzo Stoakes (ARM)
` (9 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Introduce vma[_flags]_is_persistent() for the purposes of identifying
mappings that are persistent in the sense that bytes to the mapping stay
there, and bytes read from the mapping are the same unless changed by
actions taken by userland.
Kernel-owned mappings do not fall into this category, as their owner may
change the contents without the user having initiated it, and nor of course
does memory-mapped I/O.
We exclude fixed mappings as these are singled out as being unmergeable and
so cannot be guaranteed to persist user data.
hugetlb mappings are fixed mappings, but their contents are entirely the
user's, so they are explicitly carved out as persistent, as the MADV_DODUMP
check already does.
It excludes droppable mappings, which by their nature are ephemeral.
Use this functionality to update the madvise MADV_DODUMP check to test for
persistence rather than open-coding this.
This replaces the VM_SPECIAL check which means it no longer checks for
VMA_IO_BIT, however this is safe as we have established the invariant that
only kernel-owned mappings may set VMA_IO_BIT, so we implicitly include
these.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 44 ++++++++++++++++++++++++++++++++++++++++++++
mm/madvise.c | 4 ++--
2 files changed, 46 insertions(+), 2 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 154fc25c9efa..0579e6afb19f 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1741,6 +1741,50 @@ static inline bool vma_can_merge(const struct vm_area_struct *vma)
return vma_flags_can_merge(&vma->flags);
}
+/**
+ * vma_flags_is_persistent() - Do the specified VMA flags imply that the VMA
+ * contains persistent data?
+ * @flags: The VMA flags to test.
+ *
+ * Persistent in the sense that - if you write bytes to the mapping - do they
+ * stay written?
+ *
+ * If the kernel or a device could write to the memory independently of
+ * userland, or the kernel could arbitrarily discard it, then it is not
+ * persistent.
+ *
+ * Returns: true if the flags imply this VMA is persistent, otherwise false.
+ */
+static inline bool vma_flags_is_persistent(const vma_flags_t *flags)
+{
+ /* hugetlb is a fixed mapping, but its contents are the user's own. */
+ if (vma_flags_is_hugetlb(flags))
+ return true;
+ /*
+ * MMIO mappings may not store what is written and may be changed by the
+ * device. Kernel-owned and fixed mappings may be changed by their owner
+ * without the user having initiated it.
+ */
+ if (vma_flags_is_kernel_owned(flags) ||
+ vma_flags_is_fixed_mapping(flags))
+ return false;
+ /* Droppable memory is discardable by definition. */
+ return !vma_flags_test_single_mask(flags, VMA_DROPPABLE);
+}
+
+/**
+ * vma_is_persistent() - Does the VMA contain persistent data?
+ * @vma: The VMA to test.
+ *
+ * See vma_flags_is_persistent() for details.
+ *
+ * Returns: true if the VMA is persistent, otherwise false.
+ */
+static inline bool vma_is_persistent(const struct vm_area_struct *vma)
+{
+ return vma_flags_is_persistent(&vma->flags);
+}
+
/**
* vma_kernel_pagesize - Default page size granularity for this VMA.
* @vma: The user mapping.
diff --git a/mm/madvise.c b/mm/madvise.c
index 0922d5f07a12..e15973292f94 100644
--- a/mm/madvise.c
+++ b/mm/madvise.c
@@ -1584,8 +1584,8 @@ static int madvise_vma_behavior(struct madvise_behavior *madv_behavior)
new_flags |= VM_DONTDUMP;
break;
case MADV_DODUMP:
- if ((!vma_is_hugetlb(vma) && (new_flags & VM_SPECIAL)) ||
- (new_flags & VM_DROPPABLE))
+ /* Non-persistent memory cannot be dumped. */
+ if (!vma_is_persistent(vma))
return -EINVAL;
new_flags &= ~VM_DONTDUMP;
break;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 31/40] mm/vma: introduce vma[_flags]_is_persistent()
2026-09-14 14:57 ` [PATCH v2 31/40] mm/vma: introduce vma[_flags]_is_persistent() Lorenzo Stoakes (ARM)
@ 2026-09-14 22:12 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:12 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-rdma, Heiko Carstens, linux-trace-kernel, Oliver Upton,
linux-perf-users, kvmarm, selinux, Alexander Gordeev, kvm,
linux-scsi, linux-s390, Vasily Gorbik, dri-devel,
Christian Borntraeger, bpf, Marc Zyngier
> Introduce vma[_flags]_is_persistent() for the purposes of identifying
> mappings that are persistent in the sense that bytes to the mapping stay
> there, and bytes read from the mapping are the same unless changed by
> actions taken by userland.
>
> Kernel-owned mappings do not fall into this category, as their owner may
> change the contents without the user having initiated it, and nor of course
> does memory-mapped I/O.
>
> We exclude fixed mappings as these are singled out as being unmergeable and
> so cannot be guaranteed to persist user data.
>
> hugetlb mappings are fixed mappings, but their contents are entirely the
> user's, so they are explicitly carved out as persistent, as the MADV_DODUMP
> check already does.
>
> It excludes droppable mappings, which by their nature are ephemeral.
>
> Use this functionality to update the madvise MADV_DODUMP check to test for
> persistence rather than open-coding this.
>
> This replaces the VM_SPECIAL check which means it no longer checks for
> VMA_IO_BIT, however this is safe as we have established the invariant that
> only kernel-owned mappings may set VMA_IO_BIT, so we implicitly include
> these.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=31
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 32/40] mm/uffd: use predicates for userfaultfd checks
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (30 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 31/40] mm/vma: introduce vma[_flags]_is_persistent() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:16 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 33/40] mm/madvise: use predicates for madvise(..., MADV_DOFORK) Lorenzo Stoakes (ARM)
` (8 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Rather than directly checking VMA flags, use the newly introduced
vma_is_kernel_owned() and vma_is_persistent() helpers in userfaultfd when
assessing VMA suitability for userfaultfd and UFFDIO_MOVE.
Update vma_move_compatible() so it's expressed in terms of VMA
characteristics rather than arbitrary flags.
Additionally, update the use of the deprecated VMA flag API when checking
VMA_SHADOW_STACK_BIT.
A VMA_IO_BIT check is no longer required but that is fine as a hard
invariant has been established that only kernel-owned mappings may set
VMA_IO_BIT so the check is now redundant.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/userfaultfd.c | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/mm/userfaultfd.c b/mm/userfaultfd.c
index 949017e60608..ddf0a4a3d399 100644
--- a/mm/userfaultfd.c
+++ b/mm/userfaultfd.c
@@ -1754,10 +1754,18 @@ static inline bool move_splits_huge_pmd(unsigned long dst_addr,
}
#endif
-static inline bool vma_move_compatible(struct vm_area_struct *vma)
+static inline bool vma_move_compatible(const struct vm_area_struct *vma)
{
- return !(vma->vm_flags & (VM_PFNMAP | VM_IO | VM_HUGETLB |
- VM_MIXEDMAP | VM_SHADOW_STACK));
+ /* uffd is generally incompatible with kernel-owned mappings. */
+ if (vma_is_kernel_owned(vma))
+ return false;
+ /* The shadow stack should not be written to by userspace. */
+ if (vma_test_single_mask(vma, VMA_SHADOW_STACK))
+ return false;
+ /* hugetlb mappings cannot be safely moved. */
+ if (vma_is_hugetlb(vma))
+ return false;
+ return true;
}
static int validate_move_areas(struct userfaultfd_ctx *ctx,
@@ -2146,10 +2154,11 @@ static bool vma_can_userfault(struct vm_area_struct *vma, vm_flags_t vm_flags,
{
const struct vm_uffd_ops *ops = vma_uffd_ops(vma);
- if (vma->vm_flags & (VM_DROPPABLE | VM_SHADOW_STACK))
+ /* Non-persistent memory is inherently not controllable by userspace. */
+ if (!vma_is_persistent(vma))
return false;
-
- if (!vma_is_hugetlb(vma) && (vma->vm_flags & VM_SPECIAL))
+ /* The shadow stack should not be written to by userspace. */
+ if (vma_test_single_mask(vma, VMA_SHADOW_STACK))
return false;
vm_flags &= __VM_UFFD_FLAGS;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 32/40] mm/uffd: use predicates for userfaultfd checks
2026-09-14 14:57 ` [PATCH v2 32/40] mm/uffd: use predicates for userfaultfd checks Lorenzo Stoakes (ARM)
@ 2026-09-14 22:16 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:16 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-scsi, linux-trace-kernel, Oliver Upton, Heiko Carstens,
Marc Zyngier, selinux, bpf, Christian Borntraeger,
Alexander Gordeev, linux-rdma, Vasily Gorbik, kvmarm, linux-s390,
kvm, dri-devel, linux-perf-users
> Rather than directly checking VMA flags, use the newly introduced
> vma_is_kernel_owned() and vma_is_persistent() helpers in userfaultfd when
> assessing VMA suitability for userfaultfd and UFFDIO_MOVE.
>
> Update vma_move_compatible() so it's expressed in terms of VMA
> characteristics rather than arbitrary flags.
>
> Additionally, update the use of the deprecated VMA flag API when checking
> VMA_SHADOW_STACK_BIT.
>
> A VMA_IO_BIT check is no longer required but that is fine as a hard
> invariant has been established that only kernel-owned mappings may set
> VMA_IO_BIT so the check is now redundant.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=32
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 33/40] mm/madvise: use predicates for madvise(..., MADV_DOFORK)
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (31 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 32/40] mm/uffd: use predicates for userfaultfd checks Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:18 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 34/40] mm: eliminate VMA_SPECIAL_FLAGS usage when hugetlb explicitly tested Lorenzo Stoakes (ARM)
` (7 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Make it clear what we're blocking in MADV_DOFORK. Previously we simply
disallowed VM_SPECIAL i.e. kernel-owned mappings, fixed mappings and
VMA_IO_BIT.
Now the invariant is established that only kernel-owned mappings can set
VMA_IO_BIT, the VMA_IO_BIT check is redundant.
The rest is equivalent to testing for a kernel-owned or fixed mapping,
i.e. exactly the same check as whether the VMA is permitted to be merged.
This was established by commit 0b2758f48f22 ("Require (reasonably) normal
mappings for MADV_DOFORK") containing my hands-down favourite call out of
all time.
Express the same thing differently - if we wouldn't be allowed to merge it,
then we aren't allowed to manipulate CoW behaviour on fork.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/madvise.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/madvise.c b/mm/madvise.c
index e15973292f94..1af82b044d23 100644
--- a/mm/madvise.c
+++ b/mm/madvise.c
@@ -1565,7 +1565,7 @@ static int madvise_vma_behavior(struct madvise_behavior *madv_behavior)
new_flags |= VM_DONTCOPY;
break;
case MADV_DOFORK:
- if (new_flags & VM_SPECIAL)
+ if (!vma_can_merge(vma))
return -EINVAL;
new_flags &= ~VM_DONTCOPY;
break;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 33/40] mm/madvise: use predicates for madvise(..., MADV_DOFORK)
2026-09-14 14:57 ` [PATCH v2 33/40] mm/madvise: use predicates for madvise(..., MADV_DOFORK) Lorenzo Stoakes (ARM)
@ 2026-09-14 22:18 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:18 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-trace-kernel, Christian Borntraeger, selinux, linux-s390,
Marc Zyngier, kvmarm, Oliver Upton, dri-devel, linux-rdma,
Vasily Gorbik, Alexander Gordeev, bpf, linux-scsi, kvm,
Heiko Carstens, linux-perf-users
> Make it clear what we're blocking in MADV_DOFORK. Previously we simply
> disallowed VM_SPECIAL i.e. kernel-owned mappings, fixed mappings and
> VMA_IO_BIT.
>
> Now the invariant is established that only kernel-owned mappings can set
> VMA_IO_BIT, the VMA_IO_BIT check is redundant.
>
> The rest is equivalent to testing for a kernel-owned or fixed mapping,
> i.e. exactly the same check as whether the VMA is permitted to be merged.
>
> This was established by commit 0b2758f48f22 ("Require (reasonably) normal
> mappings for MADV_DOFORK") containing my hands-down favourite call out of
> all time.
>
> Express the same thing differently - if we wouldn't be allowed to merge it,
> then we aren't allowed to manipulate CoW behaviour on fork.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=33
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 34/40] mm: eliminate VMA_SPECIAL_FLAGS usage when hugetlb explicitly tested
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (32 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 33/40] mm/madvise: use predicates for madvise(..., MADV_DOFORK) Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:21 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 35/40] mm: eliminate VMA_SPECIAL_FLAGS check in lru_gen_look_around() Lorenzo Stoakes (ARM)
` (6 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
It is now an invariant that VMA_IO_BIT is not set except by kernel-owned
mappings, so each existing VMA_SPECIAL_FLAGS test need only test for
VMA_DONTEXPAND_BIT, VMA_PFNMAP_BIT and VMA_MIXEDMAP_BIT.
This is precisely a test for a kernel-owned or fixed mapping.
Update a number of callsites which already explicitly handle hugetlb
mappings.
vma_supports_mlock() and ksm_compatible() also explicitly bail on droppable
mappings - detecting kernel-owned, fixed or droppable mappings is handled
by vma_is_persistent(), so in these cases use this predicate.
should_skip_vma() tests for locked, kernel-owned or fixed memory (having
already excluded hugetlb mappings) so simply test for those there.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/internal.h | 4 +---
mm/ksm.c | 4 +---
mm/vmscan.c | 3 ++-
3 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/mm/internal.h b/mm/internal.h
index 1b6153013061..83a4ba52aaeb 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -1111,9 +1111,7 @@ static inline struct file *maybe_unlock_mmap_for_io(struct vm_fault *vmf,
static inline bool vma_supports_mlock(const struct vm_area_struct *vma)
{
- if (vma_test_any_mask(vma, VMA_SPECIAL_FLAGS))
- return false;
- if (vma_test_single_mask(vma, VMA_DROPPABLE))
+ if (!vma_is_persistent(vma))
return false;
if (vma_is_dax(vma) || vma_is_hugetlb(vma))
return false;
diff --git a/mm/ksm.c b/mm/ksm.c
index 624f37975e12..f80372bfd4b2 100644
--- a/mm/ksm.c
+++ b/mm/ksm.c
@@ -747,9 +747,7 @@ static bool ksm_compatible(const struct file *file, vma_flags_t vma_flags)
if (vma_flags_test_any(&vma_flags, VMA_SHARED_BIT, VMA_MAYSHARE_BIT,
VMA_HUGETLB_BIT))
return false;
- if (vma_flags_test_single_mask(&vma_flags, VMA_DROPPABLE))
- return false;
- if (vma_flags_test_any_mask(&vma_flags, VMA_SPECIAL_FLAGS))
+ if (!vma_flags_is_persistent(&vma_flags))
return false;
if (file_is_dax(file))
return false;
diff --git a/mm/vmscan.c b/mm/vmscan.c
index 12ed3388ee41..09ff20c3df5b 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -3477,7 +3477,8 @@ static int should_skip_vma(unsigned long start, unsigned long end, struct mm_wal
if (!vma_has_recency(vma))
return true;
- if (vma->vm_flags & (VM_LOCKED | VM_SPECIAL))
+ if (vma_test(vma, VMA_LOCKED_BIT) || vma_is_kernel_owned(vma) ||
+ vma_is_fixed_mapping(vma))
return true;
if (vma == get_gate_vma(vma->vm_mm))
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 34/40] mm: eliminate VMA_SPECIAL_FLAGS usage when hugetlb explicitly tested
2026-09-14 14:57 ` [PATCH v2 34/40] mm: eliminate VMA_SPECIAL_FLAGS usage when hugetlb explicitly tested Lorenzo Stoakes (ARM)
@ 2026-09-14 22:21 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:21 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: kvmarm, bpf, Oliver Upton, selinux, linux-s390,
Christian Borntraeger, linux-rdma, linux-trace-kernel,
Heiko Carstens, Alexander Gordeev, Marc Zyngier, linux-scsi,
linux-perf-users, kvm, Vasily Gorbik, dri-devel
> It is now an invariant that VMA_IO_BIT is not set except by kernel-owned
> mappings, so each existing VMA_SPECIAL_FLAGS test need only test for
> VMA_DONTEXPAND_BIT, VMA_PFNMAP_BIT and VMA_MIXEDMAP_BIT.
>
> This is precisely a test for a kernel-owned or fixed mapping.
>
> Update a number of callsites which already explicitly handle hugetlb
> mappings.
>
> vma_supports_mlock() and ksm_compatible() also explicitly bail on droppable
> mappings - detecting kernel-owned, fixed or droppable mappings is handled
> by vma_is_persistent(), so in these cases use this predicate.
>
> should_skip_vma() tests for locked, kernel-owned or fixed memory (having
> already excluded hugetlb mappings) so simply test for those there.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=34
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 35/40] mm: eliminate VMA_SPECIAL_FLAGS check in lru_gen_look_around()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (33 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 34/40] mm: eliminate VMA_SPECIAL_FLAGS usage when hugetlb explicitly tested Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:22 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 36/40] mm: avoid use of VMA_SPECIAL_FLAGS in migrate_vma_setup() Lorenzo Stoakes (ARM)
` (5 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
A kernel-owned or fixed mapping is one which sets VMA_PFNMAP_BIT,
VMA_MIXEDMAP_BIT or VMA_DONTEXPAND_BIT, which is precisely what
VMA_SPECIAL_FLAGS tests for other than VMA_IO_BIT, which is safe to drop as
only kernel-owned mappings may set it.
Using these predicates rather than VMA_SPECIAL_FLAGS makes the check
self-documenting and helps eliminate the confusion around 'special' flags.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/vmscan.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mm/vmscan.c b/mm/vmscan.c
index 09ff20c3df5b..001f8b760266 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -4418,8 +4418,8 @@ bool lru_gen_look_around(struct page_vma_mapped_walk *pvmw, unsigned int nr)
if (spin_is_contended(pvmw->ptl))
return true;
- /* exclude special VMAs containing anon pages from COW */
- if (vma->vm_flags & VM_SPECIAL)
+ /* exclude kernel-owned and fixed VMAs containing anon pages from COW */
+ if (vma_is_kernel_owned(vma) || vma_is_fixed_mapping(vma))
return true;
/* avoid taking the LRU lock under the PTL when possible */
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 35/40] mm: eliminate VMA_SPECIAL_FLAGS check in lru_gen_look_around()
2026-09-14 14:57 ` [PATCH v2 35/40] mm: eliminate VMA_SPECIAL_FLAGS check in lru_gen_look_around() Lorenzo Stoakes (ARM)
@ 2026-09-14 22:22 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:22 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: kvmarm, linux-perf-users, linux-scsi, linux-rdma,
Alexander Gordeev, linux-s390, Oliver Upton, selinux,
Heiko Carstens, kvm, Marc Zyngier, linux-trace-kernel, bpf,
Vasily Gorbik, dri-devel, Christian Borntraeger
> A kernel-owned or fixed mapping is one which sets VMA_PFNMAP_BIT,
> VMA_MIXEDMAP_BIT or VMA_DONTEXPAND_BIT, which is precisely what
> VMA_SPECIAL_FLAGS tests for other than VMA_IO_BIT, which is safe to drop as
> only kernel-owned mappings may set it.
>
> Using these predicates rather than VMA_SPECIAL_FLAGS makes the check
> self-documenting and helps eliminate the confusion around 'special' flags.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=35
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 36/40] mm: avoid use of VMA_SPECIAL_FLAGS in migrate_vma_setup()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (34 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 35/40] mm: eliminate VMA_SPECIAL_FLAGS check in lru_gen_look_around() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:23 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 37/40] mm: eliminate VM_SPECIAL, VMA_SPECIAL_FLAGS Lorenzo Stoakes (ARM)
` (4 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Now we have the expressive vma_is_kernel_owned() and vma_is_fixed_mapping()
predicates, use them to determine whether to proceed with migration. This
drops the VMA_IO_BIT test, which is safe as only kernel-owned mappings may
set it.
hugetlb mappings remain excluded, as they are fixed mappings.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/migrate_device.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/mm/migrate_device.c b/mm/migrate_device.c
index b9c453c28795..b74c0ae42768 100644
--- a/mm/migrate_device.c
+++ b/mm/migrate_device.c
@@ -739,19 +739,21 @@ static void migrate_vma_unmap(struct migrate_vma *migrate)
*/
int migrate_vma_setup(struct migrate_vma *args)
{
+ const struct vm_area_struct *vma = args->vma;
long nr_pages = (args->end - args->start) >> PAGE_SHIFT;
args->start &= PAGE_MASK;
args->end &= PAGE_MASK;
- if (!args->vma || vma_test_any_mask(args->vma, VMA_SPECIAL_FLAGS) ||
- vma_is_dax(args->vma))
+ if (!vma)
+ return -EINVAL;
+ if (vma_is_kernel_owned(vma) || vma_is_fixed_mapping(vma) ||
+ vma_is_dax(vma))
return -EINVAL;
if (nr_pages <= 0)
return -EINVAL;
- if (args->start < args->vma->vm_start ||
- args->start >= args->vma->vm_end)
+ if (args->start < vma->vm_start || args->start >= vma->vm_end)
return -EINVAL;
- if (args->end <= args->vma->vm_start || args->end > args->vma->vm_end)
+ if (args->end <= vma->vm_start || args->end > vma->vm_end)
return -EINVAL;
if (!args->src || !args->dst)
return -EINVAL;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 36/40] mm: avoid use of VMA_SPECIAL_FLAGS in migrate_vma_setup()
2026-09-14 14:57 ` [PATCH v2 36/40] mm: avoid use of VMA_SPECIAL_FLAGS in migrate_vma_setup() Lorenzo Stoakes (ARM)
@ 2026-09-14 22:23 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:23 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: linux-trace-kernel, Marc Zyngier, linux-scsi, Alexander Gordeev,
Christian Borntraeger, bpf, kvm, selinux, Heiko Carstens,
Vasily Gorbik, linux-s390, Oliver Upton, linux-perf-users,
linux-rdma, dri-devel, kvmarm
> Now we have the expressive vma_is_kernel_owned() and vma_is_fixed_mapping()
> predicates, use them to determine whether to proceed with migration. This
> drops the VMA_IO_BIT test, which is safe as only kernel-owned mappings may
> set it.
>
> hugetlb mappings remain excluded, as they are fixed mappings.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=36
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 37/40] mm: eliminate VM_SPECIAL, VMA_SPECIAL_FLAGS
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (35 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 36/40] mm: avoid use of VMA_SPECIAL_FLAGS in migrate_vma_setup() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:19 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 38/40] fuse: dax: do not set VM_MIXEDMAP Lorenzo Stoakes (ARM)
` (3 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Every user of the VM_SPECIAL or VMA_SPECIAL_FLAGS has now been converted to
predicates which explicitly express what is actually being checked for
rather than the nebulous concept of possessing 'special' VMA flags.
In any case 'special' is not so special a term of art in mm - it includes
VDSO/VVAR mappings, special in the sense of vm_normal_folio() and probably
other cases too.
Therefore make things less special by eliminating these now unused flags.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
include/linux/mm.h | 8 --------
tools/testing/vma/include/dup.h | 8 --------
2 files changed, 16 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 0579e6afb19f..5860a3b4dba9 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -576,14 +576,6 @@ enum {
#define VM_ACCESS_FLAGS (VM_READ | VM_WRITE | VM_EXEC)
#define VMA_ACCESS_FLAGS mk_vma_flags(VMA_READ_BIT, VMA_WRITE_BIT, VMA_EXEC_BIT)
-/*
- * Special vmas that are non-mergable, non-mlock()able.
- */
-
-#define VMA_SPECIAL_FLAGS mk_vma_flags(VMA_IO_BIT, VMA_DONTEXPAND_BIT, \
- VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT)
-#define VM_SPECIAL vma_flags_to_legacy(VMA_SPECIAL_FLAGS)
-
/*
* Physically remapped pages are special. Tell the
* rest of the world about it:
diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
index de429ed4d60c..dc24f43a9394 100644
--- a/tools/testing/vma/include/dup.h
+++ b/tools/testing/vma/include/dup.h
@@ -352,14 +352,6 @@ enum {
#define VM_ACCESS_FLAGS (VM_READ | VM_WRITE | VM_EXEC)
#define VMA_ACCESS_FLAGS mk_vma_flags(VMA_READ_BIT, VMA_WRITE_BIT, VMA_EXEC_BIT)
-/*
- * Special vmas that are non-mergable, non-mlock()able.
- */
-#define VM_SPECIAL (VM_IO | VM_DONTEXPAND | VM_PFNMAP | VM_MIXEDMAP)
-
-#define VMA_SPECIAL_FLAGS mk_vma_flags(VMA_IO_BIT, VMA_DONTEXPAND_BIT, \
- VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT)
-
#define VMA_REMAP_FLAGS mk_vma_flags(VMA_IO_BIT, VMA_PFNMAP_BIT, \
VMA_DONTEXPAND_BIT, VMA_DONTDUMP_BIT)
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 37/40] mm: eliminate VM_SPECIAL, VMA_SPECIAL_FLAGS
2026-09-14 14:57 ` [PATCH v2 37/40] mm: eliminate VM_SPECIAL, VMA_SPECIAL_FLAGS Lorenzo Stoakes (ARM)
@ 2026-09-14 22:19 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:19 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Alexander Gordeev, kvm, bpf, Oliver Upton, Vasily Gorbik,
linux-trace-kernel, Heiko Carstens, dri-devel, linux-s390, kvmarm,
Marc Zyngier, linux-rdma, Christian Borntraeger, linux-perf-users,
selinux, linux-scsi
> Every user of the VM_SPECIAL or VMA_SPECIAL_FLAGS has now been converted to
> predicates which explicitly express what is actually being checked for
> rather than the nebulous concept of possessing 'special' VMA flags.
>
> In any case 'special' is not so special a term of art in mm - it includes
> VDSO/VVAR mappings, special in the sense of vm_normal_folio() and probably
> other cases too.
>
> Therefore make things less special by eliminating these now unused flags.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=37
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 38/40] fuse: dax: do not set VM_MIXEDMAP
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (36 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 37/40] mm: eliminate VM_SPECIAL, VMA_SPECIAL_FLAGS Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:30 ` sashiko-bot
2026-09-14 14:57 ` [PATCH v2 39/40] mm/huge_memory: remove vma_is_special_huge() Lorenzo Stoakes (ARM)
` (2 subsequent siblings)
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
Commit e1fb4a086495 ("dax: remove VM_MIXEDMAP for fsdax and device dax")
prevented fsdax and device-dax from setting VM_MIXEDMAP, as DAX no longer
relies on it to direct core mm paths.
The fuse DAX implementation, added later, copied the old pattern and still
sets it.
Fuse DAX maps pages the same way fsdax does, via dax_iomap_fault() and
ultimately vmf_insert_page_mkwrite() and vmf_insert_folio_pmd(), which
insert ordinary refcounted pages and so do not require VM_MIXEDMAP.
Setting it only serves to mark the mapping as kernel-owned, making fuse DAX
the sole DAX implementation whose mappings are unmergeable, cannot be
mlock()'d, eagerly copy page tables on fork and reject MADV_DOFORK and
MADV_DODUMP.
It also requires vma_is_special_huge() in mm/huge_memory.c to carve DAX out
of its kernel-owned check explicitly.
There is no reason for fuse DAX to keep on using this flag so drop it.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
fs/fuse/dax.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/fuse/dax.c b/fs/fuse/dax.c
index 85cdf0199bc0..a5994f1c637d 100644
--- a/fs/fuse/dax.c
+++ b/fs/fuse/dax.c
@@ -826,7 +826,7 @@ int fuse_dax_mmap(struct file *file, struct vm_area_struct *vma)
{
file_accessed(file);
vma->vm_ops = &fuse_dax_vm_ops;
- vm_flags_set(vma, VM_MIXEDMAP | VM_HUGEPAGE);
+ vma_set_flags(vma, VMA_HUGEPAGE_BIT);
return 0;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 38/40] fuse: dax: do not set VM_MIXEDMAP
2026-09-14 14:57 ` [PATCH v2 38/40] fuse: dax: do not set VM_MIXEDMAP Lorenzo Stoakes (ARM)
@ 2026-09-14 22:30 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:30 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: bpf, selinux, Marc Zyngier, Alexander Gordeev, linux-perf-users,
Christian Borntraeger, kvmarm, dri-devel, Oliver Upton,
linux-s390, linux-rdma, Vasily Gorbik, linux-scsi, Heiko Carstens,
linux-trace-kernel, kvm
> Commit e1fb4a086495 ("dax: remove VM_MIXEDMAP for fsdax and device dax")
> prevented fsdax and device-dax from setting VM_MIXEDMAP, as DAX no longer
> relies on it to direct core mm paths.
>
> The fuse DAX implementation, added later, copied the old pattern and still
> sets it.
>
> Fuse DAX maps pages the same way fsdax does, via dax_iomap_fault() and
> ultimately vmf_insert_page_mkwrite() and vmf_insert_folio_pmd(), which
> insert ordinary refcounted pages and so do not require VM_MIXEDMAP.
>
> Setting it only serves to mark the mapping as kernel-owned, making fuse DAX
> the sole DAX implementation whose mappings are unmergeable, cannot be
> mlock()'d, eagerly copy page tables on fork and reject MADV_DOFORK and
> MADV_DODUMP.
>
> It also requires vma_is_special_huge() in mm/huge_memory.c to carve DAX out
> of its kernel-owned check explicitly.
>
> There is no reason for fuse DAX to keep on using this flag so drop it.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=38
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 39/40] mm/huge_memory: remove vma_is_special_huge()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (37 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 38/40] fuse: dax: do not set VM_MIXEDMAP Lorenzo Stoakes (ARM)
@ 2026-09-14 14:57 ` Lorenzo Stoakes (ARM)
2026-09-14 22:26 ` sashiko-bot
2026-09-14 14:58 ` [PATCH v2 40/40] mm/vma: introduce and use vma[_flags]_can_gup() Lorenzo Stoakes (ARM)
2026-09-15 1:08 ` [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Andrew Morton
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:57 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
vma_is_special_huge() tests whether either the VMA_PFNMAP_BIT or
VMA_MIXEDMAP_BIT is set (i.e. whether the VMA is a kernel-owned mapping),
but with a DAX carve-out.
DAX however no longer sets VMA_MIXEDMAP_BIT, so this carve-out is no longer
required.
Therefore test for vma_is_kernel_owned() instead and also drop the
VMA_IO_BIT check, as it is now redundant since it is enforced that only
kernel-owned mappings can set this flag.
This also eliminates another overloaded use of 'special' within mm.
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
mm/huge_memory.c | 18 ++++--------------
1 file changed, 4 insertions(+), 14 deletions(-)
diff --git a/mm/huge_memory.c b/mm/huge_memory.c
index c3c98ea672c3..3cb8e2d4d65c 100644
--- a/mm/huge_memory.c
+++ b/mm/huge_memory.c
@@ -110,14 +110,6 @@ static inline bool file_thp_enabled(const struct vm_area_struct *vma)
return S_ISREG(inode->i_mode);
}
-/* If returns true, we are unable to access the VMA's folios. */
-static bool vma_is_special_huge(const struct vm_area_struct *vma)
-{
- if (vma_is_dax(vma))
- return false;
- return vma_test_any(vma, VMA_PFNMAP_BIT, VMA_MIXEDMAP_BIT);
-}
-
static bool vma_file_bypass_thp_tuneables(const struct vm_area_struct *vma,
enum tva_type type)
{
@@ -192,7 +184,7 @@ unsigned long __thp_vma_allowable_orders(struct vm_area_struct *vma,
/* Check the intersection of requested and supported orders. */
if (vma_is_anonymous(vma))
supported_orders = THP_ORDERS_ALL_ANON;
- else if (vma_is_dax(vma) || vma_is_special_huge(vma))
+ else if (vma_is_dax(vma) || vma_is_kernel_owned(vma))
supported_orders = THP_ORDERS_ALL_SPECIAL_DAX;
else
supported_orders = THP_ORDERS_ALL_FILE_DEFAULT;
@@ -3066,7 +3058,7 @@ int zap_huge_pud(struct mmu_gather *tlb, struct vm_area_struct *vma,
orig_pud = pudp_huge_get_and_clear_full(vma, addr, pud, tlb->fullmm);
arch_check_zapped_pud(vma, orig_pud);
tlb_remove_pud_tlb_entry(tlb, pud, addr);
- if (vma_is_special_huge(vma)) {
+ if (vma_is_kernel_owned(vma)) {
spin_unlock(ptl);
/* No zero page support yet */
} else {
@@ -3222,7 +3214,7 @@ static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
*/
if (arch_needs_pgtable_deposit())
zap_deposited_table(mm, pmd);
- if (vma_is_special_huge(vma))
+ if (vma_is_kernel_owned(vma))
return;
if (unlikely(pmd_is_migration_entry(old_pmd))) {
const softleaf_t old_entry = softleaf_from_pmd(old_pmd);
@@ -4765,9 +4757,7 @@ static inline bool vma_not_suitable_for_thp_split(struct vm_area_struct *vma)
{
if (vma_is_dax(vma))
return true;
- if (vma_is_special_huge(vma))
- return true;
- if (vma_test(vma, VMA_IO_BIT))
+ if (vma_is_kernel_owned(vma))
return true;
if (vma_is_hugetlb(vma))
return true;
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 39/40] mm/huge_memory: remove vma_is_special_huge()
2026-09-14 14:57 ` [PATCH v2 39/40] mm/huge_memory: remove vma_is_special_huge() Lorenzo Stoakes (ARM)
@ 2026-09-14 22:26 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:26 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Marc Zyngier, Alexander Gordeev, dri-devel, Oliver Upton,
linux-rdma, bpf, linux-scsi, kvmarm, linux-s390, Heiko Carstens,
Christian Borntraeger, selinux, kvm, Vasily Gorbik,
linux-perf-users, linux-trace-kernel
> vma_is_special_huge() tests whether either the VMA_PFNMAP_BIT or
> VMA_MIXEDMAP_BIT is set (i.e. whether the VMA is a kernel-owned mapping),
> but with a DAX carve-out.
>
> DAX however no longer sets VMA_MIXEDMAP_BIT, so this carve-out is no longer
> required.
>
> Therefore test for vma_is_kernel_owned() instead and also drop the
> VMA_IO_BIT check, as it is now redundant since it is enforced that only
> kernel-owned mappings can set this flag.
>
> This also eliminates another overloaded use of 'special' within mm.
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=39
^ permalink raw reply [flat|nested] 82+ messages in thread
* [PATCH v2 40/40] mm/vma: introduce and use vma[_flags]_can_gup()
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (38 preceding siblings ...)
2026-09-14 14:57 ` [PATCH v2 39/40] mm/huge_memory: remove vma_is_special_huge() Lorenzo Stoakes (ARM)
@ 2026-09-14 14:58 ` Lorenzo Stoakes (ARM)
2026-09-14 22:25 ` sashiko-bot
2026-09-15 1:08 ` [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Andrew Morton
40 siblings, 1 reply; 82+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-14 14:58 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, David Hildenbrand, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Greg Kroah-Hartman, Dennis Dalessandro, Jason Gunthorpe,
Leon Romanovsky, Paul Moore, Stephen Smalley, Jaroslav Kysela,
Takashi Iwai, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Zi Yan, Baolin Wang, Nico Pache, Ryan Roberts, Dev Jain,
Barry Song, Lance Yang, Usama Arif, Kiryl Shutsemau, Doug Gilbert,
James E.J. Bottomley, Martin K. Petersen, Jaya Kumar,
Simona Vetter, Helge Deller, Sebastian Reichel, John Hubbard,
Peter Xu, Masami Hiramatsu, Oleg Nesterov, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Rik van Riel, Harry Yoo, Juri Lelli, Vincent Guittot,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Will Deacon, Aneesh Kumar K.V, Nick Piggin, Arnd Bergmann,
Muchun Song, Oscar Salvador, Matthew Wilcox (Oracle), Jan Kara,
Marc Zyngier, Oliver Upton, Catalin Marinas, Madhavan Srinivasan,
Anup Patel, Paul Walmsley, Palmer Dabbelt, Albert Ou,
Christian Borntraeger, Janosch Frank, Claudio Imbrenda,
Alexander Gordeev, Gerald Schaefer, Heiko Carstens, Vasily Gorbik,
David S. Miller, Andreas Larsson, Alexander Viro,
Christian Brauner, Matthew Brost, Joshua Hahn, Rakie Kim,
Byungchul Park, Gregory Price, Ying Huang, Alistair Popple,
Chris Li, Kairui Song, Kemeng Shi, Nhat Pham, Baoquan He,
Youngjun Park, Johannes Weiner, Qi Zheng, Shakeel Butt,
Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou, Michal Hocko,
Miklos Szeredi, Xu Xin
Cc: linux-mm, linux-kernel, linux-doc, linux-usb, linux-rdma, selinux,
linux-sound, bpf, linux-scsi, linux-fbdev, dri-devel,
linux-trace-kernel, linux-perf-users, linux-arch, linux-fsdevel,
linux-arm-kernel, kvmarm, linuxppc-dev, kvm, kvm-riscv,
linux-riscv, linux-s390, sparclinux, fuse-devel,
Lorenzo Stoakes (ARM)
GUP cannot be used for VMAs which set VMA_IO_BIT - because memory-mapped
I/O must not be accessed on the user's behalf - or VMA_PFNMAP_BIT - because
PFN maps have no folios which the kernel is permitted to access.
Rather than keeping these checks open-coded, abstract them to
vma_flags_can_gup() and its VMA wrapper vma_can_gup().
A number of other places make the same check to decide whether a mapping
can be populated or accessed as GUP would, so update those too.
While here, drop a reference to 'special' and replace a use of the
deprecated VMA flags API in vma_dump_size().
No functional change intended.
Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
---
fs/coredump.c | 4 ++--
include/linux/mm.h | 29 +++++++++++++++++++++++++++++
mm/gup.c | 7 +++----
mm/hmm.c | 3 +--
mm/memory.c | 14 ++++++++------
mm/mempolicy.c | 3 ++-
6 files changed, 45 insertions(+), 15 deletions(-)
diff --git a/fs/coredump.c b/fs/coredump.c
index fb21fb6703dd..9f729c594c47 100644
--- a/fs/coredump.c
+++ b/fs/coredump.c
@@ -1616,8 +1616,8 @@ static unsigned long vma_dump_size(struct vm_area_struct *vma,
return 0;
}
- /* Do not dump I/O mapped devices or special mappings */
- if (vma->vm_flags & VM_IO)
+ /* Do not dump memory-mapped I/O, which may have side effects on read. */
+ if (vma_test(vma, VMA_IO_BIT))
return 0;
/* By default, dump shared memory if mapped from an anonymous file. */
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 5860a3b4dba9..1249e04d7b98 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1777,6 +1777,35 @@ static inline bool vma_is_persistent(const struct vm_area_struct *vma)
return vma_flags_is_persistent(&vma->flags);
}
+/**
+ * vma_flags_can_gup() - Do the specified VMA flags permit GUP to access the
+ * mapping's pages?
+ * @flags: The VMA flags to test.
+ *
+ * GUP cannot obtain pages from a PFN map (VMA_PFNMAP_BIT), which may have no
+ * struct pages behind it, and must not provide access to memory-mapped I/O
+ * (VMA_IO_BIT).
+ *
+ * Returns: true if GUP may access pages from the mapping, otherwise false.
+ */
+static inline bool vma_flags_can_gup(const vma_flags_t *flags)
+{
+ return !vma_flags_test_any(flags, VMA_IO_BIT, VMA_PFNMAP_BIT);
+}
+
+/**
+ * vma_can_gup() - May GUP obtain pages from @vma?
+ * @vma: The VMA to test.
+ *
+ * See vma_flags_can_gup() for details.
+ *
+ * Returns: true if GUP may access pages from the mapping, otherwise false.
+ */
+static inline bool vma_can_gup(const struct vm_area_struct *vma)
+{
+ return vma_flags_can_gup(&vma->flags);
+}
+
/**
* vma_kernel_pagesize - Default page size granularity for this VMA.
* @vma: The user mapping.
diff --git a/mm/gup.c b/mm/gup.c
index f166acf794e3..8e9ef5ee7498 100644
--- a/mm/gup.c
+++ b/mm/gup.c
@@ -1204,7 +1204,7 @@ static int check_vma_flags(struct vm_area_struct *vma, unsigned long gup_flags)
int foreign = (gup_flags & FOLL_REMOTE);
bool vma_anon = vma_is_anonymous(vma);
- if (vm_flags & (VM_IO | VM_PFNMAP))
+ if (!vma_can_gup(vma))
return -EFAULT;
if ((gup_flags & FOLL_ANON) && !vma_anon)
@@ -1955,7 +1955,7 @@ int __mm_populate(unsigned long start, unsigned long len, int ignore_errors)
* range with the first VMA. Also, skip undesirable VMA types.
*/
nend = min(end, vma->vm_end);
- if (vma->vm_flags & (VM_IO | VM_PFNMAP))
+ if (!vma_can_gup(vma))
continue;
if (nstart < vma->vm_start)
nstart = vma->vm_start;
@@ -2017,8 +2017,7 @@ static long __get_user_pages_locked(struct mm_struct *mm, unsigned long start,
break;
/* protect what we can, including chardevs */
- if ((vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
- !(vm_flags & vma->vm_flags))
+ if (!vma_can_gup(vma) || !(vm_flags & vma->vm_flags))
break;
if (pages) {
diff --git a/mm/hmm.c b/mm/hmm.c
index 2f1e98c6b644..e9569b82a1f0 100644
--- a/mm/hmm.c
+++ b/mm/hmm.c
@@ -595,8 +595,7 @@ static int hmm_vma_walk_test(unsigned long start, unsigned long end,
struct hmm_range *range = hmm_vma_walk->range;
struct vm_area_struct *vma = walk->vma;
- if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)) &&
- vma->vm_flags & VM_READ)
+ if (vma_can_gup(vma) && vma_test(vma, VMA_READ_BIT))
return 0;
/*
diff --git a/mm/memory.c b/mm/memory.c
index 02e9d5d2e279..9e4a70421a6b 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2417,11 +2417,11 @@ static bool vm_mixed_zeropage_allowed(struct vm_area_struct *vma)
* be problematic as soon as the zeropage gets replaced by a different
* page due to vma->vm_ops->pfn_mkwrite, because what's mapped would
* now differ to what GUP looked up. FSDAX is incompatible to
- * FOLL_LONGTERM and VM_IO is incompatible to GUP completely (see
- * check_vma_flags).
+ * FOLL_LONGTERM and memory-mapped I/O is incompatible to GUP completely
+ * (see vma_can_gup()).
*/
return vma->vm_ops && vma->vm_ops->pfn_mkwrite &&
- (vma_is_fsdax(vma) || vma->vm_flags & VM_IO);
+ (vma_is_fsdax(vma) || vma_test(vma, VMA_IO_BIT));
}
static int validate_page_before_insert(struct vm_area_struct *vma,
@@ -7116,7 +7116,8 @@ int follow_pfnmap_start(struct follow_pfnmap_args *args)
if (unlikely(address < vma->vm_start || address >= vma->vm_end))
goto out;
- if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
+ /* Only mappings GUP cannot handle are followed here. */
+ if (vma_can_gup(vma))
goto out;
retry:
pgdp = pgd_offset(mm, address);
@@ -7316,8 +7317,9 @@ static int __access_remote_vm(struct mm_struct *mm, unsigned long addr,
}
/*
- * Check if this is a VM_IO | VM_PFNMAP VMA, which
- * we can access using slightly different code.
+ * GUP failed, perhaps because this is a mapping it
+ * cannot handle (see vma_can_gup()) - such mappings may
+ * provide access via vm_ops->access() instead.
*/
bytes = 0;
#ifdef CONFIG_HAVE_IOREMAP_PROT
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index 044ffb4f4128..2fd759e348ca 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -2013,7 +2013,8 @@ SYSCALL_DEFINE5(get_mempolicy, int __user *, policy,
bool vma_migratable(struct vm_area_struct *vma)
{
- if (vma->vm_flags & (VM_IO | VM_PFNMAP))
+ /* Pages which GUP cannot obtain cannot be migrated either. */
+ if (!vma_can_gup(vma))
return false;
/*
--
2.55.0
^ permalink raw reply related [flat|nested] 82+ messages in thread* Re: [PATCH v2 40/40] mm/vma: introduce and use vma[_flags]_can_gup()
2026-09-14 14:58 ` [PATCH v2 40/40] mm/vma: introduce and use vma[_flags]_can_gup() Lorenzo Stoakes (ARM)
@ 2026-09-14 22:25 ` sashiko-bot
0 siblings, 0 replies; 82+ messages in thread
From: sashiko-bot @ 2026-09-14 22:25 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Vasily Gorbik, Marc Zyngier, linux-perf-users, Alexander Gordeev,
linux-scsi, dri-devel, kvmarm, Christian Borntraeger, selinux,
Heiko Carstens, Oliver Upton, kvm, bpf, linux-rdma,
linux-trace-kernel, linux-s390
> GUP cannot be used for VMAs which set VMA_IO_BIT - because memory-mapped
> I/O must not be accessed on the user's behalf - or VMA_PFNMAP_BIT - because
> PFN maps have no folios which the kernel is permitted to access.
>
> Rather than keeping these checks open-coded, abstract them to
> vma_flags_can_gup() and its VMA wrapper vma_can_gup().
>
> A number of other places make the same check to decide whether a mapping
> can be populated or accessed as GUP would, so update those too.
>
> While here, drop a reference to 'special' and replace a use of the
> deprecated VMA flags API in vma_dump_size().
>
> No functional change intended.
>
> Signed-off-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260914-b4-mmap-prepare-vma-flag-sanify-v2-0-7d9781ed5361@kernel.org?part=40
^ permalink raw reply [flat|nested] 82+ messages in thread
* Re: [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL
2026-09-14 14:57 [PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL Lorenzo Stoakes (ARM)
` (39 preceding siblings ...)
2026-09-14 14:58 ` [PATCH v2 40/40] mm/vma: introduce and use vma[_flags]_can_gup() Lorenzo Stoakes (ARM)
@ 2026-09-15 1:08 ` Andrew Morton
40 siblings, 0 replies; 82+ messages in thread
From: Andrew Morton @ 2026-09-15 1:08 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM)
Cc: Liam R. Howlett, Vlastimil Babka, Jann Horn, Pedro Falcato,
David Hildenbrand, Mike Rapoport, Suren Baghdasaryan,
Michal Hocko, Jonathan Corbet, Greg Kroah-Hartman,
Dennis Dalessandro, Jason Gunthorpe, Leon Romanovsky, Paul Moore,
Stephen Smalley, Jaroslav Kysela, Takashi Iwai,
Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Eduard Zingerman, Kumar Kartikeya Dwivedi, Zi Yan, Baolin Wang,
Nico Pache, Ryan Roberts, Dev Jain, Barry Song, Lance Yang,
Usama Arif, Kiryl Shutsemau, Doug Gilbert, James E.J. Bottomley,
Martin K. Petersen, Jaya Kumar, Simona Vetter, Helge Deller,
Sebastian Reichel, John Hubbard, Peter Xu, Masami Hiramatsu,
Oleg Nesterov, Peter Zijlstra, Thomas Gleixner, Ingo Molnar,
Borislav Petkov, Dave Hansen, x86, Arnaldo Carvalho de Melo,
Namhyung Kim, Mark Rutland, Rik van Riel, Harry Yoo, Juri Lelli,
Vincent Guittot, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Will Deacon, Aneesh Kumar K.V,
Nick Piggin, Arnd Bergmann, Muchun Song, Oscar Salvador,
Matthew Wilcox (Oracle), Jan Kara, Marc Zyngier, Oliver Upton,
Catalin Marinas, Madhavan Srinivasan, Anup Patel, Paul Walmsley,
Palmer Dabbelt, Albert Ou, Christian Borntraeger, Janosch Frank,
Claudio Imbrenda, Alexander Gordeev, Gerald Schaefer,
Heiko Carstens, Vasily Gorbik, David S. Miller, Andreas Larsson,
Alexander Viro, Christian Brauner, Matthew Brost, Joshua Hahn,
Rakie Kim, Byungchul Park, Gregory Price, Ying Huang,
Alistair Popple, Chris Li, Kairui Song, Kemeng Shi, Nhat Pham,
Baoquan He, Youngjun Park, Johannes Weiner, Qi Zheng,
Shakeel Butt, Axel Rasmussen, Yuanchu Xie, Wei Xu, Chengming Zhou,
Michal Hocko, Miklos Szeredi, Xu Xin, linux-mm, linux-kernel,
linux-doc, linux-usb, linux-rdma, selinux, linux-sound, bpf,
linux-scsi, linux-fbdev, dri-devel, linux-trace-kernel,
linux-perf-users, linux-arch, linux-fsdevel, linux-arm-kernel,
kvmarm, linuxppc-dev, kvm, kvm-riscv, linux-riscv, linux-s390,
sparclinux, fuse-devel, Takashi Iwai
On Mon, 14 Sep 2026 15:57:20 +0100 "Lorenzo Stoakes (ARM)" <ljs@kernel.org> wrote:
> The VM_SPECIAL / VMA_SPECIAL_FLAGS mask conflates several unrelated
> properties:
>
> ...
>
> It's all rather a mess.
>
> This series brings some order to things by both limiting what drivers can
> do with VMA flags and switching to using predicates that describe
> behaviour, not arbitrary flags.
That's a lot of patches.
Review is thin and I expect this won't improve a lot. Lots of "no
functional changes" changes.
Perhaps it would be helpful if you were to identify those patches which
you'd like to see reviewers focus on?
> 1153 insertions(+), 582 deletions(-)
It's funny how often cleanup patches do this.
All queued up, thanks.
^ permalink raw reply [flat|nested] 82+ messages in thread