1 // SPDX-License-Identifier: GPL-2.0
3 * handling privileged instructions
5 * Copyright IBM Corp. 2008, 2018
7 * Author(s): Carsten Otte <cotte@de.ibm.com>
8 * Christian Borntraeger <borntraeger@de.ibm.com>
11 #include <linux/kvm.h>
12 #include <linux/gfp.h>
13 #include <linux/errno.h>
14 #include <linux/compat.h>
15 #include <linux/mm_types.h>
17 #include <asm/asm-offsets.h>
18 #include <asm/facility.h>
19 #include <asm/current.h>
20 #include <asm/debug.h>
21 #include <asm/ebcdic.h>
22 #include <asm/sysinfo.h>
23 #include <asm/pgtable.h>
24 #include <asm/page-states.h>
25 #include <asm/pgalloc.h>
28 #include <asm/ptrace.h>
34 static int handle_ri(struct kvm_vcpu
*vcpu
)
36 vcpu
->stat
.instruction_ri
++;
38 if (test_kvm_facility(vcpu
->kvm
, 64)) {
39 VCPU_EVENT(vcpu
, 3, "%s", "ENABLE: RI (lazy)");
40 vcpu
->arch
.sie_block
->ecb3
|= ECB3_RI
;
41 kvm_s390_retry_instr(vcpu
);
44 return kvm_s390_inject_program_int(vcpu
, PGM_OPERATION
);
47 int kvm_s390_handle_aa(struct kvm_vcpu
*vcpu
)
49 if ((vcpu
->arch
.sie_block
->ipa
& 0xf) <= 4)
50 return handle_ri(vcpu
);
55 static int handle_gs(struct kvm_vcpu
*vcpu
)
57 vcpu
->stat
.instruction_gs
++;
59 if (test_kvm_facility(vcpu
->kvm
, 133)) {
60 VCPU_EVENT(vcpu
, 3, "%s", "ENABLE: GS (lazy)");
63 current
->thread
.gs_cb
= (struct gs_cb
*)&vcpu
->run
->s
.regs
.gscb
;
64 restore_gs_cb(current
->thread
.gs_cb
);
66 vcpu
->arch
.sie_block
->ecb
|= ECB_GS
;
67 vcpu
->arch
.sie_block
->ecd
|= ECD_HOSTREGMGMT
;
68 vcpu
->arch
.gs_enabled
= 1;
69 kvm_s390_retry_instr(vcpu
);
72 return kvm_s390_inject_program_int(vcpu
, PGM_OPERATION
);
75 int kvm_s390_handle_e3(struct kvm_vcpu
*vcpu
)
77 int code
= vcpu
->arch
.sie_block
->ipb
& 0xff;
79 if (code
== 0x49 || code
== 0x4d)
80 return handle_gs(vcpu
);
84 /* Handle SCK (SET CLOCK) interception */
85 static int handle_set_clock(struct kvm_vcpu
*vcpu
)
87 struct kvm_s390_vm_tod_clock gtod
= { 0 };
92 vcpu
->stat
.instruction_sck
++;
94 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
95 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
97 op2
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
98 if (op2
& 7) /* Operand must be on a doubleword boundary */
99 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
100 rc
= read_guest(vcpu
, op2
, ar
, >od
.tod
, sizeof(gtod
.tod
));
102 return kvm_s390_inject_prog_cond(vcpu
, rc
);
104 VCPU_EVENT(vcpu
, 3, "SCK: setting guest TOD to 0x%llx", gtod
.tod
);
105 kvm_s390_set_tod_clock(vcpu
->kvm
, >od
);
107 kvm_s390_set_psw_cc(vcpu
, 0);
111 static int handle_set_prefix(struct kvm_vcpu
*vcpu
)
118 vcpu
->stat
.instruction_spx
++;
120 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
121 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
123 operand2
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
125 /* must be word boundary */
127 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
130 rc
= read_guest(vcpu
, operand2
, ar
, &address
, sizeof(address
));
132 return kvm_s390_inject_prog_cond(vcpu
, rc
);
134 address
&= 0x7fffe000u
;
137 * Make sure the new value is valid memory. We only need to check the
138 * first page, since address is 8k aligned and memory pieces are always
139 * at least 1MB aligned and have at least a size of 1MB.
141 if (kvm_is_error_gpa(vcpu
->kvm
, address
))
142 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
144 kvm_s390_set_prefix(vcpu
, address
);
145 trace_kvm_s390_handle_prefix(vcpu
, 1, address
);
149 static int handle_store_prefix(struct kvm_vcpu
*vcpu
)
156 vcpu
->stat
.instruction_stpx
++;
158 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
159 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
161 operand2
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
163 /* must be word boundary */
165 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
167 address
= kvm_s390_get_prefix(vcpu
);
170 rc
= write_guest(vcpu
, operand2
, ar
, &address
, sizeof(address
));
172 return kvm_s390_inject_prog_cond(vcpu
, rc
);
174 VCPU_EVENT(vcpu
, 3, "STPX: storing prefix 0x%x into 0x%llx", address
, operand2
);
175 trace_kvm_s390_handle_prefix(vcpu
, 0, address
);
179 static int handle_store_cpu_address(struct kvm_vcpu
*vcpu
)
181 u16 vcpu_id
= vcpu
->vcpu_id
;
186 vcpu
->stat
.instruction_stap
++;
188 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
189 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
191 ga
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
194 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
196 rc
= write_guest(vcpu
, ga
, ar
, &vcpu_id
, sizeof(vcpu_id
));
198 return kvm_s390_inject_prog_cond(vcpu
, rc
);
200 VCPU_EVENT(vcpu
, 3, "STAP: storing cpu address (%u) to 0x%llx", vcpu_id
, ga
);
201 trace_kvm_s390_handle_stap(vcpu
, ga
);
205 int kvm_s390_skey_check_enable(struct kvm_vcpu
*vcpu
)
209 trace_kvm_s390_skey_related_inst(vcpu
);
210 /* Already enabled? */
211 if (vcpu
->arch
.skey_enabled
)
214 rc
= s390_enable_skey();
215 VCPU_EVENT(vcpu
, 3, "enabling storage keys for guest: %d", rc
);
219 if (kvm_s390_test_cpuflags(vcpu
, CPUSTAT_KSS
))
220 kvm_s390_clear_cpuflags(vcpu
, CPUSTAT_KSS
);
221 if (!vcpu
->kvm
->arch
.use_skf
)
222 vcpu
->arch
.sie_block
->ictl
|= ICTL_ISKE
| ICTL_SSKE
| ICTL_RRBE
;
224 vcpu
->arch
.sie_block
->ictl
&= ~(ICTL_ISKE
| ICTL_SSKE
| ICTL_RRBE
);
225 vcpu
->arch
.skey_enabled
= true;
229 static int try_handle_skey(struct kvm_vcpu
*vcpu
)
233 rc
= kvm_s390_skey_check_enable(vcpu
);
236 if (vcpu
->kvm
->arch
.use_skf
) {
237 /* with storage-key facility, SIE interprets it for us */
238 kvm_s390_retry_instr(vcpu
);
239 VCPU_EVENT(vcpu
, 4, "%s", "retrying storage key operation");
245 static int handle_iske(struct kvm_vcpu
*vcpu
)
247 unsigned long gaddr
, vmaddr
;
253 vcpu
->stat
.instruction_iske
++;
255 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
256 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
258 rc
= try_handle_skey(vcpu
);
260 return rc
!= -EAGAIN
? rc
: 0;
262 kvm_s390_get_regs_rre(vcpu
, ®1
, ®2
);
264 gaddr
= vcpu
->run
->s
.regs
.gprs
[reg2
] & PAGE_MASK
;
265 gaddr
= kvm_s390_logical_to_effective(vcpu
, gaddr
);
266 gaddr
= kvm_s390_real_to_abs(vcpu
, gaddr
);
267 vmaddr
= gfn_to_hva(vcpu
->kvm
, gpa_to_gfn(gaddr
));
268 if (kvm_is_error_hva(vmaddr
))
269 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
272 down_read(¤t
->mm
->mmap_sem
);
273 rc
= get_guest_storage_key(current
->mm
, vmaddr
, &key
);
276 rc
= fixup_user_fault(current
, current
->mm
, vmaddr
,
277 FAULT_FLAG_WRITE
, &unlocked
);
279 up_read(¤t
->mm
->mmap_sem
);
283 up_read(¤t
->mm
->mmap_sem
);
285 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
288 vcpu
->run
->s
.regs
.gprs
[reg1
] &= ~0xff;
289 vcpu
->run
->s
.regs
.gprs
[reg1
] |= key
;
293 static int handle_rrbe(struct kvm_vcpu
*vcpu
)
295 unsigned long vmaddr
, gaddr
;
300 vcpu
->stat
.instruction_rrbe
++;
302 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
303 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
305 rc
= try_handle_skey(vcpu
);
307 return rc
!= -EAGAIN
? rc
: 0;
309 kvm_s390_get_regs_rre(vcpu
, ®1
, ®2
);
311 gaddr
= vcpu
->run
->s
.regs
.gprs
[reg2
] & PAGE_MASK
;
312 gaddr
= kvm_s390_logical_to_effective(vcpu
, gaddr
);
313 gaddr
= kvm_s390_real_to_abs(vcpu
, gaddr
);
314 vmaddr
= gfn_to_hva(vcpu
->kvm
, gpa_to_gfn(gaddr
));
315 if (kvm_is_error_hva(vmaddr
))
316 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
319 down_read(¤t
->mm
->mmap_sem
);
320 rc
= reset_guest_reference_bit(current
->mm
, vmaddr
);
322 rc
= fixup_user_fault(current
, current
->mm
, vmaddr
,
323 FAULT_FLAG_WRITE
, &unlocked
);
325 up_read(¤t
->mm
->mmap_sem
);
329 up_read(¤t
->mm
->mmap_sem
);
331 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
334 kvm_s390_set_psw_cc(vcpu
, rc
);
342 static int handle_sske(struct kvm_vcpu
*vcpu
)
344 unsigned char m3
= vcpu
->arch
.sie_block
->ipb
>> 28;
345 unsigned long start
, end
;
346 unsigned char key
, oldkey
;
351 vcpu
->stat
.instruction_sske
++;
353 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
354 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
356 rc
= try_handle_skey(vcpu
);
358 return rc
!= -EAGAIN
? rc
: 0;
360 if (!test_kvm_facility(vcpu
->kvm
, 8))
362 if (!test_kvm_facility(vcpu
->kvm
, 10))
363 m3
&= ~(SSKE_MC
| SSKE_MR
);
364 if (!test_kvm_facility(vcpu
->kvm
, 14))
367 kvm_s390_get_regs_rre(vcpu
, ®1
, ®2
);
369 key
= vcpu
->run
->s
.regs
.gprs
[reg1
] & 0xfe;
370 start
= vcpu
->run
->s
.regs
.gprs
[reg2
] & PAGE_MASK
;
371 start
= kvm_s390_logical_to_effective(vcpu
, start
);
373 /* start already designates an absolute address */
374 end
= (start
+ _SEGMENT_SIZE
) & ~(_SEGMENT_SIZE
- 1);
376 start
= kvm_s390_real_to_abs(vcpu
, start
);
377 end
= start
+ PAGE_SIZE
;
380 while (start
!= end
) {
381 unsigned long vmaddr
= gfn_to_hva(vcpu
->kvm
, gpa_to_gfn(start
));
384 if (kvm_is_error_hva(vmaddr
))
385 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
387 down_read(¤t
->mm
->mmap_sem
);
388 rc
= cond_set_guest_storage_key(current
->mm
, vmaddr
, key
, &oldkey
,
389 m3
& SSKE_NQ
, m3
& SSKE_MR
,
393 rc
= fixup_user_fault(current
, current
->mm
, vmaddr
,
394 FAULT_FLAG_WRITE
, &unlocked
);
395 rc
= !rc
? -EAGAIN
: rc
;
397 up_read(¤t
->mm
->mmap_sem
);
399 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
405 if (m3
& (SSKE_MC
| SSKE_MR
)) {
407 /* skey in reg1 is unpredictable */
408 kvm_s390_set_psw_cc(vcpu
, 3);
410 kvm_s390_set_psw_cc(vcpu
, rc
);
411 vcpu
->run
->s
.regs
.gprs
[reg1
] &= ~0xff00UL
;
412 vcpu
->run
->s
.regs
.gprs
[reg1
] |= (u64
) oldkey
<< 8;
416 if (psw_bits(vcpu
->arch
.sie_block
->gpsw
).eaba
== PSW_BITS_AMODE_64BIT
)
417 vcpu
->run
->s
.regs
.gprs
[reg2
] &= ~PAGE_MASK
;
419 vcpu
->run
->s
.regs
.gprs
[reg2
] &= ~0xfffff000UL
;
420 end
= kvm_s390_logical_to_effective(vcpu
, end
);
421 vcpu
->run
->s
.regs
.gprs
[reg2
] |= end
;
426 static int handle_ipte_interlock(struct kvm_vcpu
*vcpu
)
428 vcpu
->stat
.instruction_ipte_interlock
++;
429 if (psw_bits(vcpu
->arch
.sie_block
->gpsw
).pstate
)
430 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
431 wait_event(vcpu
->kvm
->arch
.ipte_wq
, !ipte_lock_held(vcpu
));
432 kvm_s390_retry_instr(vcpu
);
433 VCPU_EVENT(vcpu
, 4, "%s", "retrying ipte interlock operation");
437 static int handle_test_block(struct kvm_vcpu
*vcpu
)
442 vcpu
->stat
.instruction_tb
++;
444 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
445 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
447 kvm_s390_get_regs_rre(vcpu
, NULL
, ®2
);
448 addr
= vcpu
->run
->s
.regs
.gprs
[reg2
] & PAGE_MASK
;
449 addr
= kvm_s390_logical_to_effective(vcpu
, addr
);
450 if (kvm_s390_check_low_addr_prot_real(vcpu
, addr
))
451 return kvm_s390_inject_prog_irq(vcpu
, &vcpu
->arch
.pgm
);
452 addr
= kvm_s390_real_to_abs(vcpu
, addr
);
454 if (kvm_is_error_gpa(vcpu
->kvm
, addr
))
455 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
457 * We don't expect errors on modern systems, and do not care
458 * about storage keys (yet), so let's just clear the page.
460 if (kvm_clear_guest(vcpu
->kvm
, addr
, PAGE_SIZE
))
462 kvm_s390_set_psw_cc(vcpu
, 0);
463 vcpu
->run
->s
.regs
.gprs
[0] = 0;
467 static int handle_tpi(struct kvm_vcpu
*vcpu
)
469 struct kvm_s390_interrupt_info
*inti
;
476 vcpu
->stat
.instruction_tpi
++;
478 addr
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
480 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
482 inti
= kvm_s390_get_io_int(vcpu
->kvm
, vcpu
->arch
.sie_block
->gcr
[6], 0);
484 kvm_s390_set_psw_cc(vcpu
, 0);
488 tpi_data
[0] = inti
->io
.subchannel_id
<< 16 | inti
->io
.subchannel_nr
;
489 tpi_data
[1] = inti
->io
.io_int_parm
;
490 tpi_data
[2] = inti
->io
.io_int_word
;
493 * Store the two-word I/O interruption code into the
496 len
= sizeof(tpi_data
) - 4;
497 rc
= write_guest(vcpu
, addr
, ar
, &tpi_data
, len
);
499 rc
= kvm_s390_inject_prog_cond(vcpu
, rc
);
500 goto reinject_interrupt
;
504 * Store the three-word I/O interruption code into
505 * the appropriate lowcore area.
507 len
= sizeof(tpi_data
);
508 if (write_guest_lc(vcpu
, __LC_SUBCHANNEL_ID
, &tpi_data
, len
)) {
509 /* failed writes to the low core are not recoverable */
511 goto reinject_interrupt
;
515 /* irq was successfully handed to the guest */
517 kvm_s390_set_psw_cc(vcpu
, 1);
521 * If we encounter a problem storing the interruption code, the
522 * instruction is suppressed from the guest's view: reinject the
525 if (kvm_s390_reinject_io_int(vcpu
->kvm
, inti
)) {
529 /* don't set the cc, a pgm irq was injected or we drop to user space */
530 return rc
? -EFAULT
: 0;
533 static int handle_tsch(struct kvm_vcpu
*vcpu
)
535 struct kvm_s390_interrupt_info
*inti
= NULL
;
536 const u64 isc_mask
= 0xffUL
<< 24; /* all iscs set */
538 vcpu
->stat
.instruction_tsch
++;
540 /* a valid schid has at least one bit set */
541 if (vcpu
->run
->s
.regs
.gprs
[1])
542 inti
= kvm_s390_get_io_int(vcpu
->kvm
, isc_mask
,
543 vcpu
->run
->s
.regs
.gprs
[1]);
546 * Prepare exit to userspace.
547 * We indicate whether we dequeued a pending I/O interrupt
548 * so that userspace can re-inject it if the instruction gets
549 * a program check. While this may re-order the pending I/O
550 * interrupts, this is no problem since the priority is kept
553 vcpu
->run
->exit_reason
= KVM_EXIT_S390_TSCH
;
554 vcpu
->run
->s390_tsch
.dequeued
= !!inti
;
556 vcpu
->run
->s390_tsch
.subchannel_id
= inti
->io
.subchannel_id
;
557 vcpu
->run
->s390_tsch
.subchannel_nr
= inti
->io
.subchannel_nr
;
558 vcpu
->run
->s390_tsch
.io_int_parm
= inti
->io
.io_int_parm
;
559 vcpu
->run
->s390_tsch
.io_int_word
= inti
->io
.io_int_word
;
561 vcpu
->run
->s390_tsch
.ipb
= vcpu
->arch
.sie_block
->ipb
;
566 static int handle_io_inst(struct kvm_vcpu
*vcpu
)
568 VCPU_EVENT(vcpu
, 4, "%s", "I/O instruction");
570 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
571 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
573 if (vcpu
->kvm
->arch
.css_support
) {
575 * Most I/O instructions will be handled by userspace.
576 * Exceptions are tpi and the interrupt portion of tsch.
578 if (vcpu
->arch
.sie_block
->ipa
== 0xb236)
579 return handle_tpi(vcpu
);
580 if (vcpu
->arch
.sie_block
->ipa
== 0xb235)
581 return handle_tsch(vcpu
);
582 /* Handle in userspace. */
583 vcpu
->stat
.instruction_io_other
++;
587 * Set condition code 3 to stop the guest from issuing channel
590 kvm_s390_set_psw_cc(vcpu
, 3);
595 static int handle_stfl(struct kvm_vcpu
*vcpu
)
600 vcpu
->stat
.instruction_stfl
++;
602 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
603 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
606 * We need to shift the lower 32 facility bits (bit 0-31) from a u64
607 * into a u32 memory representation. They will remain bits 0-31.
609 fac
= *vcpu
->kvm
->arch
.model
.fac_list
>> 32;
610 rc
= write_guest_lc(vcpu
, offsetof(struct lowcore
, stfl_fac_list
),
614 VCPU_EVENT(vcpu
, 3, "STFL: store facility list 0x%x", fac
);
615 trace_kvm_s390_handle_stfl(vcpu
, fac
);
619 #define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
620 #define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
621 #define PSW_ADDR_24 0x0000000000ffffffUL
622 #define PSW_ADDR_31 0x000000007fffffffUL
624 int is_valid_psw(psw_t
*psw
)
626 if (psw
->mask
& PSW_MASK_UNASSIGNED
)
628 if ((psw
->mask
& PSW_MASK_ADDR_MODE
) == PSW_MASK_BA
) {
629 if (psw
->addr
& ~PSW_ADDR_31
)
632 if (!(psw
->mask
& PSW_MASK_ADDR_MODE
) && (psw
->addr
& ~PSW_ADDR_24
))
634 if ((psw
->mask
& PSW_MASK_ADDR_MODE
) == PSW_MASK_EA
)
641 int kvm_s390_handle_lpsw(struct kvm_vcpu
*vcpu
)
643 psw_t
*gpsw
= &vcpu
->arch
.sie_block
->gpsw
;
644 psw_compat_t new_psw
;
649 vcpu
->stat
.instruction_lpsw
++;
651 if (gpsw
->mask
& PSW_MASK_PSTATE
)
652 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
654 addr
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
656 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
658 rc
= read_guest(vcpu
, addr
, ar
, &new_psw
, sizeof(new_psw
));
660 return kvm_s390_inject_prog_cond(vcpu
, rc
);
661 if (!(new_psw
.mask
& PSW32_MASK_BASE
))
662 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
663 gpsw
->mask
= (new_psw
.mask
& ~PSW32_MASK_BASE
) << 32;
664 gpsw
->mask
|= new_psw
.addr
& PSW32_ADDR_AMODE
;
665 gpsw
->addr
= new_psw
.addr
& ~PSW32_ADDR_AMODE
;
666 if (!is_valid_psw(gpsw
))
667 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
671 static int handle_lpswe(struct kvm_vcpu
*vcpu
)
678 vcpu
->stat
.instruction_lpswe
++;
680 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
681 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
683 addr
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
685 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
686 rc
= read_guest(vcpu
, addr
, ar
, &new_psw
, sizeof(new_psw
));
688 return kvm_s390_inject_prog_cond(vcpu
, rc
);
689 vcpu
->arch
.sie_block
->gpsw
= new_psw
;
690 if (!is_valid_psw(&vcpu
->arch
.sie_block
->gpsw
))
691 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
695 static int handle_stidp(struct kvm_vcpu
*vcpu
)
697 u64 stidp_data
= vcpu
->kvm
->arch
.model
.cpuid
;
702 vcpu
->stat
.instruction_stidp
++;
704 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
705 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
707 operand2
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
710 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
712 rc
= write_guest(vcpu
, operand2
, ar
, &stidp_data
, sizeof(stidp_data
));
714 return kvm_s390_inject_prog_cond(vcpu
, rc
);
716 VCPU_EVENT(vcpu
, 3, "STIDP: store cpu id 0x%llx", stidp_data
);
720 static void handle_stsi_3_2_2(struct kvm_vcpu
*vcpu
, struct sysinfo_3_2_2
*mem
)
725 cpus
= atomic_read(&vcpu
->kvm
->online_vcpus
);
727 /* deal with other level 3 hypervisors */
728 if (stsi(mem
, 3, 2, 2))
732 for (n
= mem
->count
- 1; n
> 0 ; n
--)
733 memcpy(&mem
->vm
[n
], &mem
->vm
[n
- 1], sizeof(mem
->vm
[0]));
735 memset(&mem
->vm
[0], 0, sizeof(mem
->vm
[0]));
736 mem
->vm
[0].cpus_total
= cpus
;
737 mem
->vm
[0].cpus_configured
= cpus
;
738 mem
->vm
[0].cpus_standby
= 0;
739 mem
->vm
[0].cpus_reserved
= 0;
740 mem
->vm
[0].caf
= 1000;
741 memcpy(mem
->vm
[0].name
, "KVMguest", 8);
742 ASCEBC(mem
->vm
[0].name
, 8);
743 memcpy(mem
->vm
[0].cpi
, "KVM/Linux ", 16);
744 ASCEBC(mem
->vm
[0].cpi
, 16);
747 static void insert_stsi_usr_data(struct kvm_vcpu
*vcpu
, u64 addr
, u8 ar
,
748 u8 fc
, u8 sel1
, u16 sel2
)
750 vcpu
->run
->exit_reason
= KVM_EXIT_S390_STSI
;
751 vcpu
->run
->s390_stsi
.addr
= addr
;
752 vcpu
->run
->s390_stsi
.ar
= ar
;
753 vcpu
->run
->s390_stsi
.fc
= fc
;
754 vcpu
->run
->s390_stsi
.sel1
= sel1
;
755 vcpu
->run
->s390_stsi
.sel2
= sel2
;
758 static int handle_stsi(struct kvm_vcpu
*vcpu
)
760 int fc
= (vcpu
->run
->s
.regs
.gprs
[0] & 0xf0000000) >> 28;
761 int sel1
= vcpu
->run
->s
.regs
.gprs
[0] & 0xff;
762 int sel2
= vcpu
->run
->s
.regs
.gprs
[1] & 0xffff;
763 unsigned long mem
= 0;
768 vcpu
->stat
.instruction_stsi
++;
769 VCPU_EVENT(vcpu
, 3, "STSI: fc: %u sel1: %u sel2: %u", fc
, sel1
, sel2
);
771 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
772 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
775 kvm_s390_set_psw_cc(vcpu
, 3);
779 if (vcpu
->run
->s
.regs
.gprs
[0] & 0x0fffff00
780 || vcpu
->run
->s
.regs
.gprs
[1] & 0xffff0000)
781 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
784 vcpu
->run
->s
.regs
.gprs
[0] = 3 << 28;
785 kvm_s390_set_psw_cc(vcpu
, 0);
789 operand2
= kvm_s390_get_base_disp_s(vcpu
, &ar
);
791 if (operand2
& 0xfff)
792 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
795 case 1: /* same handling for 1 and 2 */
797 mem
= get_zeroed_page(GFP_KERNEL
);
800 if (stsi((void *) mem
, fc
, sel1
, sel2
))
804 if (sel1
!= 2 || sel2
!= 2)
806 mem
= get_zeroed_page(GFP_KERNEL
);
809 handle_stsi_3_2_2(vcpu
, (void *) mem
);
813 rc
= write_guest(vcpu
, operand2
, ar
, (void *)mem
, PAGE_SIZE
);
815 rc
= kvm_s390_inject_prog_cond(vcpu
, rc
);
818 if (vcpu
->kvm
->arch
.user_stsi
) {
819 insert_stsi_usr_data(vcpu
, operand2
, ar
, fc
, sel1
, sel2
);
822 trace_kvm_s390_handle_stsi(vcpu
, fc
, sel1
, sel2
, operand2
);
824 kvm_s390_set_psw_cc(vcpu
, 0);
825 vcpu
->run
->s
.regs
.gprs
[0] = 0;
828 kvm_s390_set_psw_cc(vcpu
, 3);
834 int kvm_s390_handle_b2(struct kvm_vcpu
*vcpu
)
836 switch (vcpu
->arch
.sie_block
->ipa
& 0x00ff) {
838 return handle_stidp(vcpu
);
840 return handle_set_clock(vcpu
);
842 return handle_set_prefix(vcpu
);
844 return handle_store_prefix(vcpu
);
846 return handle_store_cpu_address(vcpu
);
848 return kvm_s390_handle_vsie(vcpu
);
851 return handle_ipte_interlock(vcpu
);
853 return handle_iske(vcpu
);
855 return handle_rrbe(vcpu
);
857 return handle_sske(vcpu
);
859 return handle_test_block(vcpu
);
876 return handle_io_inst(vcpu
);
878 return handle_sthyi(vcpu
);
880 return handle_stsi(vcpu
);
882 return handle_stfl(vcpu
);
884 return handle_lpswe(vcpu
);
890 static int handle_epsw(struct kvm_vcpu
*vcpu
)
894 vcpu
->stat
.instruction_epsw
++;
896 kvm_s390_get_regs_rre(vcpu
, ®1
, ®2
);
898 /* This basically extracts the mask half of the psw. */
899 vcpu
->run
->s
.regs
.gprs
[reg1
] &= 0xffffffff00000000UL
;
900 vcpu
->run
->s
.regs
.gprs
[reg1
] |= vcpu
->arch
.sie_block
->gpsw
.mask
>> 32;
902 vcpu
->run
->s
.regs
.gprs
[reg2
] &= 0xffffffff00000000UL
;
903 vcpu
->run
->s
.regs
.gprs
[reg2
] |=
904 vcpu
->arch
.sie_block
->gpsw
.mask
& 0x00000000ffffffffUL
;
909 #define PFMF_RESERVED 0xfffc0101UL
910 #define PFMF_SK 0x00020000UL
911 #define PFMF_CF 0x00010000UL
912 #define PFMF_UI 0x00008000UL
913 #define PFMF_FSC 0x00007000UL
914 #define PFMF_NQ 0x00000800UL
915 #define PFMF_MR 0x00000400UL
916 #define PFMF_MC 0x00000200UL
917 #define PFMF_KEY 0x000000feUL
919 static int handle_pfmf(struct kvm_vcpu
*vcpu
)
921 bool mr
= false, mc
= false, nq
;
923 unsigned long start
, end
;
926 vcpu
->stat
.instruction_pfmf
++;
928 kvm_s390_get_regs_rre(vcpu
, ®1
, ®2
);
930 if (!test_kvm_facility(vcpu
->kvm
, 8))
931 return kvm_s390_inject_program_int(vcpu
, PGM_OPERATION
);
933 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
934 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
936 if (vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_RESERVED
)
937 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
939 /* Only provide non-quiescing support if enabled for the guest */
940 if (vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_NQ
&&
941 !test_kvm_facility(vcpu
->kvm
, 14))
942 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
944 /* Only provide conditional-SSKE support if enabled for the guest */
945 if (vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_SK
&&
946 test_kvm_facility(vcpu
->kvm
, 10)) {
947 mr
= vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_MR
;
948 mc
= vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_MC
;
951 nq
= vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_NQ
;
952 key
= vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_KEY
;
953 start
= vcpu
->run
->s
.regs
.gprs
[reg2
] & PAGE_MASK
;
954 start
= kvm_s390_logical_to_effective(vcpu
, start
);
956 if (vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_CF
) {
957 if (kvm_s390_check_low_addr_prot_real(vcpu
, start
))
958 return kvm_s390_inject_prog_irq(vcpu
, &vcpu
->arch
.pgm
);
961 switch (vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_FSC
) {
963 /* only 4k frames specify a real address */
964 start
= kvm_s390_real_to_abs(vcpu
, start
);
965 end
= (start
+ PAGE_SIZE
) & ~(PAGE_SIZE
- 1);
968 end
= (start
+ _SEGMENT_SIZE
) & ~(_SEGMENT_SIZE
- 1);
971 /* only support 2G frame size if EDAT2 is available and we are
972 not in 24-bit addressing mode */
973 if (!test_kvm_facility(vcpu
->kvm
, 78) ||
974 psw_bits(vcpu
->arch
.sie_block
->gpsw
).eaba
== PSW_BITS_AMODE_24BIT
)
975 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
976 end
= (start
+ _REGION3_SIZE
) & ~(_REGION3_SIZE
- 1);
979 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
982 while (start
!= end
) {
983 unsigned long vmaddr
;
984 bool unlocked
= false;
986 /* Translate guest address to host address */
987 vmaddr
= gfn_to_hva(vcpu
->kvm
, gpa_to_gfn(start
));
988 if (kvm_is_error_hva(vmaddr
))
989 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
991 if (vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_CF
) {
992 if (kvm_clear_guest(vcpu
->kvm
, start
, PAGE_SIZE
))
993 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
996 if (vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_SK
) {
997 int rc
= kvm_s390_skey_check_enable(vcpu
);
1001 down_read(¤t
->mm
->mmap_sem
);
1002 rc
= cond_set_guest_storage_key(current
->mm
, vmaddr
,
1003 key
, NULL
, nq
, mr
, mc
);
1005 rc
= fixup_user_fault(current
, current
->mm
, vmaddr
,
1006 FAULT_FLAG_WRITE
, &unlocked
);
1007 rc
= !rc
? -EAGAIN
: rc
;
1009 up_read(¤t
->mm
->mmap_sem
);
1011 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
1019 if (vcpu
->run
->s
.regs
.gprs
[reg1
] & PFMF_FSC
) {
1020 if (psw_bits(vcpu
->arch
.sie_block
->gpsw
).eaba
== PSW_BITS_AMODE_64BIT
) {
1021 vcpu
->run
->s
.regs
.gprs
[reg2
] = end
;
1023 vcpu
->run
->s
.regs
.gprs
[reg2
] &= ~0xffffffffUL
;
1024 end
= kvm_s390_logical_to_effective(vcpu
, end
);
1025 vcpu
->run
->s
.regs
.gprs
[reg2
] |= end
;
1032 * Must be called with relevant read locks held (kvm->mm->mmap_sem, kvm->srcu)
1034 static inline int __do_essa(struct kvm_vcpu
*vcpu
, const int orc
)
1036 int r1
, r2
, nappended
, entries
;
1037 unsigned long gfn
, hva
, res
, pgstev
, ptev
;
1038 unsigned long *cbrlo
;
1041 * We don't need to set SD.FPF.SK to 1 here, because if we have a
1042 * machine check here we either handle it or crash
1045 kvm_s390_get_regs_rre(vcpu
, &r1
, &r2
);
1046 gfn
= vcpu
->run
->s
.regs
.gprs
[r2
] >> PAGE_SHIFT
;
1047 hva
= gfn_to_hva(vcpu
->kvm
, gfn
);
1048 entries
= (vcpu
->arch
.sie_block
->cbrlo
& ~PAGE_MASK
) >> 3;
1050 if (kvm_is_error_hva(hva
))
1051 return kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
1053 nappended
= pgste_perform_essa(vcpu
->kvm
->mm
, hva
, orc
, &ptev
, &pgstev
);
1054 if (nappended
< 0) {
1055 res
= orc
? 0x10 : 0;
1056 vcpu
->run
->s
.regs
.gprs
[r1
] = res
; /* Exception Indication */
1059 res
= (pgstev
& _PGSTE_GPS_USAGE_MASK
) >> 22;
1061 * Set the block-content state part of the result. 0 means resident, so
1062 * nothing to do if the page is valid. 2 is for preserved pages
1063 * (non-present and non-zero), and 3 for zero pages (non-present and
1066 if (ptev
& _PAGE_INVALID
) {
1068 if (pgstev
& _PGSTE_GPS_ZERO
)
1071 if (pgstev
& _PGSTE_GPS_NODAT
)
1073 vcpu
->run
->s
.regs
.gprs
[r1
] = res
;
1075 * It is possible that all the normal 511 slots were full, in which case
1076 * we will now write in the 512th slot, which is reserved for host use.
1077 * In both cases we let the normal essa handling code process all the
1078 * slots, including the reserved one, if needed.
1080 if (nappended
> 0) {
1081 cbrlo
= phys_to_virt(vcpu
->arch
.sie_block
->cbrlo
& PAGE_MASK
);
1082 cbrlo
[entries
] = gfn
<< PAGE_SHIFT
;
1086 struct kvm_memory_slot
*ms
= gfn_to_memslot(vcpu
->kvm
, gfn
);
1088 /* Increment only if we are really flipping the bit */
1089 if (ms
&& !test_and_set_bit(gfn
- ms
->base_gfn
, kvm_second_dirty_bitmap(ms
)))
1090 atomic64_inc(&vcpu
->kvm
->arch
.cmma_dirty_pages
);
1096 static int handle_essa(struct kvm_vcpu
*vcpu
)
1098 /* entries expected to be 1FF */
1099 int entries
= (vcpu
->arch
.sie_block
->cbrlo
& ~PAGE_MASK
) >> 3;
1100 unsigned long *cbrlo
;
1104 VCPU_EVENT(vcpu
, 4, "ESSA: release %d pages", entries
);
1105 gmap
= vcpu
->arch
.gmap
;
1106 vcpu
->stat
.instruction_essa
++;
1107 if (!vcpu
->kvm
->arch
.use_cmma
)
1108 return kvm_s390_inject_program_int(vcpu
, PGM_OPERATION
);
1110 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
1111 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
1112 /* Check for invalid operation request code */
1113 orc
= (vcpu
->arch
.sie_block
->ipb
& 0xf0000000) >> 28;
1114 /* ORCs 0-6 are always valid */
1115 if (orc
> (test_kvm_facility(vcpu
->kvm
, 147) ? ESSA_SET_STABLE_NODAT
1116 : ESSA_SET_STABLE_IF_RESIDENT
))
1117 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
1119 if (!vcpu
->kvm
->arch
.migration_mode
) {
1121 * CMMA is enabled in the KVM settings, but is disabled in
1122 * the SIE block and in the mm_context, and we are not doing
1123 * a migration. Enable CMMA in the mm_context.
1124 * Since we need to take a write lock to write to the context
1125 * to avoid races with storage keys handling, we check if the
1126 * value really needs to be written to; if the value is
1127 * already correct, we do nothing and avoid the lock.
1129 if (vcpu
->kvm
->mm
->context
.uses_cmm
== 0) {
1130 down_write(&vcpu
->kvm
->mm
->mmap_sem
);
1131 vcpu
->kvm
->mm
->context
.uses_cmm
= 1;
1132 up_write(&vcpu
->kvm
->mm
->mmap_sem
);
1135 * If we are here, we are supposed to have CMMA enabled in
1136 * the SIE block. Enabling CMMA works on a per-CPU basis,
1137 * while the context use_cmma flag is per process.
1138 * It's possible that the context flag is enabled and the
1139 * SIE flag is not, so we set the flag always; if it was
1140 * already set, nothing changes, otherwise we enable it
1143 vcpu
->arch
.sie_block
->ecb2
|= ECB2_CMMA
;
1144 /* Retry the ESSA instruction */
1145 kvm_s390_retry_instr(vcpu
);
1149 down_read(&vcpu
->kvm
->mm
->mmap_sem
);
1150 srcu_idx
= srcu_read_lock(&vcpu
->kvm
->srcu
);
1151 i
= __do_essa(vcpu
, orc
);
1152 srcu_read_unlock(&vcpu
->kvm
->srcu
, srcu_idx
);
1153 up_read(&vcpu
->kvm
->mm
->mmap_sem
);
1156 /* Account for the possible extra cbrl entry */
1159 vcpu
->arch
.sie_block
->cbrlo
&= PAGE_MASK
; /* reset nceo */
1160 cbrlo
= phys_to_virt(vcpu
->arch
.sie_block
->cbrlo
);
1161 down_read(&gmap
->mm
->mmap_sem
);
1162 for (i
= 0; i
< entries
; ++i
)
1163 __gmap_zap(gmap
, cbrlo
[i
]);
1164 up_read(&gmap
->mm
->mmap_sem
);
1168 int kvm_s390_handle_b9(struct kvm_vcpu
*vcpu
)
1170 switch (vcpu
->arch
.sie_block
->ipa
& 0x00ff) {
1174 return handle_ipte_interlock(vcpu
);
1176 return handle_epsw(vcpu
);
1178 return handle_essa(vcpu
);
1180 return handle_pfmf(vcpu
);
1186 int kvm_s390_handle_lctl(struct kvm_vcpu
*vcpu
)
1188 int reg1
= (vcpu
->arch
.sie_block
->ipa
& 0x00f0) >> 4;
1189 int reg3
= vcpu
->arch
.sie_block
->ipa
& 0x000f;
1190 int reg
, rc
, nr_regs
;
1195 vcpu
->stat
.instruction_lctl
++;
1197 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
1198 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
1200 ga
= kvm_s390_get_base_disp_rs(vcpu
, &ar
);
1203 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
1205 VCPU_EVENT(vcpu
, 4, "LCTL: r1:%d, r3:%d, addr: 0x%llx", reg1
, reg3
, ga
);
1206 trace_kvm_s390_handle_lctl(vcpu
, 0, reg1
, reg3
, ga
);
1208 nr_regs
= ((reg3
- reg1
) & 0xf) + 1;
1209 rc
= read_guest(vcpu
, ga
, ar
, ctl_array
, nr_regs
* sizeof(u32
));
1211 return kvm_s390_inject_prog_cond(vcpu
, rc
);
1215 vcpu
->arch
.sie_block
->gcr
[reg
] &= 0xffffffff00000000ul
;
1216 vcpu
->arch
.sie_block
->gcr
[reg
] |= ctl_array
[nr_regs
++];
1219 reg
= (reg
+ 1) % 16;
1221 kvm_make_request(KVM_REQ_TLB_FLUSH
, vcpu
);
1225 int kvm_s390_handle_stctl(struct kvm_vcpu
*vcpu
)
1227 int reg1
= (vcpu
->arch
.sie_block
->ipa
& 0x00f0) >> 4;
1228 int reg3
= vcpu
->arch
.sie_block
->ipa
& 0x000f;
1229 int reg
, rc
, nr_regs
;
1234 vcpu
->stat
.instruction_stctl
++;
1236 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
1237 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
1239 ga
= kvm_s390_get_base_disp_rs(vcpu
, &ar
);
1242 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
1244 VCPU_EVENT(vcpu
, 4, "STCTL r1:%d, r3:%d, addr: 0x%llx", reg1
, reg3
, ga
);
1245 trace_kvm_s390_handle_stctl(vcpu
, 0, reg1
, reg3
, ga
);
1250 ctl_array
[nr_regs
++] = vcpu
->arch
.sie_block
->gcr
[reg
];
1253 reg
= (reg
+ 1) % 16;
1255 rc
= write_guest(vcpu
, ga
, ar
, ctl_array
, nr_regs
* sizeof(u32
));
1256 return rc
? kvm_s390_inject_prog_cond(vcpu
, rc
) : 0;
1259 static int handle_lctlg(struct kvm_vcpu
*vcpu
)
1261 int reg1
= (vcpu
->arch
.sie_block
->ipa
& 0x00f0) >> 4;
1262 int reg3
= vcpu
->arch
.sie_block
->ipa
& 0x000f;
1263 int reg
, rc
, nr_regs
;
1268 vcpu
->stat
.instruction_lctlg
++;
1270 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
1271 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
1273 ga
= kvm_s390_get_base_disp_rsy(vcpu
, &ar
);
1276 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
1278 VCPU_EVENT(vcpu
, 4, "LCTLG: r1:%d, r3:%d, addr: 0x%llx", reg1
, reg3
, ga
);
1279 trace_kvm_s390_handle_lctl(vcpu
, 1, reg1
, reg3
, ga
);
1281 nr_regs
= ((reg3
- reg1
) & 0xf) + 1;
1282 rc
= read_guest(vcpu
, ga
, ar
, ctl_array
, nr_regs
* sizeof(u64
));
1284 return kvm_s390_inject_prog_cond(vcpu
, rc
);
1288 vcpu
->arch
.sie_block
->gcr
[reg
] = ctl_array
[nr_regs
++];
1291 reg
= (reg
+ 1) % 16;
1293 kvm_make_request(KVM_REQ_TLB_FLUSH
, vcpu
);
1297 static int handle_stctg(struct kvm_vcpu
*vcpu
)
1299 int reg1
= (vcpu
->arch
.sie_block
->ipa
& 0x00f0) >> 4;
1300 int reg3
= vcpu
->arch
.sie_block
->ipa
& 0x000f;
1301 int reg
, rc
, nr_regs
;
1306 vcpu
->stat
.instruction_stctg
++;
1308 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
1309 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
1311 ga
= kvm_s390_get_base_disp_rsy(vcpu
, &ar
);
1314 return kvm_s390_inject_program_int(vcpu
, PGM_SPECIFICATION
);
1316 VCPU_EVENT(vcpu
, 4, "STCTG r1:%d, r3:%d, addr: 0x%llx", reg1
, reg3
, ga
);
1317 trace_kvm_s390_handle_stctl(vcpu
, 1, reg1
, reg3
, ga
);
1322 ctl_array
[nr_regs
++] = vcpu
->arch
.sie_block
->gcr
[reg
];
1325 reg
= (reg
+ 1) % 16;
1327 rc
= write_guest(vcpu
, ga
, ar
, ctl_array
, nr_regs
* sizeof(u64
));
1328 return rc
? kvm_s390_inject_prog_cond(vcpu
, rc
) : 0;
1331 int kvm_s390_handle_eb(struct kvm_vcpu
*vcpu
)
1333 switch (vcpu
->arch
.sie_block
->ipb
& 0x000000ff) {
1335 return handle_stctg(vcpu
);
1337 return handle_lctlg(vcpu
);
1341 return handle_ri(vcpu
);
1347 static int handle_tprot(struct kvm_vcpu
*vcpu
)
1349 u64 address1
, address2
;
1350 unsigned long hva
, gpa
;
1351 int ret
= 0, cc
= 0;
1355 vcpu
->stat
.instruction_tprot
++;
1357 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
1358 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
1360 kvm_s390_get_base_disp_sse(vcpu
, &address1
, &address2
, &ar
, NULL
);
1362 /* we only handle the Linux memory detection case:
1364 * everything else goes to userspace. */
1365 if (address2
& 0xf0)
1367 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_DAT
)
1369 ret
= guest_translate_address(vcpu
, address1
, ar
, &gpa
, GACC_STORE
);
1370 if (ret
== PGM_PROTECTION
) {
1371 /* Write protected? Try again with read-only... */
1373 ret
= guest_translate_address(vcpu
, address1
, ar
, &gpa
,
1377 if (ret
== PGM_ADDRESSING
|| ret
== PGM_TRANSLATION_SPEC
) {
1378 ret
= kvm_s390_inject_program_int(vcpu
, ret
);
1379 } else if (ret
> 0) {
1380 /* Translation not available */
1381 kvm_s390_set_psw_cc(vcpu
, 3);
1387 hva
= gfn_to_hva_prot(vcpu
->kvm
, gpa_to_gfn(gpa
), &writable
);
1388 if (kvm_is_error_hva(hva
)) {
1389 ret
= kvm_s390_inject_program_int(vcpu
, PGM_ADDRESSING
);
1392 cc
= 1; /* Write not permitted ==> read-only */
1393 kvm_s390_set_psw_cc(vcpu
, cc
);
1394 /* Note: CC2 only occurs for storage keys (not supported yet) */
1397 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_DAT
)
1402 int kvm_s390_handle_e5(struct kvm_vcpu
*vcpu
)
1404 switch (vcpu
->arch
.sie_block
->ipa
& 0x00ff) {
1406 return handle_tprot(vcpu
);
1412 static int handle_sckpf(struct kvm_vcpu
*vcpu
)
1416 vcpu
->stat
.instruction_sckpf
++;
1418 if (vcpu
->arch
.sie_block
->gpsw
.mask
& PSW_MASK_PSTATE
)
1419 return kvm_s390_inject_program_int(vcpu
, PGM_PRIVILEGED_OP
);
1421 if (vcpu
->run
->s
.regs
.gprs
[0] & 0x00000000ffff0000)
1422 return kvm_s390_inject_program_int(vcpu
,
1425 value
= vcpu
->run
->s
.regs
.gprs
[0] & 0x000000000000ffff;
1426 vcpu
->arch
.sie_block
->todpr
= value
;
1431 static int handle_ptff(struct kvm_vcpu
*vcpu
)
1433 vcpu
->stat
.instruction_ptff
++;
1435 /* we don't emulate any control instructions yet */
1436 kvm_s390_set_psw_cc(vcpu
, 3);
1440 int kvm_s390_handle_01(struct kvm_vcpu
*vcpu
)
1442 switch (vcpu
->arch
.sie_block
->ipa
& 0x00ff) {
1444 return handle_ptff(vcpu
);
1446 return handle_sckpf(vcpu
);