blob: 00f6f341e29120ea3c00bf85ee27b338295528c7 [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#include <linux/highmem.h>
Ingo Molnar81922062008-01-30 13:34:04 +01006#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#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
Ingo Molnar4554ab92008-01-30 13:34:03 +010012void clflush_cache_range(void *addr, int size)
13{
14 int i;
15
16 for (i = 0; i < size; i += boot_cpu_data.x86_clflush_size)
17 clflush(addr+i);
18}
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/processor.h>
21#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080022#include <asm/sections.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010023#include <asm/uaccess.h>
24#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Ingo Molnar687c4822008-01-30 13:34:04 +010026/*
Arjan van de Vened724be2008-01-30 13:34:04 +010027 * We must allow the BIOS range to be executable:
Ingo Molnar687c4822008-01-30 13:34:04 +010028 */
29#define BIOS_BEGIN 0x000a0000
30#define BIOS_END 0x00100000
31
Arjan van de Vened724be2008-01-30 13:34:04 +010032static inline int
33within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +010034{
Arjan van de Vened724be2008-01-30 13:34:04 +010035 return addr >= start && addr < end;
36}
37
38/*
39 * Certain areas of memory on x86 require very specific protection flags,
40 * for example the BIOS area or kernel text. Callers don't always get this
41 * right (again, ioremap() on BIOS memory is not uncommon) so this function
42 * checks and fixes these known static required protection bits.
43 */
44static inline pgprot_t static_protections(pgprot_t prot, unsigned long address)
45{
46 pgprot_t forbidden = __pgprot(0);
47
Ingo Molnar687c4822008-01-30 13:34:04 +010048 /*
Arjan van de Vened724be2008-01-30 13:34:04 +010049 * The BIOS area between 640k and 1Mb needs to be executable for
50 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +010051 */
Arjan van de Vened724be2008-01-30 13:34:04 +010052 if (within(__pa(address), BIOS_BEGIN, BIOS_END))
53 pgprot_val(forbidden) |= _PAGE_NX;
54
55 /*
56 * The kernel text needs to be executable for obvious reasons
57 * Does not cover __inittext since that is gone later on
58 */
59 if (within(address, (unsigned long)_text, (unsigned long)_etext))
60 pgprot_val(forbidden) |= _PAGE_NX;
61
62#ifdef CONFIG_DEBUG_RODATA
63 /* The .rodata section needs to be read-only */
64 if (within(address, (unsigned long)__start_rodata,
65 (unsigned long)__end_rodata))
66 pgprot_val(forbidden) |= _PAGE_RW;
67#endif
68
69 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +010070
71 return prot;
72}
73
Ingo Molnarf0646e42008-01-30 13:33:43 +010074pte_t *lookup_address(unsigned long address, int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010075{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 pgd_t *pgd = pgd_offset_k(address);
77 pud_t *pud;
78 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010079
Thomas Gleixner30551bb2008-01-30 13:34:04 +010080 *level = PG_LEVEL_NONE;
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (pgd_none(*pgd))
83 return NULL;
84 pud = pud_offset(pgd, address);
85 if (pud_none(*pud))
86 return NULL;
87 pmd = pmd_offset(pud, address);
88 if (pmd_none(*pmd))
89 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +010090
91 *level = PG_LEVEL_2M;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (pmd_large(*pmd))
93 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Thomas Gleixner30551bb2008-01-30 13:34:04 +010095 *level = PG_LEVEL_4K;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010096 return pte_offset_kernel(pmd, address);
97}
98
Ingo Molnar9a3dc782008-01-30 13:33:57 +010099static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100100{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100101 /* change init_mm */
102 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100103#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100104 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100105 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Ingo Molnar44af6c42008-01-30 13:34:03 +0100107 for (page = pgd_list; page; page = (struct page *)page->index) {
108 pgd_t *pgd;
109 pud_t *pud;
110 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100111
Ingo Molnar44af6c42008-01-30 13:34:03 +0100112 pgd = (pgd_t *)page_address(page) + pgd_index(address);
113 pud = pud_offset(pgd, address);
114 pmd = pmd_offset(pud, address);
115 set_pte_atomic((pte_t *)pmd, pte);
116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100121static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100122{
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100123 pgprot_t ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnar12d6f212008-01-30 13:33:58 +0100124 gfp_t gfp_flags = GFP_KERNEL;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100125 unsigned long flags;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100126 unsigned long addr;
127 pte_t *pbase, *tmp;
128 struct page *base;
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100129 int i, level;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100130
Ingo Molnar12d6f212008-01-30 13:33:58 +0100131#ifdef CONFIG_DEBUG_PAGEALLOC
132 gfp_flags = GFP_ATOMIC;
133#endif
134 base = alloc_pages(gfp_flags, 0);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100135 if (!base)
136 return -ENOMEM;
137
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100138 spin_lock_irqsave(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100139 /*
140 * Check for races, another CPU might have split this page
141 * up for us already:
142 */
143 tmp = lookup_address(address, &level);
Ingo Molnar5508a742008-01-30 13:33:56 +0100144 if (tmp != kpte) {
145 WARN_ON_ONCE(1);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100146 goto out_unlock;
Ingo Molnar5508a742008-01-30 13:33:56 +0100147 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100148
149 address = __pa(address);
150 addr = address & LARGE_PAGE_MASK;
151 pbase = (pte_t *)page_address(base);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100152#ifdef CONFIG_X86_32
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100153 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
Ingo Molnar44af6c42008-01-30 13:34:03 +0100154#endif
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100155
156 for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE)
157 set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT, ref_prot));
158
159 /*
Huang, Ying4c881ca2008-01-30 13:34:04 +0100160 * Install the new, split up pagetable. Important detail here:
161 *
162 * On Intel the NX bit of all levels must be cleared to make a
163 * page executable. See section 4.13.2 of Intel 64 and IA-32
164 * Architectures Software Developer's Manual).
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100165 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100166 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100167 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100168 base = NULL;
169
170out_unlock:
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100171 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100172
173 if (base)
174 __free_pages(base, 0);
175
176 return 0;
177}
178
Ingo Molnar44af6c42008-01-30 13:34:03 +0100179static int
Ingo Molnar81922062008-01-30 13:34:04 +0100180__change_page_attr(unsigned long address, unsigned long pfn, pgprot_t prot)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100181{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 struct page *kpte_page;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100183 int level, err = 0;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100184 pte_t *kpte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Ingo Molnar81922062008-01-30 13:34:04 +0100186#ifdef CONFIG_X86_32
187 BUG_ON(pfn > max_low_pfn);
188#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100190repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100191 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (!kpte)
193 return -EINVAL;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 kpte_page = virt_to_page(kpte);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200196 BUG_ON(PageLRU(kpte_page));
197 BUG_ON(PageCompound(kpte_page));
198
Arjan van de Vened724be2008-01-30 13:34:04 +0100199 prot = static_protections(prot, address);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200200
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100201 if (level == PG_LEVEL_4K) {
Ingo Molnar81922062008-01-30 13:34:04 +0100202 set_pte_atomic(kpte, pfn_pte(pfn, canon_pgprot(prot)));
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100203 } else {
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100204 err = split_large_page(kpte, address);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100205 if (!err)
206 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100208 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Ingo Molnar44af6c42008-01-30 13:34:03 +0100211/**
212 * change_page_attr_addr - Change page table attributes in linear mapping
213 * @address: Virtual address in linear mapping.
214 * @numpages: Number of pages to change
215 * @prot: New page table attribute (PAGE_*)
216 *
217 * Change page attributes of a page in the direct mapping. This is a variant
218 * of change_page_attr() that also works on memory holes that do not have
219 * mem_map entry (pfn_valid() is false).
220 *
221 * See change_page_attr() documentation for more details.
222 */
223
224int change_page_attr_addr(unsigned long address, int numpages, pgprot_t prot)
225{
226 int err = 0, kernel_map = 0, i;
227
228#ifdef CONFIG_X86_64
229 if (address >= __START_KERNEL_map &&
230 address < __START_KERNEL_map + KERNEL_TEXT_SIZE) {
231
232 address = (unsigned long)__va(__pa(address));
233 kernel_map = 1;
234 }
235#endif
236
237 for (i = 0; i < numpages; i++, address += PAGE_SIZE) {
238 unsigned long pfn = __pa(address) >> PAGE_SHIFT;
239
240 if (!kernel_map || pte_present(pfn_pte(0, prot))) {
Ingo Molnar81922062008-01-30 13:34:04 +0100241 err = __change_page_attr(address, pfn, prot);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100242 if (err)
243 break;
244 }
245#ifdef CONFIG_X86_64
246 /*
247 * Handle kernel mapping too which aliases part of
248 * lowmem:
249 */
250 if (__pa(address) < KERNEL_TEXT_SIZE) {
251 unsigned long addr2;
252 pgprot_t prot2;
253
254 addr2 = __START_KERNEL_map + __pa(address);
255 /* Make sure the kernel mappings stay executable */
256 prot2 = pte_pgprot(pte_mkexec(pfn_pte(0, prot)));
Ingo Molnar81922062008-01-30 13:34:04 +0100257 err = __change_page_attr(addr2, pfn, prot2);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100258 }
259#endif
260 }
261
262 return err;
263}
264
265/**
266 * change_page_attr - Change page table attributes in the linear mapping.
267 * @page: First page to change
268 * @numpages: Number of pages to change
269 * @prot: New protection/caching type (PAGE_*)
270 *
271 * Returns 0 on success, otherwise a negated errno.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 *
273 * This should be used when a page is mapped with a different caching policy
274 * than write-back somewhere - some CPUs do not like it when mappings with
275 * different caching policies exist. This changes the page attributes of the
276 * in kernel linear mapping too.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100277 *
Ingo Molnar44af6c42008-01-30 13:34:03 +0100278 * Caller must call global_flush_tlb() later to make the changes active.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100279 *
Ingo Molnar44af6c42008-01-30 13:34:03 +0100280 * The caller needs to ensure that there are no conflicting mappings elsewhere
281 * (e.g. in user space) * This function only deals with the kernel linear map.
282 *
283 * For MMIO areas without mem_map use change_page_attr_addr() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 */
285int change_page_attr(struct page *page, int numpages, pgprot_t prot)
286{
Ingo Molnar44af6c42008-01-30 13:34:03 +0100287 unsigned long addr = (unsigned long)page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Ingo Molnar44af6c42008-01-30 13:34:03 +0100289 return change_page_attr_addr(addr, numpages, prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100291EXPORT_SYMBOL(change_page_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100293static void flush_kernel_map(void *arg)
294{
295 /*
296 * Flush all to work around Errata in early athlons regarding
297 * large page flushing.
298 */
299 __flush_tlb_all();
300
301 if (boot_cpu_data.x86_model >= 4)
302 wbinvd();
303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305void global_flush_tlb(void)
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700306{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 BUG_ON(irqs_disabled());
308
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100309 on_each_cpu(flush_kernel_map, NULL, 1, 1);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700310}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100311EXPORT_SYMBOL(global_flush_tlb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313#ifdef CONFIG_DEBUG_PAGEALLOC
314void kernel_map_pages(struct page *page, int numpages, int enable)
315{
316 if (PageHighMem(page))
317 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100318 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700319 debug_check_no_locks_freed(page_address(page),
320 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100321 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800322
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100323 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +0100324 * If page allocator is not up yet then do not call c_p_a():
325 */
326 if (!debug_pagealloc_enabled)
327 return;
328
329 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100330 * The return value is ignored - the calls cannot fail,
331 * large pages are disabled at boot time:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 */
333 change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100334
335 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100336 * We should perform an IPI and flush all tlbs,
337 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
339 __flush_tlb_all();
340}
341#endif