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