Greg Kroah-Hartman | d809aa2 | 2017-11-24 15:00:33 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 2 | /* |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 3 | * handling privileged instructions |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 4 | * |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 5 | * Copyright IBM Corp. 2008, 2018 |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 6 | * |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 7 | * Author(s): Carsten Otte <cotte@de.ibm.com> |
| 8 | * Christian Borntraeger <borntraeger@de.ibm.com> |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kvm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/gfp.h> |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 13 | #include <linux/errno.h> |
Heiko Carstens | b13b5dc | 2013-03-25 17:22:55 +0100 | [diff] [blame] | 14 | #include <linux/compat.h> |
Ingo Molnar | 589ee62 | 2017-02-04 00:16:44 +0100 | [diff] [blame] | 15 | #include <linux/mm_types.h> |
| 16 | |
Heiko Carstens | 7c959e8 | 2013-03-05 13:14:46 +0100 | [diff] [blame] | 17 | #include <asm/asm-offsets.h> |
Heiko Carstens | e769ece | 2013-07-26 15:04:01 +0200 | [diff] [blame] | 18 | #include <asm/facility.h> |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 19 | #include <asm/current.h> |
| 20 | #include <asm/debug.h> |
| 21 | #include <asm/ebcdic.h> |
| 22 | #include <asm/sysinfo.h> |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 23 | #include <asm/pgtable.h> |
Claudio Imbrenda | 190df4a | 2016-08-04 17:54:42 +0200 | [diff] [blame] | 24 | #include <asm/page-states.h> |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 25 | #include <asm/pgalloc.h> |
Martin Schwidefsky | 1e133ab | 2016-03-08 11:49:57 +0100 | [diff] [blame] | 26 | #include <asm/gmap.h> |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 27 | #include <asm/io.h> |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 28 | #include <asm/ptrace.h> |
| 29 | #include <asm/compat.h> |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 30 | #include <asm/sclp.h> |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 31 | #include "gaccess.h" |
| 32 | #include "kvm-s390.h" |
Cornelia Huck | 5786fff | 2012-07-23 17:20:29 +0200 | [diff] [blame] | 33 | #include "trace.h" |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 34 | |
Fan Zhang | 80cd876 | 2016-08-15 04:53:22 +0200 | [diff] [blame] | 35 | static int handle_ri(struct kvm_vcpu *vcpu) |
| 36 | { |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 37 | vcpu->stat.instruction_ri++; |
| 38 | |
Fan Zhang | 80cd876 | 2016-08-15 04:53:22 +0200 | [diff] [blame] | 39 | if (test_kvm_facility(vcpu->kvm, 64)) { |
Christian Borntraeger | 4d5f2c0 | 2017-02-09 17:15:41 +0100 | [diff] [blame] | 40 | VCPU_EVENT(vcpu, 3, "%s", "ENABLE: RI (lazy)"); |
David Hildenbrand | 0c9d868 | 2017-03-13 11:48:28 +0100 | [diff] [blame] | 41 | vcpu->arch.sie_block->ecb3 |= ECB3_RI; |
Fan Zhang | 80cd876 | 2016-08-15 04:53:22 +0200 | [diff] [blame] | 42 | kvm_s390_retry_instr(vcpu); |
| 43 | return 0; |
| 44 | } else |
| 45 | return kvm_s390_inject_program_int(vcpu, PGM_OPERATION); |
| 46 | } |
| 47 | |
| 48 | int kvm_s390_handle_aa(struct kvm_vcpu *vcpu) |
| 49 | { |
| 50 | if ((vcpu->arch.sie_block->ipa & 0xf) <= 4) |
| 51 | return handle_ri(vcpu); |
| 52 | else |
| 53 | return -EOPNOTSUPP; |
| 54 | } |
| 55 | |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 56 | static int handle_gs(struct kvm_vcpu *vcpu) |
| 57 | { |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 58 | vcpu->stat.instruction_gs++; |
| 59 | |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 60 | if (test_kvm_facility(vcpu->kvm, 133)) { |
| 61 | VCPU_EVENT(vcpu, 3, "%s", "ENABLE: GS (lazy)"); |
| 62 | preempt_disable(); |
| 63 | __ctl_set_bit(2, 4); |
| 64 | current->thread.gs_cb = (struct gs_cb *)&vcpu->run->s.regs.gscb; |
| 65 | restore_gs_cb(current->thread.gs_cb); |
| 66 | preempt_enable(); |
| 67 | vcpu->arch.sie_block->ecb |= ECB_GS; |
| 68 | vcpu->arch.sie_block->ecd |= ECD_HOSTREGMGMT; |
| 69 | vcpu->arch.gs_enabled = 1; |
| 70 | kvm_s390_retry_instr(vcpu); |
| 71 | return 0; |
| 72 | } else |
| 73 | return kvm_s390_inject_program_int(vcpu, PGM_OPERATION); |
| 74 | } |
| 75 | |
| 76 | int kvm_s390_handle_e3(struct kvm_vcpu *vcpu) |
| 77 | { |
| 78 | int code = vcpu->arch.sie_block->ipb & 0xff; |
| 79 | |
| 80 | if (code == 0x49 || code == 0x4d) |
| 81 | return handle_gs(vcpu); |
| 82 | else |
| 83 | return -EOPNOTSUPP; |
| 84 | } |
Thomas Huth | 6a3f95a | 2013-09-12 10:33:49 +0200 | [diff] [blame] | 85 | /* Handle SCK (SET CLOCK) interception */ |
| 86 | static int handle_set_clock(struct kvm_vcpu *vcpu) |
| 87 | { |
David Hildenbrand | 25ed167 | 2015-05-12 09:49:14 +0200 | [diff] [blame] | 88 | int rc; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 89 | u8 ar; |
David Hildenbrand | 25ed167 | 2015-05-12 09:49:14 +0200 | [diff] [blame] | 90 | u64 op2, val; |
Thomas Huth | 6a3f95a | 2013-09-12 10:33:49 +0200 | [diff] [blame] | 91 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 92 | vcpu->stat.instruction_sck++; |
| 93 | |
Thomas Huth | 6a3f95a | 2013-09-12 10:33:49 +0200 | [diff] [blame] | 94 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 95 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 96 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 97 | op2 = kvm_s390_get_base_disp_s(vcpu, &ar); |
Thomas Huth | 6a3f95a | 2013-09-12 10:33:49 +0200 | [diff] [blame] | 98 | if (op2 & 7) /* Operand must be on a doubleword boundary */ |
| 99 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 100 | rc = read_guest(vcpu, op2, ar, &val, sizeof(val)); |
Heiko Carstens | 0e7a3f9 | 2014-01-01 16:50:11 +0100 | [diff] [blame] | 101 | if (rc) |
| 102 | return kvm_s390_inject_prog_cond(vcpu, rc); |
Thomas Huth | 6a3f95a | 2013-09-12 10:33:49 +0200 | [diff] [blame] | 103 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 104 | VCPU_EVENT(vcpu, 3, "SCK: setting guest TOD to 0x%llx", val); |
David Hildenbrand | 25ed167 | 2015-05-12 09:49:14 +0200 | [diff] [blame] | 105 | kvm_s390_set_tod_clock(vcpu->kvm, val); |
Thomas Huth | 6a3f95a | 2013-09-12 10:33:49 +0200 | [diff] [blame] | 106 | |
| 107 | kvm_s390_set_psw_cc(vcpu, 0); |
| 108 | return 0; |
| 109 | } |
| 110 | |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 111 | static int handle_set_prefix(struct kvm_vcpu *vcpu) |
| 112 | { |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 113 | u64 operand2; |
Heiko Carstens | 665170c | 2014-01-01 16:47:12 +0100 | [diff] [blame] | 114 | u32 address; |
| 115 | int rc; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 116 | u8 ar; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 117 | |
| 118 | vcpu->stat.instruction_spx++; |
| 119 | |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 120 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 121 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 122 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 123 | operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 124 | |
| 125 | /* must be word boundary */ |
Heiko Carstens | db4a29c | 2013-03-25 17:22:53 +0100 | [diff] [blame] | 126 | if (operand2 & 3) |
| 127 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 128 | |
| 129 | /* get the value */ |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 130 | rc = read_guest(vcpu, operand2, ar, &address, sizeof(address)); |
Heiko Carstens | 665170c | 2014-01-01 16:47:12 +0100 | [diff] [blame] | 131 | if (rc) |
| 132 | return kvm_s390_inject_prog_cond(vcpu, rc); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 133 | |
Heiko Carstens | 665170c | 2014-01-01 16:47:12 +0100 | [diff] [blame] | 134 | address &= 0x7fffe000u; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 135 | |
Heiko Carstens | 665170c | 2014-01-01 16:47:12 +0100 | [diff] [blame] | 136 | /* |
| 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. |
| 140 | */ |
| 141 | if (kvm_is_error_gpa(vcpu->kvm, address)) |
Heiko Carstens | db4a29c | 2013-03-25 17:22:53 +0100 | [diff] [blame] | 142 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 143 | |
Christian Borntraeger | 8d26cf7 | 2012-01-11 11:19:32 +0100 | [diff] [blame] | 144 | kvm_s390_set_prefix(vcpu, address); |
Cornelia Huck | 5786fff | 2012-07-23 17:20:29 +0200 | [diff] [blame] | 145 | trace_kvm_s390_handle_prefix(vcpu, 1, address); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | static int handle_store_prefix(struct kvm_vcpu *vcpu) |
| 150 | { |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 151 | u64 operand2; |
| 152 | u32 address; |
Heiko Carstens | f748f4a | 2014-01-01 16:52:47 +0100 | [diff] [blame] | 153 | int rc; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 154 | u8 ar; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 155 | |
| 156 | vcpu->stat.instruction_stpx++; |
Cornelia Huck | b1c571a | 2012-12-20 15:32:07 +0100 | [diff] [blame] | 157 | |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 158 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 159 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 160 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 161 | operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 162 | |
| 163 | /* must be word boundary */ |
Heiko Carstens | db4a29c | 2013-03-25 17:22:53 +0100 | [diff] [blame] | 164 | if (operand2 & 3) |
| 165 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 166 | |
Michael Mueller | fda902c | 2014-05-13 16:58:30 +0200 | [diff] [blame] | 167 | address = kvm_s390_get_prefix(vcpu); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 168 | |
| 169 | /* get the value */ |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 170 | rc = write_guest(vcpu, operand2, ar, &address, sizeof(address)); |
Heiko Carstens | f748f4a | 2014-01-01 16:52:47 +0100 | [diff] [blame] | 171 | if (rc) |
| 172 | return kvm_s390_inject_prog_cond(vcpu, rc); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 173 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 174 | VCPU_EVENT(vcpu, 3, "STPX: storing prefix 0x%x into 0x%llx", address, operand2); |
Cornelia Huck | 5786fff | 2012-07-23 17:20:29 +0200 | [diff] [blame] | 175 | trace_kvm_s390_handle_prefix(vcpu, 0, address); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | static int handle_store_cpu_address(struct kvm_vcpu *vcpu) |
| 180 | { |
Heiko Carstens | 8b96de0 | 2014-01-01 16:53:27 +0100 | [diff] [blame] | 181 | u16 vcpu_id = vcpu->vcpu_id; |
| 182 | u64 ga; |
| 183 | int rc; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 184 | u8 ar; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 185 | |
| 186 | vcpu->stat.instruction_stap++; |
Cornelia Huck | b1c571a | 2012-12-20 15:32:07 +0100 | [diff] [blame] | 187 | |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 188 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 189 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 190 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 191 | ga = kvm_s390_get_base_disp_s(vcpu, &ar); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 192 | |
Heiko Carstens | 8b96de0 | 2014-01-01 16:53:27 +0100 | [diff] [blame] | 193 | if (ga & 1) |
Heiko Carstens | db4a29c | 2013-03-25 17:22:53 +0100 | [diff] [blame] | 194 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 195 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 196 | rc = write_guest(vcpu, ga, ar, &vcpu_id, sizeof(vcpu_id)); |
Heiko Carstens | 8b96de0 | 2014-01-01 16:53:27 +0100 | [diff] [blame] | 197 | if (rc) |
| 198 | return kvm_s390_inject_prog_cond(vcpu, rc); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 199 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 200 | VCPU_EVENT(vcpu, 3, "STAP: storing cpu address (%u) to 0x%llx", vcpu_id, ga); |
Heiko Carstens | 8b96de0 | 2014-01-01 16:53:27 +0100 | [diff] [blame] | 201 | trace_kvm_s390_handle_stap(vcpu, ga); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 202 | return 0; |
| 203 | } |
| 204 | |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 205 | int kvm_s390_skey_check_enable(struct kvm_vcpu *vcpu) |
Dominik Dingel | 693ffc0 | 2014-01-14 18:11:14 +0100 | [diff] [blame] | 206 | { |
Dominik Dingel | 3ac8e38 | 2014-10-23 12:09:17 +0200 | [diff] [blame] | 207 | int rc = 0; |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 208 | struct kvm_s390_sie_block *sie_block = vcpu->arch.sie_block; |
David Hildenbrand | 11ddcd4 | 2016-05-10 09:40:09 +0200 | [diff] [blame] | 209 | |
| 210 | trace_kvm_s390_skey_related_inst(vcpu); |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 211 | if (!(sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)) && |
| 212 | !(atomic_read(&sie_block->cpuflags) & CPUSTAT_KSS)) |
Dominik Dingel | 3ac8e38 | 2014-10-23 12:09:17 +0200 | [diff] [blame] | 213 | return rc; |
Dominik Dingel | 693ffc0 | 2014-01-14 18:11:14 +0100 | [diff] [blame] | 214 | |
Dominik Dingel | 3ac8e38 | 2014-10-23 12:09:17 +0200 | [diff] [blame] | 215 | rc = s390_enable_skey(); |
David Hildenbrand | 11ddcd4 | 2016-05-10 09:40:09 +0200 | [diff] [blame] | 216 | VCPU_EVENT(vcpu, 3, "enabling storage keys for guest: %d", rc); |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 217 | if (!rc) { |
| 218 | if (atomic_read(&sie_block->cpuflags) & CPUSTAT_KSS) |
David Hildenbrand | 9daecfc | 2018-01-23 18:05:30 +0100 | [diff] [blame^] | 219 | kvm_s390_clear_cpuflags(vcpu, CPUSTAT_KSS); |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 220 | else |
| 221 | sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE | |
| 222 | ICTL_RRBE); |
| 223 | } |
Dominik Dingel | 3ac8e38 | 2014-10-23 12:09:17 +0200 | [diff] [blame] | 224 | return rc; |
Dominik Dingel | 693ffc0 | 2014-01-14 18:11:14 +0100 | [diff] [blame] | 225 | } |
| 226 | |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 227 | static int try_handle_skey(struct kvm_vcpu *vcpu) |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 228 | { |
David Hildenbrand | 11ddcd4 | 2016-05-10 09:40:09 +0200 | [diff] [blame] | 229 | int rc; |
Dominik Dingel | 693ffc0 | 2014-01-14 18:11:14 +0100 | [diff] [blame] | 230 | |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 231 | rc = kvm_s390_skey_check_enable(vcpu); |
Dominik Dingel | 3ac8e38 | 2014-10-23 12:09:17 +0200 | [diff] [blame] | 232 | if (rc) |
| 233 | return rc; |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 234 | if (sclp.has_skey) { |
| 235 | /* with storage-key facility, SIE interprets it for us */ |
| 236 | kvm_s390_retry_instr(vcpu); |
| 237 | VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation"); |
| 238 | return -EAGAIN; |
| 239 | } |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 240 | return 0; |
| 241 | } |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 242 | |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 243 | static int handle_iske(struct kvm_vcpu *vcpu) |
| 244 | { |
| 245 | unsigned long addr; |
| 246 | unsigned char key; |
| 247 | int reg1, reg2; |
| 248 | int rc; |
| 249 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 250 | vcpu->stat.instruction_iske++; |
| 251 | |
Janosch Frank | ca76ec9 | 2017-12-04 12:19:11 +0100 | [diff] [blame] | 252 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 253 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 254 | |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 255 | rc = try_handle_skey(vcpu); |
| 256 | if (rc) |
| 257 | return rc != -EAGAIN ? rc : 0; |
| 258 | |
| 259 | kvm_s390_get_regs_rre(vcpu, ®1, ®2); |
| 260 | |
| 261 | addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK; |
| 262 | addr = kvm_s390_logical_to_effective(vcpu, addr); |
| 263 | addr = kvm_s390_real_to_abs(vcpu, addr); |
| 264 | addr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(addr)); |
| 265 | if (kvm_is_error_hva(addr)) |
| 266 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 267 | |
| 268 | down_read(¤t->mm->mmap_sem); |
| 269 | rc = get_guest_storage_key(current->mm, addr, &key); |
| 270 | up_read(¤t->mm->mmap_sem); |
| 271 | if (rc) |
| 272 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 273 | vcpu->run->s.regs.gprs[reg1] &= ~0xff; |
| 274 | vcpu->run->s.regs.gprs[reg1] |= key; |
| 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | static int handle_rrbe(struct kvm_vcpu *vcpu) |
| 279 | { |
| 280 | unsigned long addr; |
| 281 | int reg1, reg2; |
| 282 | int rc; |
| 283 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 284 | vcpu->stat.instruction_rrbe++; |
| 285 | |
Janosch Frank | ca76ec9 | 2017-12-04 12:19:11 +0100 | [diff] [blame] | 286 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 287 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 288 | |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 289 | rc = try_handle_skey(vcpu); |
| 290 | if (rc) |
| 291 | return rc != -EAGAIN ? rc : 0; |
| 292 | |
| 293 | kvm_s390_get_regs_rre(vcpu, ®1, ®2); |
| 294 | |
| 295 | addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK; |
| 296 | addr = kvm_s390_logical_to_effective(vcpu, addr); |
| 297 | addr = kvm_s390_real_to_abs(vcpu, addr); |
| 298 | addr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(addr)); |
| 299 | if (kvm_is_error_hva(addr)) |
| 300 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 301 | |
| 302 | down_read(¤t->mm->mmap_sem); |
| 303 | rc = reset_guest_reference_bit(current->mm, addr); |
| 304 | up_read(¤t->mm->mmap_sem); |
| 305 | if (rc < 0) |
| 306 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 307 | |
| 308 | kvm_s390_set_psw_cc(vcpu, rc); |
| 309 | return 0; |
| 310 | } |
| 311 | |
| 312 | #define SSKE_NQ 0x8 |
| 313 | #define SSKE_MR 0x4 |
| 314 | #define SSKE_MC 0x2 |
| 315 | #define SSKE_MB 0x1 |
| 316 | static int handle_sske(struct kvm_vcpu *vcpu) |
| 317 | { |
| 318 | unsigned char m3 = vcpu->arch.sie_block->ipb >> 28; |
| 319 | unsigned long start, end; |
| 320 | unsigned char key, oldkey; |
| 321 | int reg1, reg2; |
| 322 | int rc; |
| 323 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 324 | vcpu->stat.instruction_sske++; |
| 325 | |
Janosch Frank | ca76ec9 | 2017-12-04 12:19:11 +0100 | [diff] [blame] | 326 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 327 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 328 | |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 329 | rc = try_handle_skey(vcpu); |
| 330 | if (rc) |
| 331 | return rc != -EAGAIN ? rc : 0; |
| 332 | |
| 333 | if (!test_kvm_facility(vcpu->kvm, 8)) |
| 334 | m3 &= ~SSKE_MB; |
| 335 | if (!test_kvm_facility(vcpu->kvm, 10)) |
| 336 | m3 &= ~(SSKE_MC | SSKE_MR); |
| 337 | if (!test_kvm_facility(vcpu->kvm, 14)) |
| 338 | m3 &= ~SSKE_NQ; |
| 339 | |
| 340 | kvm_s390_get_regs_rre(vcpu, ®1, ®2); |
| 341 | |
| 342 | key = vcpu->run->s.regs.gprs[reg1] & 0xfe; |
| 343 | start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK; |
| 344 | start = kvm_s390_logical_to_effective(vcpu, start); |
| 345 | if (m3 & SSKE_MB) { |
| 346 | /* start already designates an absolute address */ |
Heiko Carstens | 58cdf5e | 2017-07-05 07:37:14 +0200 | [diff] [blame] | 347 | end = (start + _SEGMENT_SIZE) & ~(_SEGMENT_SIZE - 1); |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 348 | } else { |
| 349 | start = kvm_s390_real_to_abs(vcpu, start); |
| 350 | end = start + PAGE_SIZE; |
| 351 | } |
| 352 | |
| 353 | while (start != end) { |
| 354 | unsigned long addr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(start)); |
| 355 | |
| 356 | if (kvm_is_error_hva(addr)) |
| 357 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 358 | |
| 359 | down_read(¤t->mm->mmap_sem); |
| 360 | rc = cond_set_guest_storage_key(current->mm, addr, key, &oldkey, |
| 361 | m3 & SSKE_NQ, m3 & SSKE_MR, |
| 362 | m3 & SSKE_MC); |
| 363 | up_read(¤t->mm->mmap_sem); |
| 364 | if (rc < 0) |
| 365 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 366 | start += PAGE_SIZE; |
Heiko Carstens | 0b92515 | 2017-01-02 08:51:02 +0100 | [diff] [blame] | 367 | } |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 368 | |
| 369 | if (m3 & (SSKE_MC | SSKE_MR)) { |
| 370 | if (m3 & SSKE_MB) { |
| 371 | /* skey in reg1 is unpredictable */ |
| 372 | kvm_s390_set_psw_cc(vcpu, 3); |
| 373 | } else { |
| 374 | kvm_s390_set_psw_cc(vcpu, rc); |
| 375 | vcpu->run->s.regs.gprs[reg1] &= ~0xff00UL; |
| 376 | vcpu->run->s.regs.gprs[reg1] |= (u64) oldkey << 8; |
| 377 | } |
| 378 | } |
| 379 | if (m3 & SSKE_MB) { |
Heiko Carstens | 8bb3fdd | 2017-06-03 10:19:55 +0200 | [diff] [blame] | 380 | if (psw_bits(vcpu->arch.sie_block->gpsw).eaba == PSW_BITS_AMODE_64BIT) |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 381 | vcpu->run->s.regs.gprs[reg2] &= ~PAGE_MASK; |
| 382 | else |
| 383 | vcpu->run->s.regs.gprs[reg2] &= ~0xfffff000UL; |
| 384 | end = kvm_s390_logical_to_effective(vcpu, end); |
| 385 | vcpu->run->s.regs.gprs[reg2] |= end; |
| 386 | } |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 387 | return 0; |
| 388 | } |
| 389 | |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 390 | static int handle_ipte_interlock(struct kvm_vcpu *vcpu) |
| 391 | { |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 392 | vcpu->stat.instruction_ipte_interlock++; |
Heiko Carstens | a752598 | 2017-06-03 10:56:07 +0200 | [diff] [blame] | 393 | if (psw_bits(vcpu->arch.sie_block->gpsw).pstate) |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 394 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 395 | wait_event(vcpu->kvm->arch.ipte_wq, !ipte_lock_held(vcpu)); |
David Hildenbrand | 0e8bc06 | 2015-11-04 13:47:58 +0100 | [diff] [blame] | 396 | kvm_s390_retry_instr(vcpu); |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 397 | VCPU_EVENT(vcpu, 4, "%s", "retrying ipte interlock operation"); |
| 398 | return 0; |
| 399 | } |
| 400 | |
Thomas Huth | aca8424 | 2013-09-12 10:33:48 +0200 | [diff] [blame] | 401 | static int handle_test_block(struct kvm_vcpu *vcpu) |
| 402 | { |
Thomas Huth | aca8424 | 2013-09-12 10:33:48 +0200 | [diff] [blame] | 403 | gpa_t addr; |
| 404 | int reg2; |
| 405 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 406 | vcpu->stat.instruction_tb++; |
| 407 | |
Thomas Huth | aca8424 | 2013-09-12 10:33:48 +0200 | [diff] [blame] | 408 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 409 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 410 | |
| 411 | kvm_s390_get_regs_rre(vcpu, NULL, ®2); |
| 412 | addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK; |
Thomas Huth | e45efa2 | 2014-03-07 12:14:23 +0100 | [diff] [blame] | 413 | addr = kvm_s390_logical_to_effective(vcpu, addr); |
Alexander Yarygin | dd9e5b7 | 2015-03-03 14:26:14 +0300 | [diff] [blame] | 414 | if (kvm_s390_check_low_addr_prot_real(vcpu, addr)) |
Thomas Huth | e45efa2 | 2014-03-07 12:14:23 +0100 | [diff] [blame] | 415 | return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm); |
Thomas Huth | aca8424 | 2013-09-12 10:33:48 +0200 | [diff] [blame] | 416 | addr = kvm_s390_real_to_abs(vcpu, addr); |
| 417 | |
Heiko Carstens | ef23e77 | 2014-01-01 16:53:49 +0100 | [diff] [blame] | 418 | if (kvm_is_error_gpa(vcpu->kvm, addr)) |
Thomas Huth | aca8424 | 2013-09-12 10:33:48 +0200 | [diff] [blame] | 419 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 420 | /* |
| 421 | * We don't expect errors on modern systems, and do not care |
| 422 | * about storage keys (yet), so let's just clear the page. |
| 423 | */ |
Heiko Carstens | ef23e77 | 2014-01-01 16:53:49 +0100 | [diff] [blame] | 424 | if (kvm_clear_guest(vcpu->kvm, addr, PAGE_SIZE)) |
Thomas Huth | aca8424 | 2013-09-12 10:33:48 +0200 | [diff] [blame] | 425 | return -EFAULT; |
| 426 | kvm_s390_set_psw_cc(vcpu, 0); |
| 427 | vcpu->run->s.regs.gprs[0] = 0; |
| 428 | return 0; |
| 429 | } |
| 430 | |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 431 | static int handle_tpi(struct kvm_vcpu *vcpu) |
| 432 | { |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 433 | struct kvm_s390_interrupt_info *inti; |
Heiko Carstens | 4799b55 | 2014-01-01 16:55:48 +0100 | [diff] [blame] | 434 | unsigned long len; |
| 435 | u32 tpi_data[3]; |
David Hildenbrand | 261520d | 2015-02-04 15:53:42 +0100 | [diff] [blame] | 436 | int rc; |
Heiko Carstens | 7c959e8 | 2013-03-05 13:14:46 +0100 | [diff] [blame] | 437 | u64 addr; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 438 | u8 ar; |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 439 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 440 | vcpu->stat.instruction_tpi++; |
| 441 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 442 | addr = kvm_s390_get_base_disp_s(vcpu, &ar); |
Heiko Carstens | db4a29c | 2013-03-25 17:22:53 +0100 | [diff] [blame] | 443 | if (addr & 3) |
| 444 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
David Hildenbrand | 261520d | 2015-02-04 15:53:42 +0100 | [diff] [blame] | 445 | |
Thomas Huth | f092669 | 2013-10-09 14:15:54 +0200 | [diff] [blame] | 446 | inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0); |
David Hildenbrand | 261520d | 2015-02-04 15:53:42 +0100 | [diff] [blame] | 447 | if (!inti) { |
| 448 | kvm_s390_set_psw_cc(vcpu, 0); |
| 449 | return 0; |
| 450 | } |
| 451 | |
Heiko Carstens | 4799b55 | 2014-01-01 16:55:48 +0100 | [diff] [blame] | 452 | tpi_data[0] = inti->io.subchannel_id << 16 | inti->io.subchannel_nr; |
| 453 | tpi_data[1] = inti->io.io_int_parm; |
| 454 | tpi_data[2] = inti->io.io_int_word; |
Heiko Carstens | 7c959e8 | 2013-03-05 13:14:46 +0100 | [diff] [blame] | 455 | if (addr) { |
| 456 | /* |
| 457 | * Store the two-word I/O interruption code into the |
| 458 | * provided area. |
| 459 | */ |
Heiko Carstens | 4799b55 | 2014-01-01 16:55:48 +0100 | [diff] [blame] | 460 | len = sizeof(tpi_data) - 4; |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 461 | rc = write_guest(vcpu, addr, ar, &tpi_data, len); |
David Hildenbrand | 261520d | 2015-02-04 15:53:42 +0100 | [diff] [blame] | 462 | if (rc) { |
| 463 | rc = kvm_s390_inject_prog_cond(vcpu, rc); |
| 464 | goto reinject_interrupt; |
| 465 | } |
Heiko Carstens | 7c959e8 | 2013-03-05 13:14:46 +0100 | [diff] [blame] | 466 | } else { |
| 467 | /* |
| 468 | * Store the three-word I/O interruption code into |
| 469 | * the appropriate lowcore area. |
| 470 | */ |
Heiko Carstens | 4799b55 | 2014-01-01 16:55:48 +0100 | [diff] [blame] | 471 | len = sizeof(tpi_data); |
David Hildenbrand | 261520d | 2015-02-04 15:53:42 +0100 | [diff] [blame] | 472 | if (write_guest_lc(vcpu, __LC_SUBCHANNEL_ID, &tpi_data, len)) { |
| 473 | /* failed writes to the low core are not recoverable */ |
Heiko Carstens | 4799b55 | 2014-01-01 16:55:48 +0100 | [diff] [blame] | 474 | rc = -EFAULT; |
David Hildenbrand | 261520d | 2015-02-04 15:53:42 +0100 | [diff] [blame] | 475 | goto reinject_interrupt; |
| 476 | } |
Heiko Carstens | 7c959e8 | 2013-03-05 13:14:46 +0100 | [diff] [blame] | 477 | } |
David Hildenbrand | 261520d | 2015-02-04 15:53:42 +0100 | [diff] [blame] | 478 | |
| 479 | /* irq was successfully handed to the guest */ |
| 480 | kfree(inti); |
| 481 | kvm_s390_set_psw_cc(vcpu, 1); |
| 482 | return 0; |
| 483 | reinject_interrupt: |
Cornelia Huck | 2f32d4e | 2014-01-08 18:07:54 +0100 | [diff] [blame] | 484 | /* |
| 485 | * If we encounter a problem storing the interruption code, the |
| 486 | * instruction is suppressed from the guest's view: reinject the |
| 487 | * interrupt. |
| 488 | */ |
David Hildenbrand | 15462e3 | 2015-02-04 15:59:11 +0100 | [diff] [blame] | 489 | if (kvm_s390_reinject_io_int(vcpu->kvm, inti)) { |
| 490 | kfree(inti); |
| 491 | rc = -EFAULT; |
| 492 | } |
David Hildenbrand | 261520d | 2015-02-04 15:53:42 +0100 | [diff] [blame] | 493 | /* don't set the cc, a pgm irq was injected or we drop to user space */ |
Heiko Carstens | 4799b55 | 2014-01-01 16:55:48 +0100 | [diff] [blame] | 494 | return rc ? -EFAULT : 0; |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | static int handle_tsch(struct kvm_vcpu *vcpu) |
| 498 | { |
Jens Freimann | 6d3da24 | 2013-07-03 15:18:35 +0200 | [diff] [blame] | 499 | struct kvm_s390_interrupt_info *inti = NULL; |
| 500 | const u64 isc_mask = 0xffUL << 24; /* all iscs set */ |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 501 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 502 | vcpu->stat.instruction_tsch++; |
| 503 | |
Jens Freimann | 6d3da24 | 2013-07-03 15:18:35 +0200 | [diff] [blame] | 504 | /* a valid schid has at least one bit set */ |
| 505 | if (vcpu->run->s.regs.gprs[1]) |
| 506 | inti = kvm_s390_get_io_int(vcpu->kvm, isc_mask, |
| 507 | vcpu->run->s.regs.gprs[1]); |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 508 | |
| 509 | /* |
| 510 | * Prepare exit to userspace. |
| 511 | * We indicate whether we dequeued a pending I/O interrupt |
| 512 | * so that userspace can re-inject it if the instruction gets |
| 513 | * a program check. While this may re-order the pending I/O |
| 514 | * interrupts, this is no problem since the priority is kept |
| 515 | * intact. |
| 516 | */ |
| 517 | vcpu->run->exit_reason = KVM_EXIT_S390_TSCH; |
| 518 | vcpu->run->s390_tsch.dequeued = !!inti; |
| 519 | if (inti) { |
| 520 | vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id; |
| 521 | vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr; |
| 522 | vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm; |
| 523 | vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word; |
| 524 | } |
| 525 | vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb; |
| 526 | kfree(inti); |
| 527 | return -EREMOTE; |
| 528 | } |
| 529 | |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 530 | static int handle_io_inst(struct kvm_vcpu *vcpu) |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 531 | { |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 532 | VCPU_EVENT(vcpu, 4, "%s", "I/O instruction"); |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 533 | |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 534 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 535 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 536 | |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 537 | if (vcpu->kvm->arch.css_support) { |
| 538 | /* |
| 539 | * Most I/O instructions will be handled by userspace. |
| 540 | * Exceptions are tpi and the interrupt portion of tsch. |
| 541 | */ |
| 542 | if (vcpu->arch.sie_block->ipa == 0xb236) |
| 543 | return handle_tpi(vcpu); |
| 544 | if (vcpu->arch.sie_block->ipa == 0xb235) |
| 545 | return handle_tsch(vcpu); |
| 546 | /* Handle in userspace. */ |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 547 | vcpu->stat.instruction_io_other++; |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 548 | return -EOPNOTSUPP; |
| 549 | } else { |
| 550 | /* |
Hendrik Brueckner | b4a9601 | 2013-12-13 12:53:42 +0100 | [diff] [blame] | 551 | * Set condition code 3 to stop the guest from issuing channel |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 552 | * I/O instructions. |
| 553 | */ |
Thomas Huth | ea828eb | 2013-07-26 15:04:06 +0200 | [diff] [blame] | 554 | kvm_s390_set_psw_cc(vcpu, 3); |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 555 | return 0; |
| 556 | } |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 557 | } |
| 558 | |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 559 | static int handle_stfl(struct kvm_vcpu *vcpu) |
| 560 | { |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 561 | int rc; |
Michael Mueller | 9d8d578 | 2015-02-02 15:42:51 +0100 | [diff] [blame] | 562 | unsigned int fac; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 563 | |
| 564 | vcpu->stat.instruction_stfl++; |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 565 | |
| 566 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 567 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 568 | |
Michael Mueller | 9d8d578 | 2015-02-02 15:42:51 +0100 | [diff] [blame] | 569 | /* |
| 570 | * We need to shift the lower 32 facility bits (bit 0-31) from a u64 |
| 571 | * into a u32 memory representation. They will remain bits 0-31. |
| 572 | */ |
David Hildenbrand | c54f0d6 | 2015-12-02 08:53:52 +0100 | [diff] [blame] | 573 | fac = *vcpu->kvm->arch.model.fac_list >> 32; |
Heiko Carstens | c667aea | 2015-12-31 10:29:00 +0100 | [diff] [blame] | 574 | rc = write_guest_lc(vcpu, offsetof(struct lowcore, stfl_fac_list), |
Michael Mueller | 9d8d578 | 2015-02-02 15:42:51 +0100 | [diff] [blame] | 575 | &fac, sizeof(fac)); |
Heiko Carstens | dc5008b | 2013-03-05 13:14:43 +0100 | [diff] [blame] | 576 | if (rc) |
Heiko Carstens | 0f9701c | 2014-01-01 16:56:41 +0100 | [diff] [blame] | 577 | return rc; |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 578 | VCPU_EVENT(vcpu, 3, "STFL: store facility list 0x%x", fac); |
Michael Mueller | 9d8d578 | 2015-02-02 15:42:51 +0100 | [diff] [blame] | 579 | trace_kvm_s390_handle_stfl(vcpu, fac); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 580 | return 0; |
| 581 | } |
| 582 | |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 583 | #define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA) |
| 584 | #define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL |
Heiko Carstens | d21683e | 2013-03-25 17:22:49 +0100 | [diff] [blame] | 585 | #define PSW_ADDR_24 0x0000000000ffffffUL |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 586 | #define PSW_ADDR_31 0x000000007fffffffUL |
| 587 | |
Thomas Huth | a3fb577 | 2014-04-17 09:10:40 +0200 | [diff] [blame] | 588 | int is_valid_psw(psw_t *psw) |
| 589 | { |
Heiko Carstens | 3736b87 | 2013-03-25 17:22:52 +0100 | [diff] [blame] | 590 | if (psw->mask & PSW_MASK_UNASSIGNED) |
| 591 | return 0; |
| 592 | if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) { |
| 593 | if (psw->addr & ~PSW_ADDR_31) |
| 594 | return 0; |
| 595 | } |
| 596 | if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24)) |
| 597 | return 0; |
| 598 | if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA) |
| 599 | return 0; |
Thomas Huth | a3fb577 | 2014-04-17 09:10:40 +0200 | [diff] [blame] | 600 | if (psw->addr & 1) |
| 601 | return 0; |
Heiko Carstens | 3736b87 | 2013-03-25 17:22:52 +0100 | [diff] [blame] | 602 | return 1; |
| 603 | } |
| 604 | |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 605 | int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu) |
| 606 | { |
Heiko Carstens | 3736b87 | 2013-03-25 17:22:52 +0100 | [diff] [blame] | 607 | psw_t *gpsw = &vcpu->arch.sie_block->gpsw; |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 608 | psw_compat_t new_psw; |
Heiko Carstens | 3736b87 | 2013-03-25 17:22:52 +0100 | [diff] [blame] | 609 | u64 addr; |
Heiko Carstens | 2d8bcae | 2014-01-01 16:57:42 +0100 | [diff] [blame] | 610 | int rc; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 611 | u8 ar; |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 612 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 613 | vcpu->stat.instruction_lpsw++; |
| 614 | |
Heiko Carstens | 3736b87 | 2013-03-25 17:22:52 +0100 | [diff] [blame] | 615 | if (gpsw->mask & PSW_MASK_PSTATE) |
Thomas Huth | 208dd75 | 2013-06-20 17:21:59 +0200 | [diff] [blame] | 616 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 617 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 618 | addr = kvm_s390_get_base_disp_s(vcpu, &ar); |
Heiko Carstens | 6fd0fcc | 2013-03-25 17:22:51 +0100 | [diff] [blame] | 619 | if (addr & 7) |
| 620 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Heiko Carstens | 2d8bcae | 2014-01-01 16:57:42 +0100 | [diff] [blame] | 621 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 622 | rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw)); |
Heiko Carstens | 2d8bcae | 2014-01-01 16:57:42 +0100 | [diff] [blame] | 623 | if (rc) |
| 624 | return kvm_s390_inject_prog_cond(vcpu, rc); |
Heiko Carstens | 6fd0fcc | 2013-03-25 17:22:51 +0100 | [diff] [blame] | 625 | if (!(new_psw.mask & PSW32_MASK_BASE)) |
| 626 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Heiko Carstens | 3736b87 | 2013-03-25 17:22:52 +0100 | [diff] [blame] | 627 | gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32; |
| 628 | gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE; |
| 629 | gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE; |
| 630 | if (!is_valid_psw(gpsw)) |
Heiko Carstens | 6fd0fcc | 2013-03-25 17:22:51 +0100 | [diff] [blame] | 631 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 632 | return 0; |
| 633 | } |
| 634 | |
| 635 | static int handle_lpswe(struct kvm_vcpu *vcpu) |
| 636 | { |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 637 | psw_t new_psw; |
Heiko Carstens | 3736b87 | 2013-03-25 17:22:52 +0100 | [diff] [blame] | 638 | u64 addr; |
Heiko Carstens | 2d8bcae | 2014-01-01 16:57:42 +0100 | [diff] [blame] | 639 | int rc; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 640 | u8 ar; |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 641 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 642 | vcpu->stat.instruction_lpswe++; |
| 643 | |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 644 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 645 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 646 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 647 | addr = kvm_s390_get_base_disp_s(vcpu, &ar); |
Heiko Carstens | 6fd0fcc | 2013-03-25 17:22:51 +0100 | [diff] [blame] | 648 | if (addr & 7) |
| 649 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 650 | rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw)); |
Heiko Carstens | 2d8bcae | 2014-01-01 16:57:42 +0100 | [diff] [blame] | 651 | if (rc) |
| 652 | return kvm_s390_inject_prog_cond(vcpu, rc); |
Heiko Carstens | 3736b87 | 2013-03-25 17:22:52 +0100 | [diff] [blame] | 653 | vcpu->arch.sie_block->gpsw = new_psw; |
| 654 | if (!is_valid_psw(&vcpu->arch.sie_block->gpsw)) |
Heiko Carstens | 6fd0fcc | 2013-03-25 17:22:51 +0100 | [diff] [blame] | 655 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 656 | return 0; |
| 657 | } |
| 658 | |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 659 | static int handle_stidp(struct kvm_vcpu *vcpu) |
| 660 | { |
David Hildenbrand | 9bb0ec0 | 2016-04-04 14:27:51 +0200 | [diff] [blame] | 661 | u64 stidp_data = vcpu->kvm->arch.model.cpuid; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 662 | u64 operand2; |
Heiko Carstens | 7d777d7 | 2014-01-01 16:58:16 +0100 | [diff] [blame] | 663 | int rc; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 664 | u8 ar; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 665 | |
| 666 | vcpu->stat.instruction_stidp++; |
Cornelia Huck | b1c571a | 2012-12-20 15:32:07 +0100 | [diff] [blame] | 667 | |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 668 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 669 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 670 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 671 | operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 672 | |
Heiko Carstens | db4a29c | 2013-03-25 17:22:53 +0100 | [diff] [blame] | 673 | if (operand2 & 7) |
| 674 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 675 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 676 | rc = write_guest(vcpu, operand2, ar, &stidp_data, sizeof(stidp_data)); |
Heiko Carstens | 7d777d7 | 2014-01-01 16:58:16 +0100 | [diff] [blame] | 677 | if (rc) |
| 678 | return kvm_s390_inject_prog_cond(vcpu, rc); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 679 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 680 | VCPU_EVENT(vcpu, 3, "STIDP: store cpu id 0x%llx", stidp_data); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 681 | return 0; |
| 682 | } |
| 683 | |
| 684 | static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem) |
| 685 | { |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 686 | int cpus = 0; |
| 687 | int n; |
| 688 | |
Jens Freimann | ff520a6 | 2014-02-24 10:11:41 +0100 | [diff] [blame] | 689 | cpus = atomic_read(&vcpu->kvm->online_vcpus); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 690 | |
| 691 | /* deal with other level 3 hypervisors */ |
Heiko Carstens | caf757c | 2012-09-06 14:42:13 +0200 | [diff] [blame] | 692 | if (stsi(mem, 3, 2, 2)) |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 693 | mem->count = 0; |
| 694 | if (mem->count < 8) |
| 695 | mem->count++; |
| 696 | for (n = mem->count - 1; n > 0 ; n--) |
| 697 | memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0])); |
| 698 | |
Ekaterina Tumanova | b75f4c9 | 2015-03-03 09:54:41 +0100 | [diff] [blame] | 699 | memset(&mem->vm[0], 0, sizeof(mem->vm[0])); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 700 | mem->vm[0].cpus_total = cpus; |
| 701 | mem->vm[0].cpus_configured = cpus; |
| 702 | mem->vm[0].cpus_standby = 0; |
| 703 | mem->vm[0].cpus_reserved = 0; |
| 704 | mem->vm[0].caf = 1000; |
| 705 | memcpy(mem->vm[0].name, "KVMguest", 8); |
| 706 | ASCEBC(mem->vm[0].name, 8); |
| 707 | memcpy(mem->vm[0].cpi, "KVM/Linux ", 16); |
| 708 | ASCEBC(mem->vm[0].cpi, 16); |
| 709 | } |
| 710 | |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 711 | static void insert_stsi_usr_data(struct kvm_vcpu *vcpu, u64 addr, u8 ar, |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 712 | u8 fc, u8 sel1, u16 sel2) |
| 713 | { |
| 714 | vcpu->run->exit_reason = KVM_EXIT_S390_STSI; |
| 715 | vcpu->run->s390_stsi.addr = addr; |
| 716 | vcpu->run->s390_stsi.ar = ar; |
| 717 | vcpu->run->s390_stsi.fc = fc; |
| 718 | vcpu->run->s390_stsi.sel1 = sel1; |
| 719 | vcpu->run->s390_stsi.sel2 = sel2; |
| 720 | } |
| 721 | |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 722 | static int handle_stsi(struct kvm_vcpu *vcpu) |
| 723 | { |
Christian Borntraeger | 5a32c1a | 2012-01-11 11:20:32 +0100 | [diff] [blame] | 724 | int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28; |
| 725 | int sel1 = vcpu->run->s.regs.gprs[0] & 0xff; |
| 726 | int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff; |
Heiko Carstens | c51f068 | 2013-03-25 17:22:54 +0100 | [diff] [blame] | 727 | unsigned long mem = 0; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 728 | u64 operand2; |
Heiko Carstens | db4a29c | 2013-03-25 17:22:53 +0100 | [diff] [blame] | 729 | int rc = 0; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 730 | u8 ar; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 731 | |
| 732 | vcpu->stat.instruction_stsi++; |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 733 | VCPU_EVENT(vcpu, 3, "STSI: fc: %u sel1: %u sel2: %u", fc, sel1, sel2); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 734 | |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 735 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 736 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 737 | |
Thomas Huth | 87d41fb | 2013-06-20 17:22:05 +0200 | [diff] [blame] | 738 | if (fc > 3) { |
Thomas Huth | ea828eb | 2013-07-26 15:04:06 +0200 | [diff] [blame] | 739 | kvm_s390_set_psw_cc(vcpu, 3); |
Thomas Huth | 87d41fb | 2013-06-20 17:22:05 +0200 | [diff] [blame] | 740 | return 0; |
| 741 | } |
| 742 | |
| 743 | if (vcpu->run->s.regs.gprs[0] & 0x0fffff00 |
| 744 | || vcpu->run->s.regs.gprs[1] & 0xffff0000) |
| 745 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 746 | |
| 747 | if (fc == 0) { |
| 748 | vcpu->run->s.regs.gprs[0] = 3 << 28; |
Thomas Huth | ea828eb | 2013-07-26 15:04:06 +0200 | [diff] [blame] | 749 | kvm_s390_set_psw_cc(vcpu, 0); |
Thomas Huth | 87d41fb | 2013-06-20 17:22:05 +0200 | [diff] [blame] | 750 | return 0; |
| 751 | } |
| 752 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 753 | operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 754 | |
Thomas Huth | 87d41fb | 2013-06-20 17:22:05 +0200 | [diff] [blame] | 755 | if (operand2 & 0xfff) |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 756 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 757 | |
| 758 | switch (fc) { |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 759 | case 1: /* same handling for 1 and 2 */ |
| 760 | case 2: |
| 761 | mem = get_zeroed_page(GFP_KERNEL); |
| 762 | if (!mem) |
Heiko Carstens | c51f068 | 2013-03-25 17:22:54 +0100 | [diff] [blame] | 763 | goto out_no_data; |
Heiko Carstens | caf757c | 2012-09-06 14:42:13 +0200 | [diff] [blame] | 764 | if (stsi((void *) mem, fc, sel1, sel2)) |
Heiko Carstens | c51f068 | 2013-03-25 17:22:54 +0100 | [diff] [blame] | 765 | goto out_no_data; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 766 | break; |
| 767 | case 3: |
| 768 | if (sel1 != 2 || sel2 != 2) |
Heiko Carstens | c51f068 | 2013-03-25 17:22:54 +0100 | [diff] [blame] | 769 | goto out_no_data; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 770 | mem = get_zeroed_page(GFP_KERNEL); |
| 771 | if (!mem) |
Heiko Carstens | c51f068 | 2013-03-25 17:22:54 +0100 | [diff] [blame] | 772 | goto out_no_data; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 773 | handle_stsi_3_2_2(vcpu, (void *) mem); |
| 774 | break; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 775 | } |
| 776 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 777 | rc = write_guest(vcpu, operand2, ar, (void *)mem, PAGE_SIZE); |
Heiko Carstens | 645c5bc | 2014-01-01 16:58:59 +0100 | [diff] [blame] | 778 | if (rc) { |
| 779 | rc = kvm_s390_inject_prog_cond(vcpu, rc); |
| 780 | goto out; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 781 | } |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 782 | if (vcpu->kvm->arch.user_stsi) { |
| 783 | insert_stsi_usr_data(vcpu, operand2, ar, fc, sel1, sel2); |
| 784 | rc = -EREMOTE; |
| 785 | } |
Cornelia Huck | 5786fff | 2012-07-23 17:20:29 +0200 | [diff] [blame] | 786 | trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2); |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 787 | free_page(mem); |
Thomas Huth | ea828eb | 2013-07-26 15:04:06 +0200 | [diff] [blame] | 788 | kvm_s390_set_psw_cc(vcpu, 0); |
Christian Borntraeger | 5a32c1a | 2012-01-11 11:20:32 +0100 | [diff] [blame] | 789 | vcpu->run->s.regs.gprs[0] = 0; |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 790 | return rc; |
Heiko Carstens | c51f068 | 2013-03-25 17:22:54 +0100 | [diff] [blame] | 791 | out_no_data: |
Thomas Huth | ea828eb | 2013-07-26 15:04:06 +0200 | [diff] [blame] | 792 | kvm_s390_set_psw_cc(vcpu, 3); |
Heiko Carstens | 645c5bc | 2014-01-01 16:58:59 +0100 | [diff] [blame] | 793 | out: |
Heiko Carstens | c51f068 | 2013-03-25 17:22:54 +0100 | [diff] [blame] | 794 | free_page(mem); |
Heiko Carstens | db4a29c | 2013-03-25 17:22:53 +0100 | [diff] [blame] | 795 | return rc; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 796 | } |
| 797 | |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 798 | static const intercept_handler_t b2_handlers[256] = { |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 799 | [0x02] = handle_stidp, |
Thomas Huth | 6a3f95a | 2013-09-12 10:33:49 +0200 | [diff] [blame] | 800 | [0x04] = handle_set_clock, |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 801 | [0x10] = handle_set_prefix, |
| 802 | [0x11] = handle_store_prefix, |
| 803 | [0x12] = handle_store_cpu_address, |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 804 | [0x14] = kvm_s390_handle_vsie, |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 805 | [0x21] = handle_ipte_interlock, |
David Hildenbrand | a7e19ab | 2016-05-10 09:50:21 +0200 | [diff] [blame] | 806 | [0x29] = handle_iske, |
| 807 | [0x2a] = handle_rrbe, |
| 808 | [0x2b] = handle_sske, |
Thomas Huth | aca8424 | 2013-09-12 10:33:48 +0200 | [diff] [blame] | 809 | [0x2c] = handle_test_block, |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 810 | [0x30] = handle_io_inst, |
| 811 | [0x31] = handle_io_inst, |
| 812 | [0x32] = handle_io_inst, |
| 813 | [0x33] = handle_io_inst, |
| 814 | [0x34] = handle_io_inst, |
| 815 | [0x35] = handle_io_inst, |
| 816 | [0x36] = handle_io_inst, |
| 817 | [0x37] = handle_io_inst, |
| 818 | [0x38] = handle_io_inst, |
| 819 | [0x39] = handle_io_inst, |
| 820 | [0x3a] = handle_io_inst, |
| 821 | [0x3b] = handle_io_inst, |
| 822 | [0x3c] = handle_io_inst, |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 823 | [0x50] = handle_ipte_interlock, |
Christian Borntraeger | c0a6bfd | 2017-02-27 21:14:47 +0100 | [diff] [blame] | 824 | [0x56] = handle_sthyi, |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 825 | [0x5f] = handle_io_inst, |
| 826 | [0x74] = handle_io_inst, |
| 827 | [0x76] = handle_io_inst, |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 828 | [0x7d] = handle_stsi, |
| 829 | [0xb1] = handle_stfl, |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 830 | [0xb2] = handle_lpswe, |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 831 | }; |
| 832 | |
Christian Borntraeger | 70455a3 | 2009-01-22 10:28:29 +0100 | [diff] [blame] | 833 | int kvm_s390_handle_b2(struct kvm_vcpu *vcpu) |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 834 | { |
| 835 | intercept_handler_t handler; |
| 836 | |
Christian Borntraeger | 70455a3 | 2009-01-22 10:28:29 +0100 | [diff] [blame] | 837 | /* |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 838 | * A lot of B2 instructions are priviledged. Here we check for |
| 839 | * the privileged ones, that we can handle in the kernel. |
| 840 | * Anything else goes to userspace. |
| 841 | */ |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 842 | handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff]; |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 843 | if (handler) |
| 844 | return handler(vcpu); |
| 845 | |
Heiko Carstens | b8e660b | 2010-02-26 22:37:41 +0100 | [diff] [blame] | 846 | return -EOPNOTSUPP; |
Christian Borntraeger | 453423d | 2008-03-25 18:47:29 +0100 | [diff] [blame] | 847 | } |
Christian Borntraeger | bb25b9b | 2011-07-24 10:48:17 +0200 | [diff] [blame] | 848 | |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 849 | static int handle_epsw(struct kvm_vcpu *vcpu) |
| 850 | { |
| 851 | int reg1, reg2; |
| 852 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 853 | vcpu->stat.instruction_epsw++; |
| 854 | |
Thomas Huth | aeb87c3 | 2013-06-12 13:54:57 +0200 | [diff] [blame] | 855 | kvm_s390_get_regs_rre(vcpu, ®1, ®2); |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 856 | |
| 857 | /* This basically extracts the mask half of the psw. */ |
Thomas Huth | 843200e | 2013-07-26 15:04:05 +0200 | [diff] [blame] | 858 | vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL; |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 859 | vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32; |
| 860 | if (reg2) { |
Thomas Huth | 843200e | 2013-07-26 15:04:05 +0200 | [diff] [blame] | 861 | vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL; |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 862 | vcpu->run->s.regs.gprs[reg2] |= |
Thomas Huth | 843200e | 2013-07-26 15:04:05 +0200 | [diff] [blame] | 863 | vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL; |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 864 | } |
| 865 | return 0; |
| 866 | } |
| 867 | |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 868 | #define PFMF_RESERVED 0xfffc0101UL |
| 869 | #define PFMF_SK 0x00020000UL |
| 870 | #define PFMF_CF 0x00010000UL |
| 871 | #define PFMF_UI 0x00008000UL |
| 872 | #define PFMF_FSC 0x00007000UL |
| 873 | #define PFMF_NQ 0x00000800UL |
| 874 | #define PFMF_MR 0x00000400UL |
| 875 | #define PFMF_MC 0x00000200UL |
| 876 | #define PFMF_KEY 0x000000feUL |
| 877 | |
| 878 | static int handle_pfmf(struct kvm_vcpu *vcpu) |
| 879 | { |
David Hildenbrand | 1824c72 | 2016-05-10 09:43:11 +0200 | [diff] [blame] | 880 | bool mr = false, mc = false, nq; |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 881 | int reg1, reg2; |
| 882 | unsigned long start, end; |
David Hildenbrand | 1824c72 | 2016-05-10 09:43:11 +0200 | [diff] [blame] | 883 | unsigned char key; |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 884 | |
| 885 | vcpu->stat.instruction_pfmf++; |
| 886 | |
| 887 | kvm_s390_get_regs_rre(vcpu, ®1, ®2); |
| 888 | |
Heiko Carstens | 03c0280 | 2015-11-13 13:31:58 +0100 | [diff] [blame] | 889 | if (!test_kvm_facility(vcpu->kvm, 8)) |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 890 | return kvm_s390_inject_program_int(vcpu, PGM_OPERATION); |
| 891 | |
| 892 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
Thomas Huth | 208dd75 | 2013-06-20 17:21:59 +0200 | [diff] [blame] | 893 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 894 | |
| 895 | if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED) |
| 896 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 897 | |
David Hildenbrand | edc5b05 | 2016-03-04 11:08:09 +0100 | [diff] [blame] | 898 | /* Only provide non-quiescing support if enabled for the guest */ |
| 899 | if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && |
| 900 | !test_kvm_facility(vcpu->kvm, 14)) |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 901 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 902 | |
David Hildenbrand | 1824c72 | 2016-05-10 09:43:11 +0200 | [diff] [blame] | 903 | /* Only provide conditional-SSKE support if enabled for the guest */ |
| 904 | if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK && |
| 905 | test_kvm_facility(vcpu->kvm, 10)) { |
| 906 | mr = vcpu->run->s.regs.gprs[reg1] & PFMF_MR; |
| 907 | mc = vcpu->run->s.regs.gprs[reg1] & PFMF_MC; |
| 908 | } |
| 909 | |
| 910 | nq = vcpu->run->s.regs.gprs[reg1] & PFMF_NQ; |
| 911 | key = vcpu->run->s.regs.gprs[reg1] & PFMF_KEY; |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 912 | start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK; |
Thomas Huth | a02689f | 2014-11-10 15:59:32 +0100 | [diff] [blame] | 913 | start = kvm_s390_logical_to_effective(vcpu, start); |
Thomas Huth | fb34c603 | 2013-09-09 17:58:38 +0200 | [diff] [blame] | 914 | |
David Hildenbrand | 6164a2e | 2016-04-13 10:09:47 +0200 | [diff] [blame] | 915 | if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) { |
| 916 | if (kvm_s390_check_low_addr_prot_real(vcpu, start)) |
| 917 | return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm); |
| 918 | } |
| 919 | |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 920 | switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) { |
| 921 | case 0x00000000: |
David Hildenbrand | 6164a2e | 2016-04-13 10:09:47 +0200 | [diff] [blame] | 922 | /* only 4k frames specify a real address */ |
| 923 | start = kvm_s390_real_to_abs(vcpu, start); |
Heiko Carstens | 58cdf5e | 2017-07-05 07:37:14 +0200 | [diff] [blame] | 924 | end = (start + PAGE_SIZE) & ~(PAGE_SIZE - 1); |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 925 | break; |
| 926 | case 0x00001000: |
Heiko Carstens | 58cdf5e | 2017-07-05 07:37:14 +0200 | [diff] [blame] | 927 | end = (start + _SEGMENT_SIZE) & ~(_SEGMENT_SIZE - 1); |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 928 | break; |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 929 | case 0x00002000: |
Guenther Hutzl | 53df84f | 2015-02-18 11:13:03 +0100 | [diff] [blame] | 930 | /* only support 2G frame size if EDAT2 is available and we are |
| 931 | not in 24-bit addressing mode */ |
| 932 | if (!test_kvm_facility(vcpu->kvm, 78) || |
Heiko Carstens | 8bb3fdd | 2017-06-03 10:19:55 +0200 | [diff] [blame] | 933 | psw_bits(vcpu->arch.sie_block->gpsw).eaba == PSW_BITS_AMODE_24BIT) |
Guenther Hutzl | 53df84f | 2015-02-18 11:13:03 +0100 | [diff] [blame] | 934 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
Heiko Carstens | 58cdf5e | 2017-07-05 07:37:14 +0200 | [diff] [blame] | 935 | end = (start + _REGION3_SIZE) & ~(_REGION3_SIZE - 1); |
Guenther Hutzl | 53df84f | 2015-02-18 11:13:03 +0100 | [diff] [blame] | 936 | break; |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 937 | default: |
| 938 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 939 | } |
Thomas Huth | a02689f | 2014-11-10 15:59:32 +0100 | [diff] [blame] | 940 | |
David Hildenbrand | 695be0e | 2016-05-12 14:07:05 +0200 | [diff] [blame] | 941 | while (start != end) { |
David Hildenbrand | 6164a2e | 2016-04-13 10:09:47 +0200 | [diff] [blame] | 942 | unsigned long useraddr; |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 943 | |
Thomas Huth | fb34c603 | 2013-09-09 17:58:38 +0200 | [diff] [blame] | 944 | /* Translate guest address to host address */ |
David Hildenbrand | 6164a2e | 2016-04-13 10:09:47 +0200 | [diff] [blame] | 945 | useraddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(start)); |
Thomas Huth | fb34c603 | 2013-09-09 17:58:38 +0200 | [diff] [blame] | 946 | if (kvm_is_error_hva(useraddr)) |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 947 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 948 | |
| 949 | if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) { |
| 950 | if (clear_user((void __user *)useraddr, PAGE_SIZE)) |
| 951 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 952 | } |
| 953 | |
| 954 | if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) { |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 955 | int rc = kvm_s390_skey_check_enable(vcpu); |
Dominik Dingel | 3ac8e38 | 2014-10-23 12:09:17 +0200 | [diff] [blame] | 956 | |
| 957 | if (rc) |
| 958 | return rc; |
Martin Schwidefsky | d3ed1ce | 2016-03-08 11:53:35 +0100 | [diff] [blame] | 959 | down_read(¤t->mm->mmap_sem); |
David Hildenbrand | 1824c72 | 2016-05-10 09:43:11 +0200 | [diff] [blame] | 960 | rc = cond_set_guest_storage_key(current->mm, useraddr, |
| 961 | key, NULL, nq, mr, mc); |
Martin Schwidefsky | d3ed1ce | 2016-03-08 11:53:35 +0100 | [diff] [blame] | 962 | up_read(¤t->mm->mmap_sem); |
David Hildenbrand | 1824c72 | 2016-05-10 09:43:11 +0200 | [diff] [blame] | 963 | if (rc < 0) |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 964 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 965 | } |
| 966 | |
| 967 | start += PAGE_SIZE; |
| 968 | } |
David Hildenbrand | 2c26d1d | 2016-04-13 15:47:21 +0200 | [diff] [blame] | 969 | if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) { |
Heiko Carstens | 8bb3fdd | 2017-06-03 10:19:55 +0200 | [diff] [blame] | 970 | if (psw_bits(vcpu->arch.sie_block->gpsw).eaba == PSW_BITS_AMODE_64BIT) { |
David Hildenbrand | 2c26d1d | 2016-04-13 15:47:21 +0200 | [diff] [blame] | 971 | vcpu->run->s.regs.gprs[reg2] = end; |
| 972 | } else { |
| 973 | vcpu->run->s.regs.gprs[reg2] &= ~0xffffffffUL; |
| 974 | end = kvm_s390_logical_to_effective(vcpu, end); |
| 975 | vcpu->run->s.regs.gprs[reg2] |= end; |
| 976 | } |
| 977 | } |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 978 | return 0; |
| 979 | } |
| 980 | |
Claudio Imbrenda | 190df4a | 2016-08-04 17:54:42 +0200 | [diff] [blame] | 981 | static inline int do_essa(struct kvm_vcpu *vcpu, const int orc) |
| 982 | { |
| 983 | struct kvm_s390_migration_state *ms = vcpu->kvm->arch.migration_state; |
| 984 | int r1, r2, nappended, entries; |
| 985 | unsigned long gfn, hva, res, pgstev, ptev; |
| 986 | unsigned long *cbrlo; |
| 987 | |
| 988 | /* |
| 989 | * We don't need to set SD.FPF.SK to 1 here, because if we have a |
| 990 | * machine check here we either handle it or crash |
| 991 | */ |
| 992 | |
| 993 | kvm_s390_get_regs_rre(vcpu, &r1, &r2); |
| 994 | gfn = vcpu->run->s.regs.gprs[r2] >> PAGE_SHIFT; |
| 995 | hva = gfn_to_hva(vcpu->kvm, gfn); |
| 996 | entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3; |
| 997 | |
| 998 | if (kvm_is_error_hva(hva)) |
| 999 | return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 1000 | |
| 1001 | nappended = pgste_perform_essa(vcpu->kvm->mm, hva, orc, &ptev, &pgstev); |
| 1002 | if (nappended < 0) { |
| 1003 | res = orc ? 0x10 : 0; |
| 1004 | vcpu->run->s.regs.gprs[r1] = res; /* Exception Indication */ |
| 1005 | return 0; |
| 1006 | } |
| 1007 | res = (pgstev & _PGSTE_GPS_USAGE_MASK) >> 22; |
| 1008 | /* |
| 1009 | * Set the block-content state part of the result. 0 means resident, so |
| 1010 | * nothing to do if the page is valid. 2 is for preserved pages |
| 1011 | * (non-present and non-zero), and 3 for zero pages (non-present and |
| 1012 | * zero). |
| 1013 | */ |
| 1014 | if (ptev & _PAGE_INVALID) { |
| 1015 | res |= 2; |
| 1016 | if (pgstev & _PGSTE_GPS_ZERO) |
| 1017 | res |= 1; |
| 1018 | } |
Claudio Imbrenda | 1bab1c0 | 2016-08-29 15:56:55 +0200 | [diff] [blame] | 1019 | if (pgstev & _PGSTE_GPS_NODAT) |
| 1020 | res |= 0x20; |
Claudio Imbrenda | 190df4a | 2016-08-04 17:54:42 +0200 | [diff] [blame] | 1021 | vcpu->run->s.regs.gprs[r1] = res; |
| 1022 | /* |
| 1023 | * It is possible that all the normal 511 slots were full, in which case |
| 1024 | * we will now write in the 512th slot, which is reserved for host use. |
| 1025 | * In both cases we let the normal essa handling code process all the |
| 1026 | * slots, including the reserved one, if needed. |
| 1027 | */ |
| 1028 | if (nappended > 0) { |
| 1029 | cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo & PAGE_MASK); |
| 1030 | cbrlo[entries] = gfn << PAGE_SHIFT; |
| 1031 | } |
| 1032 | |
| 1033 | if (orc) { |
| 1034 | /* increment only if we are really flipping the bit to 1 */ |
| 1035 | if (!test_and_set_bit(gfn, ms->pgste_bitmap)) |
| 1036 | atomic64_inc(&ms->dirty_pages); |
| 1037 | } |
| 1038 | |
| 1039 | return nappended; |
| 1040 | } |
| 1041 | |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1042 | static int handle_essa(struct kvm_vcpu *vcpu) |
| 1043 | { |
| 1044 | /* entries expected to be 1FF */ |
| 1045 | int entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3; |
David Hildenbrand | 4a5e7e3 | 2016-04-12 13:32:25 +0200 | [diff] [blame] | 1046 | unsigned long *cbrlo; |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1047 | struct gmap *gmap; |
Claudio Imbrenda | 190df4a | 2016-08-04 17:54:42 +0200 | [diff] [blame] | 1048 | int i, orc; |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1049 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 1050 | VCPU_EVENT(vcpu, 4, "ESSA: release %d pages", entries); |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1051 | gmap = vcpu->arch.gmap; |
| 1052 | vcpu->stat.instruction_essa++; |
Dominik Dingel | e6db1d6 | 2015-05-07 15:41:57 +0200 | [diff] [blame] | 1053 | if (!vcpu->kvm->arch.use_cmma) |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1054 | return kvm_s390_inject_program_int(vcpu, PGM_OPERATION); |
| 1055 | |
| 1056 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 1057 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
Claudio Imbrenda | 190df4a | 2016-08-04 17:54:42 +0200 | [diff] [blame] | 1058 | /* Check for invalid operation request code */ |
| 1059 | orc = (vcpu->arch.sie_block->ipb & 0xf0000000) >> 28; |
Claudio Imbrenda | 1bab1c0 | 2016-08-29 15:56:55 +0200 | [diff] [blame] | 1060 | /* ORCs 0-6 are always valid */ |
| 1061 | if (orc > (test_kvm_facility(vcpu->kvm, 147) ? ESSA_SET_STABLE_NODAT |
| 1062 | : ESSA_SET_STABLE_IF_RESIDENT)) |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1063 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 1064 | |
Claudio Imbrenda | 190df4a | 2016-08-04 17:54:42 +0200 | [diff] [blame] | 1065 | if (likely(!vcpu->kvm->arch.migration_state)) { |
| 1066 | /* |
| 1067 | * CMMA is enabled in the KVM settings, but is disabled in |
| 1068 | * the SIE block and in the mm_context, and we are not doing |
| 1069 | * a migration. Enable CMMA in the mm_context. |
| 1070 | * Since we need to take a write lock to write to the context |
| 1071 | * to avoid races with storage keys handling, we check if the |
| 1072 | * value really needs to be written to; if the value is |
| 1073 | * already correct, we do nothing and avoid the lock. |
| 1074 | */ |
| 1075 | if (vcpu->kvm->mm->context.use_cmma == 0) { |
| 1076 | down_write(&vcpu->kvm->mm->mmap_sem); |
| 1077 | vcpu->kvm->mm->context.use_cmma = 1; |
| 1078 | up_write(&vcpu->kvm->mm->mmap_sem); |
| 1079 | } |
| 1080 | /* |
| 1081 | * If we are here, we are supposed to have CMMA enabled in |
| 1082 | * the SIE block. Enabling CMMA works on a per-CPU basis, |
| 1083 | * while the context use_cmma flag is per process. |
| 1084 | * It's possible that the context flag is enabled and the |
| 1085 | * SIE flag is not, so we set the flag always; if it was |
| 1086 | * already set, nothing changes, otherwise we enable it |
| 1087 | * on this CPU too. |
| 1088 | */ |
| 1089 | vcpu->arch.sie_block->ecb2 |= ECB2_CMMA; |
| 1090 | /* Retry the ESSA instruction */ |
| 1091 | kvm_s390_retry_instr(vcpu); |
| 1092 | } else { |
| 1093 | /* Account for the possible extra cbrl entry */ |
| 1094 | i = do_essa(vcpu, orc); |
| 1095 | if (i < 0) |
| 1096 | return i; |
| 1097 | entries += i; |
| 1098 | } |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1099 | vcpu->arch.sie_block->cbrlo &= PAGE_MASK; /* reset nceo */ |
| 1100 | cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo); |
| 1101 | down_read(&gmap->mm->mmap_sem); |
David Hildenbrand | 4a5e7e3 | 2016-04-12 13:32:25 +0200 | [diff] [blame] | 1102 | for (i = 0; i < entries; ++i) |
| 1103 | __gmap_zap(gmap, cbrlo[i]); |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1104 | up_read(&gmap->mm->mmap_sem); |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1105 | return 0; |
| 1106 | } |
| 1107 | |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 1108 | static const intercept_handler_t b9_handlers[256] = { |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 1109 | [0x8a] = handle_ipte_interlock, |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 1110 | [0x8d] = handle_epsw, |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 1111 | [0x8e] = handle_ipte_interlock, |
| 1112 | [0x8f] = handle_ipte_interlock, |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 1113 | [0xab] = handle_essa, |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 1114 | [0xaf] = handle_pfmf, |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 1115 | }; |
| 1116 | |
| 1117 | int kvm_s390_handle_b9(struct kvm_vcpu *vcpu) |
| 1118 | { |
| 1119 | intercept_handler_t handler; |
| 1120 | |
| 1121 | /* This is handled just as for the B2 instructions. */ |
| 1122 | handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff]; |
Thomas Huth | 5087dfa | 2013-06-20 17:22:01 +0200 | [diff] [blame] | 1123 | if (handler) |
| 1124 | return handler(vcpu); |
| 1125 | |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 1126 | return -EOPNOTSUPP; |
| 1127 | } |
| 1128 | |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1129 | int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu) |
| 1130 | { |
| 1131 | int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4; |
| 1132 | int reg3 = vcpu->arch.sie_block->ipa & 0x000f; |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1133 | int reg, rc, nr_regs; |
| 1134 | u32 ctl_array[16]; |
Heiko Carstens | f987a3e | 2014-01-01 16:59:21 +0100 | [diff] [blame] | 1135 | u64 ga; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 1136 | u8 ar; |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1137 | |
| 1138 | vcpu->stat.instruction_lctl++; |
| 1139 | |
| 1140 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 1141 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 1142 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1143 | ga = kvm_s390_get_base_disp_rs(vcpu, &ar); |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1144 | |
Heiko Carstens | f987a3e | 2014-01-01 16:59:21 +0100 | [diff] [blame] | 1145 | if (ga & 3) |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1146 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 1147 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 1148 | VCPU_EVENT(vcpu, 4, "LCTL: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga); |
Heiko Carstens | f987a3e | 2014-01-01 16:59:21 +0100 | [diff] [blame] | 1149 | trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, ga); |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1150 | |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1151 | nr_regs = ((reg3 - reg1) & 0xf) + 1; |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1152 | rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32)); |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1153 | if (rc) |
| 1154 | return kvm_s390_inject_prog_cond(vcpu, rc); |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1155 | reg = reg1; |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1156 | nr_regs = 0; |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1157 | do { |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1158 | vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul; |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1159 | vcpu->arch.sie_block->gcr[reg] |= ctl_array[nr_regs++]; |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1160 | if (reg == reg3) |
| 1161 | break; |
| 1162 | reg = (reg + 1) % 16; |
| 1163 | } while (1); |
Christian Borntraeger | 2dca485 | 2014-10-31 09:24:20 +0100 | [diff] [blame] | 1164 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1165 | return 0; |
| 1166 | } |
| 1167 | |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1168 | int kvm_s390_handle_stctl(struct kvm_vcpu *vcpu) |
| 1169 | { |
| 1170 | int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4; |
| 1171 | int reg3 = vcpu->arch.sie_block->ipa & 0x000f; |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1172 | int reg, rc, nr_regs; |
| 1173 | u32 ctl_array[16]; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1174 | u64 ga; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 1175 | u8 ar; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1176 | |
| 1177 | vcpu->stat.instruction_stctl++; |
| 1178 | |
| 1179 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 1180 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 1181 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1182 | ga = kvm_s390_get_base_disp_rs(vcpu, &ar); |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1183 | |
| 1184 | if (ga & 3) |
| 1185 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 1186 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 1187 | VCPU_EVENT(vcpu, 4, "STCTL r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga); |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1188 | trace_kvm_s390_handle_stctl(vcpu, 0, reg1, reg3, ga); |
| 1189 | |
| 1190 | reg = reg1; |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1191 | nr_regs = 0; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1192 | do { |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1193 | ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg]; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1194 | if (reg == reg3) |
| 1195 | break; |
| 1196 | reg = (reg + 1) % 16; |
| 1197 | } while (1); |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1198 | rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32)); |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1199 | return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1200 | } |
| 1201 | |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1202 | static int handle_lctlg(struct kvm_vcpu *vcpu) |
| 1203 | { |
| 1204 | int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4; |
| 1205 | int reg3 = vcpu->arch.sie_block->ipa & 0x000f; |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1206 | int reg, rc, nr_regs; |
| 1207 | u64 ctl_array[16]; |
| 1208 | u64 ga; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 1209 | u8 ar; |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1210 | |
| 1211 | vcpu->stat.instruction_lctlg++; |
| 1212 | |
| 1213 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 1214 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 1215 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1216 | ga = kvm_s390_get_base_disp_rsy(vcpu, &ar); |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1217 | |
Heiko Carstens | f987a3e | 2014-01-01 16:59:21 +0100 | [diff] [blame] | 1218 | if (ga & 7) |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1219 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 1220 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 1221 | VCPU_EVENT(vcpu, 4, "LCTLG: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga); |
Heiko Carstens | f987a3e | 2014-01-01 16:59:21 +0100 | [diff] [blame] | 1222 | trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, ga); |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1223 | |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1224 | nr_regs = ((reg3 - reg1) & 0xf) + 1; |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1225 | rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64)); |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1226 | if (rc) |
| 1227 | return kvm_s390_inject_prog_cond(vcpu, rc); |
| 1228 | reg = reg1; |
| 1229 | nr_regs = 0; |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1230 | do { |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1231 | vcpu->arch.sie_block->gcr[reg] = ctl_array[nr_regs++]; |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1232 | if (reg == reg3) |
| 1233 | break; |
| 1234 | reg = (reg + 1) % 16; |
| 1235 | } while (1); |
Christian Borntraeger | 2dca485 | 2014-10-31 09:24:20 +0100 | [diff] [blame] | 1236 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1237 | return 0; |
| 1238 | } |
| 1239 | |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1240 | static int handle_stctg(struct kvm_vcpu *vcpu) |
| 1241 | { |
| 1242 | int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4; |
| 1243 | int reg3 = vcpu->arch.sie_block->ipa & 0x000f; |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1244 | int reg, rc, nr_regs; |
| 1245 | u64 ctl_array[16]; |
| 1246 | u64 ga; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 1247 | u8 ar; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1248 | |
| 1249 | vcpu->stat.instruction_stctg++; |
| 1250 | |
| 1251 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 1252 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 1253 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1254 | ga = kvm_s390_get_base_disp_rsy(vcpu, &ar); |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1255 | |
| 1256 | if (ga & 7) |
| 1257 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 1258 | |
Christian Borntraeger | 7cbde76 | 2015-07-21 12:44:57 +0200 | [diff] [blame] | 1259 | VCPU_EVENT(vcpu, 4, "STCTG r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga); |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1260 | trace_kvm_s390_handle_stctl(vcpu, 1, reg1, reg3, ga); |
| 1261 | |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1262 | reg = reg1; |
| 1263 | nr_regs = 0; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1264 | do { |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1265 | ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg]; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1266 | if (reg == reg3) |
| 1267 | break; |
| 1268 | reg = (reg + 1) % 16; |
| 1269 | } while (1); |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1270 | rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64)); |
Heiko Carstens | fc56eb6 | 2014-10-29 10:07:16 +0100 | [diff] [blame] | 1271 | return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0; |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1272 | } |
| 1273 | |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 1274 | static const intercept_handler_t eb_handlers[256] = { |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1275 | [0x2f] = handle_lctlg, |
David Hildenbrand | aba0750 | 2014-01-23 10:47:13 +0100 | [diff] [blame] | 1276 | [0x25] = handle_stctg, |
Fan Zhang | 80cd876 | 2016-08-15 04:53:22 +0200 | [diff] [blame] | 1277 | [0x60] = handle_ri, |
| 1278 | [0x61] = handle_ri, |
| 1279 | [0x62] = handle_ri, |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 1280 | }; |
| 1281 | |
Thomas Huth | 953ed88 | 2013-06-20 17:22:04 +0200 | [diff] [blame] | 1282 | int kvm_s390_handle_eb(struct kvm_vcpu *vcpu) |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 1283 | { |
| 1284 | intercept_handler_t handler; |
| 1285 | |
Cornelia Huck | f379aae | 2012-12-20 15:32:10 +0100 | [diff] [blame] | 1286 | handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff]; |
| 1287 | if (handler) |
| 1288 | return handler(vcpu); |
| 1289 | return -EOPNOTSUPP; |
| 1290 | } |
| 1291 | |
Christian Borntraeger | bb25b9b | 2011-07-24 10:48:17 +0200 | [diff] [blame] | 1292 | static int handle_tprot(struct kvm_vcpu *vcpu) |
| 1293 | { |
Cornelia Huck | b1c571a | 2012-12-20 15:32:07 +0100 | [diff] [blame] | 1294 | u64 address1, address2; |
Thomas Huth | a0465f9 | 2014-02-04 14:48:07 +0100 | [diff] [blame] | 1295 | unsigned long hva, gpa; |
| 1296 | int ret = 0, cc = 0; |
| 1297 | bool writable; |
Christian Borntraeger | 27f67f8 | 2016-12-09 12:44:40 +0100 | [diff] [blame] | 1298 | u8 ar; |
Christian Borntraeger | bb25b9b | 2011-07-24 10:48:17 +0200 | [diff] [blame] | 1299 | |
| 1300 | vcpu->stat.instruction_tprot++; |
| 1301 | |
Thomas Huth | f9f6bbc | 2013-06-20 17:22:00 +0200 | [diff] [blame] | 1302 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 1303 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 1304 | |
Alexander Yarygin | 8ae04b8 | 2015-01-19 13:24:51 +0300 | [diff] [blame] | 1305 | kvm_s390_get_base_disp_sse(vcpu, &address1, &address2, &ar, NULL); |
Cornelia Huck | b1c571a | 2012-12-20 15:32:07 +0100 | [diff] [blame] | 1306 | |
Christian Borntraeger | bb25b9b | 2011-07-24 10:48:17 +0200 | [diff] [blame] | 1307 | /* we only handle the Linux memory detection case: |
| 1308 | * access key == 0 |
Christian Borntraeger | bb25b9b | 2011-07-24 10:48:17 +0200 | [diff] [blame] | 1309 | * everything else goes to userspace. */ |
| 1310 | if (address2 & 0xf0) |
| 1311 | return -EOPNOTSUPP; |
| 1312 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT) |
Thomas Huth | a0465f9 | 2014-02-04 14:48:07 +0100 | [diff] [blame] | 1313 | ipte_lock(vcpu); |
David Hildenbrand | 92c9632 | 2015-11-16 15:42:11 +0100 | [diff] [blame] | 1314 | ret = guest_translate_address(vcpu, address1, ar, &gpa, GACC_STORE); |
Thomas Huth | a0465f9 | 2014-02-04 14:48:07 +0100 | [diff] [blame] | 1315 | if (ret == PGM_PROTECTION) { |
| 1316 | /* Write protected? Try again with read-only... */ |
| 1317 | cc = 1; |
David Hildenbrand | 92c9632 | 2015-11-16 15:42:11 +0100 | [diff] [blame] | 1318 | ret = guest_translate_address(vcpu, address1, ar, &gpa, |
| 1319 | GACC_FETCH); |
Thomas Huth | a0465f9 | 2014-02-04 14:48:07 +0100 | [diff] [blame] | 1320 | } |
| 1321 | if (ret) { |
| 1322 | if (ret == PGM_ADDRESSING || ret == PGM_TRANSLATION_SPEC) { |
| 1323 | ret = kvm_s390_inject_program_int(vcpu, ret); |
| 1324 | } else if (ret > 0) { |
| 1325 | /* Translation not available */ |
| 1326 | kvm_s390_set_psw_cc(vcpu, 3); |
| 1327 | ret = 0; |
| 1328 | } |
| 1329 | goto out_unlock; |
| 1330 | } |
Christian Borntraeger | bb25b9b | 2011-07-24 10:48:17 +0200 | [diff] [blame] | 1331 | |
Thomas Huth | a0465f9 | 2014-02-04 14:48:07 +0100 | [diff] [blame] | 1332 | hva = gfn_to_hva_prot(vcpu->kvm, gpa_to_gfn(gpa), &writable); |
| 1333 | if (kvm_is_error_hva(hva)) { |
| 1334 | ret = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); |
| 1335 | } else { |
| 1336 | if (!writable) |
| 1337 | cc = 1; /* Write not permitted ==> read-only */ |
| 1338 | kvm_s390_set_psw_cc(vcpu, cc); |
| 1339 | /* Note: CC2 only occurs for storage keys (not supported yet) */ |
| 1340 | } |
| 1341 | out_unlock: |
| 1342 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT) |
| 1343 | ipte_unlock(vcpu); |
| 1344 | return ret; |
Christian Borntraeger | bb25b9b | 2011-07-24 10:48:17 +0200 | [diff] [blame] | 1345 | } |
| 1346 | |
| 1347 | int kvm_s390_handle_e5(struct kvm_vcpu *vcpu) |
| 1348 | { |
| 1349 | /* For e5xx... instructions we only handle TPROT */ |
| 1350 | if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01) |
| 1351 | return handle_tprot(vcpu); |
| 1352 | return -EOPNOTSUPP; |
| 1353 | } |
| 1354 | |
Cornelia Huck | 8c3f61e | 2012-04-24 09:24:44 +0200 | [diff] [blame] | 1355 | static int handle_sckpf(struct kvm_vcpu *vcpu) |
| 1356 | { |
| 1357 | u32 value; |
| 1358 | |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 1359 | vcpu->stat.instruction_sckpf++; |
| 1360 | |
Cornelia Huck | 8c3f61e | 2012-04-24 09:24:44 +0200 | [diff] [blame] | 1361 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
Thomas Huth | 208dd75 | 2013-06-20 17:21:59 +0200 | [diff] [blame] | 1362 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
Cornelia Huck | 8c3f61e | 2012-04-24 09:24:44 +0200 | [diff] [blame] | 1363 | |
| 1364 | if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000) |
| 1365 | return kvm_s390_inject_program_int(vcpu, |
| 1366 | PGM_SPECIFICATION); |
| 1367 | |
| 1368 | value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff; |
| 1369 | vcpu->arch.sie_block->todpr = value; |
| 1370 | |
| 1371 | return 0; |
| 1372 | } |
| 1373 | |
David Hildenbrand | 9acc317 | 2016-07-18 09:18:13 +0200 | [diff] [blame] | 1374 | static int handle_ptff(struct kvm_vcpu *vcpu) |
| 1375 | { |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 1376 | vcpu->stat.instruction_ptff++; |
| 1377 | |
David Hildenbrand | 9acc317 | 2016-07-18 09:18:13 +0200 | [diff] [blame] | 1378 | /* we don't emulate any control instructions yet */ |
| 1379 | kvm_s390_set_psw_cc(vcpu, 3); |
| 1380 | return 0; |
| 1381 | } |
| 1382 | |
Cornelia Huck | 7797535 | 2012-12-20 15:32:06 +0100 | [diff] [blame] | 1383 | static const intercept_handler_t x01_handlers[256] = { |
David Hildenbrand | 9acc317 | 2016-07-18 09:18:13 +0200 | [diff] [blame] | 1384 | [0x04] = handle_ptff, |
Cornelia Huck | 8c3f61e | 2012-04-24 09:24:44 +0200 | [diff] [blame] | 1385 | [0x07] = handle_sckpf, |
| 1386 | }; |
| 1387 | |
| 1388 | int kvm_s390_handle_01(struct kvm_vcpu *vcpu) |
| 1389 | { |
| 1390 | intercept_handler_t handler; |
| 1391 | |
| 1392 | handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff]; |
| 1393 | if (handler) |
| 1394 | return handler(vcpu); |
| 1395 | return -EOPNOTSUPP; |
| 1396 | } |