blob: 7b397b37d11aa8f1c85226563cadcd18688e4135 [file] [log] [blame]
Christian Borntraeger453423d2008-03-25 18:47:29 +01001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * handling privileged instructions
Christian Borntraeger453423d2008-03-25 18:47:29 +01003 *
4 * Copyright IBM Corp. 2008
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): Carsten Otte <cotte@de.ibm.com>
11 * Christian Borntraeger <borntraeger@de.ibm.com>
12 */
13
14#include <linux/kvm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010016#include <linux/errno.h>
Heiko Carstens7c959e82013-03-05 13:14:46 +010017#include <asm/asm-offsets.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010018#include <asm/current.h>
19#include <asm/debug.h>
20#include <asm/ebcdic.h>
21#include <asm/sysinfo.h>
Cornelia Huck48a3e952012-12-20 15:32:09 +010022#include <asm/ptrace.h>
23#include <asm/compat.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010024#include "gaccess.h"
25#include "kvm-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020026#include "trace.h"
Christian Borntraeger453423d2008-03-25 18:47:29 +010027
28static int handle_set_prefix(struct kvm_vcpu *vcpu)
29{
Christian Borntraeger453423d2008-03-25 18:47:29 +010030 u64 operand2;
31 u32 address = 0;
32 u8 tmp;
33
34 vcpu->stat.instruction_spx++;
35
Cornelia Huckb1c571a2012-12-20 15:32:07 +010036 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +010037
38 /* must be word boundary */
39 if (operand2 & 3) {
40 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
41 goto out;
42 }
43
44 /* get the value */
Heiko Carstens0a75ca22013-03-05 13:14:47 +010045 if (get_guest(vcpu, address, (u32 __user *) operand2)) {
Christian Borntraeger453423d2008-03-25 18:47:29 +010046 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
47 goto out;
48 }
49
50 address = address & 0x7fffe000u;
51
52 /* make sure that the new value is valid memory */
53 if (copy_from_guest_absolute(vcpu, &tmp, address, 1) ||
54 (copy_from_guest_absolute(vcpu, &tmp, address + PAGE_SIZE, 1))) {
55 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
56 goto out;
57 }
58
Christian Borntraeger8d26cf72012-01-11 11:19:32 +010059 kvm_s390_set_prefix(vcpu, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010060
61 VCPU_EVENT(vcpu, 5, "setting prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +020062 trace_kvm_s390_handle_prefix(vcpu, 1, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010063out:
64 return 0;
65}
66
67static int handle_store_prefix(struct kvm_vcpu *vcpu)
68{
Christian Borntraeger453423d2008-03-25 18:47:29 +010069 u64 operand2;
70 u32 address;
71
72 vcpu->stat.instruction_stpx++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +010073
74 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +010075
76 /* must be word boundary */
77 if (operand2 & 3) {
78 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
79 goto out;
80 }
81
82 address = vcpu->arch.sie_block->prefix;
83 address = address & 0x7fffe000u;
84
85 /* get the value */
Heiko Carstens0a75ca22013-03-05 13:14:47 +010086 if (put_guest(vcpu, address, (u32 __user *)operand2)) {
Christian Borntraeger453423d2008-03-25 18:47:29 +010087 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
88 goto out;
89 }
90
91 VCPU_EVENT(vcpu, 5, "storing prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +020092 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010093out:
94 return 0;
95}
96
97static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
98{
Christian Borntraeger453423d2008-03-25 18:47:29 +010099 u64 useraddr;
100 int rc;
101
102 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100103
104 useraddr = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100105
106 if (useraddr & 1) {
107 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
108 goto out;
109 }
110
Heiko Carstens0a75ca22013-03-05 13:14:47 +0100111 rc = put_guest(vcpu, vcpu->vcpu_id, (u16 __user *)useraddr);
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100112 if (rc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100113 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
114 goto out;
115 }
116
Heiko Carstens33e19112009-01-09 12:14:56 +0100117 VCPU_EVENT(vcpu, 5, "storing cpu address to %llx", useraddr);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200118 trace_kvm_s390_handle_stap(vcpu, useraddr);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100119out:
120 return 0;
121}
122
123static int handle_skey(struct kvm_vcpu *vcpu)
124{
125 vcpu->stat.instruction_storage_key++;
126 vcpu->arch.sie_block->gpsw.addr -= 4;
127 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
128 return 0;
129}
130
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100131static int handle_tpi(struct kvm_vcpu *vcpu)
132{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100133 struct kvm_s390_interrupt_info *inti;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100134 u64 addr;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100135 int cc;
136
137 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100138 if (addr & 3) {
139 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
140 goto out;
141 }
142 cc = 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100143 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->run->s.regs.crs[6], 0);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100144 if (!inti)
145 goto no_interrupt;
146 cc = 1;
147 if (addr) {
148 /*
149 * Store the two-word I/O interruption code into the
150 * provided area.
151 */
Heiko Carstens0a75ca22013-03-05 13:14:47 +0100152 put_guest(vcpu, inti->io.subchannel_id, (u16 __user *) addr);
153 put_guest(vcpu, inti->io.subchannel_nr, (u16 __user *) (addr + 2));
154 put_guest(vcpu, inti->io.io_int_parm, (u32 __user *) (addr + 4));
Heiko Carstens7c959e82013-03-05 13:14:46 +0100155 } else {
156 /*
157 * Store the three-word I/O interruption code into
158 * the appropriate lowcore area.
159 */
Heiko Carstens0a75ca22013-03-05 13:14:47 +0100160 put_guest(vcpu, inti->io.subchannel_id, (u16 __user *) __LC_SUBCHANNEL_ID);
161 put_guest(vcpu, inti->io.subchannel_nr, (u16 __user *) __LC_SUBCHANNEL_NR);
162 put_guest(vcpu, inti->io.io_int_parm, (u32 __user *) __LC_IO_INT_PARM);
163 put_guest(vcpu, inti->io.io_int_word, (u32 __user *) __LC_IO_INT_WORD);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100164 }
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100165 kfree(inti);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100166no_interrupt:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100167 /* Set condition code and we're done. */
168 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
169 vcpu->arch.sie_block->gpsw.mask |= (cc & 3ul) << 44;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100170out:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100171 return 0;
172}
173
174static int handle_tsch(struct kvm_vcpu *vcpu)
175{
176 struct kvm_s390_interrupt_info *inti;
177
178 inti = kvm_s390_get_io_int(vcpu->kvm, 0,
179 vcpu->run->s.regs.gprs[1]);
180
181 /*
182 * Prepare exit to userspace.
183 * We indicate whether we dequeued a pending I/O interrupt
184 * so that userspace can re-inject it if the instruction gets
185 * a program check. While this may re-order the pending I/O
186 * interrupts, this is no problem since the priority is kept
187 * intact.
188 */
189 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
190 vcpu->run->s390_tsch.dequeued = !!inti;
191 if (inti) {
192 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
193 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
194 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
195 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
196 }
197 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
198 kfree(inti);
199 return -EREMOTE;
200}
201
Cornelia Huckf379aae2012-12-20 15:32:10 +0100202static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100203{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100204 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100205
206 if (vcpu->kvm->arch.css_support) {
207 /*
208 * Most I/O instructions will be handled by userspace.
209 * Exceptions are tpi and the interrupt portion of tsch.
210 */
211 if (vcpu->arch.sie_block->ipa == 0xb236)
212 return handle_tpi(vcpu);
213 if (vcpu->arch.sie_block->ipa == 0xb235)
214 return handle_tsch(vcpu);
215 /* Handle in userspace. */
216 return -EOPNOTSUPP;
217 } else {
218 /*
219 * Set condition code 3 to stop the guest from issueing channel
220 * I/O instructions.
221 */
222 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
223 vcpu->arch.sie_block->gpsw.mask |= (3 & 3ul) << 44;
224 return 0;
225 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100226}
227
Christian Borntraeger453423d2008-03-25 18:47:29 +0100228static int handle_stfl(struct kvm_vcpu *vcpu)
229{
Martin Schwidefsky14375bc2010-10-25 16:10:51 +0200230 unsigned int facility_list;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100231 int rc;
232
233 vcpu->stat.instruction_stfl++;
Christian Borntraegera0046b62008-08-29 13:29:45 +0200234 /* only pass the facility bits, which we can handle */
Martin Schwidefsky14375bc2010-10-25 16:10:51 +0200235 facility_list = S390_lowcore.stfl_fac_list & 0xff00fff3;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100236
237 rc = copy_to_guest(vcpu, offsetof(struct _lowcore, stfl_fac_list),
238 &facility_list, sizeof(facility_list));
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100239 if (rc)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100240 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200241 else {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100242 VCPU_EVENT(vcpu, 5, "store facility list value %x",
243 facility_list);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200244 trace_kvm_s390_handle_stfl(vcpu, facility_list);
245 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100246 return 0;
247}
248
Cornelia Huck48a3e952012-12-20 15:32:09 +0100249static void handle_new_psw(struct kvm_vcpu *vcpu)
250{
251 /* Check whether the new psw is enabled for machine checks. */
252 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_MCHECK)
253 kvm_s390_deliver_pending_machine_checks(vcpu);
254}
255
256#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
257#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
Heiko Carstensd21683e2013-03-25 17:22:49 +0100258#define PSW_ADDR_24 0x0000000000ffffffUL
Cornelia Huck48a3e952012-12-20 15:32:09 +0100259#define PSW_ADDR_31 0x000000007fffffffUL
260
261int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
262{
263 u64 addr;
264 psw_compat_t new_psw;
265
266 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
267 return kvm_s390_inject_program_int(vcpu,
268 PGM_PRIVILEGED_OPERATION);
269
270 addr = kvm_s390_get_base_disp_s(vcpu);
271
272 if (addr & 7) {
273 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
274 goto out;
275 }
276
277 if (copy_from_guest(vcpu, &new_psw, addr, sizeof(new_psw))) {
278 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
279 goto out;
280 }
281
282 if (!(new_psw.mask & PSW32_MASK_BASE)) {
283 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
284 goto out;
285 }
286
287 vcpu->arch.sie_block->gpsw.mask =
288 (new_psw.mask & ~PSW32_MASK_BASE) << 32;
289 vcpu->arch.sie_block->gpsw.addr = new_psw.addr;
290
291 if ((vcpu->arch.sie_block->gpsw.mask & PSW_MASK_UNASSIGNED) ||
292 (!(vcpu->arch.sie_block->gpsw.mask & PSW_MASK_ADDR_MODE) &&
293 (vcpu->arch.sie_block->gpsw.addr & ~PSW_ADDR_24)) ||
294 ((vcpu->arch.sie_block->gpsw.mask & PSW_MASK_ADDR_MODE) ==
295 PSW_MASK_EA)) {
296 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
297 goto out;
298 }
299
300 handle_new_psw(vcpu);
301out:
302 return 0;
303}
304
305static int handle_lpswe(struct kvm_vcpu *vcpu)
306{
307 u64 addr;
308 psw_t new_psw;
309
310 addr = kvm_s390_get_base_disp_s(vcpu);
311
312 if (addr & 7) {
313 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
314 goto out;
315 }
316
317 if (copy_from_guest(vcpu, &new_psw, addr, sizeof(new_psw))) {
318 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
319 goto out;
320 }
321
322 vcpu->arch.sie_block->gpsw.mask = new_psw.mask;
323 vcpu->arch.sie_block->gpsw.addr = new_psw.addr;
324
325 if ((vcpu->arch.sie_block->gpsw.mask & PSW_MASK_UNASSIGNED) ||
326 (((vcpu->arch.sie_block->gpsw.mask & PSW_MASK_ADDR_MODE) ==
327 PSW_MASK_BA) &&
328 (vcpu->arch.sie_block->gpsw.addr & ~PSW_ADDR_31)) ||
329 (!(vcpu->arch.sie_block->gpsw.mask & PSW_MASK_ADDR_MODE) &&
330 (vcpu->arch.sie_block->gpsw.addr & ~PSW_ADDR_24)) ||
331 ((vcpu->arch.sie_block->gpsw.mask & PSW_MASK_ADDR_MODE) ==
332 PSW_MASK_EA)) {
333 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
334 goto out;
335 }
336
337 handle_new_psw(vcpu);
338out:
339 return 0;
340}
341
Christian Borntraeger453423d2008-03-25 18:47:29 +0100342static int handle_stidp(struct kvm_vcpu *vcpu)
343{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100344 u64 operand2;
345 int rc;
346
347 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100348
349 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100350
351 if (operand2 & 7) {
352 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
353 goto out;
354 }
355
Heiko Carstens0a75ca22013-03-05 13:14:47 +0100356 rc = put_guest(vcpu, vcpu->arch.stidp_data, (u64 __user *)operand2);
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100357 if (rc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100358 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
359 goto out;
360 }
361
362 VCPU_EVENT(vcpu, 5, "%s", "store cpu id");
363out:
364 return 0;
365}
366
367static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
368{
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200369 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100370 int cpus = 0;
371 int n;
372
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200373 spin_lock(&fi->lock);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100374 for (n = 0; n < KVM_MAX_VCPUS; n++)
375 if (fi->local_int[n])
376 cpus++;
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200377 spin_unlock(&fi->lock);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100378
379 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200380 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100381 mem->count = 0;
382 if (mem->count < 8)
383 mem->count++;
384 for (n = mem->count - 1; n > 0 ; n--)
385 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
386
387 mem->vm[0].cpus_total = cpus;
388 mem->vm[0].cpus_configured = cpus;
389 mem->vm[0].cpus_standby = 0;
390 mem->vm[0].cpus_reserved = 0;
391 mem->vm[0].caf = 1000;
392 memcpy(mem->vm[0].name, "KVMguest", 8);
393 ASCEBC(mem->vm[0].name, 8);
394 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
395 ASCEBC(mem->vm[0].cpi, 16);
396}
397
398static int handle_stsi(struct kvm_vcpu *vcpu)
399{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100400 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
401 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
402 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100403 u64 operand2;
404 unsigned long mem;
405
406 vcpu->stat.instruction_stsi++;
407 VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
408
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100409 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100410
411 if (operand2 & 0xfff && fc > 0)
412 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
413
414 switch (fc) {
415 case 0:
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100416 vcpu->run->s.regs.gprs[0] = 3 << 28;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100417 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
418 return 0;
419 case 1: /* same handling for 1 and 2 */
420 case 2:
421 mem = get_zeroed_page(GFP_KERNEL);
422 if (!mem)
423 goto out_fail;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200424 if (stsi((void *) mem, fc, sel1, sel2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100425 goto out_mem;
426 break;
427 case 3:
428 if (sel1 != 2 || sel2 != 2)
429 goto out_fail;
430 mem = get_zeroed_page(GFP_KERNEL);
431 if (!mem)
432 goto out_fail;
433 handle_stsi_3_2_2(vcpu, (void *) mem);
434 break;
435 default:
436 goto out_fail;
437 }
438
439 if (copy_to_guest_absolute(vcpu, operand2, (void *) mem, PAGE_SIZE)) {
440 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
441 goto out_mem;
442 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200443 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100444 free_page(mem);
445 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100446 vcpu->run->s.regs.gprs[0] = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100447 return 0;
448out_mem:
449 free_page(mem);
450out_fail:
451 /* condition code 3 */
452 vcpu->arch.sie_block->gpsw.mask |= 3ul << 44;
453 return 0;
454}
455
Cornelia Huckf379aae2012-12-20 15:32:10 +0100456static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100457 [0x02] = handle_stidp,
458 [0x10] = handle_set_prefix,
459 [0x11] = handle_store_prefix,
460 [0x12] = handle_store_cpu_address,
461 [0x29] = handle_skey,
462 [0x2a] = handle_skey,
463 [0x2b] = handle_skey,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100464 [0x30] = handle_io_inst,
465 [0x31] = handle_io_inst,
466 [0x32] = handle_io_inst,
467 [0x33] = handle_io_inst,
468 [0x34] = handle_io_inst,
469 [0x35] = handle_io_inst,
470 [0x36] = handle_io_inst,
471 [0x37] = handle_io_inst,
472 [0x38] = handle_io_inst,
473 [0x39] = handle_io_inst,
474 [0x3a] = handle_io_inst,
475 [0x3b] = handle_io_inst,
476 [0x3c] = handle_io_inst,
477 [0x5f] = handle_io_inst,
478 [0x74] = handle_io_inst,
479 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100480 [0x7d] = handle_stsi,
481 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100482 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100483};
484
Christian Borntraeger70455a32009-01-22 10:28:29 +0100485int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100486{
487 intercept_handler_t handler;
488
Christian Borntraeger70455a32009-01-22 10:28:29 +0100489 /*
490 * a lot of B2 instructions are priviledged. We first check for
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300491 * the privileged ones, that we can handle in the kernel. If the
Christian Borntraeger70455a32009-01-22 10:28:29 +0100492 * kernel can handle this instruction, we check for the problem
493 * state bit and (a) handle the instruction or (b) send a code 2
494 * program check.
495 * Anything else goes to userspace.*/
Cornelia Huckf379aae2012-12-20 15:32:10 +0100496 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Christian Borntraeger70455a32009-01-22 10:28:29 +0100497 if (handler) {
498 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
499 return kvm_s390_inject_program_int(vcpu,
500 PGM_PRIVILEGED_OPERATION);
501 else
502 return handler(vcpu);
503 }
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100504 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100505}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200506
Cornelia Huck48a3e952012-12-20 15:32:09 +0100507static int handle_epsw(struct kvm_vcpu *vcpu)
508{
509 int reg1, reg2;
510
511 reg1 = (vcpu->arch.sie_block->ipb & 0x00f00000) >> 24;
512 reg2 = (vcpu->arch.sie_block->ipb & 0x000f0000) >> 16;
513
514 /* This basically extracts the mask half of the psw. */
515 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000;
516 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
517 if (reg2) {
518 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000;
519 vcpu->run->s.regs.gprs[reg2] |=
520 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffff;
521 }
522 return 0;
523}
524
525static const intercept_handler_t b9_handlers[256] = {
526 [0x8d] = handle_epsw,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100527 [0x9c] = handle_io_inst,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100528};
529
530int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
531{
532 intercept_handler_t handler;
533
534 /* This is handled just as for the B2 instructions. */
535 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
536 if (handler) {
537 if ((handler != handle_epsw) &&
538 (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE))
539 return kvm_s390_inject_program_int(vcpu,
540 PGM_PRIVILEGED_OPERATION);
541 else
542 return handler(vcpu);
543 }
544 return -EOPNOTSUPP;
545}
546
Cornelia Huckf379aae2012-12-20 15:32:10 +0100547static const intercept_handler_t eb_handlers[256] = {
548 [0x8a] = handle_io_inst,
549};
550
551int kvm_s390_handle_priv_eb(struct kvm_vcpu *vcpu)
552{
553 intercept_handler_t handler;
554
555 /* All eb instructions that end up here are privileged. */
556 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
557 return kvm_s390_inject_program_int(vcpu,
558 PGM_PRIVILEGED_OPERATION);
559 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
560 if (handler)
561 return handler(vcpu);
562 return -EOPNOTSUPP;
563}
564
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200565static int handle_tprot(struct kvm_vcpu *vcpu)
566{
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100567 u64 address1, address2;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200568 struct vm_area_struct *vma;
Christian Borntraeger1eddb852011-11-17 11:00:43 +0100569 unsigned long user_address;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200570
571 vcpu->stat.instruction_tprot++;
572
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100573 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2);
574
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200575 /* we only handle the Linux memory detection case:
576 * access key == 0
577 * guest DAT == off
578 * everything else goes to userspace. */
579 if (address2 & 0xf0)
580 return -EOPNOTSUPP;
581 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
582 return -EOPNOTSUPP;
583
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200584 down_read(&current->mm->mmap_sem);
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100585 user_address = __gmap_translate(address1, vcpu->arch.gmap);
586 if (IS_ERR_VALUE(user_address))
587 goto out_inject;
Christian Borntraeger1eddb852011-11-17 11:00:43 +0100588 vma = find_vma(current->mm, user_address);
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100589 if (!vma)
590 goto out_inject;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200591 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
592 if (!(vma->vm_flags & VM_WRITE) && (vma->vm_flags & VM_READ))
593 vcpu->arch.sie_block->gpsw.mask |= (1ul << 44);
594 if (!(vma->vm_flags & VM_WRITE) && !(vma->vm_flags & VM_READ))
595 vcpu->arch.sie_block->gpsw.mask |= (2ul << 44);
596
597 up_read(&current->mm->mmap_sem);
598 return 0;
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100599
600out_inject:
601 up_read(&current->mm->mmap_sem);
602 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200603}
604
605int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
606{
607 /* For e5xx... instructions we only handle TPROT */
608 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
609 return handle_tprot(vcpu);
610 return -EOPNOTSUPP;
611}
612
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200613static int handle_sckpf(struct kvm_vcpu *vcpu)
614{
615 u32 value;
616
617 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
618 return kvm_s390_inject_program_int(vcpu,
619 PGM_PRIVILEGED_OPERATION);
620
621 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
622 return kvm_s390_inject_program_int(vcpu,
623 PGM_SPECIFICATION);
624
625 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
626 vcpu->arch.sie_block->todpr = value;
627
628 return 0;
629}
630
Cornelia Huck77975352012-12-20 15:32:06 +0100631static const intercept_handler_t x01_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200632 [0x07] = handle_sckpf,
633};
634
635int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
636{
637 intercept_handler_t handler;
638
639 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
640 if (handler)
641 return handler(vcpu);
642 return -EOPNOTSUPP;
643}