blob: dfee0ebb2fac40931404662fcda2c4c95a321336 [file] [log] [blame]
Greg Kroah-Hartmanac41aae2017-11-24 15:00:35 +01001// SPDX-License-Identifier: GPL-2.0
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002/*
3 * KVM guest address space mapping code
4 *
Christian Borntraeger0cd2a782020-11-09 13:14:35 +01005 * Copyright IBM Corp. 2007, 2020
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01006 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
Janosch Franka9e00d82018-07-13 11:28:37 +01007 * David Hildenbrand <david@redhat.com>
8 * Janosch Frank <frankja@linux.vnet.ibm.com>
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01009 */
10
11#include <linux/kernel.h>
Christoph Hellwiga5201102019-08-28 16:19:53 +020012#include <linux/pagewalk.h>
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010013#include <linux/swap.h>
14#include <linux/smp.h>
15#include <linux/spinlock.h>
16#include <linux/slab.h>
17#include <linux/swapops.h>
18#include <linux/ksm.h>
19#include <linux/mman.h>
Mike Rapoportca5999f2020-06-08 21:32:38 -070020#include <linux/pgtable.h>
Mike Rapoport65fddcf2020-06-08 21:32:42 -070021
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010022#include <asm/pgalloc.h>
23#include <asm/gmap.h>
24#include <asm/tlb.h>
25
David Hildenbrandfd8d4e32016-04-18 13:24:52 +020026#define GMAP_SHADOW_FAKE_TABLE 1ULL
27
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010028/**
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +010029 * gmap_alloc - allocate and initialize a guest address space
Christian Borntraeger9c650d02016-04-04 09:41:32 +020030 * @limit: maximum address of the gmap address space
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010031 *
32 * Returns a guest address space structure.
33 */
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +010034static struct gmap *gmap_alloc(unsigned long limit)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010035{
36 struct gmap *gmap;
37 struct page *page;
38 unsigned long *table;
39 unsigned long etype, atype;
40
Heiko Carstensf1c11742017-07-05 07:37:27 +020041 if (limit < _REGION3_SIZE) {
42 limit = _REGION3_SIZE - 1;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010043 atype = _ASCE_TYPE_SEGMENT;
44 etype = _SEGMENT_ENTRY_EMPTY;
Heiko Carstensf1c11742017-07-05 07:37:27 +020045 } else if (limit < _REGION2_SIZE) {
46 limit = _REGION2_SIZE - 1;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010047 atype = _ASCE_TYPE_REGION3;
48 etype = _REGION3_ENTRY_EMPTY;
Heiko Carstensf1c11742017-07-05 07:37:27 +020049 } else if (limit < _REGION1_SIZE) {
50 limit = _REGION1_SIZE - 1;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010051 atype = _ASCE_TYPE_REGION2;
52 etype = _REGION2_ENTRY_EMPTY;
53 } else {
54 limit = -1UL;
55 atype = _ASCE_TYPE_REGION1;
56 etype = _REGION1_ENTRY_EMPTY;
57 }
Christian Borntraeger0cd2a782020-11-09 13:14:35 +010058 gmap = kzalloc(sizeof(struct gmap), GFP_KERNEL_ACCOUNT);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010059 if (!gmap)
60 goto out;
61 INIT_LIST_HEAD(&gmap->crst_list);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +010062 INIT_LIST_HEAD(&gmap->children);
63 INIT_LIST_HEAD(&gmap->pt_list);
Christian Borntraeger0cd2a782020-11-09 13:14:35 +010064 INIT_RADIX_TREE(&gmap->guest_to_host, GFP_KERNEL_ACCOUNT);
65 INIT_RADIX_TREE(&gmap->host_to_guest, GFP_ATOMIC | __GFP_ACCOUNT);
66 INIT_RADIX_TREE(&gmap->host_to_rmap, GFP_ATOMIC | __GFP_ACCOUNT);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010067 spin_lock_init(&gmap->guest_table_lock);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +010068 spin_lock_init(&gmap->shadow_lock);
Chuhong Yuan40e90652019-08-08 15:18:26 +080069 refcount_set(&gmap->ref_count, 1);
Christian Borntraeger0cd2a782020-11-09 13:14:35 +010070 page = alloc_pages(GFP_KERNEL_ACCOUNT, CRST_ALLOC_ORDER);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010071 if (!page)
72 goto out_free;
73 page->index = 0;
74 list_add(&page->lru, &gmap->crst_list);
75 table = (unsigned long *) page_to_phys(page);
76 crst_table_init(table, etype);
77 gmap->table = table;
78 gmap->asce = atype | _ASCE_TABLE_LENGTH |
79 _ASCE_USER_BITS | __pa(table);
80 gmap->asce_end = limit;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010081 return gmap;
82
83out_free:
84 kfree(gmap);
85out:
86 return NULL;
87}
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +010088
89/**
90 * gmap_create - create a guest address space
91 * @mm: pointer to the parent mm_struct
92 * @limit: maximum size of the gmap address space
93 *
94 * Returns a guest address space structure.
95 */
96struct gmap *gmap_create(struct mm_struct *mm, unsigned long limit)
97{
98 struct gmap *gmap;
Martin Schwidefsky44b6cc82016-06-13 10:36:00 +020099 unsigned long gmap_asce;
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100100
101 gmap = gmap_alloc(limit);
102 if (!gmap)
103 return NULL;
104 gmap->mm = mm;
Martin Schwidefskyf28a4b42017-08-17 18:17:49 +0200105 spin_lock(&mm->context.lock);
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100106 list_add_rcu(&gmap->list, &mm->context.gmap_list);
Martin Schwidefsky44b6cc82016-06-13 10:36:00 +0200107 if (list_is_singular(&mm->context.gmap_list))
108 gmap_asce = gmap->asce;
109 else
110 gmap_asce = -1UL;
111 WRITE_ONCE(mm->context.gmap_asce, gmap_asce);
Martin Schwidefskyf28a4b42017-08-17 18:17:49 +0200112 spin_unlock(&mm->context.lock);
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100113 return gmap;
114}
115EXPORT_SYMBOL_GPL(gmap_create);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100116
117static void gmap_flush_tlb(struct gmap *gmap)
118{
119 if (MACHINE_HAS_IDTE)
David Hildenbrandf0454022016-07-07 10:44:10 +0200120 __tlb_flush_idte(gmap->asce);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100121 else
122 __tlb_flush_global();
123}
124
125static void gmap_radix_tree_free(struct radix_tree_root *root)
126{
127 struct radix_tree_iter iter;
128 unsigned long indices[16];
129 unsigned long index;
Heiko Carstensd12a3d62017-05-09 13:44:43 +0200130 void __rcu **slot;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100131 int i, nr;
132
133 /* A radix tree is freed by deleting all of its entries */
134 index = 0;
135 do {
136 nr = 0;
137 radix_tree_for_each_slot(slot, root, &iter, index) {
138 indices[nr] = iter.index;
139 if (++nr == 16)
140 break;
141 }
142 for (i = 0; i < nr; i++) {
143 index = indices[i];
144 radix_tree_delete(root, index);
145 }
146 } while (nr > 0);
147}
148
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100149static void gmap_rmap_radix_tree_free(struct radix_tree_root *root)
150{
151 struct gmap_rmap *rmap, *rnext, *head;
152 struct radix_tree_iter iter;
153 unsigned long indices[16];
154 unsigned long index;
Heiko Carstensd12a3d62017-05-09 13:44:43 +0200155 void __rcu **slot;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100156 int i, nr;
157
158 /* A radix tree is freed by deleting all of its entries */
159 index = 0;
160 do {
161 nr = 0;
162 radix_tree_for_each_slot(slot, root, &iter, index) {
163 indices[nr] = iter.index;
164 if (++nr == 16)
165 break;
166 }
167 for (i = 0; i < nr; i++) {
168 index = indices[i];
169 head = radix_tree_delete(root, index);
170 gmap_for_each_rmap_safe(rmap, rnext, head)
171 kfree(rmap);
172 }
173 } while (nr > 0);
174}
175
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100176/**
177 * gmap_free - free a guest address space
178 * @gmap: pointer to the guest address space structure
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100179 *
180 * No locks required. There are no references to this gmap anymore.
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100181 */
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100182static void gmap_free(struct gmap *gmap)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100183{
184 struct page *page, *next;
185
David Hildenbrandeea36782016-04-15 12:45:45 +0200186 /* Flush tlb of all gmaps (if not already done for shadows) */
187 if (!(gmap_is_shadow(gmap) && gmap->removed))
188 gmap_flush_tlb(gmap);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100189 /* Free all segment & region tables. */
190 list_for_each_entry_safe(page, next, &gmap->crst_list, lru)
Heiko Carstensf1c11742017-07-05 07:37:27 +0200191 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100192 gmap_radix_tree_free(&gmap->guest_to_host);
193 gmap_radix_tree_free(&gmap->host_to_guest);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100194
195 /* Free additional data for a shadow gmap */
196 if (gmap_is_shadow(gmap)) {
197 /* Free all page tables. */
198 list_for_each_entry_safe(page, next, &gmap->pt_list, lru)
199 page_table_free_pgste(page);
200 gmap_rmap_radix_tree_free(&gmap->host_to_rmap);
201 /* Release reference to the parent */
202 gmap_put(gmap->parent);
203 }
204
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100205 kfree(gmap);
206}
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100207
208/**
209 * gmap_get - increase reference counter for guest address space
210 * @gmap: pointer to the guest address space structure
211 *
212 * Returns the gmap pointer
213 */
214struct gmap *gmap_get(struct gmap *gmap)
215{
Chuhong Yuan40e90652019-08-08 15:18:26 +0800216 refcount_inc(&gmap->ref_count);
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100217 return gmap;
218}
219EXPORT_SYMBOL_GPL(gmap_get);
220
221/**
222 * gmap_put - decrease reference counter for guest address space
223 * @gmap: pointer to the guest address space structure
224 *
225 * If the reference counter reaches zero the guest address space is freed.
226 */
227void gmap_put(struct gmap *gmap)
228{
Chuhong Yuan40e90652019-08-08 15:18:26 +0800229 if (refcount_dec_and_test(&gmap->ref_count))
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100230 gmap_free(gmap);
231}
232EXPORT_SYMBOL_GPL(gmap_put);
233
234/**
235 * gmap_remove - remove a guest address space but do not free it yet
236 * @gmap: pointer to the guest address space structure
237 */
238void gmap_remove(struct gmap *gmap)
239{
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100240 struct gmap *sg, *next;
Martin Schwidefsky44b6cc82016-06-13 10:36:00 +0200241 unsigned long gmap_asce;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100242
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100243 /* Remove all shadow gmaps linked to this gmap */
244 if (!list_empty(&gmap->children)) {
245 spin_lock(&gmap->shadow_lock);
246 list_for_each_entry_safe(sg, next, &gmap->children, list) {
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100247 list_del(&sg->list);
248 gmap_put(sg);
249 }
250 spin_unlock(&gmap->shadow_lock);
251 }
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100252 /* Remove gmap from the pre-mm list */
Martin Schwidefskyf28a4b42017-08-17 18:17:49 +0200253 spin_lock(&gmap->mm->context.lock);
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100254 list_del_rcu(&gmap->list);
Martin Schwidefsky44b6cc82016-06-13 10:36:00 +0200255 if (list_empty(&gmap->mm->context.gmap_list))
256 gmap_asce = 0;
257 else if (list_is_singular(&gmap->mm->context.gmap_list))
258 gmap_asce = list_first_entry(&gmap->mm->context.gmap_list,
259 struct gmap, list)->asce;
260 else
261 gmap_asce = -1UL;
262 WRITE_ONCE(gmap->mm->context.gmap_asce, gmap_asce);
Martin Schwidefskyf28a4b42017-08-17 18:17:49 +0200263 spin_unlock(&gmap->mm->context.lock);
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100264 synchronize_rcu();
265 /* Put reference */
266 gmap_put(gmap);
267}
268EXPORT_SYMBOL_GPL(gmap_remove);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100269
270/**
271 * gmap_enable - switch primary space to the guest address space
272 * @gmap: pointer to the guest address space structure
273 */
274void gmap_enable(struct gmap *gmap)
275{
276 S390_lowcore.gmap = (unsigned long) gmap;
277}
278EXPORT_SYMBOL_GPL(gmap_enable);
279
280/**
281 * gmap_disable - switch back to the standard primary address space
282 * @gmap: pointer to the guest address space structure
283 */
284void gmap_disable(struct gmap *gmap)
285{
286 S390_lowcore.gmap = 0UL;
287}
288EXPORT_SYMBOL_GPL(gmap_disable);
289
David Hildenbrand37d9df92015-03-11 16:47:33 +0100290/**
291 * gmap_get_enabled - get a pointer to the currently enabled gmap
292 *
293 * Returns a pointer to the currently enabled gmap. 0 if none is enabled.
294 */
295struct gmap *gmap_get_enabled(void)
296{
297 return (struct gmap *) S390_lowcore.gmap;
298}
299EXPORT_SYMBOL_GPL(gmap_get_enabled);
300
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100301/*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700302 * gmap_alloc_table is assumed to be called with mmap_lock held
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100303 */
304static int gmap_alloc_table(struct gmap *gmap, unsigned long *table,
305 unsigned long init, unsigned long gaddr)
306{
307 struct page *page;
308 unsigned long *new;
309
310 /* since we dont free the gmap table until gmap_free we can unlock */
Christian Borntraeger0cd2a782020-11-09 13:14:35 +0100311 page = alloc_pages(GFP_KERNEL_ACCOUNT, CRST_ALLOC_ORDER);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100312 if (!page)
313 return -ENOMEM;
314 new = (unsigned long *) page_to_phys(page);
315 crst_table_init(new, init);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100316 spin_lock(&gmap->guest_table_lock);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100317 if (*table & _REGION_ENTRY_INVALID) {
318 list_add(&page->lru, &gmap->crst_list);
319 *table = (unsigned long) new | _REGION_ENTRY_LENGTH |
320 (*table & _REGION_ENTRY_TYPE_MASK);
321 page->index = gaddr;
322 page = NULL;
323 }
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100324 spin_unlock(&gmap->guest_table_lock);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100325 if (page)
Heiko Carstensf1c11742017-07-05 07:37:27 +0200326 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100327 return 0;
328}
329
330/**
331 * __gmap_segment_gaddr - find virtual address from segment pointer
332 * @entry: pointer to a segment table entry in the guest address space
333 *
334 * Returns the virtual address in the guest address space for the segment
335 */
336static unsigned long __gmap_segment_gaddr(unsigned long *entry)
337{
338 struct page *page;
339 unsigned long offset, mask;
340
341 offset = (unsigned long) entry / sizeof(unsigned long);
342 offset = (offset & (PTRS_PER_PMD - 1)) * PMD_SIZE;
343 mask = ~(PTRS_PER_PMD * sizeof(pmd_t) - 1);
344 page = virt_to_page((void *)((unsigned long) entry & mask));
345 return page->index + offset;
346}
347
348/**
349 * __gmap_unlink_by_vmaddr - unlink a single segment via a host address
350 * @gmap: pointer to the guest address space structure
351 * @vmaddr: address in the host process address space
352 *
353 * Returns 1 if a TLB flush is required
354 */
355static int __gmap_unlink_by_vmaddr(struct gmap *gmap, unsigned long vmaddr)
356{
357 unsigned long *entry;
358 int flush = 0;
359
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100360 BUG_ON(gmap_is_shadow(gmap));
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100361 spin_lock(&gmap->guest_table_lock);
362 entry = radix_tree_delete(&gmap->host_to_guest, vmaddr >> PMD_SHIFT);
363 if (entry) {
Dominik Dingel54397bb2016-04-27 11:43:07 +0200364 flush = (*entry != _SEGMENT_ENTRY_EMPTY);
365 *entry = _SEGMENT_ENTRY_EMPTY;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100366 }
367 spin_unlock(&gmap->guest_table_lock);
368 return flush;
369}
370
371/**
372 * __gmap_unmap_by_gaddr - unmap a single segment via a guest address
373 * @gmap: pointer to the guest address space structure
374 * @gaddr: address in the guest address space
375 *
376 * Returns 1 if a TLB flush is required
377 */
378static int __gmap_unmap_by_gaddr(struct gmap *gmap, unsigned long gaddr)
379{
380 unsigned long vmaddr;
381
382 vmaddr = (unsigned long) radix_tree_delete(&gmap->guest_to_host,
383 gaddr >> PMD_SHIFT);
384 return vmaddr ? __gmap_unlink_by_vmaddr(gmap, vmaddr) : 0;
385}
386
387/**
388 * gmap_unmap_segment - unmap segment from the guest address space
389 * @gmap: pointer to the guest address space structure
390 * @to: address in the guest address space
391 * @len: length of the memory area to unmap
392 *
393 * Returns 0 if the unmap succeeded, -EINVAL if not.
394 */
395int gmap_unmap_segment(struct gmap *gmap, unsigned long to, unsigned long len)
396{
397 unsigned long off;
398 int flush;
399
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100400 BUG_ON(gmap_is_shadow(gmap));
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100401 if ((to | len) & (PMD_SIZE - 1))
402 return -EINVAL;
403 if (len == 0 || to + len < to)
404 return -EINVAL;
405
406 flush = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700407 mmap_write_lock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100408 for (off = 0; off < len; off += PMD_SIZE)
409 flush |= __gmap_unmap_by_gaddr(gmap, to + off);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700410 mmap_write_unlock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100411 if (flush)
412 gmap_flush_tlb(gmap);
413 return 0;
414}
415EXPORT_SYMBOL_GPL(gmap_unmap_segment);
416
417/**
418 * gmap_map_segment - map a segment to the guest address space
419 * @gmap: pointer to the guest address space structure
420 * @from: source address in the parent address space
421 * @to: target address in the guest address space
422 * @len: length of the memory area to map
423 *
424 * Returns 0 if the mmap succeeded, -EINVAL or -ENOMEM if not.
425 */
426int gmap_map_segment(struct gmap *gmap, unsigned long from,
427 unsigned long to, unsigned long len)
428{
429 unsigned long off;
430 int flush;
431
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100432 BUG_ON(gmap_is_shadow(gmap));
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100433 if ((from | to | len) & (PMD_SIZE - 1))
434 return -EINVAL;
435 if (len == 0 || from + len < from || to + len < to ||
Martin Schwidefskyee71d162017-04-20 14:43:51 +0200436 from + len - 1 > TASK_SIZE_MAX || to + len - 1 > gmap->asce_end)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100437 return -EINVAL;
438
439 flush = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700440 mmap_write_lock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100441 for (off = 0; off < len; off += PMD_SIZE) {
442 /* Remove old translation */
443 flush |= __gmap_unmap_by_gaddr(gmap, to + off);
444 /* Store new translation */
445 if (radix_tree_insert(&gmap->guest_to_host,
446 (to + off) >> PMD_SHIFT,
447 (void *) from + off))
448 break;
449 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700450 mmap_write_unlock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100451 if (flush)
452 gmap_flush_tlb(gmap);
453 if (off >= len)
454 return 0;
455 gmap_unmap_segment(gmap, to, len);
456 return -ENOMEM;
457}
458EXPORT_SYMBOL_GPL(gmap_map_segment);
459
460/**
461 * __gmap_translate - translate a guest address to a user space address
462 * @gmap: pointer to guest mapping meta data structure
463 * @gaddr: guest address
464 *
465 * Returns user space address which corresponds to the guest address or
466 * -EFAULT if no such mapping exists.
467 * This function does not establish potentially missing page table entries.
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700468 * The mmap_lock of the mm that belongs to the address space must be held
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100469 * when this function gets called.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100470 *
471 * Note: Can also be called for shadow gmaps.
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100472 */
473unsigned long __gmap_translate(struct gmap *gmap, unsigned long gaddr)
474{
475 unsigned long vmaddr;
476
477 vmaddr = (unsigned long)
478 radix_tree_lookup(&gmap->guest_to_host, gaddr >> PMD_SHIFT);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100479 /* Note: guest_to_host is empty for a shadow gmap */
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100480 return vmaddr ? (vmaddr | (gaddr & ~PMD_MASK)) : -EFAULT;
481}
482EXPORT_SYMBOL_GPL(__gmap_translate);
483
484/**
485 * gmap_translate - translate a guest address to a user space address
486 * @gmap: pointer to guest mapping meta data structure
487 * @gaddr: guest address
488 *
489 * Returns user space address which corresponds to the guest address or
490 * -EFAULT if no such mapping exists.
491 * This function does not establish potentially missing page table entries.
492 */
493unsigned long gmap_translate(struct gmap *gmap, unsigned long gaddr)
494{
495 unsigned long rc;
496
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700497 mmap_read_lock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100498 rc = __gmap_translate(gmap, gaddr);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700499 mmap_read_unlock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100500 return rc;
501}
502EXPORT_SYMBOL_GPL(gmap_translate);
503
504/**
505 * gmap_unlink - disconnect a page table from the gmap shadow tables
Heiko Carstens2e827522021-09-02 19:47:37 +0200506 * @mm: pointer to the parent mm_struct
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100507 * @table: pointer to the host page table
508 * @vmaddr: vm address associated with the host page table
509 */
510void gmap_unlink(struct mm_struct *mm, unsigned long *table,
511 unsigned long vmaddr)
512{
513 struct gmap *gmap;
514 int flush;
515
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +0100516 rcu_read_lock();
517 list_for_each_entry_rcu(gmap, &mm->context.gmap_list, list) {
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100518 flush = __gmap_unlink_by_vmaddr(gmap, vmaddr);
519 if (flush)
520 gmap_flush_tlb(gmap);
521 }
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +0100522 rcu_read_unlock();
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100523}
524
Janosch Frank0959e162018-07-17 13:21:22 +0100525static void gmap_pmdp_xchg(struct gmap *gmap, pmd_t *old, pmd_t new,
526 unsigned long gaddr);
527
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100528/**
Heiko Carstens2e827522021-09-02 19:47:37 +0200529 * __gmap_link - set up shadow page tables to connect a host to a guest address
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100530 * @gmap: pointer to guest mapping meta data structure
531 * @gaddr: guest address
532 * @vmaddr: vm address
533 *
534 * Returns 0 on success, -ENOMEM for out of memory conditions, and -EFAULT
535 * if the vm address is already mapped to a different guest segment.
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700536 * The mmap_lock of the mm that belongs to the address space must be held
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100537 * when this function gets called.
538 */
539int __gmap_link(struct gmap *gmap, unsigned long gaddr, unsigned long vmaddr)
540{
541 struct mm_struct *mm;
542 unsigned long *table;
543 spinlock_t *ptl;
544 pgd_t *pgd;
Martin Schwidefsky1aea9b32017-04-24 18:19:10 +0200545 p4d_t *p4d;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100546 pud_t *pud;
547 pmd_t *pmd;
Janosch Frank0959e162018-07-17 13:21:22 +0100548 u64 unprot;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100549 int rc;
550
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100551 BUG_ON(gmap_is_shadow(gmap));
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100552 /* Create higher level tables in the gmap page table */
553 table = gmap->table;
554 if ((gmap->asce & _ASCE_TYPE_MASK) >= _ASCE_TYPE_REGION1) {
Heiko Carstensf1c11742017-07-05 07:37:27 +0200555 table += (gaddr & _REGION1_INDEX) >> _REGION1_SHIFT;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100556 if ((*table & _REGION_ENTRY_INVALID) &&
557 gmap_alloc_table(gmap, table, _REGION2_ENTRY_EMPTY,
Heiko Carstensf1c11742017-07-05 07:37:27 +0200558 gaddr & _REGION1_MASK))
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100559 return -ENOMEM;
560 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
561 }
562 if ((gmap->asce & _ASCE_TYPE_MASK) >= _ASCE_TYPE_REGION2) {
Heiko Carstensf1c11742017-07-05 07:37:27 +0200563 table += (gaddr & _REGION2_INDEX) >> _REGION2_SHIFT;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100564 if ((*table & _REGION_ENTRY_INVALID) &&
565 gmap_alloc_table(gmap, table, _REGION3_ENTRY_EMPTY,
Heiko Carstensf1c11742017-07-05 07:37:27 +0200566 gaddr & _REGION2_MASK))
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100567 return -ENOMEM;
568 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
569 }
570 if ((gmap->asce & _ASCE_TYPE_MASK) >= _ASCE_TYPE_REGION3) {
Heiko Carstensf1c11742017-07-05 07:37:27 +0200571 table += (gaddr & _REGION3_INDEX) >> _REGION3_SHIFT;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100572 if ((*table & _REGION_ENTRY_INVALID) &&
573 gmap_alloc_table(gmap, table, _SEGMENT_ENTRY_EMPTY,
Heiko Carstensf1c11742017-07-05 07:37:27 +0200574 gaddr & _REGION3_MASK))
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100575 return -ENOMEM;
576 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
577 }
Heiko Carstensf1c11742017-07-05 07:37:27 +0200578 table += (gaddr & _SEGMENT_INDEX) >> _SEGMENT_SHIFT;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100579 /* Walk the parent mm page table */
580 mm = gmap->mm;
581 pgd = pgd_offset(mm, vmaddr);
582 VM_BUG_ON(pgd_none(*pgd));
Martin Schwidefsky1aea9b32017-04-24 18:19:10 +0200583 p4d = p4d_offset(pgd, vmaddr);
584 VM_BUG_ON(p4d_none(*p4d));
585 pud = pud_offset(p4d, vmaddr);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100586 VM_BUG_ON(pud_none(*pud));
Gerald Schaeferd08de8e2016-07-04 14:47:01 +0200587 /* large puds cannot yet be handled */
588 if (pud_large(*pud))
589 return -EFAULT;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100590 pmd = pmd_offset(pud, vmaddr);
591 VM_BUG_ON(pmd_none(*pmd));
Janosch Franka9e00d82018-07-13 11:28:37 +0100592 /* Are we allowed to use huge pages? */
593 if (pmd_large(*pmd) && !gmap->mm->context.allow_gmap_hpage_1m)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100594 return -EFAULT;
595 /* Link gmap segment table entry location to page table. */
Christian Borntraeger0cd2a782020-11-09 13:14:35 +0100596 rc = radix_tree_preload(GFP_KERNEL_ACCOUNT);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100597 if (rc)
598 return rc;
599 ptl = pmd_lock(mm, pmd);
600 spin_lock(&gmap->guest_table_lock);
Dominik Dingel54397bb2016-04-27 11:43:07 +0200601 if (*table == _SEGMENT_ENTRY_EMPTY) {
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100602 rc = radix_tree_insert(&gmap->host_to_guest,
603 vmaddr >> PMD_SHIFT, table);
Janosch Frank58b7e202018-07-13 11:28:20 +0100604 if (!rc) {
605 if (pmd_large(*pmd)) {
Janosch Frank0959e162018-07-17 13:21:22 +0100606 *table = (pmd_val(*pmd) &
607 _SEGMENT_ENTRY_HARDWARE_BITS_LARGE)
608 | _SEGMENT_ENTRY_GMAP_UC;
Janosch Frank58b7e202018-07-13 11:28:20 +0100609 } else
610 *table = pmd_val(*pmd) &
611 _SEGMENT_ENTRY_HARDWARE_BITS;
612 }
Janosch Frank0959e162018-07-17 13:21:22 +0100613 } else if (*table & _SEGMENT_ENTRY_PROTECT &&
614 !(pmd_val(*pmd) & _SEGMENT_ENTRY_PROTECT)) {
615 unprot = (u64)*table;
616 unprot &= ~_SEGMENT_ENTRY_PROTECT;
617 unprot |= _SEGMENT_ENTRY_GMAP_UC;
618 gmap_pmdp_xchg(gmap, (pmd_t *)table, __pmd(unprot), gaddr);
Janosch Frank58b7e202018-07-13 11:28:20 +0100619 }
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100620 spin_unlock(&gmap->guest_table_lock);
621 spin_unlock(ptl);
622 radix_tree_preload_end();
623 return rc;
624}
625
626/**
627 * gmap_fault - resolve a fault on a guest address
628 * @gmap: pointer to guest mapping meta data structure
629 * @gaddr: guest address
630 * @fault_flags: flags to pass down to handle_mm_fault()
631 *
632 * Returns 0 on success, -ENOMEM for out of memory conditions, and -EFAULT
633 * if the vm address is already mapped to a different guest segment.
634 */
635int gmap_fault(struct gmap *gmap, unsigned long gaddr,
636 unsigned int fault_flags)
637{
638 unsigned long vmaddr;
639 int rc;
640 bool unlocked;
641
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700642 mmap_read_lock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100643
644retry:
645 unlocked = false;
646 vmaddr = __gmap_translate(gmap, gaddr);
647 if (IS_ERR_VALUE(vmaddr)) {
648 rc = vmaddr;
649 goto out_up;
650 }
Peter Xu64019a22020-08-11 18:39:01 -0700651 if (fixup_user_fault(gmap->mm, vmaddr, fault_flags,
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100652 &unlocked)) {
653 rc = -EFAULT;
654 goto out_up;
655 }
656 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700657 * In the case that fixup_user_fault unlocked the mmap_lock during
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100658 * faultin redo __gmap_translate to not race with a map/unmap_segment.
659 */
660 if (unlocked)
661 goto retry;
662
663 rc = __gmap_link(gmap, gaddr, vmaddr);
664out_up:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700665 mmap_read_unlock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100666 return rc;
667}
668EXPORT_SYMBOL_GPL(gmap_fault);
669
670/*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700671 * this function is assumed to be called with mmap_lock held
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100672 */
673void __gmap_zap(struct gmap *gmap, unsigned long gaddr)
674{
David Hildenbrand2d8fb8f2021-09-09 18:22:40 +0200675 struct vm_area_struct *vma;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100676 unsigned long vmaddr;
677 spinlock_t *ptl;
678 pte_t *ptep;
679
680 /* Find the vm address for the guest address */
681 vmaddr = (unsigned long) radix_tree_lookup(&gmap->guest_to_host,
682 gaddr >> PMD_SHIFT);
683 if (vmaddr) {
684 vmaddr |= gaddr & ~PMD_MASK;
David Hildenbrand2d8fb8f2021-09-09 18:22:40 +0200685
686 vma = vma_lookup(gmap->mm, vmaddr);
687 if (!vma || is_vm_hugetlb_page(vma))
688 return;
689
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100690 /* Get pointer to the page table entry */
691 ptep = get_locked_pte(gmap->mm, vmaddr, &ptl);
David Hildenbrandb159f942021-09-09 18:22:41 +0200692 if (likely(ptep)) {
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100693 ptep_zap_unused(gmap->mm, vmaddr, ptep, 0);
David Hildenbrandb159f942021-09-09 18:22:41 +0200694 pte_unmap_unlock(ptep, ptl);
695 }
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100696 }
697}
698EXPORT_SYMBOL_GPL(__gmap_zap);
699
700void gmap_discard(struct gmap *gmap, unsigned long from, unsigned long to)
701{
702 unsigned long gaddr, vmaddr, size;
703 struct vm_area_struct *vma;
704
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700705 mmap_read_lock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100706 for (gaddr = from; gaddr < to;
707 gaddr = (gaddr + PMD_SIZE) & PMD_MASK) {
708 /* Find the vm address for the guest address */
709 vmaddr = (unsigned long)
710 radix_tree_lookup(&gmap->guest_to_host,
711 gaddr >> PMD_SHIFT);
712 if (!vmaddr)
713 continue;
714 vmaddr |= gaddr & ~PMD_MASK;
715 /* Find vma in the parent mm */
716 vma = find_vma(gmap->mm, vmaddr);
Janosch Frank1843abd2018-08-16 09:02:31 +0100717 if (!vma)
718 continue;
Dominik Dingel7d735b92018-07-13 11:28:29 +0100719 /*
720 * We do not discard pages that are backed by
721 * hugetlbfs, so we don't have to refault them.
722 */
Janosch Frank1843abd2018-08-16 09:02:31 +0100723 if (is_vm_hugetlb_page(vma))
Dominik Dingel7d735b92018-07-13 11:28:29 +0100724 continue;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100725 size = min(to - gaddr, PMD_SIZE - (gaddr & ~PMD_MASK));
Kirill A. Shutemovecf13852017-02-22 15:46:37 -0800726 zap_page_range(vma, vmaddr, size);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100727 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700728 mmap_read_unlock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100729}
730EXPORT_SYMBOL_GPL(gmap_discard);
731
732static LIST_HEAD(gmap_notifier_list);
733static DEFINE_SPINLOCK(gmap_notifier_lock);
734
735/**
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100736 * gmap_register_pte_notifier - register a pte invalidation callback
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100737 * @nb: pointer to the gmap notifier block
738 */
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100739void gmap_register_pte_notifier(struct gmap_notifier *nb)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100740{
741 spin_lock(&gmap_notifier_lock);
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +0100742 list_add_rcu(&nb->list, &gmap_notifier_list);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100743 spin_unlock(&gmap_notifier_lock);
744}
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100745EXPORT_SYMBOL_GPL(gmap_register_pte_notifier);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100746
747/**
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100748 * gmap_unregister_pte_notifier - remove a pte invalidation callback
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100749 * @nb: pointer to the gmap notifier block
750 */
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100751void gmap_unregister_pte_notifier(struct gmap_notifier *nb)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100752{
753 spin_lock(&gmap_notifier_lock);
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +0100754 list_del_rcu(&nb->list);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100755 spin_unlock(&gmap_notifier_lock);
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +0100756 synchronize_rcu();
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100757}
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100758EXPORT_SYMBOL_GPL(gmap_unregister_pte_notifier);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100759
760/**
Martin Schwidefsky414d3b02016-03-08 11:52:54 +0100761 * gmap_call_notifier - call all registered invalidation callbacks
762 * @gmap: pointer to guest mapping meta data structure
763 * @start: start virtual address in the guest address space
764 * @end: end virtual address in the guest address space
765 */
766static void gmap_call_notifier(struct gmap *gmap, unsigned long start,
767 unsigned long end)
768{
769 struct gmap_notifier *nb;
770
771 list_for_each_entry(nb, &gmap_notifier_list, list)
772 nb->notifier_call(gmap, start, end);
773}
774
775/**
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100776 * gmap_table_walk - walk the gmap page tables
777 * @gmap: pointer to guest mapping meta data structure
778 * @gaddr: virtual address in the guest address space
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100779 * @level: page table level to stop at
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100780 *
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100781 * Returns a table entry pointer for the given guest address and @level
782 * @level=0 : returns a pointer to a page table table entry (or NULL)
783 * @level=1 : returns a pointer to a segment table entry (or NULL)
784 * @level=2 : returns a pointer to a region-3 table entry (or NULL)
785 * @level=3 : returns a pointer to a region-2 table entry (or NULL)
786 * @level=4 : returns a pointer to a region-1 table entry (or NULL)
787 *
788 * Returns NULL if the gmap page tables could not be walked to the
789 * requested level.
790 *
791 * Note: Can also be called for shadow gmaps.
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100792 */
793static inline unsigned long *gmap_table_walk(struct gmap *gmap,
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100794 unsigned long gaddr, int level)
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100795{
David Hildenbranda1d032a2020-04-03 17:30:46 +0200796 const int asce_type = gmap->asce & _ASCE_TYPE_MASK;
David Hildenbrand62cf6662020-04-03 17:30:50 +0200797 unsigned long *table = gmap->table;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100798
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100799 if (gmap_is_shadow(gmap) && gmap->removed)
800 return NULL;
David Hildenbranda1d032a2020-04-03 17:30:46 +0200801
David Hildenbrand62cf6662020-04-03 17:30:50 +0200802 if (WARN_ON_ONCE(level > (asce_type >> 2) + 1))
803 return NULL;
804
David Hildenbranda1d032a2020-04-03 17:30:46 +0200805 if (asce_type != _ASCE_TYPE_REGION1 &&
806 gaddr & (-1UL << (31 + (asce_type >> 2) * 11)))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100807 return NULL;
David Hildenbranda1d032a2020-04-03 17:30:46 +0200808
David Hildenbrand62cf6662020-04-03 17:30:50 +0200809 switch (asce_type) {
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100810 case _ASCE_TYPE_REGION1:
Heiko Carstensf1c11742017-07-05 07:37:27 +0200811 table += (gaddr & _REGION1_INDEX) >> _REGION1_SHIFT;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100812 if (level == 4)
813 break;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100814 if (*table & _REGION_ENTRY_INVALID)
815 return NULL;
816 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
Joe Perches3b684a42020-03-10 21:51:32 -0700817 fallthrough;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100818 case _ASCE_TYPE_REGION2:
Heiko Carstensf1c11742017-07-05 07:37:27 +0200819 table += (gaddr & _REGION2_INDEX) >> _REGION2_SHIFT;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100820 if (level == 3)
821 break;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100822 if (*table & _REGION_ENTRY_INVALID)
823 return NULL;
824 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
Joe Perches3b684a42020-03-10 21:51:32 -0700825 fallthrough;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100826 case _ASCE_TYPE_REGION3:
Heiko Carstensf1c11742017-07-05 07:37:27 +0200827 table += (gaddr & _REGION3_INDEX) >> _REGION3_SHIFT;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100828 if (level == 2)
829 break;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100830 if (*table & _REGION_ENTRY_INVALID)
831 return NULL;
832 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
Joe Perches3b684a42020-03-10 21:51:32 -0700833 fallthrough;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100834 case _ASCE_TYPE_SEGMENT:
Heiko Carstensf1c11742017-07-05 07:37:27 +0200835 table += (gaddr & _SEGMENT_INDEX) >> _SEGMENT_SHIFT;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100836 if (level == 1)
837 break;
838 if (*table & _REGION_ENTRY_INVALID)
839 return NULL;
840 table = (unsigned long *)(*table & _SEGMENT_ENTRY_ORIGIN);
Heiko Carstensf1c11742017-07-05 07:37:27 +0200841 table += (gaddr & _PAGE_INDEX) >> _PAGE_SHIFT;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100842 }
843 return table;
844}
845
846/**
847 * gmap_pte_op_walk - walk the gmap page table, get the page table lock
848 * and return the pte pointer
849 * @gmap: pointer to guest mapping meta data structure
850 * @gaddr: virtual address in the guest address space
851 * @ptl: pointer to the spinlock pointer
852 *
853 * Returns a pointer to the locked pte for a guest address, or NULL
854 */
855static pte_t *gmap_pte_op_walk(struct gmap *gmap, unsigned long gaddr,
856 spinlock_t **ptl)
857{
858 unsigned long *table;
859
David Hildenbrand96965942017-11-10 16:18:05 +0100860 BUG_ON(gmap_is_shadow(gmap));
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100861 /* Walk the gmap page table, lock and get pte pointer */
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100862 table = gmap_table_walk(gmap, gaddr, 1); /* get segment pointer */
David Hildenbrand96965942017-11-10 16:18:05 +0100863 if (!table || *table & _SEGMENT_ENTRY_INVALID)
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100864 return NULL;
865 return pte_alloc_map_lock(gmap->mm, (pmd_t *) table, gaddr, ptl);
866}
867
868/**
869 * gmap_pte_op_fixup - force a page in and connect the gmap page table
870 * @gmap: pointer to guest mapping meta data structure
871 * @gaddr: virtual address in the guest address space
872 * @vmaddr: address in the host process address space
David Hildenbrand01f71912016-06-13 10:49:04 +0200873 * @prot: indicates access rights: PROT_NONE, PROT_READ or PROT_WRITE
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100874 *
875 * Returns 0 if the caller can retry __gmap_translate (might fail again),
876 * -ENOMEM if out of memory and -EFAULT if anything goes wrong while fixing
877 * up or connecting the gmap page table.
878 */
879static int gmap_pte_op_fixup(struct gmap *gmap, unsigned long gaddr,
David Hildenbrand01f71912016-06-13 10:49:04 +0200880 unsigned long vmaddr, int prot)
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100881{
882 struct mm_struct *mm = gmap->mm;
David Hildenbrand01f71912016-06-13 10:49:04 +0200883 unsigned int fault_flags;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100884 bool unlocked = false;
885
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100886 BUG_ON(gmap_is_shadow(gmap));
David Hildenbrand01f71912016-06-13 10:49:04 +0200887 fault_flags = (prot == PROT_WRITE) ? FAULT_FLAG_WRITE : 0;
Peter Xu64019a22020-08-11 18:39:01 -0700888 if (fixup_user_fault(mm, vmaddr, fault_flags, &unlocked))
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100889 return -EFAULT;
890 if (unlocked)
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700891 /* lost mmap_lock, caller has to retry __gmap_translate */
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100892 return 0;
893 /* Connect the page tables */
894 return __gmap_link(gmap, gaddr, vmaddr);
895}
896
897/**
898 * gmap_pte_op_end - release the page table lock
899 * @ptl: pointer to the spinlock pointer
900 */
901static void gmap_pte_op_end(spinlock_t *ptl)
902{
Janosch Frank5a045bb2018-07-13 11:28:16 +0100903 if (ptl)
904 spin_unlock(ptl);
905}
906
907/**
908 * gmap_pmd_op_walk - walk the gmap tables, get the guest table lock
909 * and return the pmd pointer
910 * @gmap: pointer to guest mapping meta data structure
911 * @gaddr: virtual address in the guest address space
912 *
913 * Returns a pointer to the pmd for a guest address, or NULL
914 */
915static inline pmd_t *gmap_pmd_op_walk(struct gmap *gmap, unsigned long gaddr)
916{
917 pmd_t *pmdp;
918
919 BUG_ON(gmap_is_shadow(gmap));
Janosch Frank5a045bb2018-07-13 11:28:16 +0100920 pmdp = (pmd_t *) gmap_table_walk(gmap, gaddr, 1);
David Hildenbrandaf4bf6c2018-08-06 17:54:07 +0200921 if (!pmdp)
922 return NULL;
Janosch Frank5a045bb2018-07-13 11:28:16 +0100923
David Hildenbrandaf4bf6c2018-08-06 17:54:07 +0200924 /* without huge pages, there is no need to take the table lock */
925 if (!gmap->mm->context.allow_gmap_hpage_1m)
926 return pmd_none(*pmdp) ? NULL : pmdp;
927
928 spin_lock(&gmap->guest_table_lock);
929 if (pmd_none(*pmdp)) {
Janosch Frank5a045bb2018-07-13 11:28:16 +0100930 spin_unlock(&gmap->guest_table_lock);
931 return NULL;
932 }
933
934 /* 4k page table entries are locked via the pte (pte_alloc_map_lock). */
935 if (!pmd_large(*pmdp))
936 spin_unlock(&gmap->guest_table_lock);
937 return pmdp;
938}
939
940/**
941 * gmap_pmd_op_end - release the guest_table_lock if needed
942 * @gmap: pointer to the guest mapping meta data structure
943 * @pmdp: pointer to the pmd
944 */
945static inline void gmap_pmd_op_end(struct gmap *gmap, pmd_t *pmdp)
946{
947 if (pmd_large(*pmdp))
948 spin_unlock(&gmap->guest_table_lock);
949}
950
951/*
Janosch Frank7c4b13a2018-07-13 11:28:21 +0100952 * gmap_protect_pmd - remove access rights to memory and set pmd notification bits
953 * @pmdp: pointer to the pmd to be protected
954 * @prot: indicates access rights: PROT_NONE, PROT_READ or PROT_WRITE
955 * @bits: notification bits to set
956 *
957 * Returns:
958 * 0 if successfully protected
959 * -EAGAIN if a fixup is needed
960 * -EINVAL if unsupported notifier bits have been specified
961 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700962 * Expected to be called with sg->mm->mmap_lock in read and
Janosch Frank7c4b13a2018-07-13 11:28:21 +0100963 * guest_table_lock held.
964 */
965static int gmap_protect_pmd(struct gmap *gmap, unsigned long gaddr,
966 pmd_t *pmdp, int prot, unsigned long bits)
967{
968 int pmd_i = pmd_val(*pmdp) & _SEGMENT_ENTRY_INVALID;
969 int pmd_p = pmd_val(*pmdp) & _SEGMENT_ENTRY_PROTECT;
Janosch Frank0959e162018-07-17 13:21:22 +0100970 pmd_t new = *pmdp;
Janosch Frank7c4b13a2018-07-13 11:28:21 +0100971
972 /* Fixup needed */
973 if ((pmd_i && (prot != PROT_NONE)) || (pmd_p && (prot == PROT_WRITE)))
974 return -EAGAIN;
975
Janosch Frank0959e162018-07-17 13:21:22 +0100976 if (prot == PROT_NONE && !pmd_i) {
977 pmd_val(new) |= _SEGMENT_ENTRY_INVALID;
978 gmap_pmdp_xchg(gmap, pmdp, new, gaddr);
979 }
980
981 if (prot == PROT_READ && !pmd_p) {
982 pmd_val(new) &= ~_SEGMENT_ENTRY_INVALID;
983 pmd_val(new) |= _SEGMENT_ENTRY_PROTECT;
984 gmap_pmdp_xchg(gmap, pmdp, new, gaddr);
985 }
986
Janosch Frank7c4b13a2018-07-13 11:28:21 +0100987 if (bits & GMAP_NOTIFY_MPROT)
988 pmd_val(*pmdp) |= _SEGMENT_ENTRY_GMAP_IN;
989
990 /* Shadow GMAP protection needs split PMDs */
991 if (bits & GMAP_NOTIFY_SHADOW)
992 return -EINVAL;
993
994 return 0;
995}
996
997/*
Janosch Frank5a045bb2018-07-13 11:28:16 +0100998 * gmap_protect_pte - remove access rights to memory and set pgste bits
999 * @gmap: pointer to guest mapping meta data structure
1000 * @gaddr: virtual address in the guest address space
1001 * @pmdp: pointer to the pmd associated with the pte
1002 * @prot: indicates access rights: PROT_NONE, PROT_READ or PROT_WRITE
Janosch Frank2c46e972018-07-13 11:28:18 +01001003 * @bits: notification bits to set
Janosch Frank5a045bb2018-07-13 11:28:16 +01001004 *
1005 * Returns 0 if successfully protected, -ENOMEM if out of memory and
1006 * -EAGAIN if a fixup is needed.
1007 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001008 * Expected to be called with sg->mm->mmap_lock in read
Janosch Frank5a045bb2018-07-13 11:28:16 +01001009 */
1010static int gmap_protect_pte(struct gmap *gmap, unsigned long gaddr,
1011 pmd_t *pmdp, int prot, unsigned long bits)
1012{
1013 int rc;
1014 pte_t *ptep;
1015 spinlock_t *ptl = NULL;
Janosch Frank2c46e972018-07-13 11:28:18 +01001016 unsigned long pbits = 0;
Janosch Frank5a045bb2018-07-13 11:28:16 +01001017
1018 if (pmd_val(*pmdp) & _SEGMENT_ENTRY_INVALID)
1019 return -EAGAIN;
1020
1021 ptep = pte_alloc_map_lock(gmap->mm, pmdp, gaddr, &ptl);
1022 if (!ptep)
1023 return -ENOMEM;
1024
Janosch Frank2c46e972018-07-13 11:28:18 +01001025 pbits |= (bits & GMAP_NOTIFY_MPROT) ? PGSTE_IN_BIT : 0;
1026 pbits |= (bits & GMAP_NOTIFY_SHADOW) ? PGSTE_VSIE_BIT : 0;
Janosch Frank5a045bb2018-07-13 11:28:16 +01001027 /* Protect and unlock. */
Janosch Frank2c46e972018-07-13 11:28:18 +01001028 rc = ptep_force_prot(gmap->mm, gaddr, ptep, prot, pbits);
Janosch Frank5a045bb2018-07-13 11:28:16 +01001029 gmap_pte_op_end(ptl);
1030 return rc;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01001031}
1032
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001033/*
1034 * gmap_protect_range - remove access rights to memory and set pgste bits
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001035 * @gmap: pointer to guest mapping meta data structure
1036 * @gaddr: virtual address in the guest address space
1037 * @len: size of area
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001038 * @prot: indicates access rights: PROT_NONE, PROT_READ or PROT_WRITE
1039 * @bits: pgste notification bits to set
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001040 *
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001041 * Returns 0 if successfully protected, -ENOMEM if out of memory and
1042 * -EFAULT if gaddr is invalid (or mapping for shadows is missing).
1043 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001044 * Called with sg->mm->mmap_lock in read.
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001045 */
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001046static int gmap_protect_range(struct gmap *gmap, unsigned long gaddr,
1047 unsigned long len, int prot, unsigned long bits)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001048{
Janosch Frank7c4b13a2018-07-13 11:28:21 +01001049 unsigned long vmaddr, dist;
Janosch Frank5a045bb2018-07-13 11:28:16 +01001050 pmd_t *pmdp;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001051 int rc;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001052
David Hildenbrand96965942017-11-10 16:18:05 +01001053 BUG_ON(gmap_is_shadow(gmap));
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001054 while (len) {
1055 rc = -EAGAIN;
Janosch Frank5a045bb2018-07-13 11:28:16 +01001056 pmdp = gmap_pmd_op_walk(gmap, gaddr);
1057 if (pmdp) {
Janosch Frank7c4b13a2018-07-13 11:28:21 +01001058 if (!pmd_large(*pmdp)) {
1059 rc = gmap_protect_pte(gmap, gaddr, pmdp, prot,
1060 bits);
1061 if (!rc) {
1062 len -= PAGE_SIZE;
1063 gaddr += PAGE_SIZE;
1064 }
1065 } else {
1066 rc = gmap_protect_pmd(gmap, gaddr, pmdp, prot,
1067 bits);
1068 if (!rc) {
1069 dist = HPAGE_SIZE - (gaddr & ~HPAGE_MASK);
1070 len = len < dist ? 0 : len - dist;
1071 gaddr = (gaddr & HPAGE_MASK) + HPAGE_SIZE;
1072 }
Janosch Frank5a045bb2018-07-13 11:28:16 +01001073 }
1074 gmap_pmd_op_end(gmap, pmdp);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001075 }
1076 if (rc) {
Janosch Frank7c4b13a2018-07-13 11:28:21 +01001077 if (rc == -EINVAL)
1078 return rc;
1079
1080 /* -EAGAIN, fixup of userspace mm and gmap */
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001081 vmaddr = __gmap_translate(gmap, gaddr);
1082 if (IS_ERR_VALUE(vmaddr))
1083 return vmaddr;
David Hildenbrand01f71912016-06-13 10:49:04 +02001084 rc = gmap_pte_op_fixup(gmap, gaddr, vmaddr, prot);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001085 if (rc)
1086 return rc;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001087 }
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001088 }
1089 return 0;
1090}
1091
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01001092/**
1093 * gmap_mprotect_notify - change access rights for a range of ptes and
1094 * call the notifier if any pte changes again
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001095 * @gmap: pointer to guest mapping meta data structure
1096 * @gaddr: virtual address in the guest address space
1097 * @len: size of area
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01001098 * @prot: indicates access rights: PROT_NONE, PROT_READ or PROT_WRITE
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001099 *
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01001100 * Returns 0 if for each page in the given range a gmap mapping exists,
1101 * the new access rights could be set and the notifier could be armed.
1102 * If the gmap mapping is missing for one or more pages -EFAULT is
1103 * returned. If no memory could be allocated -ENOMEM is returned.
1104 * This function establishes missing page table entries.
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001105 */
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01001106int gmap_mprotect_notify(struct gmap *gmap, unsigned long gaddr,
1107 unsigned long len, int prot)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001108{
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001109 int rc;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001110
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001111 if ((gaddr & ~PAGE_MASK) || (len & ~PAGE_MASK) || gmap_is_shadow(gmap))
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001112 return -EINVAL;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01001113 if (!MACHINE_HAS_ESOP && prot == PROT_READ)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001114 return -EINVAL;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001115 mmap_read_lock(gmap->mm);
Janosch Frank2c46e972018-07-13 11:28:18 +01001116 rc = gmap_protect_range(gmap, gaddr, len, prot, GMAP_NOTIFY_MPROT);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001117 mmap_read_unlock(gmap->mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001118 return rc;
1119}
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01001120EXPORT_SYMBOL_GPL(gmap_mprotect_notify);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001121
1122/**
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001123 * gmap_read_table - get an unsigned long value from a guest page table using
1124 * absolute addressing, without marking the page referenced.
1125 * @gmap: pointer to guest mapping meta data structure
1126 * @gaddr: virtual address in the guest address space
1127 * @val: pointer to the unsigned long value to return
1128 *
1129 * Returns 0 if the value was read, -ENOMEM if out of memory and -EFAULT
David Hildenbrand96965942017-11-10 16:18:05 +01001130 * if reading using the virtual address failed. -EINVAL if called on a gmap
1131 * shadow.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001132 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001133 * Called with gmap->mm->mmap_lock in read.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001134 */
1135int gmap_read_table(struct gmap *gmap, unsigned long gaddr, unsigned long *val)
1136{
1137 unsigned long address, vmaddr;
1138 spinlock_t *ptl;
1139 pte_t *ptep, pte;
1140 int rc;
1141
David Hildenbrand96965942017-11-10 16:18:05 +01001142 if (gmap_is_shadow(gmap))
1143 return -EINVAL;
1144
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001145 while (1) {
1146 rc = -EAGAIN;
1147 ptep = gmap_pte_op_walk(gmap, gaddr, &ptl);
1148 if (ptep) {
1149 pte = *ptep;
1150 if (pte_present(pte) && (pte_val(pte) & _PAGE_READ)) {
1151 address = pte_val(pte) & PAGE_MASK;
1152 address += gaddr & ~PAGE_MASK;
1153 *val = *(unsigned long *) address;
1154 pte_val(*ptep) |= _PAGE_YOUNG;
1155 /* Do *NOT* clear the _PAGE_INVALID bit! */
1156 rc = 0;
1157 }
1158 gmap_pte_op_end(ptl);
1159 }
1160 if (!rc)
1161 break;
1162 vmaddr = __gmap_translate(gmap, gaddr);
1163 if (IS_ERR_VALUE(vmaddr)) {
1164 rc = vmaddr;
1165 break;
1166 }
David Hildenbrand01f71912016-06-13 10:49:04 +02001167 rc = gmap_pte_op_fixup(gmap, gaddr, vmaddr, PROT_READ);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001168 if (rc)
1169 break;
1170 }
1171 return rc;
1172}
1173EXPORT_SYMBOL_GPL(gmap_read_table);
1174
1175/**
1176 * gmap_insert_rmap - add a rmap to the host_to_rmap radix tree
1177 * @sg: pointer to the shadow guest address space structure
1178 * @vmaddr: vm address associated with the rmap
1179 * @rmap: pointer to the rmap structure
1180 *
1181 * Called with the sg->guest_table_lock
1182 */
1183static inline void gmap_insert_rmap(struct gmap *sg, unsigned long vmaddr,
1184 struct gmap_rmap *rmap)
1185{
Heiko Carstensd12a3d62017-05-09 13:44:43 +02001186 void __rcu **slot;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001187
1188 BUG_ON(!gmap_is_shadow(sg));
1189 slot = radix_tree_lookup_slot(&sg->host_to_rmap, vmaddr >> PAGE_SHIFT);
1190 if (slot) {
1191 rmap->next = radix_tree_deref_slot_protected(slot,
1192 &sg->guest_table_lock);
Johannes Weiner6d75f362016-12-12 16:43:43 -08001193 radix_tree_replace_slot(&sg->host_to_rmap, slot, rmap);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001194 } else {
1195 rmap->next = NULL;
1196 radix_tree_insert(&sg->host_to_rmap, vmaddr >> PAGE_SHIFT,
1197 rmap);
1198 }
1199}
1200
1201/**
David Hildenbrand5c528db2018-01-23 22:26:18 +01001202 * gmap_protect_rmap - restrict access rights to memory (RO) and create an rmap
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001203 * @sg: pointer to the shadow guest address space structure
1204 * @raddr: rmap address in the shadow gmap
1205 * @paddr: address in the parent guest address space
1206 * @len: length of the memory area to protect
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001207 *
1208 * Returns 0 if successfully protected and the rmap was created, -ENOMEM
1209 * if out of memory and -EFAULT if paddr is invalid.
1210 */
1211static int gmap_protect_rmap(struct gmap *sg, unsigned long raddr,
David Hildenbrand5c528db2018-01-23 22:26:18 +01001212 unsigned long paddr, unsigned long len)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001213{
1214 struct gmap *parent;
1215 struct gmap_rmap *rmap;
1216 unsigned long vmaddr;
1217 spinlock_t *ptl;
1218 pte_t *ptep;
1219 int rc;
1220
1221 BUG_ON(!gmap_is_shadow(sg));
1222 parent = sg->parent;
1223 while (len) {
1224 vmaddr = __gmap_translate(parent, paddr);
1225 if (IS_ERR_VALUE(vmaddr))
1226 return vmaddr;
Christian Borntraeger0cd2a782020-11-09 13:14:35 +01001227 rmap = kzalloc(sizeof(*rmap), GFP_KERNEL_ACCOUNT);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001228 if (!rmap)
1229 return -ENOMEM;
1230 rmap->raddr = raddr;
Christian Borntraeger0cd2a782020-11-09 13:14:35 +01001231 rc = radix_tree_preload(GFP_KERNEL_ACCOUNT);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001232 if (rc) {
1233 kfree(rmap);
1234 return rc;
1235 }
1236 rc = -EAGAIN;
1237 ptep = gmap_pte_op_walk(parent, paddr, &ptl);
1238 if (ptep) {
1239 spin_lock(&sg->guest_table_lock);
David Hildenbrand5c528db2018-01-23 22:26:18 +01001240 rc = ptep_force_prot(parent->mm, paddr, ptep, PROT_READ,
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001241 PGSTE_VSIE_BIT);
1242 if (!rc)
1243 gmap_insert_rmap(sg, vmaddr, rmap);
1244 spin_unlock(&sg->guest_table_lock);
1245 gmap_pte_op_end(ptl);
1246 }
1247 radix_tree_preload_end();
1248 if (rc) {
1249 kfree(rmap);
David Hildenbrand5c528db2018-01-23 22:26:18 +01001250 rc = gmap_pte_op_fixup(parent, paddr, vmaddr, PROT_READ);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001251 if (rc)
1252 return rc;
1253 continue;
1254 }
1255 paddr += PAGE_SIZE;
1256 len -= PAGE_SIZE;
1257 }
1258 return 0;
1259}
1260
1261#define _SHADOW_RMAP_MASK 0x7
1262#define _SHADOW_RMAP_REGION1 0x5
1263#define _SHADOW_RMAP_REGION2 0x4
1264#define _SHADOW_RMAP_REGION3 0x3
1265#define _SHADOW_RMAP_SEGMENT 0x2
1266#define _SHADOW_RMAP_PGTABLE 0x1
1267
1268/**
1269 * gmap_idte_one - invalidate a single region or segment table entry
1270 * @asce: region or segment table *origin* + table-type bits
1271 * @vaddr: virtual address to identify the table entry to flush
1272 *
1273 * The invalid bit of a single region or segment table entry is set
1274 * and the associated TLB entries depending on the entry are flushed.
1275 * The table-type of the @asce identifies the portion of the @vaddr
1276 * that is used as the invalidation index.
1277 */
1278static inline void gmap_idte_one(unsigned long asce, unsigned long vaddr)
1279{
1280 asm volatile(
1281 " .insn rrf,0xb98e0000,%0,%1,0,0"
1282 : : "a" (asce), "a" (vaddr) : "cc", "memory");
1283}
1284
1285/**
1286 * gmap_unshadow_page - remove a page from a shadow page table
1287 * @sg: pointer to the shadow guest address space structure
1288 * @raddr: rmap address in the shadow guest address space
1289 *
1290 * Called with the sg->guest_table_lock
1291 */
1292static void gmap_unshadow_page(struct gmap *sg, unsigned long raddr)
1293{
1294 unsigned long *table;
1295
1296 BUG_ON(!gmap_is_shadow(sg));
1297 table = gmap_table_walk(sg, raddr, 0); /* get page table pointer */
1298 if (!table || *table & _PAGE_INVALID)
1299 return;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001300 gmap_call_notifier(sg, raddr, raddr + _PAGE_SIZE - 1);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001301 ptep_unshadow_pte(sg->mm, raddr, (pte_t *) table);
1302}
1303
1304/**
1305 * __gmap_unshadow_pgt - remove all entries from a shadow page table
1306 * @sg: pointer to the shadow guest address space structure
1307 * @raddr: rmap address in the shadow guest address space
1308 * @pgt: pointer to the start of a shadow page table
1309 *
1310 * Called with the sg->guest_table_lock
1311 */
1312static void __gmap_unshadow_pgt(struct gmap *sg, unsigned long raddr,
1313 unsigned long *pgt)
1314{
1315 int i;
1316
1317 BUG_ON(!gmap_is_shadow(sg));
Heiko Carstensf1c11742017-07-05 07:37:27 +02001318 for (i = 0; i < _PAGE_ENTRIES; i++, raddr += _PAGE_SIZE)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001319 pgt[i] = _PAGE_INVALID;
1320}
1321
1322/**
1323 * gmap_unshadow_pgt - remove a shadow page table from a segment entry
1324 * @sg: pointer to the shadow guest address space structure
1325 * @raddr: address in the shadow guest address space
1326 *
1327 * Called with the sg->guest_table_lock
1328 */
1329static void gmap_unshadow_pgt(struct gmap *sg, unsigned long raddr)
1330{
1331 unsigned long sto, *ste, *pgt;
1332 struct page *page;
1333
1334 BUG_ON(!gmap_is_shadow(sg));
1335 ste = gmap_table_walk(sg, raddr, 1); /* get segment pointer */
David Hildenbrand998f6372016-03-08 12:23:38 +01001336 if (!ste || !(*ste & _SEGMENT_ENTRY_ORIGIN))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001337 return;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001338 gmap_call_notifier(sg, raddr, raddr + _SEGMENT_SIZE - 1);
1339 sto = (unsigned long) (ste - ((raddr & _SEGMENT_INDEX) >> _SEGMENT_SHIFT));
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001340 gmap_idte_one(sto | _ASCE_TYPE_SEGMENT, raddr);
1341 pgt = (unsigned long *)(*ste & _SEGMENT_ENTRY_ORIGIN);
1342 *ste = _SEGMENT_ENTRY_EMPTY;
1343 __gmap_unshadow_pgt(sg, raddr, pgt);
1344 /* Free page table */
1345 page = pfn_to_page(__pa(pgt) >> PAGE_SHIFT);
1346 list_del(&page->lru);
1347 page_table_free_pgste(page);
1348}
1349
1350/**
1351 * __gmap_unshadow_sgt - remove all entries from a shadow segment table
1352 * @sg: pointer to the shadow guest address space structure
1353 * @raddr: rmap address in the shadow guest address space
1354 * @sgt: pointer to the start of a shadow segment table
1355 *
1356 * Called with the sg->guest_table_lock
1357 */
1358static void __gmap_unshadow_sgt(struct gmap *sg, unsigned long raddr,
1359 unsigned long *sgt)
1360{
Heiko Carstens2be1da82017-11-14 14:50:08 +01001361 unsigned long *pgt;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001362 struct page *page;
1363 int i;
1364
1365 BUG_ON(!gmap_is_shadow(sg));
Heiko Carstensf1c11742017-07-05 07:37:27 +02001366 for (i = 0; i < _CRST_ENTRIES; i++, raddr += _SEGMENT_SIZE) {
David Hildenbrand998f6372016-03-08 12:23:38 +01001367 if (!(sgt[i] & _SEGMENT_ENTRY_ORIGIN))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001368 continue;
1369 pgt = (unsigned long *)(sgt[i] & _REGION_ENTRY_ORIGIN);
1370 sgt[i] = _SEGMENT_ENTRY_EMPTY;
1371 __gmap_unshadow_pgt(sg, raddr, pgt);
1372 /* Free page table */
1373 page = pfn_to_page(__pa(pgt) >> PAGE_SHIFT);
1374 list_del(&page->lru);
1375 page_table_free_pgste(page);
1376 }
1377}
1378
1379/**
1380 * gmap_unshadow_sgt - remove a shadow segment table from a region-3 entry
1381 * @sg: pointer to the shadow guest address space structure
1382 * @raddr: rmap address in the shadow guest address space
1383 *
1384 * Called with the shadow->guest_table_lock
1385 */
1386static void gmap_unshadow_sgt(struct gmap *sg, unsigned long raddr)
1387{
1388 unsigned long r3o, *r3e, *sgt;
1389 struct page *page;
1390
1391 BUG_ON(!gmap_is_shadow(sg));
1392 r3e = gmap_table_walk(sg, raddr, 2); /* get region-3 pointer */
David Hildenbrand998f6372016-03-08 12:23:38 +01001393 if (!r3e || !(*r3e & _REGION_ENTRY_ORIGIN))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001394 return;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001395 gmap_call_notifier(sg, raddr, raddr + _REGION3_SIZE - 1);
1396 r3o = (unsigned long) (r3e - ((raddr & _REGION3_INDEX) >> _REGION3_SHIFT));
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001397 gmap_idte_one(r3o | _ASCE_TYPE_REGION3, raddr);
1398 sgt = (unsigned long *)(*r3e & _REGION_ENTRY_ORIGIN);
1399 *r3e = _REGION3_ENTRY_EMPTY;
1400 __gmap_unshadow_sgt(sg, raddr, sgt);
1401 /* Free segment table */
1402 page = pfn_to_page(__pa(sgt) >> PAGE_SHIFT);
1403 list_del(&page->lru);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001404 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001405}
1406
1407/**
1408 * __gmap_unshadow_r3t - remove all entries from a shadow region-3 table
1409 * @sg: pointer to the shadow guest address space structure
1410 * @raddr: address in the shadow guest address space
1411 * @r3t: pointer to the start of a shadow region-3 table
1412 *
1413 * Called with the sg->guest_table_lock
1414 */
1415static void __gmap_unshadow_r3t(struct gmap *sg, unsigned long raddr,
1416 unsigned long *r3t)
1417{
Heiko Carstens2be1da82017-11-14 14:50:08 +01001418 unsigned long *sgt;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001419 struct page *page;
1420 int i;
1421
1422 BUG_ON(!gmap_is_shadow(sg));
Heiko Carstensf1c11742017-07-05 07:37:27 +02001423 for (i = 0; i < _CRST_ENTRIES; i++, raddr += _REGION3_SIZE) {
David Hildenbrand998f6372016-03-08 12:23:38 +01001424 if (!(r3t[i] & _REGION_ENTRY_ORIGIN))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001425 continue;
1426 sgt = (unsigned long *)(r3t[i] & _REGION_ENTRY_ORIGIN);
1427 r3t[i] = _REGION3_ENTRY_EMPTY;
1428 __gmap_unshadow_sgt(sg, raddr, sgt);
1429 /* Free segment table */
1430 page = pfn_to_page(__pa(sgt) >> PAGE_SHIFT);
1431 list_del(&page->lru);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001432 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001433 }
1434}
1435
1436/**
1437 * gmap_unshadow_r3t - remove a shadow region-3 table from a region-2 entry
1438 * @sg: pointer to the shadow guest address space structure
1439 * @raddr: rmap address in the shadow guest address space
1440 *
1441 * Called with the sg->guest_table_lock
1442 */
1443static void gmap_unshadow_r3t(struct gmap *sg, unsigned long raddr)
1444{
1445 unsigned long r2o, *r2e, *r3t;
1446 struct page *page;
1447
1448 BUG_ON(!gmap_is_shadow(sg));
1449 r2e = gmap_table_walk(sg, raddr, 3); /* get region-2 pointer */
David Hildenbrand998f6372016-03-08 12:23:38 +01001450 if (!r2e || !(*r2e & _REGION_ENTRY_ORIGIN))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001451 return;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001452 gmap_call_notifier(sg, raddr, raddr + _REGION2_SIZE - 1);
1453 r2o = (unsigned long) (r2e - ((raddr & _REGION2_INDEX) >> _REGION2_SHIFT));
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001454 gmap_idte_one(r2o | _ASCE_TYPE_REGION2, raddr);
1455 r3t = (unsigned long *)(*r2e & _REGION_ENTRY_ORIGIN);
1456 *r2e = _REGION2_ENTRY_EMPTY;
1457 __gmap_unshadow_r3t(sg, raddr, r3t);
1458 /* Free region 3 table */
1459 page = pfn_to_page(__pa(r3t) >> PAGE_SHIFT);
1460 list_del(&page->lru);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001461 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001462}
1463
1464/**
1465 * __gmap_unshadow_r2t - remove all entries from a shadow region-2 table
1466 * @sg: pointer to the shadow guest address space structure
1467 * @raddr: rmap address in the shadow guest address space
1468 * @r2t: pointer to the start of a shadow region-2 table
1469 *
1470 * Called with the sg->guest_table_lock
1471 */
1472static void __gmap_unshadow_r2t(struct gmap *sg, unsigned long raddr,
1473 unsigned long *r2t)
1474{
Heiko Carstens2be1da82017-11-14 14:50:08 +01001475 unsigned long *r3t;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001476 struct page *page;
1477 int i;
1478
1479 BUG_ON(!gmap_is_shadow(sg));
Heiko Carstensf1c11742017-07-05 07:37:27 +02001480 for (i = 0; i < _CRST_ENTRIES; i++, raddr += _REGION2_SIZE) {
David Hildenbrand998f6372016-03-08 12:23:38 +01001481 if (!(r2t[i] & _REGION_ENTRY_ORIGIN))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001482 continue;
1483 r3t = (unsigned long *)(r2t[i] & _REGION_ENTRY_ORIGIN);
1484 r2t[i] = _REGION2_ENTRY_EMPTY;
1485 __gmap_unshadow_r3t(sg, raddr, r3t);
1486 /* Free region 3 table */
1487 page = pfn_to_page(__pa(r3t) >> PAGE_SHIFT);
1488 list_del(&page->lru);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001489 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001490 }
1491}
1492
1493/**
1494 * gmap_unshadow_r2t - remove a shadow region-2 table from a region-1 entry
1495 * @sg: pointer to the shadow guest address space structure
1496 * @raddr: rmap address in the shadow guest address space
1497 *
1498 * Called with the sg->guest_table_lock
1499 */
1500static void gmap_unshadow_r2t(struct gmap *sg, unsigned long raddr)
1501{
1502 unsigned long r1o, *r1e, *r2t;
1503 struct page *page;
1504
1505 BUG_ON(!gmap_is_shadow(sg));
1506 r1e = gmap_table_walk(sg, raddr, 4); /* get region-1 pointer */
David Hildenbrand998f6372016-03-08 12:23:38 +01001507 if (!r1e || !(*r1e & _REGION_ENTRY_ORIGIN))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001508 return;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001509 gmap_call_notifier(sg, raddr, raddr + _REGION1_SIZE - 1);
1510 r1o = (unsigned long) (r1e - ((raddr & _REGION1_INDEX) >> _REGION1_SHIFT));
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001511 gmap_idte_one(r1o | _ASCE_TYPE_REGION1, raddr);
1512 r2t = (unsigned long *)(*r1e & _REGION_ENTRY_ORIGIN);
1513 *r1e = _REGION1_ENTRY_EMPTY;
1514 __gmap_unshadow_r2t(sg, raddr, r2t);
1515 /* Free region 2 table */
1516 page = pfn_to_page(__pa(r2t) >> PAGE_SHIFT);
1517 list_del(&page->lru);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001518 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001519}
1520
1521/**
1522 * __gmap_unshadow_r1t - remove all entries from a shadow region-1 table
1523 * @sg: pointer to the shadow guest address space structure
1524 * @raddr: rmap address in the shadow guest address space
1525 * @r1t: pointer to the start of a shadow region-1 table
1526 *
1527 * Called with the shadow->guest_table_lock
1528 */
1529static void __gmap_unshadow_r1t(struct gmap *sg, unsigned long raddr,
1530 unsigned long *r1t)
1531{
1532 unsigned long asce, *r2t;
1533 struct page *page;
1534 int i;
1535
1536 BUG_ON(!gmap_is_shadow(sg));
1537 asce = (unsigned long) r1t | _ASCE_TYPE_REGION1;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001538 for (i = 0; i < _CRST_ENTRIES; i++, raddr += _REGION1_SIZE) {
David Hildenbrand998f6372016-03-08 12:23:38 +01001539 if (!(r1t[i] & _REGION_ENTRY_ORIGIN))
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001540 continue;
1541 r2t = (unsigned long *)(r1t[i] & _REGION_ENTRY_ORIGIN);
1542 __gmap_unshadow_r2t(sg, raddr, r2t);
1543 /* Clear entry and flush translation r1t -> r2t */
1544 gmap_idte_one(asce, raddr);
1545 r1t[i] = _REGION1_ENTRY_EMPTY;
1546 /* Free region 2 table */
1547 page = pfn_to_page(__pa(r2t) >> PAGE_SHIFT);
1548 list_del(&page->lru);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001549 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001550 }
1551}
1552
1553/**
1554 * gmap_unshadow - remove a shadow page table completely
1555 * @sg: pointer to the shadow guest address space structure
1556 *
1557 * Called with sg->guest_table_lock
1558 */
1559static void gmap_unshadow(struct gmap *sg)
1560{
1561 unsigned long *table;
1562
1563 BUG_ON(!gmap_is_shadow(sg));
1564 if (sg->removed)
1565 return;
1566 sg->removed = 1;
1567 gmap_call_notifier(sg, 0, -1UL);
David Hildenbrandeea36782016-04-15 12:45:45 +02001568 gmap_flush_tlb(sg);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001569 table = (unsigned long *)(sg->asce & _ASCE_ORIGIN);
1570 switch (sg->asce & _ASCE_TYPE_MASK) {
1571 case _ASCE_TYPE_REGION1:
1572 __gmap_unshadow_r1t(sg, 0, table);
1573 break;
1574 case _ASCE_TYPE_REGION2:
1575 __gmap_unshadow_r2t(sg, 0, table);
1576 break;
1577 case _ASCE_TYPE_REGION3:
1578 __gmap_unshadow_r3t(sg, 0, table);
1579 break;
1580 case _ASCE_TYPE_SEGMENT:
1581 __gmap_unshadow_sgt(sg, 0, table);
1582 break;
1583 }
1584}
1585
1586/**
1587 * gmap_find_shadow - find a specific asce in the list of shadow tables
1588 * @parent: pointer to the parent gmap
1589 * @asce: ASCE for which the shadow table is created
David Hildenbrand5b062bd2016-03-08 12:17:40 +01001590 * @edat_level: edat level to be used for the shadow translation
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001591 *
1592 * Returns the pointer to a gmap if a shadow table with the given asce is
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001593 * already available, ERR_PTR(-EAGAIN) if another one is just being created,
1594 * otherwise NULL
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001595 */
David Hildenbrand5b062bd2016-03-08 12:17:40 +01001596static struct gmap *gmap_find_shadow(struct gmap *parent, unsigned long asce,
1597 int edat_level)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001598{
1599 struct gmap *sg;
1600
1601 list_for_each_entry(sg, &parent->children, list) {
David Hildenbrand5b062bd2016-03-08 12:17:40 +01001602 if (sg->orig_asce != asce || sg->edat_level != edat_level ||
1603 sg->removed)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001604 continue;
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001605 if (!sg->initialized)
1606 return ERR_PTR(-EAGAIN);
Chuhong Yuan40e90652019-08-08 15:18:26 +08001607 refcount_inc(&sg->ref_count);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001608 return sg;
1609 }
1610 return NULL;
1611}
1612
1613/**
David Hildenbrand5b6c9632016-05-27 18:57:33 +02001614 * gmap_shadow_valid - check if a shadow guest address space matches the
1615 * given properties and is still valid
1616 * @sg: pointer to the shadow guest address space structure
1617 * @asce: ASCE for which the shadow table is requested
1618 * @edat_level: edat level to be used for the shadow translation
1619 *
1620 * Returns 1 if the gmap shadow is still valid and matches the given
1621 * properties, the caller can continue using it. Returns 0 otherwise, the
1622 * caller has to request a new shadow gmap in this case.
1623 *
1624 */
1625int gmap_shadow_valid(struct gmap *sg, unsigned long asce, int edat_level)
1626{
1627 if (sg->removed)
1628 return 0;
1629 return sg->orig_asce == asce && sg->edat_level == edat_level;
1630}
1631EXPORT_SYMBOL_GPL(gmap_shadow_valid);
1632
1633/**
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001634 * gmap_shadow - create/find a shadow guest address space
1635 * @parent: pointer to the parent gmap
1636 * @asce: ASCE for which the shadow table is created
David Hildenbrand5b062bd2016-03-08 12:17:40 +01001637 * @edat_level: edat level to be used for the shadow translation
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001638 *
1639 * The pages of the top level page table referred by the asce parameter
1640 * will be set to read-only and marked in the PGSTEs of the kvm process.
1641 * The shadow table will be removed automatically on any change to the
1642 * PTE mapping for the source table.
1643 *
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001644 * Returns a guest address space structure, ERR_PTR(-ENOMEM) if out of memory,
1645 * ERR_PTR(-EAGAIN) if the caller has to retry and ERR_PTR(-EFAULT) if the
1646 * parent gmap table could not be protected.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001647 */
David Hildenbrand5b062bd2016-03-08 12:17:40 +01001648struct gmap *gmap_shadow(struct gmap *parent, unsigned long asce,
1649 int edat_level)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001650{
1651 struct gmap *sg, *new;
1652 unsigned long limit;
1653 int rc;
1654
Janosch Franka9e00d82018-07-13 11:28:37 +01001655 BUG_ON(parent->mm->context.allow_gmap_hpage_1m);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001656 BUG_ON(gmap_is_shadow(parent));
1657 spin_lock(&parent->shadow_lock);
David Hildenbrand5b062bd2016-03-08 12:17:40 +01001658 sg = gmap_find_shadow(parent, asce, edat_level);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001659 spin_unlock(&parent->shadow_lock);
1660 if (sg)
1661 return sg;
1662 /* Create a new shadow gmap */
1663 limit = -1UL >> (33 - (((asce & _ASCE_TYPE_MASK) >> 2) * 11));
David Hildenbrand3218f702016-04-18 16:22:24 +02001664 if (asce & _ASCE_REAL_SPACE)
1665 limit = -1UL;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001666 new = gmap_alloc(limit);
1667 if (!new)
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001668 return ERR_PTR(-ENOMEM);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001669 new->mm = parent->mm;
1670 new->parent = gmap_get(parent);
1671 new->orig_asce = asce;
David Hildenbrand5b062bd2016-03-08 12:17:40 +01001672 new->edat_level = edat_level;
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001673 new->initialized = false;
1674 spin_lock(&parent->shadow_lock);
1675 /* Recheck if another CPU created the same shadow */
David Hildenbrand5b062bd2016-03-08 12:17:40 +01001676 sg = gmap_find_shadow(parent, asce, edat_level);
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001677 if (sg) {
1678 spin_unlock(&parent->shadow_lock);
1679 gmap_free(new);
1680 return sg;
1681 }
David Hildenbrand717c0552016-05-02 12:10:17 +02001682 if (asce & _ASCE_REAL_SPACE) {
1683 /* only allow one real-space gmap shadow */
1684 list_for_each_entry(sg, &parent->children, list) {
1685 if (sg->orig_asce & _ASCE_REAL_SPACE) {
1686 spin_lock(&sg->guest_table_lock);
1687 gmap_unshadow(sg);
1688 spin_unlock(&sg->guest_table_lock);
1689 list_del(&sg->list);
1690 gmap_put(sg);
1691 break;
1692 }
1693 }
1694 }
Chuhong Yuan40e90652019-08-08 15:18:26 +08001695 refcount_set(&new->ref_count, 2);
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001696 list_add(&new->list, &parent->children);
David Hildenbrand3218f702016-04-18 16:22:24 +02001697 if (asce & _ASCE_REAL_SPACE) {
1698 /* nothing to protect, return right away */
1699 new->initialized = true;
1700 spin_unlock(&parent->shadow_lock);
1701 return new;
1702 }
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001703 spin_unlock(&parent->shadow_lock);
1704 /* protect after insertion, so it will get properly invalidated */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001705 mmap_read_lock(parent->mm);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001706 rc = gmap_protect_range(parent, asce & _ASCE_ORIGIN,
Heiko Carstensf1c11742017-07-05 07:37:27 +02001707 ((asce & _ASCE_TABLE_LENGTH) + 1) * PAGE_SIZE,
Janosch Frank2c46e972018-07-13 11:28:18 +01001708 PROT_READ, GMAP_NOTIFY_SHADOW);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001709 mmap_read_unlock(parent->mm);
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001710 spin_lock(&parent->shadow_lock);
1711 new->initialized = true;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001712 if (rc) {
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001713 list_del(&new->list);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001714 gmap_free(new);
David Hildenbrand0f7f8482016-03-08 12:30:46 +01001715 new = ERR_PTR(rc);
1716 }
1717 spin_unlock(&parent->shadow_lock);
1718 return new;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001719}
1720EXPORT_SYMBOL_GPL(gmap_shadow);
1721
1722/**
1723 * gmap_shadow_r2t - create an empty shadow region 2 table
1724 * @sg: pointer to the shadow guest address space structure
1725 * @saddr: faulting address in the shadow gmap
1726 * @r2t: parent gmap address of the region 2 table to get shadowed
David Hildenbrand3218f702016-04-18 16:22:24 +02001727 * @fake: r2t references contiguous guest memory block, not a r2t
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001728 *
1729 * The r2t parameter specifies the address of the source table. The
1730 * four pages of the source table are made read-only in the parent gmap
1731 * address space. A write to the source table area @r2t will automatically
1732 * remove the shadow r2 table and all of its decendents.
1733 *
1734 * Returns 0 if successfully shadowed or already shadowed, -EAGAIN if the
1735 * shadow table structure is incomplete, -ENOMEM if out of memory and
1736 * -EFAULT if an address in the parent gmap could not be resolved.
1737 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001738 * Called with sg->mm->mmap_lock in read.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001739 */
David Hildenbrand3218f702016-04-18 16:22:24 +02001740int gmap_shadow_r2t(struct gmap *sg, unsigned long saddr, unsigned long r2t,
1741 int fake)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001742{
1743 unsigned long raddr, origin, offset, len;
1744 unsigned long *s_r2t, *table;
1745 struct page *page;
1746 int rc;
1747
1748 BUG_ON(!gmap_is_shadow(sg));
1749 /* Allocate a shadow region second table */
Christian Borntraeger0cd2a782020-11-09 13:14:35 +01001750 page = alloc_pages(GFP_KERNEL_ACCOUNT, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001751 if (!page)
1752 return -ENOMEM;
1753 page->index = r2t & _REGION_ENTRY_ORIGIN;
David Hildenbrand3218f702016-04-18 16:22:24 +02001754 if (fake)
1755 page->index |= GMAP_SHADOW_FAKE_TABLE;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001756 s_r2t = (unsigned long *) page_to_phys(page);
1757 /* Install shadow region second table */
1758 spin_lock(&sg->guest_table_lock);
1759 table = gmap_table_walk(sg, saddr, 4); /* get region-1 pointer */
1760 if (!table) {
1761 rc = -EAGAIN; /* Race with unshadow */
1762 goto out_free;
1763 }
1764 if (!(*table & _REGION_ENTRY_INVALID)) {
1765 rc = 0; /* Already established */
1766 goto out_free;
David Hildenbrand998f6372016-03-08 12:23:38 +01001767 } else if (*table & _REGION_ENTRY_ORIGIN) {
1768 rc = -EAGAIN; /* Race with shadow */
1769 goto out_free;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001770 }
1771 crst_table_init(s_r2t, _REGION2_ENTRY_EMPTY);
David Hildenbrand998f6372016-03-08 12:23:38 +01001772 /* mark as invalid as long as the parent table is not protected */
1773 *table = (unsigned long) s_r2t | _REGION_ENTRY_LENGTH |
1774 _REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_INVALID;
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02001775 if (sg->edat_level >= 1)
1776 *table |= (r2t & _REGION_ENTRY_PROTECT);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001777 list_add(&page->lru, &sg->crst_list);
David Hildenbrand3218f702016-04-18 16:22:24 +02001778 if (fake) {
1779 /* nothing to protect for fake tables */
1780 *table &= ~_REGION_ENTRY_INVALID;
1781 spin_unlock(&sg->guest_table_lock);
1782 return 0;
1783 }
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001784 spin_unlock(&sg->guest_table_lock);
1785 /* Make r2t read-only in parent gmap page table */
Heiko Carstensf1c11742017-07-05 07:37:27 +02001786 raddr = (saddr & _REGION1_MASK) | _SHADOW_RMAP_REGION1;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001787 origin = r2t & _REGION_ENTRY_ORIGIN;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001788 offset = ((r2t & _REGION_ENTRY_OFFSET) >> 6) * PAGE_SIZE;
1789 len = ((r2t & _REGION_ENTRY_LENGTH) + 1) * PAGE_SIZE - offset;
David Hildenbrand5c528db2018-01-23 22:26:18 +01001790 rc = gmap_protect_rmap(sg, raddr, origin + offset, len);
David Hildenbrand998f6372016-03-08 12:23:38 +01001791 spin_lock(&sg->guest_table_lock);
1792 if (!rc) {
1793 table = gmap_table_walk(sg, saddr, 4);
1794 if (!table || (*table & _REGION_ENTRY_ORIGIN) !=
1795 (unsigned long) s_r2t)
1796 rc = -EAGAIN; /* Race with unshadow */
1797 else
1798 *table &= ~_REGION_ENTRY_INVALID;
1799 } else {
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001800 gmap_unshadow_r2t(sg, raddr);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001801 }
David Hildenbrand998f6372016-03-08 12:23:38 +01001802 spin_unlock(&sg->guest_table_lock);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001803 return rc;
1804out_free:
1805 spin_unlock(&sg->guest_table_lock);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001806 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001807 return rc;
1808}
1809EXPORT_SYMBOL_GPL(gmap_shadow_r2t);
1810
1811/**
1812 * gmap_shadow_r3t - create a shadow region 3 table
1813 * @sg: pointer to the shadow guest address space structure
1814 * @saddr: faulting address in the shadow gmap
1815 * @r3t: parent gmap address of the region 3 table to get shadowed
David Hildenbrand3218f702016-04-18 16:22:24 +02001816 * @fake: r3t references contiguous guest memory block, not a r3t
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001817 *
1818 * Returns 0 if successfully shadowed or already shadowed, -EAGAIN if the
1819 * shadow table structure is incomplete, -ENOMEM if out of memory and
1820 * -EFAULT if an address in the parent gmap could not be resolved.
1821 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001822 * Called with sg->mm->mmap_lock in read.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001823 */
David Hildenbrand3218f702016-04-18 16:22:24 +02001824int gmap_shadow_r3t(struct gmap *sg, unsigned long saddr, unsigned long r3t,
1825 int fake)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001826{
1827 unsigned long raddr, origin, offset, len;
1828 unsigned long *s_r3t, *table;
1829 struct page *page;
1830 int rc;
1831
1832 BUG_ON(!gmap_is_shadow(sg));
1833 /* Allocate a shadow region second table */
Christian Borntraeger0cd2a782020-11-09 13:14:35 +01001834 page = alloc_pages(GFP_KERNEL_ACCOUNT, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001835 if (!page)
1836 return -ENOMEM;
1837 page->index = r3t & _REGION_ENTRY_ORIGIN;
David Hildenbrand3218f702016-04-18 16:22:24 +02001838 if (fake)
1839 page->index |= GMAP_SHADOW_FAKE_TABLE;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001840 s_r3t = (unsigned long *) page_to_phys(page);
1841 /* Install shadow region second table */
1842 spin_lock(&sg->guest_table_lock);
1843 table = gmap_table_walk(sg, saddr, 3); /* get region-2 pointer */
1844 if (!table) {
1845 rc = -EAGAIN; /* Race with unshadow */
1846 goto out_free;
1847 }
1848 if (!(*table & _REGION_ENTRY_INVALID)) {
1849 rc = 0; /* Already established */
1850 goto out_free;
David Hildenbrand998f6372016-03-08 12:23:38 +01001851 } else if (*table & _REGION_ENTRY_ORIGIN) {
1852 rc = -EAGAIN; /* Race with shadow */
David Hildenbrand1493e0f2020-04-03 17:30:48 +02001853 goto out_free;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001854 }
1855 crst_table_init(s_r3t, _REGION3_ENTRY_EMPTY);
David Hildenbrand998f6372016-03-08 12:23:38 +01001856 /* mark as invalid as long as the parent table is not protected */
1857 *table = (unsigned long) s_r3t | _REGION_ENTRY_LENGTH |
1858 _REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_INVALID;
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02001859 if (sg->edat_level >= 1)
1860 *table |= (r3t & _REGION_ENTRY_PROTECT);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001861 list_add(&page->lru, &sg->crst_list);
David Hildenbrand3218f702016-04-18 16:22:24 +02001862 if (fake) {
1863 /* nothing to protect for fake tables */
1864 *table &= ~_REGION_ENTRY_INVALID;
1865 spin_unlock(&sg->guest_table_lock);
1866 return 0;
1867 }
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001868 spin_unlock(&sg->guest_table_lock);
1869 /* Make r3t read-only in parent gmap page table */
Heiko Carstensf1c11742017-07-05 07:37:27 +02001870 raddr = (saddr & _REGION2_MASK) | _SHADOW_RMAP_REGION2;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001871 origin = r3t & _REGION_ENTRY_ORIGIN;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001872 offset = ((r3t & _REGION_ENTRY_OFFSET) >> 6) * PAGE_SIZE;
1873 len = ((r3t & _REGION_ENTRY_LENGTH) + 1) * PAGE_SIZE - offset;
David Hildenbrand5c528db2018-01-23 22:26:18 +01001874 rc = gmap_protect_rmap(sg, raddr, origin + offset, len);
David Hildenbrand998f6372016-03-08 12:23:38 +01001875 spin_lock(&sg->guest_table_lock);
1876 if (!rc) {
1877 table = gmap_table_walk(sg, saddr, 3);
1878 if (!table || (*table & _REGION_ENTRY_ORIGIN) !=
1879 (unsigned long) s_r3t)
1880 rc = -EAGAIN; /* Race with unshadow */
1881 else
1882 *table &= ~_REGION_ENTRY_INVALID;
1883 } else {
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001884 gmap_unshadow_r3t(sg, raddr);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001885 }
David Hildenbrand998f6372016-03-08 12:23:38 +01001886 spin_unlock(&sg->guest_table_lock);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001887 return rc;
1888out_free:
1889 spin_unlock(&sg->guest_table_lock);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001890 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001891 return rc;
1892}
1893EXPORT_SYMBOL_GPL(gmap_shadow_r3t);
1894
1895/**
1896 * gmap_shadow_sgt - create a shadow segment table
1897 * @sg: pointer to the shadow guest address space structure
1898 * @saddr: faulting address in the shadow gmap
1899 * @sgt: parent gmap address of the segment table to get shadowed
David Hildenbrand18b898092016-04-18 13:42:05 +02001900 * @fake: sgt references contiguous guest memory block, not a sgt
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001901 *
1902 * Returns: 0 if successfully shadowed or already shadowed, -EAGAIN if the
1903 * shadow table structure is incomplete, -ENOMEM if out of memory and
1904 * -EFAULT if an address in the parent gmap could not be resolved.
1905 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001906 * Called with sg->mm->mmap_lock in read.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001907 */
David Hildenbrand18b898092016-04-18 13:42:05 +02001908int gmap_shadow_sgt(struct gmap *sg, unsigned long saddr, unsigned long sgt,
1909 int fake)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001910{
1911 unsigned long raddr, origin, offset, len;
1912 unsigned long *s_sgt, *table;
1913 struct page *page;
1914 int rc;
1915
David Hildenbrand18b898092016-04-18 13:42:05 +02001916 BUG_ON(!gmap_is_shadow(sg) || (sgt & _REGION3_ENTRY_LARGE));
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001917 /* Allocate a shadow segment table */
Christian Borntraeger0cd2a782020-11-09 13:14:35 +01001918 page = alloc_pages(GFP_KERNEL_ACCOUNT, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001919 if (!page)
1920 return -ENOMEM;
1921 page->index = sgt & _REGION_ENTRY_ORIGIN;
David Hildenbrand18b898092016-04-18 13:42:05 +02001922 if (fake)
1923 page->index |= GMAP_SHADOW_FAKE_TABLE;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001924 s_sgt = (unsigned long *) page_to_phys(page);
1925 /* Install shadow region second table */
1926 spin_lock(&sg->guest_table_lock);
1927 table = gmap_table_walk(sg, saddr, 2); /* get region-3 pointer */
1928 if (!table) {
1929 rc = -EAGAIN; /* Race with unshadow */
1930 goto out_free;
1931 }
1932 if (!(*table & _REGION_ENTRY_INVALID)) {
1933 rc = 0; /* Already established */
1934 goto out_free;
David Hildenbrand998f6372016-03-08 12:23:38 +01001935 } else if (*table & _REGION_ENTRY_ORIGIN) {
1936 rc = -EAGAIN; /* Race with shadow */
1937 goto out_free;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001938 }
1939 crst_table_init(s_sgt, _SEGMENT_ENTRY_EMPTY);
David Hildenbrand998f6372016-03-08 12:23:38 +01001940 /* mark as invalid as long as the parent table is not protected */
1941 *table = (unsigned long) s_sgt | _REGION_ENTRY_LENGTH |
1942 _REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_INVALID;
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02001943 if (sg->edat_level >= 1)
1944 *table |= sgt & _REGION_ENTRY_PROTECT;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001945 list_add(&page->lru, &sg->crst_list);
David Hildenbrand18b898092016-04-18 13:42:05 +02001946 if (fake) {
1947 /* nothing to protect for fake tables */
1948 *table &= ~_REGION_ENTRY_INVALID;
1949 spin_unlock(&sg->guest_table_lock);
1950 return 0;
1951 }
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001952 spin_unlock(&sg->guest_table_lock);
1953 /* Make sgt read-only in parent gmap page table */
Heiko Carstensf1c11742017-07-05 07:37:27 +02001954 raddr = (saddr & _REGION3_MASK) | _SHADOW_RMAP_REGION3;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001955 origin = sgt & _REGION_ENTRY_ORIGIN;
Heiko Carstensf1c11742017-07-05 07:37:27 +02001956 offset = ((sgt & _REGION_ENTRY_OFFSET) >> 6) * PAGE_SIZE;
1957 len = ((sgt & _REGION_ENTRY_LENGTH) + 1) * PAGE_SIZE - offset;
David Hildenbrand5c528db2018-01-23 22:26:18 +01001958 rc = gmap_protect_rmap(sg, raddr, origin + offset, len);
David Hildenbrand998f6372016-03-08 12:23:38 +01001959 spin_lock(&sg->guest_table_lock);
1960 if (!rc) {
1961 table = gmap_table_walk(sg, saddr, 2);
1962 if (!table || (*table & _REGION_ENTRY_ORIGIN) !=
1963 (unsigned long) s_sgt)
1964 rc = -EAGAIN; /* Race with unshadow */
1965 else
1966 *table &= ~_REGION_ENTRY_INVALID;
1967 } else {
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001968 gmap_unshadow_sgt(sg, raddr);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001969 }
David Hildenbrand998f6372016-03-08 12:23:38 +01001970 spin_unlock(&sg->guest_table_lock);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001971 return rc;
1972out_free:
1973 spin_unlock(&sg->guest_table_lock);
Heiko Carstensf1c11742017-07-05 07:37:27 +02001974 __free_pages(page, CRST_ALLOC_ORDER);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001975 return rc;
1976}
1977EXPORT_SYMBOL_GPL(gmap_shadow_sgt);
1978
1979/**
Heiko Carstens2e827522021-09-02 19:47:37 +02001980 * gmap_shadow_pgt_lookup - find a shadow page table
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001981 * @sg: pointer to the shadow guest address space structure
1982 * @saddr: the address in the shadow aguest address space
1983 * @pgt: parent gmap address of the page table to get shadowed
1984 * @dat_protection: if the pgtable is marked as protected by dat
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02001985 * @fake: pgt references contiguous guest memory block, not a pgtable
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001986 *
1987 * Returns 0 if the shadow page table was found and -EAGAIN if the page
1988 * table was not found.
1989 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001990 * Called with sg->mm->mmap_lock in read.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001991 */
1992int gmap_shadow_pgt_lookup(struct gmap *sg, unsigned long saddr,
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02001993 unsigned long *pgt, int *dat_protection,
1994 int *fake)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001995{
1996 unsigned long *table;
1997 struct page *page;
1998 int rc;
1999
2000 BUG_ON(!gmap_is_shadow(sg));
2001 spin_lock(&sg->guest_table_lock);
2002 table = gmap_table_walk(sg, saddr, 1); /* get segment pointer */
2003 if (table && !(*table & _SEGMENT_ENTRY_INVALID)) {
2004 /* Shadow page tables are full pages (pte+pgste) */
2005 page = pfn_to_page(*table >> PAGE_SHIFT);
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02002006 *pgt = page->index & ~GMAP_SHADOW_FAKE_TABLE;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002007 *dat_protection = !!(*table & _SEGMENT_ENTRY_PROTECT);
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02002008 *fake = !!(page->index & GMAP_SHADOW_FAKE_TABLE);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002009 rc = 0;
2010 } else {
2011 rc = -EAGAIN;
2012 }
2013 spin_unlock(&sg->guest_table_lock);
2014 return rc;
2015
2016}
2017EXPORT_SYMBOL_GPL(gmap_shadow_pgt_lookup);
2018
2019/**
2020 * gmap_shadow_pgt - instantiate a shadow page table
2021 * @sg: pointer to the shadow guest address space structure
2022 * @saddr: faulting address in the shadow gmap
2023 * @pgt: parent gmap address of the page table to get shadowed
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02002024 * @fake: pgt references contiguous guest memory block, not a pgtable
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002025 *
2026 * Returns 0 if successfully shadowed or already shadowed, -EAGAIN if the
2027 * shadow table structure is incomplete, -ENOMEM if out of memory,
2028 * -EFAULT if an address in the parent gmap could not be resolved and
2029 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002030 * Called with gmap->mm->mmap_lock in read
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002031 */
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02002032int gmap_shadow_pgt(struct gmap *sg, unsigned long saddr, unsigned long pgt,
2033 int fake)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002034{
2035 unsigned long raddr, origin;
2036 unsigned long *s_pgt, *table;
2037 struct page *page;
2038 int rc;
2039
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02002040 BUG_ON(!gmap_is_shadow(sg) || (pgt & _SEGMENT_ENTRY_LARGE));
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002041 /* Allocate a shadow page table */
2042 page = page_table_alloc_pgste(sg->mm);
2043 if (!page)
2044 return -ENOMEM;
2045 page->index = pgt & _SEGMENT_ENTRY_ORIGIN;
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02002046 if (fake)
2047 page->index |= GMAP_SHADOW_FAKE_TABLE;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002048 s_pgt = (unsigned long *) page_to_phys(page);
2049 /* Install shadow page table */
2050 spin_lock(&sg->guest_table_lock);
2051 table = gmap_table_walk(sg, saddr, 1); /* get segment pointer */
2052 if (!table) {
2053 rc = -EAGAIN; /* Race with unshadow */
2054 goto out_free;
2055 }
2056 if (!(*table & _SEGMENT_ENTRY_INVALID)) {
2057 rc = 0; /* Already established */
2058 goto out_free;
David Hildenbrand998f6372016-03-08 12:23:38 +01002059 } else if (*table & _SEGMENT_ENTRY_ORIGIN) {
2060 rc = -EAGAIN; /* Race with shadow */
2061 goto out_free;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002062 }
David Hildenbrand998f6372016-03-08 12:23:38 +01002063 /* mark as invalid as long as the parent table is not protected */
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002064 *table = (unsigned long) s_pgt | _SEGMENT_ENTRY |
David Hildenbrand998f6372016-03-08 12:23:38 +01002065 (pgt & _SEGMENT_ENTRY_PROTECT) | _SEGMENT_ENTRY_INVALID;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002066 list_add(&page->lru, &sg->pt_list);
David Hildenbrandfd8d4e32016-04-18 13:24:52 +02002067 if (fake) {
2068 /* nothing to protect for fake tables */
2069 *table &= ~_SEGMENT_ENTRY_INVALID;
2070 spin_unlock(&sg->guest_table_lock);
2071 return 0;
2072 }
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002073 spin_unlock(&sg->guest_table_lock);
2074 /* Make pgt read-only in parent gmap page table (not the pgste) */
Heiko Carstensf1c11742017-07-05 07:37:27 +02002075 raddr = (saddr & _SEGMENT_MASK) | _SHADOW_RMAP_SEGMENT;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002076 origin = pgt & _SEGMENT_ENTRY_ORIGIN & PAGE_MASK;
David Hildenbrand5c528db2018-01-23 22:26:18 +01002077 rc = gmap_protect_rmap(sg, raddr, origin, PAGE_SIZE);
David Hildenbrand998f6372016-03-08 12:23:38 +01002078 spin_lock(&sg->guest_table_lock);
2079 if (!rc) {
2080 table = gmap_table_walk(sg, saddr, 1);
2081 if (!table || (*table & _SEGMENT_ENTRY_ORIGIN) !=
2082 (unsigned long) s_pgt)
2083 rc = -EAGAIN; /* Race with unshadow */
2084 else
2085 *table &= ~_SEGMENT_ENTRY_INVALID;
2086 } else {
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002087 gmap_unshadow_pgt(sg, raddr);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002088 }
David Hildenbrand998f6372016-03-08 12:23:38 +01002089 spin_unlock(&sg->guest_table_lock);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002090 return rc;
2091out_free:
2092 spin_unlock(&sg->guest_table_lock);
2093 page_table_free_pgste(page);
2094 return rc;
2095
2096}
2097EXPORT_SYMBOL_GPL(gmap_shadow_pgt);
2098
2099/**
2100 * gmap_shadow_page - create a shadow page mapping
2101 * @sg: pointer to the shadow guest address space structure
2102 * @saddr: faulting address in the shadow gmap
David Hildenbranda9d23e72016-03-08 12:21:41 +01002103 * @pte: pte in parent gmap address space to get shadowed
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002104 *
2105 * Returns 0 if successfully shadowed or already shadowed, -EAGAIN if the
2106 * shadow table structure is incomplete, -ENOMEM if out of memory and
2107 * -EFAULT if an address in the parent gmap could not be resolved.
2108 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002109 * Called with sg->mm->mmap_lock in read.
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002110 */
David Hildenbranda9d23e72016-03-08 12:21:41 +01002111int gmap_shadow_page(struct gmap *sg, unsigned long saddr, pte_t pte)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002112{
2113 struct gmap *parent;
2114 struct gmap_rmap *rmap;
David Hildenbranda9d23e72016-03-08 12:21:41 +01002115 unsigned long vmaddr, paddr;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002116 spinlock_t *ptl;
2117 pte_t *sptep, *tptep;
David Hildenbrand01f71912016-06-13 10:49:04 +02002118 int prot;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002119 int rc;
2120
2121 BUG_ON(!gmap_is_shadow(sg));
2122 parent = sg->parent;
David Hildenbrand01f71912016-06-13 10:49:04 +02002123 prot = (pte_val(pte) & _PAGE_PROTECT) ? PROT_READ : PROT_WRITE;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002124
Christian Borntraeger0cd2a782020-11-09 13:14:35 +01002125 rmap = kzalloc(sizeof(*rmap), GFP_KERNEL_ACCOUNT);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002126 if (!rmap)
2127 return -ENOMEM;
2128 rmap->raddr = (saddr & PAGE_MASK) | _SHADOW_RMAP_PGTABLE;
2129
2130 while (1) {
David Hildenbranda9d23e72016-03-08 12:21:41 +01002131 paddr = pte_val(pte) & PAGE_MASK;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002132 vmaddr = __gmap_translate(parent, paddr);
2133 if (IS_ERR_VALUE(vmaddr)) {
2134 rc = vmaddr;
2135 break;
2136 }
Christian Borntraeger0cd2a782020-11-09 13:14:35 +01002137 rc = radix_tree_preload(GFP_KERNEL_ACCOUNT);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002138 if (rc)
2139 break;
2140 rc = -EAGAIN;
2141 sptep = gmap_pte_op_walk(parent, paddr, &ptl);
2142 if (sptep) {
2143 spin_lock(&sg->guest_table_lock);
2144 /* Get page table pointer */
2145 tptep = (pte_t *) gmap_table_walk(sg, saddr, 0);
2146 if (!tptep) {
2147 spin_unlock(&sg->guest_table_lock);
2148 gmap_pte_op_end(ptl);
2149 radix_tree_preload_end();
2150 break;
2151 }
David Hildenbranda9d23e72016-03-08 12:21:41 +01002152 rc = ptep_shadow_pte(sg->mm, saddr, sptep, tptep, pte);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002153 if (rc > 0) {
2154 /* Success and a new mapping */
2155 gmap_insert_rmap(sg, vmaddr, rmap);
2156 rmap = NULL;
2157 rc = 0;
2158 }
2159 gmap_pte_op_end(ptl);
2160 spin_unlock(&sg->guest_table_lock);
2161 }
2162 radix_tree_preload_end();
2163 if (!rc)
2164 break;
David Hildenbrand01f71912016-06-13 10:49:04 +02002165 rc = gmap_pte_op_fixup(parent, paddr, vmaddr, prot);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002166 if (rc)
2167 break;
2168 }
2169 kfree(rmap);
2170 return rc;
2171}
2172EXPORT_SYMBOL_GPL(gmap_shadow_page);
2173
Heiko Carstens2e827522021-09-02 19:47:37 +02002174/*
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002175 * gmap_shadow_notify - handle notifications for shadow gmap
2176 *
2177 * Called with sg->parent->shadow_lock.
2178 */
2179static void gmap_shadow_notify(struct gmap *sg, unsigned long vmaddr,
Janosch Frankc0b4bd22017-12-13 13:53:22 +01002180 unsigned long gaddr)
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002181{
2182 struct gmap_rmap *rmap, *rnext, *head;
Janosch Frank2fa5ed72017-02-08 08:59:56 +01002183 unsigned long start, end, bits, raddr;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002184
2185 BUG_ON(!gmap_is_shadow(sg));
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002186
2187 spin_lock(&sg->guest_table_lock);
2188 if (sg->removed) {
2189 spin_unlock(&sg->guest_table_lock);
2190 return;
2191 }
2192 /* Check for top level table */
2193 start = sg->orig_asce & _ASCE_ORIGIN;
Heiko Carstensf1c11742017-07-05 07:37:27 +02002194 end = start + ((sg->orig_asce & _ASCE_TABLE_LENGTH) + 1) * PAGE_SIZE;
David Hildenbrand3218f702016-04-18 16:22:24 +02002195 if (!(sg->orig_asce & _ASCE_REAL_SPACE) && gaddr >= start &&
2196 gaddr < end) {
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002197 /* The complete shadow table has to go */
2198 gmap_unshadow(sg);
2199 spin_unlock(&sg->guest_table_lock);
2200 list_del(&sg->list);
2201 gmap_put(sg);
2202 return;
2203 }
2204 /* Remove the page table tree from on specific entry */
Heiko Carstensf1c11742017-07-05 07:37:27 +02002205 head = radix_tree_delete(&sg->host_to_rmap, vmaddr >> PAGE_SHIFT);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002206 gmap_for_each_rmap_safe(rmap, rnext, head) {
2207 bits = rmap->raddr & _SHADOW_RMAP_MASK;
2208 raddr = rmap->raddr ^ bits;
2209 switch (bits) {
2210 case _SHADOW_RMAP_REGION1:
2211 gmap_unshadow_r2t(sg, raddr);
2212 break;
2213 case _SHADOW_RMAP_REGION2:
2214 gmap_unshadow_r3t(sg, raddr);
2215 break;
2216 case _SHADOW_RMAP_REGION3:
2217 gmap_unshadow_sgt(sg, raddr);
2218 break;
2219 case _SHADOW_RMAP_SEGMENT:
2220 gmap_unshadow_pgt(sg, raddr);
2221 break;
2222 case _SHADOW_RMAP_PGTABLE:
2223 gmap_unshadow_page(sg, raddr);
2224 break;
2225 }
2226 kfree(rmap);
2227 }
2228 spin_unlock(&sg->guest_table_lock);
2229}
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002230
2231/**
2232 * ptep_notify - call all invalidation callbacks for a specific pte.
2233 * @mm: pointer to the process mm_struct
Heiko Carstens2e827522021-09-02 19:47:37 +02002234 * @vmaddr: virtual address in the process address space
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002235 * @pte: pointer to the page table entry
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002236 * @bits: bits from the pgste that caused the notify call
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002237 *
2238 * This function is assumed to be called with the page table lock held
2239 * for the pte to notify.
2240 */
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002241void ptep_notify(struct mm_struct *mm, unsigned long vmaddr,
2242 pte_t *pte, unsigned long bits)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002243{
Janosch Frank2fa5ed72017-02-08 08:59:56 +01002244 unsigned long offset, gaddr = 0;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002245 unsigned long *table;
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01002246 struct gmap *gmap, *sg, *next;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002247
2248 offset = ((unsigned long) pte) & (255 * sizeof(pte_t));
Heiko Carstensf1c11742017-07-05 07:37:27 +02002249 offset = offset * (PAGE_SIZE / sizeof(pte_t));
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +01002250 rcu_read_lock();
2251 list_for_each_entry_rcu(gmap, &mm->context.gmap_list, list) {
2252 spin_lock(&gmap->guest_table_lock);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002253 table = radix_tree_lookup(&gmap->host_to_guest,
2254 vmaddr >> PMD_SHIFT);
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +01002255 if (table)
2256 gaddr = __gmap_segment_gaddr(table) + offset;
2257 spin_unlock(&gmap->guest_table_lock);
Janosch Frank2fa5ed72017-02-08 08:59:56 +01002258 if (!table)
2259 continue;
2260
2261 if (!list_empty(&gmap->children) && (bits & PGSTE_VSIE_BIT)) {
2262 spin_lock(&gmap->shadow_lock);
2263 list_for_each_entry_safe(sg, next,
2264 &gmap->children, list)
Janosch Frankc0b4bd22017-12-13 13:53:22 +01002265 gmap_shadow_notify(sg, vmaddr, gaddr);
Janosch Frank2fa5ed72017-02-08 08:59:56 +01002266 spin_unlock(&gmap->shadow_lock);
2267 }
2268 if (bits & PGSTE_IN_BIT)
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +01002269 gmap_call_notifier(gmap, gaddr, gaddr + PAGE_SIZE - 1);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002270 }
Martin Schwidefsky8ecb1a52016-03-08 11:54:14 +01002271 rcu_read_unlock();
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002272}
2273EXPORT_SYMBOL_GPL(ptep_notify);
2274
Janosch Frank6a376272018-07-13 11:28:22 +01002275static void pmdp_notify_gmap(struct gmap *gmap, pmd_t *pmdp,
2276 unsigned long gaddr)
2277{
2278 pmd_val(*pmdp) &= ~_SEGMENT_ENTRY_GMAP_IN;
2279 gmap_call_notifier(gmap, gaddr, gaddr + HPAGE_SIZE - 1);
2280}
2281
Janosch Frank0959e162018-07-17 13:21:22 +01002282/**
2283 * gmap_pmdp_xchg - exchange a gmap pmd with another
2284 * @gmap: pointer to the guest address space structure
2285 * @pmdp: pointer to the pmd entry
2286 * @new: replacement entry
2287 * @gaddr: the affected guest address
2288 *
2289 * This function is assumed to be called with the guest_table_lock
2290 * held.
2291 */
2292static void gmap_pmdp_xchg(struct gmap *gmap, pmd_t *pmdp, pmd_t new,
2293 unsigned long gaddr)
2294{
2295 gaddr &= HPAGE_MASK;
2296 pmdp_notify_gmap(gmap, pmdp, gaddr);
2297 pmd_val(new) &= ~_SEGMENT_ENTRY_GMAP_IN;
2298 if (MACHINE_HAS_TLB_GUEST)
2299 __pmdp_idte(gaddr, (pmd_t *)pmdp, IDTE_GUEST_ASCE, gmap->asce,
2300 IDTE_GLOBAL);
2301 else if (MACHINE_HAS_IDTE)
2302 __pmdp_idte(gaddr, (pmd_t *)pmdp, 0, 0, IDTE_GLOBAL);
2303 else
2304 __pmdp_csp(pmdp);
2305 *pmdp = new;
2306}
2307
Janosch Frank6a376272018-07-13 11:28:22 +01002308static void gmap_pmdp_clear(struct mm_struct *mm, unsigned long vmaddr,
2309 int purge)
2310{
2311 pmd_t *pmdp;
2312 struct gmap *gmap;
2313 unsigned long gaddr;
2314
2315 rcu_read_lock();
2316 list_for_each_entry_rcu(gmap, &mm->context.gmap_list, list) {
2317 spin_lock(&gmap->guest_table_lock);
2318 pmdp = (pmd_t *)radix_tree_delete(&gmap->host_to_guest,
2319 vmaddr >> PMD_SHIFT);
2320 if (pmdp) {
2321 gaddr = __gmap_segment_gaddr((unsigned long *)pmdp);
2322 pmdp_notify_gmap(gmap, pmdp, gaddr);
Janosch Frank0959e162018-07-17 13:21:22 +01002323 WARN_ON(pmd_val(*pmdp) & ~(_SEGMENT_ENTRY_HARDWARE_BITS_LARGE |
2324 _SEGMENT_ENTRY_GMAP_UC));
Janosch Frank6a376272018-07-13 11:28:22 +01002325 if (purge)
2326 __pmdp_csp(pmdp);
2327 pmd_val(*pmdp) = _SEGMENT_ENTRY_EMPTY;
2328 }
2329 spin_unlock(&gmap->guest_table_lock);
2330 }
2331 rcu_read_unlock();
2332}
2333
2334/**
2335 * gmap_pmdp_invalidate - invalidate all affected guest pmd entries without
2336 * flushing
2337 * @mm: pointer to the process mm_struct
2338 * @vmaddr: virtual address in the process address space
2339 */
2340void gmap_pmdp_invalidate(struct mm_struct *mm, unsigned long vmaddr)
2341{
2342 gmap_pmdp_clear(mm, vmaddr, 0);
2343}
2344EXPORT_SYMBOL_GPL(gmap_pmdp_invalidate);
2345
2346/**
2347 * gmap_pmdp_csp - csp all affected guest pmd entries
2348 * @mm: pointer to the process mm_struct
2349 * @vmaddr: virtual address in the process address space
2350 */
2351void gmap_pmdp_csp(struct mm_struct *mm, unsigned long vmaddr)
2352{
2353 gmap_pmdp_clear(mm, vmaddr, 1);
2354}
2355EXPORT_SYMBOL_GPL(gmap_pmdp_csp);
2356
2357/**
2358 * gmap_pmdp_idte_local - invalidate and clear a guest pmd entry
2359 * @mm: pointer to the process mm_struct
2360 * @vmaddr: virtual address in the process address space
2361 */
2362void gmap_pmdp_idte_local(struct mm_struct *mm, unsigned long vmaddr)
2363{
2364 unsigned long *entry, gaddr;
2365 struct gmap *gmap;
2366 pmd_t *pmdp;
2367
2368 rcu_read_lock();
2369 list_for_each_entry_rcu(gmap, &mm->context.gmap_list, list) {
2370 spin_lock(&gmap->guest_table_lock);
2371 entry = radix_tree_delete(&gmap->host_to_guest,
2372 vmaddr >> PMD_SHIFT);
2373 if (entry) {
2374 pmdp = (pmd_t *)entry;
2375 gaddr = __gmap_segment_gaddr(entry);
2376 pmdp_notify_gmap(gmap, pmdp, gaddr);
Janosch Frank0959e162018-07-17 13:21:22 +01002377 WARN_ON(*entry & ~(_SEGMENT_ENTRY_HARDWARE_BITS_LARGE |
2378 _SEGMENT_ENTRY_GMAP_UC));
Janosch Frank6a376272018-07-13 11:28:22 +01002379 if (MACHINE_HAS_TLB_GUEST)
2380 __pmdp_idte(gaddr, pmdp, IDTE_GUEST_ASCE,
2381 gmap->asce, IDTE_LOCAL);
2382 else if (MACHINE_HAS_IDTE)
2383 __pmdp_idte(gaddr, pmdp, 0, 0, IDTE_LOCAL);
2384 *entry = _SEGMENT_ENTRY_EMPTY;
2385 }
2386 spin_unlock(&gmap->guest_table_lock);
2387 }
2388 rcu_read_unlock();
2389}
2390EXPORT_SYMBOL_GPL(gmap_pmdp_idte_local);
2391
2392/**
2393 * gmap_pmdp_idte_global - invalidate and clear a guest pmd entry
2394 * @mm: pointer to the process mm_struct
2395 * @vmaddr: virtual address in the process address space
2396 */
2397void gmap_pmdp_idte_global(struct mm_struct *mm, unsigned long vmaddr)
2398{
2399 unsigned long *entry, gaddr;
2400 struct gmap *gmap;
2401 pmd_t *pmdp;
2402
2403 rcu_read_lock();
2404 list_for_each_entry_rcu(gmap, &mm->context.gmap_list, list) {
2405 spin_lock(&gmap->guest_table_lock);
2406 entry = radix_tree_delete(&gmap->host_to_guest,
2407 vmaddr >> PMD_SHIFT);
2408 if (entry) {
2409 pmdp = (pmd_t *)entry;
2410 gaddr = __gmap_segment_gaddr(entry);
2411 pmdp_notify_gmap(gmap, pmdp, gaddr);
Janosch Frank0959e162018-07-17 13:21:22 +01002412 WARN_ON(*entry & ~(_SEGMENT_ENTRY_HARDWARE_BITS_LARGE |
2413 _SEGMENT_ENTRY_GMAP_UC));
Janosch Frank6a376272018-07-13 11:28:22 +01002414 if (MACHINE_HAS_TLB_GUEST)
2415 __pmdp_idte(gaddr, pmdp, IDTE_GUEST_ASCE,
2416 gmap->asce, IDTE_GLOBAL);
2417 else if (MACHINE_HAS_IDTE)
2418 __pmdp_idte(gaddr, pmdp, 0, 0, IDTE_GLOBAL);
2419 else
2420 __pmdp_csp(pmdp);
2421 *entry = _SEGMENT_ENTRY_EMPTY;
2422 }
2423 spin_unlock(&gmap->guest_table_lock);
2424 }
2425 rcu_read_unlock();
2426}
2427EXPORT_SYMBOL_GPL(gmap_pmdp_idte_global);
2428
Janosch Frank0959e162018-07-17 13:21:22 +01002429/**
2430 * gmap_test_and_clear_dirty_pmd - test and reset segment dirty status
2431 * @gmap: pointer to guest address space
2432 * @pmdp: pointer to the pmd to be tested
2433 * @gaddr: virtual address in the guest address space
2434 *
2435 * This function is assumed to be called with the guest_table_lock
2436 * held.
2437 */
Vasily Gorbikffbd2682019-07-17 19:41:09 +02002438static bool gmap_test_and_clear_dirty_pmd(struct gmap *gmap, pmd_t *pmdp,
2439 unsigned long gaddr)
Janosch Frank0959e162018-07-17 13:21:22 +01002440{
2441 if (pmd_val(*pmdp) & _SEGMENT_ENTRY_INVALID)
2442 return false;
2443
2444 /* Already protected memory, which did not change is clean */
2445 if (pmd_val(*pmdp) & _SEGMENT_ENTRY_PROTECT &&
2446 !(pmd_val(*pmdp) & _SEGMENT_ENTRY_GMAP_UC))
2447 return false;
2448
2449 /* Clear UC indication and reset protection */
2450 pmd_val(*pmdp) &= ~_SEGMENT_ENTRY_GMAP_UC;
2451 gmap_protect_pmd(gmap, gaddr, pmdp, PROT_READ, 0);
2452 return true;
2453}
2454
2455/**
2456 * gmap_sync_dirty_log_pmd - set bitmap based on dirty status of segment
2457 * @gmap: pointer to guest address space
2458 * @bitmap: dirty bitmap for this pmd
2459 * @gaddr: virtual address in the guest address space
2460 * @vmaddr: virtual address in the host address space
2461 *
2462 * This function is assumed to be called with the guest_table_lock
2463 * held.
2464 */
2465void gmap_sync_dirty_log_pmd(struct gmap *gmap, unsigned long bitmap[4],
2466 unsigned long gaddr, unsigned long vmaddr)
2467{
2468 int i;
2469 pmd_t *pmdp;
2470 pte_t *ptep;
2471 spinlock_t *ptl;
2472
2473 pmdp = gmap_pmd_op_walk(gmap, gaddr);
2474 if (!pmdp)
2475 return;
2476
2477 if (pmd_large(*pmdp)) {
2478 if (gmap_test_and_clear_dirty_pmd(gmap, pmdp, gaddr))
2479 bitmap_fill(bitmap, _PAGE_ENTRIES);
2480 } else {
2481 for (i = 0; i < _PAGE_ENTRIES; i++, vmaddr += PAGE_SIZE) {
2482 ptep = pte_alloc_map_lock(gmap->mm, pmdp, vmaddr, &ptl);
2483 if (!ptep)
2484 continue;
2485 if (ptep_test_and_clear_uc(gmap->mm, vmaddr, ptep))
2486 set_bit(i, bitmap);
2487 spin_unlock(ptl);
2488 }
2489 }
2490 gmap_pmd_op_end(gmap, pmdp);
2491}
2492EXPORT_SYMBOL_GPL(gmap_sync_dirty_log_pmd);
2493
Gerald Schaeferba925fa2020-07-29 22:22:34 +02002494#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2495static int thp_split_walk_pmd_entry(pmd_t *pmd, unsigned long addr,
2496 unsigned long end, struct mm_walk *walk)
2497{
2498 struct vm_area_struct *vma = walk->vma;
2499
2500 split_huge_pmd(vma, pmd, addr);
2501 return 0;
2502}
2503
2504static const struct mm_walk_ops thp_split_walk_ops = {
2505 .pmd_entry = thp_split_walk_pmd_entry,
2506};
2507
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002508static inline void thp_split_mm(struct mm_struct *mm)
2509{
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002510 struct vm_area_struct *vma;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002511
2512 for (vma = mm->mmap; vma != NULL; vma = vma->vm_next) {
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002513 vma->vm_flags &= ~VM_HUGEPAGE;
2514 vma->vm_flags |= VM_NOHUGEPAGE;
Gerald Schaeferba925fa2020-07-29 22:22:34 +02002515 walk_page_vma(vma, &thp_split_walk_ops, NULL);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002516 }
2517 mm->def_flags |= VM_NOHUGEPAGE;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002518}
Gerald Schaeferba925fa2020-07-29 22:22:34 +02002519#else
2520static inline void thp_split_mm(struct mm_struct *mm)
2521{
2522}
2523#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002524
2525/*
Christian Borntraegerfa41ba02017-08-24 12:55:08 +02002526 * Remove all empty zero pages from the mapping for lazy refaulting
2527 * - This must be called after mm->context.has_pgste is set, to avoid
2528 * future creation of zero pages
2529 * - This must be called after THP was enabled
2530 */
2531static int __zap_zero_pages(pmd_t *pmd, unsigned long start,
2532 unsigned long end, struct mm_walk *walk)
2533{
2534 unsigned long addr;
2535
2536 for (addr = start; addr != end; addr += PAGE_SIZE) {
2537 pte_t *ptep;
2538 spinlock_t *ptl;
2539
2540 ptep = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
2541 if (is_zero_pfn(pte_pfn(*ptep)))
2542 ptep_xchg_direct(walk->mm, addr, ptep, __pte(_PAGE_INVALID));
2543 pte_unmap_unlock(ptep, ptl);
2544 }
2545 return 0;
2546}
2547
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002548static const struct mm_walk_ops zap_zero_walk_ops = {
2549 .pmd_entry = __zap_zero_pages,
2550};
Christian Borntraegerfa41ba02017-08-24 12:55:08 +02002551
2552/*
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002553 * switch on pgstes for its userspace process (for kvm)
2554 */
2555int s390_enable_sie(void)
2556{
2557 struct mm_struct *mm = current->mm;
2558
2559 /* Do we have pgstes? if yes, we are done */
2560 if (mm_has_pgste(mm))
2561 return 0;
2562 /* Fail if the page tables are 2K */
2563 if (!mm_alloc_pgste(mm))
2564 return -EINVAL;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002565 mmap_write_lock(mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002566 mm->context.has_pgste = 1;
2567 /* split thp mappings and disable thp for future mappings */
2568 thp_split_mm(mm);
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002569 walk_page_range(mm, 0, TASK_SIZE, &zap_zero_walk_ops, NULL);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002570 mmap_write_unlock(mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002571 return 0;
2572}
2573EXPORT_SYMBOL_GPL(s390_enable_sie);
2574
Janosch Frankfa0c5ea2019-07-16 13:08:37 +02002575int gmap_mark_unmergeable(void)
2576{
2577 struct mm_struct *mm = current->mm;
2578 struct vm_area_struct *vma;
Christian Borntraeger7a265362020-03-27 08:06:42 +01002579 int ret;
Janosch Frankfa0c5ea2019-07-16 13:08:37 +02002580
2581 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Christian Borntraeger7a265362020-03-27 08:06:42 +01002582 ret = ksm_madvise(vma, vma->vm_start, vma->vm_end,
2583 MADV_UNMERGEABLE, &vma->vm_flags);
2584 if (ret)
2585 return ret;
Janosch Frankfa0c5ea2019-07-16 13:08:37 +02002586 }
2587 mm->def_flags &= ~VM_MERGEABLE;
2588 return 0;
2589}
2590EXPORT_SYMBOL_GPL(gmap_mark_unmergeable);
2591
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002592/*
2593 * Enable storage key handling from now on and initialize the storage
2594 * keys with the default key.
2595 */
Dominik Dingel964c2c02018-07-13 11:28:25 +01002596static int __s390_enable_skey_pte(pte_t *pte, unsigned long addr,
2597 unsigned long next, struct mm_walk *walk)
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002598{
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002599 /* Clear storage key */
2600 ptep_zap_key(walk->mm, addr, pte);
2601 return 0;
2602}
2603
Dominik Dingel964c2c02018-07-13 11:28:25 +01002604static int __s390_enable_skey_hugetlb(pte_t *pte, unsigned long addr,
2605 unsigned long hmask, unsigned long next,
2606 struct mm_walk *walk)
2607{
2608 pmd_t *pmd = (pmd_t *)pte;
2609 unsigned long start, end;
Janosch Frank3afdfca2018-07-13 11:28:26 +01002610 struct page *page = pmd_page(*pmd);
Dominik Dingel964c2c02018-07-13 11:28:25 +01002611
2612 /*
2613 * The write check makes sure we do not set a key on shared
2614 * memory. This is needed as the walker does not differentiate
2615 * between actual guest memory and the process executable or
2616 * shared libraries.
2617 */
2618 if (pmd_val(*pmd) & _SEGMENT_ENTRY_INVALID ||
2619 !(pmd_val(*pmd) & _SEGMENT_ENTRY_WRITE))
2620 return 0;
2621
2622 start = pmd_val(*pmd) & HPAGE_MASK;
2623 end = start + HPAGE_SIZE - 1;
2624 __storage_key_init_range(start, end);
Janosch Frank3afdfca2018-07-13 11:28:26 +01002625 set_bit(PG_arch_1, &page->flags);
Dominik Dingel964c2c02018-07-13 11:28:25 +01002626 return 0;
2627}
2628
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002629static const struct mm_walk_ops enable_skey_walk_ops = {
2630 .hugetlb_entry = __s390_enable_skey_hugetlb,
2631 .pte_entry = __s390_enable_skey_pte,
2632};
2633
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002634int s390_enable_skey(void)
2635{
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002636 struct mm_struct *mm = current->mm;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002637 int rc = 0;
2638
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002639 mmap_write_lock(mm);
Janosch Frank55531b72018-02-15 16:33:47 +01002640 if (mm_uses_skeys(mm))
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002641 goto out_up;
2642
Janosch Frank55531b72018-02-15 16:33:47 +01002643 mm->context.uses_skeys = 1;
Janosch Frankfa0c5ea2019-07-16 13:08:37 +02002644 rc = gmap_mark_unmergeable();
2645 if (rc) {
2646 mm->context.uses_skeys = 0;
2647 goto out_up;
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002648 }
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002649 walk_page_range(mm, 0, TASK_SIZE, &enable_skey_walk_ops, NULL);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002650
2651out_up:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002652 mmap_write_unlock(mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002653 return rc;
2654}
2655EXPORT_SYMBOL_GPL(s390_enable_skey);
2656
2657/*
2658 * Reset CMMA state, make all pages stable again.
2659 */
2660static int __s390_reset_cmma(pte_t *pte, unsigned long addr,
2661 unsigned long next, struct mm_walk *walk)
2662{
2663 ptep_zap_unused(walk->mm, addr, pte, 1);
2664 return 0;
2665}
2666
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002667static const struct mm_walk_ops reset_cmma_walk_ops = {
2668 .pte_entry = __s390_reset_cmma,
2669};
2670
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002671void s390_reset_cmma(struct mm_struct *mm)
2672{
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002673 mmap_write_lock(mm);
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002674 walk_page_range(mm, 0, TASK_SIZE, &reset_cmma_walk_ops, NULL);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002675 mmap_write_unlock(mm);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01002676}
2677EXPORT_SYMBOL_GPL(s390_reset_cmma);
Christian Borntraeger12748002019-12-16 10:48:11 -05002678
2679/*
2680 * make inaccessible pages accessible again
2681 */
2682static int __s390_reset_acc(pte_t *ptep, unsigned long addr,
2683 unsigned long next, struct mm_walk *walk)
2684{
2685 pte_t pte = READ_ONCE(*ptep);
2686
Claudio Imbrenda380d97b2021-09-20 15:24:54 +02002687 /* There is a reference through the mapping */
Christian Borntraeger12748002019-12-16 10:48:11 -05002688 if (pte_present(pte))
Claudio Imbrenda380d97b2021-09-20 15:24:54 +02002689 WARN_ON_ONCE(uv_destroy_owned_page(pte_val(pte) & PAGE_MASK));
2690
Christian Borntraeger12748002019-12-16 10:48:11 -05002691 return 0;
2692}
2693
2694static const struct mm_walk_ops reset_acc_walk_ops = {
2695 .pte_entry = __s390_reset_acc,
2696};
2697
2698#include <linux/sched/mm.h>
2699void s390_reset_acc(struct mm_struct *mm)
2700{
Janosch Frank1ed576a2020-10-20 06:12:07 -04002701 if (!mm_is_protected(mm))
2702 return;
Christian Borntraeger12748002019-12-16 10:48:11 -05002703 /*
2704 * we might be called during
2705 * reset: we walk the pages and clear
2706 * close of all kvm file descriptors: we walk the pages and clear
2707 * exit of process on fd closure: vma already gone, do nothing
2708 */
2709 if (!mmget_not_zero(mm))
2710 return;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002711 mmap_read_lock(mm);
Christian Borntraeger12748002019-12-16 10:48:11 -05002712 walk_page_range(mm, 0, TASK_SIZE, &reset_acc_walk_ops, NULL);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002713 mmap_read_unlock(mm);
Christian Borntraeger12748002019-12-16 10:48:11 -05002714 mmput(mm);
2715}
2716EXPORT_SYMBOL_GPL(s390_reset_acc);