blob: 5e4658d20c7708b363eafe9fb00f7e6cb147f090 [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;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030039 ar_t ar;
Thomas Huth6a3f95a2013-09-12 10:33:49 +020040 u64 op2;
Thomas Huth6a3f95a2013-09-12 10:33:49 +020041
42 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
43 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
44
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030045 op2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020046 if (op2 & 7) /* Operand must be on a doubleword boundary */
47 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030048 rc = read_guest(vcpu, op2, ar, &val, sizeof(val));
Heiko Carstens0e7a3f92014-01-01 16:50:11 +010049 if (rc)
50 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020051
52 if (store_tod_clock(&hostclk)) {
53 kvm_s390_set_psw_cc(vcpu, 3);
54 return 0;
55 }
56 val = (val - hostclk) & ~0x3fUL;
57
58 mutex_lock(&vcpu->kvm->lock);
59 kvm_for_each_vcpu(i, cpup, vcpu->kvm)
60 cpup->arch.sie_block->epoch = val;
61 mutex_unlock(&vcpu->kvm->lock);
62
63 kvm_s390_set_psw_cc(vcpu, 0);
64 return 0;
65}
66
Christian Borntraeger453423d2008-03-25 18:47:29 +010067static int handle_set_prefix(struct kvm_vcpu *vcpu)
68{
Christian Borntraeger453423d2008-03-25 18:47:29 +010069 u64 operand2;
Heiko Carstens665170c2014-01-01 16:47:12 +010070 u32 address;
71 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030072 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +010073
74 vcpu->stat.instruction_spx++;
75
Thomas Huth5087dfa2013-06-20 17:22:01 +020076 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
77 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
78
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030079 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +010080
81 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010082 if (operand2 & 3)
83 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +010084
85 /* get the value */
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030086 rc = read_guest(vcpu, operand2, ar, &address, sizeof(address));
Heiko Carstens665170c2014-01-01 16:47:12 +010087 if (rc)
88 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +010089
Heiko Carstens665170c2014-01-01 16:47:12 +010090 address &= 0x7fffe000u;
Christian Borntraeger453423d2008-03-25 18:47:29 +010091
Heiko Carstens665170c2014-01-01 16:47:12 +010092 /*
93 * Make sure the new value is valid memory. We only need to check the
94 * first page, since address is 8k aligned and memory pieces are always
95 * at least 1MB aligned and have at least a size of 1MB.
96 */
97 if (kvm_is_error_gpa(vcpu->kvm, address))
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010098 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +010099
Christian Borntraeger8d26cf72012-01-11 11:19:32 +0100100 kvm_s390_set_prefix(vcpu, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100101
102 VCPU_EVENT(vcpu, 5, "setting prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200103 trace_kvm_s390_handle_prefix(vcpu, 1, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100104 return 0;
105}
106
107static int handle_store_prefix(struct kvm_vcpu *vcpu)
108{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100109 u64 operand2;
110 u32 address;
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100111 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300112 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100113
114 vcpu->stat.instruction_stpx++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100115
Thomas Huth5087dfa2013-06-20 17:22:01 +0200116 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
117 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
118
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300119 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100120
121 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100122 if (operand2 & 3)
123 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100124
Michael Muellerfda902c2014-05-13 16:58:30 +0200125 address = kvm_s390_get_prefix(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100126
127 /* get the value */
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300128 rc = write_guest(vcpu, operand2, ar, &address, sizeof(address));
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100129 if (rc)
130 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100131
132 VCPU_EVENT(vcpu, 5, "storing prefix to %x", address);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200133 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100134 return 0;
135}
136
137static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
138{
Heiko Carstens8b96de02014-01-01 16:53:27 +0100139 u16 vcpu_id = vcpu->vcpu_id;
140 u64 ga;
141 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300142 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100143
144 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100145
Thomas Huth5087dfa2013-06-20 17:22:01 +0200146 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
147 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
148
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300149 ga = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100150
Heiko Carstens8b96de02014-01-01 16:53:27 +0100151 if (ga & 1)
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100152 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100153
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300154 rc = write_guest(vcpu, ga, ar, &vcpu_id, sizeof(vcpu_id));
Heiko Carstens8b96de02014-01-01 16:53:27 +0100155 if (rc)
156 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100157
Heiko Carstens8b96de02014-01-01 16:53:27 +0100158 VCPU_EVENT(vcpu, 5, "storing cpu address to %llx", ga);
159 trace_kvm_s390_handle_stap(vcpu, ga);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100160 return 0;
161}
162
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200163static int __skey_check_enable(struct kvm_vcpu *vcpu)
Dominik Dingel693ffc02014-01-14 18:11:14 +0100164{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200165 int rc = 0;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100166 if (!(vcpu->arch.sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)))
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200167 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100168
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200169 rc = s390_enable_skey();
Dominik Dingel693ffc02014-01-14 18:11:14 +0100170 trace_kvm_s390_skey_related_inst(vcpu);
171 vcpu->arch.sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE | ICTL_RRBE);
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200172 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100173}
174
175
Christian Borntraeger453423d2008-03-25 18:47:29 +0100176static int handle_skey(struct kvm_vcpu *vcpu)
177{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200178 int rc = __skey_check_enable(vcpu);
Dominik Dingel693ffc02014-01-14 18:11:14 +0100179
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200180 if (rc)
181 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100182 vcpu->stat.instruction_storage_key++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200183
184 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
185 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
186
Thomas Huth04b41ac2014-11-12 17:13:29 +0100187 kvm_s390_rewind_psw(vcpu, 4);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100188 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
189 return 0;
190}
191
Heiko Carstens8a2422342014-01-10 14:33:28 +0100192static int handle_ipte_interlock(struct kvm_vcpu *vcpu)
193{
Heiko Carstens8a2422342014-01-10 14:33:28 +0100194 vcpu->stat.instruction_ipte_interlock++;
Thomas Huth04b41ac2014-11-12 17:13:29 +0100195 if (psw_bits(vcpu->arch.sie_block->gpsw).p)
Heiko Carstens8a2422342014-01-10 14:33:28 +0100196 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
197 wait_event(vcpu->kvm->arch.ipte_wq, !ipte_lock_held(vcpu));
Thomas Huth04b41ac2014-11-12 17:13:29 +0100198 kvm_s390_rewind_psw(vcpu, 4);
Heiko Carstens8a2422342014-01-10 14:33:28 +0100199 VCPU_EVENT(vcpu, 4, "%s", "retrying ipte interlock operation");
200 return 0;
201}
202
Thomas Huthaca84242013-09-12 10:33:48 +0200203static int handle_test_block(struct kvm_vcpu *vcpu)
204{
Thomas Huthaca84242013-09-12 10:33:48 +0200205 gpa_t addr;
206 int reg2;
207
208 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
209 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
210
211 kvm_s390_get_regs_rre(vcpu, NULL, &reg2);
212 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Huthe45efa22014-03-07 12:14:23 +0100213 addr = kvm_s390_logical_to_effective(vcpu, addr);
Alexander Yarygindd9e5b72015-03-03 14:26:14 +0300214 if (kvm_s390_check_low_addr_prot_real(vcpu, addr))
Thomas Huthe45efa22014-03-07 12:14:23 +0100215 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
Thomas Huthaca84242013-09-12 10:33:48 +0200216 addr = kvm_s390_real_to_abs(vcpu, addr);
217
Heiko Carstensef23e772014-01-01 16:53:49 +0100218 if (kvm_is_error_gpa(vcpu->kvm, addr))
Thomas Huthaca84242013-09-12 10:33:48 +0200219 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
220 /*
221 * We don't expect errors on modern systems, and do not care
222 * about storage keys (yet), so let's just clear the page.
223 */
Heiko Carstensef23e772014-01-01 16:53:49 +0100224 if (kvm_clear_guest(vcpu->kvm, addr, PAGE_SIZE))
Thomas Huthaca84242013-09-12 10:33:48 +0200225 return -EFAULT;
226 kvm_s390_set_psw_cc(vcpu, 0);
227 vcpu->run->s.regs.gprs[0] = 0;
228 return 0;
229}
230
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100231static int handle_tpi(struct kvm_vcpu *vcpu)
232{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100233 struct kvm_s390_interrupt_info *inti;
Heiko Carstens4799b552014-01-01 16:55:48 +0100234 unsigned long len;
235 u32 tpi_data[3];
David Hildenbrand261520d2015-02-04 15:53:42 +0100236 int rc;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100237 u64 addr;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300238 ar_t ar;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100239
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300240 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100241 if (addr & 3)
242 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
David Hildenbrand261520d2015-02-04 15:53:42 +0100243
Thomas Huthf0926692013-10-09 14:15:54 +0200244 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0);
David Hildenbrand261520d2015-02-04 15:53:42 +0100245 if (!inti) {
246 kvm_s390_set_psw_cc(vcpu, 0);
247 return 0;
248 }
249
Heiko Carstens4799b552014-01-01 16:55:48 +0100250 tpi_data[0] = inti->io.subchannel_id << 16 | inti->io.subchannel_nr;
251 tpi_data[1] = inti->io.io_int_parm;
252 tpi_data[2] = inti->io.io_int_word;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100253 if (addr) {
254 /*
255 * Store the two-word I/O interruption code into the
256 * provided area.
257 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100258 len = sizeof(tpi_data) - 4;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300259 rc = write_guest(vcpu, addr, ar, &tpi_data, len);
David Hildenbrand261520d2015-02-04 15:53:42 +0100260 if (rc) {
261 rc = kvm_s390_inject_prog_cond(vcpu, rc);
262 goto reinject_interrupt;
263 }
Heiko Carstens7c959e82013-03-05 13:14:46 +0100264 } else {
265 /*
266 * Store the three-word I/O interruption code into
267 * the appropriate lowcore area.
268 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100269 len = sizeof(tpi_data);
David Hildenbrand261520d2015-02-04 15:53:42 +0100270 if (write_guest_lc(vcpu, __LC_SUBCHANNEL_ID, &tpi_data, len)) {
271 /* failed writes to the low core are not recoverable */
Heiko Carstens4799b552014-01-01 16:55:48 +0100272 rc = -EFAULT;
David Hildenbrand261520d2015-02-04 15:53:42 +0100273 goto reinject_interrupt;
274 }
Heiko Carstens7c959e82013-03-05 13:14:46 +0100275 }
David Hildenbrand261520d2015-02-04 15:53:42 +0100276
277 /* irq was successfully handed to the guest */
278 kfree(inti);
279 kvm_s390_set_psw_cc(vcpu, 1);
280 return 0;
281reinject_interrupt:
Cornelia Huck2f32d4e2014-01-08 18:07:54 +0100282 /*
283 * If we encounter a problem storing the interruption code, the
284 * instruction is suppressed from the guest's view: reinject the
285 * interrupt.
286 */
David Hildenbrand15462e32015-02-04 15:59:11 +0100287 if (kvm_s390_reinject_io_int(vcpu->kvm, inti)) {
288 kfree(inti);
289 rc = -EFAULT;
290 }
David Hildenbrand261520d2015-02-04 15:53:42 +0100291 /* don't set the cc, a pgm irq was injected or we drop to user space */
Heiko Carstens4799b552014-01-01 16:55:48 +0100292 return rc ? -EFAULT : 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100293}
294
295static int handle_tsch(struct kvm_vcpu *vcpu)
296{
297 struct kvm_s390_interrupt_info *inti;
298
299 inti = kvm_s390_get_io_int(vcpu->kvm, 0,
300 vcpu->run->s.regs.gprs[1]);
301
302 /*
303 * Prepare exit to userspace.
304 * We indicate whether we dequeued a pending I/O interrupt
305 * so that userspace can re-inject it if the instruction gets
306 * a program check. While this may re-order the pending I/O
307 * interrupts, this is no problem since the priority is kept
308 * intact.
309 */
310 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
311 vcpu->run->s390_tsch.dequeued = !!inti;
312 if (inti) {
313 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
314 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
315 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
316 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
317 }
318 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
319 kfree(inti);
320 return -EREMOTE;
321}
322
Cornelia Huckf379aae2012-12-20 15:32:10 +0100323static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100324{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100325 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100326
Thomas Huth5087dfa2013-06-20 17:22:01 +0200327 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
328 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
329
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100330 if (vcpu->kvm->arch.css_support) {
331 /*
332 * Most I/O instructions will be handled by userspace.
333 * Exceptions are tpi and the interrupt portion of tsch.
334 */
335 if (vcpu->arch.sie_block->ipa == 0xb236)
336 return handle_tpi(vcpu);
337 if (vcpu->arch.sie_block->ipa == 0xb235)
338 return handle_tsch(vcpu);
339 /* Handle in userspace. */
340 return -EOPNOTSUPP;
341 } else {
342 /*
Hendrik Bruecknerb4a96012013-12-13 12:53:42 +0100343 * Set condition code 3 to stop the guest from issuing channel
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100344 * I/O instructions.
345 */
Thomas Huthea828eb2013-07-26 15:04:06 +0200346 kvm_s390_set_psw_cc(vcpu, 3);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100347 return 0;
348 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100349}
350
Christian Borntraeger453423d2008-03-25 18:47:29 +0100351static int handle_stfl(struct kvm_vcpu *vcpu)
352{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100353 int rc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100354 unsigned int fac;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100355
356 vcpu->stat.instruction_stfl++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200357
358 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
359 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
360
Michael Mueller9d8d5782015-02-02 15:42:51 +0100361 /*
362 * We need to shift the lower 32 facility bits (bit 0-31) from a u64
363 * into a u32 memory representation. They will remain bits 0-31.
364 */
Michael Mueller981467c2015-02-24 13:51:04 +0100365 fac = *vcpu->kvm->arch.model.fac->list >> 32;
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100366 rc = write_guest_lc(vcpu, offsetof(struct _lowcore, stfl_fac_list),
Michael Mueller9d8d5782015-02-02 15:42:51 +0100367 &fac, sizeof(fac));
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100368 if (rc)
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100369 return rc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100370 VCPU_EVENT(vcpu, 5, "store facility list value %x", fac);
371 trace_kvm_s390_handle_stfl(vcpu, fac);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100372 return 0;
373}
374
Cornelia Huck48a3e952012-12-20 15:32:09 +0100375#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
376#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
Heiko Carstensd21683e2013-03-25 17:22:49 +0100377#define PSW_ADDR_24 0x0000000000ffffffUL
Cornelia Huck48a3e952012-12-20 15:32:09 +0100378#define PSW_ADDR_31 0x000000007fffffffUL
379
Thomas Hutha3fb5772014-04-17 09:10:40 +0200380int is_valid_psw(psw_t *psw)
381{
Heiko Carstens3736b872013-03-25 17:22:52 +0100382 if (psw->mask & PSW_MASK_UNASSIGNED)
383 return 0;
384 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) {
385 if (psw->addr & ~PSW_ADDR_31)
386 return 0;
387 }
388 if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24))
389 return 0;
390 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA)
391 return 0;
Thomas Hutha3fb5772014-04-17 09:10:40 +0200392 if (psw->addr & 1)
393 return 0;
Heiko Carstens3736b872013-03-25 17:22:52 +0100394 return 1;
395}
396
Cornelia Huck48a3e952012-12-20 15:32:09 +0100397int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
398{
Heiko Carstens3736b872013-03-25 17:22:52 +0100399 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100400 psw_compat_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100401 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100402 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300403 ar_t ar;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100404
Heiko Carstens3736b872013-03-25 17:22:52 +0100405 if (gpsw->mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200406 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
407
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300408 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100409 if (addr & 7)
410 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100411
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300412 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100413 if (rc)
414 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100415 if (!(new_psw.mask & PSW32_MASK_BASE))
416 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens3736b872013-03-25 17:22:52 +0100417 gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32;
418 gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE;
419 gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE;
420 if (!is_valid_psw(gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100421 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100422 return 0;
423}
424
425static int handle_lpswe(struct kvm_vcpu *vcpu)
426{
Cornelia Huck48a3e952012-12-20 15:32:09 +0100427 psw_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100428 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100429 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300430 ar_t ar;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100431
Thomas Huth5087dfa2013-06-20 17:22:01 +0200432 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
433 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
434
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300435 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100436 if (addr & 7)
437 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300438 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100439 if (rc)
440 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens3736b872013-03-25 17:22:52 +0100441 vcpu->arch.sie_block->gpsw = new_psw;
442 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100443 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100444 return 0;
445}
446
Christian Borntraeger453423d2008-03-25 18:47:29 +0100447static int handle_stidp(struct kvm_vcpu *vcpu)
448{
Heiko Carstens7d777d72014-01-01 16:58:16 +0100449 u64 stidp_data = vcpu->arch.stidp_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100450 u64 operand2;
Heiko Carstens7d777d72014-01-01 16:58:16 +0100451 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300452 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100453
454 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100455
Thomas Huth5087dfa2013-06-20 17:22:01 +0200456 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
457 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
458
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300459 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100460
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100461 if (operand2 & 7)
462 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100463
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300464 rc = write_guest(vcpu, operand2, ar, &stidp_data, sizeof(stidp_data));
Heiko Carstens7d777d72014-01-01 16:58:16 +0100465 if (rc)
466 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100467
468 VCPU_EVENT(vcpu, 5, "%s", "store cpu id");
Christian Borntraeger453423d2008-03-25 18:47:29 +0100469 return 0;
470}
471
472static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
473{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100474 int cpus = 0;
475 int n;
476
Jens Freimannff520a62014-02-24 10:11:41 +0100477 cpus = atomic_read(&vcpu->kvm->online_vcpus);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100478
479 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200480 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100481 mem->count = 0;
482 if (mem->count < 8)
483 mem->count++;
484 for (n = mem->count - 1; n > 0 ; n--)
485 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
486
Ekaterina Tumanovab75f4c92015-03-03 09:54:41 +0100487 memset(&mem->vm[0], 0, sizeof(mem->vm[0]));
Christian Borntraeger453423d2008-03-25 18:47:29 +0100488 mem->vm[0].cpus_total = cpus;
489 mem->vm[0].cpus_configured = cpus;
490 mem->vm[0].cpus_standby = 0;
491 mem->vm[0].cpus_reserved = 0;
492 mem->vm[0].caf = 1000;
493 memcpy(mem->vm[0].name, "KVMguest", 8);
494 ASCEBC(mem->vm[0].name, 8);
495 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
496 ASCEBC(mem->vm[0].cpi, 16);
497}
498
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100499static void insert_stsi_usr_data(struct kvm_vcpu *vcpu, u64 addr, ar_t ar,
500 u8 fc, u8 sel1, u16 sel2)
501{
502 vcpu->run->exit_reason = KVM_EXIT_S390_STSI;
503 vcpu->run->s390_stsi.addr = addr;
504 vcpu->run->s390_stsi.ar = ar;
505 vcpu->run->s390_stsi.fc = fc;
506 vcpu->run->s390_stsi.sel1 = sel1;
507 vcpu->run->s390_stsi.sel2 = sel2;
508}
509
Christian Borntraeger453423d2008-03-25 18:47:29 +0100510static int handle_stsi(struct kvm_vcpu *vcpu)
511{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100512 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
513 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
514 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100515 unsigned long mem = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100516 u64 operand2;
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100517 int rc = 0;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300518 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100519
520 vcpu->stat.instruction_stsi++;
521 VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
522
Thomas Huth5087dfa2013-06-20 17:22:01 +0200523 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
524 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
525
Thomas Huth87d41fb2013-06-20 17:22:05 +0200526 if (fc > 3) {
Thomas Huthea828eb2013-07-26 15:04:06 +0200527 kvm_s390_set_psw_cc(vcpu, 3);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200528 return 0;
529 }
530
531 if (vcpu->run->s.regs.gprs[0] & 0x0fffff00
532 || vcpu->run->s.regs.gprs[1] & 0xffff0000)
533 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
534
535 if (fc == 0) {
536 vcpu->run->s.regs.gprs[0] = 3 << 28;
Thomas Huthea828eb2013-07-26 15:04:06 +0200537 kvm_s390_set_psw_cc(vcpu, 0);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200538 return 0;
539 }
540
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300541 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100542
Thomas Huth87d41fb2013-06-20 17:22:05 +0200543 if (operand2 & 0xfff)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100544 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
545
546 switch (fc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100547 case 1: /* same handling for 1 and 2 */
548 case 2:
549 mem = get_zeroed_page(GFP_KERNEL);
550 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100551 goto out_no_data;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200552 if (stsi((void *) mem, fc, sel1, sel2))
Heiko Carstensc51f0682013-03-25 17:22:54 +0100553 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100554 break;
555 case 3:
556 if (sel1 != 2 || sel2 != 2)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100557 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100558 mem = get_zeroed_page(GFP_KERNEL);
559 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100560 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100561 handle_stsi_3_2_2(vcpu, (void *) mem);
562 break;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100563 }
564
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300565 rc = write_guest(vcpu, operand2, ar, (void *)mem, PAGE_SIZE);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100566 if (rc) {
567 rc = kvm_s390_inject_prog_cond(vcpu, rc);
568 goto out;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100569 }
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100570 if (vcpu->kvm->arch.user_stsi) {
571 insert_stsi_usr_data(vcpu, operand2, ar, fc, sel1, sel2);
572 rc = -EREMOTE;
573 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200574 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100575 free_page(mem);
Thomas Huthea828eb2013-07-26 15:04:06 +0200576 kvm_s390_set_psw_cc(vcpu, 0);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100577 vcpu->run->s.regs.gprs[0] = 0;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100578 return rc;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100579out_no_data:
Thomas Huthea828eb2013-07-26 15:04:06 +0200580 kvm_s390_set_psw_cc(vcpu, 3);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100581out:
Heiko Carstensc51f0682013-03-25 17:22:54 +0100582 free_page(mem);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100583 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100584}
585
Cornelia Huckf379aae2012-12-20 15:32:10 +0100586static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100587 [0x02] = handle_stidp,
Thomas Huth6a3f95a2013-09-12 10:33:49 +0200588 [0x04] = handle_set_clock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100589 [0x10] = handle_set_prefix,
590 [0x11] = handle_store_prefix,
591 [0x12] = handle_store_cpu_address,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100592 [0x21] = handle_ipte_interlock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100593 [0x29] = handle_skey,
594 [0x2a] = handle_skey,
595 [0x2b] = handle_skey,
Thomas Huthaca84242013-09-12 10:33:48 +0200596 [0x2c] = handle_test_block,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100597 [0x30] = handle_io_inst,
598 [0x31] = handle_io_inst,
599 [0x32] = handle_io_inst,
600 [0x33] = handle_io_inst,
601 [0x34] = handle_io_inst,
602 [0x35] = handle_io_inst,
603 [0x36] = handle_io_inst,
604 [0x37] = handle_io_inst,
605 [0x38] = handle_io_inst,
606 [0x39] = handle_io_inst,
607 [0x3a] = handle_io_inst,
608 [0x3b] = handle_io_inst,
609 [0x3c] = handle_io_inst,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100610 [0x50] = handle_ipte_interlock,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100611 [0x5f] = handle_io_inst,
612 [0x74] = handle_io_inst,
613 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100614 [0x7d] = handle_stsi,
615 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100616 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100617};
618
Christian Borntraeger70455a32009-01-22 10:28:29 +0100619int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100620{
621 intercept_handler_t handler;
622
Christian Borntraeger70455a32009-01-22 10:28:29 +0100623 /*
Thomas Huth5087dfa2013-06-20 17:22:01 +0200624 * A lot of B2 instructions are priviledged. Here we check for
625 * the privileged ones, that we can handle in the kernel.
626 * Anything else goes to userspace.
627 */
Cornelia Huckf379aae2012-12-20 15:32:10 +0100628 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200629 if (handler)
630 return handler(vcpu);
631
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100632 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100633}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200634
Cornelia Huck48a3e952012-12-20 15:32:09 +0100635static int handle_epsw(struct kvm_vcpu *vcpu)
636{
637 int reg1, reg2;
638
Thomas Huthaeb87c32013-06-12 13:54:57 +0200639 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100640
641 /* This basically extracts the mask half of the psw. */
Thomas Huth843200e2013-07-26 15:04:05 +0200642 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100643 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
644 if (reg2) {
Thomas Huth843200e2013-07-26 15:04:05 +0200645 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100646 vcpu->run->s.regs.gprs[reg2] |=
Thomas Huth843200e2013-07-26 15:04:05 +0200647 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100648 }
649 return 0;
650}
651
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200652#define PFMF_RESERVED 0xfffc0101UL
653#define PFMF_SK 0x00020000UL
654#define PFMF_CF 0x00010000UL
655#define PFMF_UI 0x00008000UL
656#define PFMF_FSC 0x00007000UL
657#define PFMF_NQ 0x00000800UL
658#define PFMF_MR 0x00000400UL
659#define PFMF_MC 0x00000200UL
660#define PFMF_KEY 0x000000feUL
661
662static int handle_pfmf(struct kvm_vcpu *vcpu)
663{
664 int reg1, reg2;
665 unsigned long start, end;
666
667 vcpu->stat.instruction_pfmf++;
668
669 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
670
671 if (!MACHINE_HAS_PFMF)
672 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
673
674 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200675 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200676
677 if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
678 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
679
680 /* Only provide non-quiescing support if the host supports it */
Heiko Carstense769ece2013-07-26 15:04:01 +0200681 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && !test_facility(14))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200682 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
683
684 /* No support for conditional-SSKE */
685 if (vcpu->run->s.regs.gprs[reg1] & (PFMF_MR | PFMF_MC))
686 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
687
688 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Hutha02689f2014-11-10 15:59:32 +0100689 start = kvm_s390_logical_to_effective(vcpu, start);
Thomas Huthfb34c6032013-09-09 17:58:38 +0200690
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200691 switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
692 case 0x00000000:
693 end = (start + (1UL << 12)) & ~((1UL << 12) - 1);
694 break;
695 case 0x00001000:
696 end = (start + (1UL << 20)) & ~((1UL << 20) - 1);
697 break;
698 /* We dont support EDAT2
699 case 0x00002000:
700 end = (start + (1UL << 31)) & ~((1UL << 31) - 1);
701 break;*/
702 default:
703 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
704 }
Thomas Hutha02689f2014-11-10 15:59:32 +0100705
706 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
Alexander Yarygindd9e5b72015-03-03 14:26:14 +0300707 if (kvm_s390_check_low_addr_prot_real(vcpu, start))
Thomas Hutha02689f2014-11-10 15:59:32 +0100708 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
709 }
710
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200711 while (start < end) {
Thomas Huthfb34c6032013-09-09 17:58:38 +0200712 unsigned long useraddr, abs_addr;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200713
Thomas Huthfb34c6032013-09-09 17:58:38 +0200714 /* Translate guest address to host address */
715 if ((vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) == 0)
716 abs_addr = kvm_s390_real_to_abs(vcpu, start);
717 else
718 abs_addr = start;
719 useraddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(abs_addr));
720 if (kvm_is_error_hva(useraddr))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200721 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
722
723 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
724 if (clear_user((void __user *)useraddr, PAGE_SIZE))
725 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
726 }
727
728 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) {
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200729 int rc = __skey_check_enable(vcpu);
730
731 if (rc)
732 return rc;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200733 if (set_guest_storage_key(current->mm, useraddr,
734 vcpu->run->s.regs.gprs[reg1] & PFMF_KEY,
735 vcpu->run->s.regs.gprs[reg1] & PFMF_NQ))
736 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
737 }
738
739 start += PAGE_SIZE;
740 }
741 if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC)
742 vcpu->run->s.regs.gprs[reg2] = end;
743 return 0;
744}
745
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200746static int handle_essa(struct kvm_vcpu *vcpu)
747{
748 /* entries expected to be 1FF */
749 int entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3;
750 unsigned long *cbrlo, cbrle;
751 struct gmap *gmap;
752 int i;
753
754 VCPU_EVENT(vcpu, 5, "cmma release %d pages", entries);
755 gmap = vcpu->arch.gmap;
756 vcpu->stat.instruction_essa++;
Dominik Dingelb31605c2014-03-25 13:47:11 +0100757 if (!kvm_s390_cmma_enabled(vcpu->kvm))
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200758 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
759
760 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
761 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
762
763 if (((vcpu->arch.sie_block->ipb & 0xf0000000) >> 28) > 6)
764 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
765
766 /* Rewind PSW to repeat the ESSA instruction */
Thomas Huth04b41ac2014-11-12 17:13:29 +0100767 kvm_s390_rewind_psw(vcpu, 4);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200768 vcpu->arch.sie_block->cbrlo &= PAGE_MASK; /* reset nceo */
769 cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo);
770 down_read(&gmap->mm->mmap_sem);
771 for (i = 0; i < entries; ++i) {
772 cbrle = cbrlo[i];
773 if (unlikely(cbrle & ~PAGE_MASK || cbrle < 2 * PAGE_SIZE))
774 /* invalid entry */
775 break;
776 /* try to free backing */
Martin Schwidefsky6e0a0432014-04-29 09:34:41 +0200777 __gmap_zap(gmap, cbrle);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200778 }
779 up_read(&gmap->mm->mmap_sem);
780 if (i < entries)
781 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
782 return 0;
783}
784
Cornelia Huck48a3e952012-12-20 15:32:09 +0100785static const intercept_handler_t b9_handlers[256] = {
Heiko Carstens8a2422342014-01-10 14:33:28 +0100786 [0x8a] = handle_ipte_interlock,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100787 [0x8d] = handle_epsw,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100788 [0x8e] = handle_ipte_interlock,
789 [0x8f] = handle_ipte_interlock,
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200790 [0xab] = handle_essa,
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200791 [0xaf] = handle_pfmf,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100792};
793
794int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
795{
796 intercept_handler_t handler;
797
798 /* This is handled just as for the B2 instructions. */
799 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200800 if (handler)
801 return handler(vcpu);
802
Cornelia Huck48a3e952012-12-20 15:32:09 +0100803 return -EOPNOTSUPP;
804}
805
Thomas Huth953ed882013-06-20 17:22:04 +0200806int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu)
807{
808 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
809 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100810 int reg, rc, nr_regs;
811 u32 ctl_array[16];
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100812 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300813 ar_t ar;
Thomas Huth953ed882013-06-20 17:22:04 +0200814
815 vcpu->stat.instruction_lctl++;
816
817 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
818 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
819
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300820 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
Thomas Huth953ed882013-06-20 17:22:04 +0200821
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100822 if (ga & 3)
Thomas Huth953ed882013-06-20 17:22:04 +0200823 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
824
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100825 VCPU_EVENT(vcpu, 5, "lctl r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
826 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200827
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100828 nr_regs = ((reg3 - reg1) & 0xf) + 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300829 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100830 if (rc)
831 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth953ed882013-06-20 17:22:04 +0200832 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100833 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +0200834 do {
Thomas Huth953ed882013-06-20 17:22:04 +0200835 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100836 vcpu->arch.sie_block->gcr[reg] |= ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +0200837 if (reg == reg3)
838 break;
839 reg = (reg + 1) % 16;
840 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +0100841 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200842 return 0;
843}
844
David Hildenbrandaba07502014-01-23 10:47:13 +0100845int kvm_s390_handle_stctl(struct kvm_vcpu *vcpu)
846{
847 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
848 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100849 int reg, rc, nr_regs;
850 u32 ctl_array[16];
David Hildenbrandaba07502014-01-23 10:47:13 +0100851 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300852 ar_t ar;
David Hildenbrandaba07502014-01-23 10:47:13 +0100853
854 vcpu->stat.instruction_stctl++;
855
856 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
857 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
858
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300859 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
David Hildenbrandaba07502014-01-23 10:47:13 +0100860
861 if (ga & 3)
862 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
863
864 VCPU_EVENT(vcpu, 5, "stctl r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
865 trace_kvm_s390_handle_stctl(vcpu, 0, reg1, reg3, ga);
866
867 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100868 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100869 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100870 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +0100871 if (reg == reg3)
872 break;
873 reg = (reg + 1) % 16;
874 } while (1);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300875 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100876 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100877}
878
Thomas Huth953ed882013-06-20 17:22:04 +0200879static int handle_lctlg(struct kvm_vcpu *vcpu)
880{
881 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
882 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100883 int reg, rc, nr_regs;
884 u64 ctl_array[16];
885 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300886 ar_t ar;
Thomas Huth953ed882013-06-20 17:22:04 +0200887
888 vcpu->stat.instruction_lctlg++;
889
890 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
891 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
892
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300893 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
Thomas Huth953ed882013-06-20 17:22:04 +0200894
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100895 if (ga & 7)
Thomas Huth953ed882013-06-20 17:22:04 +0200896 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
897
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100898 VCPU_EVENT(vcpu, 5, "lctlg r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
899 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200900
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100901 nr_regs = ((reg3 - reg1) & 0xf) + 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300902 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100903 if (rc)
904 return kvm_s390_inject_prog_cond(vcpu, rc);
905 reg = reg1;
906 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +0200907 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100908 vcpu->arch.sie_block->gcr[reg] = ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +0200909 if (reg == reg3)
910 break;
911 reg = (reg + 1) % 16;
912 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +0100913 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200914 return 0;
915}
916
David Hildenbrandaba07502014-01-23 10:47:13 +0100917static int handle_stctg(struct kvm_vcpu *vcpu)
918{
919 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
920 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100921 int reg, rc, nr_regs;
922 u64 ctl_array[16];
923 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300924 ar_t ar;
David Hildenbrandaba07502014-01-23 10:47:13 +0100925
926 vcpu->stat.instruction_stctg++;
927
928 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
929 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
930
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300931 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
David Hildenbrandaba07502014-01-23 10:47:13 +0100932
933 if (ga & 7)
934 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
935
David Hildenbrandaba07502014-01-23 10:47:13 +0100936 VCPU_EVENT(vcpu, 5, "stctg r1:%x, r3:%x, addr:%llx", reg1, reg3, ga);
937 trace_kvm_s390_handle_stctl(vcpu, 1, reg1, reg3, ga);
938
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100939 reg = reg1;
940 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100941 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100942 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +0100943 if (reg == reg3)
944 break;
945 reg = (reg + 1) % 16;
946 } while (1);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300947 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100948 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100949}
950
Cornelia Huckf379aae2012-12-20 15:32:10 +0100951static const intercept_handler_t eb_handlers[256] = {
Thomas Huth953ed882013-06-20 17:22:04 +0200952 [0x2f] = handle_lctlg,
David Hildenbrandaba07502014-01-23 10:47:13 +0100953 [0x25] = handle_stctg,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100954};
955
Thomas Huth953ed882013-06-20 17:22:04 +0200956int kvm_s390_handle_eb(struct kvm_vcpu *vcpu)
Cornelia Huckf379aae2012-12-20 15:32:10 +0100957{
958 intercept_handler_t handler;
959
Cornelia Huckf379aae2012-12-20 15:32:10 +0100960 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
961 if (handler)
962 return handler(vcpu);
963 return -EOPNOTSUPP;
964}
965
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200966static int handle_tprot(struct kvm_vcpu *vcpu)
967{
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100968 u64 address1, address2;
Thomas Hutha0465f92014-02-04 14:48:07 +0100969 unsigned long hva, gpa;
970 int ret = 0, cc = 0;
971 bool writable;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300972 ar_t ar;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200973
974 vcpu->stat.instruction_tprot++;
975
Thomas Huthf9f6bbc2013-06-20 17:22:00 +0200976 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
977 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
978
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300979 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2, &ar, NULL);
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100980
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200981 /* we only handle the Linux memory detection case:
982 * access key == 0
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200983 * everything else goes to userspace. */
984 if (address2 & 0xf0)
985 return -EOPNOTSUPP;
986 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
Thomas Hutha0465f92014-02-04 14:48:07 +0100987 ipte_lock(vcpu);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300988 ret = guest_translate_address(vcpu, address1, ar, &gpa, 1);
Thomas Hutha0465f92014-02-04 14:48:07 +0100989 if (ret == PGM_PROTECTION) {
990 /* Write protected? Try again with read-only... */
991 cc = 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300992 ret = guest_translate_address(vcpu, address1, ar, &gpa, 0);
Thomas Hutha0465f92014-02-04 14:48:07 +0100993 }
994 if (ret) {
995 if (ret == PGM_ADDRESSING || ret == PGM_TRANSLATION_SPEC) {
996 ret = kvm_s390_inject_program_int(vcpu, ret);
997 } else if (ret > 0) {
998 /* Translation not available */
999 kvm_s390_set_psw_cc(vcpu, 3);
1000 ret = 0;
1001 }
1002 goto out_unlock;
1003 }
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001004
Thomas Hutha0465f92014-02-04 14:48:07 +01001005 hva = gfn_to_hva_prot(vcpu->kvm, gpa_to_gfn(gpa), &writable);
1006 if (kvm_is_error_hva(hva)) {
1007 ret = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
1008 } else {
1009 if (!writable)
1010 cc = 1; /* Write not permitted ==> read-only */
1011 kvm_s390_set_psw_cc(vcpu, cc);
1012 /* Note: CC2 only occurs for storage keys (not supported yet) */
1013 }
1014out_unlock:
1015 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
1016 ipte_unlock(vcpu);
1017 return ret;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001018}
1019
1020int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
1021{
1022 /* For e5xx... instructions we only handle TPROT */
1023 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
1024 return handle_tprot(vcpu);
1025 return -EOPNOTSUPP;
1026}
1027
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001028static int handle_sckpf(struct kvm_vcpu *vcpu)
1029{
1030 u32 value;
1031
1032 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +02001033 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001034
1035 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
1036 return kvm_s390_inject_program_int(vcpu,
1037 PGM_SPECIFICATION);
1038
1039 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
1040 vcpu->arch.sie_block->todpr = value;
1041
1042 return 0;
1043}
1044
Cornelia Huck77975352012-12-20 15:32:06 +01001045static const intercept_handler_t x01_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001046 [0x07] = handle_sckpf,
1047};
1048
1049int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
1050{
1051 intercept_handler_t handler;
1052
1053 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
1054 if (handler)
1055 return handler(vcpu);
1056 return -EOPNOTSUPP;
1057}