mm: introduce mm_forbids_zeropage function
[linux-2.6-block.git] / arch / s390 / mm / pgtable.c
CommitLineData
3610cce8 1/*
a53c8fab 2 * Copyright IBM Corp. 2007, 2011
3610cce8
MS
3 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
4 */
5
6#include <linux/sched.h>
7#include <linux/kernel.h>
8#include <linux/errno.h>
5a0e3ad6 9#include <linux/gfp.h>
3610cce8
MS
10#include <linux/mm.h>
11#include <linux/swap.h>
12#include <linux/smp.h>
13#include <linux/highmem.h>
3610cce8
MS
14#include <linux/pagemap.h>
15#include <linux/spinlock.h>
16#include <linux/module.h>
17#include <linux/quicklist.h>
80217147 18#include <linux/rcupdate.h>
e5992f2e 19#include <linux/slab.h>
b31288fa 20#include <linux/swapops.h>
3610cce8 21
3610cce8
MS
22#include <asm/pgtable.h>
23#include <asm/pgalloc.h>
24#include <asm/tlb.h>
25#include <asm/tlbflush.h>
6252d702 26#include <asm/mmu_context.h>
3610cce8
MS
27
28#ifndef CONFIG_64BIT
29#define ALLOC_ORDER 1
36409f63 30#define FRAG_MASK 0x0f
3610cce8
MS
31#else
32#define ALLOC_ORDER 2
36409f63 33#define FRAG_MASK 0x03
3610cce8
MS
34#endif
35
239a6425 36
043d0708 37unsigned long *crst_table_alloc(struct mm_struct *mm)
3610cce8
MS
38{
39 struct page *page = alloc_pages(GFP_KERNEL, ALLOC_ORDER);
40
41 if (!page)
42 return NULL;
3610cce8
MS
43 return (unsigned long *) page_to_phys(page);
44}
45
80217147
MS
46void crst_table_free(struct mm_struct *mm, unsigned long *table)
47{
043d0708 48 free_pages((unsigned long) table, ALLOC_ORDER);
80217147
MS
49}
50
6252d702 51#ifdef CONFIG_64BIT
10607864
MS
52static void __crst_table_upgrade(void *arg)
53{
54 struct mm_struct *mm = arg;
55
beef560b
MS
56 if (current->active_mm == mm) {
57 clear_user_asce();
58 set_user_asce(mm);
59 }
10607864
MS
60 __tlb_flush_local();
61}
62
6252d702
MS
63int crst_table_upgrade(struct mm_struct *mm, unsigned long limit)
64{
65 unsigned long *table, *pgd;
66 unsigned long entry;
10607864 67 int flush;
6252d702
MS
68
69 BUG_ON(limit > (1UL << 53));
10607864 70 flush = 0;
6252d702 71repeat:
043d0708 72 table = crst_table_alloc(mm);
6252d702
MS
73 if (!table)
74 return -ENOMEM;
80217147 75 spin_lock_bh(&mm->page_table_lock);
6252d702
MS
76 if (mm->context.asce_limit < limit) {
77 pgd = (unsigned long *) mm->pgd;
78 if (mm->context.asce_limit <= (1UL << 31)) {
79 entry = _REGION3_ENTRY_EMPTY;
80 mm->context.asce_limit = 1UL << 42;
81 mm->context.asce_bits = _ASCE_TABLE_LENGTH |
82 _ASCE_USER_BITS |
83 _ASCE_TYPE_REGION3;
84 } else {
85 entry = _REGION2_ENTRY_EMPTY;
86 mm->context.asce_limit = 1UL << 53;
87 mm->context.asce_bits = _ASCE_TABLE_LENGTH |
88 _ASCE_USER_BITS |
89 _ASCE_TYPE_REGION2;
90 }
91 crst_table_init(table, entry);
92 pgd_populate(mm, (pgd_t *) table, (pud_t *) pgd);
93 mm->pgd = (pgd_t *) table;
f481bfaf 94 mm->task_size = mm->context.asce_limit;
6252d702 95 table = NULL;
10607864 96 flush = 1;
6252d702 97 }
80217147 98 spin_unlock_bh(&mm->page_table_lock);
6252d702
MS
99 if (table)
100 crst_table_free(mm, table);
101 if (mm->context.asce_limit < limit)
102 goto repeat;
10607864
MS
103 if (flush)
104 on_each_cpu(__crst_table_upgrade, mm, 0);
6252d702
MS
105 return 0;
106}
107
108void crst_table_downgrade(struct mm_struct *mm, unsigned long limit)
109{
110 pgd_t *pgd;
111
02a8f3ab 112 if (current->active_mm == mm) {
beef560b 113 clear_user_asce();
10607864 114 __tlb_flush_mm(mm);
02a8f3ab 115 }
6252d702
MS
116 while (mm->context.asce_limit > limit) {
117 pgd = mm->pgd;
118 switch (pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) {
119 case _REGION_ENTRY_TYPE_R2:
120 mm->context.asce_limit = 1UL << 42;
121 mm->context.asce_bits = _ASCE_TABLE_LENGTH |
122 _ASCE_USER_BITS |
123 _ASCE_TYPE_REGION3;
124 break;
125 case _REGION_ENTRY_TYPE_R3:
126 mm->context.asce_limit = 1UL << 31;
127 mm->context.asce_bits = _ASCE_TABLE_LENGTH |
128 _ASCE_USER_BITS |
129 _ASCE_TYPE_SEGMENT;
130 break;
131 default:
132 BUG();
133 }
134 mm->pgd = (pgd_t *) (pgd_val(*pgd) & _REGION_ENTRY_ORIGIN);
f481bfaf 135 mm->task_size = mm->context.asce_limit;
6252d702
MS
136 crst_table_free(mm, (unsigned long *) pgd);
137 }
10607864 138 if (current->active_mm == mm)
beef560b 139 set_user_asce(mm);
6252d702
MS
140}
141#endif
142
e5992f2e
MS
143#ifdef CONFIG_PGSTE
144
145/**
146 * gmap_alloc - allocate a guest address space
147 * @mm: pointer to the parent mm_struct
c6c956b8 148 * @limit: maximum size of the gmap address space
e5992f2e
MS
149 *
150 * Returns a guest address space structure.
151 */
c6c956b8 152struct gmap *gmap_alloc(struct mm_struct *mm, unsigned long limit)
36409f63 153{
e5992f2e
MS
154 struct gmap *gmap;
155 struct page *page;
156 unsigned long *table;
c6c956b8
MS
157 unsigned long etype, atype;
158
159 if (limit < (1UL << 31)) {
160 limit = (1UL << 31) - 1;
161 atype = _ASCE_TYPE_SEGMENT;
162 etype = _SEGMENT_ENTRY_EMPTY;
163 } else if (limit < (1UL << 42)) {
164 limit = (1UL << 42) - 1;
165 atype = _ASCE_TYPE_REGION3;
166 etype = _REGION3_ENTRY_EMPTY;
167 } else if (limit < (1UL << 53)) {
168 limit = (1UL << 53) - 1;
169 atype = _ASCE_TYPE_REGION2;
170 etype = _REGION2_ENTRY_EMPTY;
171 } else {
172 limit = -1UL;
173 atype = _ASCE_TYPE_REGION1;
174 etype = _REGION1_ENTRY_EMPTY;
175 }
e5992f2e
MS
176 gmap = kzalloc(sizeof(struct gmap), GFP_KERNEL);
177 if (!gmap)
178 goto out;
179 INIT_LIST_HEAD(&gmap->crst_list);
527e30b4
MS
180 INIT_RADIX_TREE(&gmap->guest_to_host, GFP_KERNEL);
181 INIT_RADIX_TREE(&gmap->host_to_guest, GFP_ATOMIC);
182 spin_lock_init(&gmap->guest_table_lock);
e5992f2e
MS
183 gmap->mm = mm;
184 page = alloc_pages(GFP_KERNEL, ALLOC_ORDER);
185 if (!page)
186 goto out_free;
527e30b4 187 page->index = 0;
e5992f2e
MS
188 list_add(&page->lru, &gmap->crst_list);
189 table = (unsigned long *) page_to_phys(page);
c6c956b8 190 crst_table_init(table, etype);
e5992f2e 191 gmap->table = table;
c6c956b8
MS
192 gmap->asce = atype | _ASCE_TABLE_LENGTH |
193 _ASCE_USER_BITS | __pa(table);
194 gmap->asce_end = limit;
527e30b4 195 down_write(&mm->mmap_sem);
e5992f2e 196 list_add(&gmap->list, &mm->context.gmap_list);
527e30b4 197 up_write(&mm->mmap_sem);
e5992f2e
MS
198 return gmap;
199
200out_free:
201 kfree(gmap);
202out:
203 return NULL;
36409f63 204}
e5992f2e 205EXPORT_SYMBOL_GPL(gmap_alloc);
36409f63 206
e5992f2e
MS
207static void gmap_flush_tlb(struct gmap *gmap)
208{
209 if (MACHINE_HAS_IDTE)
c6c956b8 210 __tlb_flush_asce(gmap->mm, gmap->asce);
e5992f2e
MS
211 else
212 __tlb_flush_global();
213}
214
527e30b4
MS
215static void gmap_radix_tree_free(struct radix_tree_root *root)
216{
217 struct radix_tree_iter iter;
218 unsigned long indices[16];
219 unsigned long index;
220 void **slot;
221 int i, nr;
222
223 /* A radix tree is freed by deleting all of its entries */
224 index = 0;
225 do {
226 nr = 0;
227 radix_tree_for_each_slot(slot, root, &iter, index) {
228 indices[nr] = iter.index;
229 if (++nr == 16)
230 break;
231 }
232 for (i = 0; i < nr; i++) {
233 index = indices[i];
234 radix_tree_delete(root, index);
235 }
236 } while (nr > 0);
237}
238
e5992f2e
MS
239/**
240 * gmap_free - free a guest address space
241 * @gmap: pointer to the guest address space structure
3610cce8 242 */
e5992f2e
MS
243void gmap_free(struct gmap *gmap)
244{
245 struct page *page, *next;
e5992f2e
MS
246
247 /* Flush tlb. */
248 if (MACHINE_HAS_IDTE)
c6c956b8 249 __tlb_flush_asce(gmap->mm, gmap->asce);
e5992f2e
MS
250 else
251 __tlb_flush_global();
252
253 /* Free all segment & region tables. */
527e30b4 254 list_for_each_entry_safe(page, next, &gmap->crst_list, lru)
e5992f2e 255 __free_pages(page, ALLOC_ORDER);
527e30b4
MS
256 gmap_radix_tree_free(&gmap->guest_to_host);
257 gmap_radix_tree_free(&gmap->host_to_guest);
258 down_write(&gmap->mm->mmap_sem);
e5992f2e 259 list_del(&gmap->list);
527e30b4 260 up_write(&gmap->mm->mmap_sem);
e5992f2e
MS
261 kfree(gmap);
262}
263EXPORT_SYMBOL_GPL(gmap_free);
264
265/**
266 * gmap_enable - switch primary space to the guest address space
267 * @gmap: pointer to the guest address space structure
268 */
269void gmap_enable(struct gmap *gmap)
270{
e5992f2e
MS
271 S390_lowcore.gmap = (unsigned long) gmap;
272}
273EXPORT_SYMBOL_GPL(gmap_enable);
274
275/**
276 * gmap_disable - switch back to the standard primary address space
277 * @gmap: pointer to the guest address space structure
278 */
279void gmap_disable(struct gmap *gmap)
280{
e5992f2e
MS
281 S390_lowcore.gmap = 0UL;
282}
283EXPORT_SYMBOL_GPL(gmap_disable);
284
a9162f23
CO
285/*
286 * gmap_alloc_table is assumed to be called with mmap_sem held
287 */
527e30b4
MS
288static int gmap_alloc_table(struct gmap *gmap, unsigned long *table,
289 unsigned long init, unsigned long gaddr)
e5992f2e
MS
290{
291 struct page *page;
292 unsigned long *new;
293
c86cce2a 294 /* since we dont free the gmap table until gmap_free we can unlock */
e5992f2e
MS
295 page = alloc_pages(GFP_KERNEL, ALLOC_ORDER);
296 if (!page)
297 return -ENOMEM;
298 new = (unsigned long *) page_to_phys(page);
299 crst_table_init(new, init);
527e30b4 300 spin_lock(&gmap->mm->page_table_lock);
e5098611 301 if (*table & _REGION_ENTRY_INVALID) {
e5992f2e
MS
302 list_add(&page->lru, &gmap->crst_list);
303 *table = (unsigned long) new | _REGION_ENTRY_LENGTH |
304 (*table & _REGION_ENTRY_TYPE_MASK);
527e30b4
MS
305 page->index = gaddr;
306 page = NULL;
307 }
308 spin_unlock(&gmap->mm->page_table_lock);
309 if (page)
e5992f2e 310 __free_pages(page, ALLOC_ORDER);
e5992f2e
MS
311 return 0;
312}
313
527e30b4
MS
314/**
315 * __gmap_segment_gaddr - find virtual address from segment pointer
316 * @entry: pointer to a segment table entry in the guest address space
317 *
318 * Returns the virtual address in the guest address space for the segment
319 */
320static unsigned long __gmap_segment_gaddr(unsigned long *entry)
321{
322 struct page *page;
323 unsigned long offset;
324
325 offset = (unsigned long) entry / sizeof(unsigned long);
326 offset = (offset & (PTRS_PER_PMD - 1)) * PMD_SIZE;
327 page = pmd_to_page((pmd_t *) entry);
328 return page->index + offset;
329}
330
331/**
332 * __gmap_unlink_by_vmaddr - unlink a single segment via a host address
333 * @gmap: pointer to the guest address space structure
334 * @vmaddr: address in the host process address space
335 *
336 * Returns 1 if a TLB flush is required
337 */
338static int __gmap_unlink_by_vmaddr(struct gmap *gmap, unsigned long vmaddr)
339{
340 unsigned long *entry;
341 int flush = 0;
342
343 spin_lock(&gmap->guest_table_lock);
344 entry = radix_tree_delete(&gmap->host_to_guest, vmaddr >> PMD_SHIFT);
345 if (entry) {
346 flush = (*entry != _SEGMENT_ENTRY_INVALID);
347 *entry = _SEGMENT_ENTRY_INVALID;
348 }
349 spin_unlock(&gmap->guest_table_lock);
350 return flush;
351}
352
353/**
354 * __gmap_unmap_by_gaddr - unmap a single segment via a guest address
355 * @gmap: pointer to the guest address space structure
356 * @gaddr: address in the guest address space
357 *
358 * Returns 1 if a TLB flush is required
359 */
360static int __gmap_unmap_by_gaddr(struct gmap *gmap, unsigned long gaddr)
361{
362 unsigned long vmaddr;
363
364 vmaddr = (unsigned long) radix_tree_delete(&gmap->guest_to_host,
365 gaddr >> PMD_SHIFT);
366 return vmaddr ? __gmap_unlink_by_vmaddr(gmap, vmaddr) : 0;
367}
368
e5992f2e
MS
369/**
370 * gmap_unmap_segment - unmap segment from the guest address space
371 * @gmap: pointer to the guest address space structure
6e0a0431 372 * @to: address in the guest address space
e5992f2e
MS
373 * @len: length of the memory area to unmap
374 *
b4a96015 375 * Returns 0 if the unmap succeeded, -EINVAL if not.
e5992f2e
MS
376 */
377int gmap_unmap_segment(struct gmap *gmap, unsigned long to, unsigned long len)
378{
e5992f2e
MS
379 unsigned long off;
380 int flush;
381
382 if ((to | len) & (PMD_SIZE - 1))
383 return -EINVAL;
384 if (len == 0 || to + len < to)
385 return -EINVAL;
386
387 flush = 0;
527e30b4
MS
388 down_write(&gmap->mm->mmap_sem);
389 for (off = 0; off < len; off += PMD_SIZE)
390 flush |= __gmap_unmap_by_gaddr(gmap, to + off);
391 up_write(&gmap->mm->mmap_sem);
e5992f2e
MS
392 if (flush)
393 gmap_flush_tlb(gmap);
394 return 0;
395}
396EXPORT_SYMBOL_GPL(gmap_unmap_segment);
397
398/**
399 * gmap_mmap_segment - map a segment to the guest address space
400 * @gmap: pointer to the guest address space structure
401 * @from: source address in the parent address space
402 * @to: target address in the guest address space
6e0a0431 403 * @len: length of the memory area to map
e5992f2e 404 *
b4a96015 405 * Returns 0 if the mmap succeeded, -EINVAL or -ENOMEM if not.
e5992f2e
MS
406 */
407int gmap_map_segment(struct gmap *gmap, unsigned long from,
408 unsigned long to, unsigned long len)
409{
e5992f2e
MS
410 unsigned long off;
411 int flush;
412
413 if ((from | to | len) & (PMD_SIZE - 1))
414 return -EINVAL;
c6c956b8
MS
415 if (len == 0 || from + len < from || to + len < to ||
416 from + len > TASK_MAX_SIZE || to + len > gmap->asce_end)
e5992f2e
MS
417 return -EINVAL;
418
419 flush = 0;
527e30b4 420 down_write(&gmap->mm->mmap_sem);
e5992f2e 421 for (off = 0; off < len; off += PMD_SIZE) {
527e30b4
MS
422 /* Remove old translation */
423 flush |= __gmap_unmap_by_gaddr(gmap, to + off);
424 /* Store new translation */
425 if (radix_tree_insert(&gmap->guest_to_host,
426 (to + off) >> PMD_SHIFT,
427 (void *) from + off))
428 break;
e5992f2e 429 }
527e30b4 430 up_write(&gmap->mm->mmap_sem);
e5992f2e
MS
431 if (flush)
432 gmap_flush_tlb(gmap);
527e30b4
MS
433 if (off >= len)
434 return 0;
e5992f2e
MS
435 gmap_unmap_segment(gmap, to, len);
436 return -ENOMEM;
437}
438EXPORT_SYMBOL_GPL(gmap_map_segment);
439
c5034945
HC
440/**
441 * __gmap_translate - translate a guest address to a user space address
c5034945 442 * @gmap: pointer to guest mapping meta data structure
6e0a0431 443 * @gaddr: guest address
c5034945
HC
444 *
445 * Returns user space address which corresponds to the guest address or
446 * -EFAULT if no such mapping exists.
447 * This function does not establish potentially missing page table entries.
448 * The mmap_sem of the mm that belongs to the address space must be held
449 * when this function gets called.
450 */
6e0a0431 451unsigned long __gmap_translate(struct gmap *gmap, unsigned long gaddr)
c5034945 452{
527e30b4 453 unsigned long vmaddr;
c5034945 454
527e30b4
MS
455 vmaddr = (unsigned long)
456 radix_tree_lookup(&gmap->guest_to_host, gaddr >> PMD_SHIFT);
457 return vmaddr ? (vmaddr | (gaddr & ~PMD_MASK)) : -EFAULT;
c5034945
HC
458}
459EXPORT_SYMBOL_GPL(__gmap_translate);
460
461/**
462 * gmap_translate - translate a guest address to a user space address
c5034945 463 * @gmap: pointer to guest mapping meta data structure
6e0a0431 464 * @gaddr: guest address
c5034945
HC
465 *
466 * Returns user space address which corresponds to the guest address or
467 * -EFAULT if no such mapping exists.
468 * This function does not establish potentially missing page table entries.
469 */
6e0a0431 470unsigned long gmap_translate(struct gmap *gmap, unsigned long gaddr)
c5034945
HC
471{
472 unsigned long rc;
473
474 down_read(&gmap->mm->mmap_sem);
6e0a0431 475 rc = __gmap_translate(gmap, gaddr);
c5034945
HC
476 up_read(&gmap->mm->mmap_sem);
477 return rc;
478}
479EXPORT_SYMBOL_GPL(gmap_translate);
480
527e30b4
MS
481/**
482 * gmap_unlink - disconnect a page table from the gmap shadow tables
483 * @gmap: pointer to guest mapping meta data structure
484 * @table: pointer to the host page table
485 * @vmaddr: vm address associated with the host page table
486 */
487static void gmap_unlink(struct mm_struct *mm, unsigned long *table,
488 unsigned long vmaddr)
489{
490 struct gmap *gmap;
491 int flush;
492
493 list_for_each_entry(gmap, &mm->context.gmap_list, list) {
494 flush = __gmap_unlink_by_vmaddr(gmap, vmaddr);
495 if (flush)
496 gmap_flush_tlb(gmap);
497 }
498}
499
500/**
501 * gmap_link - set up shadow page tables to connect a host to a guest address
502 * @gmap: pointer to guest mapping meta data structure
503 * @gaddr: guest address
504 * @vmaddr: vm address
505 *
506 * Returns 0 on success, -ENOMEM for out of memory conditions, and -EFAULT
507 * if the vm address is already mapped to a different guest segment.
508 * The mmap_sem of the mm that belongs to the address space must be held
509 * when this function gets called.
510 */
511int __gmap_link(struct gmap *gmap, unsigned long gaddr, unsigned long vmaddr)
e5992f2e 512{
c5034945 513 struct mm_struct *mm;
527e30b4
MS
514 unsigned long *table;
515 spinlock_t *ptl;
e5992f2e
MS
516 pgd_t *pgd;
517 pud_t *pud;
518 pmd_t *pmd;
527e30b4 519 int rc;
e5992f2e 520
527e30b4 521 /* Create higher level tables in the gmap page table */
c6c956b8
MS
522 table = gmap->table;
523 if ((gmap->asce & _ASCE_TYPE_MASK) >= _ASCE_TYPE_REGION1) {
524 table += (gaddr >> 53) & 0x7ff;
525 if ((*table & _REGION_ENTRY_INVALID) &&
526 gmap_alloc_table(gmap, table, _REGION2_ENTRY_EMPTY,
527 gaddr & 0xffe0000000000000))
528 return -ENOMEM;
529 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
530 }
531 if ((gmap->asce & _ASCE_TYPE_MASK) >= _ASCE_TYPE_REGION2) {
532 table += (gaddr >> 42) & 0x7ff;
533 if ((*table & _REGION_ENTRY_INVALID) &&
534 gmap_alloc_table(gmap, table, _REGION3_ENTRY_EMPTY,
535 gaddr & 0xfffffc0000000000))
536 return -ENOMEM;
537 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
538 }
539 if ((gmap->asce & _ASCE_TYPE_MASK) >= _ASCE_TYPE_REGION3) {
540 table += (gaddr >> 31) & 0x7ff;
541 if ((*table & _REGION_ENTRY_INVALID) &&
542 gmap_alloc_table(gmap, table, _SEGMENT_ENTRY_EMPTY,
543 gaddr & 0xffffffff80000000))
544 return -ENOMEM;
545 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
546 }
547 table += (gaddr >> 20) & 0x7ff;
527e30b4
MS
548 /* Walk the parent mm page table */
549 mm = gmap->mm;
550 pgd = pgd_offset(mm, vmaddr);
551 VM_BUG_ON(pgd_none(*pgd));
552 pud = pud_offset(pgd, vmaddr);
553 VM_BUG_ON(pud_none(*pud));
554 pmd = pmd_offset(pud, vmaddr);
555 VM_BUG_ON(pmd_none(*pmd));
1e1836e8
AT
556 /* large pmds cannot yet be handled */
557 if (pmd_large(*pmd))
558 return -EFAULT;
ab8e5235 559 /* Link gmap segment table entry location to page table. */
527e30b4
MS
560 rc = radix_tree_preload(GFP_KERNEL);
561 if (rc)
562 return rc;
563 ptl = pmd_lock(mm, pmd);
564 spin_lock(&gmap->guest_table_lock);
565 if (*table == _SEGMENT_ENTRY_INVALID) {
566 rc = radix_tree_insert(&gmap->host_to_guest,
567 vmaddr >> PMD_SHIFT, table);
568 if (!rc)
569 *table = pmd_val(*pmd);
570 } else
571 rc = 0;
572 spin_unlock(&gmap->guest_table_lock);
573 spin_unlock(ptl);
574 radix_tree_preload_end();
575 return rc;
ab8e5235
MS
576}
577
527e30b4
MS
578/**
579 * gmap_fault - resolve a fault on a guest address
580 * @gmap: pointer to guest mapping meta data structure
581 * @gaddr: guest address
582 * @fault_flags: flags to pass down to handle_mm_fault()
583 *
584 * Returns 0 on success, -ENOMEM for out of memory conditions, and -EFAULT
585 * if the vm address is already mapped to a different guest segment.
ab8e5235 586 */
527e30b4
MS
587int gmap_fault(struct gmap *gmap, unsigned long gaddr,
588 unsigned int fault_flags)
ab8e5235 589{
527e30b4 590 unsigned long vmaddr;
ab8e5235
MS
591 int rc;
592
499069e1 593 down_read(&gmap->mm->mmap_sem);
527e30b4
MS
594 vmaddr = __gmap_translate(gmap, gaddr);
595 if (IS_ERR_VALUE(vmaddr)) {
596 rc = vmaddr;
597 goto out_up;
598 }
599 if (fixup_user_fault(current, gmap->mm, vmaddr, fault_flags)) {
600 rc = -EFAULT;
601 goto out_up;
602 }
603 rc = __gmap_link(gmap, gaddr, vmaddr);
604out_up:
499069e1 605 up_read(&gmap->mm->mmap_sem);
499069e1 606 return rc;
e5992f2e
MS
607}
608EXPORT_SYMBOL_GPL(gmap_fault);
609
b31288fa
KW
610static void gmap_zap_swap_entry(swp_entry_t entry, struct mm_struct *mm)
611{
612 if (!non_swap_entry(entry))
613 dec_mm_counter(mm, MM_SWAPENTS);
614 else if (is_migration_entry(entry)) {
615 struct page *page = migration_entry_to_page(entry);
616
617 if (PageAnon(page))
618 dec_mm_counter(mm, MM_ANONPAGES);
619 else
620 dec_mm_counter(mm, MM_FILEPAGES);
621 }
622 free_swap_and_cache(entry);
623}
624
527e30b4
MS
625/*
626 * this function is assumed to be called with mmap_sem held
b31288fa 627 */
527e30b4 628void __gmap_zap(struct gmap *gmap, unsigned long gaddr)
b31288fa 629{
527e30b4
MS
630 unsigned long vmaddr, ptev, pgstev;
631 pte_t *ptep, pte;
b31288fa
KW
632 spinlock_t *ptl;
633 pgste_t pgste;
b31288fa 634
527e30b4
MS
635 /* Find the vm address for the guest address */
636 vmaddr = (unsigned long) radix_tree_lookup(&gmap->guest_to_host,
637 gaddr >> PMD_SHIFT);
638 if (!vmaddr)
639 return;
640 vmaddr |= gaddr & ~PMD_MASK;
641 /* Get pointer to the page table entry */
642 ptep = get_locked_pte(gmap->mm, vmaddr, &ptl);
b31288fa
KW
643 if (unlikely(!ptep))
644 return;
645 pte = *ptep;
646 if (!pte_swap(pte))
647 goto out_pte;
648 /* Zap unused and logically-zero pages */
649 pgste = pgste_get_lock(ptep);
650 pgstev = pgste_val(pgste);
651 ptev = pte_val(pte);
652 if (((pgstev & _PGSTE_GPS_USAGE_MASK) == _PGSTE_GPS_USAGE_UNUSED) ||
653 ((pgstev & _PGSTE_GPS_ZERO) && (ptev & _PAGE_INVALID))) {
527e30b4
MS
654 gmap_zap_swap_entry(pte_to_swp_entry(pte), gmap->mm);
655 pte_clear(gmap->mm, vmaddr, ptep);
b31288fa
KW
656 }
657 pgste_set_unlock(ptep, pgste);
658out_pte:
66e9bbdb 659 pte_unmap_unlock(ptep, ptl);
b31288fa 660}
b31288fa
KW
661EXPORT_SYMBOL_GPL(__gmap_zap);
662
6e0a0431 663void gmap_discard(struct gmap *gmap, unsigned long from, unsigned long to)
388186bc 664{
527e30b4 665 unsigned long gaddr, vmaddr, size;
388186bc 666 struct vm_area_struct *vma;
388186bc
CB
667
668 down_read(&gmap->mm->mmap_sem);
527e30b4
MS
669 for (gaddr = from; gaddr < to;
670 gaddr = (gaddr + PMD_SIZE) & PMD_MASK) {
671 /* Find the vm address for the guest address */
672 vmaddr = (unsigned long)
673 radix_tree_lookup(&gmap->guest_to_host,
674 gaddr >> PMD_SHIFT);
675 if (!vmaddr)
388186bc 676 continue;
527e30b4
MS
677 vmaddr |= gaddr & ~PMD_MASK;
678 /* Find vma in the parent mm */
679 vma = find_vma(gmap->mm, vmaddr);
6e0a0431 680 size = min(to - gaddr, PMD_SIZE - (gaddr & ~PMD_MASK));
527e30b4 681 zap_page_range(vma, vmaddr, size, NULL);
388186bc
CB
682 }
683 up_read(&gmap->mm->mmap_sem);
684}
685EXPORT_SYMBOL_GPL(gmap_discard);
686
d3383632
MS
687static LIST_HEAD(gmap_notifier_list);
688static DEFINE_SPINLOCK(gmap_notifier_lock);
689
690/**
691 * gmap_register_ipte_notifier - register a pte invalidation callback
692 * @nb: pointer to the gmap notifier block
693 */
694void gmap_register_ipte_notifier(struct gmap_notifier *nb)
695{
696 spin_lock(&gmap_notifier_lock);
697 list_add(&nb->list, &gmap_notifier_list);
698 spin_unlock(&gmap_notifier_lock);
699}
700EXPORT_SYMBOL_GPL(gmap_register_ipte_notifier);
701
702/**
703 * gmap_unregister_ipte_notifier - remove a pte invalidation callback
704 * @nb: pointer to the gmap notifier block
705 */
706void gmap_unregister_ipte_notifier(struct gmap_notifier *nb)
707{
708 spin_lock(&gmap_notifier_lock);
709 list_del_init(&nb->list);
710 spin_unlock(&gmap_notifier_lock);
711}
712EXPORT_SYMBOL_GPL(gmap_unregister_ipte_notifier);
713
714/**
715 * gmap_ipte_notify - mark a range of ptes for invalidation notification
716 * @gmap: pointer to guest mapping meta data structure
6e0a0431 717 * @gaddr: virtual address in the guest address space
d3383632
MS
718 * @len: size of area
719 *
720 * Returns 0 if for each page in the given range a gmap mapping exists and
721 * the invalidation notification could be set. If the gmap mapping is missing
722 * for one or more pages -EFAULT is returned. If no memory could be allocated
723 * -ENOMEM is returned. This function establishes missing page table entries.
724 */
6e0a0431 725int gmap_ipte_notify(struct gmap *gmap, unsigned long gaddr, unsigned long len)
d3383632
MS
726{
727 unsigned long addr;
728 spinlock_t *ptl;
729 pte_t *ptep, entry;
730 pgste_t pgste;
731 int rc = 0;
732
6e0a0431 733 if ((gaddr & ~PAGE_MASK) || (len & ~PAGE_MASK))
d3383632
MS
734 return -EINVAL;
735 down_read(&gmap->mm->mmap_sem);
736 while (len) {
737 /* Convert gmap address and connect the page tables */
527e30b4 738 addr = __gmap_translate(gmap, gaddr);
d3383632
MS
739 if (IS_ERR_VALUE(addr)) {
740 rc = addr;
741 break;
742 }
743 /* Get the page mapped */
bb4b42ce 744 if (fixup_user_fault(current, gmap->mm, addr, FAULT_FLAG_WRITE)) {
d3383632
MS
745 rc = -EFAULT;
746 break;
747 }
527e30b4
MS
748 rc = __gmap_link(gmap, gaddr, addr);
749 if (rc)
750 break;
d3383632
MS
751 /* Walk the process page table, lock and get pte pointer */
752 ptep = get_locked_pte(gmap->mm, addr, &ptl);
753 if (unlikely(!ptep))
754 continue;
755 /* Set notification bit in the pgste of the pte */
756 entry = *ptep;
e5098611 757 if ((pte_val(entry) & (_PAGE_INVALID | _PAGE_PROTECT)) == 0) {
d3383632 758 pgste = pgste_get_lock(ptep);
0d0dafc1 759 pgste_val(pgste) |= PGSTE_IN_BIT;
d3383632 760 pgste_set_unlock(ptep, pgste);
6e0a0431 761 gaddr += PAGE_SIZE;
d3383632
MS
762 len -= PAGE_SIZE;
763 }
764 spin_unlock(ptl);
765 }
766 up_read(&gmap->mm->mmap_sem);
767 return rc;
768}
769EXPORT_SYMBOL_GPL(gmap_ipte_notify);
770
771/**
772 * gmap_do_ipte_notify - call all invalidation callbacks for a specific pte.
773 * @mm: pointer to the process mm_struct
9da4e380 774 * @addr: virtual address in the process address space
d3383632
MS
775 * @pte: pointer to the page table entry
776 *
777 * This function is assumed to be called with the page table lock held
778 * for the pte to notify.
779 */
527e30b4 780void gmap_do_ipte_notify(struct mm_struct *mm, unsigned long vmaddr, pte_t *pte)
d3383632 781{
527e30b4
MS
782 unsigned long offset, gaddr;
783 unsigned long *table;
d3383632 784 struct gmap_notifier *nb;
527e30b4 785 struct gmap *gmap;
d3383632 786
527e30b4
MS
787 offset = ((unsigned long) pte) & (255 * sizeof(pte_t));
788 offset = offset * (4096 / sizeof(pte_t));
d3383632 789 spin_lock(&gmap_notifier_lock);
527e30b4
MS
790 list_for_each_entry(gmap, &mm->context.gmap_list, list) {
791 table = radix_tree_lookup(&gmap->host_to_guest,
792 vmaddr >> PMD_SHIFT);
793 if (!table)
794 continue;
795 gaddr = __gmap_segment_gaddr(table) + offset;
d3383632 796 list_for_each_entry(nb, &gmap_notifier_list, list)
527e30b4 797 nb->notifier_call(gmap, gaddr);
d3383632
MS
798 }
799 spin_unlock(&gmap_notifier_lock);
800}
0a61b222 801EXPORT_SYMBOL_GPL(gmap_do_ipte_notify);
d3383632 802
3eabaee9
MS
803static inline int page_table_with_pgste(struct page *page)
804{
805 return atomic_read(&page->_mapcount) == 0;
806}
807
527e30b4 808static inline unsigned long *page_table_alloc_pgste(struct mm_struct *mm)
36409f63
MS
809{
810 struct page *page;
811 unsigned long *table;
812
813 page = alloc_page(GFP_KERNEL|__GFP_REPEAT);
814 if (!page)
815 return NULL;
e89cfa58 816 if (!pgtable_page_ctor(page)) {
e89cfa58
KS
817 __free_page(page);
818 return NULL;
819 }
3eabaee9 820 atomic_set(&page->_mapcount, 0);
36409f63 821 table = (unsigned long *) page_to_phys(page);
e5098611 822 clear_table(table, _PAGE_INVALID, PAGE_SIZE/2);
0a61b222 823 clear_table(table + PTRS_PER_PTE, 0, PAGE_SIZE/2);
36409f63
MS
824 return table;
825}
826
827static inline void page_table_free_pgste(unsigned long *table)
828{
829 struct page *page;
830
831 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
2320c579 832 pgtable_page_dtor(page);
36409f63
MS
833 atomic_set(&page->_mapcount, -1);
834 __free_page(page);
835}
36409f63 836
24d5dd02
CB
837int set_guest_storage_key(struct mm_struct *mm, unsigned long addr,
838 unsigned long key, bool nq)
839{
840 spinlock_t *ptl;
841 pgste_t old, new;
842 pte_t *ptep;
843
844 down_read(&mm->mmap_sem);
ab3f285f 845retry:
24d5dd02
CB
846 ptep = get_locked_pte(current->mm, addr, &ptl);
847 if (unlikely(!ptep)) {
848 up_read(&mm->mmap_sem);
849 return -EFAULT;
850 }
ab3f285f
CB
851 if (!(pte_val(*ptep) & _PAGE_INVALID) &&
852 (pte_val(*ptep) & _PAGE_PROTECT)) {
66e9bbdb 853 pte_unmap_unlock(ptep, ptl);
dc77d344
CB
854 if (fixup_user_fault(current, mm, addr, FAULT_FLAG_WRITE)) {
855 up_read(&mm->mmap_sem);
856 return -EFAULT;
ab3f285f 857 }
dc77d344
CB
858 goto retry;
859 }
24d5dd02
CB
860
861 new = old = pgste_get_lock(ptep);
862 pgste_val(new) &= ~(PGSTE_GR_BIT | PGSTE_GC_BIT |
863 PGSTE_ACC_BITS | PGSTE_FP_BIT);
864 pgste_val(new) |= (key & (_PAGE_CHANGED | _PAGE_REFERENCED)) << 48;
865 pgste_val(new) |= (key & (_PAGE_ACC_BITS | _PAGE_FP_BIT)) << 56;
866 if (!(pte_val(*ptep) & _PAGE_INVALID)) {
0944fe3f 867 unsigned long address, bits, skey;
24d5dd02
CB
868
869 address = pte_val(*ptep) & PAGE_MASK;
0944fe3f 870 skey = (unsigned long) page_get_storage_key(address);
24d5dd02 871 bits = skey & (_PAGE_CHANGED | _PAGE_REFERENCED);
0944fe3f 872 skey = key & (_PAGE_ACC_BITS | _PAGE_FP_BIT);
24d5dd02 873 /* Set storage key ACC and FP */
0944fe3f 874 page_set_storage_key(address, skey, !nq);
24d5dd02
CB
875 /* Merge host changed & referenced into pgste */
876 pgste_val(new) |= bits << 52;
24d5dd02
CB
877 }
878 /* changing the guest storage key is considered a change of the page */
879 if ((pgste_val(new) ^ pgste_val(old)) &
880 (PGSTE_ACC_BITS | PGSTE_FP_BIT | PGSTE_GR_BIT | PGSTE_GC_BIT))
0a61b222 881 pgste_val(new) |= PGSTE_UC_BIT;
24d5dd02
CB
882
883 pgste_set_unlock(ptep, new);
66e9bbdb 884 pte_unmap_unlock(ptep, ptl);
24d5dd02
CB
885 up_read(&mm->mmap_sem);
886 return 0;
887}
888EXPORT_SYMBOL(set_guest_storage_key);
889
e5992f2e
MS
890#else /* CONFIG_PGSTE */
891
3eabaee9
MS
892static inline int page_table_with_pgste(struct page *page)
893{
894 return 0;
895}
896
527e30b4 897static inline unsigned long *page_table_alloc_pgste(struct mm_struct *mm)
e5992f2e 898{
944291de 899 return NULL;
e5992f2e
MS
900}
901
902static inline void page_table_free_pgste(unsigned long *table)
903{
904}
905
527e30b4
MS
906static inline void gmap_unlink(struct mm_struct *mm, unsigned long *table,
907 unsigned long vmaddr)
e5992f2e
MS
908{
909}
910
911#endif /* CONFIG_PGSTE */
912
913static inline unsigned int atomic_xor_bits(atomic_t *v, unsigned int bits)
914{
915 unsigned int old, new;
916
917 do {
918 old = atomic_read(v);
919 new = old ^ bits;
920 } while (atomic_cmpxchg(v, old, new) != old);
921 return new;
922}
923
924/*
925 * page table entry allocation/free routines.
926 */
527e30b4 927unsigned long *page_table_alloc(struct mm_struct *mm)
3610cce8 928{
41459d36
HC
929 unsigned long *uninitialized_var(table);
930 struct page *uninitialized_var(page);
36409f63 931 unsigned int mask, bit;
3610cce8 932
36409f63 933 if (mm_has_pgste(mm))
527e30b4 934 return page_table_alloc_pgste(mm);
36409f63 935 /* Allocate fragments of a 4K page as 1K/2K page table */
80217147 936 spin_lock_bh(&mm->context.list_lock);
36409f63 937 mask = FRAG_MASK;
146e4b3c
MS
938 if (!list_empty(&mm->context.pgtable_list)) {
939 page = list_first_entry(&mm->context.pgtable_list,
940 struct page, lru);
36409f63
MS
941 table = (unsigned long *) page_to_phys(page);
942 mask = atomic_read(&page->_mapcount);
943 mask = mask | (mask >> 4);
146e4b3c 944 }
36409f63 945 if ((mask & FRAG_MASK) == FRAG_MASK) {
80217147 946 spin_unlock_bh(&mm->context.list_lock);
146e4b3c
MS
947 page = alloc_page(GFP_KERNEL|__GFP_REPEAT);
948 if (!page)
3610cce8 949 return NULL;
e89cfa58
KS
950 if (!pgtable_page_ctor(page)) {
951 __free_page(page);
952 return NULL;
953 }
36409f63 954 atomic_set(&page->_mapcount, 1);
146e4b3c 955 table = (unsigned long *) page_to_phys(page);
e5098611 956 clear_table(table, _PAGE_INVALID, PAGE_SIZE);
80217147 957 spin_lock_bh(&mm->context.list_lock);
146e4b3c 958 list_add(&page->lru, &mm->context.pgtable_list);
36409f63
MS
959 } else {
960 for (bit = 1; mask & bit; bit <<= 1)
961 table += PTRS_PER_PTE;
962 mask = atomic_xor_bits(&page->_mapcount, bit);
963 if ((mask & FRAG_MASK) == FRAG_MASK)
964 list_del(&page->lru);
3610cce8 965 }
80217147 966 spin_unlock_bh(&mm->context.list_lock);
3610cce8
MS
967 return table;
968}
969
36409f63 970void page_table_free(struct mm_struct *mm, unsigned long *table)
80217147
MS
971{
972 struct page *page;
36409f63 973 unsigned int bit, mask;
80217147 974
3eabaee9 975 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
527e30b4 976 if (page_table_with_pgste(page))
36409f63 977 return page_table_free_pgste(table);
36409f63 978 /* Free 1K/2K page table fragment of a 4K page */
36409f63
MS
979 bit = 1 << ((__pa(table) & ~PAGE_MASK)/(PTRS_PER_PTE*sizeof(pte_t)));
980 spin_lock_bh(&mm->context.list_lock);
981 if ((atomic_read(&page->_mapcount) & FRAG_MASK) != FRAG_MASK)
982 list_del(&page->lru);
983 mask = atomic_xor_bits(&page->_mapcount, bit);
984 if (mask & FRAG_MASK)
985 list_add(&page->lru, &mm->context.pgtable_list);
986 spin_unlock_bh(&mm->context.list_lock);
987 if (mask == 0) {
80217147 988 pgtable_page_dtor(page);
36409f63 989 atomic_set(&page->_mapcount, -1);
80217147
MS
990 __free_page(page);
991 }
992}
993
36409f63 994static void __page_table_free_rcu(void *table, unsigned bit)
3610cce8 995{
146e4b3c 996 struct page *page;
3610cce8 997
36409f63
MS
998 if (bit == FRAG_MASK)
999 return page_table_free_pgste(table);
36409f63 1000 /* Free 1K/2K page table fragment of a 4K page */
146e4b3c 1001 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
36409f63 1002 if (atomic_xor_bits(&page->_mapcount, bit) == 0) {
146e4b3c 1003 pgtable_page_dtor(page);
36409f63 1004 atomic_set(&page->_mapcount, -1);
146e4b3c
MS
1005 __free_page(page);
1006 }
1007}
3610cce8 1008
527e30b4
MS
1009void page_table_free_rcu(struct mmu_gather *tlb, unsigned long *table,
1010 unsigned long vmaddr)
80217147 1011{
36409f63 1012 struct mm_struct *mm;
80217147 1013 struct page *page;
36409f63 1014 unsigned int bit, mask;
80217147 1015
36409f63 1016 mm = tlb->mm;
3eabaee9
MS
1017 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
1018 if (page_table_with_pgste(page)) {
527e30b4 1019 gmap_unlink(mm, table, vmaddr);
36409f63
MS
1020 table = (unsigned long *) (__pa(table) | FRAG_MASK);
1021 tlb_remove_table(tlb, table);
1022 return;
80217147 1023 }
36409f63 1024 bit = 1 << ((__pa(table) & ~PAGE_MASK) / (PTRS_PER_PTE*sizeof(pte_t)));
80217147 1025 spin_lock_bh(&mm->context.list_lock);
36409f63
MS
1026 if ((atomic_read(&page->_mapcount) & FRAG_MASK) != FRAG_MASK)
1027 list_del(&page->lru);
1028 mask = atomic_xor_bits(&page->_mapcount, bit | (bit << 4));
1029 if (mask & FRAG_MASK)
1030 list_add_tail(&page->lru, &mm->context.pgtable_list);
80217147 1031 spin_unlock_bh(&mm->context.list_lock);
36409f63
MS
1032 table = (unsigned long *) (__pa(table) | (bit << 4));
1033 tlb_remove_table(tlb, table);
1034}
1035
63df41d6 1036static void __tlb_remove_table(void *_table)
36409f63 1037{
e73b7fff
MS
1038 const unsigned long mask = (FRAG_MASK << 4) | FRAG_MASK;
1039 void *table = (void *)((unsigned long) _table & ~mask);
1040 unsigned type = (unsigned long) _table & mask;
36409f63
MS
1041
1042 if (type)
1043 __page_table_free_rcu(table, type);
1044 else
1045 free_pages((unsigned long) table, ALLOC_ORDER);
80217147
MS
1046}
1047
cd94154c
MS
1048static void tlb_remove_table_smp_sync(void *arg)
1049{
1050 /* Simply deliver the interrupt */
1051}
1052
1053static void tlb_remove_table_one(void *table)
1054{
1055 /*
1056 * This isn't an RCU grace period and hence the page-tables cannot be
1057 * assumed to be actually RCU-freed.
1058 *
1059 * It is however sufficient for software page-table walkers that rely
1060 * on IRQ disabling. See the comment near struct mmu_table_batch.
1061 */
1062 smp_call_function(tlb_remove_table_smp_sync, NULL, 1);
1063 __tlb_remove_table(table);
1064}
1065
1066static void tlb_remove_table_rcu(struct rcu_head *head)
1067{
1068 struct mmu_table_batch *batch;
1069 int i;
1070
1071 batch = container_of(head, struct mmu_table_batch, rcu);
1072
1073 for (i = 0; i < batch->nr; i++)
1074 __tlb_remove_table(batch->tables[i]);
1075
1076 free_page((unsigned long)batch);
1077}
1078
1079void tlb_table_flush(struct mmu_gather *tlb)
1080{
1081 struct mmu_table_batch **batch = &tlb->batch;
1082
1083 if (*batch) {
cd94154c
MS
1084 call_rcu_sched(&(*batch)->rcu, tlb_remove_table_rcu);
1085 *batch = NULL;
1086 }
1087}
1088
1089void tlb_remove_table(struct mmu_gather *tlb, void *table)
1090{
1091 struct mmu_table_batch **batch = &tlb->batch;
1092
5c474a1e 1093 tlb->mm->context.flush_mm = 1;
cd94154c
MS
1094 if (*batch == NULL) {
1095 *batch = (struct mmu_table_batch *)
1096 __get_free_page(GFP_NOWAIT | __GFP_NOWARN);
1097 if (*batch == NULL) {
5c474a1e 1098 __tlb_flush_mm_lazy(tlb->mm);
cd94154c
MS
1099 tlb_remove_table_one(table);
1100 return;
1101 }
1102 (*batch)->nr = 0;
1103 }
1104 (*batch)->tables[(*batch)->nr++] = table;
1105 if ((*batch)->nr == MAX_TABLE_BATCH)
5c474a1e 1106 tlb_flush_mmu(tlb);
cd94154c 1107}
36409f63 1108
274023da 1109#ifdef CONFIG_TRANSPARENT_HUGEPAGE
3eabaee9 1110static inline void thp_split_vma(struct vm_area_struct *vma)
274023da
GS
1111{
1112 unsigned long addr;
274023da 1113
3eabaee9
MS
1114 for (addr = vma->vm_start; addr < vma->vm_end; addr += PAGE_SIZE)
1115 follow_page(vma, addr, FOLL_SPLIT);
274023da
GS
1116}
1117
3eabaee9 1118static inline void thp_split_mm(struct mm_struct *mm)
274023da 1119{
3eabaee9 1120 struct vm_area_struct *vma;
274023da 1121
3eabaee9 1122 for (vma = mm->mmap; vma != NULL; vma = vma->vm_next) {
274023da
GS
1123 thp_split_vma(vma);
1124 vma->vm_flags &= ~VM_HUGEPAGE;
1125 vma->vm_flags |= VM_NOHUGEPAGE;
274023da 1126 }
3eabaee9
MS
1127 mm->def_flags |= VM_NOHUGEPAGE;
1128}
1129#else
1130static inline void thp_split_mm(struct mm_struct *mm)
1131{
274023da
GS
1132}
1133#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1134
3eabaee9
MS
1135static unsigned long page_table_realloc_pmd(struct mmu_gather *tlb,
1136 struct mm_struct *mm, pud_t *pud,
1137 unsigned long addr, unsigned long end)
1138{
1139 unsigned long next, *table, *new;
1140 struct page *page;
55e4283c 1141 spinlock_t *ptl;
3eabaee9
MS
1142 pmd_t *pmd;
1143
1144 pmd = pmd_offset(pud, addr);
1145 do {
1146 next = pmd_addr_end(addr, end);
1147again:
1148 if (pmd_none_or_clear_bad(pmd))
1149 continue;
1150 table = (unsigned long *) pmd_deref(*pmd);
1151 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
1152 if (page_table_with_pgste(page))
1153 continue;
1154 /* Allocate new page table with pgstes */
527e30b4 1155 new = page_table_alloc_pgste(mm);
be39f196
DD
1156 if (!new)
1157 return -ENOMEM;
1158
55e4283c 1159 ptl = pmd_lock(mm, pmd);
3eabaee9
MS
1160 if (likely((unsigned long *) pmd_deref(*pmd) == table)) {
1161 /* Nuke pmd entry pointing to the "short" page table */
1162 pmdp_flush_lazy(mm, addr, pmd);
1163 pmd_clear(pmd);
1164 /* Copy ptes from old table to new table */
1165 memcpy(new, table, PAGE_SIZE/2);
1166 clear_table(table, _PAGE_INVALID, PAGE_SIZE/2);
1167 /* Establish new table */
1168 pmd_populate(mm, pmd, (pte_t *) new);
1169 /* Free old table with rcu, there might be a walker! */
527e30b4 1170 page_table_free_rcu(tlb, table, addr);
3eabaee9
MS
1171 new = NULL;
1172 }
55e4283c 1173 spin_unlock(ptl);
3eabaee9
MS
1174 if (new) {
1175 page_table_free_pgste(new);
1176 goto again;
1177 }
1178 } while (pmd++, addr = next, addr != end);
1179
1180 return addr;
1181}
1182
1183static unsigned long page_table_realloc_pud(struct mmu_gather *tlb,
1184 struct mm_struct *mm, pgd_t *pgd,
1185 unsigned long addr, unsigned long end)
1186{
1187 unsigned long next;
1188 pud_t *pud;
1189
1190 pud = pud_offset(pgd, addr);
1191 do {
1192 next = pud_addr_end(addr, end);
1193 if (pud_none_or_clear_bad(pud))
1194 continue;
1195 next = page_table_realloc_pmd(tlb, mm, pud, addr, next);
be39f196
DD
1196 if (unlikely(IS_ERR_VALUE(next)))
1197 return next;
3eabaee9
MS
1198 } while (pud++, addr = next, addr != end);
1199
1200 return addr;
1201}
1202
be39f196
DD
1203static unsigned long page_table_realloc(struct mmu_gather *tlb, struct mm_struct *mm,
1204 unsigned long addr, unsigned long end)
3eabaee9
MS
1205{
1206 unsigned long next;
1207 pgd_t *pgd;
1208
1209 pgd = pgd_offset(mm, addr);
1210 do {
1211 next = pgd_addr_end(addr, end);
1212 if (pgd_none_or_clear_bad(pgd))
1213 continue;
1214 next = page_table_realloc_pud(tlb, mm, pgd, addr, next);
be39f196
DD
1215 if (unlikely(IS_ERR_VALUE(next)))
1216 return next;
3eabaee9 1217 } while (pgd++, addr = next, addr != end);
be39f196
DD
1218
1219 return 0;
3eabaee9
MS
1220}
1221
402b0862
CO
1222/*
1223 * switch on pgstes for its userspace process (for kvm)
1224 */
1225int s390_enable_sie(void)
1226{
1227 struct task_struct *tsk = current;
3eabaee9
MS
1228 struct mm_struct *mm = tsk->mm;
1229 struct mmu_gather tlb;
402b0862 1230
74b6b522 1231 /* Do we have pgstes? if yes, we are done */
36409f63 1232 if (mm_has_pgste(tsk->mm))
74b6b522 1233 return 0;
402b0862 1234
3eabaee9 1235 down_write(&mm->mmap_sem);
274023da
GS
1236 /* split thp mappings and disable thp for future mappings */
1237 thp_split_mm(mm);
3eabaee9 1238 /* Reallocate the page tables with pgstes */
ae7a835c 1239 tlb_gather_mmu(&tlb, mm, 0, TASK_SIZE);
be39f196
DD
1240 if (!page_table_realloc(&tlb, mm, 0, TASK_SIZE))
1241 mm->context.has_pgste = 1;
ae7a835c 1242 tlb_finish_mmu(&tlb, 0, TASK_SIZE);
3eabaee9
MS
1243 up_write(&mm->mmap_sem);
1244 return mm->context.has_pgste ? 0 : -ENOMEM;
402b0862
CO
1245}
1246EXPORT_SYMBOL_GPL(s390_enable_sie);
7db11a36 1247
934bc131
DD
1248/*
1249 * Enable storage key handling from now on and initialize the storage
1250 * keys with the default key.
1251 */
a13cff31
DD
1252static int __s390_enable_skey(pte_t *pte, unsigned long addr,
1253 unsigned long next, struct mm_walk *walk)
1254{
1255 unsigned long ptev;
1256 pgste_t pgste;
1257
1258 pgste = pgste_get_lock(pte);
1259 /* Clear storage key */
1260 pgste_val(pgste) &= ~(PGSTE_ACC_BITS | PGSTE_FP_BIT |
1261 PGSTE_GR_BIT | PGSTE_GC_BIT);
1262 ptev = pte_val(*pte);
1263 if (!(ptev & _PAGE_INVALID) && (ptev & _PAGE_WRITE))
1264 page_set_storage_key(ptev & PAGE_MASK, PAGE_DEFAULT_KEY, 1);
1265 pgste_set_unlock(pte, pgste);
1266 return 0;
1267}
1268
934bc131
DD
1269void s390_enable_skey(void)
1270{
a13cff31
DD
1271 struct mm_walk walk = { .pte_entry = __s390_enable_skey };
1272 struct mm_struct *mm = current->mm;
1273
1274 down_write(&mm->mmap_sem);
1275 if (mm_use_skey(mm))
1276 goto out_up;
1277 walk.mm = mm;
1278 walk_page_range(0, TASK_SIZE, &walk);
1279 mm->context.use_skey = 1;
1280
1281out_up:
1282 up_write(&mm->mmap_sem);
934bc131
DD
1283}
1284EXPORT_SYMBOL_GPL(s390_enable_skey);
1285
a13cff31
DD
1286/*
1287 * Reset CMMA state, make all pages stable again.
1288 */
1289static int __s390_reset_cmma(pte_t *pte, unsigned long addr,
1290 unsigned long next, struct mm_walk *walk)
1291{
1292 pgste_t pgste;
1293
1294 pgste = pgste_get_lock(pte);
1295 pgste_val(pgste) &= ~_PGSTE_GPS_USAGE_MASK;
1296 pgste_set_unlock(pte, pgste);
1297 return 0;
1298}
1299
1300void s390_reset_cmma(struct mm_struct *mm)
1301{
1302 struct mm_walk walk = { .pte_entry = __s390_reset_cmma };
1303
1304 down_write(&mm->mmap_sem);
1305 walk.mm = mm;
1306 walk_page_range(0, TASK_SIZE, &walk);
1307 up_write(&mm->mmap_sem);
1308}
1309EXPORT_SYMBOL_GPL(s390_reset_cmma);
1310
a0bf4f14
DD
1311/*
1312 * Test and reset if a guest page is dirty
1313 */
1314bool gmap_test_and_clear_dirty(unsigned long address, struct gmap *gmap)
1315{
1316 pte_t *pte;
1317 spinlock_t *ptl;
1318 bool dirty = false;
1319
1320 pte = get_locked_pte(gmap->mm, address, &ptl);
1321 if (unlikely(!pte))
1322 return false;
1323
1324 if (ptep_test_and_clear_user_dirty(gmap->mm, address, pte))
1325 dirty = true;
1326
1327 spin_unlock(ptl);
1328 return dirty;
1329}
1330EXPORT_SYMBOL_GPL(gmap_test_and_clear_dirty);
1331
75077afb 1332#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1ae1c1d0
GS
1333int pmdp_clear_flush_young(struct vm_area_struct *vma, unsigned long address,
1334 pmd_t *pmdp)
1335{
1336 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1337 /* No need to flush TLB
1338 * On s390 reference bits are in storage key and never in TLB */
1339 return pmdp_test_and_clear_young(vma, address, pmdp);
1340}
1341
1342int pmdp_set_access_flags(struct vm_area_struct *vma,
1343 unsigned long address, pmd_t *pmdp,
1344 pmd_t entry, int dirty)
1345{
1346 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1347
152125b7
MS
1348 entry = pmd_mkyoung(entry);
1349 if (dirty)
1350 entry = pmd_mkdirty(entry);
1ae1c1d0
GS
1351 if (pmd_same(*pmdp, entry))
1352 return 0;
1353 pmdp_invalidate(vma, address, pmdp);
1354 set_pmd_at(vma->vm_mm, address, pmdp, entry);
1355 return 1;
1356}
1357
75077afb
GS
1358static void pmdp_splitting_flush_sync(void *arg)
1359{
1360 /* Simply deliver the interrupt */
1361}
1362
1363void pmdp_splitting_flush(struct vm_area_struct *vma, unsigned long address,
1364 pmd_t *pmdp)
1365{
1366 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1367 if (!test_and_set_bit(_SEGMENT_ENTRY_SPLIT_BIT,
1368 (unsigned long *) pmdp)) {
1369 /* need to serialize against gup-fast (IRQ disabled) */
1370 smp_call_function(pmdp_splitting_flush_sync, NULL, 1);
1371 }
1372}
9501d09f 1373
6b0b50b0
AK
1374void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
1375 pgtable_t pgtable)
9501d09f
GS
1376{
1377 struct list_head *lh = (struct list_head *) pgtable;
1378
ec66ad66 1379 assert_spin_locked(pmd_lockptr(mm, pmdp));
9501d09f
GS
1380
1381 /* FIFO */
c389a250 1382 if (!pmd_huge_pte(mm, pmdp))
9501d09f
GS
1383 INIT_LIST_HEAD(lh);
1384 else
c389a250
KS
1385 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
1386 pmd_huge_pte(mm, pmdp) = pgtable;
9501d09f
GS
1387}
1388
6b0b50b0 1389pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
9501d09f
GS
1390{
1391 struct list_head *lh;
1392 pgtable_t pgtable;
1393 pte_t *ptep;
1394
ec66ad66 1395 assert_spin_locked(pmd_lockptr(mm, pmdp));
9501d09f
GS
1396
1397 /* FIFO */
c389a250 1398 pgtable = pmd_huge_pte(mm, pmdp);
9501d09f
GS
1399 lh = (struct list_head *) pgtable;
1400 if (list_empty(lh))
c389a250 1401 pmd_huge_pte(mm, pmdp) = NULL;
9501d09f 1402 else {
c389a250 1403 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
9501d09f
GS
1404 list_del(lh);
1405 }
1406 ptep = (pte_t *) pgtable;
e5098611 1407 pte_val(*ptep) = _PAGE_INVALID;
9501d09f 1408 ptep++;
e5098611 1409 pte_val(*ptep) = _PAGE_INVALID;
9501d09f
GS
1410 return pgtable;
1411}
75077afb 1412#endif /* CONFIG_TRANSPARENT_HUGEPAGE */