David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 1 | /* |
| 2 | * kvm nested virtualization support for s390x |
| 3 | * |
| 4 | * Copyright IBM Corp. 2016 |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License (version 2 only) |
| 8 | * as published by the Free Software Foundation. |
| 9 | * |
| 10 | * Author(s): David Hildenbrand <dahi@linux.vnet.ibm.com> |
| 11 | */ |
| 12 | #include <linux/vmalloc.h> |
| 13 | #include <linux/kvm_host.h> |
| 14 | #include <linux/bug.h> |
| 15 | #include <linux/list.h> |
| 16 | #include <linux/bitmap.h> |
| 17 | #include <asm/gmap.h> |
| 18 | #include <asm/mmu_context.h> |
| 19 | #include <asm/sclp.h> |
| 20 | #include <asm/nmi.h> |
David Hildenbrand | 66b630d | 2015-11-26 14:11:19 +0100 | [diff] [blame] | 21 | #include <asm/dis.h> |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 22 | #include "kvm-s390.h" |
| 23 | #include "gaccess.h" |
| 24 | |
| 25 | struct vsie_page { |
| 26 | struct kvm_s390_sie_block scb_s; /* 0x0000 */ |
| 27 | /* the pinned originial scb */ |
| 28 | struct kvm_s390_sie_block *scb_o; /* 0x0200 */ |
| 29 | /* the shadow gmap in use by the vsie_page */ |
| 30 | struct gmap *gmap; /* 0x0208 */ |
David Hildenbrand | bbeaa58 | 2015-11-26 13:11:42 +0100 | [diff] [blame] | 31 | __u8 reserved[0x0700 - 0x0210]; /* 0x0210 */ |
| 32 | struct kvm_s390_crypto_cb crycb; /* 0x0700 */ |
David Hildenbrand | 66b630d | 2015-11-26 14:11:19 +0100 | [diff] [blame] | 33 | __u8 fac[S390_ARCH_FAC_LIST_SIZE_BYTE]; /* 0x0800 */ |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 34 | } __packed; |
| 35 | |
| 36 | /* trigger a validity icpt for the given scb */ |
| 37 | static int set_validity_icpt(struct kvm_s390_sie_block *scb, |
| 38 | __u16 reason_code) |
| 39 | { |
| 40 | scb->ipa = 0x1000; |
| 41 | scb->ipb = ((__u32) reason_code) << 16; |
| 42 | scb->icptcode = ICPT_VALIDITY; |
| 43 | return 1; |
| 44 | } |
| 45 | |
| 46 | /* mark the prefix as unmapped, this will block the VSIE */ |
| 47 | static void prefix_unmapped(struct vsie_page *vsie_page) |
| 48 | { |
| 49 | atomic_or(PROG_REQUEST, &vsie_page->scb_s.prog20); |
| 50 | } |
| 51 | |
| 52 | /* mark the prefix as unmapped and wait until the VSIE has been left */ |
| 53 | static void prefix_unmapped_sync(struct vsie_page *vsie_page) |
| 54 | { |
| 55 | prefix_unmapped(vsie_page); |
| 56 | if (vsie_page->scb_s.prog0c & PROG_IN_SIE) |
| 57 | atomic_or(CPUSTAT_STOP_INT, &vsie_page->scb_s.cpuflags); |
| 58 | while (vsie_page->scb_s.prog0c & PROG_IN_SIE) |
| 59 | cpu_relax(); |
| 60 | } |
| 61 | |
| 62 | /* mark the prefix as mapped, this will allow the VSIE to run */ |
| 63 | static void prefix_mapped(struct vsie_page *vsie_page) |
| 64 | { |
| 65 | atomic_andnot(PROG_REQUEST, &vsie_page->scb_s.prog20); |
| 66 | } |
| 67 | |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 68 | /* test if the prefix is mapped into the gmap shadow */ |
| 69 | static int prefix_is_mapped(struct vsie_page *vsie_page) |
| 70 | { |
| 71 | return !(atomic_read(&vsie_page->scb_s.prog20) & PROG_REQUEST); |
| 72 | } |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 73 | |
| 74 | /* copy the updated intervention request bits into the shadow scb */ |
| 75 | static void update_intervention_requests(struct vsie_page *vsie_page) |
| 76 | { |
| 77 | const int bits = CPUSTAT_STOP_INT | CPUSTAT_IO_INT | CPUSTAT_EXT_INT; |
| 78 | int cpuflags; |
| 79 | |
| 80 | cpuflags = atomic_read(&vsie_page->scb_o->cpuflags); |
| 81 | atomic_andnot(bits, &vsie_page->scb_s.cpuflags); |
| 82 | atomic_or(cpuflags & bits, &vsie_page->scb_s.cpuflags); |
| 83 | } |
| 84 | |
| 85 | /* shadow (filter and validate) the cpuflags */ |
| 86 | static int prepare_cpuflags(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) |
| 87 | { |
| 88 | struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s; |
| 89 | struct kvm_s390_sie_block *scb_o = vsie_page->scb_o; |
| 90 | int newflags, cpuflags = atomic_read(&scb_o->cpuflags); |
| 91 | |
| 92 | /* we don't allow ESA/390 guests */ |
| 93 | if (!(cpuflags & CPUSTAT_ZARCH)) |
| 94 | return set_validity_icpt(scb_s, 0x0001U); |
| 95 | |
| 96 | if (cpuflags & (CPUSTAT_RRF | CPUSTAT_MCDS)) |
| 97 | return set_validity_icpt(scb_s, 0x0001U); |
| 98 | else if (cpuflags & (CPUSTAT_SLSV | CPUSTAT_SLSR)) |
| 99 | return set_validity_icpt(scb_s, 0x0007U); |
| 100 | |
| 101 | /* intervention requests will be set later */ |
| 102 | newflags = CPUSTAT_ZARCH; |
David Hildenbrand | 535ef81 | 2016-02-12 12:24:20 +0100 | [diff] [blame] | 103 | if (cpuflags & CPUSTAT_GED && test_kvm_facility(vcpu->kvm, 8)) |
| 104 | newflags |= CPUSTAT_GED; |
| 105 | if (cpuflags & CPUSTAT_GED2 && test_kvm_facility(vcpu->kvm, 78)) { |
| 106 | if (cpuflags & CPUSTAT_GED) |
| 107 | return set_validity_icpt(scb_s, 0x0001U); |
| 108 | newflags |= CPUSTAT_GED2; |
| 109 | } |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 110 | |
| 111 | atomic_set(&scb_s->cpuflags, newflags); |
| 112 | return 0; |
| 113 | } |
| 114 | |
David Hildenbrand | bbeaa58 | 2015-11-26 13:11:42 +0100 | [diff] [blame] | 115 | /* |
| 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 | */ |
| 125 | static 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 Hildenbrand | 3573602 | 2016-02-19 10:11:24 +0100 | [diff] [blame] | 167 | /* shadow (round up/down) the ibc to avoid validity icpt */ |
| 168 | static 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 Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 187 | /* unshadow the scb, copying parameters back to the real scb */ |
| 188 | static 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 | */ |
| 238 | static 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 Hildenbrand | 166ecb3 | 2015-11-25 11:13:32 +0100 | [diff] [blame^] | 242 | bool had_tx = scb_s->ecb & 0x10U; |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 243 | unsigned long new_mso; |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 244 | 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 Hildenbrand | 66b630d | 2015-11-26 14:11:19 +0100 | [diff] [blame] | 253 | scb_s->fac = 0; |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 254 | |
| 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 Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 285 | 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 Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 289 | /* SIE will do mso/msl validity and exception checks for us */ |
| 290 | scb_s->msl = scb_o->msl & 0xfffffffffff00000UL; |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 291 | scb_s->mso = new_mso; |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 292 | 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 Hildenbrand | 4ceafa9 | 2015-11-27 12:34:28 +0100 | [diff] [blame] | 300 | /* 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 Hildenbrand | 166ecb3 | 2015-11-25 11:13:32 +0100 | [diff] [blame^] | 303 | /* 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 Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 310 | |
David Hildenbrand | 3573602 | 2016-02-19 10:11:24 +0100 | [diff] [blame] | 311 | prepare_ibc(vcpu, vsie_page); |
David Hildenbrand | bbeaa58 | 2015-11-26 13:11:42 +0100 | [diff] [blame] | 312 | rc = shadow_crycb(vcpu, vsie_page); |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 313 | out: |
| 314 | if (rc) |
| 315 | unshadow_scb(vcpu, vsie_page); |
| 316 | return rc; |
| 317 | } |
| 318 | |
| 319 | void kvm_s390_vsie_gmap_notifier(struct gmap *gmap, unsigned long start, |
| 320 | unsigned long end) |
| 321 | { |
| 322 | struct kvm *kvm = gmap->private; |
| 323 | struct vsie_page *cur; |
| 324 | unsigned long prefix; |
| 325 | struct page *page; |
| 326 | int i; |
| 327 | |
| 328 | if (!gmap_is_shadow(gmap)) |
| 329 | return; |
| 330 | if (start >= 1UL << 31) |
| 331 | /* We are only interested in prefix pages */ |
| 332 | return; |
| 333 | |
| 334 | /* |
| 335 | * Only new shadow blocks are added to the list during runtime, |
| 336 | * therefore we can safely reference them all the time. |
| 337 | */ |
| 338 | for (i = 0; i < kvm->arch.vsie.page_count; i++) { |
| 339 | page = READ_ONCE(kvm->arch.vsie.pages[i]); |
| 340 | if (!page) |
| 341 | continue; |
| 342 | cur = page_to_virt(page); |
| 343 | if (READ_ONCE(cur->gmap) != gmap) |
| 344 | continue; |
| 345 | prefix = cur->scb_s.prefix << GUEST_PREFIX_SHIFT; |
| 346 | /* with mso/msl, the prefix lies at an offset */ |
| 347 | prefix += cur->scb_s.mso; |
David Hildenbrand | 166ecb3 | 2015-11-25 11:13:32 +0100 | [diff] [blame^] | 348 | if (prefix <= end && start <= prefix + 2 * PAGE_SIZE - 1) |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 349 | prefix_unmapped_sync(cur); |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | /* |
David Hildenbrand | 166ecb3 | 2015-11-25 11:13:32 +0100 | [diff] [blame^] | 354 | * Map the first prefix page and if tx is enabled also the second prefix page. |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 355 | * |
| 356 | * The prefix will be protected, a gmap notifier will inform about unmaps. |
| 357 | * The shadow scb must not be executed until the prefix is remapped, this is |
| 358 | * guaranteed by properly handling PROG_REQUEST. |
| 359 | * |
| 360 | * Returns: - 0 on if successfully mapped or already mapped |
| 361 | * - > 0 if control has to be given to guest 2 |
| 362 | * - -EAGAIN if the caller can retry immediately |
| 363 | * - -ENOMEM if out of memory |
| 364 | */ |
| 365 | static int map_prefix(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) |
| 366 | { |
| 367 | struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s; |
| 368 | u64 prefix = scb_s->prefix << GUEST_PREFIX_SHIFT; |
| 369 | int rc; |
| 370 | |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 371 | if (prefix_is_mapped(vsie_page)) |
| 372 | return 0; |
| 373 | |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 374 | /* mark it as mapped so we can catch any concurrent unmappers */ |
| 375 | prefix_mapped(vsie_page); |
| 376 | |
| 377 | /* with mso/msl, the prefix lies at offset *mso* */ |
| 378 | prefix += scb_s->mso; |
| 379 | |
| 380 | rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap, prefix); |
David Hildenbrand | 166ecb3 | 2015-11-25 11:13:32 +0100 | [diff] [blame^] | 381 | if (!rc && (scb_s->ecb & 0x10U)) |
| 382 | rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap, |
| 383 | prefix + PAGE_SIZE); |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 384 | /* |
| 385 | * We don't have to mprotect, we will be called for all unshadows. |
| 386 | * SIE will detect if protection applies and trigger a validity. |
| 387 | */ |
| 388 | if (rc) |
| 389 | prefix_unmapped(vsie_page); |
| 390 | if (rc > 0 || rc == -EFAULT) |
| 391 | rc = set_validity_icpt(scb_s, 0x0037U); |
| 392 | return rc; |
| 393 | } |
| 394 | |
| 395 | /* |
| 396 | * Pin the guest page given by gpa and set hpa to the pinned host address. |
| 397 | * Will always be pinned writable. |
| 398 | * |
| 399 | * Returns: - 0 on success |
| 400 | * - -EINVAL if the gpa is not valid guest storage |
| 401 | * - -ENOMEM if out of memory |
| 402 | */ |
| 403 | static int pin_guest_page(struct kvm *kvm, gpa_t gpa, hpa_t *hpa) |
| 404 | { |
| 405 | struct page *page; |
| 406 | hva_t hva; |
| 407 | int rc; |
| 408 | |
| 409 | hva = gfn_to_hva(kvm, gpa_to_gfn(gpa)); |
| 410 | if (kvm_is_error_hva(hva)) |
| 411 | return -EINVAL; |
| 412 | rc = get_user_pages_fast(hva, 1, 1, &page); |
| 413 | if (rc < 0) |
| 414 | return rc; |
| 415 | else if (rc != 1) |
| 416 | return -ENOMEM; |
| 417 | *hpa = (hpa_t) page_to_virt(page) + (gpa & ~PAGE_MASK); |
| 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | /* Unpins a page previously pinned via pin_guest_page, marking it as dirty. */ |
| 422 | static void unpin_guest_page(struct kvm *kvm, gpa_t gpa, hpa_t hpa) |
| 423 | { |
| 424 | struct page *page; |
| 425 | |
| 426 | page = virt_to_page(hpa); |
| 427 | set_page_dirty_lock(page); |
| 428 | put_page(page); |
| 429 | /* mark the page always as dirty for migration */ |
| 430 | mark_page_dirty(kvm, gpa_to_gfn(gpa)); |
| 431 | } |
| 432 | |
| 433 | /* unpin all blocks previously pinned by pin_blocks(), marking them dirty */ |
| 434 | static void unpin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) |
| 435 | { |
| 436 | struct kvm_s390_sie_block *scb_o = vsie_page->scb_o; |
| 437 | struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s; |
| 438 | hpa_t hpa; |
| 439 | gpa_t gpa; |
| 440 | |
| 441 | hpa = (u64) scb_s->scaoh << 32 | scb_s->scaol; |
| 442 | if (hpa) { |
| 443 | gpa = scb_o->scaol & ~0xfUL; |
| 444 | unpin_guest_page(vcpu->kvm, gpa, hpa); |
| 445 | scb_s->scaol = 0; |
| 446 | scb_s->scaoh = 0; |
| 447 | } |
David Hildenbrand | 166ecb3 | 2015-11-25 11:13:32 +0100 | [diff] [blame^] | 448 | |
| 449 | hpa = scb_s->itdba; |
| 450 | if (hpa) { |
| 451 | gpa = scb_o->itdba & ~0xffUL; |
| 452 | unpin_guest_page(vcpu->kvm, gpa, hpa); |
| 453 | scb_s->itdba = 0; |
| 454 | } |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | /* |
| 458 | * Instead of shadowing some blocks, we can simply forward them because the |
| 459 | * addresses in the scb are 64 bit long. |
| 460 | * |
| 461 | * This works as long as the data lies in one page. If blocks ever exceed one |
| 462 | * page, we have to fall back to shadowing. |
| 463 | * |
| 464 | * As we reuse the sca, the vcpu pointers contained in it are invalid. We must |
| 465 | * therefore not enable any facilities that access these pointers (e.g. SIGPIF). |
| 466 | * |
| 467 | * Returns: - 0 if all blocks were pinned. |
| 468 | * - > 0 if control has to be given to guest 2 |
| 469 | * - -ENOMEM if out of memory |
| 470 | */ |
| 471 | static int pin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) |
| 472 | { |
| 473 | struct kvm_s390_sie_block *scb_o = vsie_page->scb_o; |
| 474 | struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s; |
| 475 | hpa_t hpa; |
| 476 | gpa_t gpa; |
| 477 | int rc = 0; |
| 478 | |
| 479 | gpa = scb_o->scaol & ~0xfUL; |
| 480 | if (gpa) { |
| 481 | if (!(gpa & ~0x1fffUL)) |
| 482 | rc = set_validity_icpt(scb_s, 0x0038U); |
| 483 | else if ((gpa & ~0x1fffUL) == kvm_s390_get_prefix(vcpu)) |
| 484 | rc = set_validity_icpt(scb_s, 0x0011U); |
| 485 | else if ((gpa & PAGE_MASK) != |
| 486 | ((gpa + sizeof(struct bsca_block) - 1) & PAGE_MASK)) |
| 487 | rc = set_validity_icpt(scb_s, 0x003bU); |
| 488 | if (!rc) { |
| 489 | rc = pin_guest_page(vcpu->kvm, gpa, &hpa); |
| 490 | if (rc == -EINVAL) |
| 491 | rc = set_validity_icpt(scb_s, 0x0034U); |
| 492 | } |
| 493 | if (rc) |
| 494 | goto unpin; |
| 495 | scb_s->scaoh = (u32)((u64)hpa >> 32); |
| 496 | scb_s->scaol = (u32)(u64)hpa; |
| 497 | } |
David Hildenbrand | 166ecb3 | 2015-11-25 11:13:32 +0100 | [diff] [blame^] | 498 | |
| 499 | gpa = scb_o->itdba & ~0xffUL; |
| 500 | if (gpa && (scb_s->ecb & 0x10U)) { |
| 501 | if (!(gpa & ~0x1fffU)) { |
| 502 | rc = set_validity_icpt(scb_s, 0x0080U); |
| 503 | goto unpin; |
| 504 | } |
| 505 | /* 256 bytes cannot cross page boundaries */ |
| 506 | rc = pin_guest_page(vcpu->kvm, gpa, &hpa); |
| 507 | if (rc == -EINVAL) |
| 508 | rc = set_validity_icpt(scb_s, 0x0080U); |
| 509 | if (rc) |
| 510 | goto unpin; |
| 511 | scb_s->itdba = hpa; |
| 512 | } |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 513 | return 0; |
| 514 | unpin: |
| 515 | unpin_blocks(vcpu, vsie_page); |
| 516 | return rc; |
| 517 | } |
| 518 | |
| 519 | /* unpin the scb provided by guest 2, marking it as dirty */ |
| 520 | static void unpin_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page, |
| 521 | gpa_t gpa) |
| 522 | { |
| 523 | hpa_t hpa = (hpa_t) vsie_page->scb_o; |
| 524 | |
| 525 | if (hpa) |
| 526 | unpin_guest_page(vcpu->kvm, gpa, hpa); |
| 527 | vsie_page->scb_o = NULL; |
| 528 | } |
| 529 | |
| 530 | /* |
| 531 | * Pin the scb at gpa provided by guest 2 at vsie_page->scb_o. |
| 532 | * |
| 533 | * Returns: - 0 if the scb was pinned. |
| 534 | * - > 0 if control has to be given to guest 2 |
| 535 | * - -ENOMEM if out of memory |
| 536 | */ |
| 537 | static int pin_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page, |
| 538 | gpa_t gpa) |
| 539 | { |
| 540 | hpa_t hpa; |
| 541 | int rc; |
| 542 | |
| 543 | rc = pin_guest_page(vcpu->kvm, gpa, &hpa); |
| 544 | if (rc == -EINVAL) { |
| 545 | rc = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 546 | if (!rc) |
| 547 | rc = 1; |
| 548 | } |
| 549 | if (!rc) |
| 550 | vsie_page->scb_o = (struct kvm_s390_sie_block *) hpa; |
| 551 | return rc; |
| 552 | } |
| 553 | |
| 554 | /* |
| 555 | * Inject a fault into guest 2. |
| 556 | * |
| 557 | * Returns: - > 0 if control has to be given to guest 2 |
| 558 | * < 0 if an error occurred during injection. |
| 559 | */ |
| 560 | static int inject_fault(struct kvm_vcpu *vcpu, __u16 code, __u64 vaddr, |
| 561 | bool write_flag) |
| 562 | { |
| 563 | struct kvm_s390_pgm_info pgm = { |
| 564 | .code = code, |
| 565 | .trans_exc_code = |
| 566 | /* 0-51: virtual address */ |
| 567 | (vaddr & 0xfffffffffffff000UL) | |
| 568 | /* 52-53: store / fetch */ |
| 569 | (((unsigned int) !write_flag) + 1) << 10, |
| 570 | /* 62-63: asce id (alway primary == 0) */ |
| 571 | .exc_access_id = 0, /* always primary */ |
| 572 | .op_access_id = 0, /* not MVPG */ |
| 573 | }; |
| 574 | int rc; |
| 575 | |
| 576 | if (code == PGM_PROTECTION) |
| 577 | pgm.trans_exc_code |= 0x4UL; |
| 578 | |
| 579 | rc = kvm_s390_inject_prog_irq(vcpu, &pgm); |
| 580 | return rc ? rc : 1; |
| 581 | } |
| 582 | |
| 583 | /* |
| 584 | * Handle a fault during vsie execution on a gmap shadow. |
| 585 | * |
| 586 | * Returns: - 0 if the fault was resolved |
| 587 | * - > 0 if control has to be given to guest 2 |
| 588 | * - < 0 if an error occurred |
| 589 | */ |
| 590 | static int handle_fault(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) |
| 591 | { |
| 592 | int rc; |
| 593 | |
| 594 | if (current->thread.gmap_int_code == PGM_PROTECTION) |
| 595 | /* we can directly forward all protection exceptions */ |
| 596 | return inject_fault(vcpu, PGM_PROTECTION, |
| 597 | current->thread.gmap_addr, 1); |
| 598 | |
| 599 | rc = kvm_s390_shadow_fault(vcpu, vsie_page->gmap, |
| 600 | current->thread.gmap_addr); |
| 601 | if (rc > 0) { |
| 602 | rc = inject_fault(vcpu, rc, |
| 603 | current->thread.gmap_addr, |
| 604 | current->thread.gmap_write_flag); |
| 605 | } |
| 606 | return rc; |
| 607 | } |
| 608 | |
| 609 | static inline void clear_vsie_icpt(struct vsie_page *vsie_page) |
| 610 | { |
| 611 | vsie_page->scb_s.icptcode = 0; |
| 612 | } |
| 613 | |
David Hildenbrand | 66b630d | 2015-11-26 14:11:19 +0100 | [diff] [blame] | 614 | /* rewind the psw and clear the vsie icpt, so we can retry execution */ |
| 615 | static void retry_vsie_icpt(struct vsie_page *vsie_page) |
| 616 | { |
| 617 | struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s; |
| 618 | int ilen = insn_length(scb_s->ipa >> 8); |
| 619 | |
| 620 | /* take care of EXECUTE instructions */ |
| 621 | if (scb_s->icptstatus & 1) { |
| 622 | ilen = (scb_s->icptstatus >> 4) & 0x6; |
| 623 | if (!ilen) |
| 624 | ilen = 4; |
| 625 | } |
| 626 | scb_s->gpsw.addr = __rewind_psw(scb_s->gpsw, ilen); |
| 627 | clear_vsie_icpt(vsie_page); |
| 628 | } |
| 629 | |
| 630 | /* |
| 631 | * Try to shadow + enable the guest 2 provided facility list. |
| 632 | * Retry instruction execution if enabled for and provided by guest 2. |
| 633 | * |
| 634 | * Returns: - 0 if handled (retry or guest 2 icpt) |
| 635 | * - > 0 if control has to be given to guest 2 |
| 636 | */ |
| 637 | static int handle_stfle(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) |
| 638 | { |
| 639 | struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s; |
| 640 | __u32 fac = vsie_page->scb_o->fac & 0x7ffffff8U; |
| 641 | |
| 642 | if (fac && test_kvm_facility(vcpu->kvm, 7)) { |
| 643 | retry_vsie_icpt(vsie_page); |
| 644 | if (read_guest_real(vcpu, fac, &vsie_page->fac, |
| 645 | sizeof(vsie_page->fac))) |
| 646 | return set_validity_icpt(scb_s, 0x1090U); |
| 647 | scb_s->fac = (__u32)(__u64) &vsie_page->fac; |
| 648 | } |
| 649 | return 0; |
| 650 | } |
| 651 | |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 652 | /* |
| 653 | * Run the vsie on a shadow scb and a shadow gmap, without any further |
| 654 | * sanity checks, handling SIE faults. |
| 655 | * |
| 656 | * Returns: - 0 everything went fine |
| 657 | * - > 0 if control has to be given to guest 2 |
| 658 | * - < 0 if an error occurred |
| 659 | */ |
| 660 | static int do_vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) |
| 661 | { |
| 662 | struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s; |
| 663 | struct kvm_s390_sie_block *scb_o = vsie_page->scb_o; |
| 664 | int rc; |
| 665 | |
| 666 | if (need_resched()) |
| 667 | schedule(); |
| 668 | if (test_cpu_flag(CIF_MCCK_PENDING)) |
| 669 | s390_handle_mcck(); |
| 670 | |
| 671 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 672 | local_irq_disable(); |
| 673 | kvm_guest_enter(); |
| 674 | local_irq_enable(); |
| 675 | |
| 676 | rc = sie64a(scb_s, vcpu->run->s.regs.gprs); |
| 677 | |
| 678 | local_irq_disable(); |
| 679 | kvm_guest_exit(); |
| 680 | local_irq_enable(); |
| 681 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 682 | |
| 683 | if (rc > 0) |
| 684 | rc = 0; /* we could still have an icpt */ |
| 685 | else if (rc == -EFAULT) |
| 686 | return handle_fault(vcpu, vsie_page); |
| 687 | |
| 688 | switch (scb_s->icptcode) { |
David Hildenbrand | 66b630d | 2015-11-26 14:11:19 +0100 | [diff] [blame] | 689 | case ICPT_INST: |
| 690 | if (scb_s->ipa == 0xb2b0) |
| 691 | rc = handle_stfle(vcpu, vsie_page); |
| 692 | break; |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 693 | case ICPT_STOP: |
| 694 | /* stop not requested by g2 - must have been a kick */ |
| 695 | if (!(atomic_read(&scb_o->cpuflags) & CPUSTAT_STOP_INT)) |
| 696 | clear_vsie_icpt(vsie_page); |
| 697 | break; |
| 698 | case ICPT_VALIDITY: |
| 699 | if ((scb_s->ipa & 0xf000) != 0xf000) |
| 700 | scb_s->ipa += 0x1000; |
| 701 | break; |
| 702 | } |
| 703 | return rc; |
| 704 | } |
| 705 | |
| 706 | static void release_gmap_shadow(struct vsie_page *vsie_page) |
| 707 | { |
| 708 | if (vsie_page->gmap) |
| 709 | gmap_put(vsie_page->gmap); |
| 710 | WRITE_ONCE(vsie_page->gmap, NULL); |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 711 | prefix_unmapped(vsie_page); |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | static int acquire_gmap_shadow(struct kvm_vcpu *vcpu, |
| 715 | struct vsie_page *vsie_page) |
| 716 | { |
| 717 | unsigned long asce; |
| 718 | union ctlreg0 cr0; |
| 719 | struct gmap *gmap; |
| 720 | int edat; |
| 721 | |
| 722 | asce = vcpu->arch.sie_block->gcr[1]; |
| 723 | cr0.val = vcpu->arch.sie_block->gcr[0]; |
| 724 | edat = cr0.edat && test_kvm_facility(vcpu->kvm, 8); |
| 725 | edat += edat && test_kvm_facility(vcpu->kvm, 78); |
| 726 | |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 727 | /* |
| 728 | * ASCE or EDAT could have changed since last icpt, or the gmap |
| 729 | * we're holding has been unshadowed. If the gmap is still valid, |
| 730 | * we can safely reuse it. |
| 731 | */ |
| 732 | if (vsie_page->gmap && gmap_shadow_valid(vsie_page->gmap, asce, edat)) |
| 733 | return 0; |
| 734 | |
| 735 | /* release the old shadow - if any, and mark the prefix as unmapped */ |
| 736 | release_gmap_shadow(vsie_page); |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 737 | gmap = gmap_shadow(vcpu->arch.gmap, asce, edat); |
| 738 | if (IS_ERR(gmap)) |
| 739 | return PTR_ERR(gmap); |
| 740 | gmap->private = vcpu->kvm; |
| 741 | WRITE_ONCE(vsie_page->gmap, gmap); |
| 742 | return 0; |
| 743 | } |
| 744 | |
| 745 | /* |
| 746 | * Run the vsie on a shadowed scb, managing the gmap shadow, handling |
| 747 | * prefix pages and faults. |
| 748 | * |
| 749 | * Returns: - 0 if no errors occurred |
| 750 | * - > 0 if control has to be given to guest 2 |
| 751 | * - -ENOMEM if out of memory |
| 752 | */ |
| 753 | static int vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) |
| 754 | { |
| 755 | struct kvm_s390_sie_block *scb_s = &vsie_page->scb_s; |
| 756 | int rc = 0; |
| 757 | |
| 758 | while (1) { |
| 759 | rc = acquire_gmap_shadow(vcpu, vsie_page); |
| 760 | if (!rc) |
| 761 | rc = map_prefix(vcpu, vsie_page); |
| 762 | if (!rc) { |
| 763 | gmap_enable(vsie_page->gmap); |
| 764 | update_intervention_requests(vsie_page); |
| 765 | rc = do_vsie_run(vcpu, vsie_page); |
| 766 | gmap_enable(vcpu->arch.gmap); |
| 767 | } |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 768 | |
| 769 | if (rc == -EAGAIN) |
| 770 | rc = 0; |
| 771 | if (rc || scb_s->icptcode || signal_pending(current) || |
| 772 | kvm_s390_vcpu_has_irq(vcpu, 0)) |
| 773 | break; |
| 774 | }; |
| 775 | |
| 776 | if (rc == -EFAULT) { |
| 777 | /* |
| 778 | * Addressing exceptions are always presentes as intercepts. |
| 779 | * As addressing exceptions are suppressing and our guest 3 PSW |
| 780 | * points at the responsible instruction, we have to |
| 781 | * forward the PSW and set the ilc. If we can't read guest 3 |
| 782 | * instruction, we can use an arbitrary ilc. Let's always use |
| 783 | * ilen = 4 for now, so we can avoid reading in guest 3 virtual |
| 784 | * memory. (we could also fake the shadow so the hardware |
| 785 | * handles it). |
| 786 | */ |
| 787 | scb_s->icptcode = ICPT_PROGI; |
| 788 | scb_s->iprcc = PGM_ADDRESSING; |
| 789 | scb_s->pgmilc = 4; |
| 790 | scb_s->gpsw.addr = __rewind_psw(scb_s->gpsw, 4); |
| 791 | } |
| 792 | return rc; |
| 793 | } |
| 794 | |
| 795 | /* |
| 796 | * Get or create a vsie page for a scb address. |
| 797 | * |
| 798 | * Returns: - address of a vsie page (cached or new one) |
| 799 | * - NULL if the same scb address is already used by another VCPU |
| 800 | * - ERR_PTR(-ENOMEM) if out of memory |
| 801 | */ |
| 802 | static struct vsie_page *get_vsie_page(struct kvm *kvm, unsigned long addr) |
| 803 | { |
| 804 | struct vsie_page *vsie_page; |
| 805 | struct page *page; |
| 806 | int nr_vcpus; |
| 807 | |
| 808 | rcu_read_lock(); |
| 809 | page = radix_tree_lookup(&kvm->arch.vsie.addr_to_page, addr >> 9); |
| 810 | rcu_read_unlock(); |
| 811 | if (page) { |
| 812 | if (page_ref_inc_return(page) == 2) |
| 813 | return page_to_virt(page); |
| 814 | page_ref_dec(page); |
| 815 | } |
| 816 | |
| 817 | /* |
| 818 | * We want at least #online_vcpus shadows, so every VCPU can execute |
| 819 | * the VSIE in parallel. |
| 820 | */ |
| 821 | nr_vcpus = atomic_read(&kvm->online_vcpus); |
| 822 | |
| 823 | mutex_lock(&kvm->arch.vsie.mutex); |
| 824 | if (kvm->arch.vsie.page_count < nr_vcpus) { |
David Hildenbrand | 66b630d | 2015-11-26 14:11:19 +0100 | [diff] [blame] | 825 | page = alloc_page(GFP_KERNEL | __GFP_ZERO | GFP_DMA); |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 826 | if (!page) { |
| 827 | mutex_unlock(&kvm->arch.vsie.mutex); |
| 828 | return ERR_PTR(-ENOMEM); |
| 829 | } |
| 830 | page_ref_inc(page); |
| 831 | kvm->arch.vsie.pages[kvm->arch.vsie.page_count] = page; |
| 832 | kvm->arch.vsie.page_count++; |
| 833 | } else { |
| 834 | /* reuse an existing entry that belongs to nobody */ |
| 835 | while (true) { |
| 836 | page = kvm->arch.vsie.pages[kvm->arch.vsie.next]; |
| 837 | if (page_ref_inc_return(page) == 2) |
| 838 | break; |
| 839 | page_ref_dec(page); |
| 840 | kvm->arch.vsie.next++; |
| 841 | kvm->arch.vsie.next %= nr_vcpus; |
| 842 | } |
| 843 | radix_tree_delete(&kvm->arch.vsie.addr_to_page, page->index >> 9); |
| 844 | } |
| 845 | page->index = addr; |
| 846 | /* double use of the same address */ |
| 847 | if (radix_tree_insert(&kvm->arch.vsie.addr_to_page, addr >> 9, page)) { |
| 848 | page_ref_dec(page); |
| 849 | mutex_unlock(&kvm->arch.vsie.mutex); |
| 850 | return NULL; |
| 851 | } |
| 852 | mutex_unlock(&kvm->arch.vsie.mutex); |
| 853 | |
| 854 | vsie_page = page_to_virt(page); |
| 855 | memset(&vsie_page->scb_s, 0, sizeof(struct kvm_s390_sie_block)); |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 856 | release_gmap_shadow(vsie_page); |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 857 | vsie_page->scb_s.ihcpu = 0xffffU; |
| 858 | return vsie_page; |
| 859 | } |
| 860 | |
| 861 | /* put a vsie page acquired via get_vsie_page */ |
| 862 | static void put_vsie_page(struct kvm *kvm, struct vsie_page *vsie_page) |
| 863 | { |
| 864 | struct page *page = pfn_to_page(__pa(vsie_page) >> PAGE_SHIFT); |
| 865 | |
| 866 | page_ref_dec(page); |
| 867 | } |
| 868 | |
| 869 | int kvm_s390_handle_vsie(struct kvm_vcpu *vcpu) |
| 870 | { |
| 871 | struct vsie_page *vsie_page; |
| 872 | unsigned long scb_addr; |
| 873 | int rc; |
| 874 | |
| 875 | vcpu->stat.instruction_sie++; |
| 876 | if (!test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_SIEF2)) |
| 877 | return -EOPNOTSUPP; |
| 878 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 879 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 880 | |
| 881 | BUILD_BUG_ON(sizeof(struct vsie_page) != 4096); |
| 882 | scb_addr = kvm_s390_get_base_disp_s(vcpu, NULL); |
| 883 | |
| 884 | /* 512 byte alignment */ |
| 885 | if (unlikely(scb_addr & 0x1ffUL)) |
| 886 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 887 | |
| 888 | if (signal_pending(current) || kvm_s390_vcpu_has_irq(vcpu, 0)) |
| 889 | return 0; |
| 890 | |
| 891 | vsie_page = get_vsie_page(vcpu->kvm, scb_addr); |
| 892 | if (IS_ERR(vsie_page)) |
| 893 | return PTR_ERR(vsie_page); |
| 894 | else if (!vsie_page) |
| 895 | /* double use of sie control block - simply do nothing */ |
| 896 | return 0; |
| 897 | |
| 898 | rc = pin_scb(vcpu, vsie_page, scb_addr); |
| 899 | if (rc) |
| 900 | goto out_put; |
| 901 | rc = shadow_scb(vcpu, vsie_page); |
| 902 | if (rc) |
| 903 | goto out_unpin_scb; |
| 904 | rc = pin_blocks(vcpu, vsie_page); |
| 905 | if (rc) |
| 906 | goto out_unshadow; |
| 907 | rc = vsie_run(vcpu, vsie_page); |
| 908 | unpin_blocks(vcpu, vsie_page); |
| 909 | out_unshadow: |
| 910 | unshadow_scb(vcpu, vsie_page); |
| 911 | out_unpin_scb: |
| 912 | unpin_scb(vcpu, vsie_page, scb_addr); |
| 913 | out_put: |
| 914 | put_vsie_page(vcpu->kvm, vsie_page); |
| 915 | |
| 916 | return rc < 0 ? rc : 0; |
| 917 | } |
| 918 | |
| 919 | /* Init the vsie data structures. To be called when a vm is initialized. */ |
| 920 | void kvm_s390_vsie_init(struct kvm *kvm) |
| 921 | { |
| 922 | mutex_init(&kvm->arch.vsie.mutex); |
| 923 | INIT_RADIX_TREE(&kvm->arch.vsie.addr_to_page, GFP_KERNEL); |
| 924 | } |
| 925 | |
| 926 | /* Destroy the vsie data structures. To be called when a vm is destroyed. */ |
| 927 | void kvm_s390_vsie_destroy(struct kvm *kvm) |
| 928 | { |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 929 | struct vsie_page *vsie_page; |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 930 | struct page *page; |
| 931 | int i; |
| 932 | |
| 933 | mutex_lock(&kvm->arch.vsie.mutex); |
| 934 | for (i = 0; i < kvm->arch.vsie.page_count; i++) { |
| 935 | page = kvm->arch.vsie.pages[i]; |
| 936 | kvm->arch.vsie.pages[i] = NULL; |
David Hildenbrand | 06d68a6 | 2016-04-22 13:50:09 +0200 | [diff] [blame] | 937 | vsie_page = page_to_virt(page); |
| 938 | release_gmap_shadow(vsie_page); |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 939 | /* free the radix tree entry */ |
| 940 | radix_tree_delete(&kvm->arch.vsie.addr_to_page, page->index >> 9); |
| 941 | __free_page(page); |
| 942 | } |
| 943 | kvm->arch.vsie.page_count = 0; |
| 944 | mutex_unlock(&kvm->arch.vsie.mutex); |
| 945 | } |