blob: 0b19e22269558f6751594a2ebb256378f1b729db [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>
Christian Borntraeger453423d2008-03-25 18:47:29 +010019#include <asm/current.h>
20#include <asm/debug.h>
21#include <asm/ebcdic.h>
22#include <asm/sysinfo.h>
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020023#include <asm/pgtable.h>
24#include <asm/pgalloc.h>
25#include <asm/io.h>
Cornelia Huck48a3e952012-12-20 15:32:09 +010026#include <asm/ptrace.h>
27#include <asm/compat.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010028#include "gaccess.h"
29#include "kvm-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020030#include "trace.h"
Christian Borntraeger453423d2008-03-25 18:47:29 +010031
32static int handle_set_prefix(struct kvm_vcpu *vcpu)
33{
Christian Borntraeger453423d2008-03-25 18:47:29 +010034 u64 operand2;
35 u32 address = 0;
36 u8 tmp;
37
38 vcpu->stat.instruction_spx++;
39
Thomas Huth5087dfa2013-06-20 17:22:01 +020040 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
41 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
42
Cornelia Huckb1c571a2012-12-20 15:32:07 +010043 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +010044
45 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010046 if (operand2 & 3)
47 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +010048
49 /* get the value */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010050 if (get_guest(vcpu, address, (u32 __user *) operand2))
51 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +010052
53 address = address & 0x7fffe000u;
54
55 /* make sure that the new value is valid memory */
56 if (copy_from_guest_absolute(vcpu, &tmp, address, 1) ||
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010057 (copy_from_guest_absolute(vcpu, &tmp, address + PAGE_SIZE, 1)))
58 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +010059
Christian Borntraeger8d26cf72012-01-11 11:19:32 +010060 kvm_s390_set_prefix(vcpu, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010061
62 VCPU_EVENT(vcpu, 5, "setting prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +020063 trace_kvm_s390_handle_prefix(vcpu, 1, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010064 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
Thomas Huth5087dfa2013-06-20 17:22:01 +020074 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
75 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
76
Cornelia Huckb1c571a2012-12-20 15:32:07 +010077 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +010078
79 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010080 if (operand2 & 3)
81 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +010082
83 address = vcpu->arch.sie_block->prefix;
84 address = address & 0x7fffe000u;
85
86 /* get the value */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010087 if (put_guest(vcpu, address, (u32 __user *)operand2))
88 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +010089
90 VCPU_EVENT(vcpu, 5, "storing prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +020091 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010092 return 0;
93}
94
95static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
96{
Christian Borntraeger453423d2008-03-25 18:47:29 +010097 u64 useraddr;
Christian Borntraeger453423d2008-03-25 18:47:29 +010098
99 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100100
Thomas Huth5087dfa2013-06-20 17:22:01 +0200101 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
102 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
103
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100104 useraddr = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100105
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100106 if (useraddr & 1)
107 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100108
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100109 if (put_guest(vcpu, vcpu->vcpu_id, (u16 __user *)useraddr))
110 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100111
Heiko Carstens33e19112009-01-09 12:14:56 +0100112 VCPU_EVENT(vcpu, 5, "storing cpu address to %llx", useraddr);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200113 trace_kvm_s390_handle_stap(vcpu, useraddr);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100114 return 0;
115}
116
117static int handle_skey(struct kvm_vcpu *vcpu)
118{
119 vcpu->stat.instruction_storage_key++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200120
121 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
122 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
123
Martin Schwidefskydfcf7dc2013-05-17 14:41:32 +0200124 vcpu->arch.sie_block->gpsw.addr =
125 __rewind_psw(vcpu->arch.sie_block->gpsw, 4);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100126 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
127 return 0;
128}
129
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100130static int handle_tpi(struct kvm_vcpu *vcpu)
131{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100132 struct kvm_s390_interrupt_info *inti;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100133 u64 addr;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100134 int cc;
135
136 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100137 if (addr & 3)
138 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100139 cc = 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100140 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->run->s.regs.crs[6], 0);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100141 if (!inti)
142 goto no_interrupt;
143 cc = 1;
144 if (addr) {
145 /*
146 * Store the two-word I/O interruption code into the
147 * provided area.
148 */
Heiko Carstens0a75ca22013-03-05 13:14:47 +0100149 put_guest(vcpu, inti->io.subchannel_id, (u16 __user *) addr);
150 put_guest(vcpu, inti->io.subchannel_nr, (u16 __user *) (addr + 2));
151 put_guest(vcpu, inti->io.io_int_parm, (u32 __user *) (addr + 4));
Heiko Carstens7c959e82013-03-05 13:14:46 +0100152 } else {
153 /*
154 * Store the three-word I/O interruption code into
155 * the appropriate lowcore area.
156 */
Heiko Carstens0a75ca22013-03-05 13:14:47 +0100157 put_guest(vcpu, inti->io.subchannel_id, (u16 __user *) __LC_SUBCHANNEL_ID);
158 put_guest(vcpu, inti->io.subchannel_nr, (u16 __user *) __LC_SUBCHANNEL_NR);
159 put_guest(vcpu, inti->io.io_int_parm, (u32 __user *) __LC_IO_INT_PARM);
160 put_guest(vcpu, inti->io.io_int_word, (u32 __user *) __LC_IO_INT_WORD);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100161 }
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100162 kfree(inti);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100163no_interrupt:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100164 /* Set condition code and we're done. */
165 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
166 vcpu->arch.sie_block->gpsw.mask |= (cc & 3ul) << 44;
167 return 0;
168}
169
170static int handle_tsch(struct kvm_vcpu *vcpu)
171{
172 struct kvm_s390_interrupt_info *inti;
173
174 inti = kvm_s390_get_io_int(vcpu->kvm, 0,
175 vcpu->run->s.regs.gprs[1]);
176
177 /*
178 * Prepare exit to userspace.
179 * We indicate whether we dequeued a pending I/O interrupt
180 * so that userspace can re-inject it if the instruction gets
181 * a program check. While this may re-order the pending I/O
182 * interrupts, this is no problem since the priority is kept
183 * intact.
184 */
185 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
186 vcpu->run->s390_tsch.dequeued = !!inti;
187 if (inti) {
188 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
189 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
190 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
191 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
192 }
193 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
194 kfree(inti);
195 return -EREMOTE;
196}
197
Cornelia Huckf379aae2012-12-20 15:32:10 +0100198static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100199{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100200 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100201
Thomas Huth5087dfa2013-06-20 17:22:01 +0200202 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
203 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
204
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100205 if (vcpu->kvm->arch.css_support) {
206 /*
207 * Most I/O instructions will be handled by userspace.
208 * Exceptions are tpi and the interrupt portion of tsch.
209 */
210 if (vcpu->arch.sie_block->ipa == 0xb236)
211 return handle_tpi(vcpu);
212 if (vcpu->arch.sie_block->ipa == 0xb235)
213 return handle_tsch(vcpu);
214 /* Handle in userspace. */
215 return -EOPNOTSUPP;
216 } else {
217 /*
218 * Set condition code 3 to stop the guest from issueing channel
219 * I/O instructions.
220 */
221 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
222 vcpu->arch.sie_block->gpsw.mask |= (3 & 3ul) << 44;
223 return 0;
224 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100225}
226
Christian Borntraeger453423d2008-03-25 18:47:29 +0100227static int handle_stfl(struct kvm_vcpu *vcpu)
228{
Martin Schwidefsky14375bc2010-10-25 16:10:51 +0200229 unsigned int facility_list;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100230 int rc;
231
232 vcpu->stat.instruction_stfl++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200233
234 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
235 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
236
Christian Borntraegera0046b62008-08-29 13:29:45 +0200237 /* only pass the facility bits, which we can handle */
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200238 facility_list = S390_lowcore.stfl_fac_list & 0xff82fff3;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100239
240 rc = copy_to_guest(vcpu, offsetof(struct _lowcore, stfl_fac_list),
241 &facility_list, sizeof(facility_list));
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100242 if (rc)
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100243 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
244 VCPU_EVENT(vcpu, 5, "store facility list value %x", facility_list);
245 trace_kvm_s390_handle_stfl(vcpu, facility_list);
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
Heiko Carstens3736b872013-03-25 17:22:52 +0100261static int is_valid_psw(psw_t *psw) {
262 if (psw->mask & PSW_MASK_UNASSIGNED)
263 return 0;
264 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) {
265 if (psw->addr & ~PSW_ADDR_31)
266 return 0;
267 }
268 if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24))
269 return 0;
270 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA)
271 return 0;
272 return 1;
273}
274
Cornelia Huck48a3e952012-12-20 15:32:09 +0100275int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
276{
Heiko Carstens3736b872013-03-25 17:22:52 +0100277 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100278 psw_compat_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100279 u64 addr;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100280
Heiko Carstens3736b872013-03-25 17:22:52 +0100281 if (gpsw->mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200282 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
283
Cornelia Huck48a3e952012-12-20 15:32:09 +0100284 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100285 if (addr & 7)
286 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100287 if (copy_from_guest(vcpu, &new_psw, addr, sizeof(new_psw)))
288 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100289 if (!(new_psw.mask & PSW32_MASK_BASE))
290 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens3736b872013-03-25 17:22:52 +0100291 gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32;
292 gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE;
293 gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE;
294 if (!is_valid_psw(gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100295 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100296 handle_new_psw(vcpu);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100297 return 0;
298}
299
300static int handle_lpswe(struct kvm_vcpu *vcpu)
301{
Cornelia Huck48a3e952012-12-20 15:32:09 +0100302 psw_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100303 u64 addr;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100304
Thomas Huth5087dfa2013-06-20 17:22:01 +0200305 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
306 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
307
Cornelia Huck48a3e952012-12-20 15:32:09 +0100308 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100309 if (addr & 7)
310 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100311 if (copy_from_guest(vcpu, &new_psw, addr, sizeof(new_psw)))
312 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Heiko Carstens3736b872013-03-25 17:22:52 +0100313 vcpu->arch.sie_block->gpsw = new_psw;
314 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100315 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100316 handle_new_psw(vcpu);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100317 return 0;
318}
319
Christian Borntraeger453423d2008-03-25 18:47:29 +0100320static int handle_stidp(struct kvm_vcpu *vcpu)
321{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100322 u64 operand2;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100323
324 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100325
Thomas Huth5087dfa2013-06-20 17:22:01 +0200326 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
327 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
328
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100329 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100330
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100331 if (operand2 & 7)
332 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100333
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100334 if (put_guest(vcpu, vcpu->arch.stidp_data, (u64 __user *)operand2))
335 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100336
337 VCPU_EVENT(vcpu, 5, "%s", "store cpu id");
Christian Borntraeger453423d2008-03-25 18:47:29 +0100338 return 0;
339}
340
341static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
342{
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200343 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100344 int cpus = 0;
345 int n;
346
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200347 spin_lock(&fi->lock);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100348 for (n = 0; n < KVM_MAX_VCPUS; n++)
349 if (fi->local_int[n])
350 cpus++;
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200351 spin_unlock(&fi->lock);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100352
353 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200354 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100355 mem->count = 0;
356 if (mem->count < 8)
357 mem->count++;
358 for (n = mem->count - 1; n > 0 ; n--)
359 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
360
361 mem->vm[0].cpus_total = cpus;
362 mem->vm[0].cpus_configured = cpus;
363 mem->vm[0].cpus_standby = 0;
364 mem->vm[0].cpus_reserved = 0;
365 mem->vm[0].caf = 1000;
366 memcpy(mem->vm[0].name, "KVMguest", 8);
367 ASCEBC(mem->vm[0].name, 8);
368 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
369 ASCEBC(mem->vm[0].cpi, 16);
370}
371
372static int handle_stsi(struct kvm_vcpu *vcpu)
373{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100374 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
375 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
376 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100377 unsigned long mem = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100378 u64 operand2;
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100379 int rc = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100380
381 vcpu->stat.instruction_stsi++;
382 VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
383
Thomas Huth5087dfa2013-06-20 17:22:01 +0200384 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
385 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
386
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100387 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100388
389 if (operand2 & 0xfff && fc > 0)
390 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
391
392 switch (fc) {
393 case 0:
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100394 vcpu->run->s.regs.gprs[0] = 3 << 28;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100395 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
396 return 0;
397 case 1: /* same handling for 1 and 2 */
398 case 2:
399 mem = get_zeroed_page(GFP_KERNEL);
400 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100401 goto out_no_data;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200402 if (stsi((void *) mem, fc, sel1, sel2))
Heiko Carstensc51f0682013-03-25 17:22:54 +0100403 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100404 break;
405 case 3:
406 if (sel1 != 2 || sel2 != 2)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100407 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100408 mem = get_zeroed_page(GFP_KERNEL);
409 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100410 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100411 handle_stsi_3_2_2(vcpu, (void *) mem);
412 break;
413 default:
Heiko Carstensc51f0682013-03-25 17:22:54 +0100414 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100415 }
416
417 if (copy_to_guest_absolute(vcpu, operand2, (void *) mem, PAGE_SIZE)) {
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100418 rc = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Heiko Carstensc51f0682013-03-25 17:22:54 +0100419 goto out_exception;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100420 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200421 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100422 free_page(mem);
423 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100424 vcpu->run->s.regs.gprs[0] = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100425 return 0;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100426out_no_data:
Christian Borntraeger453423d2008-03-25 18:47:29 +0100427 /* condition code 3 */
428 vcpu->arch.sie_block->gpsw.mask |= 3ul << 44;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100429out_exception:
430 free_page(mem);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100431 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100432}
433
Cornelia Huckf379aae2012-12-20 15:32:10 +0100434static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100435 [0x02] = handle_stidp,
436 [0x10] = handle_set_prefix,
437 [0x11] = handle_store_prefix,
438 [0x12] = handle_store_cpu_address,
439 [0x29] = handle_skey,
440 [0x2a] = handle_skey,
441 [0x2b] = handle_skey,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100442 [0x30] = handle_io_inst,
443 [0x31] = handle_io_inst,
444 [0x32] = handle_io_inst,
445 [0x33] = handle_io_inst,
446 [0x34] = handle_io_inst,
447 [0x35] = handle_io_inst,
448 [0x36] = handle_io_inst,
449 [0x37] = handle_io_inst,
450 [0x38] = handle_io_inst,
451 [0x39] = handle_io_inst,
452 [0x3a] = handle_io_inst,
453 [0x3b] = handle_io_inst,
454 [0x3c] = handle_io_inst,
455 [0x5f] = handle_io_inst,
456 [0x74] = handle_io_inst,
457 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100458 [0x7d] = handle_stsi,
459 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100460 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100461};
462
Christian Borntraeger70455a32009-01-22 10:28:29 +0100463int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100464{
465 intercept_handler_t handler;
466
Christian Borntraeger70455a32009-01-22 10:28:29 +0100467 /*
Thomas Huth5087dfa2013-06-20 17:22:01 +0200468 * A lot of B2 instructions are priviledged. Here we check for
469 * the privileged ones, that we can handle in the kernel.
470 * Anything else goes to userspace.
471 */
Cornelia Huckf379aae2012-12-20 15:32:10 +0100472 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200473 if (handler)
474 return handler(vcpu);
475
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100476 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100477}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200478
Cornelia Huck48a3e952012-12-20 15:32:09 +0100479static int handle_epsw(struct kvm_vcpu *vcpu)
480{
481 int reg1, reg2;
482
Thomas Huthaeb87c32013-06-12 13:54:57 +0200483 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100484
485 /* This basically extracts the mask half of the psw. */
486 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000;
487 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
488 if (reg2) {
489 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000;
490 vcpu->run->s.regs.gprs[reg2] |=
491 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffff;
492 }
493 return 0;
494}
495
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200496#define PFMF_RESERVED 0xfffc0101UL
497#define PFMF_SK 0x00020000UL
498#define PFMF_CF 0x00010000UL
499#define PFMF_UI 0x00008000UL
500#define PFMF_FSC 0x00007000UL
501#define PFMF_NQ 0x00000800UL
502#define PFMF_MR 0x00000400UL
503#define PFMF_MC 0x00000200UL
504#define PFMF_KEY 0x000000feUL
505
506static int handle_pfmf(struct kvm_vcpu *vcpu)
507{
508 int reg1, reg2;
509 unsigned long start, end;
510
511 vcpu->stat.instruction_pfmf++;
512
513 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
514
515 if (!MACHINE_HAS_PFMF)
516 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
517
518 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200519 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200520
521 if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
522 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
523
524 /* Only provide non-quiescing support if the host supports it */
525 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ &&
526 S390_lowcore.stfl_fac_list & 0x00020000)
527 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
528
529 /* No support for conditional-SSKE */
530 if (vcpu->run->s.regs.gprs[reg1] & (PFMF_MR | PFMF_MC))
531 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
532
533 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
534 switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
535 case 0x00000000:
536 end = (start + (1UL << 12)) & ~((1UL << 12) - 1);
537 break;
538 case 0x00001000:
539 end = (start + (1UL << 20)) & ~((1UL << 20) - 1);
540 break;
541 /* We dont support EDAT2
542 case 0x00002000:
543 end = (start + (1UL << 31)) & ~((1UL << 31) - 1);
544 break;*/
545 default:
546 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
547 }
548 while (start < end) {
549 unsigned long useraddr;
550
551 useraddr = gmap_translate(start, vcpu->arch.gmap);
552 if (IS_ERR((void *)useraddr))
553 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
554
555 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
556 if (clear_user((void __user *)useraddr, PAGE_SIZE))
557 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
558 }
559
560 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) {
561 if (set_guest_storage_key(current->mm, useraddr,
562 vcpu->run->s.regs.gprs[reg1] & PFMF_KEY,
563 vcpu->run->s.regs.gprs[reg1] & PFMF_NQ))
564 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
565 }
566
567 start += PAGE_SIZE;
568 }
569 if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC)
570 vcpu->run->s.regs.gprs[reg2] = end;
571 return 0;
572}
573
Cornelia Huck48a3e952012-12-20 15:32:09 +0100574static const intercept_handler_t b9_handlers[256] = {
575 [0x8d] = handle_epsw,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100576 [0x9c] = handle_io_inst,
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200577 [0xaf] = handle_pfmf,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100578};
579
580int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
581{
582 intercept_handler_t handler;
583
584 /* This is handled just as for the B2 instructions. */
585 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200586 if (handler)
587 return handler(vcpu);
588
Cornelia Huck48a3e952012-12-20 15:32:09 +0100589 return -EOPNOTSUPP;
590}
591
Cornelia Huckf379aae2012-12-20 15:32:10 +0100592static const intercept_handler_t eb_handlers[256] = {
593 [0x8a] = handle_io_inst,
594};
595
596int kvm_s390_handle_priv_eb(struct kvm_vcpu *vcpu)
597{
598 intercept_handler_t handler;
599
Cornelia Huckf379aae2012-12-20 15:32:10 +0100600 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
601 if (handler)
602 return handler(vcpu);
603 return -EOPNOTSUPP;
604}
605
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200606static int handle_tprot(struct kvm_vcpu *vcpu)
607{
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100608 u64 address1, address2;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200609 struct vm_area_struct *vma;
Christian Borntraeger1eddb852011-11-17 11:00:43 +0100610 unsigned long user_address;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200611
612 vcpu->stat.instruction_tprot++;
613
Thomas Huthf9f6bbc2013-06-20 17:22:00 +0200614 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
615 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
616
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100617 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2);
618
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200619 /* we only handle the Linux memory detection case:
620 * access key == 0
621 * guest DAT == off
622 * everything else goes to userspace. */
623 if (address2 & 0xf0)
624 return -EOPNOTSUPP;
625 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
626 return -EOPNOTSUPP;
627
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200628 down_read(&current->mm->mmap_sem);
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100629 user_address = __gmap_translate(address1, vcpu->arch.gmap);
630 if (IS_ERR_VALUE(user_address))
631 goto out_inject;
Christian Borntraeger1eddb852011-11-17 11:00:43 +0100632 vma = find_vma(current->mm, user_address);
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100633 if (!vma)
634 goto out_inject;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200635 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
636 if (!(vma->vm_flags & VM_WRITE) && (vma->vm_flags & VM_READ))
637 vcpu->arch.sie_block->gpsw.mask |= (1ul << 44);
638 if (!(vma->vm_flags & VM_WRITE) && !(vma->vm_flags & VM_READ))
639 vcpu->arch.sie_block->gpsw.mask |= (2ul << 44);
640
641 up_read(&current->mm->mmap_sem);
642 return 0;
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100643
644out_inject:
645 up_read(&current->mm->mmap_sem);
646 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200647}
648
649int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
650{
651 /* For e5xx... instructions we only handle TPROT */
652 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
653 return handle_tprot(vcpu);
654 return -EOPNOTSUPP;
655}
656
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200657static int handle_sckpf(struct kvm_vcpu *vcpu)
658{
659 u32 value;
660
661 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200662 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200663
664 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
665 return kvm_s390_inject_program_int(vcpu,
666 PGM_SPECIFICATION);
667
668 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
669 vcpu->arch.sie_block->todpr = value;
670
671 return 0;
672}
673
Cornelia Huck77975352012-12-20 15:32:06 +0100674static const intercept_handler_t x01_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200675 [0x07] = handle_sckpf,
676};
677
678int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
679{
680 intercept_handler_t handler;
681
682 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
683 if (handler)
684 return handler(vcpu);
685 return -EOPNOTSUPP;
686}