blob: ebc988ffd3e50cb44110a4d1e4154a42bc0507bb [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 Hildenbrand166ecb32015-11-25 11:13:32 +0100242 bool had_tx = scb_s->ecb & 0x10U;
David Hildenbrand06d68a62016-04-22 13:50:09 +0200243 unsigned long new_mso;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200244 int rc;
245
246 /* make sure we don't have any leftovers when reusing the scb */
247 scb_s->icptcode = 0;
248 scb_s->eca = 0;
249 scb_s->ecb = 0;
250 scb_s->ecb2 = 0;
251 scb_s->ecb3 = 0;
252 scb_s->ecd = 0;
David Hildenbrand66b630d2015-11-26 14:11:19 +0100253 scb_s->fac = 0;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200254
255 rc = prepare_cpuflags(vcpu, vsie_page);
256 if (rc)
257 goto out;
258
259 /* timer */
260 scb_s->cputm = scb_o->cputm;
261 scb_s->ckc = scb_o->ckc;
262 scb_s->todpr = scb_o->todpr;
263 scb_s->epoch = scb_o->epoch;
264
265 /* guest state */
266 scb_s->gpsw = scb_o->gpsw;
267 scb_s->gg14 = scb_o->gg14;
268 scb_s->gg15 = scb_o->gg15;
269 memcpy(scb_s->gcr, scb_o->gcr, 128);
270 scb_s->pp = scb_o->pp;
271
272 /* interception / execution handling */
273 scb_s->gbea = scb_o->gbea;
274 scb_s->lctl = scb_o->lctl;
275 scb_s->svcc = scb_o->svcc;
276 scb_s->ictl = scb_o->ictl;
277 /*
278 * SKEY handling functions can't deal with false setting of PTE invalid
279 * bits. Therefore we cannot provide interpretation and would later
280 * have to provide own emulation handlers.
281 */
282 scb_s->ictl |= ICTL_ISKE | ICTL_SSKE | ICTL_RRBE;
283 scb_s->icpua = scb_o->icpua;
284
David Hildenbrand06d68a62016-04-22 13:50:09 +0200285 new_mso = scb_o->mso & 0xfffffffffff00000UL;
286 /* if the hva of the prefix changes, we have to remap the prefix */
287 if (scb_s->mso != new_mso || scb_s->prefix != scb_o->prefix)
288 prefix_unmapped(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200289 /* SIE will do mso/msl validity and exception checks for us */
290 scb_s->msl = scb_o->msl & 0xfffffffffff00000UL;
David Hildenbrand06d68a62016-04-22 13:50:09 +0200291 scb_s->mso = new_mso;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200292 scb_s->prefix = scb_o->prefix;
293
294 /* We have to definetly flush the tlb if this scb never ran */
295 if (scb_s->ihcpu != 0xffffU)
296 scb_s->ihcpu = scb_o->ihcpu;
297
298 /* MVPG and Protection Exception Interpretation are always available */
299 scb_s->eca |= scb_o->eca & 0x01002000U;
David Hildenbrand4ceafa92015-11-27 12:34:28 +0100300 /* Host-protection-interruption introduced with ESOP */
301 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_ESOP))
302 scb_s->ecb |= scb_o->ecb & 0x02U;
David Hildenbrand166ecb32015-11-25 11:13:32 +0100303 /* transactional execution */
304 if (test_kvm_facility(vcpu->kvm, 73)) {
305 /* remap the prefix is tx is toggled on */
306 if ((scb_o->ecb & 0x10U) && !had_tx)
307 prefix_unmapped(vsie_page);
308 scb_s->ecb |= scb_o->ecb & 0x10U;
309 }
David Hildenbrandc9bc1ea2015-11-25 11:08:32 +0100310 /* SIMD */
311 if (test_kvm_facility(vcpu->kvm, 129)) {
312 scb_s->eca |= scb_o->eca & 0x00020000U;
313 scb_s->ecd |= scb_o->ecd & 0x20000000U;
314 }
David Hildenbrand588438c2016-01-26 12:51:06 +0100315 /* Run-time-Instrumentation */
316 if (test_kvm_facility(vcpu->kvm, 64))
317 scb_s->ecb3 |= scb_o->ecb3 & 0x01U;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200318
David Hildenbrand35736022016-02-19 10:11:24 +0100319 prepare_ibc(vcpu, vsie_page);
David Hildenbrandbbeaa582015-11-26 13:11:42 +0100320 rc = shadow_crycb(vcpu, vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200321out:
322 if (rc)
323 unshadow_scb(vcpu, vsie_page);
324 return rc;
325}
326
327void kvm_s390_vsie_gmap_notifier(struct gmap *gmap, unsigned long start,
328 unsigned long end)
329{
330 struct kvm *kvm = gmap->private;
331 struct vsie_page *cur;
332 unsigned long prefix;
333 struct page *page;
334 int i;
335
336 if (!gmap_is_shadow(gmap))
337 return;
338 if (start >= 1UL << 31)
339 /* We are only interested in prefix pages */
340 return;
341
342 /*
343 * Only new shadow blocks are added to the list during runtime,
344 * therefore we can safely reference them all the time.
345 */
346 for (i = 0; i < kvm->arch.vsie.page_count; i++) {
347 page = READ_ONCE(kvm->arch.vsie.pages[i]);
348 if (!page)
349 continue;
350 cur = page_to_virt(page);
351 if (READ_ONCE(cur->gmap) != gmap)
352 continue;
353 prefix = cur->scb_s.prefix << GUEST_PREFIX_SHIFT;
354 /* with mso/msl, the prefix lies at an offset */
355 prefix += cur->scb_s.mso;
David Hildenbrand166ecb32015-11-25 11:13:32 +0100356 if (prefix <= end && start <= prefix + 2 * PAGE_SIZE - 1)
David Hildenbranda3508fb2015-07-08 13:19:48 +0200357 prefix_unmapped_sync(cur);
358 }
359}
360
361/*
David Hildenbrand166ecb32015-11-25 11:13:32 +0100362 * Map the first prefix page and if tx is enabled also the second prefix page.
David Hildenbranda3508fb2015-07-08 13:19:48 +0200363 *
364 * The prefix will be protected, a gmap notifier will inform about unmaps.
365 * The shadow scb must not be executed until the prefix is remapped, this is
366 * guaranteed by properly handling PROG_REQUEST.
367 *
368 * Returns: - 0 on if successfully mapped or already mapped
369 * - > 0 if control has to be given to guest 2
370 * - -EAGAIN if the caller can retry immediately
371 * - -ENOMEM if out of memory
372 */
373static int map_prefix(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
374{
375 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
376 u64 prefix = scb_s->prefix << GUEST_PREFIX_SHIFT;
377 int rc;
378
David Hildenbrand06d68a62016-04-22 13:50:09 +0200379 if (prefix_is_mapped(vsie_page))
380 return 0;
381
David Hildenbranda3508fb2015-07-08 13:19:48 +0200382 /* mark it as mapped so we can catch any concurrent unmappers */
383 prefix_mapped(vsie_page);
384
385 /* with mso/msl, the prefix lies at offset *mso* */
386 prefix += scb_s->mso;
387
388 rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap, prefix);
David Hildenbrand166ecb32015-11-25 11:13:32 +0100389 if (!rc && (scb_s->ecb & 0x10U))
390 rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap,
391 prefix + PAGE_SIZE);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200392 /*
393 * We don't have to mprotect, we will be called for all unshadows.
394 * SIE will detect if protection applies and trigger a validity.
395 */
396 if (rc)
397 prefix_unmapped(vsie_page);
398 if (rc > 0 || rc == -EFAULT)
399 rc = set_validity_icpt(scb_s, 0x0037U);
400 return rc;
401}
402
403/*
404 * Pin the guest page given by gpa and set hpa to the pinned host address.
405 * Will always be pinned writable.
406 *
407 * Returns: - 0 on success
408 * - -EINVAL if the gpa is not valid guest storage
409 * - -ENOMEM if out of memory
410 */
411static int pin_guest_page(struct kvm *kvm, gpa_t gpa, hpa_t *hpa)
412{
413 struct page *page;
414 hva_t hva;
415 int rc;
416
417 hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
418 if (kvm_is_error_hva(hva))
419 return -EINVAL;
420 rc = get_user_pages_fast(hva, 1, 1, &page);
421 if (rc < 0)
422 return rc;
423 else if (rc != 1)
424 return -ENOMEM;
425 *hpa = (hpa_t) page_to_virt(page) + (gpa & ~PAGE_MASK);
426 return 0;
427}
428
429/* Unpins a page previously pinned via pin_guest_page, marking it as dirty. */
430static void unpin_guest_page(struct kvm *kvm, gpa_t gpa, hpa_t hpa)
431{
432 struct page *page;
433
434 page = virt_to_page(hpa);
435 set_page_dirty_lock(page);
436 put_page(page);
437 /* mark the page always as dirty for migration */
438 mark_page_dirty(kvm, gpa_to_gfn(gpa));
439}
440
441/* unpin all blocks previously pinned by pin_blocks(), marking them dirty */
442static void unpin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
443{
444 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
445 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
446 hpa_t hpa;
447 gpa_t gpa;
448
449 hpa = (u64) scb_s->scaoh << 32 | scb_s->scaol;
450 if (hpa) {
451 gpa = scb_o->scaol & ~0xfUL;
452 unpin_guest_page(vcpu->kvm, gpa, hpa);
453 scb_s->scaol = 0;
454 scb_s->scaoh = 0;
455 }
David Hildenbrand166ecb32015-11-25 11:13:32 +0100456
457 hpa = scb_s->itdba;
458 if (hpa) {
459 gpa = scb_o->itdba & ~0xffUL;
460 unpin_guest_page(vcpu->kvm, gpa, hpa);
461 scb_s->itdba = 0;
462 }
David Hildenbrandc9bc1ea2015-11-25 11:08:32 +0100463
464 hpa = scb_s->gvrd;
465 if (hpa) {
466 gpa = scb_o->gvrd & ~0x1ffUL;
467 unpin_guest_page(vcpu->kvm, gpa, hpa);
468 scb_s->gvrd = 0;
469 }
David Hildenbrand588438c2016-01-26 12:51:06 +0100470
471 hpa = scb_s->riccbd;
472 if (hpa) {
473 gpa = scb_o->riccbd & ~0x3fUL;
474 unpin_guest_page(vcpu->kvm, gpa, hpa);
475 scb_s->riccbd = 0;
476 }
David Hildenbranda3508fb2015-07-08 13:19:48 +0200477}
478
479/*
480 * Instead of shadowing some blocks, we can simply forward them because the
481 * addresses in the scb are 64 bit long.
482 *
483 * This works as long as the data lies in one page. If blocks ever exceed one
484 * page, we have to fall back to shadowing.
485 *
486 * As we reuse the sca, the vcpu pointers contained in it are invalid. We must
487 * therefore not enable any facilities that access these pointers (e.g. SIGPIF).
488 *
489 * Returns: - 0 if all blocks were pinned.
490 * - > 0 if control has to be given to guest 2
491 * - -ENOMEM if out of memory
492 */
493static int pin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
494{
495 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
496 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
497 hpa_t hpa;
498 gpa_t gpa;
499 int rc = 0;
500
501 gpa = scb_o->scaol & ~0xfUL;
502 if (gpa) {
503 if (!(gpa & ~0x1fffUL))
504 rc = set_validity_icpt(scb_s, 0x0038U);
505 else if ((gpa & ~0x1fffUL) == kvm_s390_get_prefix(vcpu))
506 rc = set_validity_icpt(scb_s, 0x0011U);
507 else if ((gpa & PAGE_MASK) !=
508 ((gpa + sizeof(struct bsca_block) - 1) & PAGE_MASK))
509 rc = set_validity_icpt(scb_s, 0x003bU);
510 if (!rc) {
511 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
512 if (rc == -EINVAL)
513 rc = set_validity_icpt(scb_s, 0x0034U);
514 }
515 if (rc)
516 goto unpin;
517 scb_s->scaoh = (u32)((u64)hpa >> 32);
518 scb_s->scaol = (u32)(u64)hpa;
519 }
David Hildenbrand166ecb32015-11-25 11:13:32 +0100520
521 gpa = scb_o->itdba & ~0xffUL;
522 if (gpa && (scb_s->ecb & 0x10U)) {
523 if (!(gpa & ~0x1fffU)) {
524 rc = set_validity_icpt(scb_s, 0x0080U);
525 goto unpin;
526 }
527 /* 256 bytes cannot cross page boundaries */
528 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
529 if (rc == -EINVAL)
530 rc = set_validity_icpt(scb_s, 0x0080U);
531 if (rc)
532 goto unpin;
533 scb_s->itdba = hpa;
534 }
David Hildenbrandc9bc1ea2015-11-25 11:08:32 +0100535
536 gpa = scb_o->gvrd & ~0x1ffUL;
537 if (gpa && (scb_s->eca & 0x00020000U) &&
538 !(scb_s->ecd & 0x20000000U)) {
539 if (!(gpa & ~0x1fffUL)) {
540 rc = set_validity_icpt(scb_s, 0x1310U);
541 goto unpin;
542 }
543 /*
544 * 512 bytes vector registers cannot cross page boundaries
545 * if this block gets bigger, we have to shadow it.
546 */
547 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
548 if (rc == -EINVAL)
549 rc = set_validity_icpt(scb_s, 0x1310U);
550 if (rc)
551 goto unpin;
552 scb_s->gvrd = hpa;
553 }
David Hildenbrand588438c2016-01-26 12:51:06 +0100554
555 gpa = scb_o->riccbd & ~0x3fUL;
556 if (gpa && (scb_s->ecb3 & 0x01U)) {
557 if (!(gpa & ~0x1fffUL)) {
558 rc = set_validity_icpt(scb_s, 0x0043U);
559 goto unpin;
560 }
561 /* 64 bytes cannot cross page boundaries */
562 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
563 if (rc == -EINVAL)
564 rc = set_validity_icpt(scb_s, 0x0043U);
565 /* Validity 0x0044 will be checked by SIE */
566 if (rc)
567 goto unpin;
568 scb_s->gvrd = hpa;
569 }
David Hildenbranda3508fb2015-07-08 13:19:48 +0200570 return 0;
571unpin:
572 unpin_blocks(vcpu, vsie_page);
573 return rc;
574}
575
576/* unpin the scb provided by guest 2, marking it as dirty */
577static void unpin_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page,
578 gpa_t gpa)
579{
580 hpa_t hpa = (hpa_t) vsie_page->scb_o;
581
582 if (hpa)
583 unpin_guest_page(vcpu->kvm, gpa, hpa);
584 vsie_page->scb_o = NULL;
585}
586
587/*
588 * Pin the scb at gpa provided by guest 2 at vsie_page->scb_o.
589 *
590 * Returns: - 0 if the scb was pinned.
591 * - > 0 if control has to be given to guest 2
592 * - -ENOMEM if out of memory
593 */
594static int pin_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page,
595 gpa_t gpa)
596{
597 hpa_t hpa;
598 int rc;
599
600 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
601 if (rc == -EINVAL) {
602 rc = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
603 if (!rc)
604 rc = 1;
605 }
606 if (!rc)
607 vsie_page->scb_o = (struct kvm_s390_sie_block *) hpa;
608 return rc;
609}
610
611/*
612 * Inject a fault into guest 2.
613 *
614 * Returns: - > 0 if control has to be given to guest 2
615 * < 0 if an error occurred during injection.
616 */
617static int inject_fault(struct kvm_vcpu *vcpu, __u16 code, __u64 vaddr,
618 bool write_flag)
619{
620 struct kvm_s390_pgm_info pgm = {
621 .code = code,
622 .trans_exc_code =
623 /* 0-51: virtual address */
624 (vaddr & 0xfffffffffffff000UL) |
625 /* 52-53: store / fetch */
626 (((unsigned int) !write_flag) + 1) << 10,
627 /* 62-63: asce id (alway primary == 0) */
628 .exc_access_id = 0, /* always primary */
629 .op_access_id = 0, /* not MVPG */
630 };
631 int rc;
632
633 if (code == PGM_PROTECTION)
634 pgm.trans_exc_code |= 0x4UL;
635
636 rc = kvm_s390_inject_prog_irq(vcpu, &pgm);
637 return rc ? rc : 1;
638}
639
640/*
641 * Handle a fault during vsie execution on a gmap shadow.
642 *
643 * Returns: - 0 if the fault was resolved
644 * - > 0 if control has to be given to guest 2
645 * - < 0 if an error occurred
646 */
647static int handle_fault(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
648{
649 int rc;
650
651 if (current->thread.gmap_int_code == PGM_PROTECTION)
652 /* we can directly forward all protection exceptions */
653 return inject_fault(vcpu, PGM_PROTECTION,
654 current->thread.gmap_addr, 1);
655
656 rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap,
657 current->thread.gmap_addr);
658 if (rc > 0) {
659 rc = inject_fault(vcpu, rc,
660 current->thread.gmap_addr,
661 current->thread.gmap_write_flag);
662 }
663 return rc;
664}
665
666static inline void clear_vsie_icpt(struct vsie_page *vsie_page)
667{
668 vsie_page->scb_s.icptcode = 0;
669}
670
David Hildenbrand66b630d2015-11-26 14:11:19 +0100671/* rewind the psw and clear the vsie icpt, so we can retry execution */
672static void retry_vsie_icpt(struct vsie_page *vsie_page)
673{
674 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
675 int ilen = insn_length(scb_s->ipa >> 8);
676
677 /* take care of EXECUTE instructions */
678 if (scb_s->icptstatus & 1) {
679 ilen = (scb_s->icptstatus >> 4) & 0x6;
680 if (!ilen)
681 ilen = 4;
682 }
683 scb_s->gpsw.addr = __rewind_psw(scb_s->gpsw, ilen);
684 clear_vsie_icpt(vsie_page);
685}
686
687/*
688 * Try to shadow + enable the guest 2 provided facility list.
689 * Retry instruction execution if enabled for and provided by guest 2.
690 *
691 * Returns: - 0 if handled (retry or guest 2 icpt)
692 * - > 0 if control has to be given to guest 2
693 */
694static int handle_stfle(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
695{
696 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
697 __u32 fac = vsie_page->scb_o->fac & 0x7ffffff8U;
698
699 if (fac && test_kvm_facility(vcpu->kvm, 7)) {
700 retry_vsie_icpt(vsie_page);
701 if (read_guest_real(vcpu, fac, &vsie_page->fac,
702 sizeof(vsie_page->fac)))
703 return set_validity_icpt(scb_s, 0x1090U);
704 scb_s->fac = (__u32)(__u64) &vsie_page->fac;
705 }
706 return 0;
707}
708
David Hildenbranda3508fb2015-07-08 13:19:48 +0200709/*
710 * Run the vsie on a shadow scb and a shadow gmap, without any further
711 * sanity checks, handling SIE faults.
712 *
713 * Returns: - 0 everything went fine
714 * - > 0 if control has to be given to guest 2
715 * - < 0 if an error occurred
716 */
717static int do_vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
718{
719 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
720 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
721 int rc;
722
723 if (need_resched())
724 schedule();
725 if (test_cpu_flag(CIF_MCCK_PENDING))
726 s390_handle_mcck();
727
728 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
729 local_irq_disable();
730 kvm_guest_enter();
731 local_irq_enable();
732
733 rc = sie64a(scb_s, vcpu->run->s.regs.gprs);
734
735 local_irq_disable();
736 kvm_guest_exit();
737 local_irq_enable();
738 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
739
740 if (rc > 0)
741 rc = 0; /* we could still have an icpt */
742 else if (rc == -EFAULT)
743 return handle_fault(vcpu, vsie_page);
744
745 switch (scb_s->icptcode) {
David Hildenbrand66b630d2015-11-26 14:11:19 +0100746 case ICPT_INST:
747 if (scb_s->ipa == 0xb2b0)
748 rc = handle_stfle(vcpu, vsie_page);
749 break;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200750 case ICPT_STOP:
751 /* stop not requested by g2 - must have been a kick */
752 if (!(atomic_read(&scb_o->cpuflags) & CPUSTAT_STOP_INT))
753 clear_vsie_icpt(vsie_page);
754 break;
755 case ICPT_VALIDITY:
756 if ((scb_s->ipa & 0xf000) != 0xf000)
757 scb_s->ipa += 0x1000;
758 break;
759 }
760 return rc;
761}
762
763static void release_gmap_shadow(struct vsie_page *vsie_page)
764{
765 if (vsie_page->gmap)
766 gmap_put(vsie_page->gmap);
767 WRITE_ONCE(vsie_page->gmap, NULL);
David Hildenbrand06d68a62016-04-22 13:50:09 +0200768 prefix_unmapped(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200769}
770
771static int acquire_gmap_shadow(struct kvm_vcpu *vcpu,
772 struct vsie_page *vsie_page)
773{
774 unsigned long asce;
775 union ctlreg0 cr0;
776 struct gmap *gmap;
777 int edat;
778
779 asce = vcpu->arch.sie_block->gcr[1];
780 cr0.val = vcpu->arch.sie_block->gcr[0];
781 edat = cr0.edat && test_kvm_facility(vcpu->kvm, 8);
782 edat += edat && test_kvm_facility(vcpu->kvm, 78);
783
David Hildenbrand06d68a62016-04-22 13:50:09 +0200784 /*
785 * ASCE or EDAT could have changed since last icpt, or the gmap
786 * we're holding has been unshadowed. If the gmap is still valid,
787 * we can safely reuse it.
788 */
789 if (vsie_page->gmap && gmap_shadow_valid(vsie_page->gmap, asce, edat))
790 return 0;
791
792 /* release the old shadow - if any, and mark the prefix as unmapped */
793 release_gmap_shadow(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200794 gmap = gmap_shadow(vcpu->arch.gmap, asce, edat);
795 if (IS_ERR(gmap))
796 return PTR_ERR(gmap);
797 gmap->private = vcpu->kvm;
798 WRITE_ONCE(vsie_page->gmap, gmap);
799 return 0;
800}
801
802/*
803 * Run the vsie on a shadowed scb, managing the gmap shadow, handling
804 * prefix pages and faults.
805 *
806 * Returns: - 0 if no errors occurred
807 * - > 0 if control has to be given to guest 2
808 * - -ENOMEM if out of memory
809 */
810static int vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
811{
812 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
813 int rc = 0;
814
815 while (1) {
816 rc = acquire_gmap_shadow(vcpu, vsie_page);
817 if (!rc)
818 rc = map_prefix(vcpu, vsie_page);
819 if (!rc) {
820 gmap_enable(vsie_page->gmap);
821 update_intervention_requests(vsie_page);
822 rc = do_vsie_run(vcpu, vsie_page);
823 gmap_enable(vcpu->arch.gmap);
824 }
David Hildenbranda3508fb2015-07-08 13:19:48 +0200825
826 if (rc == -EAGAIN)
827 rc = 0;
828 if (rc || scb_s->icptcode || signal_pending(current) ||
829 kvm_s390_vcpu_has_irq(vcpu, 0))
830 break;
831 };
832
833 if (rc == -EFAULT) {
834 /*
835 * Addressing exceptions are always presentes as intercepts.
836 * As addressing exceptions are suppressing and our guest 3 PSW
837 * points at the responsible instruction, we have to
838 * forward the PSW and set the ilc. If we can't read guest 3
839 * instruction, we can use an arbitrary ilc. Let's always use
840 * ilen = 4 for now, so we can avoid reading in guest 3 virtual
841 * memory. (we could also fake the shadow so the hardware
842 * handles it).
843 */
844 scb_s->icptcode = ICPT_PROGI;
845 scb_s->iprcc = PGM_ADDRESSING;
846 scb_s->pgmilc = 4;
847 scb_s->gpsw.addr = __rewind_psw(scb_s->gpsw, 4);
848 }
849 return rc;
850}
851
852/*
853 * Get or create a vsie page for a scb address.
854 *
855 * Returns: - address of a vsie page (cached or new one)
856 * - NULL if the same scb address is already used by another VCPU
857 * - ERR_PTR(-ENOMEM) if out of memory
858 */
859static struct vsie_page *get_vsie_page(struct kvm *kvm, unsigned long addr)
860{
861 struct vsie_page *vsie_page;
862 struct page *page;
863 int nr_vcpus;
864
865 rcu_read_lock();
866 page = radix_tree_lookup(&kvm->arch.vsie.addr_to_page, addr >> 9);
867 rcu_read_unlock();
868 if (page) {
869 if (page_ref_inc_return(page) == 2)
870 return page_to_virt(page);
871 page_ref_dec(page);
872 }
873
874 /*
875 * We want at least #online_vcpus shadows, so every VCPU can execute
876 * the VSIE in parallel.
877 */
878 nr_vcpus = atomic_read(&kvm->online_vcpus);
879
880 mutex_lock(&kvm->arch.vsie.mutex);
881 if (kvm->arch.vsie.page_count < nr_vcpus) {
David Hildenbrand66b630d2015-11-26 14:11:19 +0100882 page = alloc_page(GFP_KERNEL | __GFP_ZERO | GFP_DMA);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200883 if (!page) {
884 mutex_unlock(&kvm->arch.vsie.mutex);
885 return ERR_PTR(-ENOMEM);
886 }
887 page_ref_inc(page);
888 kvm->arch.vsie.pages[kvm->arch.vsie.page_count] = page;
889 kvm->arch.vsie.page_count++;
890 } else {
891 /* reuse an existing entry that belongs to nobody */
892 while (true) {
893 page = kvm->arch.vsie.pages[kvm->arch.vsie.next];
894 if (page_ref_inc_return(page) == 2)
895 break;
896 page_ref_dec(page);
897 kvm->arch.vsie.next++;
898 kvm->arch.vsie.next %= nr_vcpus;
899 }
900 radix_tree_delete(&kvm->arch.vsie.addr_to_page, page->index >> 9);
901 }
902 page->index = addr;
903 /* double use of the same address */
904 if (radix_tree_insert(&kvm->arch.vsie.addr_to_page, addr >> 9, page)) {
905 page_ref_dec(page);
906 mutex_unlock(&kvm->arch.vsie.mutex);
907 return NULL;
908 }
909 mutex_unlock(&kvm->arch.vsie.mutex);
910
911 vsie_page = page_to_virt(page);
912 memset(&vsie_page->scb_s, 0, sizeof(struct kvm_s390_sie_block));
David Hildenbrand06d68a62016-04-22 13:50:09 +0200913 release_gmap_shadow(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200914 vsie_page->scb_s.ihcpu = 0xffffU;
915 return vsie_page;
916}
917
918/* put a vsie page acquired via get_vsie_page */
919static void put_vsie_page(struct kvm *kvm, struct vsie_page *vsie_page)
920{
921 struct page *page = pfn_to_page(__pa(vsie_page) >> PAGE_SHIFT);
922
923 page_ref_dec(page);
924}
925
926int kvm_s390_handle_vsie(struct kvm_vcpu *vcpu)
927{
928 struct vsie_page *vsie_page;
929 unsigned long scb_addr;
930 int rc;
931
932 vcpu->stat.instruction_sie++;
933 if (!test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_SIEF2))
934 return -EOPNOTSUPP;
935 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
936 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
937
938 BUILD_BUG_ON(sizeof(struct vsie_page) != 4096);
939 scb_addr = kvm_s390_get_base_disp_s(vcpu, NULL);
940
941 /* 512 byte alignment */
942 if (unlikely(scb_addr & 0x1ffUL))
943 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
944
945 if (signal_pending(current) || kvm_s390_vcpu_has_irq(vcpu, 0))
946 return 0;
947
948 vsie_page = get_vsie_page(vcpu->kvm, scb_addr);
949 if (IS_ERR(vsie_page))
950 return PTR_ERR(vsie_page);
951 else if (!vsie_page)
952 /* double use of sie control block - simply do nothing */
953 return 0;
954
955 rc = pin_scb(vcpu, vsie_page, scb_addr);
956 if (rc)
957 goto out_put;
958 rc = shadow_scb(vcpu, vsie_page);
959 if (rc)
960 goto out_unpin_scb;
961 rc = pin_blocks(vcpu, vsie_page);
962 if (rc)
963 goto out_unshadow;
964 rc = vsie_run(vcpu, vsie_page);
965 unpin_blocks(vcpu, vsie_page);
966out_unshadow:
967 unshadow_scb(vcpu, vsie_page);
968out_unpin_scb:
969 unpin_scb(vcpu, vsie_page, scb_addr);
970out_put:
971 put_vsie_page(vcpu->kvm, vsie_page);
972
973 return rc < 0 ? rc : 0;
974}
975
976/* Init the vsie data structures. To be called when a vm is initialized. */
977void kvm_s390_vsie_init(struct kvm *kvm)
978{
979 mutex_init(&kvm->arch.vsie.mutex);
980 INIT_RADIX_TREE(&kvm->arch.vsie.addr_to_page, GFP_KERNEL);
981}
982
983/* Destroy the vsie data structures. To be called when a vm is destroyed. */
984void kvm_s390_vsie_destroy(struct kvm *kvm)
985{
David Hildenbrand06d68a62016-04-22 13:50:09 +0200986 struct vsie_page *vsie_page;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200987 struct page *page;
988 int i;
989
990 mutex_lock(&kvm->arch.vsie.mutex);
991 for (i = 0; i < kvm->arch.vsie.page_count; i++) {
992 page = kvm->arch.vsie.pages[i];
993 kvm->arch.vsie.pages[i] = NULL;
David Hildenbrand06d68a62016-04-22 13:50:09 +0200994 vsie_page = page_to_virt(page);
995 release_gmap_shadow(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200996 /* free the radix tree entry */
997 radix_tree_delete(&kvm->arch.vsie.addr_to_page, page->index >> 9);
998 __free_page(page);
999 }
1000 kvm->arch.vsie.page_count = 0;
1001 mutex_unlock(&kvm->arch.vsie.mutex);
1002}