blob: 27f9051a78f85700f19a0f07491cadd8c51d0c83 [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
122 address = vcpu->arch.sie_block->prefix;
123 address = address & 0x7fffe000u;
124
125 /* get the value */
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100126 rc = write_guest(vcpu, operand2, &address, sizeof(address));
127 if (rc)
128 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100129
130 VCPU_EVENT(vcpu, 5, "storing prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200131 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100132 return 0;
133}
134
135static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
136{
Heiko Carstens8b96de02014-01-01 16:53:27 +0100137 u16 vcpu_id = vcpu->vcpu_id;
138 u64 ga;
139 int rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100140
141 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100142
Thomas Huth5087dfa2013-06-20 17:22:01 +0200143 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
144 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
145
Heiko Carstens8b96de02014-01-01 16:53:27 +0100146 ga = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100147
Heiko Carstens8b96de02014-01-01 16:53:27 +0100148 if (ga & 1)
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100149 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100150
Heiko Carstens8b96de02014-01-01 16:53:27 +0100151 rc = write_guest(vcpu, ga, &vcpu_id, sizeof(vcpu_id));
152 if (rc)
153 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100154
Heiko Carstens8b96de02014-01-01 16:53:27 +0100155 VCPU_EVENT(vcpu, 5, "storing cpu address to %llx", ga);
156 trace_kvm_s390_handle_stap(vcpu, ga);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100157 return 0;
158}
159
Dominik Dingel693ffc02014-01-14 18:11:14 +0100160static void __skey_check_enable(struct kvm_vcpu *vcpu)
161{
162 if (!(vcpu->arch.sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)))
163 return;
164
165 s390_enable_skey();
166 trace_kvm_s390_skey_related_inst(vcpu);
167 vcpu->arch.sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE | ICTL_RRBE);
168}
169
170
Christian Borntraeger453423d2008-03-25 18:47:29 +0100171static int handle_skey(struct kvm_vcpu *vcpu)
172{
Dominik Dingel693ffc02014-01-14 18:11:14 +0100173 __skey_check_enable(vcpu);
174
Christian Borntraeger453423d2008-03-25 18:47:29 +0100175 vcpu->stat.instruction_storage_key++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200176
177 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
178 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
179
Martin Schwidefskydfcf7dc2013-05-17 14:41:32 +0200180 vcpu->arch.sie_block->gpsw.addr =
181 __rewind_psw(vcpu->arch.sie_block->gpsw, 4);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100182 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
183 return 0;
184}
185
Heiko Carstens8a2422342014-01-10 14:33:28 +0100186static int handle_ipte_interlock(struct kvm_vcpu *vcpu)
187{
188 psw_t *psw = &vcpu->arch.sie_block->gpsw;
189
190 vcpu->stat.instruction_ipte_interlock++;
191 if (psw_bits(*psw).p)
192 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
193 wait_event(vcpu->kvm->arch.ipte_wq, !ipte_lock_held(vcpu));
194 psw->addr = __rewind_psw(*psw, 4);
195 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;
209 addr = kvm_s390_real_to_abs(vcpu, addr);
210
Heiko Carstensef23e772014-01-01 16:53:49 +0100211 if (kvm_is_error_gpa(vcpu->kvm, addr))
Thomas Huthaca84242013-09-12 10:33:48 +0200212 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
213 /*
214 * We don't expect errors on modern systems, and do not care
215 * about storage keys (yet), so let's just clear the page.
216 */
Heiko Carstensef23e772014-01-01 16:53:49 +0100217 if (kvm_clear_guest(vcpu->kvm, addr, PAGE_SIZE))
Thomas Huthaca84242013-09-12 10:33:48 +0200218 return -EFAULT;
219 kvm_s390_set_psw_cc(vcpu, 0);
220 vcpu->run->s.regs.gprs[0] = 0;
221 return 0;
222}
223
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100224static int handle_tpi(struct kvm_vcpu *vcpu)
225{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100226 struct kvm_s390_interrupt_info *inti;
Heiko Carstens4799b552014-01-01 16:55:48 +0100227 unsigned long len;
228 u32 tpi_data[3];
229 int cc, rc;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100230 u64 addr;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100231
Heiko Carstens4799b552014-01-01 16:55:48 +0100232 rc = 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100233 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100234 if (addr & 3)
235 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100236 cc = 0;
Thomas Huthf0926692013-10-09 14:15:54 +0200237 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100238 if (!inti)
239 goto no_interrupt;
240 cc = 1;
Heiko Carstens4799b552014-01-01 16:55:48 +0100241 tpi_data[0] = inti->io.subchannel_id << 16 | inti->io.subchannel_nr;
242 tpi_data[1] = inti->io.io_int_parm;
243 tpi_data[2] = inti->io.io_int_word;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100244 if (addr) {
245 /*
246 * Store the two-word I/O interruption code into the
247 * provided area.
248 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100249 len = sizeof(tpi_data) - 4;
250 rc = write_guest(vcpu, addr, &tpi_data, len);
251 if (rc)
252 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100253 } else {
254 /*
255 * Store the three-word I/O interruption code into
256 * the appropriate lowcore area.
257 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100258 len = sizeof(tpi_data);
259 if (write_guest_lc(vcpu, __LC_SUBCHANNEL_ID, &tpi_data, len))
260 rc = -EFAULT;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100261 }
Cornelia Huck2f32d4e2014-01-08 18:07:54 +0100262 /*
263 * If we encounter a problem storing the interruption code, the
264 * instruction is suppressed from the guest's view: reinject the
265 * interrupt.
266 */
267 if (!rc)
268 kfree(inti);
269 else
270 kvm_s390_reinject_io_int(vcpu->kvm, inti);
Heiko Carstens7c959e82013-03-05 13:14:46 +0100271no_interrupt:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100272 /* Set condition code and we're done. */
Heiko Carstens4799b552014-01-01 16:55:48 +0100273 if (!rc)
274 kvm_s390_set_psw_cc(vcpu, cc);
275 return rc ? -EFAULT : 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100276}
277
278static int handle_tsch(struct kvm_vcpu *vcpu)
279{
280 struct kvm_s390_interrupt_info *inti;
281
282 inti = kvm_s390_get_io_int(vcpu->kvm, 0,
283 vcpu->run->s.regs.gprs[1]);
284
285 /*
286 * Prepare exit to userspace.
287 * We indicate whether we dequeued a pending I/O interrupt
288 * so that userspace can re-inject it if the instruction gets
289 * a program check. While this may re-order the pending I/O
290 * interrupts, this is no problem since the priority is kept
291 * intact.
292 */
293 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
294 vcpu->run->s390_tsch.dequeued = !!inti;
295 if (inti) {
296 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
297 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
298 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
299 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
300 }
301 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
302 kfree(inti);
303 return -EREMOTE;
304}
305
Cornelia Huckf379aae2012-12-20 15:32:10 +0100306static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100307{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100308 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100309
Thomas Huth5087dfa2013-06-20 17:22:01 +0200310 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
311 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
312
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100313 if (vcpu->kvm->arch.css_support) {
314 /*
315 * Most I/O instructions will be handled by userspace.
316 * Exceptions are tpi and the interrupt portion of tsch.
317 */
318 if (vcpu->arch.sie_block->ipa == 0xb236)
319 return handle_tpi(vcpu);
320 if (vcpu->arch.sie_block->ipa == 0xb235)
321 return handle_tsch(vcpu);
322 /* Handle in userspace. */
323 return -EOPNOTSUPP;
324 } else {
325 /*
Hendrik Bruecknerb4a96012013-12-13 12:53:42 +0100326 * Set condition code 3 to stop the guest from issuing channel
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100327 * I/O instructions.
328 */
Thomas Huthea828eb2013-07-26 15:04:06 +0200329 kvm_s390_set_psw_cc(vcpu, 3);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100330 return 0;
331 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100332}
333
Christian Borntraeger453423d2008-03-25 18:47:29 +0100334static int handle_stfl(struct kvm_vcpu *vcpu)
335{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100336 int rc;
337
338 vcpu->stat.instruction_stfl++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200339
340 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
341 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
342
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100343 rc = write_guest_lc(vcpu, offsetof(struct _lowcore, stfl_fac_list),
344 vfacilities, 4);
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100345 if (rc)
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100346 return rc;
Michael Mueller78c4b59f2013-07-26 15:04:04 +0200347 VCPU_EVENT(vcpu, 5, "store facility list value %x",
348 *(unsigned int *) vfacilities);
349 trace_kvm_s390_handle_stfl(vcpu, *(unsigned int *) vfacilities);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100350 return 0;
351}
352
Cornelia Huck48a3e952012-12-20 15:32:09 +0100353static void handle_new_psw(struct kvm_vcpu *vcpu)
354{
355 /* Check whether the new psw is enabled for machine checks. */
356 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_MCHECK)
357 kvm_s390_deliver_pending_machine_checks(vcpu);
358}
359
360#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
361#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
Heiko Carstensd21683e2013-03-25 17:22:49 +0100362#define PSW_ADDR_24 0x0000000000ffffffUL
Cornelia Huck48a3e952012-12-20 15:32:09 +0100363#define PSW_ADDR_31 0x000000007fffffffUL
364
Heiko Carstens3736b872013-03-25 17:22:52 +0100365static int is_valid_psw(psw_t *psw) {
366 if (psw->mask & PSW_MASK_UNASSIGNED)
367 return 0;
368 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) {
369 if (psw->addr & ~PSW_ADDR_31)
370 return 0;
371 }
372 if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24))
373 return 0;
374 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA)
375 return 0;
376 return 1;
377}
378
Cornelia Huck48a3e952012-12-20 15:32:09 +0100379int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
380{
Heiko Carstens3736b872013-03-25 17:22:52 +0100381 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100382 psw_compat_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100383 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100384 int rc;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100385
Heiko Carstens3736b872013-03-25 17:22:52 +0100386 if (gpsw->mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200387 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
388
Cornelia Huck48a3e952012-12-20 15:32:09 +0100389 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100390 if (addr & 7)
391 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100392
393 rc = read_guest(vcpu, addr, &new_psw, sizeof(new_psw));
394 if (rc)
395 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100396 if (!(new_psw.mask & PSW32_MASK_BASE))
397 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens3736b872013-03-25 17:22:52 +0100398 gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32;
399 gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE;
400 gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE;
401 if (!is_valid_psw(gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100402 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100403 handle_new_psw(vcpu);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100404 return 0;
405}
406
407static int handle_lpswe(struct kvm_vcpu *vcpu)
408{
Cornelia Huck48a3e952012-12-20 15:32:09 +0100409 psw_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100410 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100411 int rc;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100412
Thomas Huth5087dfa2013-06-20 17:22:01 +0200413 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
414 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
415
Cornelia Huck48a3e952012-12-20 15:32:09 +0100416 addr = kvm_s390_get_base_disp_s(vcpu);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100417 if (addr & 7)
418 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100419 rc = read_guest(vcpu, addr, &new_psw, sizeof(new_psw));
420 if (rc)
421 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens3736b872013-03-25 17:22:52 +0100422 vcpu->arch.sie_block->gpsw = new_psw;
423 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100424 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100425 handle_new_psw(vcpu);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100426 return 0;
427}
428
Christian Borntraeger453423d2008-03-25 18:47:29 +0100429static int handle_stidp(struct kvm_vcpu *vcpu)
430{
Heiko Carstens7d777d72014-01-01 16:58:16 +0100431 u64 stidp_data = vcpu->arch.stidp_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100432 u64 operand2;
Heiko Carstens7d777d72014-01-01 16:58:16 +0100433 int rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100434
435 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100436
Thomas Huth5087dfa2013-06-20 17:22:01 +0200437 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
438 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
439
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100440 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100441
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100442 if (operand2 & 7)
443 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100444
Heiko Carstens7d777d72014-01-01 16:58:16 +0100445 rc = write_guest(vcpu, operand2, &stidp_data, sizeof(stidp_data));
446 if (rc)
447 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100448
449 VCPU_EVENT(vcpu, 5, "%s", "store cpu id");
Christian Borntraeger453423d2008-03-25 18:47:29 +0100450 return 0;
451}
452
453static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
454{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100455 int cpus = 0;
456 int n;
457
Jens Freimannff520a62014-02-24 10:11:41 +0100458 cpus = atomic_read(&vcpu->kvm->online_vcpus);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100459
460 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200461 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100462 mem->count = 0;
463 if (mem->count < 8)
464 mem->count++;
465 for (n = mem->count - 1; n > 0 ; n--)
466 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
467
468 mem->vm[0].cpus_total = cpus;
469 mem->vm[0].cpus_configured = cpus;
470 mem->vm[0].cpus_standby = 0;
471 mem->vm[0].cpus_reserved = 0;
472 mem->vm[0].caf = 1000;
473 memcpy(mem->vm[0].name, "KVMguest", 8);
474 ASCEBC(mem->vm[0].name, 8);
475 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
476 ASCEBC(mem->vm[0].cpi, 16);
477}
478
479static int handle_stsi(struct kvm_vcpu *vcpu)
480{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100481 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
482 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
483 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100484 unsigned long mem = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100485 u64 operand2;
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100486 int rc = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100487
488 vcpu->stat.instruction_stsi++;
489 VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
490
Thomas Huth5087dfa2013-06-20 17:22:01 +0200491 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
492 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
493
Thomas Huth87d41fb2013-06-20 17:22:05 +0200494 if (fc > 3) {
Thomas Huthea828eb2013-07-26 15:04:06 +0200495 kvm_s390_set_psw_cc(vcpu, 3);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200496 return 0;
497 }
498
499 if (vcpu->run->s.regs.gprs[0] & 0x0fffff00
500 || vcpu->run->s.regs.gprs[1] & 0xffff0000)
501 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
502
503 if (fc == 0) {
504 vcpu->run->s.regs.gprs[0] = 3 << 28;
Thomas Huthea828eb2013-07-26 15:04:06 +0200505 kvm_s390_set_psw_cc(vcpu, 0);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200506 return 0;
507 }
508
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100509 operand2 = kvm_s390_get_base_disp_s(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100510
Thomas Huth87d41fb2013-06-20 17:22:05 +0200511 if (operand2 & 0xfff)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100512 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
513
514 switch (fc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100515 case 1: /* same handling for 1 and 2 */
516 case 2:
517 mem = get_zeroed_page(GFP_KERNEL);
518 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100519 goto out_no_data;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200520 if (stsi((void *) mem, fc, sel1, sel2))
Heiko Carstensc51f0682013-03-25 17:22:54 +0100521 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100522 break;
523 case 3:
524 if (sel1 != 2 || sel2 != 2)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100525 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100526 mem = get_zeroed_page(GFP_KERNEL);
527 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100528 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100529 handle_stsi_3_2_2(vcpu, (void *) mem);
530 break;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100531 }
532
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100533 rc = write_guest(vcpu, operand2, (void *)mem, PAGE_SIZE);
534 if (rc) {
535 rc = kvm_s390_inject_prog_cond(vcpu, rc);
536 goto out;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100537 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200538 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100539 free_page(mem);
Thomas Huthea828eb2013-07-26 15:04:06 +0200540 kvm_s390_set_psw_cc(vcpu, 0);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100541 vcpu->run->s.regs.gprs[0] = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100542 return 0;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100543out_no_data:
Thomas Huthea828eb2013-07-26 15:04:06 +0200544 kvm_s390_set_psw_cc(vcpu, 3);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100545out:
Heiko Carstensc51f0682013-03-25 17:22:54 +0100546 free_page(mem);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100547 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100548}
549
Cornelia Huckf379aae2012-12-20 15:32:10 +0100550static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100551 [0x02] = handle_stidp,
Thomas Huth6a3f95a2013-09-12 10:33:49 +0200552 [0x04] = handle_set_clock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100553 [0x10] = handle_set_prefix,
554 [0x11] = handle_store_prefix,
555 [0x12] = handle_store_cpu_address,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100556 [0x21] = handle_ipte_interlock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100557 [0x29] = handle_skey,
558 [0x2a] = handle_skey,
559 [0x2b] = handle_skey,
Thomas Huthaca84242013-09-12 10:33:48 +0200560 [0x2c] = handle_test_block,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100561 [0x30] = handle_io_inst,
562 [0x31] = handle_io_inst,
563 [0x32] = handle_io_inst,
564 [0x33] = handle_io_inst,
565 [0x34] = handle_io_inst,
566 [0x35] = handle_io_inst,
567 [0x36] = handle_io_inst,
568 [0x37] = handle_io_inst,
569 [0x38] = handle_io_inst,
570 [0x39] = handle_io_inst,
571 [0x3a] = handle_io_inst,
572 [0x3b] = handle_io_inst,
573 [0x3c] = handle_io_inst,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100574 [0x50] = handle_ipte_interlock,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100575 [0x5f] = handle_io_inst,
576 [0x74] = handle_io_inst,
577 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100578 [0x7d] = handle_stsi,
579 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100580 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100581};
582
Christian Borntraeger70455a32009-01-22 10:28:29 +0100583int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100584{
585 intercept_handler_t handler;
586
Christian Borntraeger70455a32009-01-22 10:28:29 +0100587 /*
Thomas Huth5087dfa2013-06-20 17:22:01 +0200588 * A lot of B2 instructions are priviledged. Here we check for
589 * the privileged ones, that we can handle in the kernel.
590 * Anything else goes to userspace.
591 */
Cornelia Huckf379aae2012-12-20 15:32:10 +0100592 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200593 if (handler)
594 return handler(vcpu);
595
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100596 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100597}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200598
Cornelia Huck48a3e952012-12-20 15:32:09 +0100599static int handle_epsw(struct kvm_vcpu *vcpu)
600{
601 int reg1, reg2;
602
Thomas Huthaeb87c32013-06-12 13:54:57 +0200603 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100604
605 /* This basically extracts the mask half of the psw. */
Thomas Huth843200e2013-07-26 15:04:05 +0200606 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100607 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
608 if (reg2) {
Thomas Huth843200e2013-07-26 15:04:05 +0200609 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100610 vcpu->run->s.regs.gprs[reg2] |=
Thomas Huth843200e2013-07-26 15:04:05 +0200611 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100612 }
613 return 0;
614}
615
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200616#define PFMF_RESERVED 0xfffc0101UL
617#define PFMF_SK 0x00020000UL
618#define PFMF_CF 0x00010000UL
619#define PFMF_UI 0x00008000UL
620#define PFMF_FSC 0x00007000UL
621#define PFMF_NQ 0x00000800UL
622#define PFMF_MR 0x00000400UL
623#define PFMF_MC 0x00000200UL
624#define PFMF_KEY 0x000000feUL
625
626static int handle_pfmf(struct kvm_vcpu *vcpu)
627{
628 int reg1, reg2;
629 unsigned long start, end;
630
631 vcpu->stat.instruction_pfmf++;
632
633 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
634
635 if (!MACHINE_HAS_PFMF)
636 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
637
638 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200639 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200640
641 if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
642 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
643
644 /* Only provide non-quiescing support if the host supports it */
Heiko Carstense769ece2013-07-26 15:04:01 +0200645 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && !test_facility(14))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200646 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
647
648 /* No support for conditional-SSKE */
649 if (vcpu->run->s.regs.gprs[reg1] & (PFMF_MR | PFMF_MC))
650 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
651
652 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
653 switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
654 case 0x00000000:
655 end = (start + (1UL << 12)) & ~((1UL << 12) - 1);
656 break;
657 case 0x00001000:
658 end = (start + (1UL << 20)) & ~((1UL << 20) - 1);
659 break;
660 /* We dont support EDAT2
661 case 0x00002000:
662 end = (start + (1UL << 31)) & ~((1UL << 31) - 1);
663 break;*/
664 default:
665 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
666 }
667 while (start < end) {
668 unsigned long useraddr;
669
670 useraddr = gmap_translate(start, vcpu->arch.gmap);
671 if (IS_ERR((void *)useraddr))
672 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
673
674 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
675 if (clear_user((void __user *)useraddr, PAGE_SIZE))
676 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
677 }
678
679 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) {
Dominik Dingel693ffc02014-01-14 18:11:14 +0100680 __skey_check_enable(vcpu);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200681 if (set_guest_storage_key(current->mm, useraddr,
682 vcpu->run->s.regs.gprs[reg1] & PFMF_KEY,
683 vcpu->run->s.regs.gprs[reg1] & PFMF_NQ))
684 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
685 }
686
687 start += PAGE_SIZE;
688 }
689 if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC)
690 vcpu->run->s.regs.gprs[reg2] = end;
691 return 0;
692}
693
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200694static int handle_essa(struct kvm_vcpu *vcpu)
695{
696 /* entries expected to be 1FF */
697 int entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3;
698 unsigned long *cbrlo, cbrle;
699 struct gmap *gmap;
700 int i;
701
702 VCPU_EVENT(vcpu, 5, "cmma release %d pages", entries);
703 gmap = vcpu->arch.gmap;
704 vcpu->stat.instruction_essa++;
Dominik Dingelb31605c2014-03-25 13:47:11 +0100705 if (!kvm_s390_cmma_enabled(vcpu->kvm))
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200706 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
707
708 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
709 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
710
711 if (((vcpu->arch.sie_block->ipb & 0xf0000000) >> 28) > 6)
712 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
713
714 /* Rewind PSW to repeat the ESSA instruction */
715 vcpu->arch.sie_block->gpsw.addr =
716 __rewind_psw(vcpu->arch.sie_block->gpsw, 4);
717 vcpu->arch.sie_block->cbrlo &= PAGE_MASK; /* reset nceo */
718 cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo);
719 down_read(&gmap->mm->mmap_sem);
720 for (i = 0; i < entries; ++i) {
721 cbrle = cbrlo[i];
722 if (unlikely(cbrle & ~PAGE_MASK || cbrle < 2 * PAGE_SIZE))
723 /* invalid entry */
724 break;
725 /* try to free backing */
726 __gmap_zap(cbrle, gmap);
727 }
728 up_read(&gmap->mm->mmap_sem);
729 if (i < entries)
730 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
731 return 0;
732}
733
Cornelia Huck48a3e952012-12-20 15:32:09 +0100734static const intercept_handler_t b9_handlers[256] = {
Heiko Carstens8a2422342014-01-10 14:33:28 +0100735 [0x8a] = handle_ipte_interlock,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100736 [0x8d] = handle_epsw,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100737 [0x8e] = handle_ipte_interlock,
738 [0x8f] = handle_ipte_interlock,
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200739 [0xab] = handle_essa,
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200740 [0xaf] = handle_pfmf,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100741};
742
743int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
744{
745 intercept_handler_t handler;
746
747 /* This is handled just as for the B2 instructions. */
748 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200749 if (handler)
750 return handler(vcpu);
751
Cornelia Huck48a3e952012-12-20 15:32:09 +0100752 return -EOPNOTSUPP;
753}
754
Thomas Huth953ed882013-06-20 17:22:04 +0200755int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu)
756{
757 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
758 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Thomas Huth953ed882013-06-20 17:22:04 +0200759 u32 val = 0;
760 int reg, rc;
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100761 u64 ga;
Thomas Huth953ed882013-06-20 17:22:04 +0200762
763 vcpu->stat.instruction_lctl++;
764
765 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
766 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
767
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100768 ga = kvm_s390_get_base_disp_rs(vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200769
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100770 if (ga & 3)
Thomas Huth953ed882013-06-20 17:22:04 +0200771 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
772
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100773 VCPU_EVENT(vcpu, 5, "lctl r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
774 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200775
776 reg = reg1;
777 do {
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100778 rc = read_guest(vcpu, ga, &val, sizeof(val));
Thomas Huth953ed882013-06-20 17:22:04 +0200779 if (rc)
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100780 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth953ed882013-06-20 17:22:04 +0200781 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
782 vcpu->arch.sie_block->gcr[reg] |= val;
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100783 ga += 4;
Thomas Huth953ed882013-06-20 17:22:04 +0200784 if (reg == reg3)
785 break;
786 reg = (reg + 1) % 16;
787 } while (1);
788
789 return 0;
790}
791
David Hildenbrandaba07502014-01-23 10:47:13 +0100792int kvm_s390_handle_stctl(struct kvm_vcpu *vcpu)
793{
794 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
795 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
796 u64 ga;
797 u32 val;
798 int reg, rc;
799
800 vcpu->stat.instruction_stctl++;
801
802 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
803 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
804
805 ga = kvm_s390_get_base_disp_rs(vcpu);
806
807 if (ga & 3)
808 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
809
810 VCPU_EVENT(vcpu, 5, "stctl r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
811 trace_kvm_s390_handle_stctl(vcpu, 0, reg1, reg3, ga);
812
813 reg = reg1;
814 do {
815 val = vcpu->arch.sie_block->gcr[reg] & 0x00000000fffffffful;
816 rc = write_guest(vcpu, ga, &val, sizeof(val));
817 if (rc)
818 return kvm_s390_inject_prog_cond(vcpu, rc);
819 ga += 4;
820 if (reg == reg3)
821 break;
822 reg = (reg + 1) % 16;
823 } while (1);
824
825 return 0;
826}
827
Thomas Huth953ed882013-06-20 17:22:04 +0200828static int handle_lctlg(struct kvm_vcpu *vcpu)
829{
830 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
831 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100832 u64 ga, val;
Thomas Huth953ed882013-06-20 17:22:04 +0200833 int reg, rc;
834
835 vcpu->stat.instruction_lctlg++;
836
837 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
838 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
839
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100840 ga = kvm_s390_get_base_disp_rsy(vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200841
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100842 if (ga & 7)
Thomas Huth953ed882013-06-20 17:22:04 +0200843 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
844
845 reg = reg1;
846
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100847 VCPU_EVENT(vcpu, 5, "lctlg r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
848 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200849
850 do {
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100851 rc = read_guest(vcpu, ga, &val, sizeof(val));
Thomas Huth953ed882013-06-20 17:22:04 +0200852 if (rc)
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100853 return kvm_s390_inject_prog_cond(vcpu, rc);
854 vcpu->arch.sie_block->gcr[reg] = val;
855 ga += 8;
Thomas Huth953ed882013-06-20 17:22:04 +0200856 if (reg == reg3)
857 break;
858 reg = (reg + 1) % 16;
859 } while (1);
860
861 return 0;
862}
863
David Hildenbrandaba07502014-01-23 10:47:13 +0100864static int handle_stctg(struct kvm_vcpu *vcpu)
865{
866 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
867 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
868 u64 ga, val;
869 int reg, rc;
870
871 vcpu->stat.instruction_stctg++;
872
873 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
874 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
875
876 ga = kvm_s390_get_base_disp_rsy(vcpu);
877
878 if (ga & 7)
879 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
880
881 reg = reg1;
882
883 VCPU_EVENT(vcpu, 5, "stctg r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
884 trace_kvm_s390_handle_stctl(vcpu, 1, reg1, reg3, ga);
885
886 do {
887 val = vcpu->arch.sie_block->gcr[reg];
888 rc = write_guest(vcpu, ga, &val, sizeof(val));
889 if (rc)
890 return kvm_s390_inject_prog_cond(vcpu, rc);
891 ga += 8;
892 if (reg == reg3)
893 break;
894 reg = (reg + 1) % 16;
895 } while (1);
896
897 return 0;
898}
899
Cornelia Huckf379aae2012-12-20 15:32:10 +0100900static const intercept_handler_t eb_handlers[256] = {
Thomas Huth953ed882013-06-20 17:22:04 +0200901 [0x2f] = handle_lctlg,
David Hildenbrandaba07502014-01-23 10:47:13 +0100902 [0x25] = handle_stctg,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100903};
904
Thomas Huth953ed882013-06-20 17:22:04 +0200905int kvm_s390_handle_eb(struct kvm_vcpu *vcpu)
Cornelia Huckf379aae2012-12-20 15:32:10 +0100906{
907 intercept_handler_t handler;
908
Cornelia Huckf379aae2012-12-20 15:32:10 +0100909 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
910 if (handler)
911 return handler(vcpu);
912 return -EOPNOTSUPP;
913}
914
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200915static int handle_tprot(struct kvm_vcpu *vcpu)
916{
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100917 u64 address1, address2;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200918 struct vm_area_struct *vma;
Christian Borntraeger1eddb852011-11-17 11:00:43 +0100919 unsigned long user_address;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200920
921 vcpu->stat.instruction_tprot++;
922
Thomas Huthf9f6bbc2013-06-20 17:22:00 +0200923 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
924 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
925
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100926 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2);
927
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200928 /* we only handle the Linux memory detection case:
929 * access key == 0
930 * guest DAT == off
931 * everything else goes to userspace. */
932 if (address2 & 0xf0)
933 return -EOPNOTSUPP;
934 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
935 return -EOPNOTSUPP;
936
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200937 down_read(&current->mm->mmap_sem);
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100938 user_address = __gmap_translate(address1, vcpu->arch.gmap);
939 if (IS_ERR_VALUE(user_address))
940 goto out_inject;
Christian Borntraeger1eddb852011-11-17 11:00:43 +0100941 vma = find_vma(current->mm, user_address);
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100942 if (!vma)
943 goto out_inject;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200944 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
945 if (!(vma->vm_flags & VM_WRITE) && (vma->vm_flags & VM_READ))
946 vcpu->arch.sie_block->gpsw.mask |= (1ul << 44);
947 if (!(vma->vm_flags & VM_WRITE) && !(vma->vm_flags & VM_READ))
948 vcpu->arch.sie_block->gpsw.mask |= (2ul << 44);
949
950 up_read(&current->mm->mmap_sem);
951 return 0;
Heiko Carstens59a1fa22013-03-05 13:14:42 +0100952
953out_inject:
954 up_read(&current->mm->mmap_sem);
955 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200956}
957
958int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
959{
960 /* For e5xx... instructions we only handle TPROT */
961 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
962 return handle_tprot(vcpu);
963 return -EOPNOTSUPP;
964}
965
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200966static int handle_sckpf(struct kvm_vcpu *vcpu)
967{
968 u32 value;
969
970 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200971 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200972
973 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
974 return kvm_s390_inject_program_int(vcpu,
975 PGM_SPECIFICATION);
976
977 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
978 vcpu->arch.sie_block->todpr = value;
979
980 return 0;
981}
982
Cornelia Huck77975352012-12-20 15:32:06 +0100983static const intercept_handler_t x01_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200984 [0x07] = handle_sckpf,
985};
986
987int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
988{
989 intercept_handler_t handler;
990
991 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
992 if (handler)
993 return handler(vcpu);
994 return -EOPNOTSUPP;
995}