]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - arch/s390/kvm/vsie.c
KVM: s390: vsie: support guest-storage-limit-suppression
[mirror_ubuntu-zesty-kernel.git] / arch / s390 / kvm / vsie.c
1 /*
2 * kvm nested virtualization support for s390x
3 *
4 * Copyright IBM Corp. 2016
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License (version 2 only)
8 * as published by the Free Software Foundation.
9 *
10 * Author(s): David Hildenbrand <dahi@linux.vnet.ibm.com>
11 */
12 #include <linux/vmalloc.h>
13 #include <linux/kvm_host.h>
14 #include <linux/bug.h>
15 #include <linux/list.h>
16 #include <linux/bitmap.h>
17 #include <asm/gmap.h>
18 #include <asm/mmu_context.h>
19 #include <asm/sclp.h>
20 #include <asm/nmi.h>
21 #include <asm/dis.h>
22 #include "kvm-s390.h"
23 #include "gaccess.h"
24
25 struct vsie_page {
26 struct kvm_s390_sie_block scb_s; /* 0x0000 */
27 /* the pinned originial scb */
28 struct kvm_s390_sie_block *scb_o; /* 0x0200 */
29 /* the shadow gmap in use by the vsie_page */
30 struct gmap *gmap; /* 0x0208 */
31 __u8 reserved[0x0700 - 0x0210]; /* 0x0210 */
32 struct kvm_s390_crypto_cb crycb; /* 0x0700 */
33 __u8 fac[S390_ARCH_FAC_LIST_SIZE_BYTE]; /* 0x0800 */
34 } __packed;
35
36 /* trigger a validity icpt for the given scb */
37 static int set_validity_icpt(struct kvm_s390_sie_block *scb,
38 __u16 reason_code)
39 {
40 scb->ipa = 0x1000;
41 scb->ipb = ((__u32) reason_code) << 16;
42 scb->icptcode = ICPT_VALIDITY;
43 return 1;
44 }
45
46 /* mark the prefix as unmapped, this will block the VSIE */
47 static void prefix_unmapped(struct vsie_page *vsie_page)
48 {
49 atomic_or(PROG_REQUEST, &vsie_page->scb_s.prog20);
50 }
51
52 /* mark the prefix as unmapped and wait until the VSIE has been left */
53 static void prefix_unmapped_sync(struct vsie_page *vsie_page)
54 {
55 prefix_unmapped(vsie_page);
56 if (vsie_page->scb_s.prog0c & PROG_IN_SIE)
57 atomic_or(CPUSTAT_STOP_INT, &vsie_page->scb_s.cpuflags);
58 while (vsie_page->scb_s.prog0c & PROG_IN_SIE)
59 cpu_relax();
60 }
61
62 /* mark the prefix as mapped, this will allow the VSIE to run */
63 static void prefix_mapped(struct vsie_page *vsie_page)
64 {
65 atomic_andnot(PROG_REQUEST, &vsie_page->scb_s.prog20);
66 }
67
68 /* test if the prefix is mapped into the gmap shadow */
69 static int prefix_is_mapped(struct vsie_page *vsie_page)
70 {
71 return !(atomic_read(&vsie_page->scb_s.prog20) & PROG_REQUEST);
72 }
73
74 /* copy the updated intervention request bits into the shadow scb */
75 static void update_intervention_requests(struct vsie_page *vsie_page)
76 {
77 const int bits = CPUSTAT_STOP_INT | CPUSTAT_IO_INT | CPUSTAT_EXT_INT;
78 int cpuflags;
79
80 cpuflags = atomic_read(&vsie_page->scb_o->cpuflags);
81 atomic_andnot(bits, &vsie_page->scb_s.cpuflags);
82 atomic_or(cpuflags & bits, &vsie_page->scb_s.cpuflags);
83 }
84
85 /* shadow (filter and validate) the cpuflags */
86 static int prepare_cpuflags(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
87 {
88 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
89 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
90 int newflags, cpuflags = atomic_read(&scb_o->cpuflags);
91
92 /* we don't allow ESA/390 guests */
93 if (!(cpuflags & CPUSTAT_ZARCH))
94 return set_validity_icpt(scb_s, 0x0001U);
95
96 if (cpuflags & (CPUSTAT_RRF | CPUSTAT_MCDS))
97 return set_validity_icpt(scb_s, 0x0001U);
98 else if (cpuflags & (CPUSTAT_SLSV | CPUSTAT_SLSR))
99 return set_validity_icpt(scb_s, 0x0007U);
100
101 /* intervention requests will be set later */
102 newflags = CPUSTAT_ZARCH;
103 if (cpuflags & CPUSTAT_GED && test_kvm_facility(vcpu->kvm, 8))
104 newflags |= CPUSTAT_GED;
105 if (cpuflags & CPUSTAT_GED2 && test_kvm_facility(vcpu->kvm, 78)) {
106 if (cpuflags & CPUSTAT_GED)
107 return set_validity_icpt(scb_s, 0x0001U);
108 newflags |= CPUSTAT_GED2;
109 }
110 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_GPERE))
111 newflags |= cpuflags & CPUSTAT_P;
112 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_GSLS))
113 newflags |= cpuflags & CPUSTAT_SM;
114
115 atomic_set(&scb_s->cpuflags, newflags);
116 return 0;
117 }
118
119 /*
120 * Create a shadow copy of the crycb block and setup key wrapping, if
121 * requested for guest 3 and enabled for guest 2.
122 *
123 * We only accept format-1 (no AP in g2), but convert it into format-2
124 * There is nothing to do for format-0.
125 *
126 * Returns: - 0 if shadowed or nothing to do
127 * - > 0 if control has to be given to guest 2
128 */
129 static int shadow_crycb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
130 {
131 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
132 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
133 u32 crycb_addr = scb_o->crycbd & 0x7ffffff8U;
134 unsigned long *b1, *b2;
135 u8 ecb3_flags;
136
137 scb_s->crycbd = 0;
138 if (!(scb_o->crycbd & vcpu->arch.sie_block->crycbd & CRYCB_FORMAT1))
139 return 0;
140 /* format-1 is supported with message-security-assist extension 3 */
141 if (!test_kvm_facility(vcpu->kvm, 76))
142 return 0;
143 /* we may only allow it if enabled for guest 2 */
144 ecb3_flags = scb_o->ecb3 & vcpu->arch.sie_block->ecb3 &
145 (ECB3_AES | ECB3_DEA);
146 if (!ecb3_flags)
147 return 0;
148
149 if ((crycb_addr & PAGE_MASK) != ((crycb_addr + 128) & PAGE_MASK))
150 return set_validity_icpt(scb_s, 0x003CU);
151 else if (!crycb_addr)
152 return set_validity_icpt(scb_s, 0x0039U);
153
154 /* copy only the wrapping keys */
155 if (read_guest_real(vcpu, crycb_addr + 72, &vsie_page->crycb, 56))
156 return set_validity_icpt(scb_s, 0x0035U);
157
158 scb_s->ecb3 |= ecb3_flags;
159 scb_s->crycbd = ((__u32)(__u64) &vsie_page->crycb) | CRYCB_FORMAT1 |
160 CRYCB_FORMAT2;
161
162 /* xor both blocks in one run */
163 b1 = (unsigned long *) vsie_page->crycb.dea_wrapping_key_mask;
164 b2 = (unsigned long *)
165 vcpu->kvm->arch.crypto.crycb->dea_wrapping_key_mask;
166 /* as 56%8 == 0, bitmap_xor won't overwrite any data */
167 bitmap_xor(b1, b1, b2, BITS_PER_BYTE * 56);
168 return 0;
169 }
170
171 /* shadow (round up/down) the ibc to avoid validity icpt */
172 static void prepare_ibc(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
173 {
174 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
175 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
176 __u64 min_ibc = (sclp.ibc >> 16) & 0x0fffU;
177
178 scb_s->ibc = 0;
179 /* ibc installed in g2 and requested for g3 */
180 if (vcpu->kvm->arch.model.ibc && (scb_o->ibc & 0x0fffU)) {
181 scb_s->ibc = scb_o->ibc & 0x0fffU;
182 /* takte care of the minimum ibc level of the machine */
183 if (scb_s->ibc < min_ibc)
184 scb_s->ibc = min_ibc;
185 /* take care of the maximum ibc level set for the guest */
186 if (scb_s->ibc > vcpu->kvm->arch.model.ibc)
187 scb_s->ibc = vcpu->kvm->arch.model.ibc;
188 }
189 }
190
191 /* unshadow the scb, copying parameters back to the real scb */
192 static void unshadow_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
193 {
194 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
195 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
196
197 /* interception */
198 scb_o->icptcode = scb_s->icptcode;
199 scb_o->icptstatus = scb_s->icptstatus;
200 scb_o->ipa = scb_s->ipa;
201 scb_o->ipb = scb_s->ipb;
202 scb_o->gbea = scb_s->gbea;
203
204 /* timer */
205 scb_o->cputm = scb_s->cputm;
206 scb_o->ckc = scb_s->ckc;
207 scb_o->todpr = scb_s->todpr;
208
209 /* guest state */
210 scb_o->gpsw = scb_s->gpsw;
211 scb_o->gg14 = scb_s->gg14;
212 scb_o->gg15 = scb_s->gg15;
213 memcpy(scb_o->gcr, scb_s->gcr, 128);
214 scb_o->pp = scb_s->pp;
215
216 /* interrupt intercept */
217 switch (scb_s->icptcode) {
218 case ICPT_PROGI:
219 case ICPT_INSTPROGI:
220 case ICPT_EXTINT:
221 memcpy((void *)((u64)scb_o + 0xc0),
222 (void *)((u64)scb_s + 0xc0), 0xf0 - 0xc0);
223 break;
224 case ICPT_PARTEXEC:
225 /* MVPG only */
226 memcpy((void *)((u64)scb_o + 0xc0),
227 (void *)((u64)scb_s + 0xc0), 0xd0 - 0xc0);
228 break;
229 }
230
231 if (scb_s->ihcpu != 0xffffU)
232 scb_o->ihcpu = scb_s->ihcpu;
233 }
234
235 /*
236 * Setup the shadow scb by copying and checking the relevant parts of the g2
237 * provided scb.
238 *
239 * Returns: - 0 if the scb has been shadowed
240 * - > 0 if control has to be given to guest 2
241 */
242 static int shadow_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
243 {
244 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
245 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
246 bool had_tx = scb_s->ecb & 0x10U;
247 unsigned long new_mso = 0;
248 int rc;
249
250 /* make sure we don't have any leftovers when reusing the scb */
251 scb_s->icptcode = 0;
252 scb_s->eca = 0;
253 scb_s->ecb = 0;
254 scb_s->ecb2 = 0;
255 scb_s->ecb3 = 0;
256 scb_s->ecd = 0;
257 scb_s->fac = 0;
258
259 rc = prepare_cpuflags(vcpu, vsie_page);
260 if (rc)
261 goto out;
262
263 /* timer */
264 scb_s->cputm = scb_o->cputm;
265 scb_s->ckc = scb_o->ckc;
266 scb_s->todpr = scb_o->todpr;
267 scb_s->epoch = scb_o->epoch;
268
269 /* guest state */
270 scb_s->gpsw = scb_o->gpsw;
271 scb_s->gg14 = scb_o->gg14;
272 scb_s->gg15 = scb_o->gg15;
273 memcpy(scb_s->gcr, scb_o->gcr, 128);
274 scb_s->pp = scb_o->pp;
275
276 /* interception / execution handling */
277 scb_s->gbea = scb_o->gbea;
278 scb_s->lctl = scb_o->lctl;
279 scb_s->svcc = scb_o->svcc;
280 scb_s->ictl = scb_o->ictl;
281 /*
282 * SKEY handling functions can't deal with false setting of PTE invalid
283 * bits. Therefore we cannot provide interpretation and would later
284 * have to provide own emulation handlers.
285 */
286 scb_s->ictl |= ICTL_ISKE | ICTL_SSKE | ICTL_RRBE;
287 scb_s->icpua = scb_o->icpua;
288
289 if (!(atomic_read(&scb_s->cpuflags) & CPUSTAT_SM))
290 new_mso = scb_o->mso & 0xfffffffffff00000UL;
291 /* if the hva of the prefix changes, we have to remap the prefix */
292 if (scb_s->mso != new_mso || scb_s->prefix != scb_o->prefix)
293 prefix_unmapped(vsie_page);
294 /* SIE will do mso/msl validity and exception checks for us */
295 scb_s->msl = scb_o->msl & 0xfffffffffff00000UL;
296 scb_s->mso = new_mso;
297 scb_s->prefix = scb_o->prefix;
298
299 /* We have to definetly flush the tlb if this scb never ran */
300 if (scb_s->ihcpu != 0xffffU)
301 scb_s->ihcpu = scb_o->ihcpu;
302
303 /* MVPG and Protection Exception Interpretation are always available */
304 scb_s->eca |= scb_o->eca & 0x01002000U;
305 /* Host-protection-interruption introduced with ESOP */
306 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_ESOP))
307 scb_s->ecb |= scb_o->ecb & 0x02U;
308 /* transactional execution */
309 if (test_kvm_facility(vcpu->kvm, 73)) {
310 /* remap the prefix is tx is toggled on */
311 if ((scb_o->ecb & 0x10U) && !had_tx)
312 prefix_unmapped(vsie_page);
313 scb_s->ecb |= scb_o->ecb & 0x10U;
314 }
315 /* SIMD */
316 if (test_kvm_facility(vcpu->kvm, 129)) {
317 scb_s->eca |= scb_o->eca & 0x00020000U;
318 scb_s->ecd |= scb_o->ecd & 0x20000000U;
319 }
320 /* Run-time-Instrumentation */
321 if (test_kvm_facility(vcpu->kvm, 64))
322 scb_s->ecb3 |= scb_o->ecb3 & 0x01U;
323 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_SIIF))
324 scb_s->eca |= scb_o->eca & 0x00000001U;
325
326 prepare_ibc(vcpu, vsie_page);
327 rc = shadow_crycb(vcpu, vsie_page);
328 out:
329 if (rc)
330 unshadow_scb(vcpu, vsie_page);
331 return rc;
332 }
333
334 void kvm_s390_vsie_gmap_notifier(struct gmap *gmap, unsigned long start,
335 unsigned long end)
336 {
337 struct kvm *kvm = gmap->private;
338 struct vsie_page *cur;
339 unsigned long prefix;
340 struct page *page;
341 int i;
342
343 if (!gmap_is_shadow(gmap))
344 return;
345 if (start >= 1UL << 31)
346 /* We are only interested in prefix pages */
347 return;
348
349 /*
350 * Only new shadow blocks are added to the list during runtime,
351 * therefore we can safely reference them all the time.
352 */
353 for (i = 0; i < kvm->arch.vsie.page_count; i++) {
354 page = READ_ONCE(kvm->arch.vsie.pages[i]);
355 if (!page)
356 continue;
357 cur = page_to_virt(page);
358 if (READ_ONCE(cur->gmap) != gmap)
359 continue;
360 prefix = cur->scb_s.prefix << GUEST_PREFIX_SHIFT;
361 /* with mso/msl, the prefix lies at an offset */
362 prefix += cur->scb_s.mso;
363 if (prefix <= end && start <= prefix + 2 * PAGE_SIZE - 1)
364 prefix_unmapped_sync(cur);
365 }
366 }
367
368 /*
369 * Map the first prefix page and if tx is enabled also the second prefix page.
370 *
371 * The prefix will be protected, a gmap notifier will inform about unmaps.
372 * The shadow scb must not be executed until the prefix is remapped, this is
373 * guaranteed by properly handling PROG_REQUEST.
374 *
375 * Returns: - 0 on if successfully mapped or already mapped
376 * - > 0 if control has to be given to guest 2
377 * - -EAGAIN if the caller can retry immediately
378 * - -ENOMEM if out of memory
379 */
380 static int map_prefix(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
381 {
382 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
383 u64 prefix = scb_s->prefix << GUEST_PREFIX_SHIFT;
384 int rc;
385
386 if (prefix_is_mapped(vsie_page))
387 return 0;
388
389 /* mark it as mapped so we can catch any concurrent unmappers */
390 prefix_mapped(vsie_page);
391
392 /* with mso/msl, the prefix lies at offset *mso* */
393 prefix += scb_s->mso;
394
395 rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap, prefix);
396 if (!rc && (scb_s->ecb & 0x10U))
397 rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap,
398 prefix + PAGE_SIZE);
399 /*
400 * We don't have to mprotect, we will be called for all unshadows.
401 * SIE will detect if protection applies and trigger a validity.
402 */
403 if (rc)
404 prefix_unmapped(vsie_page);
405 if (rc > 0 || rc == -EFAULT)
406 rc = set_validity_icpt(scb_s, 0x0037U);
407 return rc;
408 }
409
410 /*
411 * Pin the guest page given by gpa and set hpa to the pinned host address.
412 * Will always be pinned writable.
413 *
414 * Returns: - 0 on success
415 * - -EINVAL if the gpa is not valid guest storage
416 * - -ENOMEM if out of memory
417 */
418 static int pin_guest_page(struct kvm *kvm, gpa_t gpa, hpa_t *hpa)
419 {
420 struct page *page;
421 hva_t hva;
422 int rc;
423
424 hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
425 if (kvm_is_error_hva(hva))
426 return -EINVAL;
427 rc = get_user_pages_fast(hva, 1, 1, &page);
428 if (rc < 0)
429 return rc;
430 else if (rc != 1)
431 return -ENOMEM;
432 *hpa = (hpa_t) page_to_virt(page) + (gpa & ~PAGE_MASK);
433 return 0;
434 }
435
436 /* Unpins a page previously pinned via pin_guest_page, marking it as dirty. */
437 static void unpin_guest_page(struct kvm *kvm, gpa_t gpa, hpa_t hpa)
438 {
439 struct page *page;
440
441 page = virt_to_page(hpa);
442 set_page_dirty_lock(page);
443 put_page(page);
444 /* mark the page always as dirty for migration */
445 mark_page_dirty(kvm, gpa_to_gfn(gpa));
446 }
447
448 /* unpin all blocks previously pinned by pin_blocks(), marking them dirty */
449 static void unpin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
450 {
451 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
452 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
453 hpa_t hpa;
454 gpa_t gpa;
455
456 hpa = (u64) scb_s->scaoh << 32 | scb_s->scaol;
457 if (hpa) {
458 gpa = scb_o->scaol & ~0xfUL;
459 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_64BSCAO))
460 gpa |= (u64) scb_o->scaoh << 32;
461 unpin_guest_page(vcpu->kvm, gpa, hpa);
462 scb_s->scaol = 0;
463 scb_s->scaoh = 0;
464 }
465
466 hpa = scb_s->itdba;
467 if (hpa) {
468 gpa = scb_o->itdba & ~0xffUL;
469 unpin_guest_page(vcpu->kvm, gpa, hpa);
470 scb_s->itdba = 0;
471 }
472
473 hpa = scb_s->gvrd;
474 if (hpa) {
475 gpa = scb_o->gvrd & ~0x1ffUL;
476 unpin_guest_page(vcpu->kvm, gpa, hpa);
477 scb_s->gvrd = 0;
478 }
479
480 hpa = scb_s->riccbd;
481 if (hpa) {
482 gpa = scb_o->riccbd & ~0x3fUL;
483 unpin_guest_page(vcpu->kvm, gpa, hpa);
484 scb_s->riccbd = 0;
485 }
486 }
487
488 /*
489 * Instead of shadowing some blocks, we can simply forward them because the
490 * addresses in the scb are 64 bit long.
491 *
492 * This works as long as the data lies in one page. If blocks ever exceed one
493 * page, we have to fall back to shadowing.
494 *
495 * As we reuse the sca, the vcpu pointers contained in it are invalid. We must
496 * therefore not enable any facilities that access these pointers (e.g. SIGPIF).
497 *
498 * Returns: - 0 if all blocks were pinned.
499 * - > 0 if control has to be given to guest 2
500 * - -ENOMEM if out of memory
501 */
502 static int pin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
503 {
504 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
505 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
506 hpa_t hpa;
507 gpa_t gpa;
508 int rc = 0;
509
510 gpa = scb_o->scaol & ~0xfUL;
511 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_64BSCAO))
512 gpa |= (u64) scb_o->scaoh << 32;
513 if (gpa) {
514 if (!(gpa & ~0x1fffUL))
515 rc = set_validity_icpt(scb_s, 0x0038U);
516 else if ((gpa & ~0x1fffUL) == kvm_s390_get_prefix(vcpu))
517 rc = set_validity_icpt(scb_s, 0x0011U);
518 else if ((gpa & PAGE_MASK) !=
519 ((gpa + sizeof(struct bsca_block) - 1) & PAGE_MASK))
520 rc = set_validity_icpt(scb_s, 0x003bU);
521 if (!rc) {
522 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
523 if (rc == -EINVAL)
524 rc = set_validity_icpt(scb_s, 0x0034U);
525 }
526 if (rc)
527 goto unpin;
528 scb_s->scaoh = (u32)((u64)hpa >> 32);
529 scb_s->scaol = (u32)(u64)hpa;
530 }
531
532 gpa = scb_o->itdba & ~0xffUL;
533 if (gpa && (scb_s->ecb & 0x10U)) {
534 if (!(gpa & ~0x1fffU)) {
535 rc = set_validity_icpt(scb_s, 0x0080U);
536 goto unpin;
537 }
538 /* 256 bytes cannot cross page boundaries */
539 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
540 if (rc == -EINVAL)
541 rc = set_validity_icpt(scb_s, 0x0080U);
542 if (rc)
543 goto unpin;
544 scb_s->itdba = hpa;
545 }
546
547 gpa = scb_o->gvrd & ~0x1ffUL;
548 if (gpa && (scb_s->eca & 0x00020000U) &&
549 !(scb_s->ecd & 0x20000000U)) {
550 if (!(gpa & ~0x1fffUL)) {
551 rc = set_validity_icpt(scb_s, 0x1310U);
552 goto unpin;
553 }
554 /*
555 * 512 bytes vector registers cannot cross page boundaries
556 * if this block gets bigger, we have to shadow it.
557 */
558 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
559 if (rc == -EINVAL)
560 rc = set_validity_icpt(scb_s, 0x1310U);
561 if (rc)
562 goto unpin;
563 scb_s->gvrd = hpa;
564 }
565
566 gpa = scb_o->riccbd & ~0x3fUL;
567 if (gpa && (scb_s->ecb3 & 0x01U)) {
568 if (!(gpa & ~0x1fffUL)) {
569 rc = set_validity_icpt(scb_s, 0x0043U);
570 goto unpin;
571 }
572 /* 64 bytes cannot cross page boundaries */
573 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
574 if (rc == -EINVAL)
575 rc = set_validity_icpt(scb_s, 0x0043U);
576 /* Validity 0x0044 will be checked by SIE */
577 if (rc)
578 goto unpin;
579 scb_s->gvrd = hpa;
580 }
581 return 0;
582 unpin:
583 unpin_blocks(vcpu, vsie_page);
584 return rc;
585 }
586
587 /* unpin the scb provided by guest 2, marking it as dirty */
588 static void unpin_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page,
589 gpa_t gpa)
590 {
591 hpa_t hpa = (hpa_t) vsie_page->scb_o;
592
593 if (hpa)
594 unpin_guest_page(vcpu->kvm, gpa, hpa);
595 vsie_page->scb_o = NULL;
596 }
597
598 /*
599 * Pin the scb at gpa provided by guest 2 at vsie_page->scb_o.
600 *
601 * Returns: - 0 if the scb was pinned.
602 * - > 0 if control has to be given to guest 2
603 * - -ENOMEM if out of memory
604 */
605 static int pin_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page,
606 gpa_t gpa)
607 {
608 hpa_t hpa;
609 int rc;
610
611 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
612 if (rc == -EINVAL) {
613 rc = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
614 if (!rc)
615 rc = 1;
616 }
617 if (!rc)
618 vsie_page->scb_o = (struct kvm_s390_sie_block *) hpa;
619 return rc;
620 }
621
622 /*
623 * Inject a fault into guest 2.
624 *
625 * Returns: - > 0 if control has to be given to guest 2
626 * < 0 if an error occurred during injection.
627 */
628 static int inject_fault(struct kvm_vcpu *vcpu, __u16 code, __u64 vaddr,
629 bool write_flag)
630 {
631 struct kvm_s390_pgm_info pgm = {
632 .code = code,
633 .trans_exc_code =
634 /* 0-51: virtual address */
635 (vaddr & 0xfffffffffffff000UL) |
636 /* 52-53: store / fetch */
637 (((unsigned int) !write_flag) + 1) << 10,
638 /* 62-63: asce id (alway primary == 0) */
639 .exc_access_id = 0, /* always primary */
640 .op_access_id = 0, /* not MVPG */
641 };
642 int rc;
643
644 if (code == PGM_PROTECTION)
645 pgm.trans_exc_code |= 0x4UL;
646
647 rc = kvm_s390_inject_prog_irq(vcpu, &pgm);
648 return rc ? rc : 1;
649 }
650
651 /*
652 * Handle a fault during vsie execution on a gmap shadow.
653 *
654 * Returns: - 0 if the fault was resolved
655 * - > 0 if control has to be given to guest 2
656 * - < 0 if an error occurred
657 */
658 static int handle_fault(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
659 {
660 int rc;
661
662 if (current->thread.gmap_int_code == PGM_PROTECTION)
663 /* we can directly forward all protection exceptions */
664 return inject_fault(vcpu, PGM_PROTECTION,
665 current->thread.gmap_addr, 1);
666
667 rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap,
668 current->thread.gmap_addr);
669 if (rc > 0) {
670 rc = inject_fault(vcpu, rc,
671 current->thread.gmap_addr,
672 current->thread.gmap_write_flag);
673 }
674 return rc;
675 }
676
677 static inline void clear_vsie_icpt(struct vsie_page *vsie_page)
678 {
679 vsie_page->scb_s.icptcode = 0;
680 }
681
682 /* rewind the psw and clear the vsie icpt, so we can retry execution */
683 static void retry_vsie_icpt(struct vsie_page *vsie_page)
684 {
685 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
686 int ilen = insn_length(scb_s->ipa >> 8);
687
688 /* take care of EXECUTE instructions */
689 if (scb_s->icptstatus & 1) {
690 ilen = (scb_s->icptstatus >> 4) & 0x6;
691 if (!ilen)
692 ilen = 4;
693 }
694 scb_s->gpsw.addr = __rewind_psw(scb_s->gpsw, ilen);
695 clear_vsie_icpt(vsie_page);
696 }
697
698 /*
699 * Try to shadow + enable the guest 2 provided facility list.
700 * Retry instruction execution if enabled for and provided by guest 2.
701 *
702 * Returns: - 0 if handled (retry or guest 2 icpt)
703 * - > 0 if control has to be given to guest 2
704 */
705 static int handle_stfle(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
706 {
707 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
708 __u32 fac = vsie_page->scb_o->fac & 0x7ffffff8U;
709
710 if (fac && test_kvm_facility(vcpu->kvm, 7)) {
711 retry_vsie_icpt(vsie_page);
712 if (read_guest_real(vcpu, fac, &vsie_page->fac,
713 sizeof(vsie_page->fac)))
714 return set_validity_icpt(scb_s, 0x1090U);
715 scb_s->fac = (__u32)(__u64) &vsie_page->fac;
716 }
717 return 0;
718 }
719
720 /*
721 * Run the vsie on a shadow scb and a shadow gmap, without any further
722 * sanity checks, handling SIE faults.
723 *
724 * Returns: - 0 everything went fine
725 * - > 0 if control has to be given to guest 2
726 * - < 0 if an error occurred
727 */
728 static int do_vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
729 {
730 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
731 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
732 int rc;
733
734 if (need_resched())
735 schedule();
736 if (test_cpu_flag(CIF_MCCK_PENDING))
737 s390_handle_mcck();
738
739 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
740 local_irq_disable();
741 kvm_guest_enter();
742 local_irq_enable();
743
744 rc = sie64a(scb_s, vcpu->run->s.regs.gprs);
745
746 local_irq_disable();
747 kvm_guest_exit();
748 local_irq_enable();
749 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
750
751 if (rc > 0)
752 rc = 0; /* we could still have an icpt */
753 else if (rc == -EFAULT)
754 return handle_fault(vcpu, vsie_page);
755
756 switch (scb_s->icptcode) {
757 case ICPT_INST:
758 if (scb_s->ipa == 0xb2b0)
759 rc = handle_stfle(vcpu, vsie_page);
760 break;
761 case ICPT_STOP:
762 /* stop not requested by g2 - must have been a kick */
763 if (!(atomic_read(&scb_o->cpuflags) & CPUSTAT_STOP_INT))
764 clear_vsie_icpt(vsie_page);
765 break;
766 case ICPT_VALIDITY:
767 if ((scb_s->ipa & 0xf000) != 0xf000)
768 scb_s->ipa += 0x1000;
769 break;
770 }
771 return rc;
772 }
773
774 static void release_gmap_shadow(struct vsie_page *vsie_page)
775 {
776 if (vsie_page->gmap)
777 gmap_put(vsie_page->gmap);
778 WRITE_ONCE(vsie_page->gmap, NULL);
779 prefix_unmapped(vsie_page);
780 }
781
782 static int acquire_gmap_shadow(struct kvm_vcpu *vcpu,
783 struct vsie_page *vsie_page)
784 {
785 unsigned long asce;
786 union ctlreg0 cr0;
787 struct gmap *gmap;
788 int edat;
789
790 asce = vcpu->arch.sie_block->gcr[1];
791 cr0.val = vcpu->arch.sie_block->gcr[0];
792 edat = cr0.edat && test_kvm_facility(vcpu->kvm, 8);
793 edat += edat && test_kvm_facility(vcpu->kvm, 78);
794
795 /*
796 * ASCE or EDAT could have changed since last icpt, or the gmap
797 * we're holding has been unshadowed. If the gmap is still valid,
798 * we can safely reuse it.
799 */
800 if (vsie_page->gmap && gmap_shadow_valid(vsie_page->gmap, asce, edat))
801 return 0;
802
803 /* release the old shadow - if any, and mark the prefix as unmapped */
804 release_gmap_shadow(vsie_page);
805 gmap = gmap_shadow(vcpu->arch.gmap, asce, edat);
806 if (IS_ERR(gmap))
807 return PTR_ERR(gmap);
808 gmap->private = vcpu->kvm;
809 WRITE_ONCE(vsie_page->gmap, gmap);
810 return 0;
811 }
812
813 /*
814 * Run the vsie on a shadowed scb, managing the gmap shadow, handling
815 * prefix pages and faults.
816 *
817 * Returns: - 0 if no errors occurred
818 * - > 0 if control has to be given to guest 2
819 * - -ENOMEM if out of memory
820 */
821 static int vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
822 {
823 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
824 int rc = 0;
825
826 while (1) {
827 rc = acquire_gmap_shadow(vcpu, vsie_page);
828 if (!rc)
829 rc = map_prefix(vcpu, vsie_page);
830 if (!rc) {
831 gmap_enable(vsie_page->gmap);
832 update_intervention_requests(vsie_page);
833 rc = do_vsie_run(vcpu, vsie_page);
834 gmap_enable(vcpu->arch.gmap);
835 }
836
837 if (rc == -EAGAIN)
838 rc = 0;
839 if (rc || scb_s->icptcode || signal_pending(current) ||
840 kvm_s390_vcpu_has_irq(vcpu, 0))
841 break;
842 };
843
844 if (rc == -EFAULT) {
845 /*
846 * Addressing exceptions are always presentes as intercepts.
847 * As addressing exceptions are suppressing and our guest 3 PSW
848 * points at the responsible instruction, we have to
849 * forward the PSW and set the ilc. If we can't read guest 3
850 * instruction, we can use an arbitrary ilc. Let's always use
851 * ilen = 4 for now, so we can avoid reading in guest 3 virtual
852 * memory. (we could also fake the shadow so the hardware
853 * handles it).
854 */
855 scb_s->icptcode = ICPT_PROGI;
856 scb_s->iprcc = PGM_ADDRESSING;
857 scb_s->pgmilc = 4;
858 scb_s->gpsw.addr = __rewind_psw(scb_s->gpsw, 4);
859 }
860 return rc;
861 }
862
863 /*
864 * Get or create a vsie page for a scb address.
865 *
866 * Returns: - address of a vsie page (cached or new one)
867 * - NULL if the same scb address is already used by another VCPU
868 * - ERR_PTR(-ENOMEM) if out of memory
869 */
870 static struct vsie_page *get_vsie_page(struct kvm *kvm, unsigned long addr)
871 {
872 struct vsie_page *vsie_page;
873 struct page *page;
874 int nr_vcpus;
875
876 rcu_read_lock();
877 page = radix_tree_lookup(&kvm->arch.vsie.addr_to_page, addr >> 9);
878 rcu_read_unlock();
879 if (page) {
880 if (page_ref_inc_return(page) == 2)
881 return page_to_virt(page);
882 page_ref_dec(page);
883 }
884
885 /*
886 * We want at least #online_vcpus shadows, so every VCPU can execute
887 * the VSIE in parallel.
888 */
889 nr_vcpus = atomic_read(&kvm->online_vcpus);
890
891 mutex_lock(&kvm->arch.vsie.mutex);
892 if (kvm->arch.vsie.page_count < nr_vcpus) {
893 page = alloc_page(GFP_KERNEL | __GFP_ZERO | GFP_DMA);
894 if (!page) {
895 mutex_unlock(&kvm->arch.vsie.mutex);
896 return ERR_PTR(-ENOMEM);
897 }
898 page_ref_inc(page);
899 kvm->arch.vsie.pages[kvm->arch.vsie.page_count] = page;
900 kvm->arch.vsie.page_count++;
901 } else {
902 /* reuse an existing entry that belongs to nobody */
903 while (true) {
904 page = kvm->arch.vsie.pages[kvm->arch.vsie.next];
905 if (page_ref_inc_return(page) == 2)
906 break;
907 page_ref_dec(page);
908 kvm->arch.vsie.next++;
909 kvm->arch.vsie.next %= nr_vcpus;
910 }
911 radix_tree_delete(&kvm->arch.vsie.addr_to_page, page->index >> 9);
912 }
913 page->index = addr;
914 /* double use of the same address */
915 if (radix_tree_insert(&kvm->arch.vsie.addr_to_page, addr >> 9, page)) {
916 page_ref_dec(page);
917 mutex_unlock(&kvm->arch.vsie.mutex);
918 return NULL;
919 }
920 mutex_unlock(&kvm->arch.vsie.mutex);
921
922 vsie_page = page_to_virt(page);
923 memset(&vsie_page->scb_s, 0, sizeof(struct kvm_s390_sie_block));
924 release_gmap_shadow(vsie_page);
925 vsie_page->scb_s.ihcpu = 0xffffU;
926 return vsie_page;
927 }
928
929 /* put a vsie page acquired via get_vsie_page */
930 static void put_vsie_page(struct kvm *kvm, struct vsie_page *vsie_page)
931 {
932 struct page *page = pfn_to_page(__pa(vsie_page) >> PAGE_SHIFT);
933
934 page_ref_dec(page);
935 }
936
937 int kvm_s390_handle_vsie(struct kvm_vcpu *vcpu)
938 {
939 struct vsie_page *vsie_page;
940 unsigned long scb_addr;
941 int rc;
942
943 vcpu->stat.instruction_sie++;
944 if (!test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_SIEF2))
945 return -EOPNOTSUPP;
946 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
947 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
948
949 BUILD_BUG_ON(sizeof(struct vsie_page) != 4096);
950 scb_addr = kvm_s390_get_base_disp_s(vcpu, NULL);
951
952 /* 512 byte alignment */
953 if (unlikely(scb_addr & 0x1ffUL))
954 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
955
956 if (signal_pending(current) || kvm_s390_vcpu_has_irq(vcpu, 0))
957 return 0;
958
959 vsie_page = get_vsie_page(vcpu->kvm, scb_addr);
960 if (IS_ERR(vsie_page))
961 return PTR_ERR(vsie_page);
962 else if (!vsie_page)
963 /* double use of sie control block - simply do nothing */
964 return 0;
965
966 rc = pin_scb(vcpu, vsie_page, scb_addr);
967 if (rc)
968 goto out_put;
969 rc = shadow_scb(vcpu, vsie_page);
970 if (rc)
971 goto out_unpin_scb;
972 rc = pin_blocks(vcpu, vsie_page);
973 if (rc)
974 goto out_unshadow;
975 rc = vsie_run(vcpu, vsie_page);
976 unpin_blocks(vcpu, vsie_page);
977 out_unshadow:
978 unshadow_scb(vcpu, vsie_page);
979 out_unpin_scb:
980 unpin_scb(vcpu, vsie_page, scb_addr);
981 out_put:
982 put_vsie_page(vcpu->kvm, vsie_page);
983
984 return rc < 0 ? rc : 0;
985 }
986
987 /* Init the vsie data structures. To be called when a vm is initialized. */
988 void kvm_s390_vsie_init(struct kvm *kvm)
989 {
990 mutex_init(&kvm->arch.vsie.mutex);
991 INIT_RADIX_TREE(&kvm->arch.vsie.addr_to_page, GFP_KERNEL);
992 }
993
994 /* Destroy the vsie data structures. To be called when a vm is destroyed. */
995 void kvm_s390_vsie_destroy(struct kvm *kvm)
996 {
997 struct vsie_page *vsie_page;
998 struct page *page;
999 int i;
1000
1001 mutex_lock(&kvm->arch.vsie.mutex);
1002 for (i = 0; i < kvm->arch.vsie.page_count; i++) {
1003 page = kvm->arch.vsie.pages[i];
1004 kvm->arch.vsie.pages[i] = NULL;
1005 vsie_page = page_to_virt(page);
1006 release_gmap_shadow(vsie_page);
1007 /* free the radix tree entry */
1008 radix_tree_delete(&kvm->arch.vsie.addr_to_page, page->index >> 9);
1009 __free_page(page);
1010 }
1011 kvm->arch.vsie.page_count = 0;
1012 mutex_unlock(&kvm->arch.vsie.mutex);
1013 }