blob: f0b8be0cc08d8132803600b28b39f976baf9e846 [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"
Cornelia Huckade38c32012-07-23 17:20:30 +020023#include "trace-s390.h"
Carsten Otteba5c1e92008-03-25 18:47:26 +010024
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020025static int handle_lctlg(struct kvm_vcpu *vcpu)
Carsten Otteba5c1e92008-03-25 18:47:26 +010026{
27 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
28 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Carsten Otteba5c1e92008-03-25 18:47:26 +010029 u64 useraddr;
30 int reg, rc;
31
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020032 vcpu->stat.instruction_lctlg++;
Carsten Otteba5c1e92008-03-25 18:47:26 +010033
Cornelia Huckb1c571a2012-12-20 15:32:07 +010034 useraddr = kvm_s390_get_base_disp_rsy(vcpu);
Carsten Otteba5c1e92008-03-25 18:47:26 +010035
Christian Borntraeger5a00a5e2008-07-25 15:53:12 +020036 if (useraddr & 7)
37 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
38
Carsten Otteba5c1e92008-03-25 18:47:26 +010039 reg = reg1;
40
Cornelia Huckb1c571a2012-12-20 15:32:07 +010041 VCPU_EVENT(vcpu, 5, "lctlg r1:%x, r3:%x, addr:%llx", reg1, reg3,
42 useraddr);
Cornelia Huck5786fff2012-07-23 17:20:29 +020043 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, useraddr);
Carsten Otteba5c1e92008-03-25 18:47:26 +010044
45 do {
Heiko Carstens396083a2013-03-05 13:14:44 +010046 rc = get_guest(vcpu, vcpu->arch.sie_block->gcr[reg],
Heiko Carstens0a75ca22013-03-05 13:14:47 +010047 (u64 __user *) useraddr);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010048 if (rc)
49 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Carsten Otteba5c1e92008-03-25 18:47:26 +010050 useraddr += 8;
51 if (reg == reg3)
52 break;
53 reg = (reg + 1) % 16;
54 } while (1);
55 return 0;
56}
57
58static int handle_lctl(struct kvm_vcpu *vcpu)
59{
60 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
61 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Carsten Otteba5c1e92008-03-25 18:47:26 +010062 u64 useraddr;
63 u32 val = 0;
64 int reg, rc;
65
66 vcpu->stat.instruction_lctl++;
67
Cornelia Huckb1c571a2012-12-20 15:32:07 +010068 useraddr = kvm_s390_get_base_disp_rs(vcpu);
Carsten Otteba5c1e92008-03-25 18:47:26 +010069
Christian Borntraeger5a00a5e2008-07-25 15:53:12 +020070 if (useraddr & 3)
71 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
72
Cornelia Huckb1c571a2012-12-20 15:32:07 +010073 VCPU_EVENT(vcpu, 5, "lctl r1:%x, r3:%x, addr:%llx", reg1, reg3,
74 useraddr);
Cornelia Huck5786fff2012-07-23 17:20:29 +020075 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, useraddr);
Carsten Otteba5c1e92008-03-25 18:47:26 +010076
77 reg = reg1;
78 do {
Heiko Carstens0a75ca22013-03-05 13:14:47 +010079 rc = get_guest(vcpu, val, (u32 __user *) useraddr);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010080 if (rc)
81 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Carsten Otteba5c1e92008-03-25 18:47:26 +010082 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
83 vcpu->arch.sie_block->gcr[reg] |= val;
84 useraddr += 4;
85 if (reg == reg3)
86 break;
87 reg = (reg + 1) % 16;
88 } while (1);
89 return 0;
90}
91
Cornelia Huckf379aae2012-12-20 15:32:10 +010092static const intercept_handler_t eb_handlers[256] = {
93 [0x2f] = handle_lctlg,
94 [0x8a] = kvm_s390_handle_priv_eb,
95};
96
97static int handle_eb(struct kvm_vcpu *vcpu)
98{
99 intercept_handler_t handler;
100
101 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
102 if (handler)
103 return handler(vcpu);
104 return -EOPNOTSUPP;
105}
106
Cornelia Huck77975352012-12-20 15:32:06 +0100107static const intercept_handler_t instruction_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +0200108 [0x01] = kvm_s390_handle_01,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100109 [0x82] = kvm_s390_handle_lpsw,
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100110 [0x83] = kvm_s390_handle_diag,
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100111 [0xae] = kvm_s390_handle_sigp,
Christian Borntraeger70455a32009-01-22 10:28:29 +0100112 [0xb2] = kvm_s390_handle_b2,
Carsten Otteba5c1e92008-03-25 18:47:26 +0100113 [0xb7] = handle_lctl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100114 [0xb9] = kvm_s390_handle_b9,
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200115 [0xe5] = kvm_s390_handle_e5,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100116 [0xeb] = handle_eb,
Carsten Otteba5c1e92008-03-25 18:47:26 +0100117};
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100118
119static int handle_noop(struct kvm_vcpu *vcpu)
120{
121 switch (vcpu->arch.sie_block->icptcode) {
Christian Borntraeger0eaeafa2008-05-07 09:22:53 +0200122 case 0x0:
123 vcpu->stat.exit_null++;
124 break;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100125 case 0x10:
126 vcpu->stat.exit_external_request++;
127 break;
128 case 0x14:
129 vcpu->stat.exit_external_interrupt++;
130 break;
131 default:
132 break; /* nothing */
133 }
134 return 0;
135}
136
137static int handle_stop(struct kvm_vcpu *vcpu)
138{
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200139 int rc = 0;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100140
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100141 vcpu->stat.exit_stop_request++;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100142 spin_lock_bh(&vcpu->arch.local_int.lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100143
Cornelia Huckade38c32012-07-23 17:20:30 +0200144 trace_kvm_s390_stop_request(vcpu->arch.local_int.action_bits);
145
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200146 if (vcpu->arch.local_int.action_bits & ACTION_RELOADVCPU_ON_STOP) {
147 vcpu->arch.local_int.action_bits &= ~ACTION_RELOADVCPU_ON_STOP;
148 rc = SIE_INTERCEPT_RERUNVCPU;
149 vcpu->run->exit_reason = KVM_EXIT_INTR;
150 }
151
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100152 if (vcpu->arch.local_int.action_bits & ACTION_STOP_ON_STOP) {
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100153 atomic_set_mask(CPUSTAT_STOPPED,
154 &vcpu->arch.sie_block->cpuflags);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100155 vcpu->arch.local_int.action_bits &= ~ACTION_STOP_ON_STOP;
156 VCPU_EVENT(vcpu, 3, "%s", "cpu stopped");
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100157 rc = -EOPNOTSUPP;
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200158 }
159
Jens Freimann9e0d5472012-02-06 10:59:03 +0100160 if (vcpu->arch.local_int.action_bits & ACTION_STORE_ON_STOP) {
161 vcpu->arch.local_int.action_bits &= ~ACTION_STORE_ON_STOP;
162 /* store status must be called unlocked. Since local_int.lock
163 * only protects local_int.* and not guest memory we can give
164 * up the lock here */
165 spin_unlock_bh(&vcpu->arch.local_int.lock);
166 rc = kvm_s390_vcpu_store_status(vcpu,
167 KVM_S390_STORE_STATUS_NOADDR);
168 if (rc >= 0)
169 rc = -EOPNOTSUPP;
170 } else
171 spin_unlock_bh(&vcpu->arch.local_int.lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100172 return rc;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100173}
174
175static int handle_validity(struct kvm_vcpu *vcpu)
176{
177 int viwhy = vcpu->arch.sie_block->ipb >> 16;
Carsten Otte3edbcff2009-05-12 17:21:52 +0200178
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100179 vcpu->stat.exit_validity++;
Cornelia Huck5786fff2012-07-23 17:20:29 +0200180 trace_kvm_s390_intercept_validity(vcpu, viwhy);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200181 WARN_ONCE(true, "kvm: unhandled validity intercept 0x%x\n", viwhy);
182 return -EOPNOTSUPP;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100183}
184
Carsten Otteba5c1e92008-03-25 18:47:26 +0100185static int handle_instruction(struct kvm_vcpu *vcpu)
186{
187 intercept_handler_t handler;
188
189 vcpu->stat.exit_instruction++;
Cornelia Huck5786fff2012-07-23 17:20:29 +0200190 trace_kvm_s390_intercept_instruction(vcpu,
191 vcpu->arch.sie_block->ipa,
192 vcpu->arch.sie_block->ipb);
Carsten Otteba5c1e92008-03-25 18:47:26 +0100193 handler = instruction_handlers[vcpu->arch.sie_block->ipa >> 8];
194 if (handler)
195 return handler(vcpu);
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100196 return -EOPNOTSUPP;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100197}
198
199static int handle_prog(struct kvm_vcpu *vcpu)
200{
201 vcpu->stat.exit_program_interruption++;
Cornelia Huck5786fff2012-07-23 17:20:29 +0200202 trace_kvm_s390_intercept_prog(vcpu, vcpu->arch.sie_block->iprcc);
Carsten Otteba5c1e92008-03-25 18:47:26 +0100203 return kvm_s390_inject_program_int(vcpu, vcpu->arch.sie_block->iprcc);
204}
205
206static int handle_instruction_and_prog(struct kvm_vcpu *vcpu)
207{
208 int rc, rc2;
209
210 vcpu->stat.exit_instr_and_program++;
211 rc = handle_instruction(vcpu);
212 rc2 = handle_prog(vcpu);
213
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100214 if (rc == -EOPNOTSUPP)
Carsten Otteba5c1e92008-03-25 18:47:26 +0100215 vcpu->arch.sie_block->icptcode = 0x04;
216 if (rc)
217 return rc;
218 return rc2;
219}
220
Christian Borntraeger062d5e92010-01-21 12:19:07 +0100221static const intercept_handler_t intercept_funcs[] = {
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100222 [0x00 >> 2] = handle_noop,
Carsten Otteba5c1e92008-03-25 18:47:26 +0100223 [0x04 >> 2] = handle_instruction,
224 [0x08 >> 2] = handle_prog,
225 [0x0C >> 2] = handle_instruction_and_prog,
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100226 [0x10 >> 2] = handle_noop,
227 [0x14 >> 2] = handle_noop,
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100228 [0x18 >> 2] = handle_noop,
Carsten Otteba5c1e92008-03-25 18:47:26 +0100229 [0x1C >> 2] = kvm_s390_handle_wait,
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100230 [0x20 >> 2] = handle_validity,
231 [0x28 >> 2] = handle_stop,
232};
233
234int kvm_handle_sie_intercept(struct kvm_vcpu *vcpu)
235{
236 intercept_handler_t func;
237 u8 code = vcpu->arch.sie_block->icptcode;
238
Christian Borntraeger062d5e92010-01-21 12:19:07 +0100239 if (code & 3 || (code >> 2) >= ARRAY_SIZE(intercept_funcs))
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100240 return -EOPNOTSUPP;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100241 func = intercept_funcs[code >> 2];
242 if (func)
243 return func(vcpu);
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100244 return -EOPNOTSUPP;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100245}