1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2012 ARM Ltd.
4 */
5 #ifndef __ASM_PGTABLE_H
6 #define __ASM_PGTABLE_H
7
8 #include <asm/bug.h>
9 #include <asm/proc-fns.h>
10
11 #include <asm/memory.h>
12 #include <asm/mte.h>
13 #include <asm/pgtable-hwdef.h>
14 #include <asm/pgtable-prot.h>
15 #include <asm/tlbflush.h>
16
17 /*
18 * VMALLOC range.
19 *
20 * VMALLOC_START: beginning of the kernel vmalloc space
21 * VMALLOC_END: extends to the available space below vmemmap
22 */
23 #define VMALLOC_START (MODULES_END)
24 #if VA_BITS == VA_BITS_MIN
25 #define VMALLOC_END (VMEMMAP_START - SZ_8M)
26 #else
27 #define VMEMMAP_UNUSED_NPAGES ((_PAGE_OFFSET(vabits_actual) - PAGE_OFFSET) >> PAGE_SHIFT)
28 #define VMALLOC_END (VMEMMAP_START + VMEMMAP_UNUSED_NPAGES * sizeof(struct page) - SZ_8M)
29 #endif
30
31 #define vmemmap ((struct page *)VMEMMAP_START - (memstart_addr >> PAGE_SHIFT))
32
33 #ifndef __ASSEMBLER__
34
35 #include <asm/cmpxchg.h>
36 #include <asm/fixmap.h>
37 #include <asm/por.h>
38 #include <linux/mmdebug.h>
39 #include <linux/mm_types.h>
40 #include <linux/sched.h>
41 #include <linux/page_table_check.h>
42
emit_pte_barriers(void)43 static inline void emit_pte_barriers(void)
44 {
45 /*
46 * These barriers are emitted under certain conditions after a pte entry
47 * was modified (see e.g. __set_pte_complete()). The dsb makes the store
48 * visible to the table walker. The isb ensures that any previous
49 * speculative "invalid translation" marker that is in the CPU's
50 * pipeline gets cleared, so that any access to that address after
51 * setting the pte to valid won't cause a spurious fault. If the thread
52 * gets preempted after storing to the pgtable but before emitting these
53 * barriers, __switch_to() emits a dsb which ensure the walker gets to
54 * see the store. There is no guarantee of an isb being issued though.
55 * This is safe because it will still get issued (albeit on a
56 * potentially different CPU) when the thread starts running again,
57 * before any access to the address.
58 */
59 dsb(ishst);
60 isb();
61 }
62
queue_pte_barriers(void)63 static inline void queue_pte_barriers(void)
64 {
65 if (is_lazy_mmu_mode_active()) {
66 /* Avoid the atomic op if already set. */
67 if (!test_thread_flag(TIF_LAZY_MMU_PENDING))
68 set_thread_flag(TIF_LAZY_MMU_PENDING);
69 } else {
70 emit_pte_barriers();
71 }
72 }
73
arch_enter_lazy_mmu_mode(void)74 static inline void arch_enter_lazy_mmu_mode(void) {}
75
arch_flush_lazy_mmu_mode(void)76 static inline void arch_flush_lazy_mmu_mode(void)
77 {
78 if (test_and_clear_thread_flag(TIF_LAZY_MMU_PENDING))
79 emit_pte_barriers();
80 }
81
arch_leave_lazy_mmu_mode(void)82 static inline void arch_leave_lazy_mmu_mode(void)
83 {
84 arch_flush_lazy_mmu_mode();
85 }
86
87 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
88 #define __HAVE_ARCH_FLUSH_PMD_TLB_RANGE
89
90 /* Set stride and tlb_level in flush_*_tlb_range */
91 #define flush_pmd_tlb_range(vma, addr, end) \
92 __flush_tlb_range(vma, addr, end, PMD_SIZE, 2, TLBF_NONE)
93 #define flush_pud_tlb_range(vma, addr, end) \
94 __flush_tlb_range(vma, addr, end, PUD_SIZE, 1, TLBF_NONE)
95 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
96
97 /*
98 * We use local TLB invalidation instruction when reusing page in
99 * write protection fault handler to avoid TLBI broadcast in the hot
100 * path. This will cause spurious page faults if stale read-only TLB
101 * entries exist.
102 */
103 #define flush_tlb_fix_spurious_fault(vma, address, ptep) \
104 __flush_tlb_page(vma, address, TLBF_NOBROADCAST | TLBF_NONOTIFY)
105
106 #define flush_tlb_fix_spurious_fault_pmd(vma, address, pmdp) \
107 __flush_tlb_range(vma, address, address + PMD_SIZE, PMD_SIZE, 2, \
108 TLBF_NOBROADCAST | TLBF_NONOTIFY | TLBF_NOWALKCACHE)
109
110 #define pte_ERROR(e) \
111 pr_err("%s:%d: bad pte %016llx.\n", __FILE__, __LINE__, pte_val(e))
112
113 #ifdef CONFIG_ARM64_PA_BITS_52
__pte_to_phys(pte_t pte)114 static inline phys_addr_t __pte_to_phys(pte_t pte)
115 {
116 pte_val(pte) &= ~PTE_MAYBE_SHARED;
117 return (pte_val(pte) & PTE_ADDR_LOW) |
118 ((pte_val(pte) & PTE_ADDR_HIGH) << PTE_ADDR_HIGH_SHIFT);
119 }
__phys_to_pte_val(phys_addr_t phys)120 static inline pteval_t __phys_to_pte_val(phys_addr_t phys)
121 {
122 return (phys | (phys >> PTE_ADDR_HIGH_SHIFT)) & PHYS_TO_PTE_ADDR_MASK;
123 }
124 #else
__pte_to_phys(pte_t pte)125 static inline phys_addr_t __pte_to_phys(pte_t pte)
126 {
127 return pte_val(pte) & PTE_ADDR_LOW;
128 }
129
__phys_to_pte_val(phys_addr_t phys)130 static inline pteval_t __phys_to_pte_val(phys_addr_t phys)
131 {
132 return phys;
133 }
134 #endif
135
136 #define pte_pfn(pte) (__pte_to_phys(pte) >> PAGE_SHIFT)
137 #define pfn_pte(pfn,prot) \
138 __pte(__phys_to_pte_val((phys_addr_t)(pfn) << PAGE_SHIFT) | pgprot_val(prot))
139
140 #define pte_none(pte) (!pte_val(pte))
141 #define pte_page(pte) (pfn_to_page(pte_pfn(pte)))
142
143 /*
144 * The following only work if pte_present(). Undefined behaviour otherwise.
145 */
146 #define pte_present(pte) (pte_valid(pte) || pte_present_invalid(pte))
147 #define pte_young(pte) (!!(pte_val(pte) & PTE_AF))
148 #define pte_special(pte) (!!(pte_val(pte) & PTE_SPECIAL))
149 #define pte_write(pte) (!!(pte_val(pte) & PTE_WRITE))
150 #define pte_rdonly(pte) (!!(pte_val(pte) & PTE_RDONLY))
151 #define pte_user(pte) (!!(pte_val(pte) & PTE_USER))
152 #define pte_user_exec(pte) (!(pte_val(pte) & PTE_UXN))
153 #define pte_cont(pte) (!!(pte_val(pte) & PTE_CONT))
154 #define pte_tagged(pte) ((pte_val(pte) & PTE_ATTRINDX_MASK) == \
155 PTE_ATTRINDX(MT_NORMAL_TAGGED))
156
157 #define pte_cont_addr_end(addr, end) \
158 ({ unsigned long __boundary = ((addr) + CONT_PTE_SIZE) & CONT_PTE_MASK; \
159 (__boundary - 1 < (end) - 1) ? __boundary : (end); \
160 })
161
162 #define pmd_cont_addr_end(addr, end) \
163 ({ unsigned long __boundary = ((addr) + CONT_PMD_SIZE) & CONT_PMD_MASK; \
164 (__boundary - 1 < (end) - 1) ? __boundary : (end); \
165 })
166
167 #define pte_hw_dirty(pte) (pte_write(pte) && !pte_rdonly(pte))
168 #define pte_sw_dirty(pte) (!!(pte_val(pte) & PTE_DIRTY))
169 #define pte_dirty(pte) (pte_sw_dirty(pte) || pte_hw_dirty(pte))
170
171 #define pte_valid(pte) (!!(pte_val(pte) & PTE_VALID))
172 #define pte_present_invalid(pte) \
173 ((pte_val(pte) & (PTE_VALID | PTE_PRESENT_INVALID)) == PTE_PRESENT_INVALID)
174 /*
175 * Execute-only user mappings do not have the PTE_USER bit set. All valid
176 * kernel mappings have the PTE_UXN bit set.
177 */
178 #define pte_valid_not_user(pte) \
179 ((pte_val(pte) & (PTE_VALID | PTE_USER | PTE_UXN)) == (PTE_VALID | PTE_UXN))
180 /*
181 * Returns true if the pte is valid and has the contiguous bit set.
182 */
183 #define pte_valid_cont(pte) (pte_valid(pte) && pte_cont(pte))
184 /*
185 * Could the pte be present in the TLB? We must check mm_tlb_flush_pending
186 * so that we don't erroneously return false for pages that have been
187 * remapped as PROT_NONE but are yet to be flushed from the TLB.
188 * Note that we can't make any assumptions based on the state of the access
189 * flag, since __ptep_clear_flush_young() elides a DSB when invalidating the
190 * TLB.
191 */
192 #define pte_accessible(mm, pte) \
193 (mm_tlb_flush_pending(mm) ? pte_present(pte) : pte_valid(pte))
194
por_el0_allows_pkey(u8 pkey,bool write,bool execute)195 static inline bool por_el0_allows_pkey(u8 pkey, bool write, bool execute)
196 {
197 u64 por;
198
199 if (!system_supports_poe())
200 return true;
201
202 por = read_sysreg_s(SYS_POR_EL0);
203
204 if (write)
205 return por_elx_allows_write(por, pkey);
206
207 if (execute)
208 return por_elx_allows_exec(por, pkey);
209
210 return por_elx_allows_read(por, pkey);
211 }
212
213 /*
214 * p??_access_permitted() is true for valid user mappings (PTE_USER
215 * bit set, subject to the write permission check). For execute-only
216 * mappings, like PROT_EXEC with EPAN (both PTE_USER and PTE_UXN bits
217 * not set) must return false. PROT_NONE mappings do not have the
218 * PTE_VALID bit set.
219 */
220 #define pte_access_permitted_no_overlay(pte, write) \
221 (((pte_val(pte) & (PTE_VALID | PTE_USER)) == (PTE_VALID | PTE_USER)) && (!(write) || pte_write(pte)))
222 #define pte_access_permitted(pte, write) \
223 (pte_access_permitted_no_overlay(pte, write) && \
224 por_el0_allows_pkey(FIELD_GET(PTE_PO_IDX_MASK, pte_val(pte)), write, false))
225 #define pmd_access_permitted(pmd, write) \
226 (pte_access_permitted(pmd_pte(pmd), (write)))
227 #define pud_access_permitted(pud, write) \
228 (pte_access_permitted(pud_pte(pud), (write)))
229
clear_pte_bit(pte_t pte,pgprot_t prot)230 static inline pte_t clear_pte_bit(pte_t pte, pgprot_t prot)
231 {
232 pte_val(pte) &= ~pgprot_val(prot);
233 return pte;
234 }
235
set_pte_bit(pte_t pte,pgprot_t prot)236 static inline pte_t set_pte_bit(pte_t pte, pgprot_t prot)
237 {
238 pte_val(pte) |= pgprot_val(prot);
239 return pte;
240 }
241
clear_pmd_bit(pmd_t pmd,pgprot_t prot)242 static inline pmd_t clear_pmd_bit(pmd_t pmd, pgprot_t prot)
243 {
244 pmd_val(pmd) &= ~pgprot_val(prot);
245 return pmd;
246 }
247
set_pmd_bit(pmd_t pmd,pgprot_t prot)248 static inline pmd_t set_pmd_bit(pmd_t pmd, pgprot_t prot)
249 {
250 pmd_val(pmd) |= pgprot_val(prot);
251 return pmd;
252 }
253
pte_mkwrite_novma(pte_t pte)254 static inline pte_t pte_mkwrite_novma(pte_t pte)
255 {
256 pte = set_pte_bit(pte, __pgprot(PTE_WRITE));
257 if (pte_sw_dirty(pte))
258 pte = clear_pte_bit(pte, __pgprot(PTE_RDONLY));
259 return pte;
260 }
261
pte_mkclean(pte_t pte)262 static inline pte_t pte_mkclean(pte_t pte)
263 {
264 pte = clear_pte_bit(pte, __pgprot(PTE_DIRTY));
265 pte = set_pte_bit(pte, __pgprot(PTE_RDONLY));
266
267 return pte;
268 }
269
pte_mkdirty(pte_t pte)270 static inline pte_t pte_mkdirty(pte_t pte)
271 {
272 pte = set_pte_bit(pte, __pgprot(PTE_DIRTY));
273
274 if (pte_write(pte))
275 pte = clear_pte_bit(pte, __pgprot(PTE_RDONLY));
276
277 return pte;
278 }
279
pte_wrprotect(pte_t pte)280 static inline pte_t pte_wrprotect(pte_t pte)
281 {
282 /*
283 * If hardware-dirty (PTE_WRITE/DBM bit set and PTE_RDONLY
284 * clear), set the PTE_DIRTY bit.
285 */
286 if (pte_hw_dirty(pte))
287 pte = set_pte_bit(pte, __pgprot(PTE_DIRTY));
288
289 pte = clear_pte_bit(pte, __pgprot(PTE_WRITE));
290 pte = set_pte_bit(pte, __pgprot(PTE_RDONLY));
291 return pte;
292 }
293
pte_mkold(pte_t pte)294 static inline pte_t pte_mkold(pte_t pte)
295 {
296 return clear_pte_bit(pte, __pgprot(PTE_AF));
297 }
298
pte_mkyoung(pte_t pte)299 static inline pte_t pte_mkyoung(pte_t pte)
300 {
301 return set_pte_bit(pte, __pgprot(PTE_AF));
302 }
303
pte_mkspecial(pte_t pte)304 static inline pte_t pte_mkspecial(pte_t pte)
305 {
306 return set_pte_bit(pte, __pgprot(PTE_SPECIAL));
307 }
308
pte_mkcont(pte_t pte)309 static inline pte_t pte_mkcont(pte_t pte)
310 {
311 return set_pte_bit(pte, __pgprot(PTE_CONT));
312 }
313
pte_mknoncont(pte_t pte)314 static inline pte_t pte_mknoncont(pte_t pte)
315 {
316 return clear_pte_bit(pte, __pgprot(PTE_CONT));
317 }
318
pte_mkvalid_k(pte_t pte)319 static inline pte_t pte_mkvalid_k(pte_t pte)
320 {
321 pte = clear_pte_bit(pte, __pgprot(PTE_PRESENT_INVALID));
322 pte = set_pte_bit(pte, __pgprot(PTE_PRESENT_VALID_KERNEL));
323 return pte;
324 }
325
pte_mkinvalid(pte_t pte)326 static inline pte_t pte_mkinvalid(pte_t pte)
327 {
328 pte = set_pte_bit(pte, __pgprot(PTE_PRESENT_INVALID));
329 pte = clear_pte_bit(pte, __pgprot(PTE_VALID));
330 return pte;
331 }
332
pmd_mkcont(pmd_t pmd)333 static inline pmd_t pmd_mkcont(pmd_t pmd)
334 {
335 return __pmd(pmd_val(pmd) | PMD_SECT_CONT);
336 }
337
pmd_mknoncont(pmd_t pmd)338 static inline pmd_t pmd_mknoncont(pmd_t pmd)
339 {
340 return __pmd(pmd_val(pmd) & ~PMD_SECT_CONT);
341 }
342
343 #ifdef CONFIG_HAVE_ARCH_USERFAULTFD_WP
pte_uffd_wp(pte_t pte)344 static inline int pte_uffd_wp(pte_t pte)
345 {
346 return !!(pte_val(pte) & PTE_UFFD_WP);
347 }
348
pte_mkuffd_wp(pte_t pte)349 static inline pte_t pte_mkuffd_wp(pte_t pte)
350 {
351 return pte_wrprotect(set_pte_bit(pte, __pgprot(PTE_UFFD_WP)));
352 }
353
pte_clear_uffd_wp(pte_t pte)354 static inline pte_t pte_clear_uffd_wp(pte_t pte)
355 {
356 return clear_pte_bit(pte, __pgprot(PTE_UFFD_WP));
357 }
358 #endif /* CONFIG_HAVE_ARCH_USERFAULTFD_WP */
359
__set_pte_nosync(pte_t * ptep,pte_t pte)360 static inline void __set_pte_nosync(pte_t *ptep, pte_t pte)
361 {
362 WRITE_ONCE(*ptep, pte);
363 }
364
__set_pte_complete(pte_t pte)365 static inline void __set_pte_complete(pte_t pte)
366 {
367 /*
368 * Only if the new pte is valid and kernel, otherwise TLB maintenance
369 * has the necessary barriers.
370 */
371 if (pte_valid_not_user(pte))
372 queue_pte_barriers();
373 }
374
__set_pte(pte_t * ptep,pte_t pte)375 static inline void __set_pte(pte_t *ptep, pte_t pte)
376 {
377 __set_pte_nosync(ptep, pte);
378 __set_pte_complete(pte);
379 }
380
__ptep_get(pte_t * ptep)381 static inline pte_t __ptep_get(pte_t *ptep)
382 {
383 return READ_ONCE(*ptep);
384 }
385
386 extern void __sync_icache_dcache(pte_t pteval);
387 bool pgattr_change_is_safe(pteval_t old, pteval_t new);
388
389 /*
390 * PTE bits configuration in the presence of hardware Dirty Bit Management
391 * (PTE_WRITE == PTE_DBM):
392 *
393 * Dirty Writable | PTE_RDONLY PTE_WRITE PTE_DIRTY (sw)
394 * 0 0 | 1 0 0
395 * 0 1 | 1 1 0
396 * 1 0 | 1 0 1
397 * 1 1 | 0 1 x
398 *
399 * When hardware DBM is not present, the software PTE_DIRTY bit is updated via
400 * the page fault mechanism. Checking the dirty status of a pte becomes:
401 *
402 * PTE_DIRTY || (PTE_WRITE && !PTE_RDONLY)
403 */
404
__check_safe_pte_update(struct mm_struct * mm,pte_t * ptep,pte_t pte)405 static inline void __check_safe_pte_update(struct mm_struct *mm, pte_t *ptep,
406 pte_t pte)
407 {
408 pte_t old_pte;
409
410 if (!IS_ENABLED(CONFIG_DEBUG_VM))
411 return;
412
413 old_pte = __ptep_get(ptep);
414
415 if (!pte_valid(old_pte) || !pte_valid(pte))
416 return;
417 if (mm != current->active_mm && atomic_read(&mm->mm_users) <= 1)
418 return;
419
420 /*
421 * Check for potential race with hardware updates of the pte
422 * (__ptep_set_access_flags safely changes valid ptes without going
423 * through an invalid entry).
424 */
425 VM_WARN_ONCE(!pte_young(pte),
426 "%s: racy access flag clearing: 0x%016llx -> 0x%016llx",
427 __func__, pte_val(old_pte), pte_val(pte));
428 VM_WARN_ONCE(pte_write(old_pte) && !pte_dirty(pte),
429 "%s: racy dirty state clearing: 0x%016llx -> 0x%016llx",
430 __func__, pte_val(old_pte), pte_val(pte));
431 VM_WARN_ONCE(!pgattr_change_is_safe(pte_val(old_pte), pte_val(pte)),
432 "%s: unsafe attribute change: 0x%016llx -> 0x%016llx",
433 __func__, pte_val(old_pte), pte_val(pte));
434 }
435
__sync_cache_and_tags(pte_t pte,unsigned int nr_pages)436 static inline void __sync_cache_and_tags(pte_t pte, unsigned int nr_pages)
437 {
438 if (pte_present(pte) && pte_user_exec(pte) && !pte_special(pte))
439 __sync_icache_dcache(pte);
440
441 /*
442 * If the PTE would provide user space access to the tags associated
443 * with it then ensure that the MTE tags are synchronised. Although
444 * pte_access_permitted_no_overlay() returns false for exec only
445 * mappings, they don't expose tags (instruction fetches don't check
446 * tags).
447 */
448 if (system_supports_mte() && pte_access_permitted_no_overlay(pte, false) &&
449 !pte_special(pte) && pte_tagged(pte))
450 mte_sync_tags(pte, nr_pages);
451 }
452
453 /*
454 * Select all bits except the pfn
455 */
456 #define pte_pgprot pte_pgprot
pte_pgprot(pte_t pte)457 static inline pgprot_t pte_pgprot(pte_t pte)
458 {
459 unsigned long pfn = pte_pfn(pte);
460
461 return __pgprot(pte_val(pfn_pte(pfn, __pgprot(0))) ^ pte_val(pte));
462 }
463
464 #define pte_advance_pfn pte_advance_pfn
pte_advance_pfn(pte_t pte,unsigned long nr)465 static inline pte_t pte_advance_pfn(pte_t pte, unsigned long nr)
466 {
467 return pfn_pte(pte_pfn(pte) + nr, pte_pgprot(pte));
468 }
469
470 /*
471 * Hugetlb definitions.
472 */
473 #define HUGE_MAX_HSTATE 4
474 #define HPAGE_SHIFT PMD_SHIFT
475 #define HPAGE_SIZE (_AC(1, UL) << HPAGE_SHIFT)
476 #define HPAGE_MASK (~(HPAGE_SIZE - 1))
477 #define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT)
478
pgd_pte(pgd_t pgd)479 static inline pte_t pgd_pte(pgd_t pgd)
480 {
481 return __pte(pgd_val(pgd));
482 }
483
p4d_pte(p4d_t p4d)484 static inline pte_t p4d_pte(p4d_t p4d)
485 {
486 return __pte(p4d_val(p4d));
487 }
488
pud_pte(pud_t pud)489 static inline pte_t pud_pte(pud_t pud)
490 {
491 return __pte(pud_val(pud));
492 }
493
pte_pud(pte_t pte)494 static inline pud_t pte_pud(pte_t pte)
495 {
496 return __pud(pte_val(pte));
497 }
498
pud_pmd(pud_t pud)499 static inline pmd_t pud_pmd(pud_t pud)
500 {
501 return __pmd(pud_val(pud));
502 }
503
pmd_pte(pmd_t pmd)504 static inline pte_t pmd_pte(pmd_t pmd)
505 {
506 return __pte(pmd_val(pmd));
507 }
508
pte_pmd(pte_t pte)509 static inline pmd_t pte_pmd(pte_t pte)
510 {
511 return __pmd(pte_val(pte));
512 }
513
mk_pud_sect_prot(pgprot_t prot)514 static inline pgprot_t mk_pud_sect_prot(pgprot_t prot)
515 {
516 return __pgprot((pgprot_val(prot) & ~PUD_TYPE_MASK) | PUD_TYPE_SECT);
517 }
518
mk_pmd_sect_prot(pgprot_t prot)519 static inline pgprot_t mk_pmd_sect_prot(pgprot_t prot)
520 {
521 return __pgprot((pgprot_val(prot) & ~PMD_TYPE_MASK) | PMD_TYPE_SECT);
522 }
523
pte_swp_mkexclusive(pte_t pte)524 static inline pte_t pte_swp_mkexclusive(pte_t pte)
525 {
526 return set_pte_bit(pte, __pgprot(PTE_SWP_EXCLUSIVE));
527 }
528
pte_swp_exclusive(pte_t pte)529 static inline bool pte_swp_exclusive(pte_t pte)
530 {
531 return pte_val(pte) & PTE_SWP_EXCLUSIVE;
532 }
533
pte_swp_clear_exclusive(pte_t pte)534 static inline pte_t pte_swp_clear_exclusive(pte_t pte)
535 {
536 return clear_pte_bit(pte, __pgprot(PTE_SWP_EXCLUSIVE));
537 }
538
539 #ifdef CONFIG_HAVE_ARCH_USERFAULTFD_WP
pte_swp_mkuffd_wp(pte_t pte)540 static inline pte_t pte_swp_mkuffd_wp(pte_t pte)
541 {
542 return set_pte_bit(pte, __pgprot(PTE_SWP_UFFD_WP));
543 }
544
pte_swp_uffd_wp(pte_t pte)545 static inline int pte_swp_uffd_wp(pte_t pte)
546 {
547 return !!(pte_val(pte) & PTE_SWP_UFFD_WP);
548 }
549
pte_swp_clear_uffd_wp(pte_t pte)550 static inline pte_t pte_swp_clear_uffd_wp(pte_t pte)
551 {
552 return clear_pte_bit(pte, __pgprot(PTE_SWP_UFFD_WP));
553 }
554 #endif /* CONFIG_HAVE_ARCH_USERFAULTFD_WP */
555
556 #ifdef CONFIG_NUMA_BALANCING
557 /*
558 * See the comment in include/linux/pgtable.h
559 */
pte_protnone(pte_t pte)560 static inline int pte_protnone(pte_t pte)
561 {
562 /*
563 * pte_present_invalid() tells us that the pte is invalid from HW
564 * perspective but present from SW perspective, so the fields are to be
565 * interpreted as per the HW layout. The second 2 checks are the unique
566 * encoding that we use for PROT_NONE. It is insufficient to only use
567 * the first check because we share the same encoding scheme with pmds
568 * which support pmd_mkinvalid(), so can be present-invalid without
569 * being PROT_NONE.
570 */
571 return pte_present_invalid(pte) && !pte_user(pte) && !pte_user_exec(pte);
572 }
573
pmd_protnone(pmd_t pmd)574 static inline int pmd_protnone(pmd_t pmd)
575 {
576 return pte_protnone(pmd_pte(pmd));
577 }
578 #endif
579
580 #define pmd_present(pmd) pte_present(pmd_pte(pmd))
581 #define pmd_dirty(pmd) pte_dirty(pmd_pte(pmd))
582 #define pmd_young(pmd) pte_young(pmd_pte(pmd))
583 #define pmd_valid(pmd) pte_valid(pmd_pte(pmd))
584 #define pmd_user(pmd) pte_user(pmd_pte(pmd))
585 #define pmd_user_exec(pmd) pte_user_exec(pmd_pte(pmd))
586 #define pmd_cont(pmd) pte_cont(pmd_pte(pmd))
587 #define pmd_wrprotect(pmd) pte_pmd(pte_wrprotect(pmd_pte(pmd)))
588 #define pmd_mkold(pmd) pte_pmd(pte_mkold(pmd_pte(pmd)))
589 #define pmd_mkwrite_novma(pmd) pte_pmd(pte_mkwrite_novma(pmd_pte(pmd)))
590 #define pmd_mkclean(pmd) pte_pmd(pte_mkclean(pmd_pte(pmd)))
591 #define pmd_mkdirty(pmd) pte_pmd(pte_mkdirty(pmd_pte(pmd)))
592 #define pmd_mkyoung(pmd) pte_pmd(pte_mkyoung(pmd_pte(pmd)))
593 #define pmd_mkvalid_k(pmd) pte_pmd(pte_mkvalid_k(pmd_pte(pmd)))
594 #define pmd_mkinvalid(pmd) pte_pmd(pte_mkinvalid(pmd_pte(pmd)))
595 #ifdef CONFIG_HAVE_ARCH_USERFAULTFD_WP
596 #define pmd_uffd_wp(pmd) pte_uffd_wp(pmd_pte(pmd))
597 #define pmd_mkuffd_wp(pmd) pte_pmd(pte_mkuffd_wp(pmd_pte(pmd)))
598 #define pmd_clear_uffd_wp(pmd) pte_pmd(pte_clear_uffd_wp(pmd_pte(pmd)))
599 #define pmd_swp_uffd_wp(pmd) pte_swp_uffd_wp(pmd_pte(pmd))
600 #define pmd_swp_mkuffd_wp(pmd) pte_pmd(pte_swp_mkuffd_wp(pmd_pte(pmd)))
601 #define pmd_swp_clear_uffd_wp(pmd) \
602 pte_pmd(pte_swp_clear_uffd_wp(pmd_pte(pmd)))
603 #endif /* CONFIG_HAVE_ARCH_USERFAULTFD_WP */
604
605 #define pmd_write(pmd) pte_write(pmd_pte(pmd))
606
pmd_mkhuge(pmd_t pmd)607 static inline pmd_t pmd_mkhuge(pmd_t pmd)
608 {
609 /*
610 * It's possible that the pmd is present-invalid on entry
611 * and in that case it needs to remain present-invalid on
612 * exit. So ensure the VALID bit does not get modified.
613 */
614 pmdval_t mask = PMD_TYPE_MASK & ~PTE_VALID;
615 pmdval_t val = PMD_TYPE_SECT & ~PTE_VALID;
616
617 return __pmd((pmd_val(pmd) & ~mask) | val);
618 }
619
620 #ifdef CONFIG_ARCH_SUPPORTS_PMD_PFNMAP
621 #define pmd_special(pte) (!!((pmd_val(pte) & PTE_SPECIAL)))
pmd_mkspecial(pmd_t pmd)622 static inline pmd_t pmd_mkspecial(pmd_t pmd)
623 {
624 return set_pmd_bit(pmd, __pgprot(PTE_SPECIAL));
625 }
626 #endif
627
628 #define __pmd_to_phys(pmd) __pte_to_phys(pmd_pte(pmd))
629 #define __phys_to_pmd_val(phys) __phys_to_pte_val(phys)
630 #define pmd_pfn(pmd) ((__pmd_to_phys(pmd) & PMD_MASK) >> PAGE_SHIFT)
631 #define pfn_pmd(pfn,prot) __pmd(__phys_to_pmd_val((phys_addr_t)(pfn) << PAGE_SHIFT) | pgprot_val(prot))
632
633 #define pud_young(pud) pte_young(pud_pte(pud))
634 #define pud_mkyoung(pud) pte_pud(pte_mkyoung(pud_pte(pud)))
635 #define pud_mkwrite_novma(pud) pte_pud(pte_mkwrite_novma(pud_pte(pud)))
636 #define pud_mkvalid_k(pud) pte_pud(pte_mkvalid_k(pud_pte(pud)))
637 #define pud_write(pud) pte_write(pud_pte(pud))
638
pud_mkhuge(pud_t pud)639 static inline pud_t pud_mkhuge(pud_t pud)
640 {
641 /*
642 * It's possible that the pud is present-invalid on entry
643 * and in that case it needs to remain present-invalid on
644 * exit. So ensure the VALID bit does not get modified.
645 */
646 pudval_t mask = PUD_TYPE_MASK & ~PTE_VALID;
647 pudval_t val = PUD_TYPE_SECT & ~PTE_VALID;
648
649 return __pud((pud_val(pud) & ~mask) | val);
650 }
651
652 #define __pud_to_phys(pud) __pte_to_phys(pud_pte(pud))
653 #define __phys_to_pud_val(phys) __phys_to_pte_val(phys)
654 #define pud_pfn(pud) ((__pud_to_phys(pud) & PUD_MASK) >> PAGE_SHIFT)
655 #define pfn_pud(pfn,prot) __pud(__phys_to_pud_val((phys_addr_t)(pfn) << PAGE_SHIFT) | pgprot_val(prot))
656
657 #define pmd_pgprot pmd_pgprot
pmd_pgprot(pmd_t pmd)658 static inline pgprot_t pmd_pgprot(pmd_t pmd)
659 {
660 unsigned long pfn = pmd_pfn(pmd);
661
662 return __pgprot(pmd_val(pfn_pmd(pfn, __pgprot(0))) ^ pmd_val(pmd));
663 }
664
665 #define pud_pgprot pud_pgprot
pud_pgprot(pud_t pud)666 static inline pgprot_t pud_pgprot(pud_t pud)
667 {
668 unsigned long pfn = pud_pfn(pud);
669
670 return __pgprot(pud_val(pfn_pud(pfn, __pgprot(0))) ^ pud_val(pud));
671 }
672
__set_ptes_anysz(struct mm_struct * mm,unsigned long addr,pte_t * ptep,pte_t pte,unsigned int nr,unsigned long pgsize)673 static inline void __set_ptes_anysz(struct mm_struct *mm, unsigned long addr,
674 pte_t *ptep, pte_t pte, unsigned int nr,
675 unsigned long pgsize)
676 {
677 unsigned long stride = pgsize >> PAGE_SHIFT;
678
679 switch (pgsize) {
680 case PAGE_SIZE:
681 page_table_check_ptes_set(mm, addr, ptep, pte, nr);
682 break;
683 case PMD_SIZE:
684 page_table_check_pmds_set(mm, addr, (pmd_t *)ptep,
685 pte_pmd(pte), nr);
686 break;
687 #ifndef __PAGETABLE_PMD_FOLDED
688 case PUD_SIZE:
689 page_table_check_puds_set(mm, addr, (pud_t *)ptep,
690 pte_pud(pte), nr);
691 break;
692 #endif
693 default:
694 VM_WARN_ON(1);
695 }
696
697 __sync_cache_and_tags(pte, nr * stride);
698
699 for (;;) {
700 __check_safe_pte_update(mm, ptep, pte);
701 __set_pte_nosync(ptep, pte);
702 if (--nr == 0)
703 break;
704 ptep++;
705 pte = pte_advance_pfn(pte, stride);
706 }
707
708 __set_pte_complete(pte);
709 }
710
__set_ptes(struct mm_struct * mm,unsigned long addr,pte_t * ptep,pte_t pte,unsigned int nr)711 static inline void __set_ptes(struct mm_struct *mm, unsigned long addr,
712 pte_t *ptep, pte_t pte, unsigned int nr)
713 {
714 __set_ptes_anysz(mm, addr, ptep, pte, nr, PAGE_SIZE);
715 }
716
__set_pmds(struct mm_struct * mm,unsigned long addr,pmd_t * pmdp,pmd_t pmd,unsigned int nr)717 static inline void __set_pmds(struct mm_struct *mm, unsigned long addr,
718 pmd_t *pmdp, pmd_t pmd, unsigned int nr)
719 {
720 __set_ptes_anysz(mm, addr, (pte_t *)pmdp, pmd_pte(pmd), nr, PMD_SIZE);
721 }
722 #define set_pmd_at(mm, addr, pmdp, pmd) __set_pmds(mm, addr, pmdp, pmd, 1)
723
__set_puds(struct mm_struct * mm,unsigned long addr,pud_t * pudp,pud_t pud,unsigned int nr)724 static inline void __set_puds(struct mm_struct *mm, unsigned long addr,
725 pud_t *pudp, pud_t pud, unsigned int nr)
726 {
727 __set_ptes_anysz(mm, addr, (pte_t *)pudp, pud_pte(pud), nr, PUD_SIZE);
728 }
729 #define set_pud_at(mm, addr, pudp, pud) __set_puds(mm, addr, pudp, pud, 1)
730
731 #define __p4d_to_phys(p4d) __pte_to_phys(p4d_pte(p4d))
732 #define __phys_to_p4d_val(phys) __phys_to_pte_val(phys)
733
734 #define __pgd_to_phys(pgd) __pte_to_phys(pgd_pte(pgd))
735 #define __phys_to_pgd_val(phys) __phys_to_pte_val(phys)
736
737 #define __pgprot_modify(prot,mask,bits) \
738 __pgprot((pgprot_val(prot) & ~(mask)) | (bits))
739
740 #define pgprot_nx(prot) \
741 __pgprot_modify(prot, PTE_MAYBE_GP, PTE_PXN)
742
743 #define pgprot_decrypted(prot) \
744 __pgprot_modify(prot, PROT_NS_SHARED, PROT_NS_SHARED)
745 #define pgprot_encrypted(prot) \
746 __pgprot_modify(prot, PROT_NS_SHARED, 0)
747
748 /*
749 * Mark the prot value as uncacheable and unbufferable.
750 */
751 #define pgprot_noncached(prot) \
752 __pgprot_modify(prot, PTE_ATTRINDX_MASK, PTE_ATTRINDX(MT_DEVICE_nGnRnE) | PTE_PXN | PTE_UXN)
753 #define pgprot_writecombine(prot) \
754 __pgprot_modify(prot, PTE_ATTRINDX_MASK, PTE_ATTRINDX(MT_NORMAL_NC) | PTE_PXN | PTE_UXN)
755 #define pgprot_device(prot) \
756 __pgprot_modify(prot, PTE_ATTRINDX_MASK, PTE_ATTRINDX(MT_DEVICE_nGnRE) | PTE_PXN | PTE_UXN)
757 #define pgprot_tagged(prot) \
758 __pgprot_modify(prot, PTE_ATTRINDX_MASK, PTE_ATTRINDX(MT_NORMAL_TAGGED))
759 #define pgprot_mhp pgprot_tagged
760 /*
761 * DMA allocations for non-coherent devices use what the Arm architecture calls
762 * "Normal non-cacheable" memory, which permits speculation, unaligned accesses
763 * and merging of writes. This is different from "Device-nGnR[nE]" memory which
764 * is intended for MMIO and thus forbids speculation, preserves access size,
765 * requires strict alignment and can also force write responses to come from the
766 * endpoint.
767 */
768 #define pgprot_dmacoherent(prot) \
769 __pgprot_modify(prot, PTE_ATTRINDX_MASK, \
770 PTE_ATTRINDX(MT_NORMAL_NC) | PTE_PXN | PTE_UXN)
771
772 #define __HAVE_PHYS_MEM_ACCESS_PROT
773 struct file;
774 extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
775 unsigned long size, pgprot_t vma_prot);
776
777 #define pmd_none(pmd) (!pmd_val(pmd))
778
779 #define pmd_table(pmd) ((pmd_val(pmd) & PMD_TYPE_MASK) == \
780 PMD_TYPE_TABLE)
781
782 #define pmd_leaf pmd_leaf
pmd_leaf(pmd_t pmd)783 static inline bool pmd_leaf(pmd_t pmd)
784 {
785 return pmd_present(pmd) && !pmd_table(pmd);
786 }
787
788 #define pmd_bad(pmd) (!pmd_table(pmd))
789
790 #define pmd_leaf_size(pmd) (pmd_cont(pmd) ? CONT_PMD_SIZE : PMD_SIZE)
791 #define pte_leaf_size(pte) (pte_cont(pte) ? CONT_PTE_SIZE : PAGE_SIZE)
792
793 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
pmd_trans_huge(pmd_t pmd)794 static inline int pmd_trans_huge(pmd_t pmd)
795 {
796 /*
797 * If pmd is present-invalid, pmd_table() won't detect it
798 * as a table, so force the valid bit for the comparison.
799 */
800 return pmd_present(pmd) && !pmd_table(__pmd(pmd_val(pmd) | PTE_VALID));
801 }
802 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
803
804 #if defined(CONFIG_ARM64_64K_PAGES) || CONFIG_PGTABLE_LEVELS < 3
pud_table(pud_t pud)805 static inline bool pud_table(pud_t pud) { return true; }
806 #else
807 #define pud_table(pud) ((pud_val(pud) & PUD_TYPE_MASK) == \
808 PUD_TYPE_TABLE)
809 #endif
810
811 extern pgd_t swapper_pg_dir[];
812 extern pgd_t idmap_pg_dir[];
813 extern pgd_t tramp_pg_dir[];
814 extern pgd_t reserved_pg_dir[];
815
816 extern void set_swapper_pgd(pgd_t *pgdp, pgd_t pgd);
817
in_swapper_pgdir(void * addr)818 static inline bool in_swapper_pgdir(void *addr)
819 {
820 return ((unsigned long)addr & PAGE_MASK) ==
821 ((unsigned long)swapper_pg_dir & PAGE_MASK);
822 }
823
set_pmd(pmd_t * pmdp,pmd_t pmd)824 static inline void set_pmd(pmd_t *pmdp, pmd_t pmd)
825 {
826 #ifdef __PAGETABLE_PMD_FOLDED
827 if (in_swapper_pgdir(pmdp)) {
828 set_swapper_pgd((pgd_t *)pmdp, __pgd(pmd_val(pmd)));
829 return;
830 }
831 #endif /* __PAGETABLE_PMD_FOLDED */
832
833 WRITE_ONCE(*pmdp, pmd);
834
835 if (pmd_valid(pmd))
836 queue_pte_barriers();
837 }
838
pmd_clear(pmd_t * pmdp)839 static inline void pmd_clear(pmd_t *pmdp)
840 {
841 set_pmd(pmdp, __pmd(0));
842 }
843
pmd_page_paddr(pmd_t pmd)844 static inline phys_addr_t pmd_page_paddr(pmd_t pmd)
845 {
846 return __pmd_to_phys(pmd);
847 }
848
pmd_page_vaddr(pmd_t pmd)849 static inline unsigned long pmd_page_vaddr(pmd_t pmd)
850 {
851 return (unsigned long)__va(pmd_page_paddr(pmd));
852 }
853
854 /* Find an entry in the third-level page table. */
855 #define pte_offset_phys(dir,addr) (pmd_page_paddr(READ_ONCE(*(dir))) + pte_index(addr) * sizeof(pte_t))
856
857 #define pte_set_fixmap(addr) ((pte_t *)set_fixmap_offset(FIX_PTE, addr))
858 #define pte_set_fixmap_offset(pmd, addr) pte_set_fixmap(pte_offset_phys(pmd, addr))
859 #define pte_clear_fixmap() clear_fixmap(FIX_PTE)
860
861 #define pmd_page(pmd) phys_to_page(__pmd_to_phys(pmd))
862
863 /* use ONLY for statically allocated translation tables */
864 #define pte_offset_kimg(dir,addr) ((pte_t *)__phys_to_kimg(pte_offset_phys((dir), (addr))))
865
866 #if CONFIG_PGTABLE_LEVELS > 2
867
868 #define pmd_ERROR(e) \
869 pr_err("%s:%d: bad pmd %016llx.\n", __FILE__, __LINE__, pmd_val(e))
870
871 #define pud_none(pud) (!pud_val(pud))
872 #define pud_bad(pud) ((pud_val(pud) & PUD_TYPE_MASK) != \
873 PUD_TYPE_TABLE)
874 #define pud_present(pud) pte_present(pud_pte(pud))
875 #ifndef __PAGETABLE_PMD_FOLDED
876 #define pud_leaf pud_leaf
pud_leaf(pud_t pud)877 static inline bool pud_leaf(pud_t pud)
878 {
879 return pud_present(pud) && !pud_table(pud);
880 }
881 #else
882 #define pud_leaf(pud) false
883 #endif
884 #define pud_valid(pud) pte_valid(pud_pte(pud))
885 #define pud_user(pud) pte_user(pud_pte(pud))
886 #define pud_user_exec(pud) pte_user_exec(pud_pte(pud))
887
888 static inline bool pgtable_l4_enabled(void);
889
set_pud(pud_t * pudp,pud_t pud)890 static inline void set_pud(pud_t *pudp, pud_t pud)
891 {
892 if (!pgtable_l4_enabled() && in_swapper_pgdir(pudp)) {
893 set_swapper_pgd((pgd_t *)pudp, __pgd(pud_val(pud)));
894 return;
895 }
896
897 WRITE_ONCE(*pudp, pud);
898
899 if (pud_valid(pud))
900 queue_pte_barriers();
901 }
902
pud_clear(pud_t * pudp)903 static inline void pud_clear(pud_t *pudp)
904 {
905 set_pud(pudp, __pud(0));
906 }
907
pud_page_paddr(pud_t pud)908 static inline phys_addr_t pud_page_paddr(pud_t pud)
909 {
910 return __pud_to_phys(pud);
911 }
912
pud_pgtable(pud_t pud)913 static inline pmd_t *pud_pgtable(pud_t pud)
914 {
915 return (pmd_t *)__va(pud_page_paddr(pud));
916 }
917
918 /* Find an entry in the second-level page table. */
919 #define pmd_offset_phys(dir, addr) (pud_page_paddr(READ_ONCE(*(dir))) + pmd_index(addr) * sizeof(pmd_t))
920
921 #define pmd_set_fixmap(addr) ((pmd_t *)set_fixmap_offset(FIX_PMD, addr))
922 #define pmd_set_fixmap_offset(pud, addr) pmd_set_fixmap(pmd_offset_phys(pud, addr))
923 #define pmd_clear_fixmap() clear_fixmap(FIX_PMD)
924
925 #define pud_page(pud) phys_to_page(__pud_to_phys(pud))
926
927 /* use ONLY for statically allocated translation tables */
928 #define pmd_offset_kimg(dir,addr) ((pmd_t *)__phys_to_kimg(pmd_offset_phys((dir), (addr))))
929
930 #else
931
932 #define pud_valid(pud) false
933 #define pud_page_paddr(pud) ({ BUILD_BUG(); 0; })
934 #define pud_user_exec(pud) pud_user(pud) /* Always 0 with folding */
935
936 /* Match pmd_offset folding in <asm/generic/pgtable-nopmd.h> */
937 #define pmd_set_fixmap(addr) NULL
938 #define pmd_set_fixmap_offset(pudp, addr) ((pmd_t *)pudp)
939 #define pmd_clear_fixmap()
940
941 #define pmd_offset_kimg(dir,addr) ((pmd_t *)dir)
942
943 #endif /* CONFIG_PGTABLE_LEVELS > 2 */
944
945 #if CONFIG_PGTABLE_LEVELS > 3
946
pgtable_l4_enabled(void)947 static __always_inline bool pgtable_l4_enabled(void)
948 {
949 if (CONFIG_PGTABLE_LEVELS > 4 || !IS_ENABLED(CONFIG_ARM64_LPA2))
950 return true;
951 if (!alternative_has_cap_likely(ARM64_ALWAYS_BOOT))
952 return vabits_actual == VA_BITS;
953 return alternative_has_cap_unlikely(ARM64_HAS_VA52);
954 }
955
mm_pud_folded(const struct mm_struct * mm)956 static inline bool mm_pud_folded(const struct mm_struct *mm)
957 {
958 return !pgtable_l4_enabled();
959 }
960 #define mm_pud_folded mm_pud_folded
961
962 #define pud_ERROR(e) \
963 pr_err("%s:%d: bad pud %016llx.\n", __FILE__, __LINE__, pud_val(e))
964
965 #define p4d_none(p4d) (pgtable_l4_enabled() && !p4d_val(p4d))
966 #define p4d_bad(p4d) (pgtable_l4_enabled() && \
967 ((p4d_val(p4d) & P4D_TYPE_MASK) != \
968 P4D_TYPE_TABLE))
969 #define p4d_present(p4d) (!p4d_none(p4d))
970
set_p4d(p4d_t * p4dp,p4d_t p4d)971 static inline void set_p4d(p4d_t *p4dp, p4d_t p4d)
972 {
973 if (in_swapper_pgdir(p4dp)) {
974 set_swapper_pgd((pgd_t *)p4dp, __pgd(p4d_val(p4d)));
975 return;
976 }
977
978 WRITE_ONCE(*p4dp, p4d);
979 queue_pte_barriers();
980 }
981
p4d_clear(p4d_t * p4dp)982 static inline void p4d_clear(p4d_t *p4dp)
983 {
984 if (pgtable_l4_enabled())
985 set_p4d(p4dp, __p4d(0));
986 }
987
p4d_page_paddr(p4d_t p4d)988 static inline phys_addr_t p4d_page_paddr(p4d_t p4d)
989 {
990 return __p4d_to_phys(p4d);
991 }
992
993 #define pud_index(addr) (((addr) >> PUD_SHIFT) & (PTRS_PER_PUD - 1))
994
p4d_to_folded_pud(p4d_t * p4dp,unsigned long addr)995 static inline pud_t *p4d_to_folded_pud(p4d_t *p4dp, unsigned long addr)
996 {
997 /* Ensure that 'p4dp' indexes a page table according to 'addr' */
998 VM_BUG_ON(((addr >> P4D_SHIFT) ^ ((u64)p4dp >> 3)) % PTRS_PER_P4D);
999
1000 return (pud_t *)PTR_ALIGN_DOWN(p4dp, PAGE_SIZE) + pud_index(addr);
1001 }
1002
p4d_pgtable(p4d_t p4d)1003 static inline pud_t *p4d_pgtable(p4d_t p4d)
1004 {
1005 return (pud_t *)__va(p4d_page_paddr(p4d));
1006 }
1007
pud_offset_phys(p4d_t * p4dp,unsigned long addr)1008 static inline phys_addr_t pud_offset_phys(p4d_t *p4dp, unsigned long addr)
1009 {
1010 BUG_ON(!pgtable_l4_enabled());
1011
1012 return p4d_page_paddr(READ_ONCE(*p4dp)) + pud_index(addr) * sizeof(pud_t);
1013 }
1014
1015 static inline
pud_offset_lockless(p4d_t * p4dp,p4d_t p4d,unsigned long addr)1016 pud_t *pud_offset_lockless(p4d_t *p4dp, p4d_t p4d, unsigned long addr)
1017 {
1018 if (!pgtable_l4_enabled())
1019 return p4d_to_folded_pud(p4dp, addr);
1020 return (pud_t *)__va(p4d_page_paddr(p4d)) + pud_index(addr);
1021 }
1022 #define pud_offset_lockless pud_offset_lockless
1023
pud_offset(p4d_t * p4dp,unsigned long addr)1024 static inline pud_t *pud_offset(p4d_t *p4dp, unsigned long addr)
1025 {
1026 return pud_offset_lockless(p4dp, READ_ONCE(*p4dp), addr);
1027 }
1028 #define pud_offset pud_offset
1029
pud_set_fixmap(unsigned long addr)1030 static inline pud_t *pud_set_fixmap(unsigned long addr)
1031 {
1032 if (!pgtable_l4_enabled())
1033 return NULL;
1034 return (pud_t *)set_fixmap_offset(FIX_PUD, addr);
1035 }
1036
pud_set_fixmap_offset(p4d_t * p4dp,unsigned long addr)1037 static inline pud_t *pud_set_fixmap_offset(p4d_t *p4dp, unsigned long addr)
1038 {
1039 if (!pgtable_l4_enabled())
1040 return p4d_to_folded_pud(p4dp, addr);
1041 return pud_set_fixmap(pud_offset_phys(p4dp, addr));
1042 }
1043
pud_clear_fixmap(void)1044 static inline void pud_clear_fixmap(void)
1045 {
1046 if (pgtable_l4_enabled())
1047 clear_fixmap(FIX_PUD);
1048 }
1049
1050 /* use ONLY for statically allocated translation tables */
pud_offset_kimg(p4d_t * p4dp,u64 addr)1051 static inline pud_t *pud_offset_kimg(p4d_t *p4dp, u64 addr)
1052 {
1053 if (!pgtable_l4_enabled())
1054 return p4d_to_folded_pud(p4dp, addr);
1055 return (pud_t *)__phys_to_kimg(pud_offset_phys(p4dp, addr));
1056 }
1057
1058 #define p4d_page(p4d) pfn_to_page(__phys_to_pfn(__p4d_to_phys(p4d)))
1059
1060 #else
1061
pgtable_l4_enabled(void)1062 static inline bool pgtable_l4_enabled(void) { return false; }
1063
1064 #define p4d_page_paddr(p4d) ({ BUILD_BUG(); 0;})
1065
1066 /* Match pud_offset folding in <asm/generic/pgtable-nopud.h> */
1067 #define pud_set_fixmap(addr) NULL
1068 #define pud_set_fixmap_offset(pgdp, addr) ((pud_t *)pgdp)
1069 #define pud_clear_fixmap()
1070
1071 #define pud_offset_kimg(dir,addr) ((pud_t *)dir)
1072
1073 #endif /* CONFIG_PGTABLE_LEVELS > 3 */
1074
1075 #if CONFIG_PGTABLE_LEVELS > 4
1076
pgtable_l5_enabled(void)1077 static __always_inline bool pgtable_l5_enabled(void)
1078 {
1079 if (!alternative_has_cap_likely(ARM64_ALWAYS_BOOT))
1080 return vabits_actual == VA_BITS;
1081 return alternative_has_cap_unlikely(ARM64_HAS_VA52);
1082 }
1083
mm_p4d_folded(const struct mm_struct * mm)1084 static inline bool mm_p4d_folded(const struct mm_struct *mm)
1085 {
1086 return !pgtable_l5_enabled();
1087 }
1088 #define mm_p4d_folded mm_p4d_folded
1089
1090 #define p4d_ERROR(e) \
1091 pr_err("%s:%d: bad p4d %016llx.\n", __FILE__, __LINE__, p4d_val(e))
1092
1093 #define pgd_none(pgd) (pgtable_l5_enabled() && !pgd_val(pgd))
1094 #define pgd_bad(pgd) (pgtable_l5_enabled() && \
1095 ((pgd_val(pgd) & PGD_TYPE_MASK) != \
1096 PGD_TYPE_TABLE))
1097 #define pgd_present(pgd) (!pgd_none(pgd))
1098
set_pgd(pgd_t * pgdp,pgd_t pgd)1099 static inline void set_pgd(pgd_t *pgdp, pgd_t pgd)
1100 {
1101 if (in_swapper_pgdir(pgdp)) {
1102 set_swapper_pgd(pgdp, __pgd(pgd_val(pgd)));
1103 return;
1104 }
1105
1106 WRITE_ONCE(*pgdp, pgd);
1107 queue_pte_barriers();
1108 }
1109
pgd_clear(pgd_t * pgdp)1110 static inline void pgd_clear(pgd_t *pgdp)
1111 {
1112 if (pgtable_l5_enabled())
1113 set_pgd(pgdp, __pgd(0));
1114 }
1115
pgd_page_paddr(pgd_t pgd)1116 static inline phys_addr_t pgd_page_paddr(pgd_t pgd)
1117 {
1118 return __pgd_to_phys(pgd);
1119 }
1120
1121 #define p4d_index(addr) (((addr) >> P4D_SHIFT) & (PTRS_PER_P4D - 1))
1122
pgd_to_folded_p4d(pgd_t * pgdp,unsigned long addr)1123 static inline p4d_t *pgd_to_folded_p4d(pgd_t *pgdp, unsigned long addr)
1124 {
1125 /* Ensure that 'pgdp' indexes a page table according to 'addr' */
1126 VM_BUG_ON(((addr >> PGDIR_SHIFT) ^ ((u64)pgdp >> 3)) % PTRS_PER_PGD);
1127
1128 return (p4d_t *)PTR_ALIGN_DOWN(pgdp, PAGE_SIZE) + p4d_index(addr);
1129 }
1130
p4d_offset_phys(pgd_t * pgdp,unsigned long addr)1131 static inline phys_addr_t p4d_offset_phys(pgd_t *pgdp, unsigned long addr)
1132 {
1133 BUG_ON(!pgtable_l5_enabled());
1134
1135 return pgd_page_paddr(READ_ONCE(*pgdp)) + p4d_index(addr) * sizeof(p4d_t);
1136 }
1137
1138 static inline
p4d_offset_lockless(pgd_t * pgdp,pgd_t pgd,unsigned long addr)1139 p4d_t *p4d_offset_lockless(pgd_t *pgdp, pgd_t pgd, unsigned long addr)
1140 {
1141 if (!pgtable_l5_enabled())
1142 return pgd_to_folded_p4d(pgdp, addr);
1143 return (p4d_t *)__va(pgd_page_paddr(pgd)) + p4d_index(addr);
1144 }
1145 #define p4d_offset_lockless p4d_offset_lockless
1146
p4d_offset(pgd_t * pgdp,unsigned long addr)1147 static inline p4d_t *p4d_offset(pgd_t *pgdp, unsigned long addr)
1148 {
1149 return p4d_offset_lockless(pgdp, READ_ONCE(*pgdp), addr);
1150 }
1151
p4d_set_fixmap(unsigned long addr)1152 static inline p4d_t *p4d_set_fixmap(unsigned long addr)
1153 {
1154 if (!pgtable_l5_enabled())
1155 return NULL;
1156 return (p4d_t *)set_fixmap_offset(FIX_P4D, addr);
1157 }
1158
p4d_set_fixmap_offset(pgd_t * pgdp,unsigned long addr)1159 static inline p4d_t *p4d_set_fixmap_offset(pgd_t *pgdp, unsigned long addr)
1160 {
1161 if (!pgtable_l5_enabled())
1162 return pgd_to_folded_p4d(pgdp, addr);
1163 return p4d_set_fixmap(p4d_offset_phys(pgdp, addr));
1164 }
1165
p4d_clear_fixmap(void)1166 static inline void p4d_clear_fixmap(void)
1167 {
1168 if (pgtable_l5_enabled())
1169 clear_fixmap(FIX_P4D);
1170 }
1171
1172 /* use ONLY for statically allocated translation tables */
p4d_offset_kimg(pgd_t * pgdp,u64 addr)1173 static inline p4d_t *p4d_offset_kimg(pgd_t *pgdp, u64 addr)
1174 {
1175 if (!pgtable_l5_enabled())
1176 return pgd_to_folded_p4d(pgdp, addr);
1177 return (p4d_t *)__phys_to_kimg(p4d_offset_phys(pgdp, addr));
1178 }
1179
1180 #define pgd_page(pgd) pfn_to_page(__phys_to_pfn(__pgd_to_phys(pgd)))
1181
1182 #else
1183
pgtable_l5_enabled(void)1184 static inline bool pgtable_l5_enabled(void) { return false; }
1185
1186 #define p4d_index(addr) (((addr) >> P4D_SHIFT) & (PTRS_PER_P4D - 1))
1187
1188 /* Match p4d_offset folding in <asm/generic/pgtable-nop4d.h> */
1189 #define p4d_set_fixmap(addr) NULL
1190 #define p4d_set_fixmap_offset(p4dp, addr) ((p4d_t *)p4dp)
1191 #define p4d_clear_fixmap()
1192
1193 #define p4d_offset_kimg(dir,addr) ((p4d_t *)dir)
1194
1195 static inline
p4d_offset_lockless_folded(pgd_t * pgdp,pgd_t pgd,unsigned long addr)1196 p4d_t *p4d_offset_lockless_folded(pgd_t *pgdp, pgd_t pgd, unsigned long addr)
1197 {
1198 /*
1199 * With runtime folding of the pud, pud_offset_lockless() passes
1200 * the 'pgd_t *' we return here to p4d_to_folded_pud(), which
1201 * will offset the pointer assuming that it points into
1202 * a page-table page. However, the fast GUP path passes us a
1203 * pgd_t allocated on the stack and so we must use the original
1204 * pointer in 'pgdp' to construct the p4d pointer instead of
1205 * using the generic p4d_offset_lockless() implementation.
1206 *
1207 * Note: reusing the original pointer means that we may
1208 * dereference the same (live) page-table entry multiple times.
1209 * This is safe because it is still only loaded once in the
1210 * context of each level and the CPU guarantees same-address
1211 * read-after-read ordering.
1212 */
1213 return p4d_offset(pgdp, addr);
1214 }
1215 #define p4d_offset_lockless p4d_offset_lockless_folded
1216
1217 #endif /* CONFIG_PGTABLE_LEVELS > 4 */
1218
1219 #define pgd_ERROR(e) \
1220 pr_err("%s:%d: bad pgd %016llx.\n", __FILE__, __LINE__, pgd_val(e))
1221
1222 #define pgd_set_fixmap(addr) ((pgd_t *)set_fixmap_offset(FIX_PGD, addr))
1223 #define pgd_clear_fixmap() clear_fixmap(FIX_PGD)
1224
pte_modify(pte_t pte,pgprot_t newprot)1225 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
1226 {
1227 /*
1228 * Normal and Normal-Tagged are two different memory types and indices
1229 * in MAIR_EL1. The mask below has to include PTE_ATTRINDX_MASK.
1230 */
1231 const pteval_t mask = PTE_USER | PTE_PXN | PTE_UXN | PTE_RDONLY |
1232 PTE_PRESENT_INVALID | PTE_VALID | PTE_WRITE |
1233 PTE_GP | PTE_ATTRINDX_MASK | PTE_PO_IDX_MASK;
1234
1235 /* preserve the hardware dirty information */
1236 if (pte_hw_dirty(pte))
1237 pte = set_pte_bit(pte, __pgprot(PTE_DIRTY));
1238
1239 pte_val(pte) = (pte_val(pte) & ~mask) | (pgprot_val(newprot) & mask);
1240 /*
1241 * If we end up clearing hw dirtiness for a sw-dirty PTE, set hardware
1242 * dirtiness again.
1243 */
1244 if (pte_sw_dirty(pte))
1245 pte = pte_mkdirty(pte);
1246 return pte;
1247 }
1248
pmd_modify(pmd_t pmd,pgprot_t newprot)1249 static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot)
1250 {
1251 return pte_pmd(pte_modify(pmd_pte(pmd), newprot));
1252 }
1253
1254 extern int __ptep_set_access_flags_anysz(struct vm_area_struct *vma,
1255 unsigned long address, pte_t *ptep,
1256 pte_t entry, int dirty,
1257 unsigned long pgsize);
1258
__ptep_set_access_flags(struct vm_area_struct * vma,unsigned long address,pte_t * ptep,pte_t entry,int dirty)1259 static inline int __ptep_set_access_flags(struct vm_area_struct *vma,
1260 unsigned long address, pte_t *ptep,
1261 pte_t entry, int dirty)
1262 {
1263 return __ptep_set_access_flags_anysz(vma, address, ptep, entry, dirty,
1264 PAGE_SIZE);
1265 }
1266
1267 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1268 #define __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS
pmdp_set_access_flags(struct vm_area_struct * vma,unsigned long address,pmd_t * pmdp,pmd_t entry,int dirty)1269 static inline int pmdp_set_access_flags(struct vm_area_struct *vma,
1270 unsigned long address, pmd_t *pmdp,
1271 pmd_t entry, int dirty)
1272 {
1273 return __ptep_set_access_flags_anysz(vma, address, (pte_t *)pmdp,
1274 pmd_pte(entry), dirty, PMD_SIZE);
1275 }
1276 #endif
1277
1278 #ifdef CONFIG_PAGE_TABLE_CHECK
pte_user_accessible_page(pte_t pte,unsigned long addr)1279 static inline bool pte_user_accessible_page(pte_t pte, unsigned long addr)
1280 {
1281 return pte_valid(pte) && (pte_user(pte) || pte_user_exec(pte));
1282 }
1283
pmd_user_accessible_page(pmd_t pmd,unsigned long addr)1284 static inline bool pmd_user_accessible_page(pmd_t pmd, unsigned long addr)
1285 {
1286 return pmd_valid(pmd) && !pmd_table(pmd) && (pmd_user(pmd) || pmd_user_exec(pmd));
1287 }
1288
pud_user_accessible_page(pud_t pud,unsigned long addr)1289 static inline bool pud_user_accessible_page(pud_t pud, unsigned long addr)
1290 {
1291 return pud_valid(pud) && !pud_table(pud) && (pud_user(pud) || pud_user_exec(pud));
1292 }
1293 #endif
1294
1295 /*
1296 * Atomic pte/pmd modifications.
1297 */
1298
__pte_clear(struct mm_struct * mm,unsigned long addr,pte_t * ptep)1299 static inline void __pte_clear(struct mm_struct *mm,
1300 unsigned long addr, pte_t *ptep)
1301 {
1302 __set_pte(ptep, __pte(0));
1303 }
1304
__ptep_test_and_clear_young(struct vm_area_struct * vma,unsigned long address,pte_t * ptep)1305 static inline bool __ptep_test_and_clear_young(struct vm_area_struct *vma,
1306 unsigned long address, pte_t *ptep)
1307 {
1308 pte_t old_pte, pte;
1309
1310 pte = __ptep_get(ptep);
1311 do {
1312 old_pte = pte;
1313 pte = pte_mkold(pte);
1314 pte_val(pte) = cmpxchg_relaxed(&pte_val(*ptep),
1315 pte_val(old_pte), pte_val(pte));
1316 } while (pte_val(pte) != pte_val(old_pte));
1317
1318 return pte_young(pte);
1319 }
1320
__ptep_clear_flush_young(struct vm_area_struct * vma,unsigned long address,pte_t * ptep)1321 static inline bool __ptep_clear_flush_young(struct vm_area_struct *vma,
1322 unsigned long address, pte_t *ptep)
1323 {
1324 bool young = __ptep_test_and_clear_young(vma, address, ptep);
1325
1326 if (young) {
1327 /*
1328 * We can elide the trailing DSB here since the worst that can
1329 * happen is that a CPU continues to use the young entry in its
1330 * TLB and we mistakenly reclaim the associated page. The
1331 * window for such an event is bounded by the next
1332 * context-switch, which provides a DSB to complete the TLB
1333 * invalidation.
1334 */
1335 __flush_tlb_page(vma, address, TLBF_NOSYNC);
1336 }
1337
1338 return young;
1339 }
1340
1341 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG)
1342 #define __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG
pmdp_test_and_clear_young(struct vm_area_struct * vma,unsigned long address,pmd_t * pmdp)1343 static inline bool pmdp_test_and_clear_young(struct vm_area_struct *vma,
1344 unsigned long address, pmd_t *pmdp)
1345 {
1346 /* Operation applies to PMD table entry only if FEAT_HAFT is enabled */
1347 VM_WARN_ON(pmd_table(READ_ONCE(*pmdp)) && !system_supports_haft());
1348 return __ptep_test_and_clear_young(vma, address, (pte_t *)pmdp);
1349 }
1350 #endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG */
1351
__ptep_get_and_clear_anysz(struct mm_struct * mm,unsigned long address,pte_t * ptep,unsigned long pgsize)1352 static inline pte_t __ptep_get_and_clear_anysz(struct mm_struct *mm,
1353 unsigned long address,
1354 pte_t *ptep,
1355 unsigned long pgsize)
1356 {
1357 pte_t pte = __pte(xchg_relaxed(&pte_val(*ptep), 0));
1358
1359 switch (pgsize) {
1360 case PAGE_SIZE:
1361 page_table_check_pte_clear(mm, address, pte);
1362 break;
1363 case PMD_SIZE:
1364 page_table_check_pmd_clear(mm, address, pte_pmd(pte));
1365 break;
1366 #ifndef __PAGETABLE_PMD_FOLDED
1367 case PUD_SIZE:
1368 page_table_check_pud_clear(mm, address, pte_pud(pte));
1369 break;
1370 #endif
1371 default:
1372 VM_WARN_ON(1);
1373 }
1374
1375 return pte;
1376 }
1377
__ptep_get_and_clear(struct mm_struct * mm,unsigned long address,pte_t * ptep)1378 static inline pte_t __ptep_get_and_clear(struct mm_struct *mm,
1379 unsigned long address, pte_t *ptep)
1380 {
1381 return __ptep_get_and_clear_anysz(mm, address, ptep, PAGE_SIZE);
1382 }
1383
__clear_full_ptes(struct mm_struct * mm,unsigned long addr,pte_t * ptep,unsigned int nr,int full)1384 static inline void __clear_full_ptes(struct mm_struct *mm, unsigned long addr,
1385 pte_t *ptep, unsigned int nr, int full)
1386 {
1387 for (;;) {
1388 __ptep_get_and_clear(mm, addr, ptep);
1389 if (--nr == 0)
1390 break;
1391 ptep++;
1392 addr += PAGE_SIZE;
1393 }
1394 }
1395
__get_and_clear_full_ptes(struct mm_struct * mm,unsigned long addr,pte_t * ptep,unsigned int nr,int full)1396 static inline pte_t __get_and_clear_full_ptes(struct mm_struct *mm,
1397 unsigned long addr, pte_t *ptep,
1398 unsigned int nr, int full)
1399 {
1400 pte_t pte, tmp_pte;
1401
1402 pte = __ptep_get_and_clear(mm, addr, ptep);
1403 while (--nr) {
1404 ptep++;
1405 addr += PAGE_SIZE;
1406 tmp_pte = __ptep_get_and_clear(mm, addr, ptep);
1407 if (pte_dirty(tmp_pte))
1408 pte = pte_mkdirty(pte);
1409 if (pte_young(tmp_pte))
1410 pte = pte_mkyoung(pte);
1411 }
1412 return pte;
1413 }
1414
1415 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1416 #define __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR
pmdp_huge_get_and_clear(struct mm_struct * mm,unsigned long address,pmd_t * pmdp)1417 static inline pmd_t pmdp_huge_get_and_clear(struct mm_struct *mm,
1418 unsigned long address, pmd_t *pmdp)
1419 {
1420 return pte_pmd(__ptep_get_and_clear_anysz(mm, address, (pte_t *)pmdp, PMD_SIZE));
1421 }
1422 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1423
___ptep_set_wrprotect(struct mm_struct * mm,unsigned long address,pte_t * ptep,pte_t pte)1424 static inline void ___ptep_set_wrprotect(struct mm_struct *mm,
1425 unsigned long address, pte_t *ptep,
1426 pte_t pte)
1427 {
1428 pte_t old_pte;
1429
1430 do {
1431 old_pte = pte;
1432 pte = pte_wrprotect(pte);
1433 pte_val(pte) = cmpxchg_relaxed(&pte_val(*ptep),
1434 pte_val(old_pte), pte_val(pte));
1435 } while (pte_val(pte) != pte_val(old_pte));
1436 }
1437
1438 /*
1439 * __ptep_set_wrprotect - mark read-only while transferring potential hardware
1440 * dirty status (PTE_DBM && !PTE_RDONLY) to the software PTE_DIRTY bit.
1441 */
__ptep_set_wrprotect(struct mm_struct * mm,unsigned long address,pte_t * ptep)1442 static inline void __ptep_set_wrprotect(struct mm_struct *mm,
1443 unsigned long address, pte_t *ptep)
1444 {
1445 ___ptep_set_wrprotect(mm, address, ptep, __ptep_get(ptep));
1446 }
1447
__wrprotect_ptes(struct mm_struct * mm,unsigned long address,pte_t * ptep,unsigned int nr)1448 static inline void __wrprotect_ptes(struct mm_struct *mm, unsigned long address,
1449 pte_t *ptep, unsigned int nr)
1450 {
1451 unsigned int i;
1452
1453 for (i = 0; i < nr; i++, address += PAGE_SIZE, ptep++)
1454 __ptep_set_wrprotect(mm, address, ptep);
1455 }
1456
__clear_young_dirty_pte(struct vm_area_struct * vma,unsigned long addr,pte_t * ptep,pte_t pte,cydp_t flags)1457 static inline void __clear_young_dirty_pte(struct vm_area_struct *vma,
1458 unsigned long addr, pte_t *ptep,
1459 pte_t pte, cydp_t flags)
1460 {
1461 pte_t old_pte;
1462
1463 do {
1464 old_pte = pte;
1465
1466 if (flags & CYDP_CLEAR_YOUNG)
1467 pte = pte_mkold(pte);
1468 if (flags & CYDP_CLEAR_DIRTY)
1469 pte = pte_mkclean(pte);
1470
1471 pte_val(pte) = cmpxchg_relaxed(&pte_val(*ptep),
1472 pte_val(old_pte), pte_val(pte));
1473 } while (pte_val(pte) != pte_val(old_pte));
1474 }
1475
__clear_young_dirty_ptes(struct vm_area_struct * vma,unsigned long addr,pte_t * ptep,unsigned int nr,cydp_t flags)1476 static inline void __clear_young_dirty_ptes(struct vm_area_struct *vma,
1477 unsigned long addr, pte_t *ptep,
1478 unsigned int nr, cydp_t flags)
1479 {
1480 pte_t pte;
1481
1482 for (;;) {
1483 pte = __ptep_get(ptep);
1484
1485 if (flags == (CYDP_CLEAR_YOUNG | CYDP_CLEAR_DIRTY))
1486 __set_pte(ptep, pte_mkclean(pte_mkold(pte)));
1487 else
1488 __clear_young_dirty_pte(vma, addr, ptep, pte, flags);
1489
1490 if (--nr == 0)
1491 break;
1492 ptep++;
1493 addr += PAGE_SIZE;
1494 }
1495 }
1496
1497 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1498 #define __HAVE_ARCH_PMDP_SET_WRPROTECT
pmdp_set_wrprotect(struct mm_struct * mm,unsigned long address,pmd_t * pmdp)1499 static inline void pmdp_set_wrprotect(struct mm_struct *mm,
1500 unsigned long address, pmd_t *pmdp)
1501 {
1502 __ptep_set_wrprotect(mm, address, (pte_t *)pmdp);
1503 }
1504
1505 #define pmdp_establish pmdp_establish
pmdp_establish(struct vm_area_struct * vma,unsigned long address,pmd_t * pmdp,pmd_t pmd)1506 static inline pmd_t pmdp_establish(struct vm_area_struct *vma,
1507 unsigned long address, pmd_t *pmdp, pmd_t pmd)
1508 {
1509 page_table_check_pmd_set(vma->vm_mm, address, pmdp, pmd);
1510 return __pmd(xchg_relaxed(&pmd_val(*pmdp), pmd_val(pmd)));
1511 }
1512 #endif
1513
1514 /*
1515 * Encode and decode a swap entry:
1516 * bits 0-1: present (must be zero)
1517 * bits 2: remember PG_anon_exclusive
1518 * bit 3: remember uffd-wp state
1519 * bits 6-10: swap type
1520 * bit 11: PTE_PRESENT_INVALID (must be zero)
1521 * bits 12-61: swap offset
1522 */
1523 #define __SWP_TYPE_SHIFT 6
1524 #define __SWP_TYPE_BITS 5
1525 #define __SWP_TYPE_MASK ((1 << __SWP_TYPE_BITS) - 1)
1526 #define __SWP_OFFSET_SHIFT 12
1527 #define __SWP_OFFSET_BITS 50
1528 #define __SWP_OFFSET_MASK ((1UL << __SWP_OFFSET_BITS) - 1)
1529
1530 #define __swp_type(x) (((x).val >> __SWP_TYPE_SHIFT) & __SWP_TYPE_MASK)
1531 #define __swp_offset(x) (((x).val >> __SWP_OFFSET_SHIFT) & __SWP_OFFSET_MASK)
1532 #define __swp_entry(type,offset) ((swp_entry_t) { ((type) << __SWP_TYPE_SHIFT) | ((offset) << __SWP_OFFSET_SHIFT) })
1533
1534 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
1535 #define __swp_entry_to_pte(swp) ((pte_t) { (swp).val })
1536
1537 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1538 #define __pmd_to_swp_entry(pmd) ((swp_entry_t) { pmd_val(pmd) })
1539 #define __swp_entry_to_pmd(swp) __pmd((swp).val)
1540 #endif /* CONFIG_ARCH_ENABLE_THP_MIGRATION */
1541
1542 /*
1543 * Ensure that there are not more swap files than can be encoded in the kernel
1544 * PTEs.
1545 */
1546 #define MAX_SWAPFILES_CHECK() BUILD_BUG_ON(MAX_SWAPFILES_SHIFT > __SWP_TYPE_BITS)
1547
1548 #ifdef CONFIG_ARM64_MTE
1549
1550 #define __HAVE_ARCH_PREPARE_TO_SWAP
1551 extern int arch_prepare_to_swap(struct folio *folio);
1552
1553 #define __HAVE_ARCH_SWAP_INVALIDATE
arch_swap_invalidate_page(int type,pgoff_t offset)1554 static inline void arch_swap_invalidate_page(int type, pgoff_t offset)
1555 {
1556 if (system_supports_mte())
1557 mte_invalidate_tags(type, offset);
1558 }
1559
arch_swap_invalidate_area(int type)1560 static inline void arch_swap_invalidate_area(int type)
1561 {
1562 if (system_supports_mte())
1563 mte_invalidate_tags_area(type);
1564 }
1565
1566 #define __HAVE_ARCH_SWAP_RESTORE
1567 extern void arch_swap_restore(swp_entry_t entry, struct folio *folio);
1568
1569 #endif /* CONFIG_ARM64_MTE */
1570
1571 /*
1572 * On AArch64, the cache coherency is handled via the __set_ptes() function.
1573 */
update_mmu_cache_range(struct vm_fault * vmf,struct vm_area_struct * vma,unsigned long addr,pte_t * ptep,unsigned int nr)1574 static inline void update_mmu_cache_range(struct vm_fault *vmf,
1575 struct vm_area_struct *vma, unsigned long addr, pte_t *ptep,
1576 unsigned int nr)
1577 {
1578 /*
1579 * We don't do anything here, so there's a very small chance of
1580 * us retaking a user fault which we just fixed up. The alternative
1581 * is doing a dsb(ishst), but that penalises the fastpath.
1582 */
1583 }
1584
1585 #define update_mmu_cache(vma, addr, ptep) \
1586 update_mmu_cache_range(NULL, vma, addr, ptep, 1)
1587 #define update_mmu_cache_pmd(vma, address, pmd) do { } while (0)
1588
1589 #ifdef CONFIG_ARM64_PA_BITS_52
1590 #define phys_to_ttbr(addr) (((addr) | ((addr) >> 46)) & TTBR_BADDR_MASK_52)
1591 #else
1592 #define phys_to_ttbr(addr) (addr)
1593 #endif
1594
1595 /*
1596 * On arm64 without hardware Access Flag, copying from user will fail because
1597 * the pte is old and cannot be marked young. So we always end up with zeroed
1598 * page after fork() + CoW for pfn mappings. We don't always have a
1599 * hardware-managed access flag on arm64.
1600 */
1601 #define arch_has_hw_pte_young cpu_has_hw_af
1602
1603 #ifdef CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG
1604 #define arch_has_hw_nonleaf_pmd_young system_supports_haft
1605 #endif
1606
1607 /*
1608 * Experimentally, it's cheap to set the access flag in hardware and we
1609 * benefit from prefaulting mappings as 'old' to start with.
1610 */
1611 #define arch_wants_old_prefaulted_pte cpu_has_hw_af
1612
1613 /*
1614 * Request exec memory is read into pagecache in at least 64K folios. This size
1615 * can be contpte-mapped when 4K base pages are in use (16 pages into 1 iTLB
1616 * entry), and HPA can coalesce it (4 pages into 1 TLB entry) when 16K base
1617 * pages are in use.
1618 */
1619 #define exec_folio_order() ilog2(SZ_64K >> PAGE_SHIFT)
1620
pud_sect_supported(void)1621 static inline bool pud_sect_supported(void)
1622 {
1623 return PAGE_SIZE == SZ_4K;
1624 }
1625
1626
1627 #define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
1628 #define ptep_modify_prot_start ptep_modify_prot_start
1629 extern pte_t ptep_modify_prot_start(struct vm_area_struct *vma,
1630 unsigned long addr, pte_t *ptep);
1631
1632 #define ptep_modify_prot_commit ptep_modify_prot_commit
1633 extern void ptep_modify_prot_commit(struct vm_area_struct *vma,
1634 unsigned long addr, pte_t *ptep,
1635 pte_t old_pte, pte_t new_pte);
1636
1637 #define modify_prot_start_ptes modify_prot_start_ptes
1638 extern pte_t modify_prot_start_ptes(struct vm_area_struct *vma,
1639 unsigned long addr, pte_t *ptep,
1640 unsigned int nr);
1641
1642 #define modify_prot_commit_ptes modify_prot_commit_ptes
1643 extern void modify_prot_commit_ptes(struct vm_area_struct *vma, unsigned long addr,
1644 pte_t *ptep, pte_t old_pte, pte_t pte,
1645 unsigned int nr);
1646
1647 #ifdef CONFIG_ARM64_CONTPTE
1648
1649 /*
1650 * The contpte APIs are used to transparently manage the contiguous bit in ptes
1651 * where it is possible and makes sense to do so. The PTE_CONT bit is considered
1652 * a private implementation detail of the public ptep API (see below).
1653 */
1654 extern void __contpte_try_fold(struct mm_struct *mm, unsigned long addr,
1655 pte_t *ptep, pte_t pte);
1656 extern void __contpte_try_unfold(struct mm_struct *mm, unsigned long addr,
1657 pte_t *ptep, pte_t pte);
1658 extern pte_t contpte_ptep_get(pte_t *ptep, pte_t orig_pte);
1659 extern pte_t contpte_ptep_get_lockless(pte_t *orig_ptep);
1660 extern void contpte_set_ptes(struct mm_struct *mm, unsigned long addr,
1661 pte_t *ptep, pte_t pte, unsigned int nr);
1662 extern void contpte_clear_full_ptes(struct mm_struct *mm, unsigned long addr,
1663 pte_t *ptep, unsigned int nr, int full);
1664 extern pte_t contpte_get_and_clear_full_ptes(struct mm_struct *mm,
1665 unsigned long addr, pte_t *ptep,
1666 unsigned int nr, int full);
1667 bool contpte_test_and_clear_young_ptes(struct vm_area_struct *vma,
1668 unsigned long addr, pte_t *ptep, unsigned int nr);
1669 bool contpte_clear_flush_young_ptes(struct vm_area_struct *vma,
1670 unsigned long addr, pte_t *ptep, unsigned int nr);
1671 extern void contpte_wrprotect_ptes(struct mm_struct *mm, unsigned long addr,
1672 pte_t *ptep, unsigned int nr);
1673 extern int contpte_ptep_set_access_flags(struct vm_area_struct *vma,
1674 unsigned long addr, pte_t *ptep,
1675 pte_t entry, int dirty);
1676 extern void contpte_clear_young_dirty_ptes(struct vm_area_struct *vma,
1677 unsigned long addr, pte_t *ptep,
1678 unsigned int nr, cydp_t flags);
1679
contpte_try_fold(struct mm_struct * mm,unsigned long addr,pte_t * ptep,pte_t pte)1680 static __always_inline void contpte_try_fold(struct mm_struct *mm,
1681 unsigned long addr, pte_t *ptep, pte_t pte)
1682 {
1683 /*
1684 * Only bother trying if both the virtual and physical addresses are
1685 * aligned and correspond to the last entry in a contig range. The core
1686 * code mostly modifies ranges from low to high, so this is the likely
1687 * the last modification in the contig range, so a good time to fold.
1688 * We can't fold special mappings, because there is no associated folio.
1689 */
1690
1691 const unsigned long contmask = CONT_PTES - 1;
1692 bool valign = ((addr >> PAGE_SHIFT) & contmask) == contmask;
1693
1694 if (unlikely(valign)) {
1695 bool palign = (pte_pfn(pte) & contmask) == contmask;
1696
1697 if (unlikely(palign &&
1698 pte_valid(pte) && !pte_cont(pte) && !pte_special(pte)))
1699 __contpte_try_fold(mm, addr, ptep, pte);
1700 }
1701 }
1702
contpte_try_unfold(struct mm_struct * mm,unsigned long addr,pte_t * ptep,pte_t pte)1703 static __always_inline void contpte_try_unfold(struct mm_struct *mm,
1704 unsigned long addr, pte_t *ptep, pte_t pte)
1705 {
1706 if (unlikely(pte_valid_cont(pte)))
1707 __contpte_try_unfold(mm, addr, ptep, pte);
1708 }
1709
1710 #define pte_batch_hint pte_batch_hint
pte_batch_hint(pte_t * ptep,pte_t pte)1711 static inline unsigned int pte_batch_hint(pte_t *ptep, pte_t pte)
1712 {
1713 if (!pte_valid_cont(pte))
1714 return 1;
1715
1716 return CONT_PTES - (((unsigned long)ptep >> 3) & (CONT_PTES - 1));
1717 }
1718
1719 /*
1720 * The below functions constitute the public API that arm64 presents to the
1721 * core-mm to manipulate PTE entries within their page tables (or at least this
1722 * is the subset of the API that arm64 needs to implement). These public
1723 * versions will automatically and transparently apply the contiguous bit where
1724 * it makes sense to do so. Therefore any users that are contig-aware (e.g.
1725 * hugetlb, kernel mapper) should NOT use these APIs, but instead use the
1726 * private versions, which are prefixed with double underscore. All of these
1727 * APIs except for ptep_get_lockless() are expected to be called with the PTL
1728 * held. Although the contiguous bit is considered private to the
1729 * implementation, it is deliberately allowed to leak through the getters (e.g.
1730 * ptep_get()), back to core code. This is required so that pte_leaf_size() can
1731 * provide an accurate size for perf_get_pgtable_size(). But this leakage means
1732 * its possible a pte will be passed to a setter with the contiguous bit set, so
1733 * we explicitly clear the contiguous bit in those cases to prevent accidentally
1734 * setting it in the pgtable.
1735 */
1736
1737 #define ptep_get ptep_get
ptep_get(pte_t * ptep)1738 static inline pte_t ptep_get(pte_t *ptep)
1739 {
1740 pte_t pte = __ptep_get(ptep);
1741
1742 if (likely(!pte_valid_cont(pte)))
1743 return pte;
1744
1745 return contpte_ptep_get(ptep, pte);
1746 }
1747
1748 #define ptep_get_lockless ptep_get_lockless
ptep_get_lockless(pte_t * ptep)1749 static inline pte_t ptep_get_lockless(pte_t *ptep)
1750 {
1751 pte_t pte = __ptep_get(ptep);
1752
1753 if (likely(!pte_valid_cont(pte)))
1754 return pte;
1755
1756 return contpte_ptep_get_lockless(ptep);
1757 }
1758
set_pte(pte_t * ptep,pte_t pte)1759 static inline void set_pte(pte_t *ptep, pte_t pte)
1760 {
1761 /*
1762 * We don't have the mm or vaddr so cannot unfold contig entries (since
1763 * it requires tlb maintenance). set_pte() is not used in core code, so
1764 * this should never even be called. Regardless do our best to service
1765 * any call and emit a warning if there is any attempt to set a pte on
1766 * top of an existing contig range.
1767 */
1768 pte_t orig_pte = __ptep_get(ptep);
1769
1770 WARN_ON_ONCE(pte_valid_cont(orig_pte));
1771 __set_pte(ptep, pte_mknoncont(pte));
1772 }
1773
1774 #define set_ptes set_ptes
set_ptes(struct mm_struct * mm,unsigned long addr,pte_t * ptep,pte_t pte,unsigned int nr)1775 static __always_inline void set_ptes(struct mm_struct *mm, unsigned long addr,
1776 pte_t *ptep, pte_t pte, unsigned int nr)
1777 {
1778 pte = pte_mknoncont(pte);
1779
1780 if (likely(nr == 1)) {
1781 contpte_try_unfold(mm, addr, ptep, __ptep_get(ptep));
1782 __set_ptes(mm, addr, ptep, pte, 1);
1783 contpte_try_fold(mm, addr, ptep, pte);
1784 } else {
1785 contpte_set_ptes(mm, addr, ptep, pte, nr);
1786 }
1787 }
1788
pte_clear(struct mm_struct * mm,unsigned long addr,pte_t * ptep)1789 static inline void pte_clear(struct mm_struct *mm,
1790 unsigned long addr, pte_t *ptep)
1791 {
1792 contpte_try_unfold(mm, addr, ptep, __ptep_get(ptep));
1793 __pte_clear(mm, addr, ptep);
1794 }
1795
1796 #define clear_full_ptes clear_full_ptes
clear_full_ptes(struct mm_struct * mm,unsigned long addr,pte_t * ptep,unsigned int nr,int full)1797 static inline void clear_full_ptes(struct mm_struct *mm, unsigned long addr,
1798 pte_t *ptep, unsigned int nr, int full)
1799 {
1800 if (likely(nr == 1)) {
1801 contpte_try_unfold(mm, addr, ptep, __ptep_get(ptep));
1802 __clear_full_ptes(mm, addr, ptep, nr, full);
1803 } else {
1804 contpte_clear_full_ptes(mm, addr, ptep, nr, full);
1805 }
1806 }
1807
1808 #define get_and_clear_full_ptes get_and_clear_full_ptes
get_and_clear_full_ptes(struct mm_struct * mm,unsigned long addr,pte_t * ptep,unsigned int nr,int full)1809 static inline pte_t get_and_clear_full_ptes(struct mm_struct *mm,
1810 unsigned long addr, pte_t *ptep,
1811 unsigned int nr, int full)
1812 {
1813 pte_t pte;
1814
1815 if (likely(nr == 1)) {
1816 contpte_try_unfold(mm, addr, ptep, __ptep_get(ptep));
1817 pte = __get_and_clear_full_ptes(mm, addr, ptep, nr, full);
1818 } else {
1819 pte = contpte_get_and_clear_full_ptes(mm, addr, ptep, nr, full);
1820 }
1821
1822 return pte;
1823 }
1824
1825 #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
ptep_get_and_clear(struct mm_struct * mm,unsigned long addr,pte_t * ptep)1826 static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
1827 unsigned long addr, pte_t *ptep)
1828 {
1829 contpte_try_unfold(mm, addr, ptep, __ptep_get(ptep));
1830 return __ptep_get_and_clear(mm, addr, ptep);
1831 }
1832
1833 #define test_and_clear_young_ptes test_and_clear_young_ptes
test_and_clear_young_ptes(struct vm_area_struct * vma,unsigned long addr,pte_t * ptep,unsigned int nr)1834 static inline bool test_and_clear_young_ptes(struct vm_area_struct *vma,
1835 unsigned long addr, pte_t *ptep, unsigned int nr)
1836 {
1837 if (likely(nr == 1 && !pte_cont(__ptep_get(ptep))))
1838 return __ptep_test_and_clear_young(vma, addr, ptep);
1839
1840 return contpte_test_and_clear_young_ptes(vma, addr, ptep, nr);
1841 }
1842
1843 #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
ptep_test_and_clear_young(struct vm_area_struct * vma,unsigned long addr,pte_t * ptep)1844 static inline bool ptep_test_and_clear_young(struct vm_area_struct *vma,
1845 unsigned long addr, pte_t *ptep)
1846 {
1847 return test_and_clear_young_ptes(vma, addr, ptep, 1);
1848 }
1849
1850 #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
ptep_clear_flush_young(struct vm_area_struct * vma,unsigned long addr,pte_t * ptep)1851 static inline bool ptep_clear_flush_young(struct vm_area_struct *vma,
1852 unsigned long addr, pte_t *ptep)
1853 {
1854 pte_t orig_pte = __ptep_get(ptep);
1855
1856 if (likely(!pte_valid_cont(orig_pte)))
1857 return __ptep_clear_flush_young(vma, addr, ptep);
1858
1859 return contpte_clear_flush_young_ptes(vma, addr, ptep, 1);
1860 }
1861
1862 #define clear_flush_young_ptes clear_flush_young_ptes
clear_flush_young_ptes(struct vm_area_struct * vma,unsigned long addr,pte_t * ptep,unsigned int nr)1863 static inline bool clear_flush_young_ptes(struct vm_area_struct *vma,
1864 unsigned long addr, pte_t *ptep, unsigned int nr)
1865 {
1866 if (likely(nr == 1 && !pte_cont(__ptep_get(ptep))))
1867 return __ptep_clear_flush_young(vma, addr, ptep);
1868
1869 return contpte_clear_flush_young_ptes(vma, addr, ptep, nr);
1870 }
1871
1872 #define wrprotect_ptes wrprotect_ptes
wrprotect_ptes(struct mm_struct * mm,unsigned long addr,pte_t * ptep,unsigned int nr)1873 static __always_inline void wrprotect_ptes(struct mm_struct *mm,
1874 unsigned long addr, pte_t *ptep, unsigned int nr)
1875 {
1876 if (likely(nr == 1)) {
1877 /*
1878 * Optimization: wrprotect_ptes() can only be called for present
1879 * ptes so we only need to check contig bit as condition for
1880 * unfold, and we can remove the contig bit from the pte we read
1881 * to avoid re-reading. This speeds up fork() which is sensitive
1882 * for order-0 folios. Equivalent to contpte_try_unfold().
1883 */
1884 pte_t orig_pte = __ptep_get(ptep);
1885
1886 if (unlikely(pte_cont(orig_pte))) {
1887 __contpte_try_unfold(mm, addr, ptep, orig_pte);
1888 orig_pte = pte_mknoncont(orig_pte);
1889 }
1890 ___ptep_set_wrprotect(mm, addr, ptep, orig_pte);
1891 } else {
1892 contpte_wrprotect_ptes(mm, addr, ptep, nr);
1893 }
1894 }
1895
1896 #define __HAVE_ARCH_PTEP_SET_WRPROTECT
ptep_set_wrprotect(struct mm_struct * mm,unsigned long addr,pte_t * ptep)1897 static inline void ptep_set_wrprotect(struct mm_struct *mm,
1898 unsigned long addr, pte_t *ptep)
1899 {
1900 wrprotect_ptes(mm, addr, ptep, 1);
1901 }
1902
1903 #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
ptep_set_access_flags(struct vm_area_struct * vma,unsigned long addr,pte_t * ptep,pte_t entry,int dirty)1904 static inline int ptep_set_access_flags(struct vm_area_struct *vma,
1905 unsigned long addr, pte_t *ptep,
1906 pte_t entry, int dirty)
1907 {
1908 pte_t orig_pte = __ptep_get(ptep);
1909
1910 entry = pte_mknoncont(entry);
1911
1912 if (likely(!pte_valid_cont(orig_pte)))
1913 return __ptep_set_access_flags(vma, addr, ptep, entry, dirty);
1914
1915 return contpte_ptep_set_access_flags(vma, addr, ptep, entry, dirty);
1916 }
1917
1918 #define clear_young_dirty_ptes clear_young_dirty_ptes
clear_young_dirty_ptes(struct vm_area_struct * vma,unsigned long addr,pte_t * ptep,unsigned int nr,cydp_t flags)1919 static inline void clear_young_dirty_ptes(struct vm_area_struct *vma,
1920 unsigned long addr, pte_t *ptep,
1921 unsigned int nr, cydp_t flags)
1922 {
1923 if (likely(nr == 1 && !pte_cont(__ptep_get(ptep))))
1924 __clear_young_dirty_ptes(vma, addr, ptep, nr, flags);
1925 else
1926 contpte_clear_young_dirty_ptes(vma, addr, ptep, nr, flags);
1927 }
1928
1929 #else /* CONFIG_ARM64_CONTPTE */
1930
1931 #define ptep_get __ptep_get
1932 #define set_pte __set_pte
1933 #define set_ptes __set_ptes
1934 #define pte_clear __pte_clear
1935 #define clear_full_ptes __clear_full_ptes
1936 #define get_and_clear_full_ptes __get_and_clear_full_ptes
1937 #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
1938 #define ptep_get_and_clear __ptep_get_and_clear
1939 #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
1940 #define ptep_test_and_clear_young __ptep_test_and_clear_young
1941 #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
1942 #define ptep_clear_flush_young __ptep_clear_flush_young
1943 #define __HAVE_ARCH_PTEP_SET_WRPROTECT
1944 #define ptep_set_wrprotect __ptep_set_wrprotect
1945 #define wrprotect_ptes __wrprotect_ptes
1946 #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
1947 #define ptep_set_access_flags __ptep_set_access_flags
1948 #define clear_young_dirty_ptes __clear_young_dirty_ptes
1949
1950 #endif /* CONFIG_ARM64_CONTPTE */
1951
1952 #endif /* !__ASSEMBLER__ */
1953
1954 #endif /* __ASM_PGTABLE_H */
1955