blob: 0714bfa56da0f54cae66b26bd5329b18beb77b0b [file] [log] [blame]
Greg Kroah-Hartmand809aa22017-11-24 15:00:33 +01001// SPDX-License-Identifier: GPL-2.0
Christian Borntraeger453423d2008-03-25 18:47:29 +01002/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * handling privileged instructions
Christian Borntraeger453423d2008-03-25 18:47:29 +01004 *
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +02005 * Copyright IBM Corp. 2008, 2013
Christian Borntraeger453423d2008-03-25 18:47:29 +01006 *
Christian Borntraeger453423d2008-03-25 18:47:29 +01007 * Author(s): Carsten Otte <cotte@de.ibm.com>
8 * Christian Borntraeger <borntraeger@de.ibm.com>
9 */
10
11#include <linux/kvm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010013#include <linux/errno.h>
Heiko Carstensb13b5dc2013-03-25 17:22:55 +010014#include <linux/compat.h>
Ingo Molnar589ee622017-02-04 00:16:44 +010015#include <linux/mm_types.h>
16
Heiko Carstens7c959e82013-03-05 13:14:46 +010017#include <asm/asm-offsets.h>
Heiko Carstense769ece2013-07-26 15:04:01 +020018#include <asm/facility.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010019#include <asm/current.h>
20#include <asm/debug.h>
21#include <asm/ebcdic.h>
22#include <asm/sysinfo.h>
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020023#include <asm/pgtable.h>
Claudio Imbrenda190df4a2016-08-04 17:54:42 +020024#include <asm/page-states.h>
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020025#include <asm/pgalloc.h>
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010026#include <asm/gmap.h>
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020027#include <asm/io.h>
Cornelia Huck48a3e952012-12-20 15:32:09 +010028#include <asm/ptrace.h>
29#include <asm/compat.h>
David Hildenbranda7e19ab2016-05-10 09:50:21 +020030#include <asm/sclp.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010031#include "gaccess.h"
32#include "kvm-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020033#include "trace.h"
Christian Borntraeger453423d2008-03-25 18:47:29 +010034
Fan Zhang80cd8762016-08-15 04:53:22 +020035static int handle_ri(struct kvm_vcpu *vcpu)
36{
37 if (test_kvm_facility(vcpu->kvm, 64)) {
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +010038 VCPU_EVENT(vcpu, 3, "%s", "ENABLE: RI (lazy)");
David Hildenbrand0c9d8682017-03-13 11:48:28 +010039 vcpu->arch.sie_block->ecb3 |= ECB3_RI;
Fan Zhang80cd8762016-08-15 04:53:22 +020040 kvm_s390_retry_instr(vcpu);
41 return 0;
42 } else
43 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
44}
45
46int kvm_s390_handle_aa(struct kvm_vcpu *vcpu)
47{
48 if ((vcpu->arch.sie_block->ipa & 0xf) <= 4)
49 return handle_ri(vcpu);
50 else
51 return -EOPNOTSUPP;
52}
53
Fan Zhang4e0b1ab2016-11-29 07:17:55 +010054static int handle_gs(struct kvm_vcpu *vcpu)
55{
56 if (test_kvm_facility(vcpu->kvm, 133)) {
57 VCPU_EVENT(vcpu, 3, "%s", "ENABLE: GS (lazy)");
58 preempt_disable();
59 __ctl_set_bit(2, 4);
60 current->thread.gs_cb = (struct gs_cb *)&vcpu->run->s.regs.gscb;
61 restore_gs_cb(current->thread.gs_cb);
62 preempt_enable();
63 vcpu->arch.sie_block->ecb |= ECB_GS;
64 vcpu->arch.sie_block->ecd |= ECD_HOSTREGMGMT;
65 vcpu->arch.gs_enabled = 1;
66 kvm_s390_retry_instr(vcpu);
67 return 0;
68 } else
69 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
70}
71
72int kvm_s390_handle_e3(struct kvm_vcpu *vcpu)
73{
74 int code = vcpu->arch.sie_block->ipb & 0xff;
75
76 if (code == 0x49 || code == 0x4d)
77 return handle_gs(vcpu);
78 else
79 return -EOPNOTSUPP;
80}
Thomas Huth6a3f95a2013-09-12 10:33:49 +020081/* Handle SCK (SET CLOCK) interception */
82static int handle_set_clock(struct kvm_vcpu *vcpu)
83{
David Hildenbrand25ed1672015-05-12 09:49:14 +020084 int rc;
Christian Borntraeger27f67f82016-12-09 12:44:40 +010085 u8 ar;
David Hildenbrand25ed1672015-05-12 09:49:14 +020086 u64 op2, val;
Thomas Huth6a3f95a2013-09-12 10:33:49 +020087
88 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
89 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
90
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030091 op2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020092 if (op2 & 7) /* Operand must be on a doubleword boundary */
93 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030094 rc = read_guest(vcpu, op2, ar, &val, sizeof(val));
Heiko Carstens0e7a3f92014-01-01 16:50:11 +010095 if (rc)
96 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020097
Christian Borntraeger7cbde762015-07-21 12:44:57 +020098 VCPU_EVENT(vcpu, 3, "SCK: setting guest TOD to 0x%llx", val);
David Hildenbrand25ed1672015-05-12 09:49:14 +020099 kvm_s390_set_tod_clock(vcpu->kvm, val);
Thomas Huth6a3f95a2013-09-12 10:33:49 +0200100
101 kvm_s390_set_psw_cc(vcpu, 0);
102 return 0;
103}
104
Christian Borntraeger453423d2008-03-25 18:47:29 +0100105static int handle_set_prefix(struct kvm_vcpu *vcpu)
106{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100107 u64 operand2;
Heiko Carstens665170c2014-01-01 16:47:12 +0100108 u32 address;
109 int rc;
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100110 u8 ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100111
112 vcpu->stat.instruction_spx++;
113
Thomas Huth5087dfa2013-06-20 17:22:01 +0200114 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
115 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
116
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300117 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100118
119 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100120 if (operand2 & 3)
121 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100122
123 /* get the value */
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300124 rc = read_guest(vcpu, operand2, ar, &address, sizeof(address));
Heiko Carstens665170c2014-01-01 16:47:12 +0100125 if (rc)
126 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100127
Heiko Carstens665170c2014-01-01 16:47:12 +0100128 address &= 0x7fffe000u;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100129
Heiko Carstens665170c2014-01-01 16:47:12 +0100130 /*
131 * Make sure the new value is valid memory. We only need to check the
132 * first page, since address is 8k aligned and memory pieces are always
133 * at least 1MB aligned and have at least a size of 1MB.
134 */
135 if (kvm_is_error_gpa(vcpu->kvm, address))
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100136 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100137
Christian Borntraeger8d26cf72012-01-11 11:19:32 +0100138 kvm_s390_set_prefix(vcpu, address);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200139 trace_kvm_s390_handle_prefix(vcpu, 1, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100140 return 0;
141}
142
143static int handle_store_prefix(struct kvm_vcpu *vcpu)
144{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100145 u64 operand2;
146 u32 address;
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100147 int rc;
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100148 u8 ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100149
150 vcpu->stat.instruction_stpx++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100151
Thomas Huth5087dfa2013-06-20 17:22:01 +0200152 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
153 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
154
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300155 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100156
157 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100158 if (operand2 & 3)
159 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100160
Michael Muellerfda902c2014-05-13 16:58:30 +0200161 address = kvm_s390_get_prefix(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100162
163 /* get the value */
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300164 rc = write_guest(vcpu, operand2, ar, &address, sizeof(address));
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100165 if (rc)
166 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100167
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200168 VCPU_EVENT(vcpu, 3, "STPX: storing prefix 0x%x into 0x%llx", address, operand2);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200169 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100170 return 0;
171}
172
173static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
174{
Heiko Carstens8b96de02014-01-01 16:53:27 +0100175 u16 vcpu_id = vcpu->vcpu_id;
176 u64 ga;
177 int rc;
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100178 u8 ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100179
180 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100181
Thomas Huth5087dfa2013-06-20 17:22:01 +0200182 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
183 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
184
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300185 ga = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100186
Heiko Carstens8b96de02014-01-01 16:53:27 +0100187 if (ga & 1)
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100188 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100189
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300190 rc = write_guest(vcpu, ga, ar, &vcpu_id, sizeof(vcpu_id));
Heiko Carstens8b96de02014-01-01 16:53:27 +0100191 if (rc)
192 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100193
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200194 VCPU_EVENT(vcpu, 3, "STAP: storing cpu address (%u) to 0x%llx", vcpu_id, ga);
Heiko Carstens8b96de02014-01-01 16:53:27 +0100195 trace_kvm_s390_handle_stap(vcpu, ga);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100196 return 0;
197}
198
Farhan Ali730cd632017-02-24 16:12:56 -0500199int kvm_s390_skey_check_enable(struct kvm_vcpu *vcpu)
Dominik Dingel693ffc02014-01-14 18:11:14 +0100200{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200201 int rc = 0;
Farhan Ali730cd632017-02-24 16:12:56 -0500202 struct kvm_s390_sie_block *sie_block = vcpu->arch.sie_block;
David Hildenbrand11ddcd42016-05-10 09:40:09 +0200203
204 trace_kvm_s390_skey_related_inst(vcpu);
Farhan Ali730cd632017-02-24 16:12:56 -0500205 if (!(sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)) &&
206 !(atomic_read(&sie_block->cpuflags) & CPUSTAT_KSS))
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200207 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100208
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200209 rc = s390_enable_skey();
David Hildenbrand11ddcd42016-05-10 09:40:09 +0200210 VCPU_EVENT(vcpu, 3, "enabling storage keys for guest: %d", rc);
Farhan Ali730cd632017-02-24 16:12:56 -0500211 if (!rc) {
212 if (atomic_read(&sie_block->cpuflags) & CPUSTAT_KSS)
213 atomic_andnot(CPUSTAT_KSS, &sie_block->cpuflags);
214 else
215 sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE |
216 ICTL_RRBE);
217 }
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200218 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100219}
220
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200221static int try_handle_skey(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100222{
David Hildenbrand11ddcd42016-05-10 09:40:09 +0200223 int rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100224
David Hildenbrand11ddcd42016-05-10 09:40:09 +0200225 vcpu->stat.instruction_storage_key++;
Farhan Ali730cd632017-02-24 16:12:56 -0500226 rc = kvm_s390_skey_check_enable(vcpu);
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200227 if (rc)
228 return rc;
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200229 if (sclp.has_skey) {
230 /* with storage-key facility, SIE interprets it for us */
231 kvm_s390_retry_instr(vcpu);
232 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
233 return -EAGAIN;
234 }
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200235 return 0;
236}
Thomas Huth5087dfa2013-06-20 17:22:01 +0200237
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200238static int handle_iske(struct kvm_vcpu *vcpu)
239{
240 unsigned long addr;
241 unsigned char key;
242 int reg1, reg2;
243 int rc;
244
Janosch Frankca76ec92017-12-04 12:19:11 +0100245 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
246 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
247
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200248 rc = try_handle_skey(vcpu);
249 if (rc)
250 return rc != -EAGAIN ? rc : 0;
251
252 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
253
254 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
255 addr = kvm_s390_logical_to_effective(vcpu, addr);
256 addr = kvm_s390_real_to_abs(vcpu, addr);
257 addr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(addr));
258 if (kvm_is_error_hva(addr))
259 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
260
261 down_read(&current->mm->mmap_sem);
262 rc = get_guest_storage_key(current->mm, addr, &key);
263 up_read(&current->mm->mmap_sem);
264 if (rc)
265 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
266 vcpu->run->s.regs.gprs[reg1] &= ~0xff;
267 vcpu->run->s.regs.gprs[reg1] |= key;
268 return 0;
269}
270
271static int handle_rrbe(struct kvm_vcpu *vcpu)
272{
273 unsigned long addr;
274 int reg1, reg2;
275 int rc;
276
Janosch Frankca76ec92017-12-04 12:19:11 +0100277 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
278 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
279
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200280 rc = try_handle_skey(vcpu);
281 if (rc)
282 return rc != -EAGAIN ? rc : 0;
283
284 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
285
286 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
287 addr = kvm_s390_logical_to_effective(vcpu, addr);
288 addr = kvm_s390_real_to_abs(vcpu, addr);
289 addr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(addr));
290 if (kvm_is_error_hva(addr))
291 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
292
293 down_read(&current->mm->mmap_sem);
294 rc = reset_guest_reference_bit(current->mm, addr);
295 up_read(&current->mm->mmap_sem);
296 if (rc < 0)
297 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
298
299 kvm_s390_set_psw_cc(vcpu, rc);
300 return 0;
301}
302
303#define SSKE_NQ 0x8
304#define SSKE_MR 0x4
305#define SSKE_MC 0x2
306#define SSKE_MB 0x1
307static int handle_sske(struct kvm_vcpu *vcpu)
308{
309 unsigned char m3 = vcpu->arch.sie_block->ipb >> 28;
310 unsigned long start, end;
311 unsigned char key, oldkey;
312 int reg1, reg2;
313 int rc;
314
Janosch Frankca76ec92017-12-04 12:19:11 +0100315 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
316 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
317
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200318 rc = try_handle_skey(vcpu);
319 if (rc)
320 return rc != -EAGAIN ? rc : 0;
321
322 if (!test_kvm_facility(vcpu->kvm, 8))
323 m3 &= ~SSKE_MB;
324 if (!test_kvm_facility(vcpu->kvm, 10))
325 m3 &= ~(SSKE_MC | SSKE_MR);
326 if (!test_kvm_facility(vcpu->kvm, 14))
327 m3 &= ~SSKE_NQ;
328
329 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
330
331 key = vcpu->run->s.regs.gprs[reg1] & 0xfe;
332 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
333 start = kvm_s390_logical_to_effective(vcpu, start);
334 if (m3 & SSKE_MB) {
335 /* start already designates an absolute address */
Heiko Carstens58cdf5e2017-07-05 07:37:14 +0200336 end = (start + _SEGMENT_SIZE) & ~(_SEGMENT_SIZE - 1);
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200337 } else {
338 start = kvm_s390_real_to_abs(vcpu, start);
339 end = start + PAGE_SIZE;
340 }
341
342 while (start != end) {
343 unsigned long addr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(start));
344
345 if (kvm_is_error_hva(addr))
346 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
347
348 down_read(&current->mm->mmap_sem);
349 rc = cond_set_guest_storage_key(current->mm, addr, key, &oldkey,
350 m3 & SSKE_NQ, m3 & SSKE_MR,
351 m3 & SSKE_MC);
352 up_read(&current->mm->mmap_sem);
353 if (rc < 0)
354 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
355 start += PAGE_SIZE;
Heiko Carstens0b925152017-01-02 08:51:02 +0100356 }
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200357
358 if (m3 & (SSKE_MC | SSKE_MR)) {
359 if (m3 & SSKE_MB) {
360 /* skey in reg1 is unpredictable */
361 kvm_s390_set_psw_cc(vcpu, 3);
362 } else {
363 kvm_s390_set_psw_cc(vcpu, rc);
364 vcpu->run->s.regs.gprs[reg1] &= ~0xff00UL;
365 vcpu->run->s.regs.gprs[reg1] |= (u64) oldkey << 8;
366 }
367 }
368 if (m3 & SSKE_MB) {
Heiko Carstens8bb3fdd2017-06-03 10:19:55 +0200369 if (psw_bits(vcpu->arch.sie_block->gpsw).eaba == PSW_BITS_AMODE_64BIT)
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200370 vcpu->run->s.regs.gprs[reg2] &= ~PAGE_MASK;
371 else
372 vcpu->run->s.regs.gprs[reg2] &= ~0xfffff000UL;
373 end = kvm_s390_logical_to_effective(vcpu, end);
374 vcpu->run->s.regs.gprs[reg2] |= end;
375 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100376 return 0;
377}
378
Heiko Carstens8a2422342014-01-10 14:33:28 +0100379static int handle_ipte_interlock(struct kvm_vcpu *vcpu)
380{
Heiko Carstens8a2422342014-01-10 14:33:28 +0100381 vcpu->stat.instruction_ipte_interlock++;
Heiko Carstensa7525982017-06-03 10:56:07 +0200382 if (psw_bits(vcpu->arch.sie_block->gpsw).pstate)
Heiko Carstens8a2422342014-01-10 14:33:28 +0100383 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
384 wait_event(vcpu->kvm->arch.ipte_wq, !ipte_lock_held(vcpu));
David Hildenbrand0e8bc062015-11-04 13:47:58 +0100385 kvm_s390_retry_instr(vcpu);
Heiko Carstens8a2422342014-01-10 14:33:28 +0100386 VCPU_EVENT(vcpu, 4, "%s", "retrying ipte interlock operation");
387 return 0;
388}
389
Thomas Huthaca84242013-09-12 10:33:48 +0200390static int handle_test_block(struct kvm_vcpu *vcpu)
391{
Thomas Huthaca84242013-09-12 10:33:48 +0200392 gpa_t addr;
393 int reg2;
394
395 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
396 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
397
398 kvm_s390_get_regs_rre(vcpu, NULL, &reg2);
399 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Huthe45efa22014-03-07 12:14:23 +0100400 addr = kvm_s390_logical_to_effective(vcpu, addr);
Alexander Yarygindd9e5b72015-03-03 14:26:14 +0300401 if (kvm_s390_check_low_addr_prot_real(vcpu, addr))
Thomas Huthe45efa22014-03-07 12:14:23 +0100402 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
Thomas Huthaca84242013-09-12 10:33:48 +0200403 addr = kvm_s390_real_to_abs(vcpu, addr);
404
Heiko Carstensef23e772014-01-01 16:53:49 +0100405 if (kvm_is_error_gpa(vcpu->kvm, addr))
Thomas Huthaca84242013-09-12 10:33:48 +0200406 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
407 /*
408 * We don't expect errors on modern systems, and do not care
409 * about storage keys (yet), so let's just clear the page.
410 */
Heiko Carstensef23e772014-01-01 16:53:49 +0100411 if (kvm_clear_guest(vcpu->kvm, addr, PAGE_SIZE))
Thomas Huthaca84242013-09-12 10:33:48 +0200412 return -EFAULT;
413 kvm_s390_set_psw_cc(vcpu, 0);
414 vcpu->run->s.regs.gprs[0] = 0;
415 return 0;
416}
417
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100418static int handle_tpi(struct kvm_vcpu *vcpu)
419{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100420 struct kvm_s390_interrupt_info *inti;
Heiko Carstens4799b552014-01-01 16:55:48 +0100421 unsigned long len;
422 u32 tpi_data[3];
David Hildenbrand261520d2015-02-04 15:53:42 +0100423 int rc;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100424 u64 addr;
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100425 u8 ar;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100426
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300427 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100428 if (addr & 3)
429 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
David Hildenbrand261520d2015-02-04 15:53:42 +0100430
Thomas Huthf0926692013-10-09 14:15:54 +0200431 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0);
David Hildenbrand261520d2015-02-04 15:53:42 +0100432 if (!inti) {
433 kvm_s390_set_psw_cc(vcpu, 0);
434 return 0;
435 }
436
Heiko Carstens4799b552014-01-01 16:55:48 +0100437 tpi_data[0] = inti->io.subchannel_id << 16 | inti->io.subchannel_nr;
438 tpi_data[1] = inti->io.io_int_parm;
439 tpi_data[2] = inti->io.io_int_word;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100440 if (addr) {
441 /*
442 * Store the two-word I/O interruption code into the
443 * provided area.
444 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100445 len = sizeof(tpi_data) - 4;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300446 rc = write_guest(vcpu, addr, ar, &tpi_data, len);
David Hildenbrand261520d2015-02-04 15:53:42 +0100447 if (rc) {
448 rc = kvm_s390_inject_prog_cond(vcpu, rc);
449 goto reinject_interrupt;
450 }
Heiko Carstens7c959e82013-03-05 13:14:46 +0100451 } else {
452 /*
453 * Store the three-word I/O interruption code into
454 * the appropriate lowcore area.
455 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100456 len = sizeof(tpi_data);
David Hildenbrand261520d2015-02-04 15:53:42 +0100457 if (write_guest_lc(vcpu, __LC_SUBCHANNEL_ID, &tpi_data, len)) {
458 /* failed writes to the low core are not recoverable */
Heiko Carstens4799b552014-01-01 16:55:48 +0100459 rc = -EFAULT;
David Hildenbrand261520d2015-02-04 15:53:42 +0100460 goto reinject_interrupt;
461 }
Heiko Carstens7c959e82013-03-05 13:14:46 +0100462 }
David Hildenbrand261520d2015-02-04 15:53:42 +0100463
464 /* irq was successfully handed to the guest */
465 kfree(inti);
466 kvm_s390_set_psw_cc(vcpu, 1);
467 return 0;
468reinject_interrupt:
Cornelia Huck2f32d4e2014-01-08 18:07:54 +0100469 /*
470 * If we encounter a problem storing the interruption code, the
471 * instruction is suppressed from the guest's view: reinject the
472 * interrupt.
473 */
David Hildenbrand15462e32015-02-04 15:59:11 +0100474 if (kvm_s390_reinject_io_int(vcpu->kvm, inti)) {
475 kfree(inti);
476 rc = -EFAULT;
477 }
David Hildenbrand261520d2015-02-04 15:53:42 +0100478 /* don't set the cc, a pgm irq was injected or we drop to user space */
Heiko Carstens4799b552014-01-01 16:55:48 +0100479 return rc ? -EFAULT : 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100480}
481
482static int handle_tsch(struct kvm_vcpu *vcpu)
483{
Jens Freimann6d3da242013-07-03 15:18:35 +0200484 struct kvm_s390_interrupt_info *inti = NULL;
485 const u64 isc_mask = 0xffUL << 24; /* all iscs set */
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100486
Jens Freimann6d3da242013-07-03 15:18:35 +0200487 /* a valid schid has at least one bit set */
488 if (vcpu->run->s.regs.gprs[1])
489 inti = kvm_s390_get_io_int(vcpu->kvm, isc_mask,
490 vcpu->run->s.regs.gprs[1]);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100491
492 /*
493 * Prepare exit to userspace.
494 * We indicate whether we dequeued a pending I/O interrupt
495 * so that userspace can re-inject it if the instruction gets
496 * a program check. While this may re-order the pending I/O
497 * interrupts, this is no problem since the priority is kept
498 * intact.
499 */
500 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
501 vcpu->run->s390_tsch.dequeued = !!inti;
502 if (inti) {
503 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
504 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
505 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
506 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
507 }
508 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
509 kfree(inti);
510 return -EREMOTE;
511}
512
Cornelia Huckf379aae2012-12-20 15:32:10 +0100513static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100514{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100515 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100516
Thomas Huth5087dfa2013-06-20 17:22:01 +0200517 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
518 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
519
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100520 if (vcpu->kvm->arch.css_support) {
521 /*
522 * Most I/O instructions will be handled by userspace.
523 * Exceptions are tpi and the interrupt portion of tsch.
524 */
525 if (vcpu->arch.sie_block->ipa == 0xb236)
526 return handle_tpi(vcpu);
527 if (vcpu->arch.sie_block->ipa == 0xb235)
528 return handle_tsch(vcpu);
529 /* Handle in userspace. */
530 return -EOPNOTSUPP;
531 } else {
532 /*
Hendrik Bruecknerb4a96012013-12-13 12:53:42 +0100533 * Set condition code 3 to stop the guest from issuing channel
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100534 * I/O instructions.
535 */
Thomas Huthea828eb2013-07-26 15:04:06 +0200536 kvm_s390_set_psw_cc(vcpu, 3);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100537 return 0;
538 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100539}
540
Christian Borntraeger453423d2008-03-25 18:47:29 +0100541static int handle_stfl(struct kvm_vcpu *vcpu)
542{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100543 int rc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100544 unsigned int fac;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100545
546 vcpu->stat.instruction_stfl++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200547
548 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
549 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
550
Michael Mueller9d8d5782015-02-02 15:42:51 +0100551 /*
552 * We need to shift the lower 32 facility bits (bit 0-31) from a u64
553 * into a u32 memory representation. They will remain bits 0-31.
554 */
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100555 fac = *vcpu->kvm->arch.model.fac_list >> 32;
Heiko Carstensc667aea2015-12-31 10:29:00 +0100556 rc = write_guest_lc(vcpu, offsetof(struct lowcore, stfl_fac_list),
Michael Mueller9d8d5782015-02-02 15:42:51 +0100557 &fac, sizeof(fac));
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100558 if (rc)
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100559 return rc;
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200560 VCPU_EVENT(vcpu, 3, "STFL: store facility list 0x%x", fac);
Michael Mueller9d8d5782015-02-02 15:42:51 +0100561 trace_kvm_s390_handle_stfl(vcpu, fac);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100562 return 0;
563}
564
Cornelia Huck48a3e952012-12-20 15:32:09 +0100565#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
566#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
Heiko Carstensd21683e2013-03-25 17:22:49 +0100567#define PSW_ADDR_24 0x0000000000ffffffUL
Cornelia Huck48a3e952012-12-20 15:32:09 +0100568#define PSW_ADDR_31 0x000000007fffffffUL
569
Thomas Hutha3fb5772014-04-17 09:10:40 +0200570int is_valid_psw(psw_t *psw)
571{
Heiko Carstens3736b872013-03-25 17:22:52 +0100572 if (psw->mask & PSW_MASK_UNASSIGNED)
573 return 0;
574 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) {
575 if (psw->addr & ~PSW_ADDR_31)
576 return 0;
577 }
578 if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24))
579 return 0;
580 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA)
581 return 0;
Thomas Hutha3fb5772014-04-17 09:10:40 +0200582 if (psw->addr & 1)
583 return 0;
Heiko Carstens3736b872013-03-25 17:22:52 +0100584 return 1;
585}
586
Cornelia Huck48a3e952012-12-20 15:32:09 +0100587int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
588{
Heiko Carstens3736b872013-03-25 17:22:52 +0100589 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100590 psw_compat_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100591 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100592 int rc;
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100593 u8 ar;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100594
Heiko Carstens3736b872013-03-25 17:22:52 +0100595 if (gpsw->mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200596 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
597
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300598 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100599 if (addr & 7)
600 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100601
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300602 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100603 if (rc)
604 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100605 if (!(new_psw.mask & PSW32_MASK_BASE))
606 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens3736b872013-03-25 17:22:52 +0100607 gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32;
608 gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE;
609 gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE;
610 if (!is_valid_psw(gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100611 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100612 return 0;
613}
614
615static int handle_lpswe(struct kvm_vcpu *vcpu)
616{
Cornelia Huck48a3e952012-12-20 15:32:09 +0100617 psw_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100618 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100619 int rc;
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100620 u8 ar;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100621
Thomas Huth5087dfa2013-06-20 17:22:01 +0200622 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
623 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
624
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300625 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100626 if (addr & 7)
627 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300628 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100629 if (rc)
630 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens3736b872013-03-25 17:22:52 +0100631 vcpu->arch.sie_block->gpsw = new_psw;
632 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100633 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100634 return 0;
635}
636
Christian Borntraeger453423d2008-03-25 18:47:29 +0100637static int handle_stidp(struct kvm_vcpu *vcpu)
638{
David Hildenbrand9bb0ec02016-04-04 14:27:51 +0200639 u64 stidp_data = vcpu->kvm->arch.model.cpuid;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100640 u64 operand2;
Heiko Carstens7d777d72014-01-01 16:58:16 +0100641 int rc;
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100642 u8 ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100643
644 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100645
Thomas Huth5087dfa2013-06-20 17:22:01 +0200646 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
647 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
648
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300649 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100650
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100651 if (operand2 & 7)
652 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100653
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300654 rc = write_guest(vcpu, operand2, ar, &stidp_data, sizeof(stidp_data));
Heiko Carstens7d777d72014-01-01 16:58:16 +0100655 if (rc)
656 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100657
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200658 VCPU_EVENT(vcpu, 3, "STIDP: store cpu id 0x%llx", stidp_data);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100659 return 0;
660}
661
662static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
663{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100664 int cpus = 0;
665 int n;
666
Jens Freimannff520a62014-02-24 10:11:41 +0100667 cpus = atomic_read(&vcpu->kvm->online_vcpus);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100668
669 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200670 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100671 mem->count = 0;
672 if (mem->count < 8)
673 mem->count++;
674 for (n = mem->count - 1; n > 0 ; n--)
675 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
676
Ekaterina Tumanovab75f4c92015-03-03 09:54:41 +0100677 memset(&mem->vm[0], 0, sizeof(mem->vm[0]));
Christian Borntraeger453423d2008-03-25 18:47:29 +0100678 mem->vm[0].cpus_total = cpus;
679 mem->vm[0].cpus_configured = cpus;
680 mem->vm[0].cpus_standby = 0;
681 mem->vm[0].cpus_reserved = 0;
682 mem->vm[0].caf = 1000;
683 memcpy(mem->vm[0].name, "KVMguest", 8);
684 ASCEBC(mem->vm[0].name, 8);
685 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
686 ASCEBC(mem->vm[0].cpi, 16);
687}
688
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100689static void insert_stsi_usr_data(struct kvm_vcpu *vcpu, u64 addr, u8 ar,
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100690 u8 fc, u8 sel1, u16 sel2)
691{
692 vcpu->run->exit_reason = KVM_EXIT_S390_STSI;
693 vcpu->run->s390_stsi.addr = addr;
694 vcpu->run->s390_stsi.ar = ar;
695 vcpu->run->s390_stsi.fc = fc;
696 vcpu->run->s390_stsi.sel1 = sel1;
697 vcpu->run->s390_stsi.sel2 = sel2;
698}
699
Christian Borntraeger453423d2008-03-25 18:47:29 +0100700static int handle_stsi(struct kvm_vcpu *vcpu)
701{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100702 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
703 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
704 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100705 unsigned long mem = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100706 u64 operand2;
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100707 int rc = 0;
Christian Borntraeger27f67f82016-12-09 12:44:40 +0100708 u8 ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100709
710 vcpu->stat.instruction_stsi++;
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200711 VCPU_EVENT(vcpu, 3, "STSI: fc: %u sel1: %u sel2: %u", fc, sel1, sel2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100712
Thomas Huth5087dfa2013-06-20 17:22:01 +0200713 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
714 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
715
Thomas Huth87d41fb2013-06-20 17:22:05 +0200716 if (fc > 3) {
Thomas Huthea828eb2013-07-26 15:04:06 +0200717 kvm_s390_set_psw_cc(vcpu, 3);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200718 return 0;
719 }
720
721 if (vcpu->run->s.regs.gprs[0] & 0x0fffff00
722 || vcpu->run->s.regs.gprs[1] & 0xffff0000)
723 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
724
725 if (fc == 0) {
726 vcpu->run->s.regs.gprs[0] = 3 << 28;
Thomas Huthea828eb2013-07-26 15:04:06 +0200727 kvm_s390_set_psw_cc(vcpu, 0);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200728 return 0;
729 }
730
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300731 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100732
Thomas Huth87d41fb2013-06-20 17:22:05 +0200733 if (operand2 & 0xfff)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100734 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
735
736 switch (fc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100737 case 1: /* same handling for 1 and 2 */
738 case 2:
739 mem = get_zeroed_page(GFP_KERNEL);
740 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100741 goto out_no_data;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200742 if (stsi((void *) mem, fc, sel1, sel2))
Heiko Carstensc51f0682013-03-25 17:22:54 +0100743 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100744 break;
745 case 3:
746 if (sel1 != 2 || sel2 != 2)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100747 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100748 mem = get_zeroed_page(GFP_KERNEL);
749 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100750 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100751 handle_stsi_3_2_2(vcpu, (void *) mem);
752 break;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100753 }
754
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300755 rc = write_guest(vcpu, operand2, ar, (void *)mem, PAGE_SIZE);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100756 if (rc) {
757 rc = kvm_s390_inject_prog_cond(vcpu, rc);
758 goto out;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100759 }
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100760 if (vcpu->kvm->arch.user_stsi) {
761 insert_stsi_usr_data(vcpu, operand2, ar, fc, sel1, sel2);
762 rc = -EREMOTE;
763 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200764 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100765 free_page(mem);
Thomas Huthea828eb2013-07-26 15:04:06 +0200766 kvm_s390_set_psw_cc(vcpu, 0);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100767 vcpu->run->s.regs.gprs[0] = 0;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100768 return rc;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100769out_no_data:
Thomas Huthea828eb2013-07-26 15:04:06 +0200770 kvm_s390_set_psw_cc(vcpu, 3);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100771out:
Heiko Carstensc51f0682013-03-25 17:22:54 +0100772 free_page(mem);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100773 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100774}
775
Cornelia Huckf379aae2012-12-20 15:32:10 +0100776static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100777 [0x02] = handle_stidp,
Thomas Huth6a3f95a2013-09-12 10:33:49 +0200778 [0x04] = handle_set_clock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100779 [0x10] = handle_set_prefix,
780 [0x11] = handle_store_prefix,
781 [0x12] = handle_store_cpu_address,
David Hildenbranda3508fb2015-07-08 13:19:48 +0200782 [0x14] = kvm_s390_handle_vsie,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100783 [0x21] = handle_ipte_interlock,
David Hildenbranda7e19ab2016-05-10 09:50:21 +0200784 [0x29] = handle_iske,
785 [0x2a] = handle_rrbe,
786 [0x2b] = handle_sske,
Thomas Huthaca84242013-09-12 10:33:48 +0200787 [0x2c] = handle_test_block,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100788 [0x30] = handle_io_inst,
789 [0x31] = handle_io_inst,
790 [0x32] = handle_io_inst,
791 [0x33] = handle_io_inst,
792 [0x34] = handle_io_inst,
793 [0x35] = handle_io_inst,
794 [0x36] = handle_io_inst,
795 [0x37] = handle_io_inst,
796 [0x38] = handle_io_inst,
797 [0x39] = handle_io_inst,
798 [0x3a] = handle_io_inst,
799 [0x3b] = handle_io_inst,
800 [0x3c] = handle_io_inst,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100801 [0x50] = handle_ipte_interlock,
Christian Borntraegerc0a6bfd2017-02-27 21:14:47 +0100802 [0x56] = handle_sthyi,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100803 [0x5f] = handle_io_inst,
804 [0x74] = handle_io_inst,
805 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100806 [0x7d] = handle_stsi,
807 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100808 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100809};
810
Christian Borntraeger70455a32009-01-22 10:28:29 +0100811int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100812{
813 intercept_handler_t handler;
814
Christian Borntraeger70455a32009-01-22 10:28:29 +0100815 /*
Thomas Huth5087dfa2013-06-20 17:22:01 +0200816 * A lot of B2 instructions are priviledged. Here we check for
817 * the privileged ones, that we can handle in the kernel.
818 * Anything else goes to userspace.
819 */
Cornelia Huckf379aae2012-12-20 15:32:10 +0100820 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200821 if (handler)
822 return handler(vcpu);
823
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100824 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100825}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200826
Cornelia Huck48a3e952012-12-20 15:32:09 +0100827static int handle_epsw(struct kvm_vcpu *vcpu)
828{
829 int reg1, reg2;
830
Thomas Huthaeb87c32013-06-12 13:54:57 +0200831 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100832
833 /* This basically extracts the mask half of the psw. */
Thomas Huth843200e2013-07-26 15:04:05 +0200834 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100835 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
836 if (reg2) {
Thomas Huth843200e2013-07-26 15:04:05 +0200837 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100838 vcpu->run->s.regs.gprs[reg2] |=
Thomas Huth843200e2013-07-26 15:04:05 +0200839 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100840 }
841 return 0;
842}
843
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200844#define PFMF_RESERVED 0xfffc0101UL
845#define PFMF_SK 0x00020000UL
846#define PFMF_CF 0x00010000UL
847#define PFMF_UI 0x00008000UL
848#define PFMF_FSC 0x00007000UL
849#define PFMF_NQ 0x00000800UL
850#define PFMF_MR 0x00000400UL
851#define PFMF_MC 0x00000200UL
852#define PFMF_KEY 0x000000feUL
853
854static int handle_pfmf(struct kvm_vcpu *vcpu)
855{
David Hildenbrand1824c722016-05-10 09:43:11 +0200856 bool mr = false, mc = false, nq;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200857 int reg1, reg2;
858 unsigned long start, end;
David Hildenbrand1824c722016-05-10 09:43:11 +0200859 unsigned char key;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200860
861 vcpu->stat.instruction_pfmf++;
862
863 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
864
Heiko Carstens03c02802015-11-13 13:31:58 +0100865 if (!test_kvm_facility(vcpu->kvm, 8))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200866 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
867
868 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200869 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200870
871 if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
872 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
873
David Hildenbrandedc5b052016-03-04 11:08:09 +0100874 /* Only provide non-quiescing support if enabled for the guest */
875 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ &&
876 !test_kvm_facility(vcpu->kvm, 14))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200877 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
878
David Hildenbrand1824c722016-05-10 09:43:11 +0200879 /* Only provide conditional-SSKE support if enabled for the guest */
880 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK &&
881 test_kvm_facility(vcpu->kvm, 10)) {
882 mr = vcpu->run->s.regs.gprs[reg1] & PFMF_MR;
883 mc = vcpu->run->s.regs.gprs[reg1] & PFMF_MC;
884 }
885
886 nq = vcpu->run->s.regs.gprs[reg1] & PFMF_NQ;
887 key = vcpu->run->s.regs.gprs[reg1] & PFMF_KEY;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200888 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Hutha02689f2014-11-10 15:59:32 +0100889 start = kvm_s390_logical_to_effective(vcpu, start);
Thomas Huthfb34c6032013-09-09 17:58:38 +0200890
David Hildenbrand6164a2e2016-04-13 10:09:47 +0200891 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
892 if (kvm_s390_check_low_addr_prot_real(vcpu, start))
893 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
894 }
895
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200896 switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
897 case 0x00000000:
David Hildenbrand6164a2e2016-04-13 10:09:47 +0200898 /* only 4k frames specify a real address */
899 start = kvm_s390_real_to_abs(vcpu, start);
Heiko Carstens58cdf5e2017-07-05 07:37:14 +0200900 end = (start + PAGE_SIZE) & ~(PAGE_SIZE - 1);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200901 break;
902 case 0x00001000:
Heiko Carstens58cdf5e2017-07-05 07:37:14 +0200903 end = (start + _SEGMENT_SIZE) & ~(_SEGMENT_SIZE - 1);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200904 break;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200905 case 0x00002000:
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100906 /* only support 2G frame size if EDAT2 is available and we are
907 not in 24-bit addressing mode */
908 if (!test_kvm_facility(vcpu->kvm, 78) ||
Heiko Carstens8bb3fdd2017-06-03 10:19:55 +0200909 psw_bits(vcpu->arch.sie_block->gpsw).eaba == PSW_BITS_AMODE_24BIT)
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100910 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens58cdf5e2017-07-05 07:37:14 +0200911 end = (start + _REGION3_SIZE) & ~(_REGION3_SIZE - 1);
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100912 break;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200913 default:
914 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
915 }
Thomas Hutha02689f2014-11-10 15:59:32 +0100916
David Hildenbrand695be0e2016-05-12 14:07:05 +0200917 while (start != end) {
David Hildenbrand6164a2e2016-04-13 10:09:47 +0200918 unsigned long useraddr;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200919
Thomas Huthfb34c6032013-09-09 17:58:38 +0200920 /* Translate guest address to host address */
David Hildenbrand6164a2e2016-04-13 10:09:47 +0200921 useraddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(start));
Thomas Huthfb34c6032013-09-09 17:58:38 +0200922 if (kvm_is_error_hva(useraddr))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200923 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
924
925 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
926 if (clear_user((void __user *)useraddr, PAGE_SIZE))
927 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
928 }
929
930 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) {
Farhan Ali730cd632017-02-24 16:12:56 -0500931 int rc = kvm_s390_skey_check_enable(vcpu);
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200932
933 if (rc)
934 return rc;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +0100935 down_read(&current->mm->mmap_sem);
David Hildenbrand1824c722016-05-10 09:43:11 +0200936 rc = cond_set_guest_storage_key(current->mm, useraddr,
937 key, NULL, nq, mr, mc);
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +0100938 up_read(&current->mm->mmap_sem);
David Hildenbrand1824c722016-05-10 09:43:11 +0200939 if (rc < 0)
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200940 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
941 }
942
943 start += PAGE_SIZE;
944 }
David Hildenbrand2c26d1d2016-04-13 15:47:21 +0200945 if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
Heiko Carstens8bb3fdd2017-06-03 10:19:55 +0200946 if (psw_bits(vcpu->arch.sie_block->gpsw).eaba == PSW_BITS_AMODE_64BIT) {
David Hildenbrand2c26d1d2016-04-13 15:47:21 +0200947 vcpu->run->s.regs.gprs[reg2] = end;
948 } else {
949 vcpu->run->s.regs.gprs[reg2] &= ~0xffffffffUL;
950 end = kvm_s390_logical_to_effective(vcpu, end);
951 vcpu->run->s.regs.gprs[reg2] |= end;
952 }
953 }
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200954 return 0;
955}
956
Claudio Imbrenda190df4a2016-08-04 17:54:42 +0200957static inline int do_essa(struct kvm_vcpu *vcpu, const int orc)
958{
959 struct kvm_s390_migration_state *ms = vcpu->kvm->arch.migration_state;
960 int r1, r2, nappended, entries;
961 unsigned long gfn, hva, res, pgstev, ptev;
962 unsigned long *cbrlo;
963
964 /*
965 * We don't need to set SD.FPF.SK to 1 here, because if we have a
966 * machine check here we either handle it or crash
967 */
968
969 kvm_s390_get_regs_rre(vcpu, &r1, &r2);
970 gfn = vcpu->run->s.regs.gprs[r2] >> PAGE_SHIFT;
971 hva = gfn_to_hva(vcpu->kvm, gfn);
972 entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3;
973
974 if (kvm_is_error_hva(hva))
975 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
976
977 nappended = pgste_perform_essa(vcpu->kvm->mm, hva, orc, &ptev, &pgstev);
978 if (nappended < 0) {
979 res = orc ? 0x10 : 0;
980 vcpu->run->s.regs.gprs[r1] = res; /* Exception Indication */
981 return 0;
982 }
983 res = (pgstev & _PGSTE_GPS_USAGE_MASK) >> 22;
984 /*
985 * Set the block-content state part of the result. 0 means resident, so
986 * nothing to do if the page is valid. 2 is for preserved pages
987 * (non-present and non-zero), and 3 for zero pages (non-present and
988 * zero).
989 */
990 if (ptev & _PAGE_INVALID) {
991 res |= 2;
992 if (pgstev & _PGSTE_GPS_ZERO)
993 res |= 1;
994 }
Claudio Imbrenda1bab1c02016-08-29 15:56:55 +0200995 if (pgstev & _PGSTE_GPS_NODAT)
996 res |= 0x20;
Claudio Imbrenda190df4a2016-08-04 17:54:42 +0200997 vcpu->run->s.regs.gprs[r1] = res;
998 /*
999 * It is possible that all the normal 511 slots were full, in which case
1000 * we will now write in the 512th slot, which is reserved for host use.
1001 * In both cases we let the normal essa handling code process all the
1002 * slots, including the reserved one, if needed.
1003 */
1004 if (nappended > 0) {
1005 cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo & PAGE_MASK);
1006 cbrlo[entries] = gfn << PAGE_SHIFT;
1007 }
1008
Christian Borntraegerc2cf2652017-12-21 09:18:22 +01001009 if (orc && gfn < ms->bitmap_size) {
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001010 /* increment only if we are really flipping the bit to 1 */
1011 if (!test_and_set_bit(gfn, ms->pgste_bitmap))
1012 atomic64_inc(&ms->dirty_pages);
1013 }
1014
1015 return nappended;
1016}
1017
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001018static int handle_essa(struct kvm_vcpu *vcpu)
1019{
1020 /* entries expected to be 1FF */
1021 int entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3;
David Hildenbrand4a5e7e32016-04-12 13:32:25 +02001022 unsigned long *cbrlo;
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001023 struct gmap *gmap;
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001024 int i, orc;
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001025
Christian Borntraeger7cbde762015-07-21 12:44:57 +02001026 VCPU_EVENT(vcpu, 4, "ESSA: release %d pages", entries);
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001027 gmap = vcpu->arch.gmap;
1028 vcpu->stat.instruction_essa++;
Dominik Dingele6db1d62015-05-07 15:41:57 +02001029 if (!vcpu->kvm->arch.use_cmma)
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001030 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
1031
1032 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
1033 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001034 /* Check for invalid operation request code */
1035 orc = (vcpu->arch.sie_block->ipb & 0xf0000000) >> 28;
Claudio Imbrenda1bab1c02016-08-29 15:56:55 +02001036 /* ORCs 0-6 are always valid */
1037 if (orc > (test_kvm_facility(vcpu->kvm, 147) ? ESSA_SET_STABLE_NODAT
1038 : ESSA_SET_STABLE_IF_RESIDENT))
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001039 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
1040
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001041 if (likely(!vcpu->kvm->arch.migration_state)) {
1042 /*
1043 * CMMA is enabled in the KVM settings, but is disabled in
1044 * the SIE block and in the mm_context, and we are not doing
1045 * a migration. Enable CMMA in the mm_context.
1046 * Since we need to take a write lock to write to the context
1047 * to avoid races with storage keys handling, we check if the
1048 * value really needs to be written to; if the value is
1049 * already correct, we do nothing and avoid the lock.
1050 */
1051 if (vcpu->kvm->mm->context.use_cmma == 0) {
1052 down_write(&vcpu->kvm->mm->mmap_sem);
1053 vcpu->kvm->mm->context.use_cmma = 1;
1054 up_write(&vcpu->kvm->mm->mmap_sem);
1055 }
1056 /*
1057 * If we are here, we are supposed to have CMMA enabled in
1058 * the SIE block. Enabling CMMA works on a per-CPU basis,
1059 * while the context use_cmma flag is per process.
1060 * It's possible that the context flag is enabled and the
1061 * SIE flag is not, so we set the flag always; if it was
1062 * already set, nothing changes, otherwise we enable it
1063 * on this CPU too.
1064 */
1065 vcpu->arch.sie_block->ecb2 |= ECB2_CMMA;
1066 /* Retry the ESSA instruction */
1067 kvm_s390_retry_instr(vcpu);
1068 } else {
1069 /* Account for the possible extra cbrl entry */
1070 i = do_essa(vcpu, orc);
1071 if (i < 0)
1072 return i;
1073 entries += i;
1074 }
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001075 vcpu->arch.sie_block->cbrlo &= PAGE_MASK; /* reset nceo */
1076 cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo);
1077 down_read(&gmap->mm->mmap_sem);
David Hildenbrand4a5e7e32016-04-12 13:32:25 +02001078 for (i = 0; i < entries; ++i)
1079 __gmap_zap(gmap, cbrlo[i]);
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001080 up_read(&gmap->mm->mmap_sem);
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001081 return 0;
1082}
1083
Cornelia Huck48a3e952012-12-20 15:32:09 +01001084static const intercept_handler_t b9_handlers[256] = {
Heiko Carstens8a2422342014-01-10 14:33:28 +01001085 [0x8a] = handle_ipte_interlock,
Cornelia Huck48a3e952012-12-20 15:32:09 +01001086 [0x8d] = handle_epsw,
Heiko Carstens8a2422342014-01-10 14:33:28 +01001087 [0x8e] = handle_ipte_interlock,
1088 [0x8f] = handle_ipte_interlock,
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001089 [0xab] = handle_essa,
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +02001090 [0xaf] = handle_pfmf,
Cornelia Huck48a3e952012-12-20 15:32:09 +01001091};
1092
1093int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
1094{
1095 intercept_handler_t handler;
1096
1097 /* This is handled just as for the B2 instructions. */
1098 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +02001099 if (handler)
1100 return handler(vcpu);
1101
Cornelia Huck48a3e952012-12-20 15:32:09 +01001102 return -EOPNOTSUPP;
1103}
1104
Thomas Huth953ed882013-06-20 17:22:04 +02001105int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu)
1106{
1107 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
1108 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001109 int reg, rc, nr_regs;
1110 u32 ctl_array[16];
Heiko Carstensf987a3e2014-01-01 16:59:21 +01001111 u64 ga;
Christian Borntraeger27f67f82016-12-09 12:44:40 +01001112 u8 ar;
Thomas Huth953ed882013-06-20 17:22:04 +02001113
1114 vcpu->stat.instruction_lctl++;
1115
1116 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
1117 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
1118
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001119 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
Thomas Huth953ed882013-06-20 17:22:04 +02001120
Heiko Carstensf987a3e2014-01-01 16:59:21 +01001121 if (ga & 3)
Thomas Huth953ed882013-06-20 17:22:04 +02001122 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
1123
Christian Borntraeger7cbde762015-07-21 12:44:57 +02001124 VCPU_EVENT(vcpu, 4, "LCTL: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
Heiko Carstensf987a3e2014-01-01 16:59:21 +01001125 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +02001126
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001127 nr_regs = ((reg3 - reg1) & 0xf) + 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001128 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001129 if (rc)
1130 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth953ed882013-06-20 17:22:04 +02001131 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001132 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +02001133 do {
Thomas Huth953ed882013-06-20 17:22:04 +02001134 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001135 vcpu->arch.sie_block->gcr[reg] |= ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +02001136 if (reg == reg3)
1137 break;
1138 reg = (reg + 1) % 16;
1139 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +01001140 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +02001141 return 0;
1142}
1143
David Hildenbrandaba07502014-01-23 10:47:13 +01001144int kvm_s390_handle_stctl(struct kvm_vcpu *vcpu)
1145{
1146 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
1147 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001148 int reg, rc, nr_regs;
1149 u32 ctl_array[16];
David Hildenbrandaba07502014-01-23 10:47:13 +01001150 u64 ga;
Christian Borntraeger27f67f82016-12-09 12:44:40 +01001151 u8 ar;
David Hildenbrandaba07502014-01-23 10:47:13 +01001152
1153 vcpu->stat.instruction_stctl++;
1154
1155 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
1156 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
1157
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001158 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
David Hildenbrandaba07502014-01-23 10:47:13 +01001159
1160 if (ga & 3)
1161 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
1162
Christian Borntraeger7cbde762015-07-21 12:44:57 +02001163 VCPU_EVENT(vcpu, 4, "STCTL r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
David Hildenbrandaba07502014-01-23 10:47:13 +01001164 trace_kvm_s390_handle_stctl(vcpu, 0, reg1, reg3, ga);
1165
1166 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001167 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +01001168 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001169 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +01001170 if (reg == reg3)
1171 break;
1172 reg = (reg + 1) % 16;
1173 } while (1);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001174 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001175 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +01001176}
1177
Thomas Huth953ed882013-06-20 17:22:04 +02001178static int handle_lctlg(struct kvm_vcpu *vcpu)
1179{
1180 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
1181 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001182 int reg, rc, nr_regs;
1183 u64 ctl_array[16];
1184 u64 ga;
Christian Borntraeger27f67f82016-12-09 12:44:40 +01001185 u8 ar;
Thomas Huth953ed882013-06-20 17:22:04 +02001186
1187 vcpu->stat.instruction_lctlg++;
1188
1189 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
1190 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
1191
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001192 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
Thomas Huth953ed882013-06-20 17:22:04 +02001193
Heiko Carstensf987a3e2014-01-01 16:59:21 +01001194 if (ga & 7)
Thomas Huth953ed882013-06-20 17:22:04 +02001195 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
1196
Christian Borntraeger7cbde762015-07-21 12:44:57 +02001197 VCPU_EVENT(vcpu, 4, "LCTLG: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
Heiko Carstensf987a3e2014-01-01 16:59:21 +01001198 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +02001199
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001200 nr_regs = ((reg3 - reg1) & 0xf) + 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001201 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001202 if (rc)
1203 return kvm_s390_inject_prog_cond(vcpu, rc);
1204 reg = reg1;
1205 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +02001206 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001207 vcpu->arch.sie_block->gcr[reg] = ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +02001208 if (reg == reg3)
1209 break;
1210 reg = (reg + 1) % 16;
1211 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +01001212 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +02001213 return 0;
1214}
1215
David Hildenbrandaba07502014-01-23 10:47:13 +01001216static int handle_stctg(struct kvm_vcpu *vcpu)
1217{
1218 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
1219 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001220 int reg, rc, nr_regs;
1221 u64 ctl_array[16];
1222 u64 ga;
Christian Borntraeger27f67f82016-12-09 12:44:40 +01001223 u8 ar;
David Hildenbrandaba07502014-01-23 10:47:13 +01001224
1225 vcpu->stat.instruction_stctg++;
1226
1227 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
1228 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
1229
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001230 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
David Hildenbrandaba07502014-01-23 10:47:13 +01001231
1232 if (ga & 7)
1233 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
1234
Christian Borntraeger7cbde762015-07-21 12:44:57 +02001235 VCPU_EVENT(vcpu, 4, "STCTG r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
David Hildenbrandaba07502014-01-23 10:47:13 +01001236 trace_kvm_s390_handle_stctl(vcpu, 1, reg1, reg3, ga);
1237
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001238 reg = reg1;
1239 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +01001240 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001241 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +01001242 if (reg == reg3)
1243 break;
1244 reg = (reg + 1) % 16;
1245 } while (1);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001246 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
Heiko Carstensfc56eb62014-10-29 10:07:16 +01001247 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +01001248}
1249
Cornelia Huckf379aae2012-12-20 15:32:10 +01001250static const intercept_handler_t eb_handlers[256] = {
Thomas Huth953ed882013-06-20 17:22:04 +02001251 [0x2f] = handle_lctlg,
David Hildenbrandaba07502014-01-23 10:47:13 +01001252 [0x25] = handle_stctg,
Fan Zhang80cd8762016-08-15 04:53:22 +02001253 [0x60] = handle_ri,
1254 [0x61] = handle_ri,
1255 [0x62] = handle_ri,
Cornelia Huckf379aae2012-12-20 15:32:10 +01001256};
1257
Thomas Huth953ed882013-06-20 17:22:04 +02001258int kvm_s390_handle_eb(struct kvm_vcpu *vcpu)
Cornelia Huckf379aae2012-12-20 15:32:10 +01001259{
1260 intercept_handler_t handler;
1261
Cornelia Huckf379aae2012-12-20 15:32:10 +01001262 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
1263 if (handler)
1264 return handler(vcpu);
1265 return -EOPNOTSUPP;
1266}
1267
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001268static int handle_tprot(struct kvm_vcpu *vcpu)
1269{
Cornelia Huckb1c571a2012-12-20 15:32:07 +01001270 u64 address1, address2;
Thomas Hutha0465f92014-02-04 14:48:07 +01001271 unsigned long hva, gpa;
1272 int ret = 0, cc = 0;
1273 bool writable;
Christian Borntraeger27f67f82016-12-09 12:44:40 +01001274 u8 ar;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001275
1276 vcpu->stat.instruction_tprot++;
1277
Thomas Huthf9f6bbc2013-06-20 17:22:00 +02001278 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
1279 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
1280
Alexander Yarygin8ae04b82015-01-19 13:24:51 +03001281 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2, &ar, NULL);
Cornelia Huckb1c571a2012-12-20 15:32:07 +01001282
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001283 /* we only handle the Linux memory detection case:
1284 * access key == 0
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001285 * everything else goes to userspace. */
1286 if (address2 & 0xf0)
1287 return -EOPNOTSUPP;
1288 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
Thomas Hutha0465f92014-02-04 14:48:07 +01001289 ipte_lock(vcpu);
David Hildenbrand92c96322015-11-16 15:42:11 +01001290 ret = guest_translate_address(vcpu, address1, ar, &gpa, GACC_STORE);
Thomas Hutha0465f92014-02-04 14:48:07 +01001291 if (ret == PGM_PROTECTION) {
1292 /* Write protected? Try again with read-only... */
1293 cc = 1;
David Hildenbrand92c96322015-11-16 15:42:11 +01001294 ret = guest_translate_address(vcpu, address1, ar, &gpa,
1295 GACC_FETCH);
Thomas Hutha0465f92014-02-04 14:48:07 +01001296 }
1297 if (ret) {
1298 if (ret == PGM_ADDRESSING || ret == PGM_TRANSLATION_SPEC) {
1299 ret = kvm_s390_inject_program_int(vcpu, ret);
1300 } else if (ret > 0) {
1301 /* Translation not available */
1302 kvm_s390_set_psw_cc(vcpu, 3);
1303 ret = 0;
1304 }
1305 goto out_unlock;
1306 }
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001307
Thomas Hutha0465f92014-02-04 14:48:07 +01001308 hva = gfn_to_hva_prot(vcpu->kvm, gpa_to_gfn(gpa), &writable);
1309 if (kvm_is_error_hva(hva)) {
1310 ret = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
1311 } else {
1312 if (!writable)
1313 cc = 1; /* Write not permitted ==> read-only */
1314 kvm_s390_set_psw_cc(vcpu, cc);
1315 /* Note: CC2 only occurs for storage keys (not supported yet) */
1316 }
1317out_unlock:
1318 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
1319 ipte_unlock(vcpu);
1320 return ret;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001321}
1322
1323int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
1324{
1325 /* For e5xx... instructions we only handle TPROT */
1326 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
1327 return handle_tprot(vcpu);
1328 return -EOPNOTSUPP;
1329}
1330
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001331static int handle_sckpf(struct kvm_vcpu *vcpu)
1332{
1333 u32 value;
1334
1335 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +02001336 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001337
1338 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
1339 return kvm_s390_inject_program_int(vcpu,
1340 PGM_SPECIFICATION);
1341
1342 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
1343 vcpu->arch.sie_block->todpr = value;
1344
1345 return 0;
1346}
1347
David Hildenbrand9acc3172016-07-18 09:18:13 +02001348static int handle_ptff(struct kvm_vcpu *vcpu)
1349{
1350 /* we don't emulate any control instructions yet */
1351 kvm_s390_set_psw_cc(vcpu, 3);
1352 return 0;
1353}
1354
Cornelia Huck77975352012-12-20 15:32:06 +01001355static const intercept_handler_t x01_handlers[256] = {
David Hildenbrand9acc3172016-07-18 09:18:13 +02001356 [0x04] = handle_ptff,
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001357 [0x07] = handle_sckpf,
1358};
1359
1360int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
1361{
1362 intercept_handler_t handler;
1363
1364 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
1365 if (handler)
1366 return handler(vcpu);
1367 return -EOPNOTSUPP;
1368}