blob: a3b63e5a527c93c863f0782cace3af40cdf56722 [file] [log] [blame]
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07001#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09002#include <linux/gfp.h>
Joerg Roedel1e269412018-04-11 17:24:38 +02003#include <linux/hugetlb.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07004#include <asm/pgalloc.h>
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -07005#include <asm/pgtable.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07006#include <asm/tlb.h>
Ingo Molnara1d5a862008-06-20 15:34:46 +02007#include <asm/fixmap.h>
Toshi Kani6b637832015-04-14 15:47:32 -07008#include <asm/mtrr.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07009
Vladimir Davydov3e79ec72016-07-26 15:24:30 -070010#define PGALLOC_GFP (GFP_KERNEL_ACCOUNT | __GFP_NOTRACK | __GFP_ZERO)
Vegard Nossum9e730232009-02-22 11:28:25 +010011
Ian Campbell14315592010-02-17 10:38:10 +000012#ifdef CONFIG_HIGHPTE
13#define PGALLOC_USER_GFP __GFP_HIGHMEM
14#else
15#define PGALLOC_USER_GFP 0
16#endif
17
18gfp_t __userpte_alloc_gfp = PGALLOC_GFP | PGALLOC_USER_GFP;
19
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070020pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
21{
Vladimir Davydov3e79ec72016-07-26 15:24:30 -070022 return (pte_t *)__get_free_page(PGALLOC_GFP & ~__GFP_ACCOUNT);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070023}
24
25pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
26{
27 struct page *pte;
28
Ian Campbell14315592010-02-17 10:38:10 +000029 pte = alloc_pages(__userpte_alloc_gfp, 0);
Kirill A. Shutemovcecbd1b2013-11-14 14:31:47 -080030 if (!pte)
31 return NULL;
32 if (!pgtable_page_ctor(pte)) {
33 __free_page(pte);
34 return NULL;
35 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070036 return pte;
37}
38
Ian Campbell14315592010-02-17 10:38:10 +000039static int __init setup_userpte(char *arg)
40{
41 if (!arg)
42 return -EINVAL;
43
44 /*
45 * "userpte=nohigh" disables allocation of user pagetables in
46 * high memory.
47 */
48 if (strcmp(arg, "nohigh") == 0)
49 __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
50 else
51 return -EINVAL;
52 return 0;
53}
54early_param("userpte", setup_userpte);
55
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100056void ___pte_free_tlb(struct mmu_gather *tlb, struct page *pte)
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070057{
58 pgtable_page_dtor(pte);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070059 paravirt_release_pte(page_to_pfn(pte));
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070060 tlb_remove_page(tlb, pte);
61}
62
Kirill A. Shutemov98233362015-04-14 15:46:14 -070063#if CONFIG_PGTABLE_LEVELS > 2
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100064void ___pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd)
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070065{
Kirill A. Shutemovc2836102013-11-21 14:32:09 -080066 struct page *page = virt_to_page(pmd);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070067 paravirt_release_pmd(__pa(pmd) >> PAGE_SHIFT);
Dave Hansen1de14c32013-04-12 16:23:54 -070068 /*
69 * NOTE! For PAE, any changes to the top page-directory-pointer-table
70 * entries need a full cr3 reload to flush.
71 */
72#ifdef CONFIG_X86_PAE
73 tlb->need_flush_all = 1;
74#endif
Kirill A. Shutemovc2836102013-11-21 14:32:09 -080075 pgtable_pmd_page_dtor(page);
76 tlb_remove_page(tlb, page);
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070077}
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070078
Kirill A. Shutemov98233362015-04-14 15:46:14 -070079#if CONFIG_PGTABLE_LEVELS > 3
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100080void ___pud_free_tlb(struct mmu_gather *tlb, pud_t *pud)
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070081{
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -070082 paravirt_release_pud(__pa(pud) >> PAGE_SHIFT);
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070083 tlb_remove_page(tlb, virt_to_page(pud));
84}
Kirill A. Shutemov98233362015-04-14 15:46:14 -070085#endif /* CONFIG_PGTABLE_LEVELS > 3 */
86#endif /* CONFIG_PGTABLE_LEVELS > 2 */
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070087
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070088static inline void pgd_list_add(pgd_t *pgd)
89{
90 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070091
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070092 list_add(&page->lru, &pgd_list);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070093}
94
95static inline void pgd_list_del(pgd_t *pgd)
96{
97 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070098
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070099 list_del(&page->lru);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700100}
101
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700102#define UNSHARED_PTRS_PER_PGD \
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700103 (SHARED_KERNEL_PMD ? KERNEL_PGD_BOUNDARY : PTRS_PER_PGD)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700104
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700105
106static void pgd_set_mm(pgd_t *pgd, struct mm_struct *mm)
107{
108 BUILD_BUG_ON(sizeof(virt_to_page(pgd)->index) < sizeof(mm));
109 virt_to_page(pgd)->index = (pgoff_t)mm;
110}
111
112struct mm_struct *pgd_page_get_mm(struct page *page)
113{
114 return (struct mm_struct *)page->index;
115}
116
117static void pgd_ctor(struct mm_struct *mm, pgd_t *pgd)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700118{
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700119 /* If the pgd points to a shared pagetable level (either the
120 ptes in non-PAE, or shared PMD in PAE), then just copy the
121 references from swapper_pg_dir. */
Kirill A. Shutemov98233362015-04-14 15:46:14 -0700122 if (CONFIG_PGTABLE_LEVELS == 2 ||
123 (CONFIG_PGTABLE_LEVELS == 3 && SHARED_KERNEL_PMD) ||
124 CONFIG_PGTABLE_LEVELS == 4) {
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700125 clone_pgd_range(pgd + KERNEL_PGD_BOUNDARY,
126 swapper_pg_dir + KERNEL_PGD_BOUNDARY,
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700127 KERNEL_PGD_PTRS);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700128 }
129
130 /* list required to sync kernel mapping updates */
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700131 if (!SHARED_KERNEL_PMD) {
132 pgd_set_mm(pgd, mm);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700133 pgd_list_add(pgd);
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700134 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700135}
136
Jan Beulich17b74622008-08-29 12:51:32 +0100137static void pgd_dtor(pgd_t *pgd)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700138{
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700139 if (SHARED_KERNEL_PMD)
140 return;
141
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800142 spin_lock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700143 pgd_list_del(pgd);
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800144 spin_unlock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700145}
146
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -0700147/*
148 * List of all pgd's needed for non-PAE so it can invalidate entries
149 * in both cached and uncached pgd's; not needed for PAE since the
150 * kernel pmd is shared. If PAE were not to share the pmd a similar
151 * tactic would be needed. This is essentially codepath-based locking
152 * against pageattr.c; it is the unique case in which a valid change
153 * of kernel pagetables can't be lazily synchronized by vmalloc faults.
154 * vmalloc faults work because attached pagetables are never freed.
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +0100155 * -- nyc
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -0700156 */
157
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700158#ifdef CONFIG_X86_PAE
159/*
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700160 * In PAE mode, we need to do a cr3 reload (=tlb flush) when
161 * updating the top-level pagetable entries to guarantee the
162 * processor notices the update. Since this is expensive, and
163 * all 4 top-level entries are used almost immediately in a
164 * new process's life, we just pre-populate them here.
165 *
166 * Also, if we're in a paravirt environment where the kernel pmd is
167 * not shared between pagetables (!SHARED_KERNEL_PMDS), we allocate
168 * and initialize the kernel pmds here.
169 */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400170#define PREALLOCATED_PMDS UNSHARED_PTRS_PER_PGD
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100171
172void pud_populate(struct mm_struct *mm, pud_t *pudp, pmd_t *pmd)
173{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700174 paravirt_alloc_pmd(mm, __pa(pmd) >> PAGE_SHIFT);
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100175
176 /* Note: almost everything apart from _PAGE_PRESENT is
177 reserved at the pmd (PDPT) level. */
178 set_pud(pudp, __pud(__pa(pmd) | _PAGE_PRESENT));
179
180 /*
181 * According to Intel App note "TLBs, Paging-Structure Caches,
182 * and Their Invalidation", April 2007, document 317080-001,
183 * section 8.1: in PAE mode we explicitly have to flush the
184 * TLB via cr3 if the top-level pgd is changed...
185 */
Shaohua Li4981d012011-03-16 11:37:29 +0800186 flush_tlb_mm(mm);
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100187}
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700188#else /* !CONFIG_X86_PAE */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400189
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700190/* No need to prepopulate any pagetable entries in non-PAE modes. */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400191#define PREALLOCATED_PMDS 0
192
193#endif /* CONFIG_X86_PAE */
194
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800195static void free_pmds(struct mm_struct *mm, pmd_t *pmds[])
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700196{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400197 int i;
198
199 for(i = 0; i < PREALLOCATED_PMDS; i++)
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800200 if (pmds[i]) {
201 pgtable_pmd_page_dtor(virt_to_page(pmds[i]));
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400202 free_page((unsigned long)pmds[i]);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800203 mm_dec_nr_pmds(mm);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800204 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700205}
206
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800207static int preallocate_pmds(struct mm_struct *mm, pmd_t *pmds[])
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700208{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400209 int i;
210 bool failed = false;
Vladimir Davydov3e79ec72016-07-26 15:24:30 -0700211 gfp_t gfp = PGALLOC_GFP;
212
213 if (mm == &init_mm)
214 gfp &= ~__GFP_ACCOUNT;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400215
216 for(i = 0; i < PREALLOCATED_PMDS; i++) {
Vladimir Davydov3e79ec72016-07-26 15:24:30 -0700217 pmd_t *pmd = (pmd_t *)__get_free_page(gfp);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800218 if (!pmd)
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400219 failed = true;
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800220 if (pmd && !pgtable_pmd_page_ctor(virt_to_page(pmd))) {
Al Viro2a46eed2013-11-20 22:16:36 +0000221 free_page((unsigned long)pmd);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800222 pmd = NULL;
223 failed = true;
224 }
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800225 if (pmd)
226 mm_inc_nr_pmds(mm);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400227 pmds[i] = pmd;
228 }
229
230 if (failed) {
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800231 free_pmds(mm, pmds);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400232 return -ENOMEM;
233 }
234
235 return 0;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700236}
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400237
238/*
239 * Mop up any pmd pages which may still be attached to the pgd.
240 * Normally they will be freed by munmap/exit_mmap, but any pmd we
241 * preallocate which never got a corresponding vma will need to be
242 * freed manually.
243 */
244static void pgd_mop_up_pmds(struct mm_struct *mm, pgd_t *pgdp)
245{
246 int i;
247
248 for(i = 0; i < PREALLOCATED_PMDS; i++) {
249 pgd_t pgd = pgdp[i];
250
251 if (pgd_val(pgd) != 0) {
252 pmd_t *pmd = (pmd_t *)pgd_page_vaddr(pgd);
253
254 pgdp[i] = native_make_pgd(0);
255
256 paravirt_release_pmd(pgd_val(pgd) >> PAGE_SHIFT);
257 pmd_free(mm, pmd);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800258 mm_dec_nr_pmds(mm);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400259 }
260 }
261}
262
263static void pgd_prepopulate_pmd(struct mm_struct *mm, pgd_t *pgd, pmd_t *pmds[])
264{
265 pud_t *pud;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400266 int i;
267
Jeremy Fitzhardingecf3e5052008-08-08 13:46:07 -0700268 if (PREALLOCATED_PMDS == 0) /* Work around gcc-3.4.x bug */
269 return;
270
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400271 pud = pud_offset(pgd, 0);
272
Wanpeng Li73b44ff2013-07-08 16:00:17 -0700273 for (i = 0; i < PREALLOCATED_PMDS; i++, pud++) {
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400274 pmd_t *pmd = pmds[i];
275
276 if (i >= KERNEL_PGD_BOUNDARY)
277 memcpy(pmd, (pmd_t *)pgd_page_vaddr(swapper_pg_dir[i]),
278 sizeof(pmd_t) * PTRS_PER_PMD);
279
280 pud_populate(mm, pud, pmd);
281 }
282}
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700283
Fenghua Yu1db491f2015-01-15 20:30:01 -0800284/*
285 * Xen paravirt assumes pgd table should be in one page. 64 bit kernel also
286 * assumes that pgd should be in one page.
287 *
288 * But kernel with PAE paging that is not running as a Xen domain
289 * only needs to allocate 32 bytes for pgd instead of one page.
290 */
291#ifdef CONFIG_X86_PAE
292
293#include <linux/slab.h>
294
295#define PGD_SIZE (PTRS_PER_PGD * sizeof(pgd_t))
296#define PGD_ALIGN 32
297
298static struct kmem_cache *pgd_cache;
299
300static int __init pgd_cache_init(void)
301{
302 /*
303 * When PAE kernel is running as a Xen domain, it does not use
304 * shared kernel pmd. And this requires a whole page for pgd.
305 */
306 if (!SHARED_KERNEL_PMD)
307 return 0;
308
309 /*
310 * when PAE kernel is not running as a Xen domain, it uses
311 * shared kernel pmd. Shared kernel pmd does not require a whole
312 * page for pgd. We are able to just allocate a 32-byte for pgd.
313 * During boot time, we create a 32-byte slab for pgd table allocation.
314 */
315 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_ALIGN,
316 SLAB_PANIC, NULL);
317 if (!pgd_cache)
318 return -ENOMEM;
319
320 return 0;
321}
322core_initcall(pgd_cache_init);
323
324static inline pgd_t *_pgd_alloc(void)
325{
326 /*
327 * If no SHARED_KERNEL_PMD, PAE kernel is running as a Xen domain.
328 * We allocate one page for pgd.
329 */
330 if (!SHARED_KERNEL_PMD)
331 return (pgd_t *)__get_free_page(PGALLOC_GFP);
332
333 /*
334 * Now PAE kernel is not running as a Xen domain. We can allocate
335 * a 32-byte slab for pgd to save memory space.
336 */
337 return kmem_cache_alloc(pgd_cache, PGALLOC_GFP);
338}
339
340static inline void _pgd_free(pgd_t *pgd)
341{
342 if (!SHARED_KERNEL_PMD)
343 free_page((unsigned long)pgd);
344 else
345 kmem_cache_free(pgd_cache, pgd);
346}
347#else
Dave Hansen8f0baad2017-08-30 16:23:00 -0700348
Fenghua Yu1db491f2015-01-15 20:30:01 -0800349static inline pgd_t *_pgd_alloc(void)
350{
Dave Hansen8f0baad2017-08-30 16:23:00 -0700351 return (pgd_t *)__get_free_pages(PGALLOC_GFP, PGD_ALLOCATION_ORDER);
Fenghua Yu1db491f2015-01-15 20:30:01 -0800352}
353
354static inline void _pgd_free(pgd_t *pgd)
355{
Dave Hansen8f0baad2017-08-30 16:23:00 -0700356 free_pages((unsigned long)pgd, PGD_ALLOCATION_ORDER);
Fenghua Yu1db491f2015-01-15 20:30:01 -0800357}
358#endif /* CONFIG_X86_PAE */
359
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700360pgd_t *pgd_alloc(struct mm_struct *mm)
361{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400362 pgd_t *pgd;
363 pmd_t *pmds[PREALLOCATED_PMDS];
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700364
Fenghua Yu1db491f2015-01-15 20:30:01 -0800365 pgd = _pgd_alloc();
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400366
367 if (pgd == NULL)
368 goto out;
369
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700370 mm->pgd = pgd;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700371
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800372 if (preallocate_pmds(mm, pmds) != 0)
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400373 goto out_free_pgd;
374
375 if (paravirt_pgd_alloc(mm) != 0)
376 goto out_free_pmds;
377
378 /*
379 * Make sure that pre-populating the pmds is atomic with
380 * respect to anything walking the pgd_list, so that they
381 * never see a partially populated pgd.
382 */
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800383 spin_lock(&pgd_lock);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400384
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700385 pgd_ctor(mm, pgd);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400386 pgd_prepopulate_pmd(mm, pgd, pmds);
387
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800388 spin_unlock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700389
390 return pgd;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400391
392out_free_pmds:
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800393 free_pmds(mm, pmds);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400394out_free_pgd:
Fenghua Yu1db491f2015-01-15 20:30:01 -0800395 _pgd_free(pgd);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400396out:
397 return NULL;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700398}
399
400void pgd_free(struct mm_struct *mm, pgd_t *pgd)
401{
402 pgd_mop_up_pmds(mm, pgd);
403 pgd_dtor(pgd);
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -0400404 paravirt_pgd_free(mm, pgd);
Fenghua Yu1db491f2015-01-15 20:30:01 -0800405 _pgd_free(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700406}
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700407
Rik van Riel0f9a9212012-11-06 09:54:47 +0000408/*
409 * Used to set accessed or dirty bits in the page table entries
410 * on other architectures. On x86, the accessed and dirty bits
411 * are tracked by hardware. However, do_wp_page calls this function
412 * to also make the pte writeable at the same time the dirty bit is
413 * set. In that case we do actually need to write the PTE.
414 */
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700415int ptep_set_access_flags(struct vm_area_struct *vma,
416 unsigned long address, pte_t *ptep,
417 pte_t entry, int dirty)
418{
419 int changed = !pte_same(*ptep, entry);
420
421 if (changed && dirty) {
422 *ptep = entry;
Juergen Grossd6ccc3e2015-11-17 15:51:19 +0100423 pte_update(vma->vm_mm, address, ptep);
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700424 }
425
426 return changed;
427}
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700428
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800429#ifdef CONFIG_TRANSPARENT_HUGEPAGE
430int pmdp_set_access_flags(struct vm_area_struct *vma,
431 unsigned long address, pmd_t *pmdp,
432 pmd_t entry, int dirty)
433{
434 int changed = !pmd_same(*pmdp, entry);
435
436 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
437
438 if (changed && dirty) {
439 *pmdp = entry;
Ingo Molnar5e4bf1a2012-11-20 13:02:51 +0100440 /*
441 * We had a write-protection fault here and changed the pmd
442 * to to more permissive. No need to flush the TLB for that,
443 * #PF is architecturally guaranteed to do that and in the
444 * worst-case we'll generate a spurious fault.
445 */
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800446 }
447
448 return changed;
449}
450#endif
451
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700452int ptep_test_and_clear_young(struct vm_area_struct *vma,
453 unsigned long addr, pte_t *ptep)
454{
455 int ret = 0;
456
457 if (pte_young(*ptep))
458 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Thomas Gleixner48e23952008-05-24 17:24:34 +0200459 (unsigned long *) &ptep->pte);
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700460
461 if (ret)
462 pte_update(vma->vm_mm, addr, ptep);
463
464 return ret;
465}
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700466
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800467#ifdef CONFIG_TRANSPARENT_HUGEPAGE
468int pmdp_test_and_clear_young(struct vm_area_struct *vma,
469 unsigned long addr, pmd_t *pmdp)
470{
471 int ret = 0;
472
473 if (pmd_young(*pmdp))
474 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Johannes Weinerf2d6bfe2011-01-13 15:47:01 -0800475 (unsigned long *)pmdp);
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800476
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800477 return ret;
478}
479#endif
480
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700481int ptep_clear_flush_young(struct vm_area_struct *vma,
482 unsigned long address, pte_t *ptep)
483{
Shaohua Lib13b1d22014-04-08 15:58:09 +0800484 /*
485 * On x86 CPUs, clearing the accessed bit without a TLB flush
486 * doesn't cause data corruption. [ It could cause incorrect
487 * page aging and the (mistaken) reclaim of hot pages, but the
488 * chance of that should be relatively low. ]
489 *
490 * So as a performance optimization don't flush the TLB when
491 * clearing the accessed bit, it will eventually be flushed by
492 * a context switch or a VM operation anyway. [ In the rare
493 * event of it not getting flushed for a long time the delay
494 * shouldn't really matter because there's no real memory
495 * pressure for swapout to react to. ]
496 */
497 return ptep_test_and_clear_young(vma, address, ptep);
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700498}
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700499
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800500#ifdef CONFIG_TRANSPARENT_HUGEPAGE
501int pmdp_clear_flush_young(struct vm_area_struct *vma,
502 unsigned long address, pmd_t *pmdp)
503{
504 int young;
505
506 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
507
508 young = pmdp_test_and_clear_young(vma, address, pmdp);
509 if (young)
510 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
511
512 return young;
513}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800514#endif
515
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300516/**
517 * reserve_top_address - reserves a hole in the top of kernel address space
518 * @reserve - size of hole to reserve
519 *
520 * Can be used to relocate the fixmap area and poke a hole in the top
521 * of kernel address space to make room for a hypervisor.
522 */
523void __init reserve_top_address(unsigned long reserve)
524{
525#ifdef CONFIG_X86_32
526 BUG_ON(fixmaps_set > 0);
Andy Lutomirski73159fd2014-05-05 12:19:31 -0700527 __FIXADDR_TOP = round_down(-reserve, 1 << PMD_SHIFT) - PAGE_SIZE;
528 printk(KERN_INFO "Reserving virtual address space above 0x%08lx (rounded to 0x%08lx)\n",
529 -reserve, __FIXADDR_TOP + PAGE_SIZE);
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300530#endif
531}
532
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700533int fixmaps_set;
534
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700535void __native_set_fixmap(enum fixed_addresses idx, pte_t pte)
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700536{
537 unsigned long address = __fix_to_virt(idx);
538
539 if (idx >= __end_of_fixed_addresses) {
540 BUG();
541 return;
542 }
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700543 set_pte_vaddr(address, pte);
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700544 fixmaps_set++;
545}
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700546
Masami Hiramatsu3b3809a2009-04-09 10:55:33 -0700547void native_set_fixmap(enum fixed_addresses idx, phys_addr_t phys,
548 pgprot_t flags)
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700549{
550 __native_set_fixmap(idx, pfn_pte(phys >> PAGE_SHIFT, flags));
551}
Toshi Kani6b637832015-04-14 15:47:32 -0700552
553#ifdef CONFIG_HAVE_ARCH_HUGE_VMAP
Toshi Kani3d3ca412015-05-26 10:28:07 +0200554/**
555 * pud_set_huge - setup kernel PUD mapping
556 *
Toshi Kanib73522e2015-05-26 10:28:10 +0200557 * MTRRs can override PAT memory types with 4KiB granularity. Therefore, this
558 * function sets up a huge page only if any of the following conditions are met:
559 *
560 * - MTRRs are disabled, or
561 *
562 * - MTRRs are enabled and the range is completely covered by a single MTRR, or
563 *
564 * - MTRRs are enabled and the corresponding MTRR memory type is WB, which
565 * has no effect on the requested PAT memory type.
566 *
567 * Callers should try to decrease page size (1GB -> 2MB -> 4K) if the bigger
568 * page mapping attempt fails.
Toshi Kani3d3ca412015-05-26 10:28:07 +0200569 *
570 * Returns 1 on success and 0 on failure.
571 */
Toshi Kani6b637832015-04-14 15:47:32 -0700572int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot)
573{
Toshi Kanib73522e2015-05-26 10:28:10 +0200574 u8 mtrr, uniform;
Toshi Kani6b637832015-04-14 15:47:32 -0700575
Toshi Kanib73522e2015-05-26 10:28:10 +0200576 mtrr = mtrr_type_lookup(addr, addr + PUD_SIZE, &uniform);
577 if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) &&
578 (mtrr != MTRR_TYPE_WRBACK))
Toshi Kani6b637832015-04-14 15:47:32 -0700579 return 0;
580
Joerg Roedel1e269412018-04-11 17:24:38 +0200581 /* Bail out if we are we on a populated non-leaf entry: */
582 if (pud_present(*pud) && !pud_huge(*pud))
583 return 0;
584
Toshi Kani6b637832015-04-14 15:47:32 -0700585 prot = pgprot_4k_2_large(prot);
586
587 set_pte((pte_t *)pud, pfn_pte(
588 (u64)addr >> PAGE_SHIFT,
589 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
590
591 return 1;
592}
593
Toshi Kani3d3ca412015-05-26 10:28:07 +0200594/**
595 * pmd_set_huge - setup kernel PMD mapping
596 *
Toshi Kanib73522e2015-05-26 10:28:10 +0200597 * See text over pud_set_huge() above.
Toshi Kani3d3ca412015-05-26 10:28:07 +0200598 *
599 * Returns 1 on success and 0 on failure.
600 */
Toshi Kani6b637832015-04-14 15:47:32 -0700601int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot)
602{
Toshi Kanib73522e2015-05-26 10:28:10 +0200603 u8 mtrr, uniform;
Toshi Kani6b637832015-04-14 15:47:32 -0700604
Toshi Kanib73522e2015-05-26 10:28:10 +0200605 mtrr = mtrr_type_lookup(addr, addr + PMD_SIZE, &uniform);
606 if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) &&
607 (mtrr != MTRR_TYPE_WRBACK)) {
608 pr_warn_once("%s: Cannot satisfy [mem %#010llx-%#010llx] with a huge-page mapping due to MTRR override.\n",
609 __func__, addr, addr + PMD_SIZE);
Toshi Kani6b637832015-04-14 15:47:32 -0700610 return 0;
Toshi Kanib73522e2015-05-26 10:28:10 +0200611 }
Toshi Kani6b637832015-04-14 15:47:32 -0700612
Joerg Roedel1e269412018-04-11 17:24:38 +0200613 /* Bail out if we are we on a populated non-leaf entry: */
614 if (pmd_present(*pmd) && !pmd_huge(*pmd))
615 return 0;
616
Toshi Kani6b637832015-04-14 15:47:32 -0700617 prot = pgprot_4k_2_large(prot);
618
619 set_pte((pte_t *)pmd, pfn_pte(
620 (u64)addr >> PAGE_SHIFT,
621 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
622
623 return 1;
624}
625
Toshi Kani3d3ca412015-05-26 10:28:07 +0200626/**
627 * pud_clear_huge - clear kernel PUD mapping when it is set
628 *
629 * Returns 1 on success and 0 on failure (no PUD map is found).
630 */
Toshi Kani6b637832015-04-14 15:47:32 -0700631int pud_clear_huge(pud_t *pud)
632{
633 if (pud_large(*pud)) {
634 pud_clear(pud);
635 return 1;
636 }
637
638 return 0;
639}
640
Toshi Kani3d3ca412015-05-26 10:28:07 +0200641/**
642 * pmd_clear_huge - clear kernel PMD mapping when it is set
643 *
644 * Returns 1 on success and 0 on failure (no PMD map is found).
645 */
Toshi Kani6b637832015-04-14 15:47:32 -0700646int pmd_clear_huge(pmd_t *pmd)
647{
648 if (pmd_large(*pmd)) {
649 pmd_clear(pmd);
650 return 1;
651 }
652
653 return 0;
654}
Toshi Kani9c7f7bd2018-03-22 16:17:20 -0700655
656/**
657 * pud_free_pmd_page - Clear pud entry and free pmd page.
658 * @pud: Pointer to a PUD.
659 *
660 * Context: The pud range has been unmaped and TLB purged.
661 * Return: 1 if clearing the entry succeeded. 0 otherwise.
662 */
663int pud_free_pmd_page(pud_t *pud)
664{
Toshi Kanif4fe4f92018-03-22 16:17:24 -0700665 pmd_t *pmd;
666 int i;
667
668 if (pud_none(*pud))
669 return 1;
670
671 pmd = (pmd_t *)pud_page_vaddr(*pud);
672
673 for (i = 0; i < PTRS_PER_PMD; i++)
674 if (!pmd_free_pte_page(&pmd[i]))
675 return 0;
676
677 pud_clear(pud);
678 free_page((unsigned long)pmd);
679
680 return 1;
Toshi Kani9c7f7bd2018-03-22 16:17:20 -0700681}
682
683/**
684 * pmd_free_pte_page - Clear pmd entry and free pte page.
685 * @pmd: Pointer to a PMD.
686 *
687 * Context: The pmd range has been unmaped and TLB purged.
688 * Return: 1 if clearing the entry succeeded. 0 otherwise.
689 */
690int pmd_free_pte_page(pmd_t *pmd)
691{
Toshi Kanif4fe4f92018-03-22 16:17:24 -0700692 pte_t *pte;
693
694 if (pmd_none(*pmd))
695 return 1;
696
697 pte = (pte_t *)pmd_page_vaddr(*pmd);
698 pmd_clear(pmd);
699 free_page((unsigned long)pte);
700
701 return 1;
Toshi Kani9c7f7bd2018-03-22 16:17:20 -0700702}
Toshi Kani6b637832015-04-14 15:47:32 -0700703#endif /* CONFIG_HAVE_ARCH_HUGE_VMAP */