blob: 77191b85ea7af4dd96dc6a1ae819f27faa25233b [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{
David Hildenbrand25ed1672015-05-12 09:49:14 +020036 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030037 ar_t ar;
David Hildenbrand25ed1672015-05-12 09:49:14 +020038 u64 op2, val;
Thomas Huth6a3f95a2013-09-12 10:33:49 +020039
40 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
41 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
42
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030043 op2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020044 if (op2 & 7) /* Operand must be on a doubleword boundary */
45 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030046 rc = read_guest(vcpu, op2, ar, &val, sizeof(val));
Heiko Carstens0e7a3f92014-01-01 16:50:11 +010047 if (rc)
48 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020049
Christian Borntraeger7cbde762015-07-21 12:44:57 +020050 VCPU_EVENT(vcpu, 3, "SCK: setting guest TOD to 0x%llx", val);
David Hildenbrand25ed1672015-05-12 09:49:14 +020051 kvm_s390_set_tod_clock(vcpu->kvm, val);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020052
53 kvm_s390_set_psw_cc(vcpu, 0);
54 return 0;
55}
56
Christian Borntraeger453423d2008-03-25 18:47:29 +010057static int handle_set_prefix(struct kvm_vcpu *vcpu)
58{
Christian Borntraeger453423d2008-03-25 18:47:29 +010059 u64 operand2;
Heiko Carstens665170c2014-01-01 16:47:12 +010060 u32 address;
61 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030062 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +010063
64 vcpu->stat.instruction_spx++;
65
Thomas Huth5087dfa2013-06-20 17:22:01 +020066 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
67 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
68
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030069 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +010070
71 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010072 if (operand2 & 3)
73 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +010074
75 /* get the value */
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030076 rc = read_guest(vcpu, operand2, ar, &address, sizeof(address));
Heiko Carstens665170c2014-01-01 16:47:12 +010077 if (rc)
78 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +010079
Heiko Carstens665170c2014-01-01 16:47:12 +010080 address &= 0x7fffe000u;
Christian Borntraeger453423d2008-03-25 18:47:29 +010081
Heiko Carstens665170c2014-01-01 16:47:12 +010082 /*
83 * Make sure the new value is valid memory. We only need to check the
84 * first page, since address is 8k aligned and memory pieces are always
85 * at least 1MB aligned and have at least a size of 1MB.
86 */
87 if (kvm_is_error_gpa(vcpu->kvm, address))
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010088 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +010089
Christian Borntraeger8d26cf72012-01-11 11:19:32 +010090 kvm_s390_set_prefix(vcpu, address);
Cornelia Huck5786fff2012-07-23 17:20:29 +020091 trace_kvm_s390_handle_prefix(vcpu, 1, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +010092 return 0;
93}
94
95static int handle_store_prefix(struct kvm_vcpu *vcpu)
96{
Christian Borntraeger453423d2008-03-25 18:47:29 +010097 u64 operand2;
98 u32 address;
Heiko Carstensf748f4a2014-01-01 16:52:47 +010099 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300100 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100101
102 vcpu->stat.instruction_stpx++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100103
Thomas Huth5087dfa2013-06-20 17:22:01 +0200104 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
105 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
106
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300107 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100108
109 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100110 if (operand2 & 3)
111 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100112
Michael Muellerfda902c2014-05-13 16:58:30 +0200113 address = kvm_s390_get_prefix(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100114
115 /* get the value */
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300116 rc = write_guest(vcpu, operand2, ar, &address, sizeof(address));
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100117 if (rc)
118 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100119
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200120 VCPU_EVENT(vcpu, 3, "STPX: storing prefix 0x%x into 0x%llx", address, operand2);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200121 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100122 return 0;
123}
124
125static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
126{
Heiko Carstens8b96de02014-01-01 16:53:27 +0100127 u16 vcpu_id = vcpu->vcpu_id;
128 u64 ga;
129 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300130 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100131
132 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100133
Thomas Huth5087dfa2013-06-20 17:22:01 +0200134 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
135 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
136
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300137 ga = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100138
Heiko Carstens8b96de02014-01-01 16:53:27 +0100139 if (ga & 1)
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100140 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100141
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300142 rc = write_guest(vcpu, ga, ar, &vcpu_id, sizeof(vcpu_id));
Heiko Carstens8b96de02014-01-01 16:53:27 +0100143 if (rc)
144 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100145
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200146 VCPU_EVENT(vcpu, 3, "STAP: storing cpu address (%u) to 0x%llx", vcpu_id, ga);
Heiko Carstens8b96de02014-01-01 16:53:27 +0100147 trace_kvm_s390_handle_stap(vcpu, ga);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100148 return 0;
149}
150
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200151static int __skey_check_enable(struct kvm_vcpu *vcpu)
Dominik Dingel693ffc02014-01-14 18:11:14 +0100152{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200153 int rc = 0;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100154 if (!(vcpu->arch.sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)))
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200155 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100156
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200157 rc = s390_enable_skey();
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200158 VCPU_EVENT(vcpu, 3, "%s", "enabling storage keys for guest");
Dominik Dingel693ffc02014-01-14 18:11:14 +0100159 trace_kvm_s390_skey_related_inst(vcpu);
160 vcpu->arch.sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE | ICTL_RRBE);
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200161 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100162}
163
164
Christian Borntraeger453423d2008-03-25 18:47:29 +0100165static int handle_skey(struct kvm_vcpu *vcpu)
166{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200167 int rc = __skey_check_enable(vcpu);
Dominik Dingel693ffc02014-01-14 18:11:14 +0100168
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200169 if (rc)
170 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100171 vcpu->stat.instruction_storage_key++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200172
173 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
174 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
175
Thomas Huth04b41ac2014-11-12 17:13:29 +0100176 kvm_s390_rewind_psw(vcpu, 4);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100177 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
178 return 0;
179}
180
Heiko Carstens8a2422342014-01-10 14:33:28 +0100181static int handle_ipte_interlock(struct kvm_vcpu *vcpu)
182{
Heiko Carstens8a2422342014-01-10 14:33:28 +0100183 vcpu->stat.instruction_ipte_interlock++;
Thomas Huth04b41ac2014-11-12 17:13:29 +0100184 if (psw_bits(vcpu->arch.sie_block->gpsw).p)
Heiko Carstens8a2422342014-01-10 14:33:28 +0100185 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
186 wait_event(vcpu->kvm->arch.ipte_wq, !ipte_lock_held(vcpu));
Thomas Huth04b41ac2014-11-12 17:13:29 +0100187 kvm_s390_rewind_psw(vcpu, 4);
Heiko Carstens8a2422342014-01-10 14:33:28 +0100188 VCPU_EVENT(vcpu, 4, "%s", "retrying ipte interlock operation");
189 return 0;
190}
191
Thomas Huthaca84242013-09-12 10:33:48 +0200192static int handle_test_block(struct kvm_vcpu *vcpu)
193{
Thomas Huthaca84242013-09-12 10:33:48 +0200194 gpa_t addr;
195 int reg2;
196
197 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
198 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
199
200 kvm_s390_get_regs_rre(vcpu, NULL, &reg2);
201 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Huthe45efa22014-03-07 12:14:23 +0100202 addr = kvm_s390_logical_to_effective(vcpu, addr);
Alexander Yarygindd9e5b72015-03-03 14:26:14 +0300203 if (kvm_s390_check_low_addr_prot_real(vcpu, addr))
Thomas Huthe45efa22014-03-07 12:14:23 +0100204 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
Thomas Huthaca84242013-09-12 10:33:48 +0200205 addr = kvm_s390_real_to_abs(vcpu, addr);
206
Heiko Carstensef23e772014-01-01 16:53:49 +0100207 if (kvm_is_error_gpa(vcpu->kvm, addr))
Thomas Huthaca84242013-09-12 10:33:48 +0200208 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
209 /*
210 * We don't expect errors on modern systems, and do not care
211 * about storage keys (yet), so let's just clear the page.
212 */
Heiko Carstensef23e772014-01-01 16:53:49 +0100213 if (kvm_clear_guest(vcpu->kvm, addr, PAGE_SIZE))
Thomas Huthaca84242013-09-12 10:33:48 +0200214 return -EFAULT;
215 kvm_s390_set_psw_cc(vcpu, 0);
216 vcpu->run->s.regs.gprs[0] = 0;
217 return 0;
218}
219
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100220static int handle_tpi(struct kvm_vcpu *vcpu)
221{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100222 struct kvm_s390_interrupt_info *inti;
Heiko Carstens4799b552014-01-01 16:55:48 +0100223 unsigned long len;
224 u32 tpi_data[3];
David Hildenbrand261520d2015-02-04 15:53:42 +0100225 int rc;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100226 u64 addr;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300227 ar_t ar;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100228
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300229 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100230 if (addr & 3)
231 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
David Hildenbrand261520d2015-02-04 15:53:42 +0100232
Thomas Huthf0926692013-10-09 14:15:54 +0200233 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0);
David Hildenbrand261520d2015-02-04 15:53:42 +0100234 if (!inti) {
235 kvm_s390_set_psw_cc(vcpu, 0);
236 return 0;
237 }
238
Heiko Carstens4799b552014-01-01 16:55:48 +0100239 tpi_data[0] = inti->io.subchannel_id << 16 | inti->io.subchannel_nr;
240 tpi_data[1] = inti->io.io_int_parm;
241 tpi_data[2] = inti->io.io_int_word;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100242 if (addr) {
243 /*
244 * Store the two-word I/O interruption code into the
245 * provided area.
246 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100247 len = sizeof(tpi_data) - 4;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300248 rc = write_guest(vcpu, addr, ar, &tpi_data, len);
David Hildenbrand261520d2015-02-04 15:53:42 +0100249 if (rc) {
250 rc = kvm_s390_inject_prog_cond(vcpu, rc);
251 goto reinject_interrupt;
252 }
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);
David Hildenbrand261520d2015-02-04 15:53:42 +0100259 if (write_guest_lc(vcpu, __LC_SUBCHANNEL_ID, &tpi_data, len)) {
260 /* failed writes to the low core are not recoverable */
Heiko Carstens4799b552014-01-01 16:55:48 +0100261 rc = -EFAULT;
David Hildenbrand261520d2015-02-04 15:53:42 +0100262 goto reinject_interrupt;
263 }
Heiko Carstens7c959e82013-03-05 13:14:46 +0100264 }
David Hildenbrand261520d2015-02-04 15:53:42 +0100265
266 /* irq was successfully handed to the guest */
267 kfree(inti);
268 kvm_s390_set_psw_cc(vcpu, 1);
269 return 0;
270reinject_interrupt:
Cornelia Huck2f32d4e2014-01-08 18:07:54 +0100271 /*
272 * If we encounter a problem storing the interruption code, the
273 * instruction is suppressed from the guest's view: reinject the
274 * interrupt.
275 */
David Hildenbrand15462e32015-02-04 15:59:11 +0100276 if (kvm_s390_reinject_io_int(vcpu->kvm, inti)) {
277 kfree(inti);
278 rc = -EFAULT;
279 }
David Hildenbrand261520d2015-02-04 15:53:42 +0100280 /* don't set the cc, a pgm irq was injected or we drop to user space */
Heiko Carstens4799b552014-01-01 16:55:48 +0100281 return rc ? -EFAULT : 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100282}
283
284static int handle_tsch(struct kvm_vcpu *vcpu)
285{
Jens Freimann6d3da242013-07-03 15:18:35 +0200286 struct kvm_s390_interrupt_info *inti = NULL;
287 const u64 isc_mask = 0xffUL << 24; /* all iscs set */
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100288
Jens Freimann6d3da242013-07-03 15:18:35 +0200289 /* a valid schid has at least one bit set */
290 if (vcpu->run->s.regs.gprs[1])
291 inti = kvm_s390_get_io_int(vcpu->kvm, isc_mask,
292 vcpu->run->s.regs.gprs[1]);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100293
294 /*
295 * Prepare exit to userspace.
296 * We indicate whether we dequeued a pending I/O interrupt
297 * so that userspace can re-inject it if the instruction gets
298 * a program check. While this may re-order the pending I/O
299 * interrupts, this is no problem since the priority is kept
300 * intact.
301 */
302 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
303 vcpu->run->s390_tsch.dequeued = !!inti;
304 if (inti) {
305 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
306 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
307 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
308 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
309 }
310 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
311 kfree(inti);
312 return -EREMOTE;
313}
314
Cornelia Huckf379aae2012-12-20 15:32:10 +0100315static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100316{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100317 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100318
Thomas Huth5087dfa2013-06-20 17:22:01 +0200319 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
320 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
321
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100322 if (vcpu->kvm->arch.css_support) {
323 /*
324 * Most I/O instructions will be handled by userspace.
325 * Exceptions are tpi and the interrupt portion of tsch.
326 */
327 if (vcpu->arch.sie_block->ipa == 0xb236)
328 return handle_tpi(vcpu);
329 if (vcpu->arch.sie_block->ipa == 0xb235)
330 return handle_tsch(vcpu);
331 /* Handle in userspace. */
332 return -EOPNOTSUPP;
333 } else {
334 /*
Hendrik Bruecknerb4a96012013-12-13 12:53:42 +0100335 * Set condition code 3 to stop the guest from issuing channel
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100336 * I/O instructions.
337 */
Thomas Huthea828eb2013-07-26 15:04:06 +0200338 kvm_s390_set_psw_cc(vcpu, 3);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100339 return 0;
340 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100341}
342
Christian Borntraeger453423d2008-03-25 18:47:29 +0100343static int handle_stfl(struct kvm_vcpu *vcpu)
344{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100345 int rc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100346 unsigned int fac;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100347
348 vcpu->stat.instruction_stfl++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200349
350 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
351 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
352
Michael Mueller9d8d5782015-02-02 15:42:51 +0100353 /*
354 * We need to shift the lower 32 facility bits (bit 0-31) from a u64
355 * into a u32 memory representation. They will remain bits 0-31.
356 */
Michael Mueller981467c2015-02-24 13:51:04 +0100357 fac = *vcpu->kvm->arch.model.fac->list >> 32;
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100358 rc = write_guest_lc(vcpu, offsetof(struct _lowcore, stfl_fac_list),
Michael Mueller9d8d5782015-02-02 15:42:51 +0100359 &fac, sizeof(fac));
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100360 if (rc)
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100361 return rc;
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200362 VCPU_EVENT(vcpu, 3, "STFL: store facility list 0x%x", fac);
Michael Mueller9d8d5782015-02-02 15:42:51 +0100363 trace_kvm_s390_handle_stfl(vcpu, fac);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100364 return 0;
365}
366
Cornelia Huck48a3e952012-12-20 15:32:09 +0100367#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
368#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
Heiko Carstensd21683e2013-03-25 17:22:49 +0100369#define PSW_ADDR_24 0x0000000000ffffffUL
Cornelia Huck48a3e952012-12-20 15:32:09 +0100370#define PSW_ADDR_31 0x000000007fffffffUL
371
Thomas Hutha3fb5772014-04-17 09:10:40 +0200372int is_valid_psw(psw_t *psw)
373{
Heiko Carstens3736b872013-03-25 17:22:52 +0100374 if (psw->mask & PSW_MASK_UNASSIGNED)
375 return 0;
376 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) {
377 if (psw->addr & ~PSW_ADDR_31)
378 return 0;
379 }
380 if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24))
381 return 0;
382 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA)
383 return 0;
Thomas Hutha3fb5772014-04-17 09:10:40 +0200384 if (psw->addr & 1)
385 return 0;
Heiko Carstens3736b872013-03-25 17:22:52 +0100386 return 1;
387}
388
Cornelia Huck48a3e952012-12-20 15:32:09 +0100389int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
390{
Heiko Carstens3736b872013-03-25 17:22:52 +0100391 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100392 psw_compat_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100393 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100394 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300395 ar_t ar;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100396
Heiko Carstens3736b872013-03-25 17:22:52 +0100397 if (gpsw->mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200398 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
399
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300400 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100401 if (addr & 7)
402 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100403
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300404 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100405 if (rc)
406 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100407 if (!(new_psw.mask & PSW32_MASK_BASE))
408 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens3736b872013-03-25 17:22:52 +0100409 gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32;
410 gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE;
411 gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE;
412 if (!is_valid_psw(gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100413 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100414 return 0;
415}
416
417static int handle_lpswe(struct kvm_vcpu *vcpu)
418{
Cornelia Huck48a3e952012-12-20 15:32:09 +0100419 psw_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100420 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100421 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300422 ar_t ar;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100423
Thomas Huth5087dfa2013-06-20 17:22:01 +0200424 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
425 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
426
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300427 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100428 if (addr & 7)
429 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300430 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100431 if (rc)
432 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens3736b872013-03-25 17:22:52 +0100433 vcpu->arch.sie_block->gpsw = new_psw;
434 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100435 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100436 return 0;
437}
438
Christian Borntraeger453423d2008-03-25 18:47:29 +0100439static int handle_stidp(struct kvm_vcpu *vcpu)
440{
Heiko Carstens7d777d72014-01-01 16:58:16 +0100441 u64 stidp_data = vcpu->arch.stidp_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100442 u64 operand2;
Heiko Carstens7d777d72014-01-01 16:58:16 +0100443 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300444 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100445
446 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100447
Thomas Huth5087dfa2013-06-20 17:22:01 +0200448 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
449 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
450
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300451 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100452
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100453 if (operand2 & 7)
454 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100455
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300456 rc = write_guest(vcpu, operand2, ar, &stidp_data, sizeof(stidp_data));
Heiko Carstens7d777d72014-01-01 16:58:16 +0100457 if (rc)
458 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100459
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200460 VCPU_EVENT(vcpu, 3, "STIDP: store cpu id 0x%llx", stidp_data);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100461 return 0;
462}
463
464static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
465{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100466 int cpus = 0;
467 int n;
468
Jens Freimannff520a62014-02-24 10:11:41 +0100469 cpus = atomic_read(&vcpu->kvm->online_vcpus);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100470
471 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200472 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100473 mem->count = 0;
474 if (mem->count < 8)
475 mem->count++;
476 for (n = mem->count - 1; n > 0 ; n--)
477 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
478
Ekaterina Tumanovab75f4c92015-03-03 09:54:41 +0100479 memset(&mem->vm[0], 0, sizeof(mem->vm[0]));
Christian Borntraeger453423d2008-03-25 18:47:29 +0100480 mem->vm[0].cpus_total = cpus;
481 mem->vm[0].cpus_configured = cpus;
482 mem->vm[0].cpus_standby = 0;
483 mem->vm[0].cpus_reserved = 0;
484 mem->vm[0].caf = 1000;
485 memcpy(mem->vm[0].name, "KVMguest", 8);
486 ASCEBC(mem->vm[0].name, 8);
487 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
488 ASCEBC(mem->vm[0].cpi, 16);
489}
490
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100491static void insert_stsi_usr_data(struct kvm_vcpu *vcpu, u64 addr, ar_t ar,
492 u8 fc, u8 sel1, u16 sel2)
493{
494 vcpu->run->exit_reason = KVM_EXIT_S390_STSI;
495 vcpu->run->s390_stsi.addr = addr;
496 vcpu->run->s390_stsi.ar = ar;
497 vcpu->run->s390_stsi.fc = fc;
498 vcpu->run->s390_stsi.sel1 = sel1;
499 vcpu->run->s390_stsi.sel2 = sel2;
500}
501
Christian Borntraeger453423d2008-03-25 18:47:29 +0100502static int handle_stsi(struct kvm_vcpu *vcpu)
503{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100504 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
505 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
506 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100507 unsigned long mem = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100508 u64 operand2;
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100509 int rc = 0;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300510 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100511
512 vcpu->stat.instruction_stsi++;
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200513 VCPU_EVENT(vcpu, 3, "STSI: fc: %u sel1: %u sel2: %u", fc, sel1, sel2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100514
Thomas Huth5087dfa2013-06-20 17:22:01 +0200515 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
516 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
517
Thomas Huth87d41fb2013-06-20 17:22:05 +0200518 if (fc > 3) {
Thomas Huthea828eb2013-07-26 15:04:06 +0200519 kvm_s390_set_psw_cc(vcpu, 3);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200520 return 0;
521 }
522
523 if (vcpu->run->s.regs.gprs[0] & 0x0fffff00
524 || vcpu->run->s.regs.gprs[1] & 0xffff0000)
525 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
526
527 if (fc == 0) {
528 vcpu->run->s.regs.gprs[0] = 3 << 28;
Thomas Huthea828eb2013-07-26 15:04:06 +0200529 kvm_s390_set_psw_cc(vcpu, 0);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200530 return 0;
531 }
532
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300533 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100534
Thomas Huth87d41fb2013-06-20 17:22:05 +0200535 if (operand2 & 0xfff)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100536 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
537
538 switch (fc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100539 case 1: /* same handling for 1 and 2 */
540 case 2:
541 mem = get_zeroed_page(GFP_KERNEL);
542 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100543 goto out_no_data;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200544 if (stsi((void *) mem, fc, sel1, sel2))
Heiko Carstensc51f0682013-03-25 17:22:54 +0100545 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100546 break;
547 case 3:
548 if (sel1 != 2 || sel2 != 2)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100549 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100550 mem = get_zeroed_page(GFP_KERNEL);
551 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100552 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100553 handle_stsi_3_2_2(vcpu, (void *) mem);
554 break;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100555 }
556
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300557 rc = write_guest(vcpu, operand2, ar, (void *)mem, PAGE_SIZE);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100558 if (rc) {
559 rc = kvm_s390_inject_prog_cond(vcpu, rc);
560 goto out;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100561 }
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100562 if (vcpu->kvm->arch.user_stsi) {
563 insert_stsi_usr_data(vcpu, operand2, ar, fc, sel1, sel2);
564 rc = -EREMOTE;
565 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200566 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100567 free_page(mem);
Thomas Huthea828eb2013-07-26 15:04:06 +0200568 kvm_s390_set_psw_cc(vcpu, 0);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100569 vcpu->run->s.regs.gprs[0] = 0;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100570 return rc;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100571out_no_data:
Thomas Huthea828eb2013-07-26 15:04:06 +0200572 kvm_s390_set_psw_cc(vcpu, 3);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100573out:
Heiko Carstensc51f0682013-03-25 17:22:54 +0100574 free_page(mem);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100575 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100576}
577
Cornelia Huckf379aae2012-12-20 15:32:10 +0100578static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100579 [0x02] = handle_stidp,
Thomas Huth6a3f95a2013-09-12 10:33:49 +0200580 [0x04] = handle_set_clock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100581 [0x10] = handle_set_prefix,
582 [0x11] = handle_store_prefix,
583 [0x12] = handle_store_cpu_address,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100584 [0x21] = handle_ipte_interlock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100585 [0x29] = handle_skey,
586 [0x2a] = handle_skey,
587 [0x2b] = handle_skey,
Thomas Huthaca84242013-09-12 10:33:48 +0200588 [0x2c] = handle_test_block,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100589 [0x30] = handle_io_inst,
590 [0x31] = handle_io_inst,
591 [0x32] = handle_io_inst,
592 [0x33] = handle_io_inst,
593 [0x34] = handle_io_inst,
594 [0x35] = handle_io_inst,
595 [0x36] = handle_io_inst,
596 [0x37] = handle_io_inst,
597 [0x38] = handle_io_inst,
598 [0x39] = handle_io_inst,
599 [0x3a] = handle_io_inst,
600 [0x3b] = handle_io_inst,
601 [0x3c] = handle_io_inst,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100602 [0x50] = handle_ipte_interlock,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100603 [0x5f] = handle_io_inst,
604 [0x74] = handle_io_inst,
605 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100606 [0x7d] = handle_stsi,
607 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100608 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100609};
610
Christian Borntraeger70455a32009-01-22 10:28:29 +0100611int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100612{
613 intercept_handler_t handler;
614
Christian Borntraeger70455a32009-01-22 10:28:29 +0100615 /*
Thomas Huth5087dfa2013-06-20 17:22:01 +0200616 * A lot of B2 instructions are priviledged. Here we check for
617 * the privileged ones, that we can handle in the kernel.
618 * Anything else goes to userspace.
619 */
Cornelia Huckf379aae2012-12-20 15:32:10 +0100620 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200621 if (handler)
622 return handler(vcpu);
623
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100624 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100625}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200626
Cornelia Huck48a3e952012-12-20 15:32:09 +0100627static int handle_epsw(struct kvm_vcpu *vcpu)
628{
629 int reg1, reg2;
630
Thomas Huthaeb87c32013-06-12 13:54:57 +0200631 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100632
633 /* This basically extracts the mask half of the psw. */
Thomas Huth843200e2013-07-26 15:04:05 +0200634 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100635 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
636 if (reg2) {
Thomas Huth843200e2013-07-26 15:04:05 +0200637 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100638 vcpu->run->s.regs.gprs[reg2] |=
Thomas Huth843200e2013-07-26 15:04:05 +0200639 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100640 }
641 return 0;
642}
643
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200644#define PFMF_RESERVED 0xfffc0101UL
645#define PFMF_SK 0x00020000UL
646#define PFMF_CF 0x00010000UL
647#define PFMF_UI 0x00008000UL
648#define PFMF_FSC 0x00007000UL
649#define PFMF_NQ 0x00000800UL
650#define PFMF_MR 0x00000400UL
651#define PFMF_MC 0x00000200UL
652#define PFMF_KEY 0x000000feUL
653
654static int handle_pfmf(struct kvm_vcpu *vcpu)
655{
656 int reg1, reg2;
657 unsigned long start, end;
658
659 vcpu->stat.instruction_pfmf++;
660
661 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
662
663 if (!MACHINE_HAS_PFMF)
664 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
665
666 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200667 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200668
669 if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
670 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
671
672 /* Only provide non-quiescing support if the host supports it */
Heiko Carstense769ece2013-07-26 15:04:01 +0200673 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && !test_facility(14))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200674 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
675
676 /* No support for conditional-SSKE */
677 if (vcpu->run->s.regs.gprs[reg1] & (PFMF_MR | PFMF_MC))
678 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
679
680 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Hutha02689f2014-11-10 15:59:32 +0100681 start = kvm_s390_logical_to_effective(vcpu, start);
Thomas Huthfb34c6032013-09-09 17:58:38 +0200682
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200683 switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
684 case 0x00000000:
685 end = (start + (1UL << 12)) & ~((1UL << 12) - 1);
686 break;
687 case 0x00001000:
688 end = (start + (1UL << 20)) & ~((1UL << 20) - 1);
689 break;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200690 case 0x00002000:
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100691 /* only support 2G frame size if EDAT2 is available and we are
692 not in 24-bit addressing mode */
693 if (!test_kvm_facility(vcpu->kvm, 78) ||
694 psw_bits(vcpu->arch.sie_block->gpsw).eaba == PSW_AMODE_24BIT)
695 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200696 end = (start + (1UL << 31)) & ~((1UL << 31) - 1);
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100697 break;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200698 default:
699 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
700 }
Thomas Hutha02689f2014-11-10 15:59:32 +0100701
702 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
Alexander Yarygindd9e5b72015-03-03 14:26:14 +0300703 if (kvm_s390_check_low_addr_prot_real(vcpu, start))
Thomas Hutha02689f2014-11-10 15:59:32 +0100704 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
705 }
706
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200707 while (start < end) {
Thomas Huthfb34c6032013-09-09 17:58:38 +0200708 unsigned long useraddr, abs_addr;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200709
Thomas Huthfb34c6032013-09-09 17:58:38 +0200710 /* Translate guest address to host address */
711 if ((vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) == 0)
712 abs_addr = kvm_s390_real_to_abs(vcpu, start);
713 else
714 abs_addr = start;
715 useraddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(abs_addr));
716 if (kvm_is_error_hva(useraddr))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200717 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
718
719 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
720 if (clear_user((void __user *)useraddr, PAGE_SIZE))
721 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
722 }
723
724 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) {
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200725 int rc = __skey_check_enable(vcpu);
726
727 if (rc)
728 return rc;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200729 if (set_guest_storage_key(current->mm, useraddr,
730 vcpu->run->s.regs.gprs[reg1] & PFMF_KEY,
731 vcpu->run->s.regs.gprs[reg1] & PFMF_NQ))
732 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
733 }
734
735 start += PAGE_SIZE;
736 }
737 if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC)
738 vcpu->run->s.regs.gprs[reg2] = end;
739 return 0;
740}
741
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200742static int handle_essa(struct kvm_vcpu *vcpu)
743{
744 /* entries expected to be 1FF */
745 int entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3;
746 unsigned long *cbrlo, cbrle;
747 struct gmap *gmap;
748 int i;
749
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200750 VCPU_EVENT(vcpu, 4, "ESSA: release %d pages", entries);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200751 gmap = vcpu->arch.gmap;
752 vcpu->stat.instruction_essa++;
Dominik Dingele6db1d62015-05-07 15:41:57 +0200753 if (!vcpu->kvm->arch.use_cmma)
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200754 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
755
756 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
757 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
758
759 if (((vcpu->arch.sie_block->ipb & 0xf0000000) >> 28) > 6)
760 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
761
762 /* Rewind PSW to repeat the ESSA instruction */
Thomas Huth04b41ac2014-11-12 17:13:29 +0100763 kvm_s390_rewind_psw(vcpu, 4);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200764 vcpu->arch.sie_block->cbrlo &= PAGE_MASK; /* reset nceo */
765 cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo);
766 down_read(&gmap->mm->mmap_sem);
767 for (i = 0; i < entries; ++i) {
768 cbrle = cbrlo[i];
769 if (unlikely(cbrle & ~PAGE_MASK || cbrle < 2 * PAGE_SIZE))
770 /* invalid entry */
771 break;
772 /* try to free backing */
Martin Schwidefsky6e0a0432014-04-29 09:34:41 +0200773 __gmap_zap(gmap, cbrle);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200774 }
775 up_read(&gmap->mm->mmap_sem);
776 if (i < entries)
777 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
778 return 0;
779}
780
Cornelia Huck48a3e952012-12-20 15:32:09 +0100781static const intercept_handler_t b9_handlers[256] = {
Heiko Carstens8a2422342014-01-10 14:33:28 +0100782 [0x8a] = handle_ipte_interlock,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100783 [0x8d] = handle_epsw,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100784 [0x8e] = handle_ipte_interlock,
785 [0x8f] = handle_ipte_interlock,
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200786 [0xab] = handle_essa,
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200787 [0xaf] = handle_pfmf,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100788};
789
790int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
791{
792 intercept_handler_t handler;
793
794 /* This is handled just as for the B2 instructions. */
795 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200796 if (handler)
797 return handler(vcpu);
798
Cornelia Huck48a3e952012-12-20 15:32:09 +0100799 return -EOPNOTSUPP;
800}
801
Thomas Huth953ed882013-06-20 17:22:04 +0200802int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu)
803{
804 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
805 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100806 int reg, rc, nr_regs;
807 u32 ctl_array[16];
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100808 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300809 ar_t ar;
Thomas Huth953ed882013-06-20 17:22:04 +0200810
811 vcpu->stat.instruction_lctl++;
812
813 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
814 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
815
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300816 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
Thomas Huth953ed882013-06-20 17:22:04 +0200817
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100818 if (ga & 3)
Thomas Huth953ed882013-06-20 17:22:04 +0200819 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
820
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200821 VCPU_EVENT(vcpu, 4, "LCTL: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100822 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200823
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100824 nr_regs = ((reg3 - reg1) & 0xf) + 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300825 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100826 if (rc)
827 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth953ed882013-06-20 17:22:04 +0200828 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100829 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +0200830 do {
Thomas Huth953ed882013-06-20 17:22:04 +0200831 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100832 vcpu->arch.sie_block->gcr[reg] |= ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +0200833 if (reg == reg3)
834 break;
835 reg = (reg + 1) % 16;
836 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +0100837 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200838 return 0;
839}
840
David Hildenbrandaba07502014-01-23 10:47:13 +0100841int kvm_s390_handle_stctl(struct kvm_vcpu *vcpu)
842{
843 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
844 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100845 int reg, rc, nr_regs;
846 u32 ctl_array[16];
David Hildenbrandaba07502014-01-23 10:47:13 +0100847 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300848 ar_t ar;
David Hildenbrandaba07502014-01-23 10:47:13 +0100849
850 vcpu->stat.instruction_stctl++;
851
852 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
853 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
854
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300855 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
David Hildenbrandaba07502014-01-23 10:47:13 +0100856
857 if (ga & 3)
858 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
859
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200860 VCPU_EVENT(vcpu, 4, "STCTL r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
David Hildenbrandaba07502014-01-23 10:47:13 +0100861 trace_kvm_s390_handle_stctl(vcpu, 0, reg1, reg3, ga);
862
863 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100864 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100865 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100866 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +0100867 if (reg == reg3)
868 break;
869 reg = (reg + 1) % 16;
870 } while (1);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300871 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100872 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100873}
874
Thomas Huth953ed882013-06-20 17:22:04 +0200875static int handle_lctlg(struct kvm_vcpu *vcpu)
876{
877 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
878 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100879 int reg, rc, nr_regs;
880 u64 ctl_array[16];
881 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300882 ar_t ar;
Thomas Huth953ed882013-06-20 17:22:04 +0200883
884 vcpu->stat.instruction_lctlg++;
885
886 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
887 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
888
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300889 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
Thomas Huth953ed882013-06-20 17:22:04 +0200890
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100891 if (ga & 7)
Thomas Huth953ed882013-06-20 17:22:04 +0200892 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
893
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200894 VCPU_EVENT(vcpu, 4, "LCTLG: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100895 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200896
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100897 nr_regs = ((reg3 - reg1) & 0xf) + 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300898 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100899 if (rc)
900 return kvm_s390_inject_prog_cond(vcpu, rc);
901 reg = reg1;
902 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +0200903 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100904 vcpu->arch.sie_block->gcr[reg] = ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +0200905 if (reg == reg3)
906 break;
907 reg = (reg + 1) % 16;
908 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +0100909 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200910 return 0;
911}
912
David Hildenbrandaba07502014-01-23 10:47:13 +0100913static int handle_stctg(struct kvm_vcpu *vcpu)
914{
915 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
916 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100917 int reg, rc, nr_regs;
918 u64 ctl_array[16];
919 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300920 ar_t ar;
David Hildenbrandaba07502014-01-23 10:47:13 +0100921
922 vcpu->stat.instruction_stctg++;
923
924 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
925 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
926
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300927 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
David Hildenbrandaba07502014-01-23 10:47:13 +0100928
929 if (ga & 7)
930 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
931
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200932 VCPU_EVENT(vcpu, 4, "STCTG r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
David Hildenbrandaba07502014-01-23 10:47:13 +0100933 trace_kvm_s390_handle_stctl(vcpu, 1, reg1, reg3, ga);
934
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100935 reg = reg1;
936 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100937 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100938 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +0100939 if (reg == reg3)
940 break;
941 reg = (reg + 1) % 16;
942 } while (1);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300943 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100944 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100945}
946
Cornelia Huckf379aae2012-12-20 15:32:10 +0100947static const intercept_handler_t eb_handlers[256] = {
Thomas Huth953ed882013-06-20 17:22:04 +0200948 [0x2f] = handle_lctlg,
David Hildenbrandaba07502014-01-23 10:47:13 +0100949 [0x25] = handle_stctg,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100950};
951
Thomas Huth953ed882013-06-20 17:22:04 +0200952int kvm_s390_handle_eb(struct kvm_vcpu *vcpu)
Cornelia Huckf379aae2012-12-20 15:32:10 +0100953{
954 intercept_handler_t handler;
955
Cornelia Huckf379aae2012-12-20 15:32:10 +0100956 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
957 if (handler)
958 return handler(vcpu);
959 return -EOPNOTSUPP;
960}
961
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200962static int handle_tprot(struct kvm_vcpu *vcpu)
963{
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100964 u64 address1, address2;
Thomas Hutha0465f92014-02-04 14:48:07 +0100965 unsigned long hva, gpa;
966 int ret = 0, cc = 0;
967 bool writable;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300968 ar_t ar;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200969
970 vcpu->stat.instruction_tprot++;
971
Thomas Huthf9f6bbc2013-06-20 17:22:00 +0200972 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
973 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
974
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300975 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2, &ar, NULL);
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100976
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200977 /* we only handle the Linux memory detection case:
978 * access key == 0
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200979 * everything else goes to userspace. */
980 if (address2 & 0xf0)
981 return -EOPNOTSUPP;
982 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
Thomas Hutha0465f92014-02-04 14:48:07 +0100983 ipte_lock(vcpu);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300984 ret = guest_translate_address(vcpu, address1, ar, &gpa, 1);
Thomas Hutha0465f92014-02-04 14:48:07 +0100985 if (ret == PGM_PROTECTION) {
986 /* Write protected? Try again with read-only... */
987 cc = 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300988 ret = guest_translate_address(vcpu, address1, ar, &gpa, 0);
Thomas Hutha0465f92014-02-04 14:48:07 +0100989 }
990 if (ret) {
991 if (ret == PGM_ADDRESSING || ret == PGM_TRANSLATION_SPEC) {
992 ret = kvm_s390_inject_program_int(vcpu, ret);
993 } else if (ret > 0) {
994 /* Translation not available */
995 kvm_s390_set_psw_cc(vcpu, 3);
996 ret = 0;
997 }
998 goto out_unlock;
999 }
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001000
Thomas Hutha0465f92014-02-04 14:48:07 +01001001 hva = gfn_to_hva_prot(vcpu->kvm, gpa_to_gfn(gpa), &writable);
1002 if (kvm_is_error_hva(hva)) {
1003 ret = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
1004 } else {
1005 if (!writable)
1006 cc = 1; /* Write not permitted ==> read-only */
1007 kvm_s390_set_psw_cc(vcpu, cc);
1008 /* Note: CC2 only occurs for storage keys (not supported yet) */
1009 }
1010out_unlock:
1011 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
1012 ipte_unlock(vcpu);
1013 return ret;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001014}
1015
1016int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
1017{
1018 /* For e5xx... instructions we only handle TPROT */
1019 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
1020 return handle_tprot(vcpu);
1021 return -EOPNOTSUPP;
1022}
1023
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001024static int handle_sckpf(struct kvm_vcpu *vcpu)
1025{
1026 u32 value;
1027
1028 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +02001029 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001030
1031 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
1032 return kvm_s390_inject_program_int(vcpu,
1033 PGM_SPECIFICATION);
1034
1035 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
1036 vcpu->arch.sie_block->todpr = value;
1037
1038 return 0;
1039}
1040
Cornelia Huck77975352012-12-20 15:32:06 +01001041static const intercept_handler_t x01_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001042 [0x07] = handle_sckpf,
1043};
1044
1045int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
1046{
1047 intercept_handler_t handler;
1048
1049 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
1050 if (handler)
1051 return handler(vcpu);
1052 return -EOPNOTSUPP;
1053}