blob: dfb7d657cf4322b0dedcd0bb63c1058bd090b4ea [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>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01007#include <linux/sched.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01008#include <linux/mm.h>
Thomas Gleixner76ebd052008-02-09 23:24:09 +01009#include <linux/interrupt.h>
Thomas Gleixneree7ae7a2008-04-17 17:40:45 +020010#include <linux/seq_file.h>
11#include <linux/debugfs.h>
Tejun Heoe59a1bb2009-06-22 11:56:24 +090012#include <linux/pfn.h>
Tejun Heo8c4bfc62009-07-04 08:10:59 +090013#include <linux/percpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Matthieu Castet5bd5a452010-11-16 22:31:26 +010015#include <linux/pci.h>
Stephen Rothwelld6472302015-06-02 19:01:38 +100016#include <linux/vmalloc.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010017
Ingo Molnar66441bd2017-01-27 10:27:10 +010018#include <asm/e820/api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/processor.h>
20#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080021#include <asm/sections.h>
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -080022#include <asm/setup.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080023#include <linux/uaccess.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010024#include <asm/pgalloc.h>
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010025#include <asm/proto.h>
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070026#include <asm/pat.h>
Laura Abbottd1163652017-05-08 15:58:11 -070027#include <asm/set_memory.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Ingo Molnar9df84992008-02-04 16:48:09 +010029/*
30 * The current flushing context - we pass it instead of 5 arguments:
31 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010032struct cpa_data {
Shaohua Lid75586a2008-08-21 10:46:06 +080033 unsigned long *vaddr;
Borislav Petkov0fd64c22013-10-31 17:25:00 +010034 pgd_t *pgd;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010035 pgprot_t mask_set;
36 pgprot_t mask_clr;
Matt Fleming74256372016-01-29 11:36:10 +000037 unsigned long numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +080038 int flags;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010039 unsigned long pfn;
Andi Kleenc9caa022008-03-12 03:53:29 +010040 unsigned force_split : 1;
Shaohua Lid75586a2008-08-21 10:46:06 +080041 int curpage;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070042 struct page **pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010043};
44
Suresh Siddhaad5ca552008-09-23 14:00:42 -070045/*
46 * Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
47 * using cpa_lock. So that we don't allow any other cpu, with stale large tlb
48 * entries change the page attribute in parallel to some other cpu
49 * splitting a large page entry along with changing the attribute.
50 */
51static DEFINE_SPINLOCK(cpa_lock);
52
Shaohua Lid75586a2008-08-21 10:46:06 +080053#define CPA_FLUSHTLB 1
54#define CPA_ARRAY 2
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -070055#define CPA_PAGES_ARRAY 4
Shaohua Lid75586a2008-08-21 10:46:06 +080056
Thomas Gleixner65280e62008-05-05 16:35:21 +020057#ifdef CONFIG_PROC_FS
Andi Kleence0c0e52008-05-02 11:46:49 +020058static unsigned long direct_pages_count[PG_LEVEL_NUM];
59
Thomas Gleixner65280e62008-05-05 16:35:21 +020060void update_page_count(int level, unsigned long pages)
Andi Kleence0c0e52008-05-02 11:46:49 +020061{
Andi Kleence0c0e52008-05-02 11:46:49 +020062 /* Protect against CPA */
Andrea Arcangelia79e53d2011-02-16 15:45:22 -080063 spin_lock(&pgd_lock);
Andi Kleence0c0e52008-05-02 11:46:49 +020064 direct_pages_count[level] += pages;
Andrea Arcangelia79e53d2011-02-16 15:45:22 -080065 spin_unlock(&pgd_lock);
Andi Kleence0c0e52008-05-02 11:46:49 +020066}
67
Thomas Gleixner65280e62008-05-05 16:35:21 +020068static void split_page_count(int level)
69{
Dave Jonesc9e0d392016-01-11 12:04:28 -050070 if (direct_pages_count[level] == 0)
71 return;
72
Thomas Gleixner65280e62008-05-05 16:35:21 +020073 direct_pages_count[level]--;
74 direct_pages_count[level - 1] += PTRS_PER_PTE;
75}
76
Alexey Dobriyane1759c22008-10-15 23:50:22 +040077void arch_report_meminfo(struct seq_file *m)
Thomas Gleixner65280e62008-05-05 16:35:21 +020078{
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000079 seq_printf(m, "DirectMap4k: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010080 direct_pages_count[PG_LEVEL_4K] << 2);
81#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000082 seq_printf(m, "DirectMap2M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010083 direct_pages_count[PG_LEVEL_2M] << 11);
84#else
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000085 seq_printf(m, "DirectMap4M: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010086 direct_pages_count[PG_LEVEL_2M] << 12);
87#endif
Hugh Dickinsa06de632008-08-15 13:58:32 +010088 if (direct_gbpages)
Hugh Dickinsb9c3bfc2008-11-06 12:05:40 +000089 seq_printf(m, "DirectMap1G: %8lu kB\n",
Hugh Dickinsa06de632008-08-15 13:58:32 +010090 direct_pages_count[PG_LEVEL_1G] << 20);
Thomas Gleixner65280e62008-05-05 16:35:21 +020091}
92#else
93static inline void split_page_count(int level) { }
94#endif
95
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010096#ifdef CONFIG_X86_64
97
98static inline unsigned long highmap_start_pfn(void)
99{
Alexander Duyckfc8d7822012-11-16 13:57:13 -0800100 return __pa_symbol(_text) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100101}
102
103static inline unsigned long highmap_end_pfn(void)
104{
Thomas Garnier4ff53082016-06-15 12:05:45 -0700105 /* Do not reference physical address outside the kernel. */
106 return __pa_symbol(roundup(_brk_end, PMD_SIZE) - 1) >> PAGE_SHIFT;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100107}
108
109#endif
110
Arjan van de Vened724be2008-01-30 13:34:04 +0100111static inline int
112within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +0100113{
Arjan van de Vened724be2008-01-30 13:34:04 +0100114 return addr >= start && addr < end;
115}
116
Thomas Garnier4ff53082016-06-15 12:05:45 -0700117static inline int
118within_inclusive(unsigned long addr, unsigned long start, unsigned long end)
119{
120 return addr >= start && addr <= end;
121}
122
Arjan van de Vened724be2008-01-30 13:34:04 +0100123/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100124 * Flushing functions
125 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100126
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100127/**
128 * clflush_cache_range - flush a cache range with clflush
Wanpeng Li9efc31b2012-06-10 10:50:52 +0800129 * @vaddr: virtual start address
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100130 * @size: number of bytes to flush
131 *
Ross Zwisler8b80fd82014-02-26 12:06:50 -0700132 * clflushopt is an unordered instruction which needs fencing with mfence or
133 * sfence to avoid ordering issues.
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100134 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100135void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100136{
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000137 const unsigned long clflush_size = boot_cpu_data.x86_clflush_size;
138 void *p = (void *)((unsigned long)vaddr & ~(clflush_size - 1));
Ross Zwisler6c434d62015-05-11 10:15:49 +0200139 void *vend = vaddr + size;
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000140
141 if (p >= vend)
142 return;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100143
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100144 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100145
Chris Wilson1f1a89a2016-01-08 09:55:33 +0000146 for (; p < vend; p += clflush_size)
Ross Zwisler6c434d62015-05-11 10:15:49 +0200147 clflushopt(p);
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100148
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +0100149 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100150}
Eric Anholte517a5e2009-09-10 17:48:48 -0700151EXPORT_SYMBOL_GPL(clflush_cache_range);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100152
Dan Williamsf2b61252017-05-29 23:00:34 -0700153void arch_invalidate_pmem(void *addr, size_t size)
154{
155 clflush_cache_range(addr, size);
156}
157EXPORT_SYMBOL_GPL(arch_invalidate_pmem);
158
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100159static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100160{
Andi Kleen6bb83832008-02-04 16:48:06 +0100161 unsigned long cache = (unsigned long)arg;
162
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100163 /*
164 * Flush all to work around Errata in early athlons regarding
165 * large page flushing.
166 */
167 __flush_tlb_all();
168
venkatesh.pallipadi@intel.com0b827532009-05-22 13:23:37 -0700169 if (cache && boot_cpu_data.x86 >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100170 wbinvd();
171}
172
Andi Kleen6bb83832008-02-04 16:48:06 +0100173static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100174{
175 BUG_ON(irqs_disabled());
176
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200177 on_each_cpu(__cpa_flush_all, (void *) cache, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100178}
179
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100180static void __cpa_flush_range(void *arg)
181{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100182 /*
183 * We could optimize that further and do individual per page
184 * tlb invalidates for a low number of pages. Caveat: we must
185 * flush the high aliases on 64bit as well.
186 */
187 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100188}
189
Andi Kleen6bb83832008-02-04 16:48:06 +0100190static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100191{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100192 unsigned int i, level;
193 unsigned long addr;
194
Steven Rostedt (VMware)a53276e2017-05-26 10:14:11 -0400195 BUG_ON(irqs_disabled() && !early_boot_irqs_disabled);
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100196 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100197
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200198 on_each_cpu(__cpa_flush_range, NULL, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100199
Andi Kleen6bb83832008-02-04 16:48:06 +0100200 if (!cache)
201 return;
202
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100203 /*
204 * We only need to flush on one CPU,
205 * clflush is a MESI-coherent instruction that
206 * will cause all other CPUs to flush the same
207 * cachelines:
208 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100209 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
210 pte_t *pte = lookup_address(addr, &level);
211
212 /*
213 * Only flush present addresses:
214 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100215 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100216 clflush_cache_range((void *) addr, PAGE_SIZE);
217 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100218}
219
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700220static void cpa_flush_array(unsigned long *start, int numpages, int cache,
221 int in_flags, struct page **pages)
Shaohua Lid75586a2008-08-21 10:46:06 +0800222{
223 unsigned int i, level;
John Ogness459fbe02017-01-30 09:41:21 +0100224#ifdef CONFIG_PREEMPT
225 /*
226 * Avoid wbinvd() because it causes latencies on all CPUs,
227 * regardless of any CPU isolation that may be in effect.
228 *
229 * This should be extended for CAT enabled systems independent of
230 * PREEMPT because wbinvd() does not respect the CAT partitions and
231 * this is exposed to unpriviledged users through the graphics
232 * subsystem.
233 */
234 unsigned long do_wbinvd = 0;
235#else
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700236 unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
John Ogness459fbe02017-01-30 09:41:21 +0100237#endif
Shaohua Lid75586a2008-08-21 10:46:06 +0800238
239 BUG_ON(irqs_disabled());
240
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700241 on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
Shaohua Lid75586a2008-08-21 10:46:06 +0800242
Pallipadi, Venkatesh21717872009-05-26 10:33:35 -0700243 if (!cache || do_wbinvd)
Shaohua Lid75586a2008-08-21 10:46:06 +0800244 return;
245
Shaohua Lid75586a2008-08-21 10:46:06 +0800246 /*
247 * We only need to flush on one CPU,
248 * clflush is a MESI-coherent instruction that
249 * will cause all other CPUs to flush the same
250 * cachelines:
251 */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700252 for (i = 0; i < numpages; i++) {
253 unsigned long addr;
254 pte_t *pte;
255
256 if (in_flags & CPA_PAGES_ARRAY)
257 addr = (unsigned long)page_address(pages[i]);
258 else
259 addr = start[i];
260
261 pte = lookup_address(addr, &level);
Shaohua Lid75586a2008-08-21 10:46:06 +0800262
263 /*
264 * Only flush present addresses:
265 */
266 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -0700267 clflush_cache_range((void *)addr, PAGE_SIZE);
Shaohua Lid75586a2008-08-21 10:46:06 +0800268 }
269}
270
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100271/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100272 * Certain areas of memory on x86 require very specific protection flags,
273 * for example the BIOS area or kernel text. Callers don't always get this
274 * right (again, ioremap() on BIOS memory is not uncommon) so this function
275 * checks and fixes these known static required protection bits.
276 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100277static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
278 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100279{
280 pgprot_t forbidden = __pgprot(0);
281
Ingo Molnar687c4822008-01-30 13:34:04 +0100282 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100283 * The BIOS area between 640k and 1Mb needs to be executable for
284 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100285 */
Matthieu Castet5bd5a452010-11-16 22:31:26 +0100286#ifdef CONFIG_PCI_BIOS
287 if (pcibios_enabled && within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100288 pgprot_val(forbidden) |= _PAGE_NX;
Matthieu Castet5bd5a452010-11-16 22:31:26 +0100289#endif
Arjan van de Vened724be2008-01-30 13:34:04 +0100290
291 /*
292 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100293 * Does not cover __inittext since that is gone later on. On
294 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100295 */
296 if (within(address, (unsigned long)_text, (unsigned long)_etext))
297 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100298
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100299 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100300 * The .rodata section needs to be read-only. Using the pfn
301 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100302 */
Alexander Duyckfc8d7822012-11-16 13:57:13 -0800303 if (within(pfn, __pa_symbol(__start_rodata) >> PAGE_SHIFT,
304 __pa_symbol(__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100305 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100306
Kees Cook9ccaf772016-02-17 14:41:14 -0800307#if defined(CONFIG_X86_64)
Suresh Siddha74e08172009-10-14 14:46:56 -0700308 /*
Suresh Siddha502f6602009-10-28 18:46:56 -0800309 * Once the kernel maps the text as RO (kernel_set_to_readonly is set),
310 * kernel text mappings for the large page aligned text, rodata sections
311 * will be always read-only. For the kernel identity mappings covering
312 * the holes caused by this alignment can be anything that user asks.
Suresh Siddha74e08172009-10-14 14:46:56 -0700313 *
314 * This will preserve the large page mappings for kernel text/data
315 * at no extra cost.
316 */
Suresh Siddha502f6602009-10-28 18:46:56 -0800317 if (kernel_set_to_readonly &&
318 within(address, (unsigned long)_text,
Suresh Siddha281ff332010-02-18 11:51:40 -0800319 (unsigned long)__end_rodata_hpage_align)) {
320 unsigned int level;
321
322 /*
323 * Don't enforce the !RW mapping for the kernel text mapping,
324 * if the current mapping is already using small page mapping.
325 * No need to work hard to preserve large page mappings in this
326 * case.
327 *
328 * This also fixes the Linux Xen paravirt guest boot failure
329 * (because of unexpected read-only mappings for kernel identity
330 * mappings). In this paravirt guest case, the kernel text
331 * mapping and the kernel identity mapping share the same
332 * page-table pages. Thus we can't really use different
333 * protections for the kernel text and identity mappings. Also,
334 * these shared mappings are made of small page mappings.
335 * Thus this don't enforce !RW mapping for small page kernel
336 * text mapping logic will help Linux Xen parvirt guest boot
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300337 * as well.
Suresh Siddha281ff332010-02-18 11:51:40 -0800338 */
339 if (lookup_address(address, &level) && (level != PG_LEVEL_4K))
340 pgprot_val(forbidden) |= _PAGE_RW;
341 }
Suresh Siddha74e08172009-10-14 14:46:56 -0700342#endif
343
Arjan van de Vened724be2008-01-30 13:34:04 +0100344 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100345
346 return prot;
347}
348
Matt Fleming426e34c2013-12-06 21:13:04 +0000349/*
350 * Lookup the page table entry for a virtual address in a specific pgd.
351 * Return a pointer to the entry and the level of the mapping.
352 */
353pte_t *lookup_address_in_pgd(pgd_t *pgd, unsigned long address,
354 unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100355{
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300356 p4d_t *p4d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 pud_t *pud;
358 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100359
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100360 *level = PG_LEVEL_NONE;
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (pgd_none(*pgd))
363 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100364
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300365 p4d = p4d_offset(pgd, address);
366 if (p4d_none(*p4d))
367 return NULL;
368
369 *level = PG_LEVEL_512G;
370 if (p4d_large(*p4d) || !p4d_present(*p4d))
371 return (pte_t *)p4d;
372
373 pud = pud_offset(p4d, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (pud_none(*pud))
375 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100376
377 *level = PG_LEVEL_1G;
378 if (pud_large(*pud) || !pud_present(*pud))
379 return (pte_t *)pud;
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 pmd = pmd_offset(pud, address);
382 if (pmd_none(*pmd))
383 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100384
385 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100386 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100389 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100390
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100391 return pte_offset_kernel(pmd, address);
392}
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100393
394/*
395 * Lookup the page table entry for a virtual address. Return a pointer
396 * to the entry and the level of the mapping.
397 *
398 * Note: We return pud and pmd either when the entry is marked large
399 * or when the present bit is not set. Otherwise we would return a
400 * pointer to a nonexisting mapping.
401 */
402pte_t *lookup_address(unsigned long address, unsigned int *level)
403{
Matt Fleming426e34c2013-12-06 21:13:04 +0000404 return lookup_address_in_pgd(pgd_offset_k(address), address, level);
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100405}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200406EXPORT_SYMBOL_GPL(lookup_address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100407
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100408static pte_t *_lookup_address_cpa(struct cpa_data *cpa, unsigned long address,
409 unsigned int *level)
410{
411 if (cpa->pgd)
Matt Fleming426e34c2013-12-06 21:13:04 +0000412 return lookup_address_in_pgd(cpa->pgd + pgd_index(address),
Borislav Petkov0fd64c22013-10-31 17:25:00 +0100413 address, level);
414
415 return lookup_address(address, level);
416}
417
Ingo Molnar9df84992008-02-04 16:48:09 +0100418/*
Juergen Gross792230c2014-11-28 11:53:56 +0100419 * Lookup the PMD entry for a virtual address. Return a pointer to the entry
420 * or NULL if not present.
421 */
422pmd_t *lookup_pmd_address(unsigned long address)
423{
424 pgd_t *pgd;
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300425 p4d_t *p4d;
Juergen Gross792230c2014-11-28 11:53:56 +0100426 pud_t *pud;
427
428 pgd = pgd_offset_k(address);
429 if (pgd_none(*pgd))
430 return NULL;
431
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300432 p4d = p4d_offset(pgd, address);
433 if (p4d_none(*p4d) || p4d_large(*p4d) || !p4d_present(*p4d))
434 return NULL;
435
436 pud = pud_offset(p4d, address);
Juergen Gross792230c2014-11-28 11:53:56 +0100437 if (pud_none(*pud) || pud_large(*pud) || !pud_present(*pud))
438 return NULL;
439
440 return pmd_offset(pud, address);
441}
442
443/*
Dave Hansend7656532013-01-22 13:24:33 -0800444 * This is necessary because __pa() does not work on some
445 * kinds of memory, like vmalloc() or the alloc_remap()
446 * areas on 32-bit NUMA systems. The percpu areas can
447 * end up in this kind of memory, for instance.
448 *
449 * This could be optimized, but it is only intended to be
450 * used at inititalization time, and keeping it
451 * unoptimized should increase the testing coverage for
452 * the more obscure platforms.
453 */
454phys_addr_t slow_virt_to_phys(void *__virt_addr)
455{
456 unsigned long virt_addr = (unsigned long)__virt_addr;
Dexuan Cuibf70e552016-02-25 01:58:12 -0800457 phys_addr_t phys_addr;
458 unsigned long offset;
Dave Hansend7656532013-01-22 13:24:33 -0800459 enum pg_level level;
Dave Hansend7656532013-01-22 13:24:33 -0800460 pte_t *pte;
461
462 pte = lookup_address(virt_addr, &level);
463 BUG_ON(!pte);
Toshi Kani34437e62015-09-17 12:24:20 -0600464
Dexuan Cuibf70e552016-02-25 01:58:12 -0800465 /*
466 * pXX_pfn() returns unsigned long, which must be cast to phys_addr_t
467 * before being left-shifted PAGE_SHIFT bits -- this trick is to
468 * make 32-PAE kernel work correctly.
469 */
Toshi Kani34437e62015-09-17 12:24:20 -0600470 switch (level) {
471 case PG_LEVEL_1G:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800472 phys_addr = (phys_addr_t)pud_pfn(*(pud_t *)pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600473 offset = virt_addr & ~PUD_PAGE_MASK;
474 break;
475 case PG_LEVEL_2M:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800476 phys_addr = (phys_addr_t)pmd_pfn(*(pmd_t *)pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600477 offset = virt_addr & ~PMD_PAGE_MASK;
478 break;
479 default:
Dexuan Cuibf70e552016-02-25 01:58:12 -0800480 phys_addr = (phys_addr_t)pte_pfn(*pte) << PAGE_SHIFT;
Toshi Kani34437e62015-09-17 12:24:20 -0600481 offset = virt_addr & ~PAGE_MASK;
482 }
483
484 return (phys_addr_t)(phys_addr | offset);
Dave Hansend7656532013-01-22 13:24:33 -0800485}
486EXPORT_SYMBOL_GPL(slow_virt_to_phys);
487
488/*
Ingo Molnar9df84992008-02-04 16:48:09 +0100489 * Set the new pmd in all the pgds we know about:
490 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100491static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100492{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100493 /* change init_mm */
494 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100495#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100496 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100497 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100499 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100500 pgd_t *pgd;
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300501 p4d_t *p4d;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100502 pud_t *pud;
503 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100504
Ingo Molnar44af6c42008-01-30 13:34:03 +0100505 pgd = (pgd_t *)page_address(page) + pgd_index(address);
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300506 p4d = p4d_offset(pgd, address);
507 pud = pud_offset(p4d, address);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100508 pmd = pmd_offset(pud, address);
509 set_pte_atomic((pte_t *)pmd, pte);
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100512#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Ingo Molnar9df84992008-02-04 16:48:09 +0100515static int
516try_preserve_large_page(pte_t *kpte, unsigned long address,
517 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100518{
Toshi Kani3a191092015-09-17 12:24:22 -0600519 unsigned long nextpage_addr, numpages, pmask, psize, addr, pfn, old_pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100520 pte_t new_pte, old_pte, *tmp;
matthieu castet64edc8e2010-11-16 22:30:27 +0100521 pgprot_t old_prot, new_prot, req_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100522 int i, do_split = 1;
Dave Hansenf3c4fbb2013-01-22 13:24:32 -0800523 enum pg_level level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100524
Andi Kleenc9caa022008-03-12 03:53:29 +0100525 if (cpa->force_split)
526 return 1;
527
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800528 spin_lock(&pgd_lock);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100529 /*
530 * Check for races, another CPU might have split this page
531 * up already:
532 */
Borislav Petkov82f07122013-10-31 17:25:07 +0100533 tmp = _lookup_address_cpa(cpa, address, &level);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100534 if (tmp != kpte)
535 goto out_unlock;
536
537 switch (level) {
538 case PG_LEVEL_2M:
Toshi Kani3a191092015-09-17 12:24:22 -0600539 old_prot = pmd_pgprot(*(pmd_t *)kpte);
540 old_pfn = pmd_pfn(*(pmd_t *)kpte);
541 break;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100542 case PG_LEVEL_1G:
Toshi Kani3a191092015-09-17 12:24:22 -0600543 old_prot = pud_pgprot(*(pud_t *)kpte);
544 old_pfn = pud_pfn(*(pud_t *)kpte);
Dave Hansenf3c4fbb2013-01-22 13:24:32 -0800545 break;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100546 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100547 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100548 goto out_unlock;
549 }
550
Toshi Kani3a191092015-09-17 12:24:22 -0600551 psize = page_level_size(level);
552 pmask = page_level_mask(level);
553
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100554 /*
555 * Calculate the number of pages, which fit into this large
556 * page starting at address:
557 */
558 nextpage_addr = (address + psize) & pmask;
559 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100560 if (numpages < cpa->numpages)
561 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100562
563 /*
564 * We are safe now. Check whether the new pgprot is the same:
Juergen Grossf5b28312014-11-03 14:02:02 +0100565 * Convert protection attributes to 4k-format, as cpa->mask* are set
566 * up accordingly.
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100567 */
568 old_pte = *kpte;
Toshi Kani55696b12015-09-17 12:24:24 -0600569 req_prot = pgprot_large_2_4k(old_prot);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100570
matthieu castet64edc8e2010-11-16 22:30:27 +0100571 pgprot_val(req_prot) &= ~pgprot_val(cpa->mask_clr);
572 pgprot_val(req_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100573
574 /*
Juergen Grossf5b28312014-11-03 14:02:02 +0100575 * req_prot is in format of 4k pages. It must be converted to large
576 * page format: the caching mode includes the PAT bit located at
577 * different bit positions in the two formats.
578 */
579 req_prot = pgprot_4k_2_large(req_prot);
580
581 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800582 * Set the PSE and GLOBAL flags only if the PRESENT flag is
583 * set otherwise pmd_present/pmd_huge will return true even on
584 * a non present pmd. The canon_pgprot will clear _PAGE_GLOBAL
585 * for the ancient hardware that doesn't support it.
586 */
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200587 if (pgprot_val(req_prot) & _PAGE_PRESENT)
588 pgprot_val(req_prot) |= _PAGE_PSE | _PAGE_GLOBAL;
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800589 else
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200590 pgprot_val(req_prot) &= ~(_PAGE_PSE | _PAGE_GLOBAL);
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800591
Andrea Arcangelif76cfa32013-04-10 15:28:25 +0200592 req_prot = canon_pgprot(req_prot);
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800593
594 /*
Toshi Kani3a191092015-09-17 12:24:22 -0600595 * old_pfn points to the large page base pfn. So we need
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100596 * to add the offset of the virtual address:
597 */
Toshi Kani3a191092015-09-17 12:24:22 -0600598 pfn = old_pfn + ((address & (psize - 1)) >> PAGE_SHIFT);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100599 cpa->pfn = pfn;
600
matthieu castet64edc8e2010-11-16 22:30:27 +0100601 new_prot = static_protections(req_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100602
603 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100604 * We need to check the full range, whether
605 * static_protection() requires a different pgprot for one of
606 * the pages in the range we try to preserve:
607 */
matthieu castet64edc8e2010-11-16 22:30:27 +0100608 addr = address & pmask;
Toshi Kani3a191092015-09-17 12:24:22 -0600609 pfn = old_pfn;
matthieu castet64edc8e2010-11-16 22:30:27 +0100610 for (i = 0; i < (psize >> PAGE_SHIFT); i++, addr += PAGE_SIZE, pfn++) {
611 pgprot_t chk_prot = static_protections(req_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100612
613 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
614 goto out_unlock;
615 }
616
617 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100618 * If there are no changes, return. maxpages has been updated
619 * above:
620 */
621 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100622 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100623 goto out_unlock;
624 }
625
626 /*
627 * We need to change the attributes. Check, whether we can
628 * change the large page in one go. We request a split, when
629 * the address is not aligned and the number of pages is
630 * smaller than the number of pages in the large page. Note
631 * that we limited the number of possible pages already to
632 * the number of pages in the large page.
633 */
matthieu castet64edc8e2010-11-16 22:30:27 +0100634 if (address == (address & pmask) && cpa->numpages == (psize >> PAGE_SHIFT)) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100635 /*
636 * The address is aligned and the number of pages
637 * covers the full page.
638 */
Toshi Kani3a191092015-09-17 12:24:22 -0600639 new_pte = pfn_pte(old_pfn, new_prot);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100640 __set_pmd_pte(kpte, address, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +0800641 cpa->flags |= CPA_FLUSHTLB;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100642 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100643 }
644
645out_unlock:
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800646 spin_unlock(&pgd_lock);
Ingo Molnar9df84992008-02-04 16:48:09 +0100647
Ingo Molnarbeaff632008-02-04 16:48:09 +0100648 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100649}
650
Borislav Petkov59528862013-03-21 18:16:57 +0100651static int
Borislav Petkov82f07122013-10-31 17:25:07 +0100652__split_large_page(struct cpa_data *cpa, pte_t *kpte, unsigned long address,
653 struct page *base)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100654{
Borislav Petkov59528862013-03-21 18:16:57 +0100655 pte_t *pbase = (pte_t *)page_address(base);
Toshi Kanid551aaa2015-09-17 12:24:23 -0600656 unsigned long ref_pfn, pfn, pfninc = 1;
Ingo Molnar86f03982008-01-30 13:34:09 +0100657 unsigned int i, level;
Wen Congyangae9aae92013-02-22 16:33:04 -0800658 pte_t *tmp;
Ingo Molnar9df84992008-02-04 16:48:09 +0100659 pgprot_t ref_prot;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100660
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800661 spin_lock(&pgd_lock);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100662 /*
663 * Check for races, another CPU might have split this page
664 * up for us already:
665 */
Borislav Petkov82f07122013-10-31 17:25:07 +0100666 tmp = _lookup_address_cpa(cpa, address, &level);
Wen Congyangae9aae92013-02-22 16:33:04 -0800667 if (tmp != kpte) {
668 spin_unlock(&pgd_lock);
669 return 1;
670 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100671
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700672 paravirt_alloc_pte(&init_mm, page_to_pfn(base));
Juergen Grossf5b28312014-11-03 14:02:02 +0100673
Toshi Kanid551aaa2015-09-17 12:24:23 -0600674 switch (level) {
675 case PG_LEVEL_2M:
676 ref_prot = pmd_pgprot(*(pmd_t *)kpte);
677 /* clear PSE and promote PAT bit to correct position */
Juergen Grossf5b28312014-11-03 14:02:02 +0100678 ref_prot = pgprot_large_2_4k(ref_prot);
Toshi Kanid551aaa2015-09-17 12:24:23 -0600679 ref_pfn = pmd_pfn(*(pmd_t *)kpte);
680 break;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100681
Toshi Kanid551aaa2015-09-17 12:24:23 -0600682 case PG_LEVEL_1G:
683 ref_prot = pud_pgprot(*(pud_t *)kpte);
684 ref_pfn = pud_pfn(*(pud_t *)kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100685 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
Toshi Kanid551aaa2015-09-17 12:24:23 -0600686
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800687 /*
Toshi Kanid551aaa2015-09-17 12:24:23 -0600688 * Clear the PSE flags if the PRESENT flag is not set
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800689 * otherwise pmd_present/pmd_huge will return true
690 * even on a non present pmd.
691 */
Toshi Kanid551aaa2015-09-17 12:24:23 -0600692 if (!(pgprot_val(ref_prot) & _PAGE_PRESENT))
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800693 pgprot_val(ref_prot) &= ~_PAGE_PSE;
Toshi Kanid551aaa2015-09-17 12:24:23 -0600694 break;
695
696 default:
697 spin_unlock(&pgd_lock);
698 return 1;
Andi Kleenf07333f2008-02-04 16:48:09 +0100699 }
Andi Kleenf07333f2008-02-04 16:48:09 +0100700
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100701 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800702 * Set the GLOBAL flags only if the PRESENT flag is set
703 * otherwise pmd/pte_present will return true even on a non
704 * present pmd/pte. The canon_pgprot will clear _PAGE_GLOBAL
705 * for the ancient hardware that doesn't support it.
706 */
707 if (pgprot_val(ref_prot) & _PAGE_PRESENT)
708 pgprot_val(ref_prot) |= _PAGE_GLOBAL;
709 else
710 pgprot_val(ref_prot) &= ~_PAGE_GLOBAL;
711
712 /*
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100713 * Get the target pfn from the original entry:
714 */
Toshi Kanid551aaa2015-09-17 12:24:23 -0600715 pfn = ref_pfn;
Andi Kleenf07333f2008-02-04 16:48:09 +0100716 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -0800717 set_pte(&pbase[i], pfn_pte(pfn, canon_pgprot(ref_prot)));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100718
Sai Praneeth2c66e24d2015-10-16 16:20:27 -0700719 if (virt_addr_valid(address)) {
720 unsigned long pfn = PFN_DOWN(__pa(address));
721
722 if (pfn_range_is_mapped(pfn, pfn + 1))
723 split_page_count(level);
724 }
Yinghai Luf361a452008-07-10 20:38:26 -0700725
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100726 /*
Ingo Molnar07a66d72009-02-20 08:04:13 +0100727 * Install the new, split up pagetable.
Huang, Ying4c881ca2008-01-30 13:34:04 +0100728 *
Ingo Molnar07a66d72009-02-20 08:04:13 +0100729 * We use the standard kernel pagetable protections for the new
730 * pagetable protections, the actual ptes set above control the
731 * primary protection behavior:
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100732 */
Ingo Molnar07a66d72009-02-20 08:04:13 +0100733 __set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
Ingo Molnar211b3d02009-03-10 22:31:03 +0100734
735 /*
736 * Intel Atom errata AAH41 workaround.
737 *
738 * The real fix should be in hw or in a microcode update, but
739 * we also probabilistically try to reduce the window of having
740 * a large TLB mixed with 4K TLBs while instruction fetches are
741 * going on.
742 */
743 __flush_tlb_all();
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800744 spin_unlock(&pgd_lock);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100745
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100746 return 0;
747}
748
Borislav Petkov82f07122013-10-31 17:25:07 +0100749static int split_large_page(struct cpa_data *cpa, pte_t *kpte,
750 unsigned long address)
Wen Congyangae9aae92013-02-22 16:33:04 -0800751{
Wen Congyangae9aae92013-02-22 16:33:04 -0800752 struct page *base;
753
Christian Borntraeger288cf3c2016-03-15 14:57:33 -0700754 if (!debug_pagealloc_enabled())
Wen Congyangae9aae92013-02-22 16:33:04 -0800755 spin_unlock(&cpa_lock);
756 base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
Christian Borntraeger288cf3c2016-03-15 14:57:33 -0700757 if (!debug_pagealloc_enabled())
Wen Congyangae9aae92013-02-22 16:33:04 -0800758 spin_lock(&cpa_lock);
759 if (!base)
760 return -ENOMEM;
761
Borislav Petkov82f07122013-10-31 17:25:07 +0100762 if (__split_large_page(cpa, kpte, address, base))
Wen Congyangae9aae92013-02-22 16:33:04 -0800763 __free_page(base);
764
765 return 0;
766}
767
Borislav Petkov52a628f2013-10-31 17:25:06 +0100768static bool try_to_free_pte_page(pte_t *pte)
769{
770 int i;
771
772 for (i = 0; i < PTRS_PER_PTE; i++)
773 if (!pte_none(pte[i]))
774 return false;
775
776 free_page((unsigned long)pte);
777 return true;
778}
779
780static bool try_to_free_pmd_page(pmd_t *pmd)
781{
782 int i;
783
784 for (i = 0; i < PTRS_PER_PMD; i++)
785 if (!pmd_none(pmd[i]))
786 return false;
787
788 free_page((unsigned long)pmd);
789 return true;
790}
791
792static bool unmap_pte_range(pmd_t *pmd, unsigned long start, unsigned long end)
793{
794 pte_t *pte = pte_offset_kernel(pmd, start);
795
796 while (start < end) {
797 set_pte(pte, __pte(0));
798
799 start += PAGE_SIZE;
800 pte++;
801 }
802
803 if (try_to_free_pte_page((pte_t *)pmd_page_vaddr(*pmd))) {
804 pmd_clear(pmd);
805 return true;
806 }
807 return false;
808}
809
810static void __unmap_pmd_range(pud_t *pud, pmd_t *pmd,
811 unsigned long start, unsigned long end)
812{
813 if (unmap_pte_range(pmd, start, end))
814 if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud)))
815 pud_clear(pud);
816}
817
818static void unmap_pmd_range(pud_t *pud, unsigned long start, unsigned long end)
819{
820 pmd_t *pmd = pmd_offset(pud, start);
821
822 /*
823 * Not on a 2MB page boundary?
824 */
825 if (start & (PMD_SIZE - 1)) {
826 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
827 unsigned long pre_end = min_t(unsigned long, end, next_page);
828
829 __unmap_pmd_range(pud, pmd, start, pre_end);
830
831 start = pre_end;
832 pmd++;
833 }
834
835 /*
836 * Try to unmap in 2M chunks.
837 */
838 while (end - start >= PMD_SIZE) {
839 if (pmd_large(*pmd))
840 pmd_clear(pmd);
841 else
842 __unmap_pmd_range(pud, pmd, start, start + PMD_SIZE);
843
844 start += PMD_SIZE;
845 pmd++;
846 }
847
848 /*
849 * 4K leftovers?
850 */
851 if (start < end)
852 return __unmap_pmd_range(pud, pmd, start, end);
853
854 /*
855 * Try again to free the PMD page if haven't succeeded above.
856 */
857 if (!pud_none(*pud))
858 if (try_to_free_pmd_page((pmd_t *)pud_page_vaddr(*pud)))
859 pud_clear(pud);
860}
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100861
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300862static void unmap_pud_range(p4d_t *p4d, unsigned long start, unsigned long end)
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100863{
Kirill A. Shutemov45478332017-03-17 21:55:12 +0300864 pud_t *pud = pud_offset(p4d, start);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +0100865
866 /*
867 * Not on a GB page boundary?
868 */
869 if (start & (PUD_SIZE - 1)) {
870 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
871 unsigned long pre_end = min_t(unsigned long, end, next_page);
872
873 unmap_pmd_range(pud, start, pre_end);
874
875 start = pre_end;
876 pud++;
877 }
878
879 /*
880 * Try to unmap in 1G chunks?
881 */
882 while (end - start >= PUD_SIZE) {
883
884 if (pud_large(*pud))
885 pud_clear(pud);
886 else
887 unmap_pmd_range(pud, start, start + PUD_SIZE);
888
889 start += PUD_SIZE;
890 pud++;
891 }
892
893 /*
894 * 2M leftovers?
895 */
896 if (start < end)
897 unmap_pmd_range(pud, start, end);
898
899 /*
900 * No need to try to free the PUD page because we'll free it in
901 * populate_pgd's error path
902 */
903}
904
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100905static int alloc_pte_page(pmd_t *pmd)
906{
907 pte_t *pte = (pte_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
908 if (!pte)
909 return -1;
910
911 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE));
912 return 0;
913}
914
Borislav Petkov4b235382013-10-31 17:25:02 +0100915static int alloc_pmd_page(pud_t *pud)
916{
917 pmd_t *pmd = (pmd_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
918 if (!pmd)
919 return -1;
920
921 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
922 return 0;
923}
924
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100925static void populate_pte(struct cpa_data *cpa,
926 unsigned long start, unsigned long end,
927 unsigned num_pages, pmd_t *pmd, pgprot_t pgprot)
928{
929 pte_t *pte;
930
931 pte = pte_offset_kernel(pmd, start);
932
Sai Praneeth3976301502016-02-17 12:35:56 +0000933 /*
934 * Set the GLOBAL flags only if the PRESENT flag is
935 * set otherwise pte_present will return true even on
936 * a non present pte. The canon_pgprot will clear
937 * _PAGE_GLOBAL for the ancient hardware that doesn't
938 * support it.
939 */
940 if (pgprot_val(pgprot) & _PAGE_PRESENT)
941 pgprot_val(pgprot) |= _PAGE_GLOBAL;
942 else
943 pgprot_val(pgprot) &= ~_PAGE_GLOBAL;
944
945 pgprot = canon_pgprot(pgprot);
946
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100947 while (num_pages-- && start < end) {
Matt Flemingedc3b912015-11-27 21:09:31 +0000948 set_pte(pte, pfn_pte(cpa->pfn, pgprot));
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100949
950 start += PAGE_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +0000951 cpa->pfn++;
Borislav Petkovc6b6f362013-10-31 17:25:04 +0100952 pte++;
953 }
954}
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100955
Matt Fleminge535ec02016-09-20 14:26:21 +0100956static long populate_pmd(struct cpa_data *cpa,
957 unsigned long start, unsigned long end,
958 unsigned num_pages, pud_t *pud, pgprot_t pgprot)
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100959{
Matt Fleminge535ec02016-09-20 14:26:21 +0100960 long cur_pages = 0;
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100961 pmd_t *pmd;
Juergen Grossf5b28312014-11-03 14:02:02 +0100962 pgprot_t pmd_pgprot;
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100963
964 /*
965 * Not on a 2M boundary?
966 */
967 if (start & (PMD_SIZE - 1)) {
968 unsigned long pre_end = start + (num_pages << PAGE_SHIFT);
969 unsigned long next_page = (start + PMD_SIZE) & PMD_MASK;
970
971 pre_end = min_t(unsigned long, pre_end, next_page);
972 cur_pages = (pre_end - start) >> PAGE_SHIFT;
973 cur_pages = min_t(unsigned int, num_pages, cur_pages);
974
975 /*
976 * Need a PTE page?
977 */
978 pmd = pmd_offset(pud, start);
979 if (pmd_none(*pmd))
980 if (alloc_pte_page(pmd))
981 return -1;
982
983 populate_pte(cpa, start, pre_end, cur_pages, pmd, pgprot);
984
985 start = pre_end;
986 }
987
988 /*
989 * We mapped them all?
990 */
991 if (num_pages == cur_pages)
992 return cur_pages;
993
Juergen Grossf5b28312014-11-03 14:02:02 +0100994 pmd_pgprot = pgprot_4k_2_large(pgprot);
995
Borislav Petkovf900a4b2013-10-31 17:25:03 +0100996 while (end - start >= PMD_SIZE) {
997
998 /*
999 * We cannot use a 1G page so allocate a PMD page if needed.
1000 */
1001 if (pud_none(*pud))
1002 if (alloc_pmd_page(pud))
1003 return -1;
1004
1005 pmd = pmd_offset(pud, start);
1006
Matt Flemingedc3b912015-11-27 21:09:31 +00001007 set_pmd(pmd, __pmd(cpa->pfn << PAGE_SHIFT | _PAGE_PSE |
Juergen Grossf5b28312014-11-03 14:02:02 +01001008 massage_pgprot(pmd_pgprot)));
Borislav Petkovf900a4b2013-10-31 17:25:03 +01001009
1010 start += PMD_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +00001011 cpa->pfn += PMD_SIZE >> PAGE_SHIFT;
Borislav Petkovf900a4b2013-10-31 17:25:03 +01001012 cur_pages += PMD_SIZE >> PAGE_SHIFT;
1013 }
1014
1015 /*
1016 * Map trailing 4K pages.
1017 */
1018 if (start < end) {
1019 pmd = pmd_offset(pud, start);
1020 if (pmd_none(*pmd))
1021 if (alloc_pte_page(pmd))
1022 return -1;
1023
1024 populate_pte(cpa, start, end, num_pages - cur_pages,
1025 pmd, pgprot);
1026 }
1027 return num_pages;
1028}
Borislav Petkov4b235382013-10-31 17:25:02 +01001029
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001030static int populate_pud(struct cpa_data *cpa, unsigned long start, p4d_t *p4d,
1031 pgprot_t pgprot)
Borislav Petkov4b235382013-10-31 17:25:02 +01001032{
1033 pud_t *pud;
1034 unsigned long end;
Matt Fleminge535ec02016-09-20 14:26:21 +01001035 long cur_pages = 0;
Juergen Grossf5b28312014-11-03 14:02:02 +01001036 pgprot_t pud_pgprot;
Borislav Petkov4b235382013-10-31 17:25:02 +01001037
1038 end = start + (cpa->numpages << PAGE_SHIFT);
1039
1040 /*
1041 * Not on a Gb page boundary? => map everything up to it with
1042 * smaller pages.
1043 */
1044 if (start & (PUD_SIZE - 1)) {
1045 unsigned long pre_end;
1046 unsigned long next_page = (start + PUD_SIZE) & PUD_MASK;
1047
1048 pre_end = min_t(unsigned long, end, next_page);
1049 cur_pages = (pre_end - start) >> PAGE_SHIFT;
1050 cur_pages = min_t(int, (int)cpa->numpages, cur_pages);
1051
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001052 pud = pud_offset(p4d, start);
Borislav Petkov4b235382013-10-31 17:25:02 +01001053
1054 /*
1055 * Need a PMD page?
1056 */
1057 if (pud_none(*pud))
1058 if (alloc_pmd_page(pud))
1059 return -1;
1060
1061 cur_pages = populate_pmd(cpa, start, pre_end, cur_pages,
1062 pud, pgprot);
1063 if (cur_pages < 0)
1064 return cur_pages;
1065
1066 start = pre_end;
1067 }
1068
1069 /* We mapped them all? */
1070 if (cpa->numpages == cur_pages)
1071 return cur_pages;
1072
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001073 pud = pud_offset(p4d, start);
Juergen Grossf5b28312014-11-03 14:02:02 +01001074 pud_pgprot = pgprot_4k_2_large(pgprot);
Borislav Petkov4b235382013-10-31 17:25:02 +01001075
1076 /*
1077 * Map everything starting from the Gb boundary, possibly with 1G pages
1078 */
Borislav Petkovb8291adc2016-03-29 17:41:58 +02001079 while (boot_cpu_has(X86_FEATURE_GBPAGES) && end - start >= PUD_SIZE) {
Matt Flemingedc3b912015-11-27 21:09:31 +00001080 set_pud(pud, __pud(cpa->pfn << PAGE_SHIFT | _PAGE_PSE |
Juergen Grossf5b28312014-11-03 14:02:02 +01001081 massage_pgprot(pud_pgprot)));
Borislav Petkov4b235382013-10-31 17:25:02 +01001082
1083 start += PUD_SIZE;
Matt Flemingedc3b912015-11-27 21:09:31 +00001084 cpa->pfn += PUD_SIZE >> PAGE_SHIFT;
Borislav Petkov4b235382013-10-31 17:25:02 +01001085 cur_pages += PUD_SIZE >> PAGE_SHIFT;
1086 pud++;
1087 }
1088
1089 /* Map trailing leftover */
1090 if (start < end) {
Matt Fleminge535ec02016-09-20 14:26:21 +01001091 long tmp;
Borislav Petkov4b235382013-10-31 17:25:02 +01001092
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001093 pud = pud_offset(p4d, start);
Borislav Petkov4b235382013-10-31 17:25:02 +01001094 if (pud_none(*pud))
1095 if (alloc_pmd_page(pud))
1096 return -1;
1097
1098 tmp = populate_pmd(cpa, start, end, cpa->numpages - cur_pages,
1099 pud, pgprot);
1100 if (tmp < 0)
1101 return cur_pages;
1102
1103 cur_pages += tmp;
1104 }
1105 return cur_pages;
1106}
Borislav Petkovf3f72962013-10-31 17:25:01 +01001107
1108/*
1109 * Restrictions for kernel page table do not necessarily apply when mapping in
1110 * an alternate PGD.
1111 */
1112static int populate_pgd(struct cpa_data *cpa, unsigned long addr)
1113{
1114 pgprot_t pgprot = __pgprot(_KERNPG_TABLE);
Borislav Petkovf3f72962013-10-31 17:25:01 +01001115 pud_t *pud = NULL; /* shut up gcc */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001116 p4d_t *p4d;
Borislav Petkov42a54772014-01-18 12:48:16 +01001117 pgd_t *pgd_entry;
Matt Fleminge535ec02016-09-20 14:26:21 +01001118 long ret;
Borislav Petkovf3f72962013-10-31 17:25:01 +01001119
1120 pgd_entry = cpa->pgd + pgd_index(addr);
1121
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001122 if (pgd_none(*pgd_entry)) {
1123 p4d = (p4d_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1124 if (!p4d)
1125 return -1;
1126
1127 set_pgd(pgd_entry, __pgd(__pa(p4d) | _KERNPG_TABLE));
1128 }
1129
Borislav Petkovf3f72962013-10-31 17:25:01 +01001130 /*
1131 * Allocate a PUD page and hand it down for mapping.
1132 */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001133 p4d = p4d_offset(pgd_entry, addr);
1134 if (p4d_none(*p4d)) {
Borislav Petkovf3f72962013-10-31 17:25:01 +01001135 pud = (pud_t *)get_zeroed_page(GFP_KERNEL | __GFP_NOTRACK);
1136 if (!pud)
1137 return -1;
Andy Lutomirski530dd8d2016-07-22 21:58:08 -07001138
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001139 set_p4d(p4d, __p4d(__pa(pud) | _KERNPG_TABLE));
Borislav Petkovf3f72962013-10-31 17:25:01 +01001140 }
1141
1142 pgprot_val(pgprot) &= ~pgprot_val(cpa->mask_clr);
1143 pgprot_val(pgprot) |= pgprot_val(cpa->mask_set);
1144
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001145 ret = populate_pud(cpa, addr, p4d, pgprot);
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001146 if (ret < 0) {
Andy Lutomirski55920d32016-07-23 09:59:28 -07001147 /*
1148 * Leave the PUD page in place in case some other CPU or thread
1149 * already found it, but remove any useless entries we just
1150 * added to it.
1151 */
Kirill A. Shutemov45478332017-03-17 21:55:12 +03001152 unmap_pud_range(p4d, addr,
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001153 addr + (cpa->numpages << PAGE_SHIFT));
Borislav Petkov0bb8aee2013-10-31 17:25:05 +01001154 return ret;
1155 }
Borislav Petkov42a54772014-01-18 12:48:16 +01001156
Borislav Petkovf3f72962013-10-31 17:25:01 +01001157 cpa->numpages = ret;
1158 return 0;
1159}
1160
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001161static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
1162 int primary)
1163{
Matt Fleming7fc84422016-04-25 21:06:35 +01001164 if (cpa->pgd) {
1165 /*
1166 * Right now, we only execute this code path when mapping
1167 * the EFI virtual memory map regions, no other users
1168 * provide a ->pgd value. This may change in the future.
1169 */
Borislav Petkov82f07122013-10-31 17:25:07 +01001170 return populate_pgd(cpa, vaddr);
Matt Fleming7fc84422016-04-25 21:06:35 +01001171 }
Borislav Petkov82f07122013-10-31 17:25:07 +01001172
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001173 /*
1174 * Ignore all non primary paths.
1175 */
Jan Beulich405e11332016-02-10 02:03:00 -07001176 if (!primary) {
1177 cpa->numpages = 1;
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001178 return 0;
Jan Beulich405e11332016-02-10 02:03:00 -07001179 }
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001180
1181 /*
1182 * Ignore the NULL PTE for kernel identity mapping, as it is expected
1183 * to have holes.
1184 * Also set numpages to '1' indicating that we processed cpa req for
1185 * one virtual address page and its pfn. TBD: numpages can be set based
1186 * on the initial value and the level returned by lookup_address().
1187 */
1188 if (within(vaddr, PAGE_OFFSET,
1189 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
1190 cpa->numpages = 1;
1191 cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
1192 return 0;
1193 } else {
1194 WARN(1, KERN_WARNING "CPA: called for zero pte. "
1195 "vaddr = %lx cpa->vaddr = %lx\n", vaddr,
1196 *cpa->vaddr);
1197
1198 return -EFAULT;
1199 }
1200}
1201
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001202static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001203{
Shaohua Lid75586a2008-08-21 10:46:06 +08001204 unsigned long address;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +01001205 int do_split, err;
1206 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001207 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001209 if (cpa->flags & CPA_PAGES_ARRAY) {
1210 struct page *page = cpa->pages[cpa->curpage];
1211 if (unlikely(PageHighMem(page)))
1212 return 0;
1213 address = (unsigned long)page_address(page);
1214 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +08001215 address = cpa->vaddr[cpa->curpage];
1216 else
1217 address = *cpa->vaddr;
Ingo Molnar97f99fe2008-01-30 13:33:55 +01001218repeat:
Borislav Petkov82f07122013-10-31 17:25:07 +01001219 kpte = _lookup_address_cpa(cpa, address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (!kpte)
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001221 return __cpa_process_fault(cpa, address, primary);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001222
1223 old_pte = *kpte;
Dave Hansendcb32d92016-07-07 17:19:15 -07001224 if (pte_none(old_pte))
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001225 return __cpa_process_fault(cpa, address, primary);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001226
Thomas Gleixner30551bb2008-01-30 13:34:04 +01001227 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001228 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001229 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001230 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +01001231
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001232 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
1233 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +01001234
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001235 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03982008-01-30 13:34:09 +01001236
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001237 /*
Andrea Arcangelia8aed3e2013-02-22 15:11:51 -08001238 * Set the GLOBAL flags only if the PRESENT flag is
1239 * set otherwise pte_present will return true even on
1240 * a non present pte. The canon_pgprot will clear
1241 * _PAGE_GLOBAL for the ancient hardware that doesn't
1242 * support it.
1243 */
1244 if (pgprot_val(new_prot) & _PAGE_PRESENT)
1245 pgprot_val(new_prot) |= _PAGE_GLOBAL;
1246 else
1247 pgprot_val(new_prot) &= ~_PAGE_GLOBAL;
1248
1249 /*
Arjan van de Ven626c2c92008-02-04 16:48:05 +01001250 * We need to keep the pfn from the existing PTE,
1251 * after all we're only going to change it's attributes
1252 * not the memory it points to
1253 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001254 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
1255 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001256 /*
1257 * Do we really change anything ?
1258 */
1259 if (pte_val(old_pte) != pte_val(new_pte)) {
1260 set_pte_atomic(kpte, new_pte);
Shaohua Lid75586a2008-08-21 10:46:06 +08001261 cpa->flags |= CPA_FLUSHTLB;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001262 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001263 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001266
1267 /*
1268 * Check, whether we can keep the large page intact
1269 * and just change the pte:
1270 */
Ingo Molnarbeaff632008-02-04 16:48:09 +01001271 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001272 /*
1273 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001274 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001275 * try_large_page:
1276 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001277 if (do_split <= 0)
1278 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001279
1280 /*
1281 * We have to split the large page:
1282 */
Borislav Petkov82f07122013-10-31 17:25:07 +01001283 err = split_large_page(cpa, kpte, address);
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001284 if (!err) {
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001285 /*
1286 * Do a global flush tlb after splitting the large page
1287 * and before we do the actual change page attribute in the PTE.
1288 *
1289 * With out this, we violate the TLB application note, that says
1290 * "The TLBs may contain both ordinary and large-page
1291 * translations for a 4-KByte range of linear addresses. This
1292 * may occur if software modifies the paging structures so that
1293 * the page size used for the address range changes. If the two
1294 * translations differ with respect to page frame or attributes
1295 * (e.g., permissions), processor behavior is undefined and may
1296 * be implementation-specific."
1297 *
1298 * We do this global tlb flush inside the cpa_lock, so that we
1299 * don't allow any other cpu, with stale tlb entries change the
1300 * page attribute in parallel, that also falls into the
1301 * just split large page entry.
1302 */
1303 flush_tlb_all();
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001304 goto repeat;
1305 }
Ingo Molnarbeaff632008-02-04 16:48:09 +01001306
Ingo Molnar87f7f8f2008-02-04 16:48:10 +01001307 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001308}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001310static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
1311
1312static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +01001313{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001314 struct cpa_data alias_cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +09001315 unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
Tejun Heoe933a732009-08-14 15:00:53 +09001316 unsigned long vaddr;
Tejun Heo992f4c12009-06-22 11:56:24 +09001317 int ret;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001318
Yinghai Lu8eb57792012-11-16 19:38:49 -08001319 if (!pfn_range_is_mapped(cpa->pfn, cpa->pfn + 1))
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001320 return 0;
1321
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001322 /*
1323 * No need to redo, when the primary call touched the direct
1324 * mapping already:
1325 */
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001326 if (cpa->flags & CPA_PAGES_ARRAY) {
1327 struct page *page = cpa->pages[cpa->curpage];
1328 if (unlikely(PageHighMem(page)))
1329 return 0;
1330 vaddr = (unsigned long)page_address(page);
1331 } else if (cpa->flags & CPA_ARRAY)
Shaohua Lid75586a2008-08-21 10:46:06 +08001332 vaddr = cpa->vaddr[cpa->curpage];
1333 else
1334 vaddr = *cpa->vaddr;
1335
1336 if (!(within(vaddr, PAGE_OFFSET,
Suresh Siddhaa1e46212009-01-20 14:20:21 -08001337 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001338
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001339 alias_cpa = *cpa;
Tejun Heo992f4c12009-06-22 11:56:24 +09001340 alias_cpa.vaddr = &laddr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001341 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Shaohua Lid75586a2008-08-21 10:46:06 +08001342
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001343 ret = __change_page_attr_set_clr(&alias_cpa, 0);
Tejun Heo992f4c12009-06-22 11:56:24 +09001344 if (ret)
1345 return ret;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +01001346 }
Ingo Molnar44af6c42008-01-30 13:34:03 +01001347
Arjan van de Ven488fd992008-01-30 13:34:07 +01001348#ifdef CONFIG_X86_64
Thomas Gleixner08797502008-01-30 13:34:09 +01001349 /*
Tejun Heo992f4c12009-06-22 11:56:24 +09001350 * If the primary call didn't touch the high mapping already
1351 * and the physical address is inside the kernel map, we need
Thomas Gleixner08797502008-01-30 13:34:09 +01001352 * to touch the high mapped kernel as well:
1353 */
Tejun Heo992f4c12009-06-22 11:56:24 +09001354 if (!within(vaddr, (unsigned long)_text, _brk_end) &&
Thomas Garnier4ff53082016-06-15 12:05:45 -07001355 within_inclusive(cpa->pfn, highmap_start_pfn(),
1356 highmap_end_pfn())) {
Tejun Heo992f4c12009-06-22 11:56:24 +09001357 unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
1358 __START_KERNEL_map - phys_base;
1359 alias_cpa = *cpa;
1360 alias_cpa.vaddr = &temp_cpa_vaddr;
1361 alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
Thomas Gleixner08797502008-01-30 13:34:09 +01001362
Tejun Heo992f4c12009-06-22 11:56:24 +09001363 /*
1364 * The high mapping range is imprecise, so ignore the
1365 * return value.
1366 */
1367 __change_page_attr_set_clr(&alias_cpa, 0);
1368 }
Thomas Gleixner08797502008-01-30 13:34:09 +01001369#endif
Tejun Heo992f4c12009-06-22 11:56:24 +09001370
1371 return 0;
Ingo Molnar44af6c42008-01-30 13:34:03 +01001372}
1373
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001374static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +01001375{
Matt Fleminge535ec02016-09-20 14:26:21 +01001376 unsigned long numpages = cpa->numpages;
1377 int ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +01001378
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001379 while (numpages) {
1380 /*
1381 * Store the remaining nr of pages for the large page
1382 * preservation check.
1383 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001384 cpa->numpages = numpages;
Shaohua Lid75586a2008-08-21 10:46:06 +08001385 /* for array changes, we can't use large page */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001386 if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +08001387 cpa->numpages = 1;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001388
Christian Borntraeger288cf3c2016-03-15 14:57:33 -07001389 if (!debug_pagealloc_enabled())
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001390 spin_lock(&cpa_lock);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001391 ret = __change_page_attr(cpa, checkalias);
Christian Borntraeger288cf3c2016-03-15 14:57:33 -07001392 if (!debug_pagealloc_enabled())
Suresh Siddhaad5ca552008-09-23 14:00:42 -07001393 spin_unlock(&cpa_lock);
Thomas Gleixnerff314522008-01-30 13:34:08 +01001394 if (ret)
1395 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +01001396
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +01001397 if (checkalias) {
1398 ret = cpa_process_alias(cpa);
1399 if (ret)
1400 return ret;
1401 }
1402
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001403 /*
1404 * Adjust the number of pages with the result of the
1405 * CPA operation. Either a large page has been
1406 * preserved or a single page update happened.
1407 */
Matt Fleming74256372016-01-29 11:36:10 +00001408 BUG_ON(cpa->numpages > numpages || !cpa->numpages);
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +01001409 numpages -= cpa->numpages;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001410 if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
Shaohua Lid75586a2008-08-21 10:46:06 +08001411 cpa->curpage++;
1412 else
1413 *cpa->vaddr += cpa->numpages * PAGE_SIZE;
1414
Thomas Gleixner65e074d2008-02-04 16:48:07 +01001415 }
Thomas Gleixnerff314522008-01-30 13:34:08 +01001416 return 0;
1417}
1418
Shaohua Lid75586a2008-08-21 10:46:06 +08001419static int change_page_attr_set_clr(unsigned long *addr, int numpages,
Andi Kleenc9caa022008-03-12 03:53:29 +01001420 pgprot_t mask_set, pgprot_t mask_clr,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001421 int force_split, int in_flag,
1422 struct page **pages)
Thomas Gleixnerff314522008-01-30 13:34:08 +01001423{
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001424 struct cpa_data cpa;
Ingo Molnarcacf8902008-08-21 13:46:33 +02001425 int ret, cache, checkalias;
Jack Steinerfa526d02009-09-03 12:56:02 -05001426 unsigned long baddr = 0;
Thomas Gleixner331e4062008-02-04 16:48:06 +01001427
Borislav Petkov82f07122013-10-31 17:25:07 +01001428 memset(&cpa, 0, sizeof(cpa));
1429
Thomas Gleixner331e4062008-02-04 16:48:06 +01001430 /*
1431 * Check, if we are requested to change a not supported
1432 * feature:
1433 */
1434 mask_set = canon_pgprot(mask_set);
1435 mask_clr = canon_pgprot(mask_clr);
Andi Kleenc9caa022008-03-12 03:53:29 +01001436 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
Thomas Gleixner331e4062008-02-04 16:48:06 +01001437 return 0;
1438
Thomas Gleixner69b14152008-02-13 11:04:50 +01001439 /* Ensure we are PAGE_SIZE aligned */
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001440 if (in_flag & CPA_ARRAY) {
Shaohua Lid75586a2008-08-21 10:46:06 +08001441 int i;
1442 for (i = 0; i < numpages; i++) {
1443 if (addr[i] & ~PAGE_MASK) {
1444 addr[i] &= PAGE_MASK;
1445 WARN_ON_ONCE(1);
1446 }
1447 }
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001448 } else if (!(in_flag & CPA_PAGES_ARRAY)) {
1449 /*
1450 * in_flag of CPA_PAGES_ARRAY implies it is aligned.
1451 * No need to cehck in that case
1452 */
1453 if (*addr & ~PAGE_MASK) {
1454 *addr &= PAGE_MASK;
1455 /*
1456 * People should not be passing in unaligned addresses:
1457 */
1458 WARN_ON_ONCE(1);
1459 }
Jack Steinerfa526d02009-09-03 12:56:02 -05001460 /*
1461 * Save address for cache flush. *addr is modified in the call
1462 * to __change_page_attr_set_clr() below.
1463 */
1464 baddr = *addr;
Thomas Gleixner69b14152008-02-13 11:04:50 +01001465 }
1466
Nick Piggin5843d9a2008-08-01 03:15:21 +02001467 /* Must avoid aliasing mappings in the highmem code */
1468 kmap_flush_unused();
1469
Nick Piggindb64fe02008-10-18 20:27:03 -07001470 vm_unmap_aliases();
1471
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001472 cpa.vaddr = addr;
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001473 cpa.pages = pages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001474 cpa.numpages = numpages;
1475 cpa.mask_set = mask_set;
1476 cpa.mask_clr = mask_clr;
Shaohua Lid75586a2008-08-21 10:46:06 +08001477 cpa.flags = 0;
1478 cpa.curpage = 0;
Andi Kleenc9caa022008-03-12 03:53:29 +01001479 cpa.force_split = force_split;
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001480
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001481 if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
1482 cpa.flags |= in_flag;
Shaohua Lid75586a2008-08-21 10:46:06 +08001483
Thomas Gleixneraf96e442008-02-15 21:49:46 +01001484 /* No alias checking for _NX bit modifications */
1485 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
1486
1487 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +01001488
Thomas Gleixner57a6a462008-01-30 13:34:08 +01001489 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001490 * Check whether we really changed something:
1491 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001492 if (!(cpa.flags & CPA_FLUSHTLB))
Shaohua Li1ac2f7d2008-08-04 14:51:24 +08001493 goto out;
Ingo Molnarcacf8902008-08-21 13:46:33 +02001494
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +01001495 /*
Andi Kleen6bb83832008-02-04 16:48:06 +01001496 * No need to flush, when we did not set any of the caching
1497 * attributes:
1498 */
Juergen Grossc06814d2014-11-03 14:01:57 +01001499 cache = !!pgprot2cachemode(mask_set);
Andi Kleen6bb83832008-02-04 16:48:06 +01001500
1501 /*
Borislav Petkovb82ad3d2014-03-12 15:13:04 +01001502 * On success we use CLFLUSH, when the CPU supports it to
1503 * avoid the WBINVD. If the CPU does not support it and in the
H. Peter Anvinf026cfa2012-08-14 09:53:38 -07001504 * error case we fall back to cpa_flush_all (which uses
Borislav Petkovb82ad3d2014-03-12 15:13:04 +01001505 * WBINVD):
Thomas Gleixner57a6a462008-01-30 13:34:08 +01001506 */
Borislav Petkov906bf7f2016-03-29 17:41:59 +02001507 if (!ret && boot_cpu_has(X86_FEATURE_CLFLUSH)) {
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001508 if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
1509 cpa_flush_array(addr, numpages, cache,
1510 cpa.flags, pages);
1511 } else
Jack Steinerfa526d02009-09-03 12:56:02 -05001512 cpa_flush_range(baddr, numpages, cache);
Shaohua Lid75586a2008-08-21 10:46:06 +08001513 } else
Andi Kleen6bb83832008-02-04 16:48:06 +01001514 cpa_flush_all(cache);
Ingo Molnarcacf8902008-08-21 13:46:33 +02001515
Thomas Gleixner76ebd052008-02-09 23:24:09 +01001516out:
Thomas Gleixnerff314522008-01-30 13:34:08 +01001517 return ret;
1518}
1519
Shaohua Lid75586a2008-08-21 10:46:06 +08001520static inline int change_page_attr_set(unsigned long *addr, int numpages,
1521 pgprot_t mask, int array)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001522{
Shaohua Lid75586a2008-08-21 10:46:06 +08001523 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001524 (array ? CPA_ARRAY : 0), NULL);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001525}
1526
Shaohua Lid75586a2008-08-21 10:46:06 +08001527static inline int change_page_attr_clear(unsigned long *addr, int numpages,
1528 pgprot_t mask, int array)
Thomas Gleixner72932c72008-01-30 13:34:08 +01001529{
Shaohua Lid75586a2008-08-21 10:46:06 +08001530 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001531 (array ? CPA_ARRAY : 0), NULL);
Thomas Gleixner72932c72008-01-30 13:34:08 +01001532}
1533
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001534static inline int cpa_set_pages_array(struct page **pages, int numpages,
1535 pgprot_t mask)
1536{
1537 return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
1538 CPA_PAGES_ARRAY, pages);
1539}
1540
1541static inline int cpa_clear_pages_array(struct page **pages, int numpages,
1542 pgprot_t mask)
1543{
1544 return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
1545 CPA_PAGES_ARRAY, pages);
1546}
1547
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001548int _set_memory_uc(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001549{
Suresh Siddhade33c442008-04-25 17:07:22 -07001550 /*
1551 * for now UC MINUS. see comments in ioremap_nocache()
Luis R. Rodrigueze4b6be332015-05-11 10:15:53 +02001552 * If you really need strong UC use ioremap_uc(), but note
1553 * that you cannot override IO areas with set_memory_*() as
1554 * these helpers cannot work with IO memory.
Suresh Siddhade33c442008-04-25 17:07:22 -07001555 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001556 return change_page_attr_set(&addr, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001557 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1558 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001559}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001560
1561int set_memory_uc(unsigned long addr, int numpages)
1562{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001563 int ret;
1564
Suresh Siddhade33c442008-04-25 17:07:22 -07001565 /*
1566 * for now UC MINUS. see comments in ioremap_nocache()
1567 */
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001568 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001569 _PAGE_CACHE_MODE_UC_MINUS, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001570 if (ret)
1571 goto out_err;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001572
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001573 ret = _set_memory_uc(addr, numpages);
1574 if (ret)
1575 goto out_free;
1576
1577 return 0;
1578
1579out_free:
1580 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1581out_err:
1582 return ret;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001583}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001584EXPORT_SYMBOL(set_memory_uc);
1585
H Hartley Sweeten2d070ef2011-11-15 14:49:00 -08001586static int _set_memory_array(unsigned long *addr, int addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001587 enum page_cache_mode new_type)
Shaohua Lid75586a2008-08-21 10:46:06 +08001588{
Toshi Kani623dffb2015-06-04 18:55:20 +02001589 enum page_cache_mode set_type;
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001590 int i, j;
1591 int ret;
1592
Shaohua Lid75586a2008-08-21 10:46:06 +08001593 for (i = 0; i < addrinarray; i++) {
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001594 ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
Pauli Nieminen4f646252010-04-01 12:45:01 +00001595 new_type, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001596 if (ret)
1597 goto out_free;
Shaohua Lid75586a2008-08-21 10:46:06 +08001598 }
1599
Toshi Kani623dffb2015-06-04 18:55:20 +02001600 /* If WC, set to UC- first and then WC */
1601 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1602 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1603
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001604 ret = change_page_attr_set(addr, addrinarray,
Toshi Kani623dffb2015-06-04 18:55:20 +02001605 cachemode2pgprot(set_type), 1);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001606
Juergen Grossc06814d2014-11-03 14:01:57 +01001607 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
Pauli Nieminen4f646252010-04-01 12:45:01 +00001608 ret = change_page_attr_set_clr(addr, addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001609 cachemode2pgprot(
1610 _PAGE_CACHE_MODE_WC),
Pauli Nieminen4f646252010-04-01 12:45:01 +00001611 __pgprot(_PAGE_CACHE_MASK),
1612 0, CPA_ARRAY, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001613 if (ret)
1614 goto out_free;
Rene Hermanc5e147c2008-08-22 01:02:20 +02001615
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001616 return 0;
1617
1618out_free:
1619 for (j = 0; j < i; j++)
1620 free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
1621
1622 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001623}
Pauli Nieminen4f646252010-04-01 12:45:01 +00001624
1625int set_memory_array_uc(unsigned long *addr, int addrinarray)
1626{
Juergen Grossc06814d2014-11-03 14:01:57 +01001627 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001628}
Shaohua Lid75586a2008-08-21 10:46:06 +08001629EXPORT_SYMBOL(set_memory_array_uc);
1630
Pauli Nieminen4f646252010-04-01 12:45:01 +00001631int set_memory_array_wc(unsigned long *addr, int addrinarray)
1632{
Juergen Grossc06814d2014-11-03 14:01:57 +01001633 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WC);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001634}
1635EXPORT_SYMBOL(set_memory_array_wc);
1636
Toshi Kani623dffb2015-06-04 18:55:20 +02001637int set_memory_array_wt(unsigned long *addr, int addrinarray)
1638{
1639 return _set_memory_array(addr, addrinarray, _PAGE_CACHE_MODE_WT);
1640}
1641EXPORT_SYMBOL_GPL(set_memory_array_wt);
1642
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001643int _set_memory_wc(unsigned long addr, int numpages)
1644{
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001645 int ret;
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001646 unsigned long addr_copy = addr;
1647
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001648 ret = change_page_attr_set(&addr, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001649 cachemode2pgprot(_PAGE_CACHE_MODE_UC_MINUS),
1650 0);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001651 if (!ret) {
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001652 ret = change_page_attr_set_clr(&addr_copy, numpages,
Juergen Grossc06814d2014-11-03 14:01:57 +01001653 cachemode2pgprot(
1654 _PAGE_CACHE_MODE_WC),
Pallipadi, Venkateshbdc63402009-07-30 14:43:19 -07001655 __pgprot(_PAGE_CACHE_MASK),
1656 0, 0, NULL);
venkatesh.pallipadi@intel.com3869c4a2009-04-09 14:26:50 -07001657 }
1658 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001659}
1660
1661int set_memory_wc(unsigned long addr, int numpages)
1662{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001663 int ret;
1664
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001665 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
Juergen Grosse00c8cc2014-11-03 14:01:59 +01001666 _PAGE_CACHE_MODE_WC, NULL);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001667 if (ret)
Toshi Kani623dffb2015-06-04 18:55:20 +02001668 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001669
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001670 ret = _set_memory_wc(addr, numpages);
1671 if (ret)
Toshi Kani623dffb2015-06-04 18:55:20 +02001672 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001673
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001674 return ret;
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -07001675}
1676EXPORT_SYMBOL(set_memory_wc);
1677
Toshi Kani623dffb2015-06-04 18:55:20 +02001678int _set_memory_wt(unsigned long addr, int numpages)
1679{
1680 return change_page_attr_set(&addr, numpages,
1681 cachemode2pgprot(_PAGE_CACHE_MODE_WT), 0);
1682}
1683
1684int set_memory_wt(unsigned long addr, int numpages)
1685{
1686 int ret;
1687
1688 ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
1689 _PAGE_CACHE_MODE_WT, NULL);
1690 if (ret)
1691 return ret;
1692
1693 ret = _set_memory_wt(addr, numpages);
1694 if (ret)
1695 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
1696
1697 return ret;
1698}
1699EXPORT_SYMBOL_GPL(set_memory_wt);
1700
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001701int _set_memory_wb(unsigned long addr, int numpages)
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001702{
Juergen Grossc06814d2014-11-03 14:01:57 +01001703 /* WB cache mode is hard wired to all cache attribute bits being 0 */
Shaohua Lid75586a2008-08-21 10:46:06 +08001704 return change_page_attr_clear(&addr, numpages,
1705 __pgprot(_PAGE_CACHE_MASK), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001706}
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001707
1708int set_memory_wb(unsigned long addr, int numpages)
1709{
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001710 int ret;
1711
1712 ret = _set_memory_wb(addr, numpages);
1713 if (ret)
1714 return ret;
1715
venkatesh.pallipadi@intel.comc15238d2008-08-20 16:45:51 -07001716 free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001717 return 0;
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -07001718}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001719EXPORT_SYMBOL(set_memory_wb);
1720
Shaohua Lid75586a2008-08-21 10:46:06 +08001721int set_memory_array_wb(unsigned long *addr, int addrinarray)
1722{
1723 int i;
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001724 int ret;
1725
Juergen Grossc06814d2014-11-03 14:01:57 +01001726 /* WB cache mode is hard wired to all cache attribute bits being 0 */
venkatesh.pallipadi@intel.coma5593e02009-04-09 14:26:48 -07001727 ret = change_page_attr_clear(addr, addrinarray,
1728 __pgprot(_PAGE_CACHE_MASK), 1);
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001729 if (ret)
1730 return ret;
Shaohua Lid75586a2008-08-21 10:46:06 +08001731
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001732 for (i = 0; i < addrinarray; i++)
1733 free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
Rene Hermanc5e147c2008-08-22 01:02:20 +02001734
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001735 return 0;
Shaohua Lid75586a2008-08-21 10:46:06 +08001736}
1737EXPORT_SYMBOL(set_memory_array_wb);
1738
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001739int set_memory_x(unsigned long addr, int numpages)
1740{
H. Peter Anvin583140a2009-11-13 15:28:15 -08001741 if (!(__supported_pte_mask & _PAGE_NX))
1742 return 0;
1743
Shaohua Lid75586a2008-08-21 10:46:06 +08001744 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001745}
1746EXPORT_SYMBOL(set_memory_x);
1747
1748int set_memory_nx(unsigned long addr, int numpages)
1749{
H. Peter Anvin583140a2009-11-13 15:28:15 -08001750 if (!(__supported_pte_mask & _PAGE_NX))
1751 return 0;
1752
Shaohua Lid75586a2008-08-21 10:46:06 +08001753 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001754}
1755EXPORT_SYMBOL(set_memory_nx);
1756
1757int set_memory_ro(unsigned long addr, int numpages)
1758{
Shaohua Lid75586a2008-08-21 10:46:06 +08001759 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001760}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001761
1762int set_memory_rw(unsigned long addr, int numpages)
1763{
Shaohua Lid75586a2008-08-21 10:46:06 +08001764 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001765}
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001766
1767int set_memory_np(unsigned long addr, int numpages)
1768{
Shaohua Lid75586a2008-08-21 10:46:06 +08001769 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001770}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001771
Andi Kleenc9caa022008-03-12 03:53:29 +01001772int set_memory_4k(unsigned long addr, int numpages)
1773{
Shaohua Lid75586a2008-08-21 10:46:06 +08001774 return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
venkatesh.pallipadi@intel.com9ae28472009-03-19 14:51:14 -07001775 __pgprot(0), 1, 0, NULL);
Andi Kleenc9caa022008-03-12 03:53:29 +01001776}
1777
Tom Lendacky77bd2342017-07-17 16:10:19 -05001778static int __set_memory_enc_dec(unsigned long addr, int numpages, bool enc)
1779{
1780 struct cpa_data cpa;
1781 unsigned long start;
1782 int ret;
1783
1784 /* Nothing to do if the SME is not active */
1785 if (!sme_active())
1786 return 0;
1787
1788 /* Should not be working on unaligned addresses */
1789 if (WARN_ONCE(addr & ~PAGE_MASK, "misaligned address: %#lx\n", addr))
1790 addr &= PAGE_MASK;
1791
1792 start = addr;
1793
1794 memset(&cpa, 0, sizeof(cpa));
1795 cpa.vaddr = &addr;
1796 cpa.numpages = numpages;
1797 cpa.mask_set = enc ? __pgprot(_PAGE_ENC) : __pgprot(0);
1798 cpa.mask_clr = enc ? __pgprot(0) : __pgprot(_PAGE_ENC);
1799 cpa.pgd = init_mm.pgd;
1800
1801 /* Must avoid aliasing mappings in the highmem code */
1802 kmap_flush_unused();
1803 vm_unmap_aliases();
1804
1805 /*
1806 * Before changing the encryption attribute, we need to flush caches.
1807 */
1808 if (static_cpu_has(X86_FEATURE_CLFLUSH))
1809 cpa_flush_range(start, numpages, 1);
1810 else
1811 cpa_flush_all(1);
1812
1813 ret = __change_page_attr_set_clr(&cpa, 1);
1814
1815 /*
1816 * After changing the encryption attribute, we need to flush TLBs
1817 * again in case any speculative TLB caching occurred (but no need
1818 * to flush caches again). We could just use cpa_flush_all(), but
1819 * in case TLB flushing gets optimized in the cpa_flush_range()
1820 * path use the same logic as above.
1821 */
1822 if (static_cpu_has(X86_FEATURE_CLFLUSH))
1823 cpa_flush_range(start, numpages, 0);
1824 else
1825 cpa_flush_all(0);
1826
1827 return ret;
1828}
1829
1830int set_memory_encrypted(unsigned long addr, int numpages)
1831{
1832 return __set_memory_enc_dec(addr, numpages, true);
1833}
Tom Lendacky95cf9262017-07-17 16:10:26 -05001834EXPORT_SYMBOL_GPL(set_memory_encrypted);
Tom Lendacky77bd2342017-07-17 16:10:19 -05001835
1836int set_memory_decrypted(unsigned long addr, int numpages)
1837{
1838 return __set_memory_enc_dec(addr, numpages, false);
1839}
Tom Lendacky95cf9262017-07-17 16:10:26 -05001840EXPORT_SYMBOL_GPL(set_memory_decrypted);
Tom Lendacky77bd2342017-07-17 16:10:19 -05001841
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001842int set_pages_uc(struct page *page, int numpages)
1843{
1844 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001845
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001846 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001847}
1848EXPORT_SYMBOL(set_pages_uc);
1849
Pauli Nieminen4f646252010-04-01 12:45:01 +00001850static int _set_pages_array(struct page **pages, int addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001851 enum page_cache_mode new_type)
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001852{
1853 unsigned long start;
1854 unsigned long end;
Toshi Kani623dffb2015-06-04 18:55:20 +02001855 enum page_cache_mode set_type;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001856 int i;
1857 int free_idx;
Pauli Nieminen4f646252010-04-01 12:45:01 +00001858 int ret;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001859
1860 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001861 if (PageHighMem(pages[i]))
1862 continue;
1863 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001864 end = start + PAGE_SIZE;
Pauli Nieminen4f646252010-04-01 12:45:01 +00001865 if (reserve_memtype(start, end, new_type, NULL))
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001866 goto err_out;
1867 }
1868
Toshi Kani623dffb2015-06-04 18:55:20 +02001869 /* If WC, set to UC- first and then WC */
1870 set_type = (new_type == _PAGE_CACHE_MODE_WC) ?
1871 _PAGE_CACHE_MODE_UC_MINUS : new_type;
1872
Pauli Nieminen4f646252010-04-01 12:45:01 +00001873 ret = cpa_set_pages_array(pages, addrinarray,
Toshi Kani623dffb2015-06-04 18:55:20 +02001874 cachemode2pgprot(set_type));
Juergen Grossc06814d2014-11-03 14:01:57 +01001875 if (!ret && new_type == _PAGE_CACHE_MODE_WC)
Pauli Nieminen4f646252010-04-01 12:45:01 +00001876 ret = change_page_attr_set_clr(NULL, addrinarray,
Juergen Grossc06814d2014-11-03 14:01:57 +01001877 cachemode2pgprot(
1878 _PAGE_CACHE_MODE_WC),
Pauli Nieminen4f646252010-04-01 12:45:01 +00001879 __pgprot(_PAGE_CACHE_MASK),
1880 0, CPA_PAGES_ARRAY, pages);
1881 if (ret)
1882 goto err_out;
1883 return 0; /* Success */
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001884err_out:
1885 free_idx = i;
1886 for (i = 0; i < free_idx; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001887 if (PageHighMem(pages[i]))
1888 continue;
1889 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001890 end = start + PAGE_SIZE;
1891 free_memtype(start, end);
1892 }
1893 return -EINVAL;
1894}
Pauli Nieminen4f646252010-04-01 12:45:01 +00001895
1896int set_pages_array_uc(struct page **pages, int addrinarray)
1897{
Juergen Grossc06814d2014-11-03 14:01:57 +01001898 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_UC_MINUS);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001899}
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001900EXPORT_SYMBOL(set_pages_array_uc);
1901
Pauli Nieminen4f646252010-04-01 12:45:01 +00001902int set_pages_array_wc(struct page **pages, int addrinarray)
1903{
Juergen Grossc06814d2014-11-03 14:01:57 +01001904 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WC);
Pauli Nieminen4f646252010-04-01 12:45:01 +00001905}
1906EXPORT_SYMBOL(set_pages_array_wc);
1907
Toshi Kani623dffb2015-06-04 18:55:20 +02001908int set_pages_array_wt(struct page **pages, int addrinarray)
1909{
1910 return _set_pages_array(pages, addrinarray, _PAGE_CACHE_MODE_WT);
1911}
1912EXPORT_SYMBOL_GPL(set_pages_array_wt);
1913
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001914int set_pages_wb(struct page *page, int numpages)
1915{
1916 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001917
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001918 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001919}
1920EXPORT_SYMBOL(set_pages_wb);
1921
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001922int set_pages_array_wb(struct page **pages, int addrinarray)
1923{
1924 int retval;
1925 unsigned long start;
1926 unsigned long end;
1927 int i;
1928
Juergen Grossc06814d2014-11-03 14:01:57 +01001929 /* WB cache mode is hard wired to all cache attribute bits being 0 */
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001930 retval = cpa_clear_pages_array(pages, addrinarray,
1931 __pgprot(_PAGE_CACHE_MASK));
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001932 if (retval)
1933 return retval;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001934
1935 for (i = 0; i < addrinarray; i++) {
Thomas Hellstrom8523acf2009-08-03 09:25:45 +02001936 if (PageHighMem(pages[i]))
1937 continue;
1938 start = page_to_pfn(pages[i]) << PAGE_SHIFT;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001939 end = start + PAGE_SIZE;
1940 free_memtype(start, end);
1941 }
1942
venkatesh.pallipadi@intel.com9fa3ab32009-04-09 14:26:49 -07001943 return 0;
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -07001944}
1945EXPORT_SYMBOL(set_pages_array_wb);
1946
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001947int set_pages_x(struct page *page, int numpages)
1948{
1949 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001950
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001951 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001952}
1953EXPORT_SYMBOL(set_pages_x);
1954
1955int set_pages_nx(struct page *page, int numpages)
1956{
1957 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001958
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001959 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001960}
1961EXPORT_SYMBOL(set_pages_nx);
1962
1963int set_pages_ro(struct page *page, int numpages)
1964{
1965 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001966
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001967 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001968}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001969
1970int set_pages_rw(struct page *page, int numpages)
1971{
1972 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001973
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +01001974 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001975}
Arjan van de Ven75cbade2008-01-30 13:34:06 +01001976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001978
1979static int __set_pages_p(struct page *page, int numpages)
1980{
Shaohua Lid75586a2008-08-21 10:46:06 +08001981 unsigned long tempaddr = (unsigned long) page_address(page);
1982 struct cpa_data cpa = { .vaddr = &tempaddr,
Borislav Petkov82f07122013-10-31 17:25:07 +01001983 .pgd = NULL,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01001984 .numpages = numpages,
1985 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
Shaohua Lid75586a2008-08-21 10:46:06 +08001986 .mask_clr = __pgprot(0),
1987 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01001988
Suresh Siddha55121b42008-09-23 14:00:40 -07001989 /*
1990 * No alias checking needed for setting present flag. otherwise,
1991 * we may need to break large pages for 64-bit kernel text
1992 * mappings (this adds to complexity if we want to do this from
1993 * atomic context especially). Let's keep it simple!
1994 */
1995 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01001996}
1997
1998static int __set_pages_np(struct page *page, int numpages)
1999{
Shaohua Lid75586a2008-08-21 10:46:06 +08002000 unsigned long tempaddr = (unsigned long) page_address(page);
2001 struct cpa_data cpa = { .vaddr = &tempaddr,
Borislav Petkov82f07122013-10-31 17:25:07 +01002002 .pgd = NULL,
Thomas Gleixner72e458d2008-02-04 16:48:07 +01002003 .numpages = numpages,
2004 .mask_set = __pgprot(0),
Shaohua Lid75586a2008-08-21 10:46:06 +08002005 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
2006 .flags = 0};
Thomas Gleixner72932c72008-01-30 13:34:08 +01002007
Suresh Siddha55121b42008-09-23 14:00:40 -07002008 /*
2009 * No alias checking needed for setting not present flag. otherwise,
2010 * we may need to break large pages for 64-bit kernel text
2011 * mappings (this adds to complexity if we want to do this from
2012 * atomic context especially). Let's keep it simple!
2013 */
2014 return __change_page_attr_set_clr(&cpa, 0);
Ingo Molnarf62d0f02008-01-30 13:34:07 +01002015}
2016
Joonsoo Kim031bc572014-12-12 16:55:52 -08002017void __kernel_map_pages(struct page *page, int numpages, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
2019 if (PageHighMem(page))
2020 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +01002021 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -07002022 debug_check_no_locks_freed(page_address(page),
2023 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01002024 }
Ingo Molnarde5097c2006-01-09 15:59:21 -08002025
Ingo Molnar9f4c8152008-01-30 13:33:41 +01002026 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +01002027 * The return value is ignored as the calls cannot fail.
Suresh Siddha55121b42008-09-23 14:00:40 -07002028 * Large pages for identity mappings are not used at boot time
2029 * and hence no memory allocations during large page split.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +01002031 if (enable)
2032 __set_pages_p(page, numpages);
2033 else
2034 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +01002035
2036 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +01002037 * We should perform an IPI and flush all tlbs,
2038 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 */
2040 __flush_tlb_all();
Boris Ostrovsky26564602013-04-11 13:59:52 -04002041
2042 arch_flush_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +01002044
2045#ifdef CONFIG_HIBERNATION
2046
2047bool kernel_page_present(struct page *page)
2048{
2049 unsigned int level;
2050 pte_t *pte;
2051
2052 if (PageHighMem(page))
2053 return false;
2054
2055 pte = lookup_address((unsigned long)page_address(page), &level);
2056 return (pte_val(*pte) & _PAGE_PRESENT);
2057}
2058
2059#endif /* CONFIG_HIBERNATION */
2060
2061#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +01002062
Borislav Petkov82f07122013-10-31 17:25:07 +01002063int kernel_map_pages_in_pgd(pgd_t *pgd, u64 pfn, unsigned long address,
2064 unsigned numpages, unsigned long page_flags)
2065{
2066 int retval = -EINVAL;
2067
2068 struct cpa_data cpa = {
2069 .vaddr = &address,
2070 .pfn = pfn,
2071 .pgd = pgd,
2072 .numpages = numpages,
2073 .mask_set = __pgprot(0),
2074 .mask_clr = __pgprot(0),
2075 .flags = 0,
2076 };
2077
2078 if (!(__supported_pte_mask & _PAGE_NX))
2079 goto out;
2080
2081 if (!(page_flags & _PAGE_NX))
2082 cpa.mask_clr = __pgprot(_PAGE_NX);
2083
Sai Praneeth15f003d2016-02-17 12:36:04 +00002084 if (!(page_flags & _PAGE_RW))
2085 cpa.mask_clr = __pgprot(_PAGE_RW);
2086
Tom Lendacky21729f82017-07-17 16:10:07 -05002087 if (!(page_flags & _PAGE_ENC))
2088 cpa.mask_clr = pgprot_encrypted(cpa.mask_clr);
2089
Borislav Petkov82f07122013-10-31 17:25:07 +01002090 cpa.mask_set = __pgprot(_PAGE_PRESENT | page_flags);
2091
2092 retval = __change_page_attr_set_clr(&cpa, 0);
2093 __flush_tlb_all();
2094
2095out:
2096 return retval;
2097}
2098
Arjan van de Vend1028a12008-01-30 13:34:07 +01002099/*
2100 * The testcases use internal knowledge of the implementation that shouldn't
2101 * be exposed to the rest of the kernel. Include these directly here.
2102 */
2103#ifdef CONFIG_CPA_DEBUG
2104#include "pageattr-test.c"
2105#endif