pgtable.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /*
  2. * This file contains common routines for dealing with free of page tables
  3. * Along with common page table handling code
  4. *
  5. * Derived from arch/powerpc/mm/tlb_64.c:
  6. * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  7. *
  8. * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
  9. * and Cort Dougan (PReP) (cort@cs.nmt.edu)
  10. * Copyright (C) 1996 Paul Mackerras
  11. *
  12. * Derived from "arch/i386/mm/init.c"
  13. * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
  14. *
  15. * Dave Engebretsen <engebret@us.ibm.com>
  16. * Rework for PPC64 port.
  17. *
  18. * This program is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU General Public License
  20. * as published by the Free Software Foundation; either version
  21. * 2 of the License, or (at your option) any later version.
  22. */
  23. #include <linux/kernel.h>
  24. #include <linux/gfp.h>
  25. #include <linux/mm.h>
  26. #include <linux/percpu.h>
  27. #include <linux/hardirq.h>
  28. #include <linux/hugetlb.h>
  29. #include <asm/pgalloc.h>
  30. #include <asm/tlbflush.h>
  31. #include <asm/tlb.h>
  32. static inline int is_exec_fault(void)
  33. {
  34. return current->thread.regs && TRAP(current->thread.regs) == 0x400;
  35. }
  36. /* We only try to do i/d cache coherency on stuff that looks like
  37. * reasonably "normal" PTEs. We currently require a PTE to be present
  38. * and we avoid _PAGE_SPECIAL and cache inhibited pte. We also only do that
  39. * on userspace PTEs
  40. */
  41. static inline int pte_looks_normal(pte_t pte)
  42. {
  43. #if defined(CONFIG_PPC_BOOK3S_64)
  44. if ((pte_val(pte) & (_PAGE_PRESENT | _PAGE_SPECIAL)) == _PAGE_PRESENT) {
  45. if (pte_ci(pte))
  46. return 0;
  47. if (pte_user(pte))
  48. return 1;
  49. }
  50. return 0;
  51. #else
  52. return (pte_val(pte) &
  53. (_PAGE_PRESENT | _PAGE_SPECIAL | _PAGE_NO_CACHE | _PAGE_USER)) ==
  54. (_PAGE_PRESENT | _PAGE_USER);
  55. #endif
  56. }
  57. static struct page *maybe_pte_to_page(pte_t pte)
  58. {
  59. unsigned long pfn = pte_pfn(pte);
  60. struct page *page;
  61. if (unlikely(!pfn_valid(pfn)))
  62. return NULL;
  63. page = pfn_to_page(pfn);
  64. if (PageReserved(page))
  65. return NULL;
  66. return page;
  67. }
  68. #if defined(CONFIG_PPC_STD_MMU) || _PAGE_EXEC == 0
  69. /* Server-style MMU handles coherency when hashing if HW exec permission
  70. * is supposed per page (currently 64-bit only). If not, then, we always
  71. * flush the cache for valid PTEs in set_pte. Embedded CPU without HW exec
  72. * support falls into the same category.
  73. */
  74. static pte_t set_pte_filter(pte_t pte)
  75. {
  76. if (radix_enabled())
  77. return pte;
  78. pte = __pte(pte_val(pte) & ~_PAGE_HPTEFLAGS);
  79. if (pte_looks_normal(pte) && !(cpu_has_feature(CPU_FTR_COHERENT_ICACHE) ||
  80. cpu_has_feature(CPU_FTR_NOEXECUTE))) {
  81. struct page *pg = maybe_pte_to_page(pte);
  82. if (!pg)
  83. return pte;
  84. if (!test_bit(PG_arch_1, &pg->flags)) {
  85. flush_dcache_icache_page(pg);
  86. set_bit(PG_arch_1, &pg->flags);
  87. }
  88. }
  89. return pte;
  90. }
  91. static pte_t set_access_flags_filter(pte_t pte, struct vm_area_struct *vma,
  92. int dirty)
  93. {
  94. return pte;
  95. }
  96. #else /* defined(CONFIG_PPC_STD_MMU) || _PAGE_EXEC == 0 */
  97. /* Embedded type MMU with HW exec support. This is a bit more complicated
  98. * as we don't have two bits to spare for _PAGE_EXEC and _PAGE_HWEXEC so
  99. * instead we "filter out" the exec permission for non clean pages.
  100. */
  101. static pte_t set_pte_filter(pte_t pte)
  102. {
  103. struct page *pg;
  104. /* No exec permission in the first place, move on */
  105. if (!(pte_val(pte) & _PAGE_EXEC) || !pte_looks_normal(pte))
  106. return pte;
  107. /* If you set _PAGE_EXEC on weird pages you're on your own */
  108. pg = maybe_pte_to_page(pte);
  109. if (unlikely(!pg))
  110. return pte;
  111. /* If the page clean, we move on */
  112. if (test_bit(PG_arch_1, &pg->flags))
  113. return pte;
  114. /* If it's an exec fault, we flush the cache and make it clean */
  115. if (is_exec_fault()) {
  116. flush_dcache_icache_page(pg);
  117. set_bit(PG_arch_1, &pg->flags);
  118. return pte;
  119. }
  120. /* Else, we filter out _PAGE_EXEC */
  121. return __pte(pte_val(pte) & ~_PAGE_EXEC);
  122. }
  123. static pte_t set_access_flags_filter(pte_t pte, struct vm_area_struct *vma,
  124. int dirty)
  125. {
  126. struct page *pg;
  127. /* So here, we only care about exec faults, as we use them
  128. * to recover lost _PAGE_EXEC and perform I$/D$ coherency
  129. * if necessary. Also if _PAGE_EXEC is already set, same deal,
  130. * we just bail out
  131. */
  132. if (dirty || (pte_val(pte) & _PAGE_EXEC) || !is_exec_fault())
  133. return pte;
  134. #ifdef CONFIG_DEBUG_VM
  135. /* So this is an exec fault, _PAGE_EXEC is not set. If it was
  136. * an error we would have bailed out earlier in do_page_fault()
  137. * but let's make sure of it
  138. */
  139. if (WARN_ON(!(vma->vm_flags & VM_EXEC)))
  140. return pte;
  141. #endif /* CONFIG_DEBUG_VM */
  142. /* If you set _PAGE_EXEC on weird pages you're on your own */
  143. pg = maybe_pte_to_page(pte);
  144. if (unlikely(!pg))
  145. goto bail;
  146. /* If the page is already clean, we move on */
  147. if (test_bit(PG_arch_1, &pg->flags))
  148. goto bail;
  149. /* Clean the page and set PG_arch_1 */
  150. flush_dcache_icache_page(pg);
  151. set_bit(PG_arch_1, &pg->flags);
  152. bail:
  153. return __pte(pte_val(pte) | _PAGE_EXEC);
  154. }
  155. #endif /* !(defined(CONFIG_PPC_STD_MMU) || _PAGE_EXEC == 0) */
  156. /*
  157. * set_pte stores a linux PTE into the linux page table.
  158. */
  159. void set_pte_at(struct mm_struct *mm, unsigned long addr, pte_t *ptep,
  160. pte_t pte)
  161. {
  162. /*
  163. * When handling numa faults, we already have the pte marked
  164. * _PAGE_PRESENT, but we can be sure that it is not in hpte.
  165. * Hence we can use set_pte_at for them.
  166. */
  167. VM_WARN_ON(pte_present(*ptep) && !pte_protnone(*ptep));
  168. /*
  169. * Add the pte bit when tryint set a pte
  170. */
  171. pte = __pte(pte_val(pte) | _PAGE_PTE);
  172. /* Note: mm->context.id might not yet have been assigned as
  173. * this context might not have been activated yet when this
  174. * is called.
  175. */
  176. pte = set_pte_filter(pte);
  177. /* Perform the setting of the PTE */
  178. __set_pte_at(mm, addr, ptep, pte, 0);
  179. }
  180. /*
  181. * This is called when relaxing access to a PTE. It's also called in the page
  182. * fault path when we don't hit any of the major fault cases, ie, a minor
  183. * update of _PAGE_ACCESSED, _PAGE_DIRTY, etc... The generic code will have
  184. * handled those two for us, we additionally deal with missing execute
  185. * permission here on some processors
  186. */
  187. int ptep_set_access_flags(struct vm_area_struct *vma, unsigned long address,
  188. pte_t *ptep, pte_t entry, int dirty)
  189. {
  190. int changed;
  191. entry = set_access_flags_filter(entry, vma, dirty);
  192. changed = !pte_same(*(ptep), entry);
  193. if (changed) {
  194. if (!is_vm_hugetlb_page(vma))
  195. assert_pte_locked(vma->vm_mm, address);
  196. __ptep_set_access_flags(vma->vm_mm, ptep, entry);
  197. flush_tlb_page(vma, address);
  198. }
  199. return changed;
  200. }
  201. #ifdef CONFIG_DEBUG_VM
  202. void assert_pte_locked(struct mm_struct *mm, unsigned long addr)
  203. {
  204. pgd_t *pgd;
  205. pud_t *pud;
  206. pmd_t *pmd;
  207. if (mm == &init_mm)
  208. return;
  209. pgd = mm->pgd + pgd_index(addr);
  210. BUG_ON(pgd_none(*pgd));
  211. pud = pud_offset(pgd, addr);
  212. BUG_ON(pud_none(*pud));
  213. pmd = pmd_offset(pud, addr);
  214. /*
  215. * khugepaged to collapse normal pages to hugepage, first set
  216. * pmd to none to force page fault/gup to take mmap_sem. After
  217. * pmd is set to none, we do a pte_clear which does this assertion
  218. * so if we find pmd none, return.
  219. */
  220. if (pmd_none(*pmd))
  221. return;
  222. BUG_ON(!pmd_present(*pmd));
  223. assert_spin_locked(pte_lockptr(mm, pmd));
  224. }
  225. #endif /* CONFIG_DEBUG_VM */
  226. unsigned long vmalloc_to_phys(void *va)
  227. {
  228. unsigned long pfn = vmalloc_to_pfn(va);
  229. BUG_ON(!pfn);
  230. return __pa(pfn_to_kaddr(pfn)) + offset_in_page(va);
  231. }
  232. EXPORT_SYMBOL_GPL(vmalloc_to_phys);