blob: ad0868bfa37467b10e00c084588eba8915642426 [file] [log] [blame]
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001/*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Thanks to Ben LaHaise for precious feedback.
Ingo Molnar9f4c8152008-01-30 13:33:41 +01004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/highmem.h>
7#include <linux/module.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01008#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/slab.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010010#include <linux/mm.h>
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/processor.h>
13#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080014#include <asm/sections.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010015#include <asm/uaccess.h>
16#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Ingo Molnarf0646e42008-01-30 13:33:43 +010018pte_t *lookup_address(unsigned long address, int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010019{
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 pgd_t *pgd = pgd_offset_k(address);
21 pud_t *pud;
22 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 if (pgd_none(*pgd))
25 return NULL;
26 pud = pud_offset(pgd, address);
27 if (pud_none(*pud))
28 return NULL;
29 pmd = pmd_offset(pud, address);
30 if (pmd_none(*pmd))
31 return NULL;
Ingo Molnarf0646e42008-01-30 13:33:43 +010032 *level = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 if (pmd_large(*pmd))
34 return (pte_t *)pmd;
Ingo Molnarf0646e42008-01-30 13:33:43 +010035 *level = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Ingo Molnar9f4c8152008-01-30 13:33:41 +010037 return pte_offset_kernel(pmd, address);
38}
39
Ingo Molnar9f4c8152008-01-30 13:33:41 +010040static void set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
41{
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 unsigned long flags;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010043 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Ingo Molnar9f4c8152008-01-30 13:33:41 +010045 /* change init_mm */
46 set_pte_atomic(kpte, pte);
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +020047 if (SHARED_KERNEL_PMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 return;
49
50 spin_lock_irqsave(&pgd_lock, flags);
51 for (page = pgd_list; page; page = (struct page *)page->index) {
52 pgd_t *pgd;
53 pud_t *pud;
54 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 pgd = (pgd_t *)page_address(page) + pgd_index(address);
57 pud = pud_offset(pgd, address);
58 pmd = pmd_offset(pud, address);
59 set_pte_atomic((pte_t *)pmd, pte);
60 }
61 spin_unlock_irqrestore(&pgd_lock, flags);
62}
63
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010064static int
65split_large_page(pte_t *kpte, unsigned long address, pgprot_t ref_prot)
66{
67 int i, level;
68 unsigned long addr;
69 pte_t *pbase, *tmp;
70 struct page *base;
71
72 base = alloc_pages(GFP_KERNEL, 0);
73 if (!base)
74 return -ENOMEM;
75
76 down_write(&init_mm.mmap_sem);
77 /*
78 * Check for races, another CPU might have split this page
79 * up for us already:
80 */
81 tmp = lookup_address(address, &level);
Ingo Molnar5508a742008-01-30 13:33:56 +010082 if (tmp != kpte) {
83 WARN_ON_ONCE(1);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010084 goto out_unlock;
Ingo Molnar5508a742008-01-30 13:33:56 +010085 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010086
87 address = __pa(address);
88 addr = address & LARGE_PAGE_MASK;
89 pbase = (pte_t *)page_address(base);
90 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
91
92 for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE)
93 set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT, ref_prot));
94
95 /*
96 * Install the new, split up pagetable:
97 */
98 set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
99 base = NULL;
100
101out_unlock:
102 up_write(&init_mm.mmap_sem);
103
104 if (base)
105 __free_pages(base, 0);
106
107 return 0;
108}
109
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100110static int __change_page_attr(struct page *page, pgprot_t prot)
111{
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100112 pgprot_t ref_prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 struct page *kpte_page;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100114 unsigned long address;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100115 int level, err = 0;
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100116 pgprot_t oldprot;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100117 pte_t *kpte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 BUG_ON(PageHighMem(page));
120 address = (unsigned long)page_address(page);
121
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100122repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100123 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (!kpte)
125 return -EINVAL;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100126
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100127 oldprot = pte_pgprot(*kpte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 kpte_page = virt_to_page(kpte);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200129 BUG_ON(PageLRU(kpte_page));
130 BUG_ON(PageCompound(kpte_page));
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /*
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100133 * Better fail early if someone sets the kernel text to NX.
134 * Does not cover __inittext
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100136 BUG_ON(address >= (unsigned long)&_text &&
137 address < (unsigned long)&_etext &&
138 (pgprot_val(prot) & _PAGE_NX));
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200139
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100140 if ((address & LARGE_PAGE_MASK) < (unsigned long)&_etext)
141 ref_prot = PAGE_KERNEL_EXEC;
142
143 ref_prot = canon_pgprot(ref_prot);
144 prot = canon_pgprot(prot);
145
146 if (level == 3) {
147 set_pte_atomic(kpte, mk_pte(page, prot));
148 } else {
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100149 err = split_large_page(kpte, address, ref_prot);
150 if (!err)
151 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100153 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
157 * Change the page attributes of an page in the linear mapping.
158 *
159 * This should be used when a page is mapped with a different caching policy
160 * than write-back somewhere - some CPUs do not like it when mappings with
161 * different caching policies exist. This changes the page attributes of the
162 * in kernel linear mapping too.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100163 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * The caller needs to ensure that there are no conflicting mappings elsewhere.
165 * This function only deals with the kernel linear map.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100166 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * Caller must call global_flush_tlb() after this.
168 */
169int change_page_attr(struct page *page, int numpages, pgprot_t prot)
170{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100171 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100173 for (i = 0; i < numpages; i++, page++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 err = __change_page_attr(page, prot);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100175 if (err)
176 break;
177 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return err;
180}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100181EXPORT_SYMBOL(change_page_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100183int change_page_attr_addr(unsigned long addr, int numpages, pgprot_t prot)
184{
185 int i;
Ingo Molnar5508a742008-01-30 13:33:56 +0100186 unsigned long pfn = (__pa(addr) >> PAGE_SHIFT);
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100187
188 for (i = 0; i < numpages; i++) {
189 if (!pfn_valid(pfn + i)) {
Ingo Molnar5508a742008-01-30 13:33:56 +0100190 WARN_ON_ONCE(1);
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100191 break;
192 } else {
193 int level;
194 pte_t *pte = lookup_address(addr + i*PAGE_SIZE, &level);
Ingo Molnar5508a742008-01-30 13:33:56 +0100195 BUG_ON(pte && pte_none(*pte));
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100196 }
197 }
Ingo Molnar5508a742008-01-30 13:33:56 +0100198
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100199 return change_page_attr(virt_to_page(addr), i, prot);
200}
201
202static void flush_kernel_map(void *arg)
203{
204 /*
205 * Flush all to work around Errata in early athlons regarding
206 * large page flushing.
207 */
208 __flush_tlb_all();
209
210 if (boot_cpu_data.x86_model >= 4)
211 wbinvd();
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214void global_flush_tlb(void)
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700215{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 BUG_ON(irqs_disabled());
217
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100218 on_each_cpu(flush_kernel_map, NULL, 1, 1);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700219}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100220EXPORT_SYMBOL(global_flush_tlb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222#ifdef CONFIG_DEBUG_PAGEALLOC
223void kernel_map_pages(struct page *page, int numpages, int enable)
224{
225 if (PageHighMem(page))
226 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100227 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700228 debug_check_no_locks_freed(page_address(page),
229 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100230 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800231
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100232 /*
233 * the return value is ignored - the calls cannot fail,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * large pages are disabled at boot time.
235 */
236 change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100237
238 /*
239 * we should perform an IPI and flush all tlbs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 * but that can deadlock->flush only current cpu.
241 */
242 __flush_tlb_all();
243}
244#endif