sigp.c 9.7 KB
Newer Older
1 2 3
/*
 * sigp.c - handlinge interprocessor communication
 *
4
 * Copyright IBM Corp. 2008,2009
5 6 7 8 9 10 11
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License (version 2 only)
 * as published by the Free Software Foundation.
 *
 *    Author(s): Carsten Otte <cotte@de.ibm.com>
 *               Christian Borntraeger <borntraeger@de.ibm.com>
12
 *               Christian Ehrhardt <ehrhardt@de.ibm.com>
13 14 15 16
 */

#include <linux/kvm.h>
#include <linux/kvm_host.h>
17
#include <linux/slab.h>
18
#include <asm/sigp.h>
19 20 21
#include "gaccess.h"
#include "kvm-s390.h"

22
static int __sigp_sense(struct kvm_vcpu *vcpu, u16 cpu_addr,
23
			u64 *reg)
24
{
25
	struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
26 27 28
	int rc;

	if (cpu_addr >= KVM_MAX_VCPUS)
29
		return SIGP_CC_NOT_OPERATIONAL;
30

31
	spin_lock(&fi->lock);
32
	if (fi->local_int[cpu_addr] == NULL)
33
		rc = SIGP_CC_NOT_OPERATIONAL;
34 35
	else if (!(atomic_read(fi->local_int[cpu_addr]->cpuflags)
		  & CPUSTAT_STOPPED)) {
36
		*reg &= 0xffffffff00000000UL;
37
		rc = SIGP_CC_STATUS_STORED;
38 39
	} else {
		*reg &= 0xffffffff00000000UL;
40
		*reg |= SIGP_STATUS_STOPPED;
41
		rc = SIGP_CC_STATUS_STORED;
42
	}
43
	spin_unlock(&fi->lock);
44 45 46 47 48 49 50

	VCPU_EVENT(vcpu, 4, "sensed status of cpu %x rc %x", cpu_addr, rc);
	return rc;
}

static int __sigp_emergency(struct kvm_vcpu *vcpu, u16 cpu_addr)
{
51 52 53
	struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
	struct kvm_s390_local_interrupt *li;
	struct kvm_s390_interrupt_info *inti;
54 55 56
	int rc;

	if (cpu_addr >= KVM_MAX_VCPUS)
57
		return SIGP_CC_NOT_OPERATIONAL;
58 59 60 61 62 63

	inti = kzalloc(sizeof(*inti), GFP_KERNEL);
	if (!inti)
		return -ENOMEM;

	inti->type = KVM_S390_INT_EMERGENCY;
64
	inti->emerg.code = vcpu->vcpu_id;
65

66
	spin_lock(&fi->lock);
67 68
	li = fi->local_int[cpu_addr];
	if (li == NULL) {
69
		rc = SIGP_CC_NOT_OPERATIONAL;
70 71 72 73 74 75 76 77 78 79
		kfree(inti);
		goto unlock;
	}
	spin_lock_bh(&li->lock);
	list_add_tail(&inti->list, &li->list);
	atomic_set(&li->active, 1);
	atomic_set_mask(CPUSTAT_EXT_INT, li->cpuflags);
	if (waitqueue_active(&li->wq))
		wake_up_interruptible(&li->wq);
	spin_unlock_bh(&li->lock);
80
	rc = SIGP_CC_ORDER_CODE_ACCEPTED;
81 82 83 84 85 86 87 88 89 90 91 92 93 94
	VCPU_EVENT(vcpu, 4, "sent sigp emerg to cpu %x", cpu_addr);
unlock:
	spin_unlock(&fi->lock);
	return rc;
}

static int __sigp_external_call(struct kvm_vcpu *vcpu, u16 cpu_addr)
{
	struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
	struct kvm_s390_local_interrupt *li;
	struct kvm_s390_interrupt_info *inti;
	int rc;

	if (cpu_addr >= KVM_MAX_VCPUS)
95
		return SIGP_CC_NOT_OPERATIONAL;
96 97 98 99 100 101 102 103 104 105 106

	inti = kzalloc(sizeof(*inti), GFP_KERNEL);
	if (!inti)
		return -ENOMEM;

	inti->type = KVM_S390_INT_EXTERNAL_CALL;
	inti->extcall.code = vcpu->vcpu_id;

	spin_lock(&fi->lock);
	li = fi->local_int[cpu_addr];
	if (li == NULL) {
107
		rc = SIGP_CC_NOT_OPERATIONAL;
108 109 110 111 112 113 114 115 116 117
		kfree(inti);
		goto unlock;
	}
	spin_lock_bh(&li->lock);
	list_add_tail(&inti->list, &li->list);
	atomic_set(&li->active, 1);
	atomic_set_mask(CPUSTAT_EXT_INT, li->cpuflags);
	if (waitqueue_active(&li->wq))
		wake_up_interruptible(&li->wq);
	spin_unlock_bh(&li->lock);
118
	rc = SIGP_CC_ORDER_CODE_ACCEPTED;
119
	VCPU_EVENT(vcpu, 4, "sent sigp ext call to cpu %x", cpu_addr);
120
unlock:
121
	spin_unlock(&fi->lock);
122 123 124
	return rc;
}

125
static int __inject_sigp_stop(struct kvm_s390_local_interrupt *li, int action)
126
{
127
	struct kvm_s390_interrupt_info *inti;
128

129
	inti = kzalloc(sizeof(*inti), GFP_ATOMIC);
130 131 132 133 134
	if (!inti)
		return -ENOMEM;
	inti->type = KVM_S390_SIGP_STOP;

	spin_lock_bh(&li->lock);
135 136
	if ((atomic_read(li->cpuflags) & CPUSTAT_STOPPED))
		goto out;
137 138 139
	list_add_tail(&inti->list, &li->list);
	atomic_set(&li->active, 1);
	atomic_set_mask(CPUSTAT_STOP_INT, li->cpuflags);
140
	li->action_bits |= action;
141 142
	if (waitqueue_active(&li->wq))
		wake_up_interruptible(&li->wq);
143
out:
144
	spin_unlock_bh(&li->lock);
145

146
	return SIGP_CC_ORDER_CODE_ACCEPTED;
147 148 149 150 151 152 153 154 155
}

static int __sigp_stop(struct kvm_vcpu *vcpu, u16 cpu_addr, int action)
{
	struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
	struct kvm_s390_local_interrupt *li;
	int rc;

	if (cpu_addr >= KVM_MAX_VCPUS)
156
		return SIGP_CC_NOT_OPERATIONAL;
157 158 159 160

	spin_lock(&fi->lock);
	li = fi->local_int[cpu_addr];
	if (li == NULL) {
161
		rc = SIGP_CC_NOT_OPERATIONAL;
162 163 164 165 166
		goto unlock;
	}

	rc = __inject_sigp_stop(li, action);

167
unlock:
168
	spin_unlock(&fi->lock);
169 170 171 172
	VCPU_EVENT(vcpu, 4, "sent sigp stop to cpu %x", cpu_addr);
	return rc;
}

173 174 175 176 177 178
int kvm_s390_inject_sigp_stop(struct kvm_vcpu *vcpu, int action)
{
	struct kvm_s390_local_interrupt *li = &vcpu->arch.local_int;
	return __inject_sigp_stop(li, action);
}

179 180 181 182 183 184
static int __sigp_set_arch(struct kvm_vcpu *vcpu, u32 parameter)
{
	int rc;

	switch (parameter & 0xff) {
	case 0:
185
		rc = SIGP_CC_NOT_OPERATIONAL;
186 187 188
		break;
	case 1:
	case 2:
189
		rc = SIGP_CC_ORDER_CODE_ACCEPTED;
190 191
		break;
	default:
192
		rc = -EOPNOTSUPP;
193 194 195 196 197
	}
	return rc;
}

static int __sigp_set_prefix(struct kvm_vcpu *vcpu, u16 cpu_addr, u32 address,
198
			     u64 *reg)
199
{
200
	struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
R
Roel Kluin 已提交
201
	struct kvm_s390_local_interrupt *li = NULL;
202
	struct kvm_s390_interrupt_info *inti;
203 204 205 206 207
	int rc;
	u8 tmp;

	/* make sure that the new value is valid memory */
	address = address & 0x7fffe000u;
208 209
	if (copy_from_guest_absolute(vcpu, &tmp, address, 1) ||
	   copy_from_guest_absolute(vcpu, &tmp, address + PAGE_SIZE, 1)) {
210
		*reg &= 0xffffffff00000000UL;
211
		*reg |= SIGP_STATUS_INVALID_PARAMETER;
212
		return SIGP_CC_STATUS_STORED;
213 214 215 216
	}

	inti = kzalloc(sizeof(*inti), GFP_KERNEL);
	if (!inti)
217
		return SIGP_CC_BUSY;
218

219
	spin_lock(&fi->lock);
R
Roel Kluin 已提交
220 221
	if (cpu_addr < KVM_MAX_VCPUS)
		li = fi->local_int[cpu_addr];
222

R
Roel Kluin 已提交
223
	if (li == NULL) {
224 225
		*reg &= 0xffffffff00000000UL;
		*reg |= SIGP_STATUS_INCORRECT_STATE;
226
		rc = SIGP_CC_STATUS_STORED;
227 228 229 230 231 232
		kfree(inti);
		goto out_fi;
	}

	spin_lock_bh(&li->lock);
	/* cpu must be in stopped state */
233
	if (!(atomic_read(li->cpuflags) & CPUSTAT_STOPPED)) {
234 235
		*reg &= 0xffffffff00000000UL;
		*reg |= SIGP_STATUS_INCORRECT_STATE;
236
		rc = SIGP_CC_STATUS_STORED;
237 238 239 240 241 242 243 244 245 246 247
		kfree(inti);
		goto out_li;
	}

	inti->type = KVM_S390_SIGP_SET_PREFIX;
	inti->prefix.address = address;

	list_add_tail(&inti->list, &li->list);
	atomic_set(&li->active, 1);
	if (waitqueue_active(&li->wq))
		wake_up_interruptible(&li->wq);
248
	rc = SIGP_CC_ORDER_CODE_ACCEPTED;
249 250 251 252 253

	VCPU_EVENT(vcpu, 4, "set prefix of cpu %02x to %x", cpu_addr, address);
out_li:
	spin_unlock_bh(&li->lock);
out_fi:
254
	spin_unlock(&fi->lock);
255 256 257
	return rc;
}

258
static int __sigp_sense_running(struct kvm_vcpu *vcpu, u16 cpu_addr,
259
				u64 *reg)
260 261 262 263 264
{
	int rc;
	struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;

	if (cpu_addr >= KVM_MAX_VCPUS)
265
		return SIGP_CC_NOT_OPERATIONAL;
266 267 268

	spin_lock(&fi->lock);
	if (fi->local_int[cpu_addr] == NULL)
269
		rc = SIGP_CC_NOT_OPERATIONAL;
270 271 272 273
	else {
		if (atomic_read(fi->local_int[cpu_addr]->cpuflags)
		    & CPUSTAT_RUNNING) {
			/* running */
274
			rc = SIGP_CC_ORDER_CODE_ACCEPTED;
275 276 277
		} else {
			/* not running */
			*reg &= 0xffffffff00000000UL;
278
			*reg |= SIGP_STATUS_NOT_RUNNING;
279
			rc = SIGP_CC_STATUS_STORED;
280 281 282 283 284 285 286 287 288 289
		}
	}
	spin_unlock(&fi->lock);

	VCPU_EVENT(vcpu, 4, "sensed running status of cpu %x rc %x", cpu_addr,
		   rc);

	return rc;
}

290 291 292 293
static int __sigp_restart(struct kvm_vcpu *vcpu, u16 cpu_addr)
{
	struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
	struct kvm_s390_local_interrupt *li;
294
	int rc = SIGP_CC_ORDER_CODE_ACCEPTED;
295 296

	if (cpu_addr >= KVM_MAX_VCPUS)
297
		return SIGP_CC_NOT_OPERATIONAL;
298 299 300 301

	spin_lock(&fi->lock);
	li = fi->local_int[cpu_addr];
	if (li == NULL) {
302
		rc = SIGP_CC_NOT_OPERATIONAL;
303 304 305 306 307
		goto out;
	}

	spin_lock_bh(&li->lock);
	if (li->action_bits & ACTION_STOP_ON_STOP)
308
		rc = SIGP_CC_BUSY;
309 310 311 312 313 314 315 316 317
	else
		VCPU_EVENT(vcpu, 4, "sigp restart %x to handle userspace",
			cpu_addr);
	spin_unlock_bh(&li->lock);
out:
	spin_unlock(&fi->lock);
	return rc;
}

318 319 320 321 322 323 324
int kvm_s390_handle_sigp(struct kvm_vcpu *vcpu)
{
	int r1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
	int r3 = vcpu->arch.sie_block->ipa & 0x000f;
	int base2 = vcpu->arch.sie_block->ipb >> 28;
	int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
	u32 parameter;
325
	u16 cpu_addr = vcpu->run->s.regs.gprs[r3];
326 327 328
	u8 order_code;
	int rc;

329 330 331 332 333
	/* sigp in userspace can exit */
	if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
		return kvm_s390_inject_program_int(vcpu,
						   PGM_PRIVILEGED_OPERATION);

334 335
	order_code = disp2;
	if (base2)
336
		order_code += vcpu->run->s.regs.gprs[base2];
337 338

	if (r1 % 2)
339
		parameter = vcpu->run->s.regs.gprs[r1];
340
	else
341
		parameter = vcpu->run->s.regs.gprs[r1 + 1];
342 343 344 345 346

	switch (order_code) {
	case SIGP_SENSE:
		vcpu->stat.instruction_sigp_sense++;
		rc = __sigp_sense(vcpu, cpu_addr,
347
				  &vcpu->run->s.regs.gprs[r1]);
348
		break;
349 350 351 352
	case SIGP_EXTERNAL_CALL:
		vcpu->stat.instruction_sigp_external_call++;
		rc = __sigp_external_call(vcpu, cpu_addr);
		break;
353
	case SIGP_EMERGENCY_SIGNAL:
354 355 356 357 358
		vcpu->stat.instruction_sigp_emergency++;
		rc = __sigp_emergency(vcpu, cpu_addr);
		break;
	case SIGP_STOP:
		vcpu->stat.instruction_sigp_stop++;
359
		rc = __sigp_stop(vcpu, cpu_addr, ACTION_STOP_ON_STOP);
360
		break;
361
	case SIGP_STOP_AND_STORE_STATUS:
362
		vcpu->stat.instruction_sigp_stop++;
363 364
		rc = __sigp_stop(vcpu, cpu_addr, ACTION_STORE_ON_STOP |
						 ACTION_STOP_ON_STOP);
365
		break;
366
	case SIGP_SET_ARCHITECTURE:
367 368 369 370 371 372
		vcpu->stat.instruction_sigp_arch++;
		rc = __sigp_set_arch(vcpu, parameter);
		break;
	case SIGP_SET_PREFIX:
		vcpu->stat.instruction_sigp_prefix++;
		rc = __sigp_set_prefix(vcpu, cpu_addr, parameter,
373
				       &vcpu->run->s.regs.gprs[r1]);
374
		break;
375 376 377
	case SIGP_SENSE_RUNNING:
		vcpu->stat.instruction_sigp_sense_running++;
		rc = __sigp_sense_running(vcpu, cpu_addr,
378
					  &vcpu->run->s.regs.gprs[r1]);
379
		break;
380 381
	case SIGP_RESTART:
		vcpu->stat.instruction_sigp_restart++;
382
		rc = __sigp_restart(vcpu, cpu_addr);
383
		if (rc == SIGP_CC_BUSY)
384
			break;
385 386
		/* user space must know about restart */
	default:
387
		return -EOPNOTSUPP;
388 389 390 391 392 393 394 395 396
	}

	if (rc < 0)
		return rc;

	vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
	vcpu->arch.sie_block->gpsw.mask |= (rc & 3ul) << 44;
	return 0;
}