blob: 8a63e992936b3a0b130ba3180e96941a5ac80dc7 [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 *
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +02004 * Copyright IBM Corp. 2008, 2013
Christian Borntraeger453423d2008-03-25 18:47:29 +01005 *
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 Carstensb13b5dc2013-03-25 17:22:55 +010017#include <linux/compat.h>
Heiko Carstens7c959e82013-03-05 13:14:46 +010018#include <asm/asm-offsets.h>
Heiko Carstense769ece2013-07-26 15:04:01 +020019#include <asm/facility.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010020#include <asm/current.h>
21#include <asm/debug.h>
22#include <asm/ebcdic.h>
23#include <asm/sysinfo.h>
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020024#include <asm/pgtable.h>
25#include <asm/pgalloc.h>
26#include <asm/io.h>
Cornelia Huck48a3e952012-12-20 15:32:09 +010027#include <asm/ptrace.h>
28#include <asm/compat.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010029#include "gaccess.h"
30#include "kvm-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020031#include "trace.h"
Christian Borntraeger453423d2008-03-25 18:47:29 +010032
Thomas Huth6a3f95a2013-09-12 10:33:49 +020033/* Handle SCK (SET CLOCK) interception */
34static int handle_set_clock(struct kvm_vcpu *vcpu)
35{
36 struct kvm_vcpu *cpup;
37 s64 hostclk, val;
38 u64 op2;
39 int i;
40
41 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
42 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
43
44 op2 = kvm_s390_get_base_disp_s(vcpu);
45 if (op2 & 7) /* Operand must be on a doubleword boundary */
46 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
47 if (get_guest(vcpu, val, (u64 __user *) op2))
48 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
49
50 if (store_tod_clock(&hostclk)) {
51 kvm_s390_set_psw_cc(vcpu, 3);
52 return 0;
53 }
54 val = (val - hostclk) & ~0x3fUL;
55
56 mutex_lock(&vcpu->kvm->lock);
57 kvm_for_each_vcpu(i, cpup, vcpu->kvm)
58 cpup->arch.sie_block->epoch = val;
59 mutex_unlock(&vcpu->kvm->lock);
60
61 kvm_s390_set_psw_cc(vcpu, 0);
62 return 0;
63}
64
Christian Borntraeger453423d2008-03-25 18:47:29 +010065static int handle_set_prefix(struct kvm_vcpu *vcpu)
66{
Christian Borntraeger453423d2008-03-25 18:47:29 +010067 u64 operand2;
68 u32 address = 0;
69 u8 tmp;
70
71 vcpu->stat.instruction_spx++;
72
Thomas Huth5087dfa2013-06-20 17:22:01 +020073 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
74 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
75
Cornelia Huckb1c571a2012-12-20 15:32:07 +010076 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +010077
78 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010079 if (operand2 & 3)
80 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +010081
82 /* get the value */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010083 if (get_guest(vcpu, address, (u32 __user *) operand2))
84 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +010085
86 address = address & 0x7fffe000u;
87
88 /* make sure that the new value is valid memory */
89 if (copy_from_guest_absolute(vcpu, &tmp, address, 1) ||
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010090 (copy_from_guest_absolute(vcpu, &tmp, address + PAGE_SIZE, 1)))
91 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +010092
Christian Borntraeger8d26cf72012-01-11 11:19:32 +010093 kvm_s390_set_prefix(vcpu, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010094
95 VCPU_EVENT(vcpu, 5, "setting prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +020096 trace_kvm_s390_handle_prefix(vcpu, 1, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010097 return 0;
98}
99
100static int handle_store_prefix(struct kvm_vcpu *vcpu)
101{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100102 u64 operand2;
103 u32 address;
104
105 vcpu->stat.instruction_stpx++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100106
Thomas Huth5087dfa2013-06-20 17:22:01 +0200107 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
108 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
109
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100110 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100111
112 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100113 if (operand2 & 3)
114 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100115
116 address = vcpu->arch.sie_block->prefix;
117 address = address & 0x7fffe000u;
118
119 /* get the value */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100120 if (put_guest(vcpu, address, (u32 __user *)operand2))
121 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100122
123 VCPU_EVENT(vcpu, 5, "storing prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200124 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100125 return 0;
126}
127
128static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
129{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100130 u64 useraddr;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100131
132 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100133
Thomas Huth5087dfa2013-06-20 17:22:01 +0200134 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
135 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
136
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100137 useraddr = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100138
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100139 if (useraddr & 1)
140 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100141
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100142 if (put_guest(vcpu, vcpu->vcpu_id, (u16 __user *)useraddr))
143 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100144
Heiko Carstens33e19112009-01-09 12:14:56 +0100145 VCPU_EVENT(vcpu, 5, "storing cpu address to %llx", useraddr);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200146 trace_kvm_s390_handle_stap(vcpu, useraddr);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100147 return 0;
148}
149
Dominik Dingel693ffc02014-01-14 18:11:14 +0100150static void __skey_check_enable(struct kvm_vcpu *vcpu)
151{
152 if (!(vcpu->arch.sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)))
153 return;
154
155 s390_enable_skey();
156 trace_kvm_s390_skey_related_inst(vcpu);
157 vcpu->arch.sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE | ICTL_RRBE);
158}
159
160
Christian Borntraeger453423d2008-03-25 18:47:29 +0100161static int handle_skey(struct kvm_vcpu *vcpu)
162{
Dominik Dingel693ffc02014-01-14 18:11:14 +0100163 __skey_check_enable(vcpu);
164
Christian Borntraeger453423d2008-03-25 18:47:29 +0100165 vcpu->stat.instruction_storage_key++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200166
167 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
168 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
169
Martin Schwidefskydfcf7dc2013-05-17 14:41:32 +0200170 vcpu->arch.sie_block->gpsw.addr =
171 __rewind_psw(vcpu->arch.sie_block->gpsw, 4);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100172 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
173 return 0;
174}
175
Thomas Huthaca84242013-09-12 10:33:48 +0200176static int handle_test_block(struct kvm_vcpu *vcpu)
177{
178 unsigned long hva;
179 gpa_t addr;
180 int reg2;
181
182 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
183 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
184
185 kvm_s390_get_regs_rre(vcpu, NULL, &reg2);
186 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
187 addr = kvm_s390_real_to_abs(vcpu, addr);
188
189 hva = gfn_to_hva(vcpu->kvm, gpa_to_gfn(addr));
190 if (kvm_is_error_hva(hva))
191 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
192 /*
193 * We don't expect errors on modern systems, and do not care
194 * about storage keys (yet), so let's just clear the page.
195 */
196 if (clear_user((void __user *)hva, PAGE_SIZE) != 0)
197 return -EFAULT;
198 kvm_s390_set_psw_cc(vcpu, 0);
199 vcpu->run->s.regs.gprs[0] = 0;
200 return 0;
201}
202
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100203static int handle_tpi(struct kvm_vcpu *vcpu)
204{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100205 struct kvm_s390_interrupt_info *inti;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100206 u64 addr;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100207 int cc;
208
209 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100210 if (addr & 3)
211 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100212 cc = 0;
Thomas Huthf0926692013-10-09 14:15:54 +0200213 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100214 if (!inti)
215 goto no_interrupt;
216 cc = 1;
217 if (addr) {
218 /*
219 * Store the two-word I/O interruption code into the
220 * provided area.
221 */
Thomas Huth133608f2013-06-20 17:22:03 +0200222 if (put_guest(vcpu, inti->io.subchannel_id, (u16 __user *)addr)
223 || put_guest(vcpu, inti->io.subchannel_nr, (u16 __user *)(addr + 2))
224 || put_guest(vcpu, inti->io.io_int_parm, (u32 __user *)(addr + 4)))
225 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100226 } else {
227 /*
228 * Store the three-word I/O interruption code into
229 * the appropriate lowcore area.
230 */
Heiko Carstens0a75ca22013-03-05 13:14:47 +0100231 put_guest(vcpu, inti->io.subchannel_id, (u16 __user *) __LC_SUBCHANNEL_ID);
232 put_guest(vcpu, inti->io.subchannel_nr, (u16 __user *) __LC_SUBCHANNEL_NR);
233 put_guest(vcpu, inti->io.io_int_parm, (u32 __user *) __LC_IO_INT_PARM);
234 put_guest(vcpu, inti->io.io_int_word, (u32 __user *) __LC_IO_INT_WORD);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100235 }
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100236 kfree(inti);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100237no_interrupt:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100238 /* Set condition code and we're done. */
Thomas Huthea828eb2013-07-26 15:04:06 +0200239 kvm_s390_set_psw_cc(vcpu, cc);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100240 return 0;
241}
242
243static int handle_tsch(struct kvm_vcpu *vcpu)
244{
245 struct kvm_s390_interrupt_info *inti;
246
247 inti = kvm_s390_get_io_int(vcpu->kvm, 0,
248 vcpu->run->s.regs.gprs[1]);
249
250 /*
251 * Prepare exit to userspace.
252 * We indicate whether we dequeued a pending I/O interrupt
253 * so that userspace can re-inject it if the instruction gets
254 * a program check. While this may re-order the pending I/O
255 * interrupts, this is no problem since the priority is kept
256 * intact.
257 */
258 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
259 vcpu->run->s390_tsch.dequeued = !!inti;
260 if (inti) {
261 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
262 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
263 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
264 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
265 }
266 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
267 kfree(inti);
268 return -EREMOTE;
269}
270
Cornelia Huckf379aae2012-12-20 15:32:10 +0100271static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100272{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100273 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100274
Thomas Huth5087dfa2013-06-20 17:22:01 +0200275 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
276 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
277
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100278 if (vcpu->kvm->arch.css_support) {
279 /*
280 * Most I/O instructions will be handled by userspace.
281 * Exceptions are tpi and the interrupt portion of tsch.
282 */
283 if (vcpu->arch.sie_block->ipa == 0xb236)
284 return handle_tpi(vcpu);
285 if (vcpu->arch.sie_block->ipa == 0xb235)
286 return handle_tsch(vcpu);
287 /* Handle in userspace. */
288 return -EOPNOTSUPP;
289 } else {
290 /*
Hendrik Bruecknerb4a96012013-12-13 12:53:42 +0100291 * Set condition code 3 to stop the guest from issuing channel
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100292 * I/O instructions.
293 */
Thomas Huthea828eb2013-07-26 15:04:06 +0200294 kvm_s390_set_psw_cc(vcpu, 3);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100295 return 0;
296 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100297}
298
Christian Borntraeger453423d2008-03-25 18:47:29 +0100299static int handle_stfl(struct kvm_vcpu *vcpu)
300{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100301 int rc;
302
303 vcpu->stat.instruction_stfl++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200304
305 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
306 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
307
Christian Borntraeger453423d2008-03-25 18:47:29 +0100308 rc = copy_to_guest(vcpu, offsetof(struct _lowcore, stfl_fac_list),
Michael Mueller78c4b592013-07-26 15:04:04 +0200309 vfacilities, 4);
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100310 if (rc)
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100311 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Michael Mueller78c4b592013-07-26 15:04:04 +0200312 VCPU_EVENT(vcpu, 5, "store facility list value %x",
313 *(unsigned int *) vfacilities);
314 trace_kvm_s390_handle_stfl(vcpu, *(unsigned int *) vfacilities);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100315 return 0;
316}
317
Cornelia Huck48a3e952012-12-20 15:32:09 +0100318static void handle_new_psw(struct kvm_vcpu *vcpu)
319{
320 /* Check whether the new psw is enabled for machine checks. */
321 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_MCHECK)
322 kvm_s390_deliver_pending_machine_checks(vcpu);
323}
324
325#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
326#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
Heiko Carstensd21683e2013-03-25 17:22:49 +0100327#define PSW_ADDR_24 0x0000000000ffffffUL
Cornelia Huck48a3e952012-12-20 15:32:09 +0100328#define PSW_ADDR_31 0x000000007fffffffUL
329
Heiko Carstens3736b872013-03-25 17:22:52 +0100330static int is_valid_psw(psw_t *psw) {
331 if (psw->mask & PSW_MASK_UNASSIGNED)
332 return 0;
333 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) {
334 if (psw->addr & ~PSW_ADDR_31)
335 return 0;
336 }
337 if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24))
338 return 0;
339 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA)
340 return 0;
341 return 1;
342}
343
Cornelia Huck48a3e952012-12-20 15:32:09 +0100344int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
345{
Heiko Carstens3736b872013-03-25 17:22:52 +0100346 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100347 psw_compat_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100348 u64 addr;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100349
Heiko Carstens3736b872013-03-25 17:22:52 +0100350 if (gpsw->mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200351 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
352
Cornelia Huck48a3e952012-12-20 15:32:09 +0100353 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100354 if (addr & 7)
355 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100356 if (copy_from_guest(vcpu, &new_psw, addr, sizeof(new_psw)))
357 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100358 if (!(new_psw.mask & PSW32_MASK_BASE))
359 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens3736b872013-03-25 17:22:52 +0100360 gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32;
361 gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE;
362 gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE;
363 if (!is_valid_psw(gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100364 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100365 handle_new_psw(vcpu);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100366 return 0;
367}
368
369static int handle_lpswe(struct kvm_vcpu *vcpu)
370{
Cornelia Huck48a3e952012-12-20 15:32:09 +0100371 psw_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100372 u64 addr;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100373
Thomas Huth5087dfa2013-06-20 17:22:01 +0200374 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
375 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
376
Cornelia Huck48a3e952012-12-20 15:32:09 +0100377 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100378 if (addr & 7)
379 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100380 if (copy_from_guest(vcpu, &new_psw, addr, sizeof(new_psw)))
381 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Heiko Carstens3736b872013-03-25 17:22:52 +0100382 vcpu->arch.sie_block->gpsw = new_psw;
383 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100384 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100385 handle_new_psw(vcpu);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100386 return 0;
387}
388
Christian Borntraeger453423d2008-03-25 18:47:29 +0100389static int handle_stidp(struct kvm_vcpu *vcpu)
390{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100391 u64 operand2;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100392
393 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100394
Thomas Huth5087dfa2013-06-20 17:22:01 +0200395 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
396 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
397
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100398 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100399
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100400 if (operand2 & 7)
401 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100402
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100403 if (put_guest(vcpu, vcpu->arch.stidp_data, (u64 __user *)operand2))
404 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100405
406 VCPU_EVENT(vcpu, 5, "%s", "store cpu id");
Christian Borntraeger453423d2008-03-25 18:47:29 +0100407 return 0;
408}
409
410static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
411{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100412 int cpus = 0;
413 int n;
414
Jens Freimannff520a62014-02-24 10:11:41 +0100415 cpus = atomic_read(&vcpu->kvm->online_vcpus);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100416
417 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200418 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100419 mem->count = 0;
420 if (mem->count < 8)
421 mem->count++;
422 for (n = mem->count - 1; n > 0 ; n--)
423 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
424
425 mem->vm[0].cpus_total = cpus;
426 mem->vm[0].cpus_configured = cpus;
427 mem->vm[0].cpus_standby = 0;
428 mem->vm[0].cpus_reserved = 0;
429 mem->vm[0].caf = 1000;
430 memcpy(mem->vm[0].name, "KVMguest", 8);
431 ASCEBC(mem->vm[0].name, 8);
432 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
433 ASCEBC(mem->vm[0].cpi, 16);
434}
435
436static int handle_stsi(struct kvm_vcpu *vcpu)
437{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100438 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
439 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
440 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100441 unsigned long mem = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100442 u64 operand2;
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100443 int rc = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100444
445 vcpu->stat.instruction_stsi++;
446 VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
447
Thomas Huth5087dfa2013-06-20 17:22:01 +0200448 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
449 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
450
Thomas Huth87d41fb2013-06-20 17:22:05 +0200451 if (fc > 3) {
Thomas Huthea828eb2013-07-26 15:04:06 +0200452 kvm_s390_set_psw_cc(vcpu, 3);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200453 return 0;
454 }
455
456 if (vcpu->run->s.regs.gprs[0] & 0x0fffff00
457 || vcpu->run->s.regs.gprs[1] & 0xffff0000)
458 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
459
460 if (fc == 0) {
461 vcpu->run->s.regs.gprs[0] = 3 << 28;
Thomas Huthea828eb2013-07-26 15:04:06 +0200462 kvm_s390_set_psw_cc(vcpu, 0);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200463 return 0;
464 }
465
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100466 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100467
Thomas Huth87d41fb2013-06-20 17:22:05 +0200468 if (operand2 & 0xfff)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100469 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
470
471 switch (fc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100472 case 1: /* same handling for 1 and 2 */
473 case 2:
474 mem = get_zeroed_page(GFP_KERNEL);
475 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100476 goto out_no_data;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200477 if (stsi((void *) mem, fc, sel1, sel2))
Heiko Carstensc51f0682013-03-25 17:22:54 +0100478 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100479 break;
480 case 3:
481 if (sel1 != 2 || sel2 != 2)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100482 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100483 mem = get_zeroed_page(GFP_KERNEL);
484 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100485 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100486 handle_stsi_3_2_2(vcpu, (void *) mem);
487 break;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100488 }
489
490 if (copy_to_guest_absolute(vcpu, operand2, (void *) mem, PAGE_SIZE)) {
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100491 rc = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Heiko Carstensc51f0682013-03-25 17:22:54 +0100492 goto out_exception;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100493 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200494 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100495 free_page(mem);
Thomas Huthea828eb2013-07-26 15:04:06 +0200496 kvm_s390_set_psw_cc(vcpu, 0);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100497 vcpu->run->s.regs.gprs[0] = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100498 return 0;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100499out_no_data:
Thomas Huthea828eb2013-07-26 15:04:06 +0200500 kvm_s390_set_psw_cc(vcpu, 3);
Heiko Carstensc51f0682013-03-25 17:22:54 +0100501out_exception:
502 free_page(mem);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100503 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100504}
505
Cornelia Huckf379aae2012-12-20 15:32:10 +0100506static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100507 [0x02] = handle_stidp,
Thomas Huth6a3f95a2013-09-12 10:33:49 +0200508 [0x04] = handle_set_clock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100509 [0x10] = handle_set_prefix,
510 [0x11] = handle_store_prefix,
511 [0x12] = handle_store_cpu_address,
512 [0x29] = handle_skey,
513 [0x2a] = handle_skey,
514 [0x2b] = handle_skey,
Thomas Huthaca84242013-09-12 10:33:48 +0200515 [0x2c] = handle_test_block,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100516 [0x30] = handle_io_inst,
517 [0x31] = handle_io_inst,
518 [0x32] = handle_io_inst,
519 [0x33] = handle_io_inst,
520 [0x34] = handle_io_inst,
521 [0x35] = handle_io_inst,
522 [0x36] = handle_io_inst,
523 [0x37] = handle_io_inst,
524 [0x38] = handle_io_inst,
525 [0x39] = handle_io_inst,
526 [0x3a] = handle_io_inst,
527 [0x3b] = handle_io_inst,
528 [0x3c] = handle_io_inst,
529 [0x5f] = handle_io_inst,
530 [0x74] = handle_io_inst,
531 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100532 [0x7d] = handle_stsi,
533 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100534 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100535};
536
Christian Borntraeger70455a32009-01-22 10:28:29 +0100537int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100538{
539 intercept_handler_t handler;
540
Christian Borntraeger70455a32009-01-22 10:28:29 +0100541 /*
Thomas Huth5087dfa2013-06-20 17:22:01 +0200542 * A lot of B2 instructions are priviledged. Here we check for
543 * the privileged ones, that we can handle in the kernel.
544 * Anything else goes to userspace.
545 */
Cornelia Huckf379aae2012-12-20 15:32:10 +0100546 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200547 if (handler)
548 return handler(vcpu);
549
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100550 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100551}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200552
Cornelia Huck48a3e952012-12-20 15:32:09 +0100553static int handle_epsw(struct kvm_vcpu *vcpu)
554{
555 int reg1, reg2;
556
Thomas Huthaeb87c32013-06-12 13:54:57 +0200557 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100558
559 /* This basically extracts the mask half of the psw. */
Thomas Huth843200e2013-07-26 15:04:05 +0200560 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100561 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
562 if (reg2) {
Thomas Huth843200e2013-07-26 15:04:05 +0200563 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100564 vcpu->run->s.regs.gprs[reg2] |=
Thomas Huth843200e2013-07-26 15:04:05 +0200565 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100566 }
567 return 0;
568}
569
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200570#define PFMF_RESERVED 0xfffc0101UL
571#define PFMF_SK 0x00020000UL
572#define PFMF_CF 0x00010000UL
573#define PFMF_UI 0x00008000UL
574#define PFMF_FSC 0x00007000UL
575#define PFMF_NQ 0x00000800UL
576#define PFMF_MR 0x00000400UL
577#define PFMF_MC 0x00000200UL
578#define PFMF_KEY 0x000000feUL
579
580static int handle_pfmf(struct kvm_vcpu *vcpu)
581{
582 int reg1, reg2;
583 unsigned long start, end;
584
585 vcpu->stat.instruction_pfmf++;
586
587 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
588
589 if (!MACHINE_HAS_PFMF)
590 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
591
592 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200593 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200594
595 if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
596 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
597
598 /* Only provide non-quiescing support if the host supports it */
Heiko Carstense769ece2013-07-26 15:04:01 +0200599 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && !test_facility(14))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200600 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
601
602 /* No support for conditional-SSKE */
603 if (vcpu->run->s.regs.gprs[reg1] & (PFMF_MR | PFMF_MC))
604 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
605
606 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
607 switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
608 case 0x00000000:
609 end = (start + (1UL << 12)) & ~((1UL << 12) - 1);
610 break;
611 case 0x00001000:
612 end = (start + (1UL << 20)) & ~((1UL << 20) - 1);
613 break;
614 /* We dont support EDAT2
615 case 0x00002000:
616 end = (start + (1UL << 31)) & ~((1UL << 31) - 1);
617 break;*/
618 default:
619 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
620 }
621 while (start < end) {
622 unsigned long useraddr;
623
624 useraddr = gmap_translate(start, vcpu->arch.gmap);
625 if (IS_ERR((void *)useraddr))
626 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
627
628 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
629 if (clear_user((void __user *)useraddr, PAGE_SIZE))
630 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
631 }
632
633 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) {
Dominik Dingel693ffc02014-01-14 18:11:14 +0100634 __skey_check_enable(vcpu);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200635 if (set_guest_storage_key(current->mm, useraddr,
636 vcpu->run->s.regs.gprs[reg1] & PFMF_KEY,
637 vcpu->run->s.regs.gprs[reg1] & PFMF_NQ))
638 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
639 }
640
641 start += PAGE_SIZE;
642 }
643 if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC)
644 vcpu->run->s.regs.gprs[reg2] = end;
645 return 0;
646}
647
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200648static int handle_essa(struct kvm_vcpu *vcpu)
649{
650 /* entries expected to be 1FF */
651 int entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3;
652 unsigned long *cbrlo, cbrle;
653 struct gmap *gmap;
654 int i;
655
656 VCPU_EVENT(vcpu, 5, "cmma release %d pages", entries);
657 gmap = vcpu->arch.gmap;
658 vcpu->stat.instruction_essa++;
659 if (!kvm_enabled_cmma() || !vcpu->arch.sie_block->cbrlo)
660 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
661
662 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
663 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
664
665 if (((vcpu->arch.sie_block->ipb & 0xf0000000) >> 28) > 6)
666 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
667
668 /* Rewind PSW to repeat the ESSA instruction */
669 vcpu->arch.sie_block->gpsw.addr =
670 __rewind_psw(vcpu->arch.sie_block->gpsw, 4);
671 vcpu->arch.sie_block->cbrlo &= PAGE_MASK; /* reset nceo */
672 cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo);
673 down_read(&gmap->mm->mmap_sem);
674 for (i = 0; i < entries; ++i) {
675 cbrle = cbrlo[i];
676 if (unlikely(cbrle & ~PAGE_MASK || cbrle < 2 * PAGE_SIZE))
677 /* invalid entry */
678 break;
679 /* try to free backing */
680 __gmap_zap(cbrle, gmap);
681 }
682 up_read(&gmap->mm->mmap_sem);
683 if (i < entries)
684 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
685 return 0;
686}
687
Cornelia Huck48a3e952012-12-20 15:32:09 +0100688static const intercept_handler_t b9_handlers[256] = {
689 [0x8d] = handle_epsw,
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200690 [0xab] = handle_essa,
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200691 [0xaf] = handle_pfmf,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100692};
693
694int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
695{
696 intercept_handler_t handler;
697
698 /* This is handled just as for the B2 instructions. */
699 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200700 if (handler)
701 return handler(vcpu);
702
Cornelia Huck48a3e952012-12-20 15:32:09 +0100703 return -EOPNOTSUPP;
704}
705
Thomas Huth953ed882013-06-20 17:22:04 +0200706int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu)
707{
708 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
709 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
710 u64 useraddr;
711 u32 val = 0;
712 int reg, rc;
713
714 vcpu->stat.instruction_lctl++;
715
716 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
717 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
718
719 useraddr = kvm_s390_get_base_disp_rs(vcpu);
720
721 if (useraddr & 3)
722 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
723
724 VCPU_EVENT(vcpu, 5, "lctl r1:%x, r3:%x, addr:%llx", reg1, reg3,
725 useraddr);
726 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, useraddr);
727
728 reg = reg1;
729 do {
730 rc = get_guest(vcpu, val, (u32 __user *) useraddr);
731 if (rc)
732 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
733 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
734 vcpu->arch.sie_block->gcr[reg] |= val;
735 useraddr += 4;
736 if (reg == reg3)
737 break;
738 reg = (reg + 1) % 16;
739 } while (1);
740
741 return 0;
742}
743
744static int handle_lctlg(struct kvm_vcpu *vcpu)
745{
746 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
747 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
748 u64 useraddr;
749 int reg, rc;
750
751 vcpu->stat.instruction_lctlg++;
752
753 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
754 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
755
756 useraddr = kvm_s390_get_base_disp_rsy(vcpu);
757
758 if (useraddr & 7)
759 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
760
761 reg = reg1;
762
763 VCPU_EVENT(vcpu, 5, "lctlg r1:%x, r3:%x, addr:%llx", reg1, reg3,
764 useraddr);
765 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, useraddr);
766
767 do {
768 rc = get_guest(vcpu, vcpu->arch.sie_block->gcr[reg],
769 (u64 __user *) useraddr);
770 if (rc)
771 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
772 useraddr += 8;
773 if (reg == reg3)
774 break;
775 reg = (reg + 1) % 16;
776 } while (1);
777
778 return 0;
779}
780
Cornelia Huckf379aae2012-12-20 15:32:10 +0100781static const intercept_handler_t eb_handlers[256] = {
Thomas Huth953ed882013-06-20 17:22:04 +0200782 [0x2f] = handle_lctlg,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100783};
784
Thomas Huth953ed882013-06-20 17:22:04 +0200785int kvm_s390_handle_eb(struct kvm_vcpu *vcpu)
Cornelia Huckf379aae2012-12-20 15:32:10 +0100786{
787 intercept_handler_t handler;
788
Cornelia Huckf379aae2012-12-20 15:32:10 +0100789 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
790 if (handler)
791 return handler(vcpu);
792 return -EOPNOTSUPP;
793}
794
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200795static int handle_tprot(struct kvm_vcpu *vcpu)
796{
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100797 u64 address1, address2;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200798 struct vm_area_struct *vma;
Christian Borntraeger1eddb852011-11-17 11:00:43 +0100799 unsigned long user_address;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200800
801 vcpu->stat.instruction_tprot++;
802
Thomas Huthf9f6bbc2013-06-20 17:22:00 +0200803 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
804 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
805
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100806 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2);
807
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200808 /* we only handle the Linux memory detection case:
809 * access key == 0
810 * guest DAT == off
811 * everything else goes to userspace. */
812 if (address2 & 0xf0)
813 return -EOPNOTSUPP;
814 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
815 return -EOPNOTSUPP;
816
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200817 down_read(&current->mm->mmap_sem);
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100818 user_address = __gmap_translate(address1, vcpu->arch.gmap);
819 if (IS_ERR_VALUE(user_address))
820 goto out_inject;
Christian Borntraeger1eddb852011-11-17 11:00:43 +0100821 vma = find_vma(current->mm, user_address);
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100822 if (!vma)
823 goto out_inject;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200824 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
825 if (!(vma->vm_flags & VM_WRITE) && (vma->vm_flags & VM_READ))
826 vcpu->arch.sie_block->gpsw.mask |= (1ul << 44);
827 if (!(vma->vm_flags & VM_WRITE) && !(vma->vm_flags & VM_READ))
828 vcpu->arch.sie_block->gpsw.mask |= (2ul << 44);
829
830 up_read(&current->mm->mmap_sem);
831 return 0;
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100832
833out_inject:
834 up_read(&current->mm->mmap_sem);
835 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200836}
837
838int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
839{
840 /* For e5xx... instructions we only handle TPROT */
841 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
842 return handle_tprot(vcpu);
843 return -EOPNOTSUPP;
844}
845
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200846static int handle_sckpf(struct kvm_vcpu *vcpu)
847{
848 u32 value;
849
850 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200851 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200852
853 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
854 return kvm_s390_inject_program_int(vcpu,
855 PGM_SPECIFICATION);
856
857 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
858 vcpu->arch.sie_block->todpr = value;
859
860 return 0;
861}
862
Cornelia Huck77975352012-12-20 15:32:06 +0100863static const intercept_handler_t x01_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200864 [0x07] = handle_sckpf,
865};
866
867int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
868{
869 intercept_handler_t handler;
870
871 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
872 if (handler)
873 return handler(vcpu);
874 return -EOPNOTSUPP;
875}