blob: 1011b21f8db093f4165c59588614f018992591d7 [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
40static struct page *
Ingo Molnar97f99fe2008-01-30 13:33:55 +010041split_large_page(unsigned long address, pgprot_t ref_prot)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010042{
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 unsigned long addr;
44 struct page *base;
45 pte_t *pbase;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010046 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 base = alloc_pages(GFP_KERNEL, 0);
Ingo Molnar9f4c8152008-01-30 13:33:41 +010049 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 return NULL;
51
Nick Piggin84d1c052006-03-22 00:08:31 -080052 /*
53 * page_private is used to track the number of entries in
54 * the page table page that have non standard attributes.
55 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 address = __pa(address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +010057 addr = address & LARGE_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardingefdb4c332007-07-17 18:37:03 -070059 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
Ingo Molnar9f4c8152008-01-30 13:33:41 +010060
Ingo Molnar97f99fe2008-01-30 13:33:55 +010061 for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE)
62 set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT, ref_prot));
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return base;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010065}
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Ingo Molnar9f4c8152008-01-30 13:33:41 +010067static void set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
68{
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 unsigned long flags;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010070 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Ingo Molnar9f4c8152008-01-30 13:33:41 +010072 /* change init_mm */
73 set_pte_atomic(kpte, pte);
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +020074 if (SHARED_KERNEL_PMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return;
76
77 spin_lock_irqsave(&pgd_lock, flags);
78 for (page = pgd_list; page; page = (struct page *)page->index) {
79 pgd_t *pgd;
80 pud_t *pud;
81 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 pgd = (pgd_t *)page_address(page) + pgd_index(address);
84 pud = pud_offset(pgd, address);
85 pmd = pmd_offset(pud, address);
86 set_pte_atomic((pte_t *)pmd, pte);
87 }
88 spin_unlock_irqrestore(&pgd_lock, flags);
89}
90
Ingo Molnar9f4c8152008-01-30 13:33:41 +010091static int __change_page_attr(struct page *page, pgprot_t prot)
92{
Ingo Molnar78c94ab2008-01-30 13:33:55 +010093 pgprot_t ref_prot = PAGE_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 struct page *kpte_page;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010095 unsigned long address;
Ingo Molnar78c94ab2008-01-30 13:33:55 +010096 pgprot_t oldprot;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010097 pte_t *kpte;
Ingo Molnarf0646e42008-01-30 13:33:43 +010098 int level;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 BUG_ON(PageHighMem(page));
101 address = (unsigned long)page_address(page);
102
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100103repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100104 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (!kpte)
106 return -EINVAL;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100107
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100108 oldprot = pte_pgprot(*kpte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 kpte_page = virt_to_page(kpte);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200110 BUG_ON(PageLRU(kpte_page));
111 BUG_ON(PageCompound(kpte_page));
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 /*
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100114 * Better fail early if someone sets the kernel text to NX.
115 * Does not cover __inittext
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100117 BUG_ON(address >= (unsigned long)&_text &&
118 address < (unsigned long)&_etext &&
119 (pgprot_val(prot) & _PAGE_NX));
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200120
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100121 if ((address & LARGE_PAGE_MASK) < (unsigned long)&_etext)
122 ref_prot = PAGE_KERNEL_EXEC;
123
124 ref_prot = canon_pgprot(ref_prot);
125 prot = canon_pgprot(prot);
126
127 if (level == 3) {
128 set_pte_atomic(kpte, mk_pte(page, prot));
129 } else {
130 struct page *split;
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100131
132 split = split_large_page(address, ref_prot);
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100133 if (!split)
134 return -ENOMEM;
135
136 /*
137 * There's a small window here to waste a bit of RAM:
138 */
139 set_pmd_pte(kpte, address, mk_pte(split, ref_prot));
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100140 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142 return 0;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100143}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
146 * Change the page attributes of an page in the linear mapping.
147 *
148 * This should be used when a page is mapped with a different caching policy
149 * than write-back somewhere - some CPUs do not like it when mappings with
150 * different caching policies exist. This changes the page attributes of the
151 * in kernel linear mapping too.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100152 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * The caller needs to ensure that there are no conflicting mappings elsewhere.
154 * This function only deals with the kernel linear map.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100155 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * Caller must call global_flush_tlb() after this.
157 */
158int change_page_attr(struct page *page, int numpages, pgprot_t prot)
159{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100160 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100162 for (i = 0; i < numpages; i++, page++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 err = __change_page_attr(page, prot);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100164 if (err)
165 break;
166 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return err;
169}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100170EXPORT_SYMBOL(change_page_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100172int change_page_attr_addr(unsigned long addr, int numpages, pgprot_t prot)
173{
174 int i;
175 unsigned long pfn = (addr >> PAGE_SHIFT);
176
177 for (i = 0; i < numpages; i++) {
178 if (!pfn_valid(pfn + i)) {
179 break;
180 } else {
181 int level;
182 pte_t *pte = lookup_address(addr + i*PAGE_SIZE, &level);
183 BUG_ON(pte && !pte_none(*pte));
184 }
185 }
186 return change_page_attr(virt_to_page(addr), i, prot);
187}
188
189static void flush_kernel_map(void *arg)
190{
191 /*
192 * Flush all to work around Errata in early athlons regarding
193 * large page flushing.
194 */
195 __flush_tlb_all();
196
197 if (boot_cpu_data.x86_model >= 4)
198 wbinvd();
199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201void global_flush_tlb(void)
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700202{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 BUG_ON(irqs_disabled());
204
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100205 on_each_cpu(flush_kernel_map, NULL, 1, 1);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700206}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100207EXPORT_SYMBOL(global_flush_tlb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209#ifdef CONFIG_DEBUG_PAGEALLOC
210void kernel_map_pages(struct page *page, int numpages, int enable)
211{
212 if (PageHighMem(page))
213 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100214 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700215 debug_check_no_locks_freed(page_address(page),
216 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100217 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800218
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100219 /*
220 * the return value is ignored - the calls cannot fail,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * large pages are disabled at boot time.
222 */
223 change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100224
225 /*
226 * we should perform an IPI and flush all tlbs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 * but that can deadlock->flush only current cpu.
228 */
229 __flush_tlb_all();
230}
231#endif