blob: 4c5ff06b18f94056eec66c8c84f46f7eddb3bb68 [file] [log] [blame]
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001/*
2 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
3 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2, as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18
Dave Martin85acda32018-04-20 16:20:43 +010019#include <linux/bug.h>
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +010020#include <linux/cpu_pm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050021#include <linux/errno.h>
22#include <linux/err.h>
23#include <linux/kvm_host.h>
Andre Przywara1085fdc2016-07-15 12:43:31 +010024#include <linux/list.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050025#include <linux/module.h>
26#include <linux/vmalloc.h>
27#include <linux/fs.h>
28#include <linux/mman.h>
29#include <linux/sched.h>
Christoffer Dall86ce8532013-01-20 18:28:08 -050030#include <linux/kvm.h>
Eric Auger24124052017-10-27 15:28:31 +010031#include <linux/kvm_irqfd.h>
32#include <linux/irqbypass.h>
Marc Zyngierde737082018-06-21 10:43:59 +010033#include <linux/sched/stat.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050034#include <trace/events/kvm.h>
Shannon Zhaob02386e2016-02-26 19:29:19 +080035#include <kvm/arm_pmu.h>
Marc Zyngier1a2fb942018-02-06 17:56:08 +000036#include <kvm/arm_psci.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050037
38#define CREATE_TRACE_POINTS
39#include "trace.h"
40
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080041#include <linux/uaccess.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050042#include <asm/ptrace.h>
43#include <asm/mman.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050044#include <asm/tlbflush.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050045#include <asm/cacheflush.h>
Dave Martin85acda32018-04-20 16:20:43 +010046#include <asm/cpufeature.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050047#include <asm/virt.h>
48#include <asm/kvm_arm.h>
49#include <asm/kvm_asm.h>
50#include <asm/kvm_mmu.h>
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050051#include <asm/kvm_emulate.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050052#include <asm/kvm_coproc.h>
Marc Zyngier910917b2015-10-27 12:18:48 +000053#include <asm/sections.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050054
55#ifdef REQUIRES_VIRT
56__asm__(".arch_extension virt");
57#endif
58
James Morse36989e72018-01-08 15:38:04 +000059DEFINE_PER_CPU(kvm_cpu_context_t, kvm_host_cpu_state);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050060static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050061
Marc Zyngier1638a122013-01-21 19:36:11 -050062/* Per-CPU variable containing the currently running vcpu. */
63static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_arm_running_vcpu);
64
Christoffer Dallf7ed45b2013-01-20 18:47:42 -050065/* The VMID used in the VTTBR */
66static atomic64_t kvm_vmid_gen = ATOMIC64_INIT(1);
Vladimir Murzin20475f72015-11-16 11:28:18 +000067static u32 kvm_next_vmid;
68static unsigned int kvm_vmid_bits __read_mostly;
Marc Zyngierf0cf47d2018-04-04 14:48:24 +010069static DEFINE_RWLOCK(kvm_vmid_lock);
Christoffer Dall342cd0a2013-01-20 18:28:06 -050070
Pavel Fedinc7da6fa2015-12-18 14:38:43 +030071static bool vgic_present;
72
AKASHI Takahiro67f69192016-04-27 17:47:05 +010073static DEFINE_PER_CPU(unsigned char, kvm_arm_hardware_enabled);
74
Marc Zyngier1638a122013-01-21 19:36:11 -050075static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
76{
Christoph Lameter1436c1a2013-10-21 13:17:08 +010077 __this_cpu_write(kvm_arm_running_vcpu, vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050078}
79
Christoffer Dall61bbe382017-10-27 19:57:51 +020080DEFINE_STATIC_KEY_FALSE(userspace_irqchip_in_use);
81
Marc Zyngier1638a122013-01-21 19:36:11 -050082/**
83 * kvm_arm_get_running_vcpu - get the vcpu running on the current CPU.
84 * Must be called from non-preemptible context
85 */
86struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
87{
Christoph Lameter1436c1a2013-10-21 13:17:08 +010088 return __this_cpu_read(kvm_arm_running_vcpu);
Marc Zyngier1638a122013-01-21 19:36:11 -050089}
90
91/**
92 * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus.
93 */
Will Deacon4000be42014-08-26 15:13:21 +010094struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
Marc Zyngier1638a122013-01-21 19:36:11 -050095{
96 return &kvm_arm_running_vcpu;
97}
98
Christoffer Dall749cf76c2013-01-20 18:28:06 -050099int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
100{
101 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
102}
103
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500104int kvm_arch_hardware_setup(void)
105{
106 return 0;
107}
108
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500109void kvm_arch_check_processor_compat(void *rtn)
110{
111 *(int *)rtn = 0;
112}
113
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500114
Christoffer Dalld5d81842013-01-20 18:28:07 -0500115/**
116 * kvm_arch_init_vm - initializes a VM data structure
117 * @kvm: pointer to the KVM struct
118 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500119int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
120{
Marc Zyngier94d0e592016-10-18 18:37:49 +0100121 int ret, cpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500122
Marc Zyngierbca607e2018-10-01 13:40:36 +0100123 ret = kvm_arm_setup_stage2(kvm, type);
Suzuki K Poulose5b6c6742018-09-26 17:32:42 +0100124 if (ret)
125 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500126
Marc Zyngier94d0e592016-10-18 18:37:49 +0100127 kvm->arch.last_vcpu_ran = alloc_percpu(typeof(*kvm->arch.last_vcpu_ran));
128 if (!kvm->arch.last_vcpu_ran)
129 return -ENOMEM;
130
131 for_each_possible_cpu(cpu)
132 *per_cpu_ptr(kvm->arch.last_vcpu_ran, cpu) = -1;
133
Christoffer Dalld5d81842013-01-20 18:28:07 -0500134 ret = kvm_alloc_stage2_pgd(kvm);
135 if (ret)
136 goto out_fail_alloc;
137
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100138 ret = create_hyp_mappings(kvm, kvm + 1, PAGE_HYP);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500139 if (ret)
140 goto out_free_stage2_pgd;
141
Marc Zyngier6c3d63c2014-06-23 17:37:18 +0100142 kvm_vgic_early_init(kvm);
Christoffer Dalla1a64382013-11-16 10:51:25 -0800143
Christoffer Dalld5d81842013-01-20 18:28:07 -0500144 /* Mark the initial VMID generation invalid */
145 kvm->arch.vmid_gen = 0;
146
Andre Przywara3caa2d82014-06-02 16:26:01 +0200147 /* The maximum number of VCPUs is limited by the host's GIC model */
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300148 kvm->arch.max_vcpus = vgic_present ?
149 kvm_vgic_get_max_vcpus() : KVM_MAX_VCPUS;
Andre Przywara3caa2d82014-06-02 16:26:01 +0200150
Christoffer Dalld5d81842013-01-20 18:28:07 -0500151 return ret;
152out_free_stage2_pgd:
153 kvm_free_stage2_pgd(kvm);
154out_fail_alloc:
Marc Zyngier94d0e592016-10-18 18:37:49 +0100155 free_percpu(kvm->arch.last_vcpu_ran);
156 kvm->arch.last_vcpu_ran = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500157 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500158}
159
Luiz Capitulino235539b2016-09-07 14:47:23 -0400160bool kvm_arch_has_vcpu_debugfs(void)
161{
162 return false;
163}
164
165int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
166{
167 return 0;
168}
169
Souptick Joarder1499fa82018-04-19 00:49:58 +0530170vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500171{
172 return VM_FAULT_SIGBUS;
173}
174
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500175
Christoffer Dalld5d81842013-01-20 18:28:07 -0500176/**
177 * kvm_arch_destroy_vm - destroy the VM data structure
178 * @kvm: pointer to the KVM struct
179 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500180void kvm_arch_destroy_vm(struct kvm *kvm)
181{
182 int i;
183
Marc Zyngierb2c9a852017-10-27 15:28:34 +0100184 kvm_vgic_destroy(kvm);
185
Marc Zyngier94d0e592016-10-18 18:37:49 +0100186 free_percpu(kvm->arch.last_vcpu_ran);
187 kvm->arch.last_vcpu_ran = NULL;
188
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500189 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
190 if (kvm->vcpus[i]) {
191 kvm_arch_vcpu_free(kvm->vcpus[i]);
192 kvm->vcpus[i] = NULL;
193 }
194 }
Andrew Jones6b2ad812017-11-27 19:17:18 +0100195 atomic_set(&kvm->online_vcpus, 0);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500196}
197
Alexander Graf784aa3d2014-07-14 18:27:35 +0200198int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500199{
200 int r;
201 switch (ext) {
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500202 case KVM_CAP_IRQCHIP:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +0300203 r = vgic_present;
204 break;
Nikolay Nikolaevd44758c2015-01-24 12:00:02 +0000205 case KVM_CAP_IOEVENTFD:
Christoffer Dall73306722013-10-25 17:29:18 +0100206 case KVM_CAP_DEVICE_CTRL:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500207 case KVM_CAP_USER_MEMORY:
208 case KVM_CAP_SYNC_MMU:
209 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
210 case KVM_CAP_ONE_REG:
Marc Zyngieraa024c22013-01-20 18:28:13 -0500211 case KVM_CAP_ARM_PSCI:
Anup Patel4447a202014-04-29 11:24:25 +0530212 case KVM_CAP_ARM_PSCI_0_2:
Christoffer Dall98047882014-08-19 12:18:04 +0200213 case KVM_CAP_READONLY_MEM:
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000214 case KVM_CAP_MP_STATE:
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100215 case KVM_CAP_IMMEDIATE_EXIT:
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500216 r = 1;
217 break;
Christoffer Dall3401d5462013-01-23 13:18:04 -0500218 case KVM_CAP_ARM_SET_DEVICE_ADDR:
219 r = 1;
Marc Zyngierca46e102013-04-03 10:43:13 +0100220 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500221 case KVM_CAP_NR_VCPUS:
222 r = num_online_cpus();
223 break;
224 case KVM_CAP_MAX_VCPUS:
225 r = KVM_MAX_VCPUS;
226 break;
Linu Cherian7af4df82017-03-08 11:38:33 +0530227 case KVM_CAP_NR_MEMSLOTS:
228 r = KVM_USER_MEM_SLOTS;
229 break;
Vladimir Murzin29885092016-11-02 11:55:34 +0000230 case KVM_CAP_MSI_DEVID:
231 if (!kvm)
232 r = -EINVAL;
233 else
234 r = kvm->arch.vgic.msis_require_devid;
235 break;
Christoffer Dallf7214e62017-02-01 12:54:11 +0100236 case KVM_CAP_ARM_USER_IRQ:
237 /*
238 * 1: EL1_VTIMER, EL1_PTIMER, and PMU.
239 * (bump this number if adding more devices)
240 */
241 r = 1;
242 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500243 default:
Andre Przywarab46f01c2016-07-15 12:43:25 +0100244 r = kvm_arch_dev_ioctl_check_extension(kvm, ext);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500245 break;
246 }
247 return r;
248}
249
250long kvm_arch_dev_ioctl(struct file *filp,
251 unsigned int ioctl, unsigned long arg)
252{
253 return -EINVAL;
254}
255
Marc Orrd1e5b0e2018-05-15 04:37:37 -0700256struct kvm *kvm_arch_alloc_vm(void)
257{
258 if (!has_vhe())
259 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
260
261 return vzalloc(sizeof(struct kvm));
262}
263
264void kvm_arch_free_vm(struct kvm *kvm)
265{
266 if (!has_vhe())
267 kfree(kvm);
268 else
269 vfree(kvm);
270}
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500271
272struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
273{
274 int err;
275 struct kvm_vcpu *vcpu;
276
Christoffer Dall716139d2014-12-09 14:33:45 +0100277 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) {
278 err = -EBUSY;
279 goto out;
280 }
281
Andre Przywara3caa2d82014-06-02 16:26:01 +0200282 if (id >= kvm->arch.max_vcpus) {
283 err = -EINVAL;
284 goto out;
285 }
286
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500287 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
288 if (!vcpu) {
289 err = -ENOMEM;
290 goto out;
291 }
292
293 err = kvm_vcpu_init(vcpu, kvm, id);
294 if (err)
295 goto free_vcpu;
296
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100297 err = create_hyp_mappings(vcpu, vcpu + 1, PAGE_HYP);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500298 if (err)
299 goto vcpu_uninit;
300
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500301 return vcpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500302vcpu_uninit:
303 kvm_vcpu_uninit(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500304free_vcpu:
305 kmem_cache_free(kvm_vcpu_cache, vcpu);
306out:
307 return ERR_PTR(err);
308}
309
Dominik Dingel31928aa2014-12-04 15:47:07 +0100310void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500311{
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500312}
313
314void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
315{
Christoffer Dallf1d72312018-01-25 18:32:29 +0100316 if (vcpu->arch.has_run_once && unlikely(!irqchip_in_kernel(vcpu->kvm)))
317 static_branch_dec(&userspace_irqchip_in_use);
318
Christoffer Dalld5d81842013-01-20 18:28:07 -0500319 kvm_mmu_free_memory_caches(vcpu);
Marc Zyngier967f8422013-01-23 13:21:59 -0500320 kvm_timer_vcpu_terminate(vcpu);
Shannon Zhao5f0a7142015-09-11 15:18:05 +0800321 kvm_pmu_vcpu_destroy(vcpu);
James Morse591d2152016-06-08 17:24:45 +0100322 kvm_vcpu_uninit(vcpu);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500323 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500324}
325
326void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
327{
328 kvm_arch_vcpu_free(vcpu);
329}
330
331int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
332{
Christoffer Dall1c88ab72017-01-06 16:07:48 +0100333 return kvm_timer_is_pending(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500334}
335
Christoffer Dalld35268d2015-08-25 19:48:21 +0200336void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
337{
338 kvm_timer_schedule(vcpu);
Marc Zyngierdf9ba952017-10-27 15:28:49 +0100339 kvm_vgic_v4_enable_doorbell(vcpu);
Christoffer Dalld35268d2015-08-25 19:48:21 +0200340}
341
342void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
343{
344 kvm_timer_unschedule(vcpu);
Marc Zyngierdf9ba952017-10-27 15:28:49 +0100345 kvm_vgic_v4_disable_doorbell(vcpu);
Christoffer Dalld35268d2015-08-25 19:48:21 +0200346}
347
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500348int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
349{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500350 /* Force users to call KVM_ARM_VCPU_INIT */
351 vcpu->arch.target = -1;
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200352 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500353
Marc Zyngier967f8422013-01-23 13:21:59 -0500354 /* Set up the timer */
355 kvm_timer_vcpu_init(vcpu);
356
Alex Bennée84e690b2015-07-07 17:30:00 +0100357 kvm_arm_reset_debug_ptr(vcpu);
358
Christoffer Dall1aab6f42017-05-08 12:30:24 +0200359 return kvm_vgic_vcpu_init(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500360}
361
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500362void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
363{
Marc Zyngier94d0e592016-10-18 18:37:49 +0100364 int *last_ran;
365
366 last_ran = this_cpu_ptr(vcpu->kvm->arch.last_vcpu_ran);
367
368 /*
369 * We might get preempted before the vCPU actually runs, but
370 * over-invalidation doesn't affect correctness.
371 */
372 if (*last_ran != vcpu->vcpu_id) {
373 kvm_call_hyp(__kvm_tlb_flush_local_vmid, vcpu);
374 *last_ran = vcpu->vcpu_id;
375 }
376
Christoffer Dall86ce8532013-01-20 18:28:08 -0500377 vcpu->cpu = cpu;
James Morse36989e72018-01-08 15:38:04 +0000378 vcpu->arch.host_cpu_context = this_cpu_ptr(&kvm_host_cpu_state);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500379
Marc Zyngier1638a122013-01-21 19:36:11 -0500380 kvm_arm_set_running_vcpu(vcpu);
Christoffer Dall328e5662016-03-24 11:21:04 +0100381 kvm_vgic_load(vcpu);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200382 kvm_timer_vcpu_load(vcpu);
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200383 kvm_vcpu_load_sysregs(vcpu);
Dave Martine6b673b2018-04-06 14:55:59 +0100384 kvm_arch_vcpu_load_fp(vcpu);
Marc Zyngierde737082018-06-21 10:43:59 +0100385
386 if (single_task_running())
387 vcpu_clear_wfe_traps(vcpu);
388 else
389 vcpu_set_wfe_traps(vcpu);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500390}
391
392void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
393{
Dave Martine6b673b2018-04-06 14:55:59 +0100394 kvm_arch_vcpu_put_fp(vcpu);
Christoffer Dallbc192ce2017-10-10 10:21:18 +0200395 kvm_vcpu_put_sysregs(vcpu);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200396 kvm_timer_vcpu_put(vcpu);
Christoffer Dall328e5662016-03-24 11:21:04 +0100397 kvm_vgic_put(vcpu);
398
Christoffer Dalle9b152c2013-12-11 20:29:11 -0800399 vcpu->cpu = -1;
400
Marc Zyngier1638a122013-01-21 19:36:11 -0500401 kvm_arm_set_running_vcpu(NULL);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500402}
403
Andrew Jones424c9892017-06-04 14:43:57 +0200404static void vcpu_power_off(struct kvm_vcpu *vcpu)
405{
406 vcpu->arch.power_off = true;
Andrew Jones7b244e22017-06-04 14:43:58 +0200407 kvm_make_request(KVM_REQ_SLEEP, vcpu);
Andrew Jones424c9892017-06-04 14:43:57 +0200408 kvm_vcpu_kick(vcpu);
409}
410
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500411int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
412 struct kvm_mp_state *mp_state)
413{
Eric Auger37815282015-09-25 23:41:14 +0200414 if (vcpu->arch.power_off)
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000415 mp_state->mp_state = KVM_MP_STATE_STOPPED;
416 else
417 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
418
419 return 0;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500420}
421
422int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
423 struct kvm_mp_state *mp_state)
424{
Christoffer Dalle83dff52017-12-04 21:35:31 +0100425 int ret = 0;
426
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000427 switch (mp_state->mp_state) {
428 case KVM_MP_STATE_RUNNABLE:
Eric Auger37815282015-09-25 23:41:14 +0200429 vcpu->arch.power_off = false;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000430 break;
431 case KVM_MP_STATE_STOPPED:
Andrew Jones424c9892017-06-04 14:43:57 +0200432 vcpu_power_off(vcpu);
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000433 break;
434 default:
Christoffer Dalle83dff52017-12-04 21:35:31 +0100435 ret = -EINVAL;
Alex Bennéeecccf0c2015-03-13 17:02:52 +0000436 }
437
Christoffer Dalle83dff52017-12-04 21:35:31 +0100438 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500439}
440
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500441/**
442 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
443 * @v: The VCPU pointer
444 *
445 * If the guest CPU is not waiting for interrupts or an interrupt line is
446 * asserted, the CPU is by definition runnable.
447 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500448int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
449{
Christoffer Dall3df59d82017-08-03 12:09:05 +0200450 bool irq_lines = *vcpu_hcr(v) & (HCR_VI | HCR_VF);
451 return ((irq_lines || kvm_vgic_vcpu_pending_irq(v))
Eric Auger3b928302015-09-25 23:41:17 +0200452 && !v->arch.power_off && !v->arch.pause);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500453}
454
Longpeng(Mike)199b5762017-08-08 12:05:32 +0800455bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
456{
Longpeng(Mike)f01fbd22017-08-08 12:05:35 +0800457 return vcpu_mode_priv(vcpu);
Longpeng(Mike)199b5762017-08-08 12:05:32 +0800458}
459
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500460/* Just ensure a guest exit from a particular CPU */
461static void exit_vm_noop(void *info)
462{
463}
464
465void force_vm_exit(const cpumask_t *mask)
466{
Eric Auger898f9492016-03-07 23:50:36 +0700467 preempt_disable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500468 smp_call_function_many(mask, exit_vm_noop, NULL, true);
Eric Auger898f9492016-03-07 23:50:36 +0700469 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500470}
471
472/**
473 * need_new_vmid_gen - check that the VMID is still valid
Andrea Gelmini6a727b02016-05-21 13:48:35 +0200474 * @kvm: The VM's VMID to check
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500475 *
476 * return true if there is a new generation of VMIDs being used
477 *
478 * The hardware supports only 256 values with the value zero reserved for the
479 * host, so we check if an assigned value belongs to a previous generation,
480 * which which requires us to assign a new value. If we're the first to use a
481 * VMID for the new generation, we must flush necessary caches and TLBs on all
482 * CPUs.
483 */
484static bool need_new_vmid_gen(struct kvm *kvm)
485{
486 return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen));
487}
488
489/**
490 * update_vttbr - Update the VTTBR with a valid VMID before the guest runs
491 * @kvm The guest that we are about to run
492 *
493 * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the
494 * VM has a valid VMID, otherwise assigns a new one and flushes corresponding
495 * caches and TLBs.
496 */
497static void update_vttbr(struct kvm *kvm)
498{
499 phys_addr_t pgd_phys;
500 u64 vmid;
Marc Zyngierf0cf47d2018-04-04 14:48:24 +0100501 bool new_gen;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500502
Marc Zyngierf0cf47d2018-04-04 14:48:24 +0100503 read_lock(&kvm_vmid_lock);
504 new_gen = need_new_vmid_gen(kvm);
505 read_unlock(&kvm_vmid_lock);
506
507 if (!new_gen)
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500508 return;
509
Marc Zyngierf0cf47d2018-04-04 14:48:24 +0100510 write_lock(&kvm_vmid_lock);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500511
512 /*
513 * We need to re-check the vmid_gen here to ensure that if another vcpu
514 * already allocated a valid vmid for this vm, then this vcpu should
515 * use the same vmid.
516 */
517 if (!need_new_vmid_gen(kvm)) {
Marc Zyngierf0cf47d2018-04-04 14:48:24 +0100518 write_unlock(&kvm_vmid_lock);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500519 return;
520 }
521
522 /* First user of a new VMID generation? */
523 if (unlikely(kvm_next_vmid == 0)) {
524 atomic64_inc(&kvm_vmid_gen);
525 kvm_next_vmid = 1;
526
527 /*
528 * On SMP we know no other CPUs can use this CPU's or each
529 * other's VMID after force_vm_exit returns since the
530 * kvm_vmid_lock blocks them from reentry to the guest.
531 */
532 force_vm_exit(cpu_all_mask);
533 /*
534 * Now broadcast TLB + ICACHE invalidation over the inner
535 * shareable domain to make sure all data structures are
536 * clean.
537 */
538 kvm_call_hyp(__kvm_flush_vm_context);
539 }
540
541 kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen);
542 kvm->arch.vmid = kvm_next_vmid;
543 kvm_next_vmid++;
Vladimir Murzin20475f72015-11-16 11:28:18 +0000544 kvm_next_vmid &= (1 << kvm_vmid_bits) - 1;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500545
546 /* update vttbr to be used with the new vmid */
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000547 pgd_phys = virt_to_phys(kvm->arch.pgd);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100548 BUG_ON(pgd_phys & ~kvm_vttbr_baddr_mask(kvm));
Vladimir Murzin20475f72015-11-16 11:28:18 +0000549 vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK(kvm_vmid_bits);
Kristina Martsenko529c4b02017-12-13 17:07:18 +0000550 kvm->arch.vttbr = kvm_phys_to_vttbr(pgd_phys) | vmid;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500551
Marc Zyngierf0cf47d2018-04-04 14:48:24 +0100552 write_unlock(&kvm_vmid_lock);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500553}
554
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500555static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
556{
Christoffer Dall05971122014-12-12 21:19:23 +0100557 struct kvm *kvm = vcpu->kvm;
Christoffer Dall41a54482016-05-18 16:26:00 +0100558 int ret = 0;
Christoffer Dalle1ba0202013-09-23 14:55:55 -0700559
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500560 if (likely(vcpu->arch.has_run_once))
561 return 0;
562
563 vcpu->arch.has_run_once = true;
Marc Zyngieraa024c22013-01-20 18:28:13 -0500564
Christoffer Dall61bbe382017-10-27 19:57:51 +0200565 if (likely(irqchip_in_kernel(kvm))) {
566 /*
567 * Map the VGIC hardware resources before running a vcpu the
568 * first time on this VM.
569 */
570 if (unlikely(!vgic_ready(kvm))) {
571 ret = kvm_vgic_map_resources(kvm);
572 if (ret)
573 return ret;
574 }
575 } else {
576 /*
577 * Tell the rest of the code that there are userspace irqchip
578 * VMs in the wild.
579 */
580 static_branch_inc(&userspace_irqchip_in_use);
Marc Zyngier01ac5e32013-01-21 19:36:16 -0500581 }
582
Alexander Grafd9e13972016-09-27 21:08:06 +0200583 ret = kvm_timer_enable(vcpu);
Christoffer Dalla2befac2017-05-02 13:41:02 +0200584 if (ret)
585 return ret;
586
587 ret = kvm_arm_pmu_v3_enable(vcpu);
Christoffer Dall05971122014-12-12 21:19:23 +0100588
Christoffer Dall41a54482016-05-18 16:26:00 +0100589 return ret;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500590}
591
Eric Augerc1426e42015-03-04 11:14:34 +0100592bool kvm_arch_intc_initialized(struct kvm *kvm)
593{
594 return vgic_initialized(kvm);
595}
596
Christoffer Dallb13216c2016-04-27 10:28:00 +0100597void kvm_arm_halt_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200598{
599 int i;
600 struct kvm_vcpu *vcpu;
601
602 kvm_for_each_vcpu(i, vcpu, kvm)
603 vcpu->arch.pause = true;
Andrew Jones7b244e22017-06-04 14:43:58 +0200604 kvm_make_all_cpus_request(kvm, KVM_REQ_SLEEP);
Eric Auger3b928302015-09-25 23:41:17 +0200605}
606
Christoffer Dallb13216c2016-04-27 10:28:00 +0100607void kvm_arm_resume_guest(struct kvm *kvm)
Eric Auger3b928302015-09-25 23:41:17 +0200608{
609 int i;
610 struct kvm_vcpu *vcpu;
611
Christoffer Dallabd72292017-05-06 20:01:24 +0200612 kvm_for_each_vcpu(i, vcpu, kvm) {
613 vcpu->arch.pause = false;
Peter Zijlstrab3dae102018-06-12 10:34:52 +0200614 swake_up_one(kvm_arch_vcpu_wq(vcpu));
Christoffer Dallabd72292017-05-06 20:01:24 +0200615 }
Eric Auger3b928302015-09-25 23:41:17 +0200616}
617
Andrew Jones7b244e22017-06-04 14:43:58 +0200618static void vcpu_req_sleep(struct kvm_vcpu *vcpu)
Marc Zyngieraa024c22013-01-20 18:28:13 -0500619{
Marcelo Tosatti85773702016-02-19 09:46:39 +0100620 struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu);
Marc Zyngieraa024c22013-01-20 18:28:13 -0500621
Peter Zijlstrab3dae102018-06-12 10:34:52 +0200622 swait_event_interruptible_exclusive(*wq, ((!vcpu->arch.power_off) &&
Eric Auger3b928302015-09-25 23:41:17 +0200623 (!vcpu->arch.pause)));
Andrew Jones0592c002017-06-04 14:43:55 +0200624
Andrew Jones424c9892017-06-04 14:43:57 +0200625 if (vcpu->arch.power_off || vcpu->arch.pause) {
Andrew Jones0592c002017-06-04 14:43:55 +0200626 /* Awaken to handle a signal, request we sleep again later. */
Andrew Jones7b244e22017-06-04 14:43:58 +0200627 kvm_make_request(KVM_REQ_SLEEP, vcpu);
Andrew Jones0592c002017-06-04 14:43:55 +0200628 }
Marc Zyngieraa024c22013-01-20 18:28:13 -0500629}
630
Andre Przywarae8180dc2013-05-09 00:28:06 +0200631static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
632{
633 return vcpu->arch.target >= 0;
634}
635
Andrew Jones0592c002017-06-04 14:43:55 +0200636static void check_vcpu_requests(struct kvm_vcpu *vcpu)
637{
638 if (kvm_request_pending(vcpu)) {
Andrew Jones7b244e22017-06-04 14:43:58 +0200639 if (kvm_check_request(KVM_REQ_SLEEP, vcpu))
640 vcpu_req_sleep(vcpu);
Andrew Jones325f9c62017-06-04 14:43:59 +0200641
642 /*
643 * Clear IRQ_PENDING requests that were made to guarantee
644 * that a VCPU sees new virtual interrupts.
645 */
646 kvm_check_request(KVM_REQ_IRQ_PENDING, vcpu);
Andrew Jones0592c002017-06-04 14:43:55 +0200647 }
648}
649
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500650/**
651 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
652 * @vcpu: The VCPU pointer
653 * @run: The kvm_run structure pointer used for userspace state exchange
654 *
655 * This function is called through the VCPU_RUN ioctl called from user space. It
656 * will execute VM code in a loop until the time slice for the process is used
657 * or some emulation is needed from user space in which case the function will
658 * return with return value 0 and with the kvm_run structure filled in with the
659 * required data for the requested emulation.
660 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500661int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
662{
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500663 int ret;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500664
Andre Przywarae8180dc2013-05-09 00:28:06 +0200665 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500666 return -ENOEXEC;
667
668 ret = kvm_vcpu_first_run_init(vcpu);
669 if (ret)
Christoffer Dall829a5862017-11-29 16:37:53 +0100670 return ret;
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500671
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500672 if (run->exit_reason == KVM_EXIT_MMIO) {
673 ret = kvm_handle_mmio_return(vcpu, vcpu->run);
674 if (ret)
Christoffer Dall829a5862017-11-29 16:37:53 +0100675 return ret;
676 if (kvm_arm_handle_step_debug(vcpu, vcpu->run))
677 return 0;
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500678 }
679
Christoffer Dall829a5862017-11-29 16:37:53 +0100680 if (run->immediate_exit)
681 return -EINTR;
682
683 vcpu_load(vcpu);
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100684
Jan H. Schönherr20b70352017-11-24 22:39:01 +0100685 kvm_sigset_activate(vcpu);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500686
687 ret = 1;
688 run->exit_reason = KVM_EXIT_UNKNOWN;
689 while (ret > 0) {
690 /*
691 * Check conditions before entering the guest
692 */
693 cond_resched();
694
695 update_vttbr(vcpu->kvm);
696
Andrew Jones0592c002017-06-04 14:43:55 +0200697 check_vcpu_requests(vcpu);
698
Marc Zyngierabdf5842015-06-08 15:00:28 +0100699 /*
Marc Zyngierabdf5842015-06-08 15:00:28 +0100700 * Preparing the interrupts to be injected also
701 * involves poking the GIC, which must be done in a
702 * non-preemptible context.
703 */
704 preempt_disable();
Christoffer Dall328e5662016-03-24 11:21:04 +0100705
Shannon Zhaob02386e2016-02-26 19:29:19 +0800706 kvm_pmu_flush_hwstate(vcpu);
Christoffer Dall328e5662016-03-24 11:21:04 +0100707
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500708 local_irq_disable();
709
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500710 kvm_vgic_flush_hwstate(vcpu);
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500711
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500712 /*
Christoffer Dall61bbe382017-10-27 19:57:51 +0200713 * Exit if we have a signal pending so that we can deliver the
714 * signal to user space.
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500715 */
Christoffer Dall61bbe382017-10-27 19:57:51 +0200716 if (signal_pending(current)) {
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500717 ret = -EINTR;
718 run->exit_reason = KVM_EXIT_INTR;
719 }
720
Andrew Jones6a6d73b2017-06-04 14:43:54 +0200721 /*
Christoffer Dall61bbe382017-10-27 19:57:51 +0200722 * If we're using a userspace irqchip, then check if we need
723 * to tell a userspace irqchip about timer or PMU level
724 * changes and if so, exit to userspace (the actual level
725 * state gets updated in kvm_timer_update_run and
726 * kvm_pmu_update_run below).
727 */
728 if (static_branch_unlikely(&userspace_irqchip_in_use)) {
729 if (kvm_timer_should_notify_user(vcpu) ||
730 kvm_pmu_should_notify_user(vcpu)) {
731 ret = -EINTR;
732 run->exit_reason = KVM_EXIT_INTR;
733 }
734 }
735
736 /*
Andrew Jones6a6d73b2017-06-04 14:43:54 +0200737 * Ensure we set mode to IN_GUEST_MODE after we disable
738 * interrupts and before the final VCPU requests check.
739 * See the comment in kvm_vcpu_exiting_guest_mode() and
740 * Documentation/virtual/kvm/vcpu-requests.rst
741 */
742 smp_store_mb(vcpu->mode, IN_GUEST_MODE);
743
Eric Auger101d3da2015-09-25 23:41:16 +0200744 if (ret <= 0 || need_new_vmid_gen(vcpu->kvm) ||
Andrew Jones424c9892017-06-04 14:43:57 +0200745 kvm_request_pending(vcpu)) {
Andrew Jones6a6d73b2017-06-04 14:43:54 +0200746 vcpu->mode = OUTSIDE_GUEST_MODE;
Christoffer Dall771621b2017-10-04 23:42:32 +0200747 isb(); /* Ensure work in x_flush_hwstate is committed */
Shannon Zhaob02386e2016-02-26 19:29:19 +0800748 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dall61bbe382017-10-27 19:57:51 +0200749 if (static_branch_unlikely(&userspace_irqchip_in_use))
750 kvm_timer_sync_hwstate(vcpu);
Marc Zyngier1a89dd92013-01-21 19:36:12 -0500751 kvm_vgic_sync_hwstate(vcpu);
Christoffer Dallee9bb9a2016-10-16 20:24:30 +0200752 local_irq_enable();
Marc Zyngierabdf5842015-06-08 15:00:28 +0100753 preempt_enable();
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500754 continue;
755 }
756
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100757 kvm_arm_setup_debug(vcpu);
758
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500759 /**************************************************************
760 * Enter the guest
761 */
762 trace_kvm_entry(*vcpu_pc(vcpu));
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200763 guest_enter_irqoff();
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200764
765 if (has_vhe()) {
James Morse4f5abad2018-01-15 19:39:00 +0000766 kvm_arm_vhe_guest_enter();
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200767 ret = kvm_vcpu_run_vhe(vcpu);
James Morse4f5abad2018-01-15 19:39:00 +0000768 kvm_arm_vhe_guest_exit();
Christoffer Dall3f5c90b2017-10-03 14:02:12 +0200769 } else {
770 ret = kvm_call_hyp(__kvm_vcpu_run_nvhe, vcpu);
771 }
772
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500773 vcpu->mode = OUTSIDE_GUEST_MODE;
Amit Tomarb19e6892015-11-26 10:09:43 +0000774 vcpu->stat.exits++;
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100775 /*
776 * Back from guest
777 *************************************************************/
778
Alex Bennée56c7f5e2015-07-07 17:29:56 +0100779 kvm_arm_clear_debug(vcpu);
780
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500781 /*
Christoffer Dallb103cc32016-10-16 20:30:38 +0200782 * We must sync the PMU state before the vgic state so
Christoffer Dallee9bb9a2016-10-16 20:24:30 +0200783 * that the vgic can properly sample the updated state of the
784 * interrupt line.
785 */
786 kvm_pmu_sync_hwstate(vcpu);
Christoffer Dallee9bb9a2016-10-16 20:24:30 +0200787
Christoffer Dallb103cc32016-10-16 20:30:38 +0200788 /*
789 * Sync the vgic state before syncing the timer state because
790 * the timer code needs to know if the virtual timer
791 * interrupts are active.
792 */
Christoffer Dallee9bb9a2016-10-16 20:24:30 +0200793 kvm_vgic_sync_hwstate(vcpu);
794
795 /*
Christoffer Dallb103cc32016-10-16 20:30:38 +0200796 * Sync the timer hardware state before enabling interrupts as
797 * we don't want vtimer interrupts to race with syncing the
798 * timer virtual interrupt state.
799 */
Christoffer Dall61bbe382017-10-27 19:57:51 +0200800 if (static_branch_unlikely(&userspace_irqchip_in_use))
801 kvm_timer_sync_hwstate(vcpu);
Christoffer Dallb103cc32016-10-16 20:30:38 +0200802
Dave Martine6b673b2018-04-06 14:55:59 +0100803 kvm_arch_vcpu_ctxsync_fp(vcpu);
804
Christoffer Dallb103cc32016-10-16 20:30:38 +0200805 /*
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500806 * We may have taken a host interrupt in HYP mode (ie
807 * while executing the guest). This interrupt is still
808 * pending, as we haven't serviced it yet!
809 *
810 * We're now back in SVC mode, with interrupts
811 * disabled. Enabling the interrupts now will have
812 * the effect of taking the interrupt again, in SVC
813 * mode this time.
814 */
815 local_irq_enable();
816
817 /*
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200818 * We do local_irq_enable() before calling guest_exit() so
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100819 * that if a timer interrupt hits while running the guest we
820 * account that tick as being spent in the guest. We enable
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200821 * preemption after calling guest_exit() so that if we get
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100822 * preempted we make sure ticks after that is not counted as
823 * guest time.
824 */
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200825 guest_exit();
Christoffer Dallb5905dc2015-08-30 15:55:22 +0200826 trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu));
Christoffer Dall1b3d5462015-05-28 19:49:10 +0100827
James Morse3368bd82018-01-15 19:39:04 +0000828 /* Exit types that need handling before we can be preempted */
829 handle_exit_early(vcpu, run, ret);
830
Marc Zyngierabdf5842015-06-08 15:00:28 +0100831 preempt_enable();
832
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500833 ret = handle_exit(vcpu, run, ret);
834 }
835
Alexander Grafd9e13972016-09-27 21:08:06 +0200836 /* Tell userspace about in-kernel device output levels */
Christoffer Dall3dbbdf72017-02-01 12:51:52 +0100837 if (unlikely(!irqchip_in_kernel(vcpu->kvm))) {
838 kvm_timer_update_run(vcpu);
839 kvm_pmu_update_run(vcpu);
840 }
Alexander Grafd9e13972016-09-27 21:08:06 +0200841
Jan H. Schönherr20b70352017-11-24 22:39:01 +0100842 kvm_sigset_deactivate(vcpu);
843
Christoffer Dallaccb7572017-12-04 21:35:25 +0100844 vcpu_put(vcpu);
Christoffer Dallf7ed45b2013-01-20 18:47:42 -0500845 return ret;
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500846}
847
Christoffer Dall86ce8532013-01-20 18:28:08 -0500848static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
849{
850 int bit_index;
851 bool set;
Christoffer Dall3df59d82017-08-03 12:09:05 +0200852 unsigned long *hcr;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500853
854 if (number == KVM_ARM_IRQ_CPU_IRQ)
855 bit_index = __ffs(HCR_VI);
856 else /* KVM_ARM_IRQ_CPU_FIQ */
857 bit_index = __ffs(HCR_VF);
858
Christoffer Dall3df59d82017-08-03 12:09:05 +0200859 hcr = vcpu_hcr(vcpu);
Christoffer Dall86ce8532013-01-20 18:28:08 -0500860 if (level)
Christoffer Dall3df59d82017-08-03 12:09:05 +0200861 set = test_and_set_bit(bit_index, hcr);
Christoffer Dall86ce8532013-01-20 18:28:08 -0500862 else
Christoffer Dall3df59d82017-08-03 12:09:05 +0200863 set = test_and_clear_bit(bit_index, hcr);
Christoffer Dall86ce8532013-01-20 18:28:08 -0500864
865 /*
866 * If we didn't change anything, no need to wake up or kick other CPUs
867 */
868 if (set == level)
869 return 0;
870
871 /*
872 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
873 * trigger a world-switch round on the running physical CPU to set the
874 * virtual IRQ/FIQ fields in the HCR appropriately.
875 */
Andrew Jones325f9c62017-06-04 14:43:59 +0200876 kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
Christoffer Dall86ce8532013-01-20 18:28:08 -0500877 kvm_vcpu_kick(vcpu);
878
879 return 0;
880}
881
Alexander Graf79558f12013-04-16 19:21:41 +0200882int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
883 bool line_status)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500884{
885 u32 irq = irq_level->irq;
886 unsigned int irq_type, vcpu_idx, irq_num;
887 int nrcpus = atomic_read(&kvm->online_vcpus);
888 struct kvm_vcpu *vcpu = NULL;
889 bool level = irq_level->level;
890
891 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
892 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
893 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
894
895 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
896
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500897 switch (irq_type) {
898 case KVM_ARM_IRQ_TYPE_CPU:
899 if (irqchip_in_kernel(kvm))
900 return -ENXIO;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500901
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500902 if (vcpu_idx >= nrcpus)
903 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500904
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500905 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
906 if (!vcpu)
907 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500908
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500909 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
910 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500911
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500912 return vcpu_interrupt_line(vcpu, irq_num, level);
913 case KVM_ARM_IRQ_TYPE_PPI:
914 if (!irqchip_in_kernel(kvm))
915 return -ENXIO;
916
917 if (vcpu_idx >= nrcpus)
918 return -EINVAL;
919
920 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
921 if (!vcpu)
922 return -EINVAL;
923
924 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
925 return -EINVAL;
926
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200927 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level, NULL);
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500928 case KVM_ARM_IRQ_TYPE_SPI:
929 if (!irqchip_in_kernel(kvm))
930 return -ENXIO;
931
Andre Przywarafd1d0dd2015-04-10 16:17:59 +0100932 if (irq_num < VGIC_NR_PRIVATE_IRQS)
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500933 return -EINVAL;
934
Christoffer Dallcb3f0ad2017-05-16 12:41:18 +0200935 return kvm_vgic_inject_irq(kvm, 0, irq_num, level, NULL);
Marc Zyngier5863c2c2013-01-21 19:36:15 -0500936 }
937
938 return -EINVAL;
Christoffer Dall86ce8532013-01-20 18:28:08 -0500939}
940
Christoffer Dallf7fa034d2014-10-16 16:40:53 +0200941static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
942 const struct kvm_vcpu_init *init)
943{
944 unsigned int i;
945 int phys_target = kvm_target_cpu();
946
947 if (init->target != phys_target)
948 return -EINVAL;
949
950 /*
951 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
952 * use the same target.
953 */
954 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
955 return -EINVAL;
956
957 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
958 for (i = 0; i < sizeof(init->features) * 8; i++) {
959 bool set = (init->features[i / 32] & (1 << (i % 32)));
960
961 if (set && i >= KVM_VCPU_MAX_FEATURES)
962 return -ENOENT;
963
964 /*
965 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
966 * use the same feature set.
967 */
968 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
969 test_bit(i, vcpu->arch.features) != set)
970 return -EINVAL;
971
972 if (set)
973 set_bit(i, vcpu->arch.features);
974 }
975
976 vcpu->arch.target = phys_target;
977
978 /* Now we know what it is, we can reset it. */
979 return kvm_reset_vcpu(vcpu);
980}
981
982
Christoffer Dall478a8232013-11-19 17:43:19 -0800983static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
984 struct kvm_vcpu_init *init)
985{
986 int ret;
987
988 ret = kvm_vcpu_set_target(vcpu, init);
989 if (ret)
990 return ret;
991
Christoffer Dall957db102014-11-27 10:35:03 +0100992 /*
993 * Ensure a rebooted VM will fault in RAM pages and detect if the
994 * guest MMU is turned off and flush the caches as needed.
995 */
996 if (vcpu->arch.has_run_once)
997 stage2_unmap_vm(vcpu->kvm);
998
Christoffer Dallb856a592014-10-16 17:21:16 +0200999 vcpu_reset_hcr(vcpu);
1000
Christoffer Dall478a8232013-11-19 17:43:19 -08001001 /*
Eric Auger37815282015-09-25 23:41:14 +02001002 * Handle the "start in power-off" case.
Christoffer Dall478a8232013-11-19 17:43:19 -08001003 */
Christoffer Dall03f1d4c2014-12-02 15:27:51 +01001004 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
Andrew Jones424c9892017-06-04 14:43:57 +02001005 vcpu_power_off(vcpu);
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +02001006 else
Eric Auger37815282015-09-25 23:41:14 +02001007 vcpu->arch.power_off = false;
Christoffer Dall478a8232013-11-19 17:43:19 -08001008
1009 return 0;
1010}
1011
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001012static int kvm_arm_vcpu_set_attr(struct kvm_vcpu *vcpu,
1013 struct kvm_device_attr *attr)
1014{
1015 int ret = -ENXIO;
1016
1017 switch (attr->group) {
1018 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +08001019 ret = kvm_arm_vcpu_arch_set_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001020 break;
1021 }
1022
1023 return ret;
1024}
1025
1026static int kvm_arm_vcpu_get_attr(struct kvm_vcpu *vcpu,
1027 struct kvm_device_attr *attr)
1028{
1029 int ret = -ENXIO;
1030
1031 switch (attr->group) {
1032 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +08001033 ret = kvm_arm_vcpu_arch_get_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001034 break;
1035 }
1036
1037 return ret;
1038}
1039
1040static int kvm_arm_vcpu_has_attr(struct kvm_vcpu *vcpu,
1041 struct kvm_device_attr *attr)
1042{
1043 int ret = -ENXIO;
1044
1045 switch (attr->group) {
1046 default:
Shannon Zhaobb0c70b2016-01-11 21:35:32 +08001047 ret = kvm_arm_vcpu_arch_has_attr(vcpu, attr);
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001048 break;
1049 }
1050
1051 return ret;
1052}
1053
James Morse539aee02018-07-19 16:24:24 +01001054static int kvm_arm_vcpu_get_events(struct kvm_vcpu *vcpu,
1055 struct kvm_vcpu_events *events)
1056{
1057 memset(events, 0, sizeof(*events));
1058
1059 return __kvm_arm_vcpu_get_events(vcpu, events);
1060}
1061
1062static int kvm_arm_vcpu_set_events(struct kvm_vcpu *vcpu,
1063 struct kvm_vcpu_events *events)
1064{
1065 int i;
1066
1067 /* check whether the reserved field is zero */
1068 for (i = 0; i < ARRAY_SIZE(events->reserved); i++)
1069 if (events->reserved[i])
1070 return -EINVAL;
1071
1072 /* check whether the pad field is zero */
1073 for (i = 0; i < ARRAY_SIZE(events->exception.pad); i++)
1074 if (events->exception.pad[i])
1075 return -EINVAL;
1076
1077 return __kvm_arm_vcpu_set_events(vcpu, events);
1078}
James Morse539aee02018-07-19 16:24:24 +01001079
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001080long kvm_arch_vcpu_ioctl(struct file *filp,
1081 unsigned int ioctl, unsigned long arg)
1082{
1083 struct kvm_vcpu *vcpu = filp->private_data;
1084 void __user *argp = (void __user *)arg;
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001085 struct kvm_device_attr attr;
Christoffer Dall9b0624712017-12-04 21:35:36 +01001086 long r;
1087
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001088 switch (ioctl) {
1089 case KVM_ARM_VCPU_INIT: {
1090 struct kvm_vcpu_init init;
1091
Christoffer Dall9b0624712017-12-04 21:35:36 +01001092 r = -EFAULT;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001093 if (copy_from_user(&init, argp, sizeof(init)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001094 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001095
Christoffer Dall9b0624712017-12-04 21:35:36 +01001096 r = kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
1097 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001098 }
1099 case KVM_SET_ONE_REG:
1100 case KVM_GET_ONE_REG: {
1101 struct kvm_one_reg reg;
Andre Przywarae8180dc2013-05-09 00:28:06 +02001102
Christoffer Dall9b0624712017-12-04 21:35:36 +01001103 r = -ENOEXEC;
Andre Przywarae8180dc2013-05-09 00:28:06 +02001104 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001105 break;
Andre Przywarae8180dc2013-05-09 00:28:06 +02001106
Christoffer Dall9b0624712017-12-04 21:35:36 +01001107 r = -EFAULT;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001108 if (copy_from_user(&reg, argp, sizeof(reg)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001109 break;
1110
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001111 if (ioctl == KVM_SET_ONE_REG)
Christoffer Dall9b0624712017-12-04 21:35:36 +01001112 r = kvm_arm_set_reg(vcpu, &reg);
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001113 else
Christoffer Dall9b0624712017-12-04 21:35:36 +01001114 r = kvm_arm_get_reg(vcpu, &reg);
1115 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001116 }
1117 case KVM_GET_REG_LIST: {
1118 struct kvm_reg_list __user *user_list = argp;
1119 struct kvm_reg_list reg_list;
1120 unsigned n;
1121
Christoffer Dall9b0624712017-12-04 21:35:36 +01001122 r = -ENOEXEC;
Andre Przywarae8180dc2013-05-09 00:28:06 +02001123 if (unlikely(!kvm_vcpu_initialized(vcpu)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001124 break;
Andre Przywarae8180dc2013-05-09 00:28:06 +02001125
Christoffer Dall9b0624712017-12-04 21:35:36 +01001126 r = -EFAULT;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001127 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001128 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001129 n = reg_list.n;
1130 reg_list.n = kvm_arm_num_regs(vcpu);
1131 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001132 break;
1133 r = -E2BIG;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001134 if (n < reg_list.n)
Christoffer Dall9b0624712017-12-04 21:35:36 +01001135 break;
1136 r = kvm_arm_copy_reg_indices(vcpu, user_list->reg);
1137 break;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001138 }
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001139 case KVM_SET_DEVICE_ATTR: {
Christoffer Dall9b0624712017-12-04 21:35:36 +01001140 r = -EFAULT;
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001141 if (copy_from_user(&attr, argp, sizeof(attr)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001142 break;
1143 r = kvm_arm_vcpu_set_attr(vcpu, &attr);
1144 break;
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001145 }
1146 case KVM_GET_DEVICE_ATTR: {
Christoffer Dall9b0624712017-12-04 21:35:36 +01001147 r = -EFAULT;
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001148 if (copy_from_user(&attr, argp, sizeof(attr)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001149 break;
1150 r = kvm_arm_vcpu_get_attr(vcpu, &attr);
1151 break;
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001152 }
1153 case KVM_HAS_DEVICE_ATTR: {
Christoffer Dall9b0624712017-12-04 21:35:36 +01001154 r = -EFAULT;
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001155 if (copy_from_user(&attr, argp, sizeof(attr)))
Christoffer Dall9b0624712017-12-04 21:35:36 +01001156 break;
1157 r = kvm_arm_vcpu_has_attr(vcpu, &attr);
1158 break;
Shannon Zhaof577f6c2016-01-11 20:56:17 +08001159 }
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001160 case KVM_GET_VCPU_EVENTS: {
1161 struct kvm_vcpu_events events;
1162
1163 if (kvm_arm_vcpu_get_events(vcpu, &events))
1164 return -EINVAL;
1165
1166 if (copy_to_user(argp, &events, sizeof(events)))
1167 return -EFAULT;
1168
1169 return 0;
1170 }
1171 case KVM_SET_VCPU_EVENTS: {
1172 struct kvm_vcpu_events events;
1173
1174 if (copy_from_user(&events, argp, sizeof(events)))
1175 return -EFAULT;
1176
1177 return kvm_arm_vcpu_set_events(vcpu, &events);
1178 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001179 default:
Christoffer Dall9b0624712017-12-04 21:35:36 +01001180 r = -EINVAL;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001181 }
Christoffer Dall9b0624712017-12-04 21:35:36 +01001182
Christoffer Dall9b0624712017-12-04 21:35:36 +01001183 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001184}
1185
Mario Smarduch53c810c2015-01-15 15:58:57 -08001186/**
1187 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
1188 * @kvm: kvm instance
1189 * @log: slot id and address to which we copy the log
1190 *
1191 * Steps 1-4 below provide general overview of dirty page logging. See
1192 * kvm_get_dirty_log_protect() function description for additional details.
1193 *
1194 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
1195 * always flush the TLB (step 4) even if previous step failed and the dirty
1196 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
1197 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
1198 * writes will be marked dirty for next log read.
1199 *
1200 * 1. Take a snapshot of the bit and clear it if needed.
1201 * 2. Write protect the corresponding page.
1202 * 3. Copy the snapshot to the userspace.
1203 * 4. Flush TLB's if needed.
1204 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001205int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
1206{
Mario Smarduch53c810c2015-01-15 15:58:57 -08001207 bool is_dirty = false;
1208 int r;
1209
1210 mutex_lock(&kvm->slots_lock);
1211
1212 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
1213
1214 if (is_dirty)
1215 kvm_flush_remote_tlbs(kvm);
1216
1217 mutex_unlock(&kvm->slots_lock);
1218 return r;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001219}
1220
Christoffer Dall3401d5462013-01-23 13:18:04 -05001221static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
1222 struct kvm_arm_device_addr *dev_addr)
1223{
Christoffer Dall330690c2013-01-21 19:36:13 -05001224 unsigned long dev_id, type;
1225
1226 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
1227 KVM_ARM_DEVICE_ID_SHIFT;
1228 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
1229 KVM_ARM_DEVICE_TYPE_SHIFT;
1230
1231 switch (dev_id) {
1232 case KVM_ARM_DEVICE_VGIC_V2:
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001233 if (!vgic_present)
1234 return -ENXIO;
Christoffer Dallce01e4e2013-09-23 14:55:56 -07001235 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
Christoffer Dall330690c2013-01-21 19:36:13 -05001236 default:
1237 return -ENODEV;
1238 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001239}
1240
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001241long kvm_arch_vm_ioctl(struct file *filp,
1242 unsigned int ioctl, unsigned long arg)
1243{
Christoffer Dall3401d5462013-01-23 13:18:04 -05001244 struct kvm *kvm = filp->private_data;
1245 void __user *argp = (void __user *)arg;
1246
1247 switch (ioctl) {
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001248 case KVM_CREATE_IRQCHIP: {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02001249 int ret;
Pavel Fedinc7da6fa2015-12-18 14:38:43 +03001250 if (!vgic_present)
1251 return -ENXIO;
Christoffer Dalla28ebea2016-08-09 19:13:01 +02001252 mutex_lock(&kvm->lock);
1253 ret = kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
1254 mutex_unlock(&kvm->lock);
1255 return ret;
Marc Zyngier5863c2c2013-01-21 19:36:15 -05001256 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001257 case KVM_ARM_SET_DEVICE_ADDR: {
1258 struct kvm_arm_device_addr dev_addr;
1259
1260 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
1261 return -EFAULT;
1262 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
1263 }
Anup Patel42c4e0c2013-09-30 14:20:07 +05301264 case KVM_ARM_PREFERRED_TARGET: {
1265 int err;
1266 struct kvm_vcpu_init init;
1267
1268 err = kvm_vcpu_preferred_target(&init);
1269 if (err)
1270 return err;
1271
1272 if (copy_to_user(argp, &init, sizeof(init)))
1273 return -EFAULT;
1274
1275 return 0;
1276 }
Christoffer Dall3401d5462013-01-23 13:18:04 -05001277 default:
1278 return -EINVAL;
1279 }
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001280}
1281
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001282static void cpu_init_hyp_mode(void *dummy)
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001283{
Marc Zyngierdac288f2013-05-14 12:11:37 +01001284 phys_addr_t pgd_ptr;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001285 unsigned long hyp_stack_ptr;
1286 unsigned long stack_page;
1287 unsigned long vector_ptr;
1288
1289 /* Switch from the HYP stub to our own HYP init vector */
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001290 __hyp_set_vectors(kvm_get_idmap_vector());
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001291
Marc Zyngierdac288f2013-05-14 12:11:37 +01001292 pgd_ptr = kvm_mmu_get_httbr();
Christoph Lameter1436c1a2013-10-21 13:17:08 +01001293 stack_page = __this_cpu_read(kvm_arm_hyp_stack_page);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001294 hyp_stack_ptr = stack_page + PAGE_SIZE;
Marc Zyngier6840bdd2018-01-03 16:38:35 +00001295 vector_ptr = (unsigned long)kvm_get_hyp_vector();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001296
Marc Zyngier12fda812016-06-30 18:40:45 +01001297 __cpu_init_hyp_mode(pgd_ptr, hyp_stack_ptr, vector_ptr);
Marc Zyngier35a24912016-02-01 17:54:35 +00001298 __cpu_init_stage2();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001299}
1300
Marc Zyngier47eb3cb2017-04-03 19:38:01 +01001301static void cpu_hyp_reset(void)
1302{
1303 if (!is_kernel_in_hyp_mode())
1304 __hyp_reset_vectors();
1305}
1306
James Morse5f5560b2016-03-30 18:33:04 +01001307static void cpu_hyp_reinit(void)
1308{
Marc Zyngier47eb3cb2017-04-03 19:38:01 +01001309 cpu_hyp_reset();
1310
Marc Zyngier9d47bb02018-10-01 13:41:32 +01001311 if (is_kernel_in_hyp_mode())
Hu Huajun02d50cd2017-06-12 22:37:48 +08001312 kvm_timer_init_vhe();
Marc Zyngier9d47bb02018-10-01 13:41:32 +01001313 else
Marc Zyngier47eb3cb2017-04-03 19:38:01 +01001314 cpu_init_hyp_mode(NULL);
Christoffer Dall5b0d2cc2017-03-18 13:56:56 +01001315
Mark Rutlandda5a3ce2018-10-17 17:42:10 +01001316 kvm_arm_init_debug();
1317
Christoffer Dall5b0d2cc2017-03-18 13:56:56 +01001318 if (vgic_present)
1319 kvm_vgic_init_cpu_hardware();
James Morse5f5560b2016-03-30 18:33:04 +01001320}
1321
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001322static void _kvm_arch_hardware_enable(void *discard)
1323{
1324 if (!__this_cpu_read(kvm_arm_hardware_enabled)) {
1325 cpu_hyp_reinit();
1326 __this_cpu_write(kvm_arm_hardware_enabled, 1);
1327 }
1328}
1329
1330int kvm_arch_hardware_enable(void)
1331{
1332 _kvm_arch_hardware_enable(NULL);
1333 return 0;
1334}
1335
1336static void _kvm_arch_hardware_disable(void *discard)
1337{
1338 if (__this_cpu_read(kvm_arm_hardware_enabled)) {
1339 cpu_hyp_reset();
1340 __this_cpu_write(kvm_arm_hardware_enabled, 0);
1341 }
1342}
1343
1344void kvm_arch_hardware_disable(void)
1345{
1346 _kvm_arch_hardware_disable(NULL);
1347}
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001348
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001349#ifdef CONFIG_CPU_PM
1350static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
1351 unsigned long cmd,
1352 void *v)
1353{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001354 /*
1355 * kvm_arm_hardware_enabled is left with its old value over
1356 * PM_ENTER->PM_EXIT. It is used to indicate PM_EXIT should
1357 * re-enable hyp.
1358 */
1359 switch (cmd) {
1360 case CPU_PM_ENTER:
1361 if (__this_cpu_read(kvm_arm_hardware_enabled))
1362 /*
1363 * don't update kvm_arm_hardware_enabled here
1364 * so that the hardware will be re-enabled
1365 * when we resume. See below.
1366 */
1367 cpu_hyp_reset();
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001368
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001369 return NOTIFY_OK;
James Morse58d6b152018-01-22 18:19:06 +00001370 case CPU_PM_ENTER_FAILED:
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001371 case CPU_PM_EXIT:
1372 if (__this_cpu_read(kvm_arm_hardware_enabled))
1373 /* The hardware was enabled before suspend. */
1374 cpu_hyp_reinit();
1375
1376 return NOTIFY_OK;
1377
1378 default:
1379 return NOTIFY_DONE;
1380 }
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001381}
1382
1383static struct notifier_block hyp_init_cpu_pm_nb = {
1384 .notifier_call = hyp_init_cpu_pm_notifier,
1385};
1386
1387static void __init hyp_cpu_pm_init(void)
1388{
1389 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
1390}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001391static void __init hyp_cpu_pm_exit(void)
1392{
1393 cpu_pm_unregister_notifier(&hyp_init_cpu_pm_nb);
1394}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001395#else
1396static inline void hyp_cpu_pm_init(void)
1397{
1398}
Sudeep Holla06a71a22016-04-04 14:46:51 +01001399static inline void hyp_cpu_pm_exit(void)
1400{
1401}
Lorenzo Pieralisi1fcf7ce2013-08-05 15:04:46 +01001402#endif
1403
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001404static int init_common_resources(void)
1405{
Vladimir Murzin61349932016-09-22 09:18:01 +01001406 /* set size of VMID supported by CPU */
1407 kvm_vmid_bits = kvm_get_vmid_bits();
1408 kvm_info("%d-bit VMID\n", kvm_vmid_bits);
1409
Suzuki K Poulose0f62f0e2018-09-26 17:32:52 +01001410 kvm_set_ipa_limit();
1411
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001412 return 0;
1413}
1414
1415static int init_subsystems(void)
1416{
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001417 int err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001418
1419 /*
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001420 * Enable hardware so that subsystem initialisation can access EL2.
James Morse5f5560b2016-03-30 18:33:04 +01001421 */
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001422 on_each_cpu(_kvm_arch_hardware_enable, NULL, 1);
James Morse5f5560b2016-03-30 18:33:04 +01001423
1424 /*
1425 * Register CPU lower-power notifier
1426 */
1427 hyp_cpu_pm_init();
1428
1429 /*
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001430 * Init HYP view of VGIC
1431 */
1432 err = kvm_vgic_hyp_init();
1433 switch (err) {
1434 case 0:
1435 vgic_present = true;
1436 break;
1437 case -ENODEV:
1438 case -ENXIO:
1439 vgic_present = false;
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001440 err = 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001441 break;
1442 default:
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001443 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001444 }
1445
1446 /*
1447 * Init HYP architected timer support
1448 */
Marc Zyngierf384dcf2017-12-07 11:46:15 +00001449 err = kvm_timer_hyp_init(vgic_present);
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001450 if (err)
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001451 goto out;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001452
1453 kvm_perf_init();
1454 kvm_coproc_table_init();
1455
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001456out:
1457 on_each_cpu(_kvm_arch_hardware_disable, NULL, 1);
1458
1459 return err;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001460}
1461
1462static void teardown_hyp_mode(void)
1463{
1464 int cpu;
1465
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001466 free_hyp_pgds();
1467 for_each_possible_cpu(cpu)
1468 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
Sudeep Holla06a71a22016-04-04 14:46:51 +01001469 hyp_cpu_pm_exit();
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001470}
1471
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001472/**
1473 * Inits Hyp-mode on all online CPUs
1474 */
1475static int init_hyp_mode(void)
1476{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001477 int cpu;
1478 int err = 0;
1479
1480 /*
1481 * Allocate Hyp PGD and setup Hyp identity mapping
1482 */
1483 err = kvm_mmu_init();
1484 if (err)
1485 goto out_err;
1486
1487 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001488 * Allocate stack pages for Hypervisor-mode
1489 */
1490 for_each_possible_cpu(cpu) {
1491 unsigned long stack_page;
1492
1493 stack_page = __get_free_page(GFP_KERNEL);
1494 if (!stack_page) {
1495 err = -ENOMEM;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001496 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001497 }
1498
1499 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
1500 }
1501
1502 /*
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001503 * Map the Hyp-code called directly from the host
1504 */
Linus Torvalds588ab3f2016-03-17 20:03:47 -07001505 err = create_hyp_mappings(kvm_ksym_ref(__hyp_text_start),
Marc Zyngier59002702016-06-13 15:00:48 +01001506 kvm_ksym_ref(__hyp_text_end), PAGE_HYP_EXEC);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001507 if (err) {
1508 kvm_err("Cannot map world-switch code\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001509 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001510 }
1511
Ard Biesheuvela0bf9772016-02-16 13:52:39 +01001512 err = create_hyp_mappings(kvm_ksym_ref(__start_rodata),
Marc Zyngier74a6b882016-06-13 15:00:47 +01001513 kvm_ksym_ref(__end_rodata), PAGE_HYP_RO);
Marc Zyngier910917b2015-10-27 12:18:48 +00001514 if (err) {
1515 kvm_err("Cannot map rodata section\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001516 goto out_err;
Marc Zyngier910917b2015-10-27 12:18:48 +00001517 }
1518
Marc Zyngierc8ea0392016-10-20 10:17:21 +01001519 err = create_hyp_mappings(kvm_ksym_ref(__bss_start),
1520 kvm_ksym_ref(__bss_stop), PAGE_HYP_RO);
1521 if (err) {
1522 kvm_err("Cannot map bss section\n");
1523 goto out_err;
1524 }
1525
Marc Zyngier6840bdd2018-01-03 16:38:35 +00001526 err = kvm_map_vectors();
1527 if (err) {
1528 kvm_err("Cannot map vectors\n");
1529 goto out_err;
1530 }
1531
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001532 /*
1533 * Map the Hyp stack pages
1534 */
1535 for_each_possible_cpu(cpu) {
1536 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
Marc Zyngierc8dddec2016-06-13 15:00:45 +01001537 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE,
1538 PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001539
1540 if (err) {
1541 kvm_err("Cannot map hyp stack\n");
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001542 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001543 }
1544 }
1545
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001546 for_each_possible_cpu(cpu) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001547 kvm_cpu_context_t *cpu_ctxt;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001548
James Morse36989e72018-01-08 15:38:04 +00001549 cpu_ctxt = per_cpu_ptr(&kvm_host_cpu_state, cpu);
Marc Zyngierc8dddec2016-06-13 15:00:45 +01001550 err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1, PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001551
1552 if (err) {
Marc Zyngier3de50da2013-04-08 16:47:19 +01001553 kvm_err("Cannot map host CPU state: %d\n", err);
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001554 goto out_err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001555 }
1556 }
1557
Marc Zyngier55e37482018-05-29 13:11:16 +01001558 err = hyp_map_aux_data();
1559 if (err)
1560 kvm_err("Cannot map host auxilary data: %d\n", err);
1561
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001562 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001563
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001564out_err:
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001565 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001566 kvm_err("error initializing Hyp mode: %d\n", err);
1567 return err;
1568}
1569
Andre Przywarad4e071c2013-04-17 12:52:01 +02001570static void check_kvm_target_cpu(void *ret)
1571{
1572 *(int *)ret = kvm_target_cpu();
1573}
1574
Andre Przywara4429fc62014-06-02 15:37:13 +02001575struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
1576{
1577 struct kvm_vcpu *vcpu;
1578 int i;
1579
1580 mpidr &= MPIDR_HWID_BITMASK;
1581 kvm_for_each_vcpu(i, vcpu, kvm) {
1582 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
1583 return vcpu;
1584 }
1585 return NULL;
1586}
1587
Eric Auger24124052017-10-27 15:28:31 +01001588bool kvm_arch_has_irq_bypass(void)
1589{
1590 return true;
1591}
1592
1593int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
1594 struct irq_bypass_producer *prod)
1595{
1596 struct kvm_kernel_irqfd *irqfd =
1597 container_of(cons, struct kvm_kernel_irqfd, consumer);
1598
Marc Zyngier196b1362017-10-27 15:28:39 +01001599 return kvm_vgic_v4_set_forwarding(irqfd->kvm, prod->irq,
1600 &irqfd->irq_entry);
Eric Auger24124052017-10-27 15:28:31 +01001601}
1602void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
1603 struct irq_bypass_producer *prod)
1604{
1605 struct kvm_kernel_irqfd *irqfd =
1606 container_of(cons, struct kvm_kernel_irqfd, consumer);
1607
Marc Zyngier196b1362017-10-27 15:28:39 +01001608 kvm_vgic_v4_unset_forwarding(irqfd->kvm, prod->irq,
1609 &irqfd->irq_entry);
Eric Auger24124052017-10-27 15:28:31 +01001610}
1611
1612void kvm_arch_irq_bypass_stop(struct irq_bypass_consumer *cons)
1613{
1614 struct kvm_kernel_irqfd *irqfd =
1615 container_of(cons, struct kvm_kernel_irqfd, consumer);
1616
1617 kvm_arm_halt_guest(irqfd->kvm);
1618}
1619
1620void kvm_arch_irq_bypass_start(struct irq_bypass_consumer *cons)
1621{
1622 struct kvm_kernel_irqfd *irqfd =
1623 container_of(cons, struct kvm_kernel_irqfd, consumer);
1624
1625 kvm_arm_resume_guest(irqfd->kvm);
1626}
1627
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001628/**
1629 * Initialize Hyp-mode and memory mappings on all CPUs.
1630 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001631int kvm_arch_init(void *opaque)
1632{
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001633 int err;
Andre Przywarad4e071c2013-04-17 12:52:01 +02001634 int ret, cpu;
Julien Thierryfe7d7b02017-10-20 12:34:16 +01001635 bool in_hyp_mode;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001636
1637 if (!is_hyp_mode_available()) {
Ard Biesheuvel58d0d192017-11-28 15:18:19 +00001638 kvm_info("HYP mode not available\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001639 return -ENODEV;
1640 }
1641
Dave Martin85acda32018-04-20 16:20:43 +01001642 if (!kvm_arch_check_sve_has_vhe()) {
1643 kvm_pr_unimpl("SVE system without VHE unsupported. Broken cpu?");
1644 return -ENODEV;
1645 }
1646
Andre Przywarad4e071c2013-04-17 12:52:01 +02001647 for_each_online_cpu(cpu) {
1648 smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1);
1649 if (ret < 0) {
1650 kvm_err("Error, CPU %d not supported!\n", cpu);
1651 return -ENODEV;
1652 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001653 }
1654
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001655 err = init_common_resources();
1656 if (err)
1657 return err;
Srivatsa S. Bhat81468752014-03-18 15:53:05 +05301658
Julien Thierryfe7d7b02017-10-20 12:34:16 +01001659 in_hyp_mode = is_kernel_in_hyp_mode();
1660
1661 if (!in_hyp_mode) {
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001662 err = init_hyp_mode();
Julien Thierryfe7d7b02017-10-20 12:34:16 +01001663 if (err)
1664 goto out_err;
1665 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001666
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001667 err = init_subsystems();
1668 if (err)
1669 goto out_hyp;
Marc Zyngierd157f4a2013-04-12 19:12:07 +01001670
Julien Thierryfe7d7b02017-10-20 12:34:16 +01001671 if (in_hyp_mode)
1672 kvm_info("VHE mode initialized successfully\n");
1673 else
1674 kvm_info("Hyp mode initialized successfully\n");
1675
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001676 return 0;
Marc Zyngier1e947ba2015-01-29 11:59:54 +00001677
1678out_hyp:
Julien Thierryfe7d7b02017-10-20 12:34:16 +01001679 if (!in_hyp_mode)
1680 teardown_hyp_mode();
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001681out_err:
1682 return err;
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001683}
1684
1685/* NOP: Compiling as a module not supported */
1686void kvm_arch_exit(void)
1687{
Marc Zyngier210552c2013-03-05 03:18:00 +00001688 kvm_perf_teardown();
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001689}
1690
1691static int arm_init(void)
1692{
1693 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1694 return rc;
1695}
1696
1697module_init(arm_init);