blob: db541d62c77193d99e1310fe25214c40624f2892 [file] [log] [blame]
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * in-kernel handling for sie intercepts
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2008, 2009
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License (version 2 only)
8 * as published by the Free Software Foundation.
9 *
10 * Author(s): Carsten Otte <cotte@de.ibm.com>
11 * Christian Borntraeger <borntraeger@de.ibm.com>
12 */
13
14#include <linux/kvm_host.h>
15#include <linux/errno.h>
16#include <linux/pagemap.h>
17
18#include <asm/kvm_host.h>
19
20#include "kvm-s390.h"
Carsten Otteba5c1e92008-03-25 18:47:26 +010021#include "gaccess.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020022#include "trace.h"
Carsten Otteba5c1e92008-03-25 18:47:26 +010023
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020024static int handle_lctlg(struct kvm_vcpu *vcpu)
Carsten Otteba5c1e92008-03-25 18:47:26 +010025{
26 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
27 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
28 int base2 = vcpu->arch.sie_block->ipb >> 28;
29 int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16) +
30 ((vcpu->arch.sie_block->ipb & 0xff00) << 4);
31 u64 useraddr;
32 int reg, rc;
33
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020034 vcpu->stat.instruction_lctlg++;
Carsten Otteba5c1e92008-03-25 18:47:26 +010035 if ((vcpu->arch.sie_block->ipb & 0xff) != 0x2f)
Heiko Carstensb8e660b2010-02-26 22:37:41 +010036 return -EOPNOTSUPP;
Carsten Otteba5c1e92008-03-25 18:47:26 +010037
38 useraddr = disp2;
39 if (base2)
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010040 useraddr += vcpu->run->s.regs.gprs[base2];
Carsten Otteba5c1e92008-03-25 18:47:26 +010041
Christian Borntraeger5a00a5e2008-07-25 15:53:12 +020042 if (useraddr & 7)
43 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
44
Carsten Otteba5c1e92008-03-25 18:47:26 +010045 reg = reg1;
46
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020047 VCPU_EVENT(vcpu, 5, "lctlg r1:%x, r3:%x,b2:%x,d2:%x", reg1, reg3, base2,
Carsten Otteba5c1e92008-03-25 18:47:26 +010048 disp2);
Cornelia Huck5786fff2012-07-23 17:20:29 +020049 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, useraddr);
Carsten Otteba5c1e92008-03-25 18:47:26 +010050
51 do {
52 rc = get_guest_u64(vcpu, useraddr,
53 &vcpu->arch.sie_block->gcr[reg]);
54 if (rc == -EFAULT) {
55 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
56 break;
57 }
58 useraddr += 8;
59 if (reg == reg3)
60 break;
61 reg = (reg + 1) % 16;
62 } while (1);
63 return 0;
64}
65
66static int handle_lctl(struct kvm_vcpu *vcpu)
67{
68 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
69 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
70 int base2 = vcpu->arch.sie_block->ipb >> 28;
71 int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
72 u64 useraddr;
73 u32 val = 0;
74 int reg, rc;
75
76 vcpu->stat.instruction_lctl++;
77
78 useraddr = disp2;
79 if (base2)
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010080 useraddr += vcpu->run->s.regs.gprs[base2];
Carsten Otteba5c1e92008-03-25 18:47:26 +010081
Christian Borntraeger5a00a5e2008-07-25 15:53:12 +020082 if (useraddr & 3)
83 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
84
Carsten Otteba5c1e92008-03-25 18:47:26 +010085 VCPU_EVENT(vcpu, 5, "lctl r1:%x, r3:%x,b2:%x,d2:%x", reg1, reg3, base2,
86 disp2);
Cornelia Huck5786fff2012-07-23 17:20:29 +020087 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, useraddr);
Carsten Otteba5c1e92008-03-25 18:47:26 +010088
89 reg = reg1;
90 do {
91 rc = get_guest_u32(vcpu, useraddr, &val);
92 if (rc == -EFAULT) {
93 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
94 break;
95 }
96 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
97 vcpu->arch.sie_block->gcr[reg] |= val;
98 useraddr += 4;
99 if (reg == reg3)
100 break;
101 reg = (reg + 1) % 16;
102 } while (1);
103 return 0;
104}
105
106static intercept_handler_t instruction_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200107 [0x01] = kvm_s390_handle_01,
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100108 [0x83] = kvm_s390_handle_diag,
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100109 [0xae] = kvm_s390_handle_sigp,
Christian Borntraeger70455a32009-01-22 10:28:29 +0100110 [0xb2] = kvm_s390_handle_b2,
Carsten Otteba5c1e92008-03-25 18:47:26 +0100111 [0xb7] = handle_lctl,
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200112 [0xe5] = kvm_s390_handle_e5,
Christian Borntraegerf5e10b02008-07-25 15:52:44 +0200113 [0xeb] = handle_lctlg,
Carsten Otteba5c1e92008-03-25 18:47:26 +0100114};
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100115
116static int handle_noop(struct kvm_vcpu *vcpu)
117{
118 switch (vcpu->arch.sie_block->icptcode) {
Christian Borntraeger0eaeafa2008-05-07 09:22:53 +0200119 case 0x0:
120 vcpu->stat.exit_null++;
121 break;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100122 case 0x10:
123 vcpu->stat.exit_external_request++;
124 break;
125 case 0x14:
126 vcpu->stat.exit_external_interrupt++;
127 break;
128 default:
129 break; /* nothing */
130 }
131 return 0;
132}
133
134static int handle_stop(struct kvm_vcpu *vcpu)
135{
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200136 int rc = 0;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100137
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100138 vcpu->stat.exit_stop_request++;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100139 spin_lock_bh(&vcpu->arch.local_int.lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100140
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200141 if (vcpu->arch.local_int.action_bits & ACTION_RELOADVCPU_ON_STOP) {
142 vcpu->arch.local_int.action_bits &= ~ACTION_RELOADVCPU_ON_STOP;
143 rc = SIE_INTERCEPT_RERUNVCPU;
144 vcpu->run->exit_reason = KVM_EXIT_INTR;
145 }
146
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100147 if (vcpu->arch.local_int.action_bits & ACTION_STOP_ON_STOP) {
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100148 atomic_set_mask(CPUSTAT_STOPPED,
149 &vcpu->arch.sie_block->cpuflags);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100150 vcpu->arch.local_int.action_bits &= ~ACTION_STOP_ON_STOP;
151 VCPU_EVENT(vcpu, 3, "%s", "cpu stopped");
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100152 rc = -EOPNOTSUPP;
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200153 }
154
Jens Freimann9e0d5472012-02-06 10:59:03 +0100155 if (vcpu->arch.local_int.action_bits & ACTION_STORE_ON_STOP) {
156 vcpu->arch.local_int.action_bits &= ~ACTION_STORE_ON_STOP;
157 /* store status must be called unlocked. Since local_int.lock
158 * only protects local_int.* and not guest memory we can give
159 * up the lock here */
160 spin_unlock_bh(&vcpu->arch.local_int.lock);
161 rc = kvm_s390_vcpu_store_status(vcpu,
162 KVM_S390_STORE_STATUS_NOADDR);
163 if (rc >= 0)
164 rc = -EOPNOTSUPP;
165 } else
166 spin_unlock_bh(&vcpu->arch.local_int.lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100167 return rc;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100168}
169
170static int handle_validity(struct kvm_vcpu *vcpu)
171{
Carsten Otte598841c2011-07-24 10:48:21 +0200172 unsigned long vmaddr;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100173 int viwhy = vcpu->arch.sie_block->ipb >> 16;
Carsten Otte3edbcff2009-05-12 17:21:52 +0200174 int rc;
175
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100176 vcpu->stat.exit_validity++;
Cornelia Huck5786fff2012-07-23 17:20:29 +0200177 trace_kvm_s390_intercept_validity(vcpu, viwhy);
Carsten Otte092670c2011-07-24 10:48:22 +0200178 if (viwhy == 0x37) {
Carsten Otte598841c2011-07-24 10:48:21 +0200179 vmaddr = gmap_fault(vcpu->arch.sie_block->prefix,
180 vcpu->arch.gmap);
181 if (IS_ERR_VALUE(vmaddr)) {
182 rc = -EOPNOTSUPP;
183 goto out;
184 }
Carsten Otte092670c2011-07-24 10:48:22 +0200185 rc = fault_in_pages_writeable((char __user *) vmaddr,
186 PAGE_SIZE);
187 if (rc) {
188 /* user will receive sigsegv, exit to user */
189 rc = -EOPNOTSUPP;
190 goto out;
191 }
Carsten Otte598841c2011-07-24 10:48:21 +0200192 vmaddr = gmap_fault(vcpu->arch.sie_block->prefix + PAGE_SIZE,
193 vcpu->arch.gmap);
194 if (IS_ERR_VALUE(vmaddr)) {
195 rc = -EOPNOTSUPP;
196 goto out;
197 }
Carsten Otte092670c2011-07-24 10:48:22 +0200198 rc = fault_in_pages_writeable((char __user *) vmaddr,
199 PAGE_SIZE);
200 if (rc) {
201 /* user will receive sigsegv, exit to user */
202 rc = -EOPNOTSUPP;
203 goto out;
204 }
Carsten Otte3edbcff2009-05-12 17:21:52 +0200205 } else
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100206 rc = -EOPNOTSUPP;
Carsten Otte3edbcff2009-05-12 17:21:52 +0200207
Carsten Otte598841c2011-07-24 10:48:21 +0200208out:
Carsten Otte3edbcff2009-05-12 17:21:52 +0200209 if (rc)
210 VCPU_EVENT(vcpu, 2, "unhandled validity intercept code %d",
211 viwhy);
212 return rc;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100213}
214
Carsten Otteba5c1e92008-03-25 18:47:26 +0100215static int handle_instruction(struct kvm_vcpu *vcpu)
216{
217 intercept_handler_t handler;
218
219 vcpu->stat.exit_instruction++;
Cornelia Huck5786fff2012-07-23 17:20:29 +0200220 trace_kvm_s390_intercept_instruction(vcpu,
221 vcpu->arch.sie_block->ipa,
222 vcpu->arch.sie_block->ipb);
Carsten Otteba5c1e92008-03-25 18:47:26 +0100223 handler = instruction_handlers[vcpu->arch.sie_block->ipa >> 8];
224 if (handler)
225 return handler(vcpu);
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100226 return -EOPNOTSUPP;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100227}
228
229static int handle_prog(struct kvm_vcpu *vcpu)
230{
231 vcpu->stat.exit_program_interruption++;
Cornelia Huck5786fff2012-07-23 17:20:29 +0200232 trace_kvm_s390_intercept_prog(vcpu, vcpu->arch.sie_block->iprcc);
Carsten Otteba5c1e92008-03-25 18:47:26 +0100233 return kvm_s390_inject_program_int(vcpu, vcpu->arch.sie_block->iprcc);
234}
235
236static int handle_instruction_and_prog(struct kvm_vcpu *vcpu)
237{
238 int rc, rc2;
239
240 vcpu->stat.exit_instr_and_program++;
241 rc = handle_instruction(vcpu);
242 rc2 = handle_prog(vcpu);
243
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100244 if (rc == -EOPNOTSUPP)
Carsten Otteba5c1e92008-03-25 18:47:26 +0100245 vcpu->arch.sie_block->icptcode = 0x04;
246 if (rc)
247 return rc;
248 return rc2;
249}
250
Christian Borntraeger062d5e92010-01-21 12:19:07 +0100251static const intercept_handler_t intercept_funcs[] = {
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100252 [0x00 >> 2] = handle_noop,
Carsten Otteba5c1e92008-03-25 18:47:26 +0100253 [0x04 >> 2] = handle_instruction,
254 [0x08 >> 2] = handle_prog,
255 [0x0C >> 2] = handle_instruction_and_prog,
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100256 [0x10 >> 2] = handle_noop,
257 [0x14 >> 2] = handle_noop,
Carsten Otteba5c1e92008-03-25 18:47:26 +0100258 [0x1C >> 2] = kvm_s390_handle_wait,
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100259 [0x20 >> 2] = handle_validity,
260 [0x28 >> 2] = handle_stop,
261};
262
263int kvm_handle_sie_intercept(struct kvm_vcpu *vcpu)
264{
265 intercept_handler_t func;
266 u8 code = vcpu->arch.sie_block->icptcode;
267
Christian Borntraeger062d5e92010-01-21 12:19:07 +0100268 if (code & 3 || (code >> 2) >= ARRAY_SIZE(intercept_funcs))
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100269 return -EOPNOTSUPP;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100270 func = intercept_funcs[code >> 2];
271 if (func)
272 return func(vcpu);
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100273 return -EOPNOTSUPP;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100274}