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