blob: 44e66c32902619dfbc69955980ad386d6efe0f76 [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;
David Hildenbrand19c439b2015-11-25 11:02:26 +0100452 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_64BSCAO))
453 gpa |= (u64) scb_o->scaoh << 32;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200454 unpin_guest_page(vcpu->kvm, gpa, hpa);
455 scb_s->scaol = 0;
456 scb_s->scaoh = 0;
457 }
David Hildenbrand166ecb32015-11-25 11:13:32 +0100458
459 hpa = scb_s->itdba;
460 if (hpa) {
461 gpa = scb_o->itdba & ~0xffUL;
462 unpin_guest_page(vcpu->kvm, gpa, hpa);
463 scb_s->itdba = 0;
464 }
David Hildenbrandc9bc1ea2015-11-25 11:08:32 +0100465
466 hpa = scb_s->gvrd;
467 if (hpa) {
468 gpa = scb_o->gvrd & ~0x1ffUL;
469 unpin_guest_page(vcpu->kvm, gpa, hpa);
470 scb_s->gvrd = 0;
471 }
David Hildenbrand588438c2016-01-26 12:51:06 +0100472
473 hpa = scb_s->riccbd;
474 if (hpa) {
475 gpa = scb_o->riccbd & ~0x3fUL;
476 unpin_guest_page(vcpu->kvm, gpa, hpa);
477 scb_s->riccbd = 0;
478 }
David Hildenbranda3508fb2015-07-08 13:19:48 +0200479}
480
481/*
482 * Instead of shadowing some blocks, we can simply forward them because the
483 * addresses in the scb are 64 bit long.
484 *
485 * This works as long as the data lies in one page. If blocks ever exceed one
486 * page, we have to fall back to shadowing.
487 *
488 * As we reuse the sca, the vcpu pointers contained in it are invalid. We must
489 * therefore not enable any facilities that access these pointers (e.g. SIGPIF).
490 *
491 * Returns: - 0 if all blocks were pinned.
492 * - > 0 if control has to be given to guest 2
493 * - -ENOMEM if out of memory
494 */
495static int pin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
496{
497 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
498 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
499 hpa_t hpa;
500 gpa_t gpa;
501 int rc = 0;
502
503 gpa = scb_o->scaol & ~0xfUL;
David Hildenbrand19c439b2015-11-25 11:02:26 +0100504 if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_64BSCAO))
505 gpa |= (u64) scb_o->scaoh << 32;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200506 if (gpa) {
507 if (!(gpa & ~0x1fffUL))
508 rc = set_validity_icpt(scb_s, 0x0038U);
509 else if ((gpa & ~0x1fffUL) == kvm_s390_get_prefix(vcpu))
510 rc = set_validity_icpt(scb_s, 0x0011U);
511 else if ((gpa & PAGE_MASK) !=
512 ((gpa + sizeof(struct bsca_block) - 1) & PAGE_MASK))
513 rc = set_validity_icpt(scb_s, 0x003bU);
514 if (!rc) {
515 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
516 if (rc == -EINVAL)
517 rc = set_validity_icpt(scb_s, 0x0034U);
518 }
519 if (rc)
520 goto unpin;
521 scb_s->scaoh = (u32)((u64)hpa >> 32);
522 scb_s->scaol = (u32)(u64)hpa;
523 }
David Hildenbrand166ecb32015-11-25 11:13:32 +0100524
525 gpa = scb_o->itdba & ~0xffUL;
526 if (gpa && (scb_s->ecb & 0x10U)) {
527 if (!(gpa & ~0x1fffU)) {
528 rc = set_validity_icpt(scb_s, 0x0080U);
529 goto unpin;
530 }
531 /* 256 bytes cannot cross page boundaries */
532 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
533 if (rc == -EINVAL)
534 rc = set_validity_icpt(scb_s, 0x0080U);
535 if (rc)
536 goto unpin;
537 scb_s->itdba = hpa;
538 }
David Hildenbrandc9bc1ea2015-11-25 11:08:32 +0100539
540 gpa = scb_o->gvrd & ~0x1ffUL;
541 if (gpa && (scb_s->eca & 0x00020000U) &&
542 !(scb_s->ecd & 0x20000000U)) {
543 if (!(gpa & ~0x1fffUL)) {
544 rc = set_validity_icpt(scb_s, 0x1310U);
545 goto unpin;
546 }
547 /*
548 * 512 bytes vector registers cannot cross page boundaries
549 * if this block gets bigger, we have to shadow it.
550 */
551 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
552 if (rc == -EINVAL)
553 rc = set_validity_icpt(scb_s, 0x1310U);
554 if (rc)
555 goto unpin;
556 scb_s->gvrd = hpa;
557 }
David Hildenbrand588438c2016-01-26 12:51:06 +0100558
559 gpa = scb_o->riccbd & ~0x3fUL;
560 if (gpa && (scb_s->ecb3 & 0x01U)) {
561 if (!(gpa & ~0x1fffUL)) {
562 rc = set_validity_icpt(scb_s, 0x0043U);
563 goto unpin;
564 }
565 /* 64 bytes cannot cross page boundaries */
566 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
567 if (rc == -EINVAL)
568 rc = set_validity_icpt(scb_s, 0x0043U);
569 /* Validity 0x0044 will be checked by SIE */
570 if (rc)
571 goto unpin;
572 scb_s->gvrd = hpa;
573 }
David Hildenbranda3508fb2015-07-08 13:19:48 +0200574 return 0;
575unpin:
576 unpin_blocks(vcpu, vsie_page);
577 return rc;
578}
579
580/* unpin the scb provided by guest 2, marking it as dirty */
581static void unpin_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page,
582 gpa_t gpa)
583{
584 hpa_t hpa = (hpa_t) vsie_page->scb_o;
585
586 if (hpa)
587 unpin_guest_page(vcpu->kvm, gpa, hpa);
588 vsie_page->scb_o = NULL;
589}
590
591/*
592 * Pin the scb at gpa provided by guest 2 at vsie_page->scb_o.
593 *
594 * Returns: - 0 if the scb was pinned.
595 * - > 0 if control has to be given to guest 2
596 * - -ENOMEM if out of memory
597 */
598static int pin_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page,
599 gpa_t gpa)
600{
601 hpa_t hpa;
602 int rc;
603
604 rc = pin_guest_page(vcpu->kvm, gpa, &hpa);
605 if (rc == -EINVAL) {
606 rc = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
607 if (!rc)
608 rc = 1;
609 }
610 if (!rc)
611 vsie_page->scb_o = (struct kvm_s390_sie_block *) hpa;
612 return rc;
613}
614
615/*
616 * Inject a fault into guest 2.
617 *
618 * Returns: - > 0 if control has to be given to guest 2
619 * < 0 if an error occurred during injection.
620 */
621static int inject_fault(struct kvm_vcpu *vcpu, __u16 code, __u64 vaddr,
622 bool write_flag)
623{
624 struct kvm_s390_pgm_info pgm = {
625 .code = code,
626 .trans_exc_code =
627 /* 0-51: virtual address */
628 (vaddr & 0xfffffffffffff000UL) |
629 /* 52-53: store / fetch */
630 (((unsigned int) !write_flag) + 1) << 10,
631 /* 62-63: asce id (alway primary == 0) */
632 .exc_access_id = 0, /* always primary */
633 .op_access_id = 0, /* not MVPG */
634 };
635 int rc;
636
637 if (code == PGM_PROTECTION)
638 pgm.trans_exc_code |= 0x4UL;
639
640 rc = kvm_s390_inject_prog_irq(vcpu, &pgm);
641 return rc ? rc : 1;
642}
643
644/*
645 * Handle a fault during vsie execution on a gmap shadow.
646 *
647 * Returns: - 0 if the fault was resolved
648 * - > 0 if control has to be given to guest 2
649 * - < 0 if an error occurred
650 */
651static int handle_fault(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
652{
653 int rc;
654
655 if (current->thread.gmap_int_code == PGM_PROTECTION)
656 /* we can directly forward all protection exceptions */
657 return inject_fault(vcpu, PGM_PROTECTION,
658 current->thread.gmap_addr, 1);
659
660 rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap,
661 current->thread.gmap_addr);
662 if (rc > 0) {
663 rc = inject_fault(vcpu, rc,
664 current->thread.gmap_addr,
665 current->thread.gmap_write_flag);
666 }
667 return rc;
668}
669
670static inline void clear_vsie_icpt(struct vsie_page *vsie_page)
671{
672 vsie_page->scb_s.icptcode = 0;
673}
674
David Hildenbrand66b630d2015-11-26 14:11:19 +0100675/* rewind the psw and clear the vsie icpt, so we can retry execution */
676static void retry_vsie_icpt(struct vsie_page *vsie_page)
677{
678 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
679 int ilen = insn_length(scb_s->ipa >> 8);
680
681 /* take care of EXECUTE instructions */
682 if (scb_s->icptstatus & 1) {
683 ilen = (scb_s->icptstatus >> 4) & 0x6;
684 if (!ilen)
685 ilen = 4;
686 }
687 scb_s->gpsw.addr = __rewind_psw(scb_s->gpsw, ilen);
688 clear_vsie_icpt(vsie_page);
689}
690
691/*
692 * Try to shadow + enable the guest 2 provided facility list.
693 * Retry instruction execution if enabled for and provided by guest 2.
694 *
695 * Returns: - 0 if handled (retry or guest 2 icpt)
696 * - > 0 if control has to be given to guest 2
697 */
698static int handle_stfle(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
699{
700 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
701 __u32 fac = vsie_page->scb_o->fac & 0x7ffffff8U;
702
703 if (fac && test_kvm_facility(vcpu->kvm, 7)) {
704 retry_vsie_icpt(vsie_page);
705 if (read_guest_real(vcpu, fac, &vsie_page->fac,
706 sizeof(vsie_page->fac)))
707 return set_validity_icpt(scb_s, 0x1090U);
708 scb_s->fac = (__u32)(__u64) &vsie_page->fac;
709 }
710 return 0;
711}
712
David Hildenbranda3508fb2015-07-08 13:19:48 +0200713/*
714 * Run the vsie on a shadow scb and a shadow gmap, without any further
715 * sanity checks, handling SIE faults.
716 *
717 * Returns: - 0 everything went fine
718 * - > 0 if control has to be given to guest 2
719 * - < 0 if an error occurred
720 */
721static int do_vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
722{
723 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
724 struct kvm_s390_sie_block *scb_o = vsie_page->scb_o;
725 int rc;
726
727 if (need_resched())
728 schedule();
729 if (test_cpu_flag(CIF_MCCK_PENDING))
730 s390_handle_mcck();
731
732 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
733 local_irq_disable();
734 kvm_guest_enter();
735 local_irq_enable();
736
737 rc = sie64a(scb_s, vcpu->run->s.regs.gprs);
738
739 local_irq_disable();
740 kvm_guest_exit();
741 local_irq_enable();
742 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
743
744 if (rc > 0)
745 rc = 0; /* we could still have an icpt */
746 else if (rc == -EFAULT)
747 return handle_fault(vcpu, vsie_page);
748
749 switch (scb_s->icptcode) {
David Hildenbrand66b630d2015-11-26 14:11:19 +0100750 case ICPT_INST:
751 if (scb_s->ipa == 0xb2b0)
752 rc = handle_stfle(vcpu, vsie_page);
753 break;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200754 case ICPT_STOP:
755 /* stop not requested by g2 - must have been a kick */
756 if (!(atomic_read(&scb_o->cpuflags) & CPUSTAT_STOP_INT))
757 clear_vsie_icpt(vsie_page);
758 break;
759 case ICPT_VALIDITY:
760 if ((scb_s->ipa & 0xf000) != 0xf000)
761 scb_s->ipa += 0x1000;
762 break;
763 }
764 return rc;
765}
766
767static void release_gmap_shadow(struct vsie_page *vsie_page)
768{
769 if (vsie_page->gmap)
770 gmap_put(vsie_page->gmap);
771 WRITE_ONCE(vsie_page->gmap, NULL);
David Hildenbrand06d68a62016-04-22 13:50:09 +0200772 prefix_unmapped(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200773}
774
775static int acquire_gmap_shadow(struct kvm_vcpu *vcpu,
776 struct vsie_page *vsie_page)
777{
778 unsigned long asce;
779 union ctlreg0 cr0;
780 struct gmap *gmap;
781 int edat;
782
783 asce = vcpu->arch.sie_block->gcr[1];
784 cr0.val = vcpu->arch.sie_block->gcr[0];
785 edat = cr0.edat && test_kvm_facility(vcpu->kvm, 8);
786 edat += edat && test_kvm_facility(vcpu->kvm, 78);
787
David Hildenbrand06d68a62016-04-22 13:50:09 +0200788 /*
789 * ASCE or EDAT could have changed since last icpt, or the gmap
790 * we're holding has been unshadowed. If the gmap is still valid,
791 * we can safely reuse it.
792 */
793 if (vsie_page->gmap && gmap_shadow_valid(vsie_page->gmap, asce, edat))
794 return 0;
795
796 /* release the old shadow - if any, and mark the prefix as unmapped */
797 release_gmap_shadow(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200798 gmap = gmap_shadow(vcpu->arch.gmap, asce, edat);
799 if (IS_ERR(gmap))
800 return PTR_ERR(gmap);
801 gmap->private = vcpu->kvm;
802 WRITE_ONCE(vsie_page->gmap, gmap);
803 return 0;
804}
805
806/*
807 * Run the vsie on a shadowed scb, managing the gmap shadow, handling
808 * prefix pages and faults.
809 *
810 * Returns: - 0 if no errors occurred
811 * - > 0 if control has to be given to guest 2
812 * - -ENOMEM if out of memory
813 */
814static int vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
815{
816 struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s;
817 int rc = 0;
818
819 while (1) {
820 rc = acquire_gmap_shadow(vcpu, vsie_page);
821 if (!rc)
822 rc = map_prefix(vcpu, vsie_page);
823 if (!rc) {
824 gmap_enable(vsie_page->gmap);
825 update_intervention_requests(vsie_page);
826 rc = do_vsie_run(vcpu, vsie_page);
827 gmap_enable(vcpu->arch.gmap);
828 }
David Hildenbranda3508fb2015-07-08 13:19:48 +0200829
830 if (rc == -EAGAIN)
831 rc = 0;
832 if (rc || scb_s->icptcode || signal_pending(current) ||
833 kvm_s390_vcpu_has_irq(vcpu, 0))
834 break;
835 };
836
837 if (rc == -EFAULT) {
838 /*
839 * Addressing exceptions are always presentes as intercepts.
840 * As addressing exceptions are suppressing and our guest 3 PSW
841 * points at the responsible instruction, we have to
842 * forward the PSW and set the ilc. If we can't read guest 3
843 * instruction, we can use an arbitrary ilc. Let's always use
844 * ilen = 4 for now, so we can avoid reading in guest 3 virtual
845 * memory. (we could also fake the shadow so the hardware
846 * handles it).
847 */
848 scb_s->icptcode = ICPT_PROGI;
849 scb_s->iprcc = PGM_ADDRESSING;
850 scb_s->pgmilc = 4;
851 scb_s->gpsw.addr = __rewind_psw(scb_s->gpsw, 4);
852 }
853 return rc;
854}
855
856/*
857 * Get or create a vsie page for a scb address.
858 *
859 * Returns: - address of a vsie page (cached or new one)
860 * - NULL if the same scb address is already used by another VCPU
861 * - ERR_PTR(-ENOMEM) if out of memory
862 */
863static struct vsie_page *get_vsie_page(struct kvm *kvm, unsigned long addr)
864{
865 struct vsie_page *vsie_page;
866 struct page *page;
867 int nr_vcpus;
868
869 rcu_read_lock();
870 page = radix_tree_lookup(&kvm->arch.vsie.addr_to_page, addr >> 9);
871 rcu_read_unlock();
872 if (page) {
873 if (page_ref_inc_return(page) == 2)
874 return page_to_virt(page);
875 page_ref_dec(page);
876 }
877
878 /*
879 * We want at least #online_vcpus shadows, so every VCPU can execute
880 * the VSIE in parallel.
881 */
882 nr_vcpus = atomic_read(&kvm->online_vcpus);
883
884 mutex_lock(&kvm->arch.vsie.mutex);
885 if (kvm->arch.vsie.page_count < nr_vcpus) {
David Hildenbrand66b630d2015-11-26 14:11:19 +0100886 page = alloc_page(GFP_KERNEL | __GFP_ZERO | GFP_DMA);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200887 if (!page) {
888 mutex_unlock(&kvm->arch.vsie.mutex);
889 return ERR_PTR(-ENOMEM);
890 }
891 page_ref_inc(page);
892 kvm->arch.vsie.pages[kvm->arch.vsie.page_count] = page;
893 kvm->arch.vsie.page_count++;
894 } else {
895 /* reuse an existing entry that belongs to nobody */
896 while (true) {
897 page = kvm->arch.vsie.pages[kvm->arch.vsie.next];
898 if (page_ref_inc_return(page) == 2)
899 break;
900 page_ref_dec(page);
901 kvm->arch.vsie.next++;
902 kvm->arch.vsie.next %= nr_vcpus;
903 }
904 radix_tree_delete(&kvm->arch.vsie.addr_to_page, page->index >> 9);
905 }
906 page->index = addr;
907 /* double use of the same address */
908 if (radix_tree_insert(&kvm->arch.vsie.addr_to_page, addr >> 9, page)) {
909 page_ref_dec(page);
910 mutex_unlock(&kvm->arch.vsie.mutex);
911 return NULL;
912 }
913 mutex_unlock(&kvm->arch.vsie.mutex);
914
915 vsie_page = page_to_virt(page);
916 memset(&vsie_page->scb_s, 0, sizeof(struct kvm_s390_sie_block));
David Hildenbrand06d68a62016-04-22 13:50:09 +0200917 release_gmap_shadow(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200918 vsie_page->scb_s.ihcpu = 0xffffU;
919 return vsie_page;
920}
921
922/* put a vsie page acquired via get_vsie_page */
923static void put_vsie_page(struct kvm *kvm, struct vsie_page *vsie_page)
924{
925 struct page *page = pfn_to_page(__pa(vsie_page) >> PAGE_SHIFT);
926
927 page_ref_dec(page);
928}
929
930int kvm_s390_handle_vsie(struct kvm_vcpu *vcpu)
931{
932 struct vsie_page *vsie_page;
933 unsigned long scb_addr;
934 int rc;
935
936 vcpu->stat.instruction_sie++;
937 if (!test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_SIEF2))
938 return -EOPNOTSUPP;
939 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
940 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
941
942 BUILD_BUG_ON(sizeof(struct vsie_page) != 4096);
943 scb_addr = kvm_s390_get_base_disp_s(vcpu, NULL);
944
945 /* 512 byte alignment */
946 if (unlikely(scb_addr & 0x1ffUL))
947 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
948
949 if (signal_pending(current) || kvm_s390_vcpu_has_irq(vcpu, 0))
950 return 0;
951
952 vsie_page = get_vsie_page(vcpu->kvm, scb_addr);
953 if (IS_ERR(vsie_page))
954 return PTR_ERR(vsie_page);
955 else if (!vsie_page)
956 /* double use of sie control block - simply do nothing */
957 return 0;
958
959 rc = pin_scb(vcpu, vsie_page, scb_addr);
960 if (rc)
961 goto out_put;
962 rc = shadow_scb(vcpu, vsie_page);
963 if (rc)
964 goto out_unpin_scb;
965 rc = pin_blocks(vcpu, vsie_page);
966 if (rc)
967 goto out_unshadow;
968 rc = vsie_run(vcpu, vsie_page);
969 unpin_blocks(vcpu, vsie_page);
970out_unshadow:
971 unshadow_scb(vcpu, vsie_page);
972out_unpin_scb:
973 unpin_scb(vcpu, vsie_page, scb_addr);
974out_put:
975 put_vsie_page(vcpu->kvm, vsie_page);
976
977 return rc < 0 ? rc : 0;
978}
979
980/* Init the vsie data structures. To be called when a vm is initialized. */
981void kvm_s390_vsie_init(struct kvm *kvm)
982{
983 mutex_init(&kvm->arch.vsie.mutex);
984 INIT_RADIX_TREE(&kvm->arch.vsie.addr_to_page, GFP_KERNEL);
985}
986
987/* Destroy the vsie data structures. To be called when a vm is destroyed. */
988void kvm_s390_vsie_destroy(struct kvm *kvm)
989{
David Hildenbrand06d68a62016-04-22 13:50:09 +0200990 struct vsie_page *vsie_page;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200991 struct page *page;
992 int i;
993
994 mutex_lock(&kvm->arch.vsie.mutex);
995 for (i = 0; i < kvm->arch.vsie.page_count; i++) {
996 page = kvm->arch.vsie.pages[i];
997 kvm->arch.vsie.pages[i] = NULL;
David Hildenbrand06d68a62016-04-22 13:50:09 +0200998 vsie_page = page_to_virt(page);
999 release_gmap_shadow(vsie_page);
David Hildenbranda3508fb2015-07-08 13:19:48 +02001000 /* free the radix tree entry */
1001 radix_tree_delete(&kvm->arch.vsie.addr_to_page, page->index >> 9);
1002 __free_page(page);
1003 }
1004 kvm->arch.vsie.page_count = 0;
1005 mutex_unlock(&kvm->arch.vsie.mutex);
1006}