2 * Copyright 2012 Michael Ellerman, IBM Corporation.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2, as
6 * published by the Free Software Foundation.
9 #include <linux/kernel.h>
10 #include <linux/kvm_host.h>
11 #include <linux/kvm.h>
12 #include <linux/err.h>
14 #include <linux/uaccess.h>
15 #include <asm/kvm_book3s.h>
16 #include <asm/kvm_ppc.h>
17 #include <asm/hvcall.h>
21 #ifdef CONFIG_KVM_XICS
22 static void kvm_rtas_set_xive(struct kvm_vcpu *vcpu, struct rtas_args *args)
24 u32 irq, server, priority;
27 if (be32_to_cpu(args->nargs) != 3 || be32_to_cpu(args->nret) != 1) {
32 irq = be32_to_cpu(args->args[0]);
33 server = be32_to_cpu(args->args[1]);
34 priority = be32_to_cpu(args->args[2]);
37 rc = kvmppc_xive_set_xive(vcpu->kvm, irq, server, priority);
39 rc = kvmppc_xics_set_xive(vcpu->kvm, irq, server, priority);
43 args->rets[0] = cpu_to_be32(rc);
46 static void kvm_rtas_get_xive(struct kvm_vcpu *vcpu, struct rtas_args *args)
48 u32 irq, server, priority;
51 if (be32_to_cpu(args->nargs) != 1 || be32_to_cpu(args->nret) != 3) {
56 irq = be32_to_cpu(args->args[0]);
58 server = priority = 0;
60 rc = kvmppc_xive_get_xive(vcpu->kvm, irq, &server, &priority);
62 rc = kvmppc_xics_get_xive(vcpu->kvm, irq, &server, &priority);
68 args->rets[1] = cpu_to_be32(server);
69 args->rets[2] = cpu_to_be32(priority);
71 args->rets[0] = cpu_to_be32(rc);
74 static void kvm_rtas_int_off(struct kvm_vcpu *vcpu, struct rtas_args *args)
79 if (be32_to_cpu(args->nargs) != 1 || be32_to_cpu(args->nret) != 1) {
84 irq = be32_to_cpu(args->args[0]);
87 rc = kvmppc_xive_int_off(vcpu->kvm, irq);
89 rc = kvmppc_xics_int_off(vcpu->kvm, irq);
93 args->rets[0] = cpu_to_be32(rc);
96 static void kvm_rtas_int_on(struct kvm_vcpu *vcpu, struct rtas_args *args)
101 if (be32_to_cpu(args->nargs) != 1 || be32_to_cpu(args->nret) != 1) {
106 irq = be32_to_cpu(args->args[0]);
109 rc = kvmppc_xive_int_on(vcpu->kvm, irq);
111 rc = kvmppc_xics_int_on(vcpu->kvm, irq);
115 args->rets[0] = cpu_to_be32(rc);
117 #endif /* CONFIG_KVM_XICS */
119 struct rtas_handler {
120 void (*handler)(struct kvm_vcpu *vcpu, struct rtas_args *args);
124 static struct rtas_handler rtas_handlers[] = {
125 #ifdef CONFIG_KVM_XICS
126 { .name = "ibm,set-xive", .handler = kvm_rtas_set_xive },
127 { .name = "ibm,get-xive", .handler = kvm_rtas_get_xive },
128 { .name = "ibm,int-off", .handler = kvm_rtas_int_off },
129 { .name = "ibm,int-on", .handler = kvm_rtas_int_on },
133 struct rtas_token_definition {
134 struct list_head list;
135 struct rtas_handler *handler;
139 static int rtas_name_matches(char *s1, char *s2)
141 struct kvm_rtas_token_args args;
142 return !strncmp(s1, s2, sizeof(args.name));
145 static int rtas_token_undefine(struct kvm *kvm, char *name)
147 struct rtas_token_definition *d, *tmp;
149 lockdep_assert_held(&kvm->arch.rtas_token_lock);
151 list_for_each_entry_safe(d, tmp, &kvm->arch.rtas_tokens, list) {
152 if (rtas_name_matches(d->handler->name, name)) {
159 /* It's not an error to undefine an undefined token */
163 static int rtas_token_define(struct kvm *kvm, char *name, u64 token)
165 struct rtas_token_definition *d;
166 struct rtas_handler *h = NULL;
170 lockdep_assert_held(&kvm->arch.rtas_token_lock);
172 list_for_each_entry(d, &kvm->arch.rtas_tokens, list) {
173 if (d->token == token)
178 for (i = 0; i < ARRAY_SIZE(rtas_handlers); i++) {
179 h = &rtas_handlers[i];
180 if (rtas_name_matches(h->name, name)) {
189 d = kzalloc(sizeof(*d), GFP_KERNEL);
196 list_add_tail(&d->list, &kvm->arch.rtas_tokens);
201 int kvm_vm_ioctl_rtas_define_token(struct kvm *kvm, void __user *argp)
203 struct kvm_rtas_token_args args;
206 if (copy_from_user(&args, argp, sizeof(args)))
209 mutex_lock(&kvm->arch.rtas_token_lock);
212 rc = rtas_token_define(kvm, args.name, args.token);
214 rc = rtas_token_undefine(kvm, args.name);
216 mutex_unlock(&kvm->arch.rtas_token_lock);
221 int kvmppc_rtas_hcall(struct kvm_vcpu *vcpu)
223 struct rtas_token_definition *d;
224 struct rtas_args args;
225 rtas_arg_t *orig_rets;
230 * r4 contains the guest physical address of the RTAS args
231 * Mask off the top 4 bits since this is a guest real address
233 args_phys = kvmppc_get_gpr(vcpu, 4) & KVM_PAM;
235 rc = kvm_read_guest(vcpu->kvm, args_phys, &args, sizeof(args));
240 * args->rets is a pointer into args->args. Now that we've
241 * copied args we need to fix it up to point into our copy,
242 * not the guest args. We also need to save the original
243 * value so we can restore it on the way out.
245 orig_rets = args.rets;
246 if (be32_to_cpu(args.nargs) >= ARRAY_SIZE(args.args)) {
248 * Don't overflow our args array: ensure there is room for
249 * at least rets[0] (even if the call specifies 0 nret).
251 * Each handler must then check for the correct nargs and nret
252 * values, but they may always return failure in rets[0].
257 args.rets = &args.args[be32_to_cpu(args.nargs)];
259 mutex_lock(&vcpu->kvm->arch.rtas_token_lock);
262 list_for_each_entry(d, &vcpu->kvm->arch.rtas_tokens, list) {
263 if (d->token == be32_to_cpu(args.token)) {
264 d->handler->handler(vcpu, &args);
270 mutex_unlock(&vcpu->kvm->arch.rtas_token_lock);
273 args.rets = orig_rets;
274 rc = kvm_write_guest(vcpu->kvm, args_phys, &args, sizeof(args));
283 * We only get here if the guest has called RTAS with a bogus
284 * args pointer or nargs/nret values that would overflow the
285 * array. That means we can't get to the args, and so we can't
286 * fail the RTAS call. So fail right out to userspace, which
287 * should kill the guest.
289 * SLOF should actually pass the hcall return value from the
290 * rtas handler call in r3, so enter_rtas could be modified to
291 * return a failure indication in r3 and we could return such
292 * errors to the guest rather than failing to host userspace.
293 * However old guests that don't test for failure could then
294 * continue silently after errors, so for now we won't do this.
298 EXPORT_SYMBOL_GPL(kvmppc_rtas_hcall);
300 void kvmppc_rtas_tokens_free(struct kvm *kvm)
302 struct rtas_token_definition *d, *tmp;
304 list_for_each_entry_safe(d, tmp, &kvm->arch.rtas_tokens, list) {