pgtable.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  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/init.h>
  27. #include <linux/percpu.h>
  28. #include <linux/hardirq.h>
  29. #include <asm/pgalloc.h>
  30. #include <asm/tlbflush.h>
  31. #include <asm/tlb.h>
  32. #include "mmu_decl.h"
  33. DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
  34. #ifdef CONFIG_SMP
  35. /*
  36. * Handle batching of page table freeing on SMP. Page tables are
  37. * queued up and send to be freed later by RCU in order to avoid
  38. * freeing a page table page that is being walked without locks
  39. */
  40. static DEFINE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur);
  41. static unsigned long pte_freelist_forced_free;
  42. struct pte_freelist_batch
  43. {
  44. struct rcu_head rcu;
  45. unsigned int index;
  46. unsigned long tables[0];
  47. };
  48. #define PTE_FREELIST_SIZE \
  49. ((PAGE_SIZE - sizeof(struct pte_freelist_batch)) \
  50. / sizeof(unsigned long))
  51. static void pte_free_smp_sync(void *arg)
  52. {
  53. /* Do nothing, just ensure we sync with all CPUs */
  54. }
  55. /* This is only called when we are critically out of memory
  56. * (and fail to get a page in pte_free_tlb).
  57. */
  58. static void pgtable_free_now(void *table, unsigned shift)
  59. {
  60. pte_freelist_forced_free++;
  61. smp_call_function(pte_free_smp_sync, NULL, 1);
  62. pgtable_free(table, shift);
  63. }
  64. static void pte_free_rcu_callback(struct rcu_head *head)
  65. {
  66. struct pte_freelist_batch *batch =
  67. container_of(head, struct pte_freelist_batch, rcu);
  68. unsigned int i;
  69. for (i = 0; i < batch->index; i++) {
  70. void *table = (void *)(batch->tables[i] & ~MAX_PGTABLE_INDEX_SIZE);
  71. unsigned shift = batch->tables[i] & MAX_PGTABLE_INDEX_SIZE;
  72. pgtable_free(table, shift);
  73. }
  74. free_page((unsigned long)batch);
  75. }
  76. static void pte_free_submit(struct pte_freelist_batch *batch)
  77. {
  78. INIT_RCU_HEAD(&batch->rcu);
  79. call_rcu(&batch->rcu, pte_free_rcu_callback);
  80. }
  81. void pgtable_free_tlb(struct mmu_gather *tlb, void *table, unsigned shift)
  82. {
  83. /* This is safe since tlb_gather_mmu has disabled preemption */
  84. struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
  85. unsigned long pgf;
  86. if (atomic_read(&tlb->mm->mm_users) < 2 ||
  87. cpumask_equal(mm_cpumask(tlb->mm), cpumask_of(smp_processor_id()))){
  88. pgtable_free(table, shift);
  89. return;
  90. }
  91. if (*batchp == NULL) {
  92. *batchp = (struct pte_freelist_batch *)__get_free_page(GFP_ATOMIC);
  93. if (*batchp == NULL) {
  94. pgtable_free_now(table, shift);
  95. return;
  96. }
  97. (*batchp)->index = 0;
  98. }
  99. BUG_ON(shift > MAX_PGTABLE_INDEX_SIZE);
  100. pgf = (unsigned long)table | shift;
  101. (*batchp)->tables[(*batchp)->index++] = pgf;
  102. if ((*batchp)->index == PTE_FREELIST_SIZE) {
  103. pte_free_submit(*batchp);
  104. *batchp = NULL;
  105. }
  106. }
  107. void pte_free_finish(void)
  108. {
  109. /* This is safe since tlb_gather_mmu has disabled preemption */
  110. struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
  111. if (*batchp == NULL)
  112. return;
  113. pte_free_submit(*batchp);
  114. *batchp = NULL;
  115. }
  116. #endif /* CONFIG_SMP */
  117. static inline int is_exec_fault(void)
  118. {
  119. return current->thread.regs && TRAP(current->thread.regs) == 0x400;
  120. }
  121. /* We only try to do i/d cache coherency on stuff that looks like
  122. * reasonably "normal" PTEs. We currently require a PTE to be present
  123. * and we avoid _PAGE_SPECIAL and _PAGE_NO_CACHE. We also only do that
  124. * on userspace PTEs
  125. */
  126. static inline int pte_looks_normal(pte_t pte)
  127. {
  128. return (pte_val(pte) &
  129. (_PAGE_PRESENT | _PAGE_SPECIAL | _PAGE_NO_CACHE | _PAGE_USER)) ==
  130. (_PAGE_PRESENT | _PAGE_USER);
  131. }
  132. struct page * maybe_pte_to_page(pte_t pte)
  133. {
  134. unsigned long pfn = pte_pfn(pte);
  135. struct page *page;
  136. if (unlikely(!pfn_valid(pfn)))
  137. return NULL;
  138. page = pfn_to_page(pfn);
  139. if (PageReserved(page))
  140. return NULL;
  141. return page;
  142. }
  143. #if defined(CONFIG_PPC_STD_MMU) || _PAGE_EXEC == 0
  144. /* Server-style MMU handles coherency when hashing if HW exec permission
  145. * is supposed per page (currently 64-bit only). If not, then, we always
  146. * flush the cache for valid PTEs in set_pte. Embedded CPU without HW exec
  147. * support falls into the same category.
  148. */
  149. static pte_t set_pte_filter(pte_t pte, unsigned long addr)
  150. {
  151. pte = __pte(pte_val(pte) & ~_PAGE_HPTEFLAGS);
  152. if (pte_looks_normal(pte) && !(cpu_has_feature(CPU_FTR_COHERENT_ICACHE) ||
  153. cpu_has_feature(CPU_FTR_NOEXECUTE))) {
  154. struct page *pg = maybe_pte_to_page(pte);
  155. if (!pg)
  156. return pte;
  157. if (!test_bit(PG_arch_1, &pg->flags)) {
  158. #ifdef CONFIG_8xx
  159. /* On 8xx, cache control instructions (particularly
  160. * "dcbst" from flush_dcache_icache) fault as write
  161. * operation if there is an unpopulated TLB entry
  162. * for the address in question. To workaround that,
  163. * we invalidate the TLB here, thus avoiding dcbst
  164. * misbehaviour.
  165. */
  166. /* 8xx doesn't care about PID, size or ind args */
  167. _tlbil_va(addr, 0, 0, 0);
  168. #endif /* CONFIG_8xx */
  169. flush_dcache_icache_page(pg);
  170. set_bit(PG_arch_1, &pg->flags);
  171. }
  172. }
  173. return pte;
  174. }
  175. static pte_t set_access_flags_filter(pte_t pte, struct vm_area_struct *vma,
  176. int dirty)
  177. {
  178. return pte;
  179. }
  180. #else /* defined(CONFIG_PPC_STD_MMU) || _PAGE_EXEC == 0 */
  181. /* Embedded type MMU with HW exec support. This is a bit more complicated
  182. * as we don't have two bits to spare for _PAGE_EXEC and _PAGE_HWEXEC so
  183. * instead we "filter out" the exec permission for non clean pages.
  184. */
  185. static pte_t set_pte_filter(pte_t pte, unsigned long addr)
  186. {
  187. struct page *pg;
  188. /* No exec permission in the first place, move on */
  189. if (!(pte_val(pte) & _PAGE_EXEC) || !pte_looks_normal(pte))
  190. return pte;
  191. /* If you set _PAGE_EXEC on weird pages you're on your own */
  192. pg = maybe_pte_to_page(pte);
  193. if (unlikely(!pg))
  194. return pte;
  195. /* If the page clean, we move on */
  196. if (test_bit(PG_arch_1, &pg->flags))
  197. return pte;
  198. /* If it's an exec fault, we flush the cache and make it clean */
  199. if (is_exec_fault()) {
  200. flush_dcache_icache_page(pg);
  201. set_bit(PG_arch_1, &pg->flags);
  202. return pte;
  203. }
  204. /* Else, we filter out _PAGE_EXEC */
  205. return __pte(pte_val(pte) & ~_PAGE_EXEC);
  206. }
  207. static pte_t set_access_flags_filter(pte_t pte, struct vm_area_struct *vma,
  208. int dirty)
  209. {
  210. struct page *pg;
  211. /* So here, we only care about exec faults, as we use them
  212. * to recover lost _PAGE_EXEC and perform I$/D$ coherency
  213. * if necessary. Also if _PAGE_EXEC is already set, same deal,
  214. * we just bail out
  215. */
  216. if (dirty || (pte_val(pte) & _PAGE_EXEC) || !is_exec_fault())
  217. return pte;
  218. #ifdef CONFIG_DEBUG_VM
  219. /* So this is an exec fault, _PAGE_EXEC is not set. If it was
  220. * an error we would have bailed out earlier in do_page_fault()
  221. * but let's make sure of it
  222. */
  223. if (WARN_ON(!(vma->vm_flags & VM_EXEC)))
  224. return pte;
  225. #endif /* CONFIG_DEBUG_VM */
  226. /* If you set _PAGE_EXEC on weird pages you're on your own */
  227. pg = maybe_pte_to_page(pte);
  228. if (unlikely(!pg))
  229. goto bail;
  230. /* If the page is already clean, we move on */
  231. if (test_bit(PG_arch_1, &pg->flags))
  232. goto bail;
  233. /* Clean the page and set PG_arch_1 */
  234. flush_dcache_icache_page(pg);
  235. set_bit(PG_arch_1, &pg->flags);
  236. bail:
  237. return __pte(pte_val(pte) | _PAGE_EXEC);
  238. }
  239. #endif /* !(defined(CONFIG_PPC_STD_MMU) || _PAGE_EXEC == 0) */
  240. /*
  241. * set_pte stores a linux PTE into the linux page table.
  242. */
  243. void set_pte_at(struct mm_struct *mm, unsigned long addr, pte_t *ptep,
  244. pte_t pte)
  245. {
  246. #ifdef CONFIG_DEBUG_VM
  247. WARN_ON(pte_present(*ptep));
  248. #endif
  249. /* Note: mm->context.id might not yet have been assigned as
  250. * this context might not have been activated yet when this
  251. * is called.
  252. */
  253. pte = set_pte_filter(pte, addr);
  254. /* Perform the setting of the PTE */
  255. __set_pte_at(mm, addr, ptep, pte, 0);
  256. }
  257. /*
  258. * This is called when relaxing access to a PTE. It's also called in the page
  259. * fault path when we don't hit any of the major fault cases, ie, a minor
  260. * update of _PAGE_ACCESSED, _PAGE_DIRTY, etc... The generic code will have
  261. * handled those two for us, we additionally deal with missing execute
  262. * permission here on some processors
  263. */
  264. int ptep_set_access_flags(struct vm_area_struct *vma, unsigned long address,
  265. pte_t *ptep, pte_t entry, int dirty)
  266. {
  267. int changed;
  268. entry = set_access_flags_filter(entry, vma, dirty);
  269. changed = !pte_same(*(ptep), entry);
  270. if (changed) {
  271. if (!(vma->vm_flags & VM_HUGETLB))
  272. assert_pte_locked(vma->vm_mm, address);
  273. __ptep_set_access_flags(ptep, entry);
  274. flush_tlb_page_nohash(vma, address);
  275. }
  276. return changed;
  277. }
  278. #ifdef CONFIG_DEBUG_VM
  279. void assert_pte_locked(struct mm_struct *mm, unsigned long addr)
  280. {
  281. pgd_t *pgd;
  282. pud_t *pud;
  283. pmd_t *pmd;
  284. if (mm == &init_mm)
  285. return;
  286. pgd = mm->pgd + pgd_index(addr);
  287. BUG_ON(pgd_none(*pgd));
  288. pud = pud_offset(pgd, addr);
  289. BUG_ON(pud_none(*pud));
  290. pmd = pmd_offset(pud, addr);
  291. BUG_ON(!pmd_present(*pmd));
  292. assert_spin_locked(pte_lockptr(mm, pmd));
  293. }
  294. #endif /* CONFIG_DEBUG_VM */