KVM: s390: fix get_all_floating_irqs
[deliverable/linux.git] / arch / s390 / kvm / priv.c
CommitLineData
453423dc 1/*
a53c8fab 2 * handling privileged instructions
453423dc 3 *
69d0d3a3 4 * Copyright IBM Corp. 2008, 2013
453423dc
CB
5 *
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>
5a0e3ad6 15#include <linux/gfp.h>
453423dc 16#include <linux/errno.h>
b13b5dc7 17#include <linux/compat.h>
7c959e82 18#include <asm/asm-offsets.h>
e769ece3 19#include <asm/facility.h>
453423dc
CB
20#include <asm/current.h>
21#include <asm/debug.h>
22#include <asm/ebcdic.h>
23#include <asm/sysinfo.h>
69d0d3a3
CB
24#include <asm/pgtable.h>
25#include <asm/pgalloc.h>
26#include <asm/io.h>
48a3e950
CH
27#include <asm/ptrace.h>
28#include <asm/compat.h>
453423dc
CB
29#include "gaccess.h"
30#include "kvm-s390.h"
5786fffa 31#include "trace.h"
453423dc 32
6a3f95a6
TH
33/* Handle SCK (SET CLOCK) interception */
34static int handle_set_clock(struct kvm_vcpu *vcpu)
35{
36 struct kvm_vcpu *cpup;
37 s64 hostclk, val;
0e7a3f94 38 int i, rc;
8ae04b8f 39 ar_t ar;
6a3f95a6 40 u64 op2;
6a3f95a6
TH
41
42 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
43 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
44
8ae04b8f 45 op2 = kvm_s390_get_base_disp_s(vcpu, &ar);
6a3f95a6
TH
46 if (op2 & 7) /* Operand must be on a doubleword boundary */
47 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
8ae04b8f 48 rc = read_guest(vcpu, op2, ar, &val, sizeof(val));
0e7a3f94
HC
49 if (rc)
50 return kvm_s390_inject_prog_cond(vcpu, rc);
6a3f95a6
TH
51
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
453423dc
CB
67static int handle_set_prefix(struct kvm_vcpu *vcpu)
68{
453423dc 69 u64 operand2;
665170cb
HC
70 u32 address;
71 int rc;
8ae04b8f 72 ar_t ar;
453423dc
CB
73
74 vcpu->stat.instruction_spx++;
75
5087dfa6
TH
76 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
77 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
78
8ae04b8f 79 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
453423dc
CB
80
81 /* must be word boundary */
db4a29cb
HC
82 if (operand2 & 3)
83 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
453423dc
CB
84
85 /* get the value */
8ae04b8f 86 rc = read_guest(vcpu, operand2, ar, &address, sizeof(address));
665170cb
HC
87 if (rc)
88 return kvm_s390_inject_prog_cond(vcpu, rc);
89
90 address &= 0x7fffe000u;
91
92 /*
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))
db4a29cb 98 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
453423dc 99
8d26cf7b 100 kvm_s390_set_prefix(vcpu, address);
453423dc
CB
101
102 VCPU_EVENT(vcpu, 5, "setting prefix to %x", address);
5786fffa 103 trace_kvm_s390_handle_prefix(vcpu, 1, address);
453423dc
CB
104 return 0;
105}
106
107static int handle_store_prefix(struct kvm_vcpu *vcpu)
108{
453423dc
CB
109 u64 operand2;
110 u32 address;
f748f4a7 111 int rc;
8ae04b8f 112 ar_t ar;
453423dc
CB
113
114 vcpu->stat.instruction_stpx++;
b1c571a5 115
5087dfa6
TH
116 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
117 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
118
8ae04b8f 119 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
453423dc
CB
120
121 /* must be word boundary */
db4a29cb
HC
122 if (operand2 & 3)
123 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
453423dc 124
fda902cb 125 address = kvm_s390_get_prefix(vcpu);
453423dc
CB
126
127 /* get the value */
8ae04b8f 128 rc = write_guest(vcpu, operand2, ar, &address, sizeof(address));
f748f4a7
HC
129 if (rc)
130 return kvm_s390_inject_prog_cond(vcpu, rc);
453423dc
CB
131
132 VCPU_EVENT(vcpu, 5, "storing prefix to %x", address);
5786fffa 133 trace_kvm_s390_handle_prefix(vcpu, 0, address);
453423dc
CB
134 return 0;
135}
136
137static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
138{
8b96de0e
HC
139 u16 vcpu_id = vcpu->vcpu_id;
140 u64 ga;
141 int rc;
8ae04b8f 142 ar_t ar;
453423dc
CB
143
144 vcpu->stat.instruction_stap++;
b1c571a5 145
5087dfa6
TH
146 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
147 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
148
8ae04b8f 149 ga = kvm_s390_get_base_disp_s(vcpu, &ar);
453423dc 150
8b96de0e 151 if (ga & 1)
db4a29cb 152 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
453423dc 153
8ae04b8f 154 rc = write_guest(vcpu, ga, ar, &vcpu_id, sizeof(vcpu_id));
8b96de0e
HC
155 if (rc)
156 return kvm_s390_inject_prog_cond(vcpu, rc);
453423dc 157
8b96de0e
HC
158 VCPU_EVENT(vcpu, 5, "storing cpu address to %llx", ga);
159 trace_kvm_s390_handle_stap(vcpu, ga);
453423dc
CB
160 return 0;
161}
162
3ac8e380 163static int __skey_check_enable(struct kvm_vcpu *vcpu)
693ffc08 164{
3ac8e380 165 int rc = 0;
693ffc08 166 if (!(vcpu->arch.sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)))
3ac8e380 167 return rc;
693ffc08 168
3ac8e380 169 rc = s390_enable_skey();
693ffc08
DD
170 trace_kvm_s390_skey_related_inst(vcpu);
171 vcpu->arch.sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE | ICTL_RRBE);
3ac8e380 172 return rc;
693ffc08
DD
173}
174
175
453423dc
CB
176static int handle_skey(struct kvm_vcpu *vcpu)
177{
3ac8e380 178 int rc = __skey_check_enable(vcpu);
693ffc08 179
3ac8e380
DD
180 if (rc)
181 return rc;
453423dc 182 vcpu->stat.instruction_storage_key++;
5087dfa6
TH
183
184 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
185 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
186
04b41acd 187 kvm_s390_rewind_psw(vcpu, 4);
453423dc
CB
188 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
189 return 0;
190}
191
8a242234
HC
192static int handle_ipte_interlock(struct kvm_vcpu *vcpu)
193{
8a242234 194 vcpu->stat.instruction_ipte_interlock++;
04b41acd 195 if (psw_bits(vcpu->arch.sie_block->gpsw).p)
8a242234
HC
196 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
197 wait_event(vcpu->kvm->arch.ipte_wq, !ipte_lock_held(vcpu));
04b41acd 198 kvm_s390_rewind_psw(vcpu, 4);
8a242234
HC
199 VCPU_EVENT(vcpu, 4, "%s", "retrying ipte interlock operation");
200 return 0;
201}
202
aca84241
TH
203static int handle_test_block(struct kvm_vcpu *vcpu)
204{
aca84241
TH
205 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;
e45efa28 213 addr = kvm_s390_logical_to_effective(vcpu, addr);
dd9e5b7b 214 if (kvm_s390_check_low_addr_prot_real(vcpu, addr))
e45efa28 215 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
aca84241
TH
216 addr = kvm_s390_real_to_abs(vcpu, addr);
217
ef23e779 218 if (kvm_is_error_gpa(vcpu->kvm, addr))
aca84241
TH
219 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 */
ef23e779 224 if (kvm_clear_guest(vcpu->kvm, addr, PAGE_SIZE))
aca84241
TH
225 return -EFAULT;
226 kvm_s390_set_psw_cc(vcpu, 0);
227 vcpu->run->s.regs.gprs[0] = 0;
228 return 0;
229}
230
fa6b7fe9 231static int handle_tpi(struct kvm_vcpu *vcpu)
453423dc 232{
fa6b7fe9 233 struct kvm_s390_interrupt_info *inti;
4799b557
HC
234 unsigned long len;
235 u32 tpi_data[3];
261520dc 236 int rc;
7c959e82 237 u64 addr;
8ae04b8f 238 ar_t ar;
fa6b7fe9 239
8ae04b8f 240 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
db4a29cb
HC
241 if (addr & 3)
242 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
261520dc 243
f092669e 244 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0);
261520dc
DH
245 if (!inti) {
246 kvm_s390_set_psw_cc(vcpu, 0);
247 return 0;
248 }
249
4799b557
HC
250 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;
7c959e82
HC
253 if (addr) {
254 /*
255 * Store the two-word I/O interruption code into the
256 * provided area.
257 */
4799b557 258 len = sizeof(tpi_data) - 4;
8ae04b8f 259 rc = write_guest(vcpu, addr, ar, &tpi_data, len);
261520dc
DH
260 if (rc) {
261 rc = kvm_s390_inject_prog_cond(vcpu, rc);
262 goto reinject_interrupt;
263 }
7c959e82
HC
264 } else {
265 /*
266 * Store the three-word I/O interruption code into
267 * the appropriate lowcore area.
268 */
4799b557 269 len = sizeof(tpi_data);
261520dc
DH
270 if (write_guest_lc(vcpu, __LC_SUBCHANNEL_ID, &tpi_data, len)) {
271 /* failed writes to the low core are not recoverable */
4799b557 272 rc = -EFAULT;
261520dc
DH
273 goto reinject_interrupt;
274 }
7c959e82 275 }
261520dc
DH
276
277 /* irq was successfully handed to the guest */
278 kfree(inti);
279 kvm_s390_set_psw_cc(vcpu, 1);
280 return 0;
281reinject_interrupt:
2f32d4ea
CH
282 /*
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 */
15462e37
DH
287 if (kvm_s390_reinject_io_int(vcpu->kvm, inti)) {
288 kfree(inti);
289 rc = -EFAULT;
290 }
261520dc 291 /* don't set the cc, a pgm irq was injected or we drop to user space */
4799b557 292 return rc ? -EFAULT : 0;
453423dc
CB
293}
294
fa6b7fe9
CH
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
323static int handle_io_inst(struct kvm_vcpu *vcpu)
324{
325 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
326
5087dfa6
TH
327 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
328 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
329
fa6b7fe9
CH
330 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 /*
b4a96015 343 * Set condition code 3 to stop the guest from issuing channel
fa6b7fe9
CH
344 * I/O instructions.
345 */
ea828ebf 346 kvm_s390_set_psw_cc(vcpu, 3);
fa6b7fe9
CH
347 return 0;
348 }
349}
350
453423dc
CB
351static int handle_stfl(struct kvm_vcpu *vcpu)
352{
453423dc 353 int rc;
9d8d5786 354 unsigned int fac;
453423dc
CB
355
356 vcpu->stat.instruction_stfl++;
5087dfa6
TH
357
358 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
359 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
360
9d8d5786
MM
361 /*
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 */
981467c9 365 fac = *vcpu->kvm->arch.model.fac->list >> 32;
0f9701c6 366 rc = write_guest_lc(vcpu, offsetof(struct _lowcore, stfl_fac_list),
9d8d5786 367 &fac, sizeof(fac));
dc5008b9 368 if (rc)
0f9701c6 369 return rc;
9d8d5786
MM
370 VCPU_EVENT(vcpu, 5, "store facility list value %x", fac);
371 trace_kvm_s390_handle_stfl(vcpu, fac);
453423dc
CB
372 return 0;
373}
374
48a3e950
CH
375#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
376#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
d21683ea 377#define PSW_ADDR_24 0x0000000000ffffffUL
48a3e950
CH
378#define PSW_ADDR_31 0x000000007fffffffUL
379
a3fb577e
TH
380int is_valid_psw(psw_t *psw)
381{
3736b874
HC
382 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;
a3fb577e
TH
392 if (psw->addr & 1)
393 return 0;
3736b874
HC
394 return 1;
395}
396
48a3e950
CH
397int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
398{
3736b874 399 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
48a3e950 400 psw_compat_t new_psw;
3736b874 401 u64 addr;
2d8bcaed 402 int rc;
8ae04b8f 403 ar_t ar;
48a3e950 404
3736b874 405 if (gpsw->mask & PSW_MASK_PSTATE)
208dd756
TH
406 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
407
8ae04b8f 408 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
6fd0fcc9
HC
409 if (addr & 7)
410 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
2d8bcaed 411
8ae04b8f 412 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
2d8bcaed
HC
413 if (rc)
414 return kvm_s390_inject_prog_cond(vcpu, rc);
6fd0fcc9
HC
415 if (!(new_psw.mask & PSW32_MASK_BASE))
416 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
3736b874
HC
417 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))
6fd0fcc9 421 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
48a3e950
CH
422 return 0;
423}
424
425static int handle_lpswe(struct kvm_vcpu *vcpu)
426{
48a3e950 427 psw_t new_psw;
3736b874 428 u64 addr;
2d8bcaed 429 int rc;
8ae04b8f 430 ar_t ar;
48a3e950 431
5087dfa6
TH
432 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
433 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
434
8ae04b8f 435 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
6fd0fcc9
HC
436 if (addr & 7)
437 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
8ae04b8f 438 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
2d8bcaed
HC
439 if (rc)
440 return kvm_s390_inject_prog_cond(vcpu, rc);
3736b874
HC
441 vcpu->arch.sie_block->gpsw = new_psw;
442 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
6fd0fcc9 443 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
48a3e950
CH
444 return 0;
445}
446
453423dc
CB
447static int handle_stidp(struct kvm_vcpu *vcpu)
448{
7d777d78 449 u64 stidp_data = vcpu->arch.stidp_data;
453423dc 450 u64 operand2;
7d777d78 451 int rc;
8ae04b8f 452 ar_t ar;
453423dc
CB
453
454 vcpu->stat.instruction_stidp++;
b1c571a5 455
5087dfa6
TH
456 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
457 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
458
8ae04b8f 459 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
453423dc 460
db4a29cb
HC
461 if (operand2 & 7)
462 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
453423dc 463
8ae04b8f 464 rc = write_guest(vcpu, operand2, ar, &stidp_data, sizeof(stidp_data));
7d777d78
HC
465 if (rc)
466 return kvm_s390_inject_prog_cond(vcpu, rc);
453423dc
CB
467
468 VCPU_EVENT(vcpu, 5, "%s", "store cpu id");
453423dc
CB
469 return 0;
470}
471
472static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
473{
453423dc
CB
474 int cpus = 0;
475 int n;
476
ff520a63 477 cpus = atomic_read(&vcpu->kvm->online_vcpus);
453423dc
CB
478
479 /* deal with other level 3 hypervisors */
caf757c6 480 if (stsi(mem, 3, 2, 2))
453423dc
CB
481 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
b75f4c9a 487 memset(&mem->vm[0], 0, sizeof(mem->vm[0]));
453423dc
CB
488 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
e44fc8c9
ET
499static 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
453423dc
CB
510static int handle_stsi(struct kvm_vcpu *vcpu)
511{
5a32c1af
CB
512 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;
c51f068c 515 unsigned long mem = 0;
453423dc 516 u64 operand2;
db4a29cb 517 int rc = 0;
8ae04b8f 518 ar_t ar;
453423dc
CB
519
520 vcpu->stat.instruction_stsi++;
521 VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
522
5087dfa6
TH
523 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
524 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
525
87d41fb4 526 if (fc > 3) {
ea828ebf 527 kvm_s390_set_psw_cc(vcpu, 3);
87d41fb4
TH
528 return 0;
529 }
453423dc 530
87d41fb4
TH
531 if (vcpu->run->s.regs.gprs[0] & 0x0fffff00
532 || vcpu->run->s.regs.gprs[1] & 0xffff0000)
453423dc
CB
533 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
534
87d41fb4 535 if (fc == 0) {
5a32c1af 536 vcpu->run->s.regs.gprs[0] = 3 << 28;
ea828ebf 537 kvm_s390_set_psw_cc(vcpu, 0);
453423dc 538 return 0;
87d41fb4
TH
539 }
540
8ae04b8f 541 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
87d41fb4
TH
542
543 if (operand2 & 0xfff)
544 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
545
546 switch (fc) {
453423dc
CB
547 case 1: /* same handling for 1 and 2 */
548 case 2:
549 mem = get_zeroed_page(GFP_KERNEL);
550 if (!mem)
c51f068c 551 goto out_no_data;
caf757c6 552 if (stsi((void *) mem, fc, sel1, sel2))
c51f068c 553 goto out_no_data;
453423dc
CB
554 break;
555 case 3:
556 if (sel1 != 2 || sel2 != 2)
c51f068c 557 goto out_no_data;
453423dc
CB
558 mem = get_zeroed_page(GFP_KERNEL);
559 if (!mem)
c51f068c 560 goto out_no_data;
453423dc
CB
561 handle_stsi_3_2_2(vcpu, (void *) mem);
562 break;
453423dc
CB
563 }
564
8ae04b8f 565 rc = write_guest(vcpu, operand2, ar, (void *)mem, PAGE_SIZE);
645c5bc1
HC
566 if (rc) {
567 rc = kvm_s390_inject_prog_cond(vcpu, rc);
568 goto out;
453423dc 569 }
e44fc8c9
ET
570 if (vcpu->kvm->arch.user_stsi) {
571 insert_stsi_usr_data(vcpu, operand2, ar, fc, sel1, sel2);
572 rc = -EREMOTE;
573 }
5786fffa 574 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
453423dc 575 free_page(mem);
ea828ebf 576 kvm_s390_set_psw_cc(vcpu, 0);
5a32c1af 577 vcpu->run->s.regs.gprs[0] = 0;
e44fc8c9 578 return rc;
c51f068c 579out_no_data:
ea828ebf 580 kvm_s390_set_psw_cc(vcpu, 3);
645c5bc1 581out:
c51f068c 582 free_page(mem);
db4a29cb 583 return rc;
453423dc
CB
584}
585
f379aae5 586static const intercept_handler_t b2_handlers[256] = {
453423dc 587 [0x02] = handle_stidp,
6a3f95a6 588 [0x04] = handle_set_clock,
453423dc
CB
589 [0x10] = handle_set_prefix,
590 [0x11] = handle_store_prefix,
591 [0x12] = handle_store_cpu_address,
8a242234 592 [0x21] = handle_ipte_interlock,
453423dc
CB
593 [0x29] = handle_skey,
594 [0x2a] = handle_skey,
595 [0x2b] = handle_skey,
aca84241 596 [0x2c] = handle_test_block,
f379aae5
CH
597 [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,
8a242234 610 [0x50] = handle_ipte_interlock,
f379aae5
CH
611 [0x5f] = handle_io_inst,
612 [0x74] = handle_io_inst,
613 [0x76] = handle_io_inst,
453423dc
CB
614 [0x7d] = handle_stsi,
615 [0xb1] = handle_stfl,
48a3e950 616 [0xb2] = handle_lpswe,
453423dc
CB
617};
618
70455a36 619int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
453423dc
CB
620{
621 intercept_handler_t handler;
622
70455a36 623 /*
5087dfa6
TH
624 * 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 */
f379aae5 628 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
5087dfa6
TH
629 if (handler)
630 return handler(vcpu);
631
b8e660b8 632 return -EOPNOTSUPP;
453423dc 633}
bb25b9ba 634
48a3e950
CH
635static int handle_epsw(struct kvm_vcpu *vcpu)
636{
637 int reg1, reg2;
638
aeb87c3c 639 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
48a3e950
CH
640
641 /* This basically extracts the mask half of the psw. */
843200e7 642 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL;
48a3e950
CH
643 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
644 if (reg2) {
843200e7 645 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL;
48a3e950 646 vcpu->run->s.regs.gprs[reg2] |=
843200e7 647 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL;
48a3e950
CH
648 }
649 return 0;
650}
651
69d0d3a3
CB
652#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)
208dd756 675 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
69d0d3a3
CB
676
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 */
e769ece3 681 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && !test_facility(14))
69d0d3a3
CB
682 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;
a02689fe 689 start = kvm_s390_logical_to_effective(vcpu, start);
fb34c603 690
69d0d3a3
CB
691 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 }
a02689fe
TH
705
706 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
dd9e5b7b 707 if (kvm_s390_check_low_addr_prot_real(vcpu, start))
a02689fe
TH
708 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
709 }
710
69d0d3a3 711 while (start < end) {
fb34c603
TH
712 unsigned long useraddr, abs_addr;
713
714 /* 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))
69d0d3a3
CB
721 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) {
3ac8e380
DD
729 int rc = __skey_check_enable(vcpu);
730
731 if (rc)
732 return rc;
69d0d3a3
CB
733 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
b31288fa
KW
746static 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++;
b31605c1 757 if (!kvm_s390_cmma_enabled(vcpu->kvm))
b31288fa
KW
758 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 */
04b41acd 767 kvm_s390_rewind_psw(vcpu, 4);
b31288fa
KW
768 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 */
6e0a0431 777 __gmap_zap(gmap, cbrle);
b31288fa
KW
778 }
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
48a3e950 785static const intercept_handler_t b9_handlers[256] = {
8a242234 786 [0x8a] = handle_ipte_interlock,
48a3e950 787 [0x8d] = handle_epsw,
8a242234
HC
788 [0x8e] = handle_ipte_interlock,
789 [0x8f] = handle_ipte_interlock,
b31288fa 790 [0xab] = handle_essa,
69d0d3a3 791 [0xaf] = handle_pfmf,
48a3e950
CH
792};
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];
5087dfa6
TH
800 if (handler)
801 return handler(vcpu);
802
48a3e950
CH
803 return -EOPNOTSUPP;
804}
805
953ed88d
TH
806int 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;
fc56eb66
HC
810 int reg, rc, nr_regs;
811 u32 ctl_array[16];
f987a3ee 812 u64 ga;
8ae04b8f 813 ar_t ar;
953ed88d
TH
814
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
8ae04b8f 820 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
953ed88d 821
f987a3ee 822 if (ga & 3)
953ed88d
TH
823 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
824
f987a3ee
HC
825 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);
953ed88d 827
fc56eb66 828 nr_regs = ((reg3 - reg1) & 0xf) + 1;
8ae04b8f 829 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
fc56eb66
HC
830 if (rc)
831 return kvm_s390_inject_prog_cond(vcpu, rc);
953ed88d 832 reg = reg1;
fc56eb66 833 nr_regs = 0;
953ed88d 834 do {
953ed88d 835 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
fc56eb66 836 vcpu->arch.sie_block->gcr[reg] |= ctl_array[nr_regs++];
953ed88d
TH
837 if (reg == reg3)
838 break;
839 reg = (reg + 1) % 16;
840 } while (1);
2dca485f 841 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
953ed88d
TH
842 return 0;
843}
844
aba07508
DH
845int 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;
fc56eb66
HC
849 int reg, rc, nr_regs;
850 u32 ctl_array[16];
aba07508 851 u64 ga;
8ae04b8f 852 ar_t ar;
aba07508
DH
853
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
8ae04b8f 859 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
aba07508
DH
860
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;
fc56eb66 868 nr_regs = 0;
aba07508 869 do {
fc56eb66 870 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
aba07508
DH
871 if (reg == reg3)
872 break;
873 reg = (reg + 1) % 16;
874 } while (1);
8ae04b8f 875 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
fc56eb66 876 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
aba07508
DH
877}
878
953ed88d
TH
879static 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;
fc56eb66
HC
883 int reg, rc, nr_regs;
884 u64 ctl_array[16];
885 u64 ga;
8ae04b8f 886 ar_t ar;
953ed88d
TH
887
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
8ae04b8f 893 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
953ed88d 894
f987a3ee 895 if (ga & 7)
953ed88d
TH
896 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
897
f987a3ee
HC
898 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);
953ed88d 900
fc56eb66 901 nr_regs = ((reg3 - reg1) & 0xf) + 1;
8ae04b8f 902 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
fc56eb66
HC
903 if (rc)
904 return kvm_s390_inject_prog_cond(vcpu, rc);
905 reg = reg1;
906 nr_regs = 0;
953ed88d 907 do {
fc56eb66 908 vcpu->arch.sie_block->gcr[reg] = ctl_array[nr_regs++];
953ed88d
TH
909 if (reg == reg3)
910 break;
911 reg = (reg + 1) % 16;
912 } while (1);
2dca485f 913 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
953ed88d
TH
914 return 0;
915}
916
aba07508
DH
917static 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;
fc56eb66
HC
921 int reg, rc, nr_regs;
922 u64 ctl_array[16];
923 u64 ga;
8ae04b8f 924 ar_t ar;
aba07508
DH
925
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
8ae04b8f 931 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
aba07508
DH
932
933 if (ga & 7)
934 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
935
aba07508
DH
936 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
fc56eb66
HC
939 reg = reg1;
940 nr_regs = 0;
aba07508 941 do {
fc56eb66 942 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
aba07508
DH
943 if (reg == reg3)
944 break;
945 reg = (reg + 1) % 16;
946 } while (1);
8ae04b8f 947 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
fc56eb66 948 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
aba07508
DH
949}
950
f379aae5 951static const intercept_handler_t eb_handlers[256] = {
953ed88d 952 [0x2f] = handle_lctlg,
aba07508 953 [0x25] = handle_stctg,
f379aae5
CH
954};
955
953ed88d 956int kvm_s390_handle_eb(struct kvm_vcpu *vcpu)
f379aae5
CH
957{
958 intercept_handler_t handler;
959
f379aae5
CH
960 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
961 if (handler)
962 return handler(vcpu);
963 return -EOPNOTSUPP;
964}
965
bb25b9ba
CB
966static int handle_tprot(struct kvm_vcpu *vcpu)
967{
b1c571a5 968 u64 address1, address2;
a0465f9a
TH
969 unsigned long hva, gpa;
970 int ret = 0, cc = 0;
971 bool writable;
8ae04b8f 972 ar_t ar;
bb25b9ba
CB
973
974 vcpu->stat.instruction_tprot++;
975
f9f6bbc6
TH
976 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
977 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
978
8ae04b8f 979 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2, &ar, NULL);
b1c571a5 980
bb25b9ba
CB
981 /* we only handle the Linux memory detection case:
982 * access key == 0
bb25b9ba
CB
983 * everything else goes to userspace. */
984 if (address2 & 0xf0)
985 return -EOPNOTSUPP;
986 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
a0465f9a 987 ipte_lock(vcpu);
8ae04b8f 988 ret = guest_translate_address(vcpu, address1, ar, &gpa, 1);
a0465f9a
TH
989 if (ret == PGM_PROTECTION) {
990 /* Write protected? Try again with read-only... */
991 cc = 1;
8ae04b8f 992 ret = guest_translate_address(vcpu, address1, ar, &gpa, 0);
a0465f9a
TH
993 }
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 }
59a1fa2d 1004
a0465f9a
TH
1005 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;
bb25b9ba
CB
1018}
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
8c3f61e2
CH
1028static int handle_sckpf(struct kvm_vcpu *vcpu)
1029{
1030 u32 value;
1031
1032 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
208dd756 1033 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
8c3f61e2
CH
1034
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
77975357 1045static const intercept_handler_t x01_handlers[256] = {
8c3f61e2
CH
1046 [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}
This page took 0.575951 seconds and 5 git commands to generate.