2 * priv.c - handling privileged instructions
4 * Copyright IBM Corp. 2008
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.
10 * Author(s): Carsten Otte <cotte@de.ibm.com>
11 * Christian Borntraeger <borntraeger@de.ibm.com>
14 #include <linux/kvm.h>
15 #include <linux/errno.h>
16 #include <asm/current.h>
17 #include <asm/debug.h>
18 #include <asm/ebcdic.h>
19 #include <asm/sysinfo.h>
23 static int handle_set_prefix(struct kvm_vcpu *vcpu)
25 int base2 = vcpu->arch.sie_block->ipb >> 28;
26 int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
31 vcpu->stat.instruction_spx++;
35 operand2 += vcpu->arch.guest_gprs[base2];
37 /* must be word boundary */
39 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
44 if (get_guest_u32(vcpu, operand2, &address)) {
45 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
49 address = address & 0x7fffe000u;
51 /* make sure that the new value is valid memory */
52 if (copy_from_guest_absolute(vcpu, &tmp, address, 1) ||
53 (copy_from_guest_absolute(vcpu, &tmp, address + PAGE_SIZE, 1))) {
54 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
58 vcpu->arch.sie_block->prefix = address;
59 vcpu->arch.sie_block->ihcpu = 0xffff;
61 VCPU_EVENT(vcpu, 5, "setting prefix to %x", address);
66 static int handle_store_prefix(struct kvm_vcpu *vcpu)
68 int base2 = vcpu->arch.sie_block->ipb >> 28;
69 int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
73 vcpu->stat.instruction_stpx++;
76 operand2 += vcpu->arch.guest_gprs[base2];
78 /* must be word boundary */
80 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
84 address = vcpu->arch.sie_block->prefix;
85 address = address & 0x7fffe000u;
88 if (put_guest_u32(vcpu, operand2, address)) {
89 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
93 VCPU_EVENT(vcpu, 5, "storing prefix to %x", address);
98 static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
100 int base2 = vcpu->arch.sie_block->ipb >> 28;
101 int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
105 vcpu->stat.instruction_stap++;
108 useraddr += vcpu->arch.guest_gprs[base2];
111 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
115 rc = put_guest_u16(vcpu, useraddr, vcpu->vcpu_id);
117 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
121 VCPU_EVENT(vcpu, 5, "storing cpu address to %lx", useraddr);
126 static int handle_skey(struct kvm_vcpu *vcpu)
128 vcpu->stat.instruction_storage_key++;
129 vcpu->arch.sie_block->gpsw.addr -= 4;
130 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
134 static int handle_stsch(struct kvm_vcpu *vcpu)
136 vcpu->stat.instruction_stsch++;
137 VCPU_EVENT(vcpu, 4, "%s", "store subchannel - CC3");
138 /* condition code 3 */
139 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
140 vcpu->arch.sie_block->gpsw.mask |= (3 & 3ul) << 44;
144 static int handle_chsc(struct kvm_vcpu *vcpu)
146 vcpu->stat.instruction_chsc++;
147 VCPU_EVENT(vcpu, 4, "%s", "channel subsystem call - CC3");
148 /* condition code 3 */
149 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
150 vcpu->arch.sie_block->gpsw.mask |= (3 & 3ul) << 44;
154 static unsigned int kvm_stfl(void)
157 " .insn s,0xb2b10000,0(0)\n" /* stfl */
160 return S390_lowcore.stfl_fac_list;
163 static int handle_stfl(struct kvm_vcpu *vcpu)
165 unsigned int facility_list = kvm_stfl();
168 vcpu->stat.instruction_stfl++;
169 facility_list &= ~(1UL<<24); /* no stfle */
171 rc = copy_to_guest(vcpu, offsetof(struct _lowcore, stfl_fac_list),
172 &facility_list, sizeof(facility_list));
174 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
176 VCPU_EVENT(vcpu, 5, "store facility list value %x",
181 static int handle_stidp(struct kvm_vcpu *vcpu)
183 int base2 = vcpu->arch.sie_block->ipb >> 28;
184 int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
188 vcpu->stat.instruction_stidp++;
191 operand2 += vcpu->arch.guest_gprs[base2];
194 kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
198 rc = put_guest_u64(vcpu, operand2, vcpu->arch.stidp_data);
200 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
204 VCPU_EVENT(vcpu, 5, "%s", "store cpu id");
209 static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
211 struct float_interrupt *fi = &vcpu->kvm->arch.float_int;
215 spin_lock_bh(&fi->lock);
216 for (n = 0; n < KVM_MAX_VCPUS; n++)
217 if (fi->local_int[n])
219 spin_unlock_bh(&fi->lock);
221 /* deal with other level 3 hypervisors */
222 if (stsi(mem, 3, 2, 2) == -ENOSYS)
226 for (n = mem->count - 1; n > 0 ; n--)
227 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
229 mem->vm[0].cpus_total = cpus;
230 mem->vm[0].cpus_configured = cpus;
231 mem->vm[0].cpus_standby = 0;
232 mem->vm[0].cpus_reserved = 0;
233 mem->vm[0].caf = 1000;
234 memcpy(mem->vm[0].name, "KVMguest", 8);
235 ASCEBC(mem->vm[0].name, 8);
236 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
237 ASCEBC(mem->vm[0].cpi, 16);
240 static int handle_stsi(struct kvm_vcpu *vcpu)
242 int fc = (vcpu->arch.guest_gprs[0] & 0xf0000000) >> 28;
243 int sel1 = vcpu->arch.guest_gprs[0] & 0xff;
244 int sel2 = vcpu->arch.guest_gprs[1] & 0xffff;
245 int base2 = vcpu->arch.sie_block->ipb >> 28;
246 int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
250 vcpu->stat.instruction_stsi++;
251 VCPU_EVENT(vcpu, 4, "stsi: fc: %x sel1: %x sel2: %x", fc, sel1, sel2);
255 operand2 += vcpu->arch.guest_gprs[base2];
257 if (operand2 & 0xfff && fc > 0)
258 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
262 vcpu->arch.guest_gprs[0] = 3 << 28;
263 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
265 case 1: /* same handling for 1 and 2 */
267 mem = get_zeroed_page(GFP_KERNEL);
270 if (stsi((void *) mem, fc, sel1, sel2) == -ENOSYS)
274 if (sel1 != 2 || sel2 != 2)
276 mem = get_zeroed_page(GFP_KERNEL);
279 handle_stsi_3_2_2(vcpu, (void *) mem);
285 if (copy_to_guest_absolute(vcpu, operand2, (void *) mem, PAGE_SIZE)) {
286 kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
290 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
291 vcpu->arch.guest_gprs[0] = 0;
296 /* condition code 3 */
297 vcpu->arch.sie_block->gpsw.mask |= 3ul << 44;
301 static intercept_handler_t priv_handlers[256] = {
302 [0x02] = handle_stidp,
303 [0x10] = handle_set_prefix,
304 [0x11] = handle_store_prefix,
305 [0x12] = handle_store_cpu_address,
306 [0x29] = handle_skey,
307 [0x2a] = handle_skey,
308 [0x2b] = handle_skey,
309 [0x34] = handle_stsch,
310 [0x5f] = handle_chsc,
311 [0x7d] = handle_stsi,
312 [0xb1] = handle_stfl,
315 int kvm_s390_handle_priv(struct kvm_vcpu *vcpu)
317 intercept_handler_t handler;
319 handler = priv_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
321 return handler(vcpu);