blob: 351116939ea27f2fcf6eb4de60447d86335d0b6e [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;
Heiko Carstens0e7a3f92014-01-01 16:50:11 +010038 int i, rc;
Thomas Huth6a3f95a2013-09-12 10:33:49 +020039 u64 op2;
Thomas Huth6a3f95a2013-09-12 10:33:49 +020040
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);
Heiko Carstens0e7a3f92014-01-01 16:50:11 +010047 rc = read_guest(vcpu, op2, &val, sizeof(val));
48 if (rc)
49 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020050
51 if (store_tod_clock(&hostclk)) {
52 kvm_s390_set_psw_cc(vcpu, 3);
53 return 0;
54 }
55 val = (val - hostclk) & ~0x3fUL;
56
57 mutex_lock(&vcpu->kvm->lock);
58 kvm_for_each_vcpu(i, cpup, vcpu->kvm)
59 cpup->arch.sie_block->epoch = val;
60 mutex_unlock(&vcpu->kvm->lock);
61
62 kvm_s390_set_psw_cc(vcpu, 0);
63 return 0;
64}
65
Christian Borntraeger453423d2008-03-25 18:47:29 +010066static int handle_set_prefix(struct kvm_vcpu *vcpu)
67{
Christian Borntraeger453423d2008-03-25 18:47:29 +010068 u64 operand2;
Heiko Carstens665170c2014-01-01 16:47:12 +010069 u32 address;
70 int rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +010071
72 vcpu->stat.instruction_spx++;
73
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 /* get the value */
Heiko Carstens665170c2014-01-01 16:47:12 +010084 rc = read_guest(vcpu, operand2, &address, sizeof(address));
85 if (rc)
86 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +010087
Heiko Carstens665170c2014-01-01 16:47:12 +010088 address &= 0x7fffe000u;
Christian Borntraeger453423d2008-03-25 18:47:29 +010089
Heiko Carstens665170c2014-01-01 16:47:12 +010090 /*
91 * Make sure the new value is valid memory. We only need to check the
92 * first page, since address is 8k aligned and memory pieces are always
93 * at least 1MB aligned and have at least a size of 1MB.
94 */
95 if (kvm_is_error_gpa(vcpu->kvm, address))
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010096 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +010097
Christian Borntraeger8d26cf72012-01-11 11:19:32 +010098 kvm_s390_set_prefix(vcpu, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010099
100 VCPU_EVENT(vcpu, 5, "setting prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200101 trace_kvm_s390_handle_prefix(vcpu, 1, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100102 return 0;
103}
104
105static int handle_store_prefix(struct kvm_vcpu *vcpu)
106{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100107 u64 operand2;
108 u32 address;
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100109 int rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100110
111 vcpu->stat.instruction_stpx++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100112
Thomas Huth5087dfa2013-06-20 17:22:01 +0200113 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
114 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
115
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100116 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100117
118 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100119 if (operand2 & 3)
120 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100121
Michael Muellerfda902c2014-05-13 16:58:30 +0200122 address = kvm_s390_get_prefix(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100123
124 /* get the value */
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100125 rc = write_guest(vcpu, operand2, &address, sizeof(address));
126 if (rc)
127 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100128
129 VCPU_EVENT(vcpu, 5, "storing prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200130 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100131 return 0;
132}
133
134static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
135{
Heiko Carstens8b96de02014-01-01 16:53:27 +0100136 u16 vcpu_id = vcpu->vcpu_id;
137 u64 ga;
138 int rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100139
140 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100141
Thomas Huth5087dfa2013-06-20 17:22:01 +0200142 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
143 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
144
Heiko Carstens8b96de02014-01-01 16:53:27 +0100145 ga = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100146
Heiko Carstens8b96de02014-01-01 16:53:27 +0100147 if (ga & 1)
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100148 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100149
Heiko Carstens8b96de02014-01-01 16:53:27 +0100150 rc = write_guest(vcpu, ga, &vcpu_id, sizeof(vcpu_id));
151 if (rc)
152 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100153
Heiko Carstens8b96de02014-01-01 16:53:27 +0100154 VCPU_EVENT(vcpu, 5, "storing cpu address to %llx", ga);
155 trace_kvm_s390_handle_stap(vcpu, ga);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100156 return 0;
157}
158
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200159static int __skey_check_enable(struct kvm_vcpu *vcpu)
Dominik Dingel693ffc02014-01-14 18:11:14 +0100160{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200161 int rc = 0;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100162 if (!(vcpu->arch.sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)))
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200163 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100164
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200165 rc = s390_enable_skey();
Dominik Dingel693ffc02014-01-14 18:11:14 +0100166 trace_kvm_s390_skey_related_inst(vcpu);
167 vcpu->arch.sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE | ICTL_RRBE);
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200168 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100169}
170
171
Christian Borntraeger453423d2008-03-25 18:47:29 +0100172static int handle_skey(struct kvm_vcpu *vcpu)
173{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200174 int rc = __skey_check_enable(vcpu);
Dominik Dingel693ffc02014-01-14 18:11:14 +0100175
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200176 if (rc)
177 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100178 vcpu->stat.instruction_storage_key++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200179
180 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
181 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
182
Thomas Huth04b41ac2014-11-12 17:13:29 +0100183 kvm_s390_rewind_psw(vcpu, 4);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100184 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
185 return 0;
186}
187
Heiko Carstens8a2422342014-01-10 14:33:28 +0100188static int handle_ipte_interlock(struct kvm_vcpu *vcpu)
189{
Heiko Carstens8a2422342014-01-10 14:33:28 +0100190 vcpu->stat.instruction_ipte_interlock++;
Thomas Huth04b41ac2014-11-12 17:13:29 +0100191 if (psw_bits(vcpu->arch.sie_block->gpsw).p)
Heiko Carstens8a2422342014-01-10 14:33:28 +0100192 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
193 wait_event(vcpu->kvm->arch.ipte_wq, !ipte_lock_held(vcpu));
Thomas Huth04b41ac2014-11-12 17:13:29 +0100194 kvm_s390_rewind_psw(vcpu, 4);
Heiko Carstens8a2422342014-01-10 14:33:28 +0100195 VCPU_EVENT(vcpu, 4, "%s", "retrying ipte interlock operation");
196 return 0;
197}
198
Thomas Huthaca84242013-09-12 10:33:48 +0200199static int handle_test_block(struct kvm_vcpu *vcpu)
200{
Thomas Huthaca84242013-09-12 10:33:48 +0200201 gpa_t addr;
202 int reg2;
203
204 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
205 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
206
207 kvm_s390_get_regs_rre(vcpu, NULL, &reg2);
208 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Huthe45efa22014-03-07 12:14:23 +0100209 addr = kvm_s390_logical_to_effective(vcpu, addr);
210 if (kvm_s390_check_low_addr_protection(vcpu, addr))
211 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
Thomas Huthaca84242013-09-12 10:33:48 +0200212 addr = kvm_s390_real_to_abs(vcpu, addr);
213
Heiko Carstensef23e772014-01-01 16:53:49 +0100214 if (kvm_is_error_gpa(vcpu->kvm, addr))
Thomas Huthaca84242013-09-12 10:33:48 +0200215 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
216 /*
217 * We don't expect errors on modern systems, and do not care
218 * about storage keys (yet), so let's just clear the page.
219 */
Heiko Carstensef23e772014-01-01 16:53:49 +0100220 if (kvm_clear_guest(vcpu->kvm, addr, PAGE_SIZE))
Thomas Huthaca84242013-09-12 10:33:48 +0200221 return -EFAULT;
222 kvm_s390_set_psw_cc(vcpu, 0);
223 vcpu->run->s.regs.gprs[0] = 0;
224 return 0;
225}
226
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100227static int handle_tpi(struct kvm_vcpu *vcpu)
228{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100229 struct kvm_s390_interrupt_info *inti;
Heiko Carstens4799b552014-01-01 16:55:48 +0100230 unsigned long len;
231 u32 tpi_data[3];
232 int cc, rc;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100233 u64 addr;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100234
Heiko Carstens4799b552014-01-01 16:55:48 +0100235 rc = 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100236 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100237 if (addr & 3)
238 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100239 cc = 0;
Thomas Huthf0926692013-10-09 14:15:54 +0200240 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100241 if (!inti)
242 goto no_interrupt;
243 cc = 1;
Heiko Carstens4799b552014-01-01 16:55:48 +0100244 tpi_data[0] = inti->io.subchannel_id << 16 | inti->io.subchannel_nr;
245 tpi_data[1] = inti->io.io_int_parm;
246 tpi_data[2] = inti->io.io_int_word;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100247 if (addr) {
248 /*
249 * Store the two-word I/O interruption code into the
250 * provided area.
251 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100252 len = sizeof(tpi_data) - 4;
253 rc = write_guest(vcpu, addr, &tpi_data, len);
254 if (rc)
255 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100256 } else {
257 /*
258 * Store the three-word I/O interruption code into
259 * the appropriate lowcore area.
260 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100261 len = sizeof(tpi_data);
262 if (write_guest_lc(vcpu, __LC_SUBCHANNEL_ID, &tpi_data, len))
263 rc = -EFAULT;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100264 }
Cornelia Huck2f32d4e2014-01-08 18:07:54 +0100265 /*
266 * If we encounter a problem storing the interruption code, the
267 * instruction is suppressed from the guest's view: reinject the
268 * interrupt.
269 */
270 if (!rc)
271 kfree(inti);
272 else
273 kvm_s390_reinject_io_int(vcpu->kvm, inti);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100274no_interrupt:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100275 /* Set condition code and we're done. */
Heiko Carstens4799b552014-01-01 16:55:48 +0100276 if (!rc)
277 kvm_s390_set_psw_cc(vcpu, cc);
278 return rc ? -EFAULT : 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100279}
280
281static int handle_tsch(struct kvm_vcpu *vcpu)
282{
283 struct kvm_s390_interrupt_info *inti;
284
285 inti = kvm_s390_get_io_int(vcpu->kvm, 0,
286 vcpu->run->s.regs.gprs[1]);
287
288 /*
289 * Prepare exit to userspace.
290 * We indicate whether we dequeued a pending I/O interrupt
291 * so that userspace can re-inject it if the instruction gets
292 * a program check. While this may re-order the pending I/O
293 * interrupts, this is no problem since the priority is kept
294 * intact.
295 */
296 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
297 vcpu->run->s390_tsch.dequeued = !!inti;
298 if (inti) {
299 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
300 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
301 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
302 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
303 }
304 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
305 kfree(inti);
306 return -EREMOTE;
307}
308
Cornelia Huckf379aae2012-12-20 15:32:10 +0100309static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100310{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100311 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100312
Thomas Huth5087dfa2013-06-20 17:22:01 +0200313 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
314 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
315
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100316 if (vcpu->kvm->arch.css_support) {
317 /*
318 * Most I/O instructions will be handled by userspace.
319 * Exceptions are tpi and the interrupt portion of tsch.
320 */
321 if (vcpu->arch.sie_block->ipa == 0xb236)
322 return handle_tpi(vcpu);
323 if (vcpu->arch.sie_block->ipa == 0xb235)
324 return handle_tsch(vcpu);
325 /* Handle in userspace. */
326 return -EOPNOTSUPP;
327 } else {
328 /*
Hendrik Bruecknerb4a96012013-12-13 12:53:42 +0100329 * Set condition code 3 to stop the guest from issuing channel
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100330 * I/O instructions.
331 */
Thomas Huthea828eb2013-07-26 15:04:06 +0200332 kvm_s390_set_psw_cc(vcpu, 3);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100333 return 0;
334 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100335}
336
Christian Borntraeger453423d2008-03-25 18:47:29 +0100337static int handle_stfl(struct kvm_vcpu *vcpu)
338{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100339 int rc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100340 unsigned int fac;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100341
342 vcpu->stat.instruction_stfl++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200343
344 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
345 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
346
Michael Mueller9d8d5782015-02-02 15:42:51 +0100347 /*
348 * We need to shift the lower 32 facility bits (bit 0-31) from a u64
349 * into a u32 memory representation. They will remain bits 0-31.
350 */
Michael Mueller981467c2015-02-24 13:51:04 +0100351 fac = *vcpu->kvm->arch.model.fac->list >> 32;
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100352 rc = write_guest_lc(vcpu, offsetof(struct _lowcore, stfl_fac_list),
Michael Mueller9d8d5782015-02-02 15:42:51 +0100353 &fac, sizeof(fac));
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100354 if (rc)
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100355 return rc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100356 VCPU_EVENT(vcpu, 5, "store facility list value %x", fac);
357 trace_kvm_s390_handle_stfl(vcpu, fac);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100358 return 0;
359}
360
Cornelia Huck48a3e952012-12-20 15:32:09 +0100361#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
362#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
Heiko Carstensd21683e2013-03-25 17:22:49 +0100363#define PSW_ADDR_24 0x0000000000ffffffUL
Cornelia Huck48a3e952012-12-20 15:32:09 +0100364#define PSW_ADDR_31 0x000000007fffffffUL
365
Thomas Hutha3fb5772014-04-17 09:10:40 +0200366int is_valid_psw(psw_t *psw)
367{
Heiko Carstens3736b872013-03-25 17:22:52 +0100368 if (psw->mask & PSW_MASK_UNASSIGNED)
369 return 0;
370 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) {
371 if (psw->addr & ~PSW_ADDR_31)
372 return 0;
373 }
374 if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24))
375 return 0;
376 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA)
377 return 0;
Thomas Hutha3fb5772014-04-17 09:10:40 +0200378 if (psw->addr & 1)
379 return 0;
Heiko Carstens3736b872013-03-25 17:22:52 +0100380 return 1;
381}
382
Cornelia Huck48a3e952012-12-20 15:32:09 +0100383int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
384{
Heiko Carstens3736b872013-03-25 17:22:52 +0100385 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100386 psw_compat_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100387 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100388 int rc;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100389
Heiko Carstens3736b872013-03-25 17:22:52 +0100390 if (gpsw->mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200391 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
392
Cornelia Huck48a3e952012-12-20 15:32:09 +0100393 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100394 if (addr & 7)
395 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100396
397 rc = read_guest(vcpu, addr, &new_psw, sizeof(new_psw));
398 if (rc)
399 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100400 if (!(new_psw.mask & PSW32_MASK_BASE))
401 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens3736b872013-03-25 17:22:52 +0100402 gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32;
403 gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE;
404 gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE;
405 if (!is_valid_psw(gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100406 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100407 return 0;
408}
409
410static int handle_lpswe(struct kvm_vcpu *vcpu)
411{
Cornelia Huck48a3e952012-12-20 15:32:09 +0100412 psw_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100413 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100414 int rc;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100415
Thomas Huth5087dfa2013-06-20 17:22:01 +0200416 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
417 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
418
Cornelia Huck48a3e952012-12-20 15:32:09 +0100419 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100420 if (addr & 7)
421 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100422 rc = read_guest(vcpu, addr, &new_psw, sizeof(new_psw));
423 if (rc)
424 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens3736b872013-03-25 17:22:52 +0100425 vcpu->arch.sie_block->gpsw = new_psw;
426 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100427 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100428 return 0;
429}
430
Christian Borntraeger453423d2008-03-25 18:47:29 +0100431static int handle_stidp(struct kvm_vcpu *vcpu)
432{
Heiko Carstens7d777d72014-01-01 16:58:16 +0100433 u64 stidp_data = vcpu->arch.stidp_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100434 u64 operand2;
Heiko Carstens7d777d72014-01-01 16:58:16 +0100435 int rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100436
437 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100438
Thomas Huth5087dfa2013-06-20 17:22:01 +0200439 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
440 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
441
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100442 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100443
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100444 if (operand2 & 7)
445 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100446
Heiko Carstens7d777d72014-01-01 16:58:16 +0100447 rc = write_guest(vcpu, operand2, &stidp_data, sizeof(stidp_data));
448 if (rc)
449 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100450
451 VCPU_EVENT(vcpu, 5, "%s", "store cpu id");
Christian Borntraeger453423d2008-03-25 18:47:29 +0100452 return 0;
453}
454
455static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
456{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100457 int cpus = 0;
458 int n;
459
Jens Freimannff520a62014-02-24 10:11:41 +0100460 cpus = atomic_read(&vcpu->kvm->online_vcpus);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100461
462 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200463 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100464 mem->count = 0;
465 if (mem->count < 8)
466 mem->count++;
467 for (n = mem->count - 1; n > 0 ; n--)
468 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
469
470 mem->vm[0].cpus_total = cpus;
471 mem->vm[0].cpus_configured = cpus;
472 mem->vm[0].cpus_standby = 0;
473 mem->vm[0].cpus_reserved = 0;
474 mem->vm[0].caf = 1000;
475 memcpy(mem->vm[0].name, "KVMguest", 8);
476 ASCEBC(mem->vm[0].name, 8);
477 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
478 ASCEBC(mem->vm[0].cpi, 16);
479}
480
481static int handle_stsi(struct kvm_vcpu *vcpu)
482{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100483 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
484 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
485 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100486 unsigned long mem = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100487 u64 operand2;
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100488 int rc = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100489
490 vcpu->stat.instruction_stsi++;
491 VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
492
Thomas Huth5087dfa2013-06-20 17:22:01 +0200493 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
494 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
495
Thomas Huth87d41fb2013-06-20 17:22:05 +0200496 if (fc > 3) {
Thomas Huthea828eb2013-07-26 15:04:06 +0200497 kvm_s390_set_psw_cc(vcpu, 3);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200498 return 0;
499 }
500
501 if (vcpu->run->s.regs.gprs[0] & 0x0fffff00
502 || vcpu->run->s.regs.gprs[1] & 0xffff0000)
503 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
504
505 if (fc == 0) {
506 vcpu->run->s.regs.gprs[0] = 3 << 28;
Thomas Huthea828eb2013-07-26 15:04:06 +0200507 kvm_s390_set_psw_cc(vcpu, 0);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200508 return 0;
509 }
510
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100511 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100512
Thomas Huth87d41fb2013-06-20 17:22:05 +0200513 if (operand2 & 0xfff)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100514 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
515
516 switch (fc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100517 case 1: /* same handling for 1 and 2 */
518 case 2:
519 mem = get_zeroed_page(GFP_KERNEL);
520 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100521 goto out_no_data;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200522 if (stsi((void *) mem, fc, sel1, sel2))
Heiko Carstensc51f0682013-03-25 17:22:54 +0100523 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100524 break;
525 case 3:
526 if (sel1 != 2 || sel2 != 2)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100527 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100528 mem = get_zeroed_page(GFP_KERNEL);
529 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100530 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100531 handle_stsi_3_2_2(vcpu, (void *) mem);
532 break;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100533 }
534
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100535 rc = write_guest(vcpu, operand2, (void *)mem, PAGE_SIZE);
536 if (rc) {
537 rc = kvm_s390_inject_prog_cond(vcpu, rc);
538 goto out;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100539 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200540 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100541 free_page(mem);
Thomas Huthea828eb2013-07-26 15:04:06 +0200542 kvm_s390_set_psw_cc(vcpu, 0);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100543 vcpu->run->s.regs.gprs[0] = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100544 return 0;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100545out_no_data:
Thomas Huthea828eb2013-07-26 15:04:06 +0200546 kvm_s390_set_psw_cc(vcpu, 3);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100547out:
Heiko Carstensc51f0682013-03-25 17:22:54 +0100548 free_page(mem);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100549 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100550}
551
Cornelia Huckf379aae2012-12-20 15:32:10 +0100552static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100553 [0x02] = handle_stidp,
Thomas Huth6a3f95a2013-09-12 10:33:49 +0200554 [0x04] = handle_set_clock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100555 [0x10] = handle_set_prefix,
556 [0x11] = handle_store_prefix,
557 [0x12] = handle_store_cpu_address,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100558 [0x21] = handle_ipte_interlock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100559 [0x29] = handle_skey,
560 [0x2a] = handle_skey,
561 [0x2b] = handle_skey,
Thomas Huthaca84242013-09-12 10:33:48 +0200562 [0x2c] = handle_test_block,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100563 [0x30] = handle_io_inst,
564 [0x31] = handle_io_inst,
565 [0x32] = handle_io_inst,
566 [0x33] = handle_io_inst,
567 [0x34] = handle_io_inst,
568 [0x35] = handle_io_inst,
569 [0x36] = handle_io_inst,
570 [0x37] = handle_io_inst,
571 [0x38] = handle_io_inst,
572 [0x39] = handle_io_inst,
573 [0x3a] = handle_io_inst,
574 [0x3b] = handle_io_inst,
575 [0x3c] = handle_io_inst,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100576 [0x50] = handle_ipte_interlock,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100577 [0x5f] = handle_io_inst,
578 [0x74] = handle_io_inst,
579 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100580 [0x7d] = handle_stsi,
581 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100582 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100583};
584
Christian Borntraeger70455a32009-01-22 10:28:29 +0100585int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100586{
587 intercept_handler_t handler;
588
Christian Borntraeger70455a32009-01-22 10:28:29 +0100589 /*
Thomas Huth5087dfa2013-06-20 17:22:01 +0200590 * A lot of B2 instructions are priviledged. Here we check for
591 * the privileged ones, that we can handle in the kernel.
592 * Anything else goes to userspace.
593 */
Cornelia Huckf379aae2012-12-20 15:32:10 +0100594 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200595 if (handler)
596 return handler(vcpu);
597
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100598 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100599}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200600
Cornelia Huck48a3e952012-12-20 15:32:09 +0100601static int handle_epsw(struct kvm_vcpu *vcpu)
602{
603 int reg1, reg2;
604
Thomas Huthaeb87c32013-06-12 13:54:57 +0200605 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100606
607 /* This basically extracts the mask half of the psw. */
Thomas Huth843200e2013-07-26 15:04:05 +0200608 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100609 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
610 if (reg2) {
Thomas Huth843200e2013-07-26 15:04:05 +0200611 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100612 vcpu->run->s.regs.gprs[reg2] |=
Thomas Huth843200e2013-07-26 15:04:05 +0200613 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100614 }
615 return 0;
616}
617
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200618#define PFMF_RESERVED 0xfffc0101UL
619#define PFMF_SK 0x00020000UL
620#define PFMF_CF 0x00010000UL
621#define PFMF_UI 0x00008000UL
622#define PFMF_FSC 0x00007000UL
623#define PFMF_NQ 0x00000800UL
624#define PFMF_MR 0x00000400UL
625#define PFMF_MC 0x00000200UL
626#define PFMF_KEY 0x000000feUL
627
628static int handle_pfmf(struct kvm_vcpu *vcpu)
629{
630 int reg1, reg2;
631 unsigned long start, end;
632
633 vcpu->stat.instruction_pfmf++;
634
635 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
636
637 if (!MACHINE_HAS_PFMF)
638 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
639
640 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200641 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200642
643 if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
644 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
645
646 /* Only provide non-quiescing support if the host supports it */
Heiko Carstense769ece2013-07-26 15:04:01 +0200647 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && !test_facility(14))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200648 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
649
650 /* No support for conditional-SSKE */
651 if (vcpu->run->s.regs.gprs[reg1] & (PFMF_MR | PFMF_MC))
652 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
653
654 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Hutha02689f2014-11-10 15:59:32 +0100655 start = kvm_s390_logical_to_effective(vcpu, start);
Thomas Huthfb34c6032013-09-09 17:58:38 +0200656
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200657 switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
658 case 0x00000000:
659 end = (start + (1UL << 12)) & ~((1UL << 12) - 1);
660 break;
661 case 0x00001000:
662 end = (start + (1UL << 20)) & ~((1UL << 20) - 1);
663 break;
664 /* We dont support EDAT2
665 case 0x00002000:
666 end = (start + (1UL << 31)) & ~((1UL << 31) - 1);
667 break;*/
668 default:
669 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
670 }
Thomas Hutha02689f2014-11-10 15:59:32 +0100671
672 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
673 if (kvm_s390_check_low_addr_protection(vcpu, start))
674 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
675 }
676
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200677 while (start < end) {
Thomas Huthfb34c6032013-09-09 17:58:38 +0200678 unsigned long useraddr, abs_addr;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200679
Thomas Huthfb34c6032013-09-09 17:58:38 +0200680 /* Translate guest address to host address */
681 if ((vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) == 0)
682 abs_addr = kvm_s390_real_to_abs(vcpu, start);
683 else
684 abs_addr = start;
685 useraddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(abs_addr));
686 if (kvm_is_error_hva(useraddr))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200687 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
688
689 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
690 if (clear_user((void __user *)useraddr, PAGE_SIZE))
691 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
692 }
693
694 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) {
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200695 int rc = __skey_check_enable(vcpu);
696
697 if (rc)
698 return rc;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200699 if (set_guest_storage_key(current->mm, useraddr,
700 vcpu->run->s.regs.gprs[reg1] & PFMF_KEY,
701 vcpu->run->s.regs.gprs[reg1] & PFMF_NQ))
702 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
703 }
704
705 start += PAGE_SIZE;
706 }
707 if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC)
708 vcpu->run->s.regs.gprs[reg2] = end;
709 return 0;
710}
711
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200712static int handle_essa(struct kvm_vcpu *vcpu)
713{
714 /* entries expected to be 1FF */
715 int entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3;
716 unsigned long *cbrlo, cbrle;
717 struct gmap *gmap;
718 int i;
719
720 VCPU_EVENT(vcpu, 5, "cmma release %d pages", entries);
721 gmap = vcpu->arch.gmap;
722 vcpu->stat.instruction_essa++;
Dominik Dingelb31605c2014-03-25 13:47:11 +0100723 if (!kvm_s390_cmma_enabled(vcpu->kvm))
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200724 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
725
726 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
727 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
728
729 if (((vcpu->arch.sie_block->ipb & 0xf0000000) >> 28) > 6)
730 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
731
732 /* Rewind PSW to repeat the ESSA instruction */
Thomas Huth04b41ac2014-11-12 17:13:29 +0100733 kvm_s390_rewind_psw(vcpu, 4);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200734 vcpu->arch.sie_block->cbrlo &= PAGE_MASK; /* reset nceo */
735 cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo);
736 down_read(&gmap->mm->mmap_sem);
737 for (i = 0; i < entries; ++i) {
738 cbrle = cbrlo[i];
739 if (unlikely(cbrle & ~PAGE_MASK || cbrle < 2 * PAGE_SIZE))
740 /* invalid entry */
741 break;
742 /* try to free backing */
Martin Schwidefsky6e0a0432014-04-29 09:34:41 +0200743 __gmap_zap(gmap, cbrle);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200744 }
745 up_read(&gmap->mm->mmap_sem);
746 if (i < entries)
747 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
748 return 0;
749}
750
Cornelia Huck48a3e952012-12-20 15:32:09 +0100751static const intercept_handler_t b9_handlers[256] = {
Heiko Carstens8a2422342014-01-10 14:33:28 +0100752 [0x8a] = handle_ipte_interlock,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100753 [0x8d] = handle_epsw,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100754 [0x8e] = handle_ipte_interlock,
755 [0x8f] = handle_ipte_interlock,
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200756 [0xab] = handle_essa,
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200757 [0xaf] = handle_pfmf,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100758};
759
760int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
761{
762 intercept_handler_t handler;
763
764 /* This is handled just as for the B2 instructions. */
765 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200766 if (handler)
767 return handler(vcpu);
768
Cornelia Huck48a3e952012-12-20 15:32:09 +0100769 return -EOPNOTSUPP;
770}
771
Thomas Huth953ed882013-06-20 17:22:04 +0200772int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu)
773{
774 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
775 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100776 int reg, rc, nr_regs;
777 u32 ctl_array[16];
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100778 u64 ga;
Thomas Huth953ed882013-06-20 17:22:04 +0200779
780 vcpu->stat.instruction_lctl++;
781
782 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
783 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
784
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100785 ga = kvm_s390_get_base_disp_rs(vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200786
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100787 if (ga & 3)
Thomas Huth953ed882013-06-20 17:22:04 +0200788 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
789
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100790 VCPU_EVENT(vcpu, 5, "lctl r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
791 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200792
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100793 nr_regs = ((reg3 - reg1) & 0xf) + 1;
794 rc = read_guest(vcpu, ga, ctl_array, nr_regs * sizeof(u32));
795 if (rc)
796 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth953ed882013-06-20 17:22:04 +0200797 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100798 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +0200799 do {
Thomas Huth953ed882013-06-20 17:22:04 +0200800 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100801 vcpu->arch.sie_block->gcr[reg] |= ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +0200802 if (reg == reg3)
803 break;
804 reg = (reg + 1) % 16;
805 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +0100806 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200807 return 0;
808}
809
David Hildenbrandaba07502014-01-23 10:47:13 +0100810int kvm_s390_handle_stctl(struct kvm_vcpu *vcpu)
811{
812 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
813 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100814 int reg, rc, nr_regs;
815 u32 ctl_array[16];
David Hildenbrandaba07502014-01-23 10:47:13 +0100816 u64 ga;
David Hildenbrandaba07502014-01-23 10:47:13 +0100817
818 vcpu->stat.instruction_stctl++;
819
820 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
821 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
822
823 ga = kvm_s390_get_base_disp_rs(vcpu);
824
825 if (ga & 3)
826 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
827
828 VCPU_EVENT(vcpu, 5, "stctl r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
829 trace_kvm_s390_handle_stctl(vcpu, 0, reg1, reg3, ga);
830
831 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100832 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100833 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100834 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +0100835 if (reg == reg3)
836 break;
837 reg = (reg + 1) % 16;
838 } while (1);
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100839 rc = write_guest(vcpu, ga, ctl_array, nr_regs * sizeof(u32));
840 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100841}
842
Thomas Huth953ed882013-06-20 17:22:04 +0200843static int handle_lctlg(struct kvm_vcpu *vcpu)
844{
845 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
846 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100847 int reg, rc, nr_regs;
848 u64 ctl_array[16];
849 u64 ga;
Thomas Huth953ed882013-06-20 17:22:04 +0200850
851 vcpu->stat.instruction_lctlg++;
852
853 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
854 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
855
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100856 ga = kvm_s390_get_base_disp_rsy(vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200857
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100858 if (ga & 7)
Thomas Huth953ed882013-06-20 17:22:04 +0200859 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
860
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100861 VCPU_EVENT(vcpu, 5, "lctlg r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
862 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200863
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100864 nr_regs = ((reg3 - reg1) & 0xf) + 1;
865 rc = read_guest(vcpu, ga, ctl_array, nr_regs * sizeof(u64));
866 if (rc)
867 return kvm_s390_inject_prog_cond(vcpu, rc);
868 reg = reg1;
869 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +0200870 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100871 vcpu->arch.sie_block->gcr[reg] = ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +0200872 if (reg == reg3)
873 break;
874 reg = (reg + 1) % 16;
875 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +0100876 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200877 return 0;
878}
879
David Hildenbrandaba07502014-01-23 10:47:13 +0100880static int handle_stctg(struct kvm_vcpu *vcpu)
881{
882 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
883 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100884 int reg, rc, nr_regs;
885 u64 ctl_array[16];
886 u64 ga;
David Hildenbrandaba07502014-01-23 10:47:13 +0100887
888 vcpu->stat.instruction_stctg++;
889
890 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
891 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
892
893 ga = kvm_s390_get_base_disp_rsy(vcpu);
894
895 if (ga & 7)
896 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
897
David Hildenbrandaba07502014-01-23 10:47:13 +0100898 VCPU_EVENT(vcpu, 5, "stctg r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
899 trace_kvm_s390_handle_stctl(vcpu, 1, reg1, reg3, ga);
900
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100901 reg = reg1;
902 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100903 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100904 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +0100905 if (reg == reg3)
906 break;
907 reg = (reg + 1) % 16;
908 } while (1);
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100909 rc = write_guest(vcpu, ga, ctl_array, nr_regs * sizeof(u64));
910 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100911}
912
Cornelia Huckf379aae2012-12-20 15:32:10 +0100913static const intercept_handler_t eb_handlers[256] = {
Thomas Huth953ed882013-06-20 17:22:04 +0200914 [0x2f] = handle_lctlg,
David Hildenbrandaba07502014-01-23 10:47:13 +0100915 [0x25] = handle_stctg,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100916};
917
Thomas Huth953ed882013-06-20 17:22:04 +0200918int kvm_s390_handle_eb(struct kvm_vcpu *vcpu)
Cornelia Huckf379aae2012-12-20 15:32:10 +0100919{
920 intercept_handler_t handler;
921
Cornelia Huckf379aae2012-12-20 15:32:10 +0100922 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
923 if (handler)
924 return handler(vcpu);
925 return -EOPNOTSUPP;
926}
927
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200928static int handle_tprot(struct kvm_vcpu *vcpu)
929{
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100930 u64 address1, address2;
Thomas Hutha0465f92014-02-04 14:48:07 +0100931 unsigned long hva, gpa;
932 int ret = 0, cc = 0;
933 bool writable;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200934
935 vcpu->stat.instruction_tprot++;
936
Thomas Huthf9f6bbc2013-06-20 17:22:00 +0200937 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
938 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
939
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100940 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2);
941
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200942 /* we only handle the Linux memory detection case:
943 * access key == 0
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200944 * everything else goes to userspace. */
945 if (address2 & 0xf0)
946 return -EOPNOTSUPP;
947 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
Thomas Hutha0465f92014-02-04 14:48:07 +0100948 ipte_lock(vcpu);
949 ret = guest_translate_address(vcpu, address1, &gpa, 1);
950 if (ret == PGM_PROTECTION) {
951 /* Write protected? Try again with read-only... */
952 cc = 1;
953 ret = guest_translate_address(vcpu, address1, &gpa, 0);
954 }
955 if (ret) {
956 if (ret == PGM_ADDRESSING || ret == PGM_TRANSLATION_SPEC) {
957 ret = kvm_s390_inject_program_int(vcpu, ret);
958 } else if (ret > 0) {
959 /* Translation not available */
960 kvm_s390_set_psw_cc(vcpu, 3);
961 ret = 0;
962 }
963 goto out_unlock;
964 }
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200965
Thomas Hutha0465f92014-02-04 14:48:07 +0100966 hva = gfn_to_hva_prot(vcpu->kvm, gpa_to_gfn(gpa), &writable);
967 if (kvm_is_error_hva(hva)) {
968 ret = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
969 } else {
970 if (!writable)
971 cc = 1; /* Write not permitted ==> read-only */
972 kvm_s390_set_psw_cc(vcpu, cc);
973 /* Note: CC2 only occurs for storage keys (not supported yet) */
974 }
975out_unlock:
976 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
977 ipte_unlock(vcpu);
978 return ret;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200979}
980
981int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
982{
983 /* For e5xx... instructions we only handle TPROT */
984 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
985 return handle_tprot(vcpu);
986 return -EOPNOTSUPP;
987}
988
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200989static int handle_sckpf(struct kvm_vcpu *vcpu)
990{
991 u32 value;
992
993 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200994 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200995
996 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
997 return kvm_s390_inject_program_int(vcpu,
998 PGM_SPECIFICATION);
999
1000 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
1001 vcpu->arch.sie_block->todpr = value;
1002
1003 return 0;
1004}
1005
Cornelia Huck77975352012-12-20 15:32:06 +01001006static const intercept_handler_t x01_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001007 [0x07] = handle_sckpf,
1008};
1009
1010int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
1011{
1012 intercept_handler_t handler;
1013
1014 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
1015 if (handler)
1016 return handler(vcpu);
1017 return -EOPNOTSUPP;
1018}