4b5ee92ba07963d053d1abb74dfd156ef4a9d720
[linux-2.6-microblaze.git] / mm / pagewalk.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/pagewalk.h>
3 #include <linux/highmem.h>
4 #include <linux/sched.h>
5 #include <linux/hugetlb.h>
6
7 static int walk_pte_range_inner(pte_t *pte, unsigned long addr,
8                                 unsigned long end, struct mm_walk *walk)
9 {
10         const struct mm_walk_ops *ops = walk->ops;
11         int err = 0;
12
13         for (;;) {
14                 err = ops->pte_entry(pte, addr, addr + PAGE_SIZE, walk);
15                 if (err)
16                        break;
17                 addr += PAGE_SIZE;
18                 if (addr == end)
19                         break;
20                 pte++;
21         }
22         return err;
23 }
24
25 static int walk_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
26                           struct mm_walk *walk)
27 {
28         pte_t *pte;
29         int err = 0;
30         spinlock_t *ptl;
31
32         if (walk->no_vma) {
33                 pte = pte_offset_map(pmd, addr);
34                 err = walk_pte_range_inner(pte, addr, end, walk);
35                 pte_unmap(pte);
36         } else {
37                 pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
38                 err = walk_pte_range_inner(pte, addr, end, walk);
39                 pte_unmap_unlock(pte, ptl);
40         }
41
42         return err;
43 }
44
45 static int walk_pmd_range(pud_t *pud, unsigned long addr, unsigned long end,
46                           struct mm_walk *walk)
47 {
48         pmd_t *pmd;
49         unsigned long next;
50         const struct mm_walk_ops *ops = walk->ops;
51         int err = 0;
52
53         pmd = pmd_offset(pud, addr);
54         do {
55 again:
56                 next = pmd_addr_end(addr, end);
57                 if (pmd_none(*pmd) || (!walk->vma && !walk->no_vma)) {
58                         if (ops->pte_hole)
59                                 err = ops->pte_hole(addr, next, walk);
60                         if (err)
61                                 break;
62                         continue;
63                 }
64
65                 walk->action = ACTION_SUBTREE;
66
67                 /*
68                  * This implies that each ->pmd_entry() handler
69                  * needs to know about pmd_trans_huge() pmds
70                  */
71                 if (ops->pmd_entry)
72                         err = ops->pmd_entry(pmd, addr, next, walk);
73                 if (err)
74                         break;
75
76                 if (walk->action == ACTION_AGAIN)
77                         goto again;
78
79                 /*
80                  * Check this here so we only break down trans_huge
81                  * pages when we _need_ to
82                  */
83                 if ((!walk->vma && (pmd_leaf(*pmd) || !pmd_present(*pmd))) ||
84                     walk->action == ACTION_CONTINUE ||
85                     !(ops->pte_entry))
86                         continue;
87
88                 if (walk->vma) {
89                         split_huge_pmd(walk->vma, pmd, addr);
90                         if (pmd_trans_unstable(pmd))
91                                 goto again;
92                 }
93
94                 err = walk_pte_range(pmd, addr, next, walk);
95                 if (err)
96                         break;
97         } while (pmd++, addr = next, addr != end);
98
99         return err;
100 }
101
102 static int walk_pud_range(p4d_t *p4d, unsigned long addr, unsigned long end,
103                           struct mm_walk *walk)
104 {
105         pud_t *pud;
106         unsigned long next;
107         const struct mm_walk_ops *ops = walk->ops;
108         int err = 0;
109
110         pud = pud_offset(p4d, addr);
111         do {
112  again:
113                 next = pud_addr_end(addr, end);
114                 if (pud_none(*pud) || (!walk->vma && !walk->no_vma)) {
115                         if (ops->pte_hole)
116                                 err = ops->pte_hole(addr, next, walk);
117                         if (err)
118                                 break;
119                         continue;
120                 }
121
122                 walk->action = ACTION_SUBTREE;
123
124                 if (ops->pud_entry)
125                         err = ops->pud_entry(pud, addr, next, walk);
126                 if (err)
127                         break;
128
129                 if (walk->action == ACTION_AGAIN)
130                         goto again;
131
132                 if ((!walk->vma && (pud_leaf(*pud) || !pud_present(*pud))) ||
133                     walk->action == ACTION_CONTINUE ||
134                     !(ops->pmd_entry || ops->pte_entry))
135                         continue;
136
137                 if (walk->vma)
138                         split_huge_pud(walk->vma, pud, addr);
139                 if (pud_none(*pud))
140                         goto again;
141
142                 err = walk_pmd_range(pud, addr, next, walk);
143                 if (err)
144                         break;
145         } while (pud++, addr = next, addr != end);
146
147         return err;
148 }
149
150 static int walk_p4d_range(pgd_t *pgd, unsigned long addr, unsigned long end,
151                           struct mm_walk *walk)
152 {
153         p4d_t *p4d;
154         unsigned long next;
155         const struct mm_walk_ops *ops = walk->ops;
156         int err = 0;
157
158         p4d = p4d_offset(pgd, addr);
159         do {
160                 next = p4d_addr_end(addr, end);
161                 if (p4d_none_or_clear_bad(p4d)) {
162                         if (ops->pte_hole)
163                                 err = ops->pte_hole(addr, next, walk);
164                         if (err)
165                                 break;
166                         continue;
167                 }
168                 if (ops->p4d_entry) {
169                         err = ops->p4d_entry(p4d, addr, next, walk);
170                         if (err)
171                                 break;
172                 }
173                 if (ops->pud_entry || ops->pmd_entry || ops->pte_entry)
174                         err = walk_pud_range(p4d, addr, next, walk);
175                 if (err)
176                         break;
177         } while (p4d++, addr = next, addr != end);
178
179         return err;
180 }
181
182 static int walk_pgd_range(unsigned long addr, unsigned long end,
183                           struct mm_walk *walk)
184 {
185         pgd_t *pgd;
186         unsigned long next;
187         const struct mm_walk_ops *ops = walk->ops;
188         int err = 0;
189
190         pgd = pgd_offset(walk->mm, addr);
191         do {
192                 next = pgd_addr_end(addr, end);
193                 if (pgd_none_or_clear_bad(pgd)) {
194                         if (ops->pte_hole)
195                                 err = ops->pte_hole(addr, next, walk);
196                         if (err)
197                                 break;
198                         continue;
199                 }
200                 if (ops->pgd_entry) {
201                         err = ops->pgd_entry(pgd, addr, next, walk);
202                         if (err)
203                                 break;
204                 }
205                 if (ops->p4d_entry || ops->pud_entry || ops->pmd_entry ||
206                     ops->pte_entry)
207                         err = walk_p4d_range(pgd, addr, next, walk);
208                 if (err)
209                         break;
210         } while (pgd++, addr = next, addr != end);
211
212         return err;
213 }
214
215 #ifdef CONFIG_HUGETLB_PAGE
216 static unsigned long hugetlb_entry_end(struct hstate *h, unsigned long addr,
217                                        unsigned long end)
218 {
219         unsigned long boundary = (addr & huge_page_mask(h)) + huge_page_size(h);
220         return boundary < end ? boundary : end;
221 }
222
223 static int walk_hugetlb_range(unsigned long addr, unsigned long end,
224                               struct mm_walk *walk)
225 {
226         struct vm_area_struct *vma = walk->vma;
227         struct hstate *h = hstate_vma(vma);
228         unsigned long next;
229         unsigned long hmask = huge_page_mask(h);
230         unsigned long sz = huge_page_size(h);
231         pte_t *pte;
232         const struct mm_walk_ops *ops = walk->ops;
233         int err = 0;
234
235         do {
236                 next = hugetlb_entry_end(h, addr, end);
237                 pte = huge_pte_offset(walk->mm, addr & hmask, sz);
238
239                 if (pte)
240                         err = ops->hugetlb_entry(pte, hmask, addr, next, walk);
241                 else if (ops->pte_hole)
242                         err = ops->pte_hole(addr, next, walk);
243
244                 if (err)
245                         break;
246         } while (addr = next, addr != end);
247
248         return err;
249 }
250
251 #else /* CONFIG_HUGETLB_PAGE */
252 static int walk_hugetlb_range(unsigned long addr, unsigned long end,
253                               struct mm_walk *walk)
254 {
255         return 0;
256 }
257
258 #endif /* CONFIG_HUGETLB_PAGE */
259
260 /*
261  * Decide whether we really walk over the current vma on [@start, @end)
262  * or skip it via the returned value. Return 0 if we do walk over the
263  * current vma, and return 1 if we skip the vma. Negative values means
264  * error, where we abort the current walk.
265  */
266 static int walk_page_test(unsigned long start, unsigned long end,
267                         struct mm_walk *walk)
268 {
269         struct vm_area_struct *vma = walk->vma;
270         const struct mm_walk_ops *ops = walk->ops;
271
272         if (ops->test_walk)
273                 return ops->test_walk(start, end, walk);
274
275         /*
276          * vma(VM_PFNMAP) doesn't have any valid struct pages behind VM_PFNMAP
277          * range, so we don't walk over it as we do for normal vmas. However,
278          * Some callers are interested in handling hole range and they don't
279          * want to just ignore any single address range. Such users certainly
280          * define their ->pte_hole() callbacks, so let's delegate them to handle
281          * vma(VM_PFNMAP).
282          */
283         if (vma->vm_flags & VM_PFNMAP) {
284                 int err = 1;
285                 if (ops->pte_hole)
286                         err = ops->pte_hole(start, end, walk);
287                 return err ? err : 1;
288         }
289         return 0;
290 }
291
292 static int __walk_page_range(unsigned long start, unsigned long end,
293                         struct mm_walk *walk)
294 {
295         int err = 0;
296         struct vm_area_struct *vma = walk->vma;
297         const struct mm_walk_ops *ops = walk->ops;
298
299         if (vma && ops->pre_vma) {
300                 err = ops->pre_vma(start, end, walk);
301                 if (err)
302                         return err;
303         }
304
305         if (vma && is_vm_hugetlb_page(vma)) {
306                 if (ops->hugetlb_entry)
307                         err = walk_hugetlb_range(start, end, walk);
308         } else
309                 err = walk_pgd_range(start, end, walk);
310
311         if (vma && ops->post_vma)
312                 ops->post_vma(walk);
313
314         return err;
315 }
316
317 /**
318  * walk_page_range - walk page table with caller specific callbacks
319  * @mm:         mm_struct representing the target process of page table walk
320  * @start:      start address of the virtual address range
321  * @end:        end address of the virtual address range
322  * @ops:        operation to call during the walk
323  * @private:    private data for callbacks' usage
324  *
325  * Recursively walk the page table tree of the process represented by @mm
326  * within the virtual address range [@start, @end). During walking, we can do
327  * some caller-specific works for each entry, by setting up pmd_entry(),
328  * pte_entry(), and/or hugetlb_entry(). If you don't set up for some of these
329  * callbacks, the associated entries/pages are just ignored.
330  * The return values of these callbacks are commonly defined like below:
331  *
332  *  - 0  : succeeded to handle the current entry, and if you don't reach the
333  *         end address yet, continue to walk.
334  *  - >0 : succeeded to handle the current entry, and return to the caller
335  *         with caller specific value.
336  *  - <0 : failed to handle the current entry, and return to the caller
337  *         with error code.
338  *
339  * Before starting to walk page table, some callers want to check whether
340  * they really want to walk over the current vma, typically by checking
341  * its vm_flags. walk_page_test() and @ops->test_walk() are used for this
342  * purpose.
343  *
344  * If operations need to be staged before and committed after a vma is walked,
345  * there are two callbacks, pre_vma() and post_vma(). Note that post_vma(),
346  * since it is intended to handle commit-type operations, can't return any
347  * errors.
348  *
349  * struct mm_walk keeps current values of some common data like vma and pmd,
350  * which are useful for the access from callbacks. If you want to pass some
351  * caller-specific data to callbacks, @private should be helpful.
352  *
353  * Locking:
354  *   Callers of walk_page_range() and walk_page_vma() should hold @mm->mmap_sem,
355  *   because these function traverse vma list and/or access to vma's data.
356  */
357 int walk_page_range(struct mm_struct *mm, unsigned long start,
358                 unsigned long end, const struct mm_walk_ops *ops,
359                 void *private)
360 {
361         int err = 0;
362         unsigned long next;
363         struct vm_area_struct *vma;
364         struct mm_walk walk = {
365                 .ops            = ops,
366                 .mm             = mm,
367                 .private        = private,
368         };
369
370         if (start >= end)
371                 return -EINVAL;
372
373         if (!walk.mm)
374                 return -EINVAL;
375
376         lockdep_assert_held(&walk.mm->mmap_sem);
377
378         vma = find_vma(walk.mm, start);
379         do {
380                 if (!vma) { /* after the last vma */
381                         walk.vma = NULL;
382                         next = end;
383                 } else if (start < vma->vm_start) { /* outside vma */
384                         walk.vma = NULL;
385                         next = min(end, vma->vm_start);
386                 } else { /* inside vma */
387                         walk.vma = vma;
388                         next = min(end, vma->vm_end);
389                         vma = vma->vm_next;
390
391                         err = walk_page_test(start, next, &walk);
392                         if (err > 0) {
393                                 /*
394                                  * positive return values are purely for
395                                  * controlling the pagewalk, so should never
396                                  * be passed to the callers.
397                                  */
398                                 err = 0;
399                                 continue;
400                         }
401                         if (err < 0)
402                                 break;
403                 }
404                 if (walk.vma || walk.ops->pte_hole)
405                         err = __walk_page_range(start, next, &walk);
406                 if (err)
407                         break;
408         } while (start = next, start < end);
409         return err;
410 }
411
412 /*
413  * Similar to walk_page_range() but can walk any page tables even if they are
414  * not backed by VMAs. Because 'unusual' entries may be walked this function
415  * will also not lock the PTEs for the pte_entry() callback. This is useful for
416  * walking the kernel pages tables or page tables for firmware.
417  */
418 int walk_page_range_novma(struct mm_struct *mm, unsigned long start,
419                           unsigned long end, const struct mm_walk_ops *ops,
420                           void *private)
421 {
422         struct mm_walk walk = {
423                 .ops            = ops,
424                 .mm             = mm,
425                 .private        = private,
426                 .no_vma         = true
427         };
428
429         if (start >= end || !walk.mm)
430                 return -EINVAL;
431
432         lockdep_assert_held(&walk.mm->mmap_sem);
433
434         return __walk_page_range(start, end, &walk);
435 }
436
437 int walk_page_vma(struct vm_area_struct *vma, const struct mm_walk_ops *ops,
438                 void *private)
439 {
440         struct mm_walk walk = {
441                 .ops            = ops,
442                 .mm             = vma->vm_mm,
443                 .vma            = vma,
444                 .private        = private,
445         };
446         int err;
447
448         if (!walk.mm)
449                 return -EINVAL;
450
451         lockdep_assert_held(&walk.mm->mmap_sem);
452
453         err = walk_page_test(vma->vm_start, vma->vm_end, &walk);
454         if (err > 0)
455                 return 0;
456         if (err < 0)
457                 return err;
458         return __walk_page_range(vma->vm_start, vma->vm_end, &walk);
459 }
460
461 /**
462  * walk_page_mapping - walk all memory areas mapped into a struct address_space.
463  * @mapping: Pointer to the struct address_space
464  * @first_index: First page offset in the address_space
465  * @nr: Number of incremental page offsets to cover
466  * @ops:        operation to call during the walk
467  * @private:    private data for callbacks' usage
468  *
469  * This function walks all memory areas mapped into a struct address_space.
470  * The walk is limited to only the given page-size index range, but if
471  * the index boundaries cross a huge page-table entry, that entry will be
472  * included.
473  *
474  * Also see walk_page_range() for additional information.
475  *
476  * Locking:
477  *   This function can't require that the struct mm_struct::mmap_sem is held,
478  *   since @mapping may be mapped by multiple processes. Instead
479  *   @mapping->i_mmap_rwsem must be held. This might have implications in the
480  *   callbacks, and it's up tho the caller to ensure that the
481  *   struct mm_struct::mmap_sem is not needed.
482  *
483  *   Also this means that a caller can't rely on the struct
484  *   vm_area_struct::vm_flags to be constant across a call,
485  *   except for immutable flags. Callers requiring this shouldn't use
486  *   this function.
487  *
488  * Return: 0 on success, negative error code on failure, positive number on
489  * caller defined premature termination.
490  */
491 int walk_page_mapping(struct address_space *mapping, pgoff_t first_index,
492                       pgoff_t nr, const struct mm_walk_ops *ops,
493                       void *private)
494 {
495         struct mm_walk walk = {
496                 .ops            = ops,
497                 .private        = private,
498         };
499         struct vm_area_struct *vma;
500         pgoff_t vba, vea, cba, cea;
501         unsigned long start_addr, end_addr;
502         int err = 0;
503
504         lockdep_assert_held(&mapping->i_mmap_rwsem);
505         vma_interval_tree_foreach(vma, &mapping->i_mmap, first_index,
506                                   first_index + nr - 1) {
507                 /* Clip to the vma */
508                 vba = vma->vm_pgoff;
509                 vea = vba + vma_pages(vma);
510                 cba = first_index;
511                 cba = max(cba, vba);
512                 cea = first_index + nr;
513                 cea = min(cea, vea);
514
515                 start_addr = ((cba - vba) << PAGE_SHIFT) + vma->vm_start;
516                 end_addr = ((cea - vba) << PAGE_SHIFT) + vma->vm_start;
517                 if (start_addr >= end_addr)
518                         continue;
519
520                 walk.vma = vma;
521                 walk.mm = vma->vm_mm;
522
523                 err = walk_page_test(vma->vm_start, vma->vm_end, &walk);
524                 if (err > 0) {
525                         err = 0;
526                         break;
527                 } else if (err < 0)
528                         break;
529
530                 err = __walk_page_range(start_addr, end_addr, &walk);
531                 if (err)
532                         break;
533         }
534
535         return err;
536 }