blob: 928df1638c30d124d500dfa024a7ba61c1b9d4bf [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwiga5201102019-08-28 16:19:53 +02002#include <linux/pagewalk.h>
Matt Mackalle6473092008-02-04 22:29:01 -08003#include <linux/highmem.h>
4#include <linux/sched.h>
Naoya Horiguchid33b9f42009-12-14 17:59:59 -08005#include <linux/hugetlb.h>
Matt Mackalle6473092008-02-04 22:29:01 -08006
Steven Priceb7a16c72020-02-03 17:36:03 -08007/*
8 * We want to know the real level where a entry is located ignoring any
9 * folding of levels which may be happening. For example if p4d is folded then
10 * a missing entry found at level 1 (p4d) is actually at level 0 (pgd).
11 */
12static int real_depth(int depth)
13{
14 if (depth == 3 && PTRS_PER_PMD == 1)
15 depth = 2;
16 if (depth == 2 && PTRS_PER_PUD == 1)
17 depth = 1;
18 if (depth == 1 && PTRS_PER_P4D == 1)
19 depth = 0;
20 return depth;
21}
22
Steven Pricefbf56342020-02-03 17:35:54 -080023static int walk_pte_range_inner(pte_t *pte, unsigned long addr,
24 unsigned long end, struct mm_walk *walk)
Matt Mackalle6473092008-02-04 22:29:01 -080025{
Christoph Hellwig7b86ac32019-08-28 16:19:54 +020026 const struct mm_walk_ops *ops = walk->ops;
Steven Pricefbf56342020-02-03 17:35:54 -080027 int err = 0;
Matt Mackalle6473092008-02-04 22:29:01 -080028
Johannes Weiner556637c2008-04-28 02:11:47 -070029 for (;;) {
Christoph Hellwig7b86ac32019-08-28 16:19:54 +020030 err = ops->pte_entry(pte, addr, addr + PAGE_SIZE, walk);
Matt Mackalle6473092008-02-04 22:29:01 -080031 if (err)
32 break;
Steven Pricec02a9872020-02-03 17:35:58 -080033 if (addr >= end - PAGE_SIZE)
Johannes Weiner556637c2008-04-28 02:11:47 -070034 break;
Steven Pricec02a9872020-02-03 17:35:58 -080035 addr += PAGE_SIZE;
Johannes Weiner556637c2008-04-28 02:11:47 -070036 pte++;
37 }
Steven Pricefbf56342020-02-03 17:35:54 -080038 return err;
39}
Matt Mackalle6473092008-02-04 22:29:01 -080040
Steven Pricefbf56342020-02-03 17:35:54 -080041static int walk_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
42 struct mm_walk *walk)
43{
44 pte_t *pte;
45 int err = 0;
46 spinlock_t *ptl;
47
48 if (walk->no_vma) {
49 pte = pte_offset_map(pmd, addr);
50 err = walk_pte_range_inner(pte, addr, end, walk);
51 pte_unmap(pte);
52 } else {
53 pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
54 err = walk_pte_range_inner(pte, addr, end, walk);
55 pte_unmap_unlock(pte, ptl);
56 }
57
Matt Mackalle6473092008-02-04 22:29:01 -080058 return err;
59}
60
61static int walk_pmd_range(pud_t *pud, unsigned long addr, unsigned long end,
Dave Hansen21650092008-06-12 15:21:47 -070062 struct mm_walk *walk)
Matt Mackalle6473092008-02-04 22:29:01 -080063{
64 pmd_t *pmd;
65 unsigned long next;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +020066 const struct mm_walk_ops *ops = walk->ops;
Matt Mackalle6473092008-02-04 22:29:01 -080067 int err = 0;
Steven Priceb7a16c72020-02-03 17:36:03 -080068 int depth = real_depth(3);
Matt Mackalle6473092008-02-04 22:29:01 -080069
70 pmd = pmd_offset(pud, addr);
71 do {
Dave Hansen03319322011-03-22 16:32:56 -070072again:
Matt Mackalle6473092008-02-04 22:29:01 -080073 next = pmd_addr_end(addr, end);
Steven Price488ae6a2020-02-03 17:35:50 -080074 if (pmd_none(*pmd) || (!walk->vma && !walk->no_vma)) {
Christoph Hellwig7b86ac32019-08-28 16:19:54 +020075 if (ops->pte_hole)
Steven Priceb7a16c72020-02-03 17:36:03 -080076 err = ops->pte_hole(addr, next, depth, walk);
Matt Mackalle6473092008-02-04 22:29:01 -080077 if (err)
78 break;
79 continue;
80 }
Steven Price3afc4232020-02-03 17:35:45 -080081
82 walk->action = ACTION_SUBTREE;
83
Dave Hansen03319322011-03-22 16:32:56 -070084 /*
85 * This implies that each ->pmd_entry() handler
86 * needs to know about pmd_trans_huge() pmds
87 */
Christoph Hellwig7b86ac32019-08-28 16:19:54 +020088 if (ops->pmd_entry)
89 err = ops->pmd_entry(pmd, addr, next, walk);
Dave Hansen03319322011-03-22 16:32:56 -070090 if (err)
91 break;
92
Steven Price3afc4232020-02-03 17:35:45 -080093 if (walk->action == ACTION_AGAIN)
94 goto again;
95
Dave Hansen03319322011-03-22 16:32:56 -070096 /*
97 * Check this here so we only break down trans_huge
98 * pages when we _need_ to
99 */
Steven Price488ae6a2020-02-03 17:35:50 -0800100 if ((!walk->vma && (pmd_leaf(*pmd) || !pmd_present(*pmd))) ||
101 walk->action == ACTION_CONTINUE ||
Steven Price3afc4232020-02-03 17:35:45 -0800102 !(ops->pte_entry))
Dave Hansen03319322011-03-22 16:32:56 -0700103 continue;
104
Steven Price488ae6a2020-02-03 17:35:50 -0800105 if (walk->vma) {
106 split_huge_pmd(walk->vma, pmd, addr);
107 if (pmd_trans_unstable(pmd))
108 goto again;
109 }
Steven Price3afc4232020-02-03 17:35:45 -0800110
Dave Hansen03319322011-03-22 16:32:56 -0700111 err = walk_pte_range(pmd, addr, next, walk);
Matt Mackalle6473092008-02-04 22:29:01 -0800112 if (err)
113 break;
114 } while (pmd++, addr = next, addr != end);
115
116 return err;
117}
118
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300119static int walk_pud_range(p4d_t *p4d, unsigned long addr, unsigned long end,
Dave Hansen21650092008-06-12 15:21:47 -0700120 struct mm_walk *walk)
Matt Mackalle6473092008-02-04 22:29:01 -0800121{
122 pud_t *pud;
123 unsigned long next;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200124 const struct mm_walk_ops *ops = walk->ops;
Matt Mackalle6473092008-02-04 22:29:01 -0800125 int err = 0;
Steven Priceb7a16c72020-02-03 17:36:03 -0800126 int depth = real_depth(2);
Matt Mackalle6473092008-02-04 22:29:01 -0800127
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300128 pud = pud_offset(p4d, addr);
Matt Mackalle6473092008-02-04 22:29:01 -0800129 do {
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800130 again:
Matt Mackalle6473092008-02-04 22:29:01 -0800131 next = pud_addr_end(addr, end);
Steven Price488ae6a2020-02-03 17:35:50 -0800132 if (pud_none(*pud) || (!walk->vma && !walk->no_vma)) {
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200133 if (ops->pte_hole)
Steven Priceb7a16c72020-02-03 17:36:03 -0800134 err = ops->pte_hole(addr, next, depth, walk);
Matt Mackalle6473092008-02-04 22:29:01 -0800135 if (err)
136 break;
137 continue;
138 }
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800139
Steven Price3afc4232020-02-03 17:35:45 -0800140 walk->action = ACTION_SUBTREE;
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800141
Steven Price3afc4232020-02-03 17:35:45 -0800142 if (ops->pud_entry)
143 err = ops->pud_entry(pud, addr, next, walk);
144 if (err)
145 break;
146
147 if (walk->action == ACTION_AGAIN)
148 goto again;
149
Steven Price488ae6a2020-02-03 17:35:50 -0800150 if ((!walk->vma && (pud_leaf(*pud) || !pud_present(*pud))) ||
151 walk->action == ACTION_CONTINUE ||
Steven Price3afc4232020-02-03 17:35:45 -0800152 !(ops->pmd_entry || ops->pte_entry))
153 continue;
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800154
Steven Price488ae6a2020-02-03 17:35:50 -0800155 if (walk->vma)
156 split_huge_pud(walk->vma, pud, addr);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800157 if (pud_none(*pud))
158 goto again;
159
Steven Price3afc4232020-02-03 17:35:45 -0800160 err = walk_pmd_range(pud, addr, next, walk);
Matt Mackalle6473092008-02-04 22:29:01 -0800161 if (err)
162 break;
163 } while (pud++, addr = next, addr != end);
164
165 return err;
166}
167
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300168static int walk_p4d_range(pgd_t *pgd, unsigned long addr, unsigned long end,
169 struct mm_walk *walk)
170{
171 p4d_t *p4d;
172 unsigned long next;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200173 const struct mm_walk_ops *ops = walk->ops;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300174 int err = 0;
Steven Priceb7a16c72020-02-03 17:36:03 -0800175 int depth = real_depth(1);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300176
177 p4d = p4d_offset(pgd, addr);
178 do {
179 next = p4d_addr_end(addr, end);
180 if (p4d_none_or_clear_bad(p4d)) {
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200181 if (ops->pte_hole)
Steven Priceb7a16c72020-02-03 17:36:03 -0800182 err = ops->pte_hole(addr, next, depth, walk);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300183 if (err)
184 break;
185 continue;
186 }
Steven Price3afc4232020-02-03 17:35:45 -0800187 if (ops->p4d_entry) {
188 err = ops->p4d_entry(p4d, addr, next, walk);
189 if (err)
190 break;
191 }
192 if (ops->pud_entry || ops->pmd_entry || ops->pte_entry)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300193 err = walk_pud_range(p4d, addr, next, walk);
194 if (err)
195 break;
196 } while (p4d++, addr = next, addr != end);
197
198 return err;
199}
200
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800201static int walk_pgd_range(unsigned long addr, unsigned long end,
202 struct mm_walk *walk)
203{
204 pgd_t *pgd;
205 unsigned long next;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200206 const struct mm_walk_ops *ops = walk->ops;
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800207 int err = 0;
208
Steven Pricee47690d2020-02-03 17:36:42 -0800209 if (walk->pgd)
210 pgd = walk->pgd + pgd_index(addr);
211 else
212 pgd = pgd_offset(walk->mm, addr);
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800213 do {
214 next = pgd_addr_end(addr, end);
215 if (pgd_none_or_clear_bad(pgd)) {
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200216 if (ops->pte_hole)
Steven Priceb7a16c72020-02-03 17:36:03 -0800217 err = ops->pte_hole(addr, next, 0, walk);
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800218 if (err)
219 break;
220 continue;
221 }
Steven Price3afc4232020-02-03 17:35:45 -0800222 if (ops->pgd_entry) {
223 err = ops->pgd_entry(pgd, addr, next, walk);
224 if (err)
225 break;
226 }
227 if (ops->p4d_entry || ops->pud_entry || ops->pmd_entry ||
228 ops->pte_entry)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300229 err = walk_p4d_range(pgd, addr, next, walk);
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800230 if (err)
231 break;
232 } while (pgd++, addr = next, addr != end);
233
234 return err;
235}
236
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700237#ifdef CONFIG_HUGETLB_PAGE
238static unsigned long hugetlb_entry_end(struct hstate *h, unsigned long addr,
239 unsigned long end)
240{
241 unsigned long boundary = (addr & huge_page_mask(h)) + huge_page_size(h);
242 return boundary < end ? boundary : end;
243}
244
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800245static int walk_hugetlb_range(unsigned long addr, unsigned long end,
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700246 struct mm_walk *walk)
247{
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800248 struct vm_area_struct *vma = walk->vma;
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700249 struct hstate *h = hstate_vma(vma);
250 unsigned long next;
251 unsigned long hmask = huge_page_mask(h);
Punit Agrawal7868a202017-07-06 15:39:42 -0700252 unsigned long sz = huge_page_size(h);
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700253 pte_t *pte;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200254 const struct mm_walk_ops *ops = walk->ops;
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700255 int err = 0;
256
257 do {
258 next = hugetlb_entry_end(h, addr, end);
Punit Agrawal7868a202017-07-06 15:39:42 -0700259 pte = huge_pte_offset(walk->mm, addr & hmask, sz);
Jann Horn373c4552017-11-14 01:03:44 +0100260
261 if (pte)
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200262 err = ops->hugetlb_entry(pte, hmask, addr, next, walk);
263 else if (ops->pte_hole)
Steven Priceb7a16c72020-02-03 17:36:03 -0800264 err = ops->pte_hole(addr, next, -1, walk);
Jann Horn373c4552017-11-14 01:03:44 +0100265
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700266 if (err)
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800267 break;
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700268 } while (addr = next, addr != end);
269
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800270 return err;
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700271}
KOSAKI Motohiro6c6d5282011-07-25 17:12:09 -0700272
KOSAKI Motohiro6c6d5282011-07-25 17:12:09 -0700273#else /* CONFIG_HUGETLB_PAGE */
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800274static int walk_hugetlb_range(unsigned long addr, unsigned long end,
KOSAKI Motohiro6c6d5282011-07-25 17:12:09 -0700275 struct mm_walk *walk)
276{
277 return 0;
278}
279
280#endif /* CONFIG_HUGETLB_PAGE */
281
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800282/*
283 * Decide whether we really walk over the current vma on [@start, @end)
284 * or skip it via the returned value. Return 0 if we do walk over the
285 * current vma, and return 1 if we skip the vma. Negative values means
286 * error, where we abort the current walk.
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800287 */
288static int walk_page_test(unsigned long start, unsigned long end,
289 struct mm_walk *walk)
290{
291 struct vm_area_struct *vma = walk->vma;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200292 const struct mm_walk_ops *ops = walk->ops;
KOSAKI Motohiro6c6d5282011-07-25 17:12:09 -0700293
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200294 if (ops->test_walk)
295 return ops->test_walk(start, end, walk);
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800296
297 /*
Naoya Horiguchi48684a62015-02-11 15:28:06 -0800298 * vma(VM_PFNMAP) doesn't have any valid struct pages behind VM_PFNMAP
299 * range, so we don't walk over it as we do for normal vmas. However,
300 * Some callers are interested in handling hole range and they don't
301 * want to just ignore any single address range. Such users certainly
302 * define their ->pte_hole() callbacks, so let's delegate them to handle
303 * vma(VM_PFNMAP).
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800304 */
Naoya Horiguchi48684a62015-02-11 15:28:06 -0800305 if (vma->vm_flags & VM_PFNMAP) {
306 int err = 1;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200307 if (ops->pte_hole)
Steven Priceb7a16c72020-02-03 17:36:03 -0800308 err = ops->pte_hole(start, end, -1, walk);
Naoya Horiguchi48684a62015-02-11 15:28:06 -0800309 return err ? err : 1;
310 }
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800311 return 0;
312}
313
314static int __walk_page_range(unsigned long start, unsigned long end,
315 struct mm_walk *walk)
316{
317 int err = 0;
318 struct vm_area_struct *vma = walk->vma;
Thomas Hellstromecaad8a2019-10-01 11:17:34 +0200319 const struct mm_walk_ops *ops = walk->ops;
320
321 if (vma && ops->pre_vma) {
322 err = ops->pre_vma(start, end, walk);
323 if (err)
324 return err;
325 }
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800326
327 if (vma && is_vm_hugetlb_page(vma)) {
Thomas Hellstromecaad8a2019-10-01 11:17:34 +0200328 if (ops->hugetlb_entry)
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800329 err = walk_hugetlb_range(start, end, walk);
330 } else
331 err = walk_pgd_range(start, end, walk);
332
Thomas Hellstromecaad8a2019-10-01 11:17:34 +0200333 if (vma && ops->post_vma)
334 ops->post_vma(walk);
335
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800336 return err;
337}
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700338
Matt Mackalle6473092008-02-04 22:29:01 -0800339/**
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800340 * walk_page_range - walk page table with caller specific callbacks
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200341 * @mm: mm_struct representing the target process of page table walk
342 * @start: start address of the virtual address range
343 * @end: end address of the virtual address range
344 * @ops: operation to call during the walk
345 * @private: private data for callbacks' usage
Matt Mackalle6473092008-02-04 22:29:01 -0800346 *
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200347 * Recursively walk the page table tree of the process represented by @mm
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800348 * within the virtual address range [@start, @end). During walking, we can do
349 * some caller-specific works for each entry, by setting up pmd_entry(),
350 * pte_entry(), and/or hugetlb_entry(). If you don't set up for some of these
351 * callbacks, the associated entries/pages are just ignored.
352 * The return values of these callbacks are commonly defined like below:
Mike Rapoporta5d09be2018-02-06 15:42:19 -0800353 *
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800354 * - 0 : succeeded to handle the current entry, and if you don't reach the
355 * end address yet, continue to walk.
356 * - >0 : succeeded to handle the current entry, and return to the caller
357 * with caller specific value.
358 * - <0 : failed to handle the current entry, and return to the caller
359 * with error code.
Matt Mackalle6473092008-02-04 22:29:01 -0800360 *
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800361 * Before starting to walk page table, some callers want to check whether
362 * they really want to walk over the current vma, typically by checking
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200363 * its vm_flags. walk_page_test() and @ops->test_walk() are used for this
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800364 * purpose.
Matt Mackalle6473092008-02-04 22:29:01 -0800365 *
Thomas Hellstromecaad8a2019-10-01 11:17:34 +0200366 * If operations need to be staged before and committed after a vma is walked,
367 * there are two callbacks, pre_vma() and post_vma(). Note that post_vma(),
368 * since it is intended to handle commit-type operations, can't return any
369 * errors.
370 *
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800371 * struct mm_walk keeps current values of some common data like vma and pmd,
372 * which are useful for the access from callbacks. If you want to pass some
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200373 * caller-specific data to callbacks, @private should be helpful.
Matt Mackalle6473092008-02-04 22:29:01 -0800374 *
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800375 * Locking:
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200376 * Callers of walk_page_range() and walk_page_vma() should hold @mm->mmap_sem,
377 * because these function traverse vma list and/or access to vma's data.
Matt Mackalle6473092008-02-04 22:29:01 -0800378 */
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200379int walk_page_range(struct mm_struct *mm, unsigned long start,
380 unsigned long end, const struct mm_walk_ops *ops,
381 void *private)
Matt Mackalle6473092008-02-04 22:29:01 -0800382{
Matt Mackalle6473092008-02-04 22:29:01 -0800383 int err = 0;
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800384 unsigned long next;
385 struct vm_area_struct *vma;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200386 struct mm_walk walk = {
387 .ops = ops,
388 .mm = mm,
389 .private = private,
390 };
Matt Mackalle6473092008-02-04 22:29:01 -0800391
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800392 if (start >= end)
393 return -EINVAL;
Matt Mackalle6473092008-02-04 22:29:01 -0800394
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200395 if (!walk.mm)
Dave Hansen21650092008-06-12 15:21:47 -0700396 return -EINVAL;
397
Christoph Hellwigb4bc7812019-08-28 16:19:55 +0200398 lockdep_assert_held(&walk.mm->mmap_sem);
Cliff Wickmana9ff7852013-05-24 15:55:36 -0700399
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200400 vma = find_vma(walk.mm, start);
Matt Mackalle6473092008-02-04 22:29:01 -0800401 do {
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800402 if (!vma) { /* after the last vma */
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200403 walk.vma = NULL;
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800404 next = end;
405 } else if (start < vma->vm_start) { /* outside vma */
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200406 walk.vma = NULL;
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800407 next = min(end, vma->vm_start);
408 } else { /* inside vma */
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200409 walk.vma = vma;
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800410 next = min(end, vma->vm_end);
411 vma = vma->vm_next;
David Sterba5f0af702010-11-24 12:57:10 -0800412
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200413 err = walk_page_test(start, next, &walk);
Naoya Horiguchif6837392015-03-25 15:55:14 -0700414 if (err > 0) {
415 /*
416 * positive return values are purely for
417 * controlling the pagewalk, so should never
418 * be passed to the callers.
419 */
420 err = 0;
Cliff Wickmana9ff7852013-05-24 15:55:36 -0700421 continue;
Naoya Horiguchif6837392015-03-25 15:55:14 -0700422 }
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800423 if (err < 0)
Matt Mackalle6473092008-02-04 22:29:01 -0800424 break;
Matt Mackalle6473092008-02-04 22:29:01 -0800425 }
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200426 if (walk.vma || walk.ops->pte_hole)
427 err = __walk_page_range(start, next, &walk);
Matt Mackalle6473092008-02-04 22:29:01 -0800428 if (err)
429 break;
Naoya Horiguchifafaa422015-02-11 15:27:37 -0800430 } while (start = next, start < end);
Matt Mackalle6473092008-02-04 22:29:01 -0800431 return err;
432}
Naoya Horiguchi900fc5f2015-02-11 15:27:40 -0800433
Steven Pricefbf56342020-02-03 17:35:54 -0800434/*
435 * Similar to walk_page_range() but can walk any page tables even if they are
436 * not backed by VMAs. Because 'unusual' entries may be walked this function
437 * will also not lock the PTEs for the pte_entry() callback. This is useful for
438 * walking the kernel pages tables or page tables for firmware.
439 */
Steven Price488ae6a2020-02-03 17:35:50 -0800440int walk_page_range_novma(struct mm_struct *mm, unsigned long start,
441 unsigned long end, const struct mm_walk_ops *ops,
Steven Pricee47690d2020-02-03 17:36:42 -0800442 pgd_t *pgd,
Steven Price488ae6a2020-02-03 17:35:50 -0800443 void *private)
444{
445 struct mm_walk walk = {
446 .ops = ops,
447 .mm = mm,
Steven Pricee47690d2020-02-03 17:36:42 -0800448 .pgd = pgd,
Steven Price488ae6a2020-02-03 17:35:50 -0800449 .private = private,
450 .no_vma = true
451 };
452
453 if (start >= end || !walk.mm)
454 return -EINVAL;
455
456 lockdep_assert_held(&walk.mm->mmap_sem);
457
458 return __walk_page_range(start, end, &walk);
459}
460
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200461int walk_page_vma(struct vm_area_struct *vma, const struct mm_walk_ops *ops,
462 void *private)
Naoya Horiguchi900fc5f2015-02-11 15:27:40 -0800463{
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200464 struct mm_walk walk = {
465 .ops = ops,
466 .mm = vma->vm_mm,
467 .vma = vma,
468 .private = private,
469 };
Naoya Horiguchi900fc5f2015-02-11 15:27:40 -0800470 int err;
471
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200472 if (!walk.mm)
Naoya Horiguchi900fc5f2015-02-11 15:27:40 -0800473 return -EINVAL;
474
Christoph Hellwigb4bc7812019-08-28 16:19:55 +0200475 lockdep_assert_held(&walk.mm->mmap_sem);
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200476
477 err = walk_page_test(vma->vm_start, vma->vm_end, &walk);
Naoya Horiguchi900fc5f2015-02-11 15:27:40 -0800478 if (err > 0)
479 return 0;
480 if (err < 0)
481 return err;
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200482 return __walk_page_range(vma->vm_start, vma->vm_end, &walk);
Naoya Horiguchi900fc5f2015-02-11 15:27:40 -0800483}
Thomas Hellstromecaad8a2019-10-01 11:17:34 +0200484
485/**
486 * walk_page_mapping - walk all memory areas mapped into a struct address_space.
487 * @mapping: Pointer to the struct address_space
488 * @first_index: First page offset in the address_space
489 * @nr: Number of incremental page offsets to cover
490 * @ops: operation to call during the walk
491 * @private: private data for callbacks' usage
492 *
493 * This function walks all memory areas mapped into a struct address_space.
494 * The walk is limited to only the given page-size index range, but if
495 * the index boundaries cross a huge page-table entry, that entry will be
496 * included.
497 *
498 * Also see walk_page_range() for additional information.
499 *
500 * Locking:
501 * This function can't require that the struct mm_struct::mmap_sem is held,
502 * since @mapping may be mapped by multiple processes. Instead
503 * @mapping->i_mmap_rwsem must be held. This might have implications in the
504 * callbacks, and it's up tho the caller to ensure that the
505 * struct mm_struct::mmap_sem is not needed.
506 *
507 * Also this means that a caller can't rely on the struct
508 * vm_area_struct::vm_flags to be constant across a call,
509 * except for immutable flags. Callers requiring this shouldn't use
510 * this function.
511 *
512 * Return: 0 on success, negative error code on failure, positive number on
513 * caller defined premature termination.
514 */
515int walk_page_mapping(struct address_space *mapping, pgoff_t first_index,
516 pgoff_t nr, const struct mm_walk_ops *ops,
517 void *private)
518{
519 struct mm_walk walk = {
520 .ops = ops,
521 .private = private,
522 };
523 struct vm_area_struct *vma;
524 pgoff_t vba, vea, cba, cea;
525 unsigned long start_addr, end_addr;
526 int err = 0;
527
528 lockdep_assert_held(&mapping->i_mmap_rwsem);
529 vma_interval_tree_foreach(vma, &mapping->i_mmap, first_index,
530 first_index + nr - 1) {
531 /* Clip to the vma */
532 vba = vma->vm_pgoff;
533 vea = vba + vma_pages(vma);
534 cba = first_index;
535 cba = max(cba, vba);
536 cea = first_index + nr;
537 cea = min(cea, vea);
538
539 start_addr = ((cba - vba) << PAGE_SHIFT) + vma->vm_start;
540 end_addr = ((cea - vba) << PAGE_SHIFT) + vma->vm_start;
541 if (start_addr >= end_addr)
542 continue;
543
544 walk.vma = vma;
545 walk.mm = vma->vm_mm;
546
547 err = walk_page_test(vma->vm_start, vma->vm_end, &walk);
548 if (err > 0) {
549 err = 0;
550 break;
551 } else if (err < 0)
552 break;
553
554 err = __walk_page_range(start_addr, end_addr, &walk);
555 if (err)
556 break;
557 }
558
559 return err;
560}