linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/1] mm/memory: constrain generic_access_phys() to page boundary
@ 2026-09-05 14:12 Ren Wei
  2026-09-05 14:12 ` [PATCH v2 1/1] " Ren Wei
  0 siblings, 1 reply; 4+ messages in thread
From: Ren Wei @ 2026-09-05 14:12 UTC (permalink / raw)
  To: linux-mm
  Cc: akpm, david, ljs, liam, vbabka, rppt, surenb, mhocko, notasas,
	vega, rakukuip, weir

From: Luxiao Xu <rakukuip@gmail.com>

Hi all,

This is v2 of the fix for generic_access_phys() out-of-bounds mapping.

In v1, we attempted to handle multi-page ranges by adding an internal
chunk loop inside generic_access_phys(). Following feedback from David
Hildenbrand, we realized that caller (__access_remote_vm) already has an
outer loop and handles normal pages chunk-by-chunk.

Instead of duplicating the loop logic in generic_access_phys(), v2
clamps the access length passed to ->access() in __access_remote_vm() to
not cross the page boundary (PAGE_SIZE - offset_in_page(addr)). Because
all VMAs are page-aligned, this also naturally ensures accesses never
cross VMA boundaries. Each page access is then driven by the outer loop,
looking up the VMA and resolving PFN/protections per page.

Additionally, we fixed the missing (resource_size_t) cast in PFN
comparison as pointed out by Andrew Morton.

Thanks,
Luxiao / Ren Wei

Luxiao Xu (1):
  mm/memory: constrain generic_access_phys() to page boundary

 mm/memory.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

-- 
2.43.0



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

end of thread, other threads:[~2026-09-07 12:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-05 14:12 [PATCH v2 0/1] mm/memory: constrain generic_access_phys() to page boundary Ren Wei
2026-09-05 14:12 ` [PATCH v2 1/1] " Ren Wei
2026-09-05 23:03   ` Andrew Morton
2026-09-07 12:08   ` David Hildenbrand (Arm)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).