blob: 45634b3d2e0aedf90ece3f2c715e6ab9e53d9f00 [file] [log] [blame]
Greg Kroah-Hartmand809aa22017-11-24 15:00:33 +01001// SPDX-License-Identifier: GPL-2.0
Christian Borntraegere28acfe2008-03-25 18:47:34 +01002/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * handling diagnose instructions
Christian Borntraegere28acfe2008-03-25 18:47:34 +01004 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02005 * Copyright IBM Corp. 2008, 2011
Christian Borntraegere28acfe2008-03-25 18:47:34 +01006 *
Christian Borntraegere28acfe2008-03-25 18:47:34 +01007 * Author(s): Carsten Otte <cotte@de.ibm.com>
8 * Christian Borntraeger <borntraeger@de.ibm.com>
9 */
10
11#include <linux/kvm.h>
12#include <linux/kvm_host.h>
Martin Schwidefskydeedabb2013-05-21 17:29:52 +020013#include <asm/pgalloc.h>
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010014#include <asm/gmap.h>
Cornelia Huck10ccaa12013-02-28 12:33:21 +010015#include <asm/virtio-ccw.h>
Christian Borntraegere28acfe2008-03-25 18:47:34 +010016#include "kvm-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020017#include "trace.h"
Cornelia Huckade38c32012-07-23 17:20:30 +020018#include "trace-s390.h"
Dominik Dingel3c038e62013-10-07 17:11:48 +020019#include "gaccess.h"
Christian Borntraegere28acfe2008-03-25 18:47:34 +010020
Christian Borntraeger388186b2011-10-30 15:17:03 +010021static int diag_release_pages(struct kvm_vcpu *vcpu)
22{
23 unsigned long start, end;
Michael Muellerfda902c2014-05-13 16:58:30 +020024 unsigned long prefix = kvm_s390_get_prefix(vcpu);
Christian Borntraeger388186b2011-10-30 15:17:03 +010025
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010026 start = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4];
Heiko Carstens58cdf5e2017-07-05 07:37:14 +020027 end = vcpu->run->s.regs.gprs[vcpu->arch.sie_block->ipa & 0xf] + PAGE_SIZE;
Christian Borntraeger175a5c92015-07-07 15:19:32 +020028 vcpu->stat.diagnose_10++;
Christian Borntraeger388186b2011-10-30 15:17:03 +010029
Christian Borntraegerf7a960a2014-09-03 21:23:13 +020030 if (start & ~PAGE_MASK || end & ~PAGE_MASK || start >= end
Christian Borntraeger388186b2011-10-30 15:17:03 +010031 || start < 2 * PAGE_SIZE)
32 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
33
34 VCPU_EVENT(vcpu, 5, "diag release pages %lX %lX", start, end);
Christian Borntraeger388186b2011-10-30 15:17:03 +010035
Christian Borntraegerf7a960a2014-09-03 21:23:13 +020036 /*
37 * We checked for start >= end above, so lets check for the
38 * fast path (no prefix swap page involved)
39 */
40 if (end <= prefix || start >= prefix + 2 * PAGE_SIZE) {
Martin Schwidefsky6e0a0432014-04-29 09:34:41 +020041 gmap_discard(vcpu->arch.gmap, start, end);
Christian Borntraeger388186b2011-10-30 15:17:03 +010042 } else {
Christian Borntraegerf7a960a2014-09-03 21:23:13 +020043 /*
44 * This is slow path. gmap_discard will check for start
45 * so lets split this into before prefix, prefix, after
46 * prefix and let gmap_discard make some of these calls
47 * NOPs.
48 */
49 gmap_discard(vcpu->arch.gmap, start, prefix);
50 if (start <= prefix)
Heiko Carstens58cdf5e2017-07-05 07:37:14 +020051 gmap_discard(vcpu->arch.gmap, 0, PAGE_SIZE);
52 if (end > prefix + PAGE_SIZE)
53 gmap_discard(vcpu->arch.gmap, PAGE_SIZE, 2 * PAGE_SIZE);
Christian Borntraegerf7a960a2014-09-03 21:23:13 +020054 gmap_discard(vcpu->arch.gmap, prefix + 2 * PAGE_SIZE, end);
Christian Borntraeger388186b2011-10-30 15:17:03 +010055 }
56 return 0;
57}
58
Dominik Dingel3c038e62013-10-07 17:11:48 +020059static int __diag_page_ref_service(struct kvm_vcpu *vcpu)
60{
61 struct prs_parm {
62 u16 code;
63 u16 subcode;
64 u16 parm_len;
65 u16 parm_version;
66 u64 token_addr;
67 u64 select_mask;
68 u64 compare_mask;
69 u64 zarch;
70 };
71 struct prs_parm parm;
72 int rc;
73 u16 rx = (vcpu->arch.sie_block->ipa & 0xf0) >> 4;
74 u16 ry = (vcpu->arch.sie_block->ipa & 0x0f);
Dominik Dingel3c038e62013-10-07 17:11:48 +020075
Christian Borntraeger15e8b5d2015-07-09 13:43:41 +020076 VCPU_EVENT(vcpu, 3, "diag page reference parameter block at 0x%llx",
77 vcpu->run->s.regs.gprs[rx]);
Christian Borntraeger175a5c92015-07-07 15:19:32 +020078 vcpu->stat.diagnose_258++;
Dominik Dingel3c038e62013-10-07 17:11:48 +020079 if (vcpu->run->s.regs.gprs[rx] & 7)
80 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030081 rc = read_guest(vcpu, vcpu->run->s.regs.gprs[rx], rx, &parm, sizeof(parm));
Heiko Carstens81480cc2014-01-01 16:36:07 +010082 if (rc)
83 return kvm_s390_inject_prog_cond(vcpu, rc);
Dominik Dingel3c038e62013-10-07 17:11:48 +020084 if (parm.parm_version != 2 || parm.parm_len < 5 || parm.code != 0x258)
85 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
86
87 switch (parm.subcode) {
88 case 0: /* TOKEN */
Christian Borntraegerab7090a2015-07-16 10:24:07 +020089 VCPU_EVENT(vcpu, 3, "pageref token addr 0x%llx "
90 "select mask 0x%llx compare mask 0x%llx",
91 parm.token_addr, parm.select_mask, parm.compare_mask);
Dominik Dingel3c038e62013-10-07 17:11:48 +020092 if (vcpu->arch.pfault_token != KVM_S390_PFAULT_TOKEN_INVALID) {
93 /*
94 * If the pagefault handshake is already activated,
95 * the token must not be changed. We have to return
96 * decimal 8 instead, as mandated in SC24-6084.
97 */
98 vcpu->run->s.regs.gprs[ry] = 8;
99 return 0;
100 }
101
102 if ((parm.compare_mask & parm.select_mask) != parm.compare_mask ||
103 parm.token_addr & 7 || parm.zarch != 0x8000000000000000ULL)
104 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
105
Heiko Carstens81480cc2014-01-01 16:36:07 +0100106 if (kvm_is_error_gpa(vcpu->kvm, parm.token_addr))
Dominik Dingel3c038e62013-10-07 17:11:48 +0200107 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
108
109 vcpu->arch.pfault_token = parm.token_addr;
110 vcpu->arch.pfault_select = parm.select_mask;
111 vcpu->arch.pfault_compare = parm.compare_mask;
112 vcpu->run->s.regs.gprs[ry] = 0;
113 rc = 0;
114 break;
115 case 1: /*
116 * CANCEL
117 * Specification allows to let already pending tokens survive
118 * the cancel, therefore to reduce code complexity, we assume
119 * all outstanding tokens are already pending.
120 */
Christian Borntraegerab7090a2015-07-16 10:24:07 +0200121 VCPU_EVENT(vcpu, 3, "pageref cancel addr 0x%llx", parm.token_addr);
Dominik Dingel3c038e62013-10-07 17:11:48 +0200122 if (parm.token_addr || parm.select_mask ||
123 parm.compare_mask || parm.zarch)
124 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
125
126 vcpu->run->s.regs.gprs[ry] = 0;
127 /*
128 * If the pfault handling was not established or is already
129 * canceled SC24-6084 requests to return decimal 4.
130 */
131 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
132 vcpu->run->s.regs.gprs[ry] = 4;
133 else
134 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
135
136 rc = 0;
137 break;
138 default:
139 rc = -EOPNOTSUPP;
140 break;
141 }
142
143 return rc;
144}
145
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100146static int __diag_time_slice_end(struct kvm_vcpu *vcpu)
147{
148 VCPU_EVENT(vcpu, 5, "%s", "diag time slice end");
149 vcpu->stat.diagnose_44++;
Longpeng(Mike)0546c632017-08-08 12:05:34 +0800150 kvm_vcpu_on_spin(vcpu, true);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100151 return 0;
152}
153
Konstantin Weitz41628d32012-04-25 15:30:38 +0200154static int __diag_time_slice_end_directed(struct kvm_vcpu *vcpu)
155{
Konstantin Weitz41628d32012-04-25 15:30:38 +0200156 struct kvm_vcpu *tcpu;
157 int tid;
Konstantin Weitz41628d32012-04-25 15:30:38 +0200158
159 tid = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4];
160 vcpu->stat.diagnose_9c++;
161 VCPU_EVENT(vcpu, 5, "diag time slice end directed to %d", tid);
162
163 if (tid == vcpu->vcpu_id)
164 return 0;
165
David Hildenbrande09fefd2015-11-05 09:03:50 +0100166 tcpu = kvm_get_vcpu_by_id(vcpu->kvm, tid);
167 if (tcpu)
168 kvm_vcpu_yield_to(tcpu);
Konstantin Weitz41628d32012-04-25 15:30:38 +0200169 return 0;
170}
171
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100172static int __diag_ipl_functions(struct kvm_vcpu *vcpu)
173{
174 unsigned int reg = vcpu->arch.sie_block->ipa & 0xf;
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100175 unsigned long subcode = vcpu->run->s.regs.gprs[reg] & 0xffff;
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100176
Christian Borntraeger15e8b5d2015-07-09 13:43:41 +0200177 VCPU_EVENT(vcpu, 3, "diag ipl functions, subcode %lx", subcode);
Christian Borntraeger175a5c92015-07-07 15:19:32 +0200178 vcpu->stat.diagnose_308++;
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100179 switch (subcode) {
180 case 3:
181 vcpu->run->s390_reset_flags = KVM_S390_RESET_CLEAR;
182 break;
183 case 4:
184 vcpu->run->s390_reset_flags = 0;
185 break;
186 default:
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100187 return -EOPNOTSUPP;
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100188 }
189
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200190 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm))
191 kvm_s390_vcpu_stop(vcpu);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100192 vcpu->run->s390_reset_flags |= KVM_S390_RESET_SUBSYSTEM;
193 vcpu->run->s390_reset_flags |= KVM_S390_RESET_IPL;
194 vcpu->run->s390_reset_flags |= KVM_S390_RESET_CPU_INIT;
195 vcpu->run->exit_reason = KVM_EXIT_S390_RESET;
Heiko Carstens33e19112009-01-09 12:14:56 +0100196 VCPU_EVENT(vcpu, 3, "requesting userspace resets %llx",
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100197 vcpu->run->s390_reset_flags);
Cornelia Huckade38c32012-07-23 17:20:30 +0200198 trace_kvm_s390_request_resets(vcpu->run->s390_reset_flags);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100199 return -EREMOTE;
200}
201
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100202static int __diag_virtio_hypercall(struct kvm_vcpu *vcpu)
203{
Thomas Huth800c1062013-09-12 10:33:45 +0200204 int ret;
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100205
Christian Borntraeger175a5c92015-07-07 15:19:32 +0200206 vcpu->stat.diagnose_500++;
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100207 /* No virtio-ccw notification? Get out quickly. */
208 if (!vcpu->kvm->arch.css_support ||
209 (vcpu->run->s.regs.gprs[1] != KVM_S390_VIRTIO_CCW_NOTIFY))
210 return -EOPNOTSUPP;
211
Christian Borntraeger1bb78d12016-06-07 09:57:08 +0200212 VCPU_EVENT(vcpu, 4, "diag 0x500 schid 0x%8.8x queue 0x%x cookie 0x%llx",
213 (u32) vcpu->run->s.regs.gprs[2],
214 (u32) vcpu->run->s.regs.gprs[3],
215 vcpu->run->s.regs.gprs[4]);
216
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100217 /*
218 * The layout is as follows:
219 * - gpr 2 contains the subchannel id (passed as addr)
220 * - gpr 3 contains the virtqueue index (passed as datamatch)
Cornelia Huck85dfe872013-07-03 16:30:54 +0200221 * - gpr 4 contains the index on the bus (optionally)
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100222 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000223 ret = kvm_io_bus_write_cookie(vcpu, KVM_VIRTIO_CCW_NOTIFY_BUS,
Dominik Dingelff1f3cb2013-12-09 18:30:01 +0100224 vcpu->run->s.regs.gprs[2] & 0xffffffff,
Cornelia Huck85dfe872013-07-03 16:30:54 +0200225 8, &vcpu->run->s.regs.gprs[3],
226 vcpu->run->s.regs.gprs[4]);
Cornelia Huck85dfe872013-07-03 16:30:54 +0200227
228 /*
229 * Return cookie in gpr 2, but don't overwrite the register if the
230 * diagnose will be handled by userspace.
231 */
232 if (ret != -EOPNOTSUPP)
233 vcpu->run->s.regs.gprs[2] = ret;
234 /* kvm_io_bus_write_cookie returns -EOPNOTSUPP if it found no match. */
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100235 return ret < 0 ? ret : 0;
236}
237
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100238int kvm_s390_handle_diag(struct kvm_vcpu *vcpu)
239{
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300240 int code = kvm_s390_get_base_disp_rs(vcpu, NULL) & 0xffff;
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100241
Thomas Huth93e17502013-06-20 17:22:02 +0200242 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
243 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
244
Cornelia Huck5786fff2012-07-23 17:20:29 +0200245 trace_kvm_s390_handle_diag(vcpu, code);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100246 switch (code) {
Christian Borntraeger388186b2011-10-30 15:17:03 +0100247 case 0x10:
248 return diag_release_pages(vcpu);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100249 case 0x44:
250 return __diag_time_slice_end(vcpu);
Konstantin Weitz41628d32012-04-25 15:30:38 +0200251 case 0x9c:
252 return __diag_time_slice_end_directed(vcpu);
Dominik Dingel3c038e62013-10-07 17:11:48 +0200253 case 0x258:
254 return __diag_page_ref_service(vcpu);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100255 case 0x308:
256 return __diag_ipl_functions(vcpu);
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100257 case 0x500:
258 return __diag_virtio_hypercall(vcpu);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100259 default:
Christian Borntraegera37cb072018-01-23 13:28:40 +0100260 vcpu->stat.diagnose_other++;
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100261 return -EOPNOTSUPP;
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100262 }
263}