1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
8 #include <linux/cpu_pm.h>
9 #include <linux/entry-kvm.h>
10 #include <linux/errno.h>
11 #include <linux/err.h>
12 #include <linux/kvm_host.h>
13 #include <linux/list.h>
14 #include <linux/module.h>
15 #include <linux/vmalloc.h>
17 #include <linux/mman.h>
18 #include <linux/sched.h>
19 #include <linux/kmemleak.h>
20 #include <linux/kvm.h>
21 #include <linux/kvm_irqfd.h>
22 #include <linux/irqbypass.h>
23 #include <linux/sched/stat.h>
24 #include <linux/psci.h>
25 #include <trace/events/kvm.h>
27 #define CREATE_TRACE_POINTS
28 #include "trace_arm.h"
30 #include <linux/uaccess.h>
31 #include <asm/ptrace.h>
33 #include <asm/tlbflush.h>
34 #include <asm/cacheflush.h>
35 #include <asm/cpufeature.h>
37 #include <asm/kvm_arm.h>
38 #include <asm/kvm_asm.h>
39 #include <asm/kvm_mmu.h>
40 #include <asm/kvm_emulate.h>
41 #include <asm/sections.h>
43 #include <kvm/arm_hypercalls.h>
44 #include <kvm/arm_pmu.h>
45 #include <kvm/arm_psci.h>
47 static enum kvm_mode kvm_mode = KVM_MODE_DEFAULT;
48 DEFINE_STATIC_KEY_FALSE(kvm_protected_mode_initialized);
50 DECLARE_KVM_HYP_PER_CPU(unsigned long, kvm_hyp_vector);
52 static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
53 unsigned long kvm_arm_hyp_percpu_base[NR_CPUS];
54 DECLARE_KVM_NVHE_PER_CPU(struct kvm_nvhe_init_params, kvm_init_params);
56 /* The VMID used in the VTTBR */
57 static atomic64_t kvm_vmid_gen = ATOMIC64_INIT(1);
58 static u32 kvm_next_vmid;
59 static DEFINE_SPINLOCK(kvm_vmid_lock);
61 static bool vgic_present;
63 static DEFINE_PER_CPU(unsigned char, kvm_arm_hardware_enabled);
64 DEFINE_STATIC_KEY_FALSE(userspace_irqchip_in_use);
66 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
68 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
71 int kvm_arch_hardware_setup(void *opaque)
76 int kvm_arch_check_processor_compat(void *opaque)
81 int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
82 struct kvm_enable_cap *cap)
90 case KVM_CAP_ARM_NISV_TO_USER:
92 kvm->arch.return_nisv_io_abort_to_user = true;
95 mutex_lock(&kvm->lock);
96 if (!system_supports_mte() || kvm->created_vcpus) {
100 kvm->arch.mte_enabled = true;
102 mutex_unlock(&kvm->lock);
112 static int kvm_arm_default_max_vcpus(void)
114 return vgic_present ? kvm_vgic_get_max_vcpus() : KVM_MAX_VCPUS;
117 static void set_default_spectre(struct kvm *kvm)
120 * The default is to expose CSV2 == 1 if the HW isn't affected.
121 * Although this is a per-CPU feature, we make it global because
122 * asymmetric systems are just a nuisance.
124 * Userspace can override this as long as it doesn't promise
127 if (arm64_get_spectre_v2_state() == SPECTRE_UNAFFECTED)
128 kvm->arch.pfr0_csv2 = 1;
129 if (arm64_get_meltdown_state() == SPECTRE_UNAFFECTED)
130 kvm->arch.pfr0_csv3 = 1;
134 * kvm_arch_init_vm - initializes a VM data structure
135 * @kvm: pointer to the KVM struct
137 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
141 ret = kvm_arm_setup_stage2(kvm, type);
145 ret = kvm_init_stage2_mmu(kvm, &kvm->arch.mmu);
149 ret = create_hyp_mappings(kvm, kvm + 1, PAGE_HYP);
151 goto out_free_stage2_pgd;
153 kvm_vgic_early_init(kvm);
155 /* The maximum number of VCPUs is limited by the host's GIC model */
156 kvm->arch.max_vcpus = kvm_arm_default_max_vcpus();
158 set_default_spectre(kvm);
162 kvm_free_stage2_pgd(&kvm->arch.mmu);
166 vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
168 return VM_FAULT_SIGBUS;
173 * kvm_arch_destroy_vm - destroy the VM data structure
174 * @kvm: pointer to the KVM struct
176 void kvm_arch_destroy_vm(struct kvm *kvm)
180 bitmap_free(kvm->arch.pmu_filter);
182 kvm_vgic_destroy(kvm);
184 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
186 kvm_vcpu_destroy(kvm->vcpus[i]);
187 kvm->vcpus[i] = NULL;
190 atomic_set(&kvm->online_vcpus, 0);
193 int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
197 case KVM_CAP_IRQCHIP:
200 case KVM_CAP_IOEVENTFD:
201 case KVM_CAP_DEVICE_CTRL:
202 case KVM_CAP_USER_MEMORY:
203 case KVM_CAP_SYNC_MMU:
204 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
205 case KVM_CAP_ONE_REG:
206 case KVM_CAP_ARM_PSCI:
207 case KVM_CAP_ARM_PSCI_0_2:
208 case KVM_CAP_READONLY_MEM:
209 case KVM_CAP_MP_STATE:
210 case KVM_CAP_IMMEDIATE_EXIT:
211 case KVM_CAP_VCPU_EVENTS:
212 case KVM_CAP_ARM_IRQ_LINE_LAYOUT_2:
213 case KVM_CAP_ARM_NISV_TO_USER:
214 case KVM_CAP_ARM_INJECT_EXT_DABT:
215 case KVM_CAP_SET_GUEST_DEBUG:
216 case KVM_CAP_VCPU_ATTRIBUTES:
217 case KVM_CAP_PTP_KVM:
220 case KVM_CAP_SET_GUEST_DEBUG2:
221 return KVM_GUESTDBG_VALID_MASK;
222 case KVM_CAP_ARM_SET_DEVICE_ADDR:
225 case KVM_CAP_NR_VCPUS:
226 r = num_online_cpus();
228 case KVM_CAP_MAX_VCPUS:
229 case KVM_CAP_MAX_VCPU_ID:
231 r = kvm->arch.max_vcpus;
233 r = kvm_arm_default_max_vcpus();
235 case KVM_CAP_MSI_DEVID:
239 r = kvm->arch.vgic.msis_require_devid;
241 case KVM_CAP_ARM_USER_IRQ:
243 * 1: EL1_VTIMER, EL1_PTIMER, and PMU.
244 * (bump this number if adding more devices)
248 case KVM_CAP_ARM_MTE:
249 r = system_supports_mte();
251 case KVM_CAP_STEAL_TIME:
252 r = kvm_arm_pvtime_supported();
254 case KVM_CAP_ARM_EL1_32BIT:
255 r = cpus_have_const_cap(ARM64_HAS_32BIT_EL1);
257 case KVM_CAP_GUEST_DEBUG_HW_BPS:
260 case KVM_CAP_GUEST_DEBUG_HW_WPS:
263 case KVM_CAP_ARM_PMU_V3:
264 r = kvm_arm_support_pmu_v3();
266 case KVM_CAP_ARM_INJECT_SERROR_ESR:
267 r = cpus_have_const_cap(ARM64_HAS_RAS_EXTN);
269 case KVM_CAP_ARM_VM_IPA_SIZE:
270 r = get_kvm_ipa_limit();
272 case KVM_CAP_ARM_SVE:
273 r = system_supports_sve();
275 case KVM_CAP_ARM_PTRAUTH_ADDRESS:
276 case KVM_CAP_ARM_PTRAUTH_GENERIC:
277 r = system_has_full_ptr_auth();
286 long kvm_arch_dev_ioctl(struct file *filp,
287 unsigned int ioctl, unsigned long arg)
292 struct kvm *kvm_arch_alloc_vm(void)
295 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
297 return vzalloc(sizeof(struct kvm));
300 void kvm_arch_free_vm(struct kvm *kvm)
308 int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
310 if (irqchip_in_kernel(kvm) && vgic_initialized(kvm))
313 if (id >= kvm->arch.max_vcpus)
319 int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
323 /* Force users to call KVM_ARM_VCPU_INIT */
324 vcpu->arch.target = -1;
325 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
327 vcpu->arch.mmu_page_cache.gfp_zero = __GFP_ZERO;
329 /* Set up the timer */
330 kvm_timer_vcpu_init(vcpu);
332 kvm_pmu_vcpu_init(vcpu);
334 kvm_arm_reset_debug_ptr(vcpu);
336 kvm_arm_pvtime_vcpu_init(&vcpu->arch);
338 vcpu->arch.hw_mmu = &vcpu->kvm->arch.mmu;
340 err = kvm_vgic_vcpu_init(vcpu);
344 return create_hyp_mappings(vcpu, vcpu + 1, PAGE_HYP);
347 void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
351 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
353 if (vcpu->arch.has_run_once && unlikely(!irqchip_in_kernel(vcpu->kvm)))
354 static_branch_dec(&userspace_irqchip_in_use);
356 kvm_mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
357 kvm_timer_vcpu_terminate(vcpu);
358 kvm_pmu_vcpu_destroy(vcpu);
360 kvm_arm_vcpu_destroy(vcpu);
363 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
365 return kvm_timer_is_pending(vcpu);
368 void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
371 * If we're about to block (most likely because we've just hit a
372 * WFI), we need to sync back the state of the GIC CPU interface
373 * so that we have the latest PMR and group enables. This ensures
374 * that kvm_arch_vcpu_runnable has up-to-date data to decide
375 * whether we have pending interrupts.
377 * For the same reason, we want to tell GICv4 that we need
378 * doorbells to be signalled, should an interrupt become pending.
381 kvm_vgic_vmcr_sync(vcpu);
382 vgic_v4_put(vcpu, true);
386 void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
393 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
395 struct kvm_s2_mmu *mmu;
398 mmu = vcpu->arch.hw_mmu;
399 last_ran = this_cpu_ptr(mmu->last_vcpu_ran);
402 * We guarantee that both TLBs and I-cache are private to each
403 * vcpu. If detecting that a vcpu from the same VM has
404 * previously run on the same physical CPU, call into the
405 * hypervisor code to nuke the relevant contexts.
407 * We might get preempted before the vCPU actually runs, but
408 * over-invalidation doesn't affect correctness.
410 if (*last_ran != vcpu->vcpu_id) {
411 kvm_call_hyp(__kvm_flush_cpu_context, mmu);
412 *last_ran = vcpu->vcpu_id;
418 kvm_timer_vcpu_load(vcpu);
420 kvm_vcpu_load_sysregs_vhe(vcpu);
421 kvm_arch_vcpu_load_fp(vcpu);
422 kvm_vcpu_pmu_restore_guest(vcpu);
423 if (kvm_arm_is_pvtime_enabled(&vcpu->arch))
424 kvm_make_request(KVM_REQ_RECORD_STEAL, vcpu);
426 if (single_task_running())
427 vcpu_clear_wfx_traps(vcpu);
429 vcpu_set_wfx_traps(vcpu);
431 if (vcpu_has_ptrauth(vcpu))
432 vcpu_ptrauth_disable(vcpu);
433 kvm_arch_vcpu_load_debug_state_flags(vcpu);
436 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
438 kvm_arch_vcpu_put_debug_state_flags(vcpu);
439 kvm_arch_vcpu_put_fp(vcpu);
441 kvm_vcpu_put_sysregs_vhe(vcpu);
442 kvm_timer_vcpu_put(vcpu);
444 kvm_vcpu_pmu_restore_host(vcpu);
449 static void vcpu_power_off(struct kvm_vcpu *vcpu)
451 vcpu->arch.power_off = true;
452 kvm_make_request(KVM_REQ_SLEEP, vcpu);
456 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
457 struct kvm_mp_state *mp_state)
459 if (vcpu->arch.power_off)
460 mp_state->mp_state = KVM_MP_STATE_STOPPED;
462 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
467 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
468 struct kvm_mp_state *mp_state)
472 switch (mp_state->mp_state) {
473 case KVM_MP_STATE_RUNNABLE:
474 vcpu->arch.power_off = false;
476 case KVM_MP_STATE_STOPPED:
477 vcpu_power_off(vcpu);
487 * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled
488 * @v: The VCPU pointer
490 * If the guest CPU is not waiting for interrupts or an interrupt line is
491 * asserted, the CPU is by definition runnable.
493 int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
495 bool irq_lines = *vcpu_hcr(v) & (HCR_VI | HCR_VF);
496 return ((irq_lines || kvm_vgic_vcpu_pending_irq(v))
497 && !v->arch.power_off && !v->arch.pause);
500 bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
502 return vcpu_mode_priv(vcpu);
505 /* Just ensure a guest exit from a particular CPU */
506 static void exit_vm_noop(void *info)
510 void force_vm_exit(const cpumask_t *mask)
513 smp_call_function_many(mask, exit_vm_noop, NULL, true);
518 * need_new_vmid_gen - check that the VMID is still valid
519 * @vmid: The VMID to check
521 * return true if there is a new generation of VMIDs being used
523 * The hardware supports a limited set of values with the value zero reserved
524 * for the host, so we check if an assigned value belongs to a previous
525 * generation, which requires us to assign a new value. If we're the first to
526 * use a VMID for the new generation, we must flush necessary caches and TLBs
529 static bool need_new_vmid_gen(struct kvm_vmid *vmid)
531 u64 current_vmid_gen = atomic64_read(&kvm_vmid_gen);
532 smp_rmb(); /* Orders read of kvm_vmid_gen and kvm->arch.vmid */
533 return unlikely(READ_ONCE(vmid->vmid_gen) != current_vmid_gen);
537 * update_vmid - Update the vmid with a valid VMID for the current generation
538 * @vmid: The stage-2 VMID information struct
540 static void update_vmid(struct kvm_vmid *vmid)
542 if (!need_new_vmid_gen(vmid))
545 spin_lock(&kvm_vmid_lock);
548 * We need to re-check the vmid_gen here to ensure that if another vcpu
549 * already allocated a valid vmid for this vm, then this vcpu should
552 if (!need_new_vmid_gen(vmid)) {
553 spin_unlock(&kvm_vmid_lock);
557 /* First user of a new VMID generation? */
558 if (unlikely(kvm_next_vmid == 0)) {
559 atomic64_inc(&kvm_vmid_gen);
563 * On SMP we know no other CPUs can use this CPU's or each
564 * other's VMID after force_vm_exit returns since the
565 * kvm_vmid_lock blocks them from reentry to the guest.
567 force_vm_exit(cpu_all_mask);
569 * Now broadcast TLB + ICACHE invalidation over the inner
570 * shareable domain to make sure all data structures are
573 kvm_call_hyp(__kvm_flush_vm_context);
576 WRITE_ONCE(vmid->vmid, kvm_next_vmid);
578 kvm_next_vmid &= (1 << kvm_get_vmid_bits()) - 1;
581 WRITE_ONCE(vmid->vmid_gen, atomic64_read(&kvm_vmid_gen));
583 spin_unlock(&kvm_vmid_lock);
586 static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu)
588 struct kvm *kvm = vcpu->kvm;
591 if (likely(vcpu->arch.has_run_once))
594 if (!kvm_arm_vcpu_is_finalized(vcpu))
597 vcpu->arch.has_run_once = true;
599 kvm_arm_vcpu_init_debug(vcpu);
601 if (likely(irqchip_in_kernel(kvm))) {
603 * Map the VGIC hardware resources before running a vcpu the
604 * first time on this VM.
606 ret = kvm_vgic_map_resources(kvm);
611 * Tell the rest of the code that there are userspace irqchip
614 static_branch_inc(&userspace_irqchip_in_use);
617 ret = kvm_timer_enable(vcpu);
621 ret = kvm_arm_pmu_v3_enable(vcpu);
626 bool kvm_arch_intc_initialized(struct kvm *kvm)
628 return vgic_initialized(kvm);
631 void kvm_arm_halt_guest(struct kvm *kvm)
634 struct kvm_vcpu *vcpu;
636 kvm_for_each_vcpu(i, vcpu, kvm)
637 vcpu->arch.pause = true;
638 kvm_make_all_cpus_request(kvm, KVM_REQ_SLEEP);
641 void kvm_arm_resume_guest(struct kvm *kvm)
644 struct kvm_vcpu *vcpu;
646 kvm_for_each_vcpu(i, vcpu, kvm) {
647 vcpu->arch.pause = false;
648 rcuwait_wake_up(kvm_arch_vcpu_get_wait(vcpu));
652 static void vcpu_req_sleep(struct kvm_vcpu *vcpu)
654 struct rcuwait *wait = kvm_arch_vcpu_get_wait(vcpu);
656 rcuwait_wait_event(wait,
657 (!vcpu->arch.power_off) &&(!vcpu->arch.pause),
660 if (vcpu->arch.power_off || vcpu->arch.pause) {
661 /* Awaken to handle a signal, request we sleep again later. */
662 kvm_make_request(KVM_REQ_SLEEP, vcpu);
666 * Make sure we will observe a potential reset request if we've
667 * observed a change to the power state. Pairs with the smp_wmb() in
668 * kvm_psci_vcpu_on().
673 static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
675 return vcpu->arch.target >= 0;
678 static void check_vcpu_requests(struct kvm_vcpu *vcpu)
680 if (kvm_request_pending(vcpu)) {
681 if (kvm_check_request(KVM_REQ_SLEEP, vcpu))
682 vcpu_req_sleep(vcpu);
684 if (kvm_check_request(KVM_REQ_VCPU_RESET, vcpu))
685 kvm_reset_vcpu(vcpu);
688 * Clear IRQ_PENDING requests that were made to guarantee
689 * that a VCPU sees new virtual interrupts.
691 kvm_check_request(KVM_REQ_IRQ_PENDING, vcpu);
693 if (kvm_check_request(KVM_REQ_RECORD_STEAL, vcpu))
694 kvm_update_stolen_time(vcpu);
696 if (kvm_check_request(KVM_REQ_RELOAD_GICv4, vcpu)) {
697 /* The distributor enable bits were changed */
699 vgic_v4_put(vcpu, false);
704 if (kvm_check_request(KVM_REQ_RELOAD_PMU, vcpu))
705 kvm_pmu_handle_pmcr(vcpu,
706 __vcpu_sys_reg(vcpu, PMCR_EL0));
710 static bool vcpu_mode_is_bad_32bit(struct kvm_vcpu *vcpu)
712 if (likely(!vcpu_mode_is_32bit(vcpu)))
715 return !system_supports_32bit_el0() ||
716 static_branch_unlikely(&arm64_mismatched_32bit_el0);
720 * kvm_vcpu_exit_request - returns true if the VCPU should *not* enter the guest
721 * @vcpu: The VCPU pointer
722 * @ret: Pointer to write optional return code
724 * Returns: true if the VCPU needs to return to a preemptible + interruptible
725 * and skip guest entry.
727 * This function disambiguates between two different types of exits: exits to a
728 * preemptible + interruptible kernel context and exits to userspace. For an
729 * exit to userspace, this function will write the return code to ret and return
730 * true. For an exit to preemptible + interruptible kernel context (i.e. check
731 * for pending work and re-enter), return true without writing to ret.
733 static bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu, int *ret)
735 struct kvm_run *run = vcpu->run;
738 * If we're using a userspace irqchip, then check if we need
739 * to tell a userspace irqchip about timer or PMU level
740 * changes and if so, exit to userspace (the actual level
741 * state gets updated in kvm_timer_update_run and
742 * kvm_pmu_update_run below).
744 if (static_branch_unlikely(&userspace_irqchip_in_use)) {
745 if (kvm_timer_should_notify_user(vcpu) ||
746 kvm_pmu_should_notify_user(vcpu)) {
748 run->exit_reason = KVM_EXIT_INTR;
753 return kvm_request_pending(vcpu) ||
754 need_new_vmid_gen(&vcpu->arch.hw_mmu->vmid) ||
755 xfer_to_guest_mode_work_pending();
759 * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code
760 * @vcpu: The VCPU pointer
762 * This function is called through the VCPU_RUN ioctl called from user space. It
763 * will execute VM code in a loop until the time slice for the process is used
764 * or some emulation is needed from user space in which case the function will
765 * return with return value 0 and with the kvm_run structure filled in with the
766 * required data for the requested emulation.
768 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
770 struct kvm_run *run = vcpu->run;
773 if (unlikely(!kvm_vcpu_initialized(vcpu)))
776 ret = kvm_vcpu_first_run_init(vcpu);
780 if (run->exit_reason == KVM_EXIT_MMIO) {
781 ret = kvm_handle_mmio_return(vcpu);
788 if (run->immediate_exit) {
793 kvm_sigset_activate(vcpu);
796 run->exit_reason = KVM_EXIT_UNKNOWN;
799 * Check conditions before entering the guest
801 ret = xfer_to_guest_mode_handle_work(vcpu);
805 update_vmid(&vcpu->arch.hw_mmu->vmid);
807 check_vcpu_requests(vcpu);
810 * Preparing the interrupts to be injected also
811 * involves poking the GIC, which must be done in a
812 * non-preemptible context.
816 kvm_pmu_flush_hwstate(vcpu);
820 kvm_vgic_flush_hwstate(vcpu);
823 * Ensure we set mode to IN_GUEST_MODE after we disable
824 * interrupts and before the final VCPU requests check.
825 * See the comment in kvm_vcpu_exiting_guest_mode() and
826 * Documentation/virt/kvm/vcpu-requests.rst
828 smp_store_mb(vcpu->mode, IN_GUEST_MODE);
830 if (ret <= 0 || kvm_vcpu_exit_request(vcpu, &ret)) {
831 vcpu->mode = OUTSIDE_GUEST_MODE;
832 isb(); /* Ensure work in x_flush_hwstate is committed */
833 kvm_pmu_sync_hwstate(vcpu);
834 if (static_branch_unlikely(&userspace_irqchip_in_use))
835 kvm_timer_sync_user(vcpu);
836 kvm_vgic_sync_hwstate(vcpu);
842 kvm_arm_setup_debug(vcpu);
844 /**************************************************************
847 trace_kvm_entry(*vcpu_pc(vcpu));
848 guest_enter_irqoff();
850 ret = kvm_call_hyp_ret(__kvm_vcpu_run, vcpu);
852 vcpu->mode = OUTSIDE_GUEST_MODE;
856 *************************************************************/
858 kvm_arm_clear_debug(vcpu);
861 * We must sync the PMU state before the vgic state so
862 * that the vgic can properly sample the updated state of the
865 kvm_pmu_sync_hwstate(vcpu);
868 * Sync the vgic state before syncing the timer state because
869 * the timer code needs to know if the virtual timer
870 * interrupts are active.
872 kvm_vgic_sync_hwstate(vcpu);
875 * Sync the timer hardware state before enabling interrupts as
876 * we don't want vtimer interrupts to race with syncing the
877 * timer virtual interrupt state.
879 if (static_branch_unlikely(&userspace_irqchip_in_use))
880 kvm_timer_sync_user(vcpu);
882 kvm_arch_vcpu_ctxsync_fp(vcpu);
885 * We may have taken a host interrupt in HYP mode (ie
886 * while executing the guest). This interrupt is still
887 * pending, as we haven't serviced it yet!
889 * We're now back in SVC mode, with interrupts
890 * disabled. Enabling the interrupts now will have
891 * the effect of taking the interrupt again, in SVC
897 * We do local_irq_enable() before calling guest_exit() so
898 * that if a timer interrupt hits while running the guest we
899 * account that tick as being spent in the guest. We enable
900 * preemption after calling guest_exit() so that if we get
901 * preempted we make sure ticks after that is not counted as
905 trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu));
907 /* Exit types that need handling before we can be preempted */
908 handle_exit_early(vcpu, ret);
913 * The ARMv8 architecture doesn't give the hypervisor
914 * a mechanism to prevent a guest from dropping to AArch32 EL0
915 * if implemented by the CPU. If we spot the guest in such
916 * state and that we decided it wasn't supposed to do so (like
917 * with the asymmetric AArch32 case), return to userspace with
920 if (vcpu_mode_is_bad_32bit(vcpu)) {
922 * As we have caught the guest red-handed, decide that
923 * it isn't fit for purpose anymore by making the vcpu
924 * invalid. The VMM can try and fix it by issuing a
925 * KVM_ARM_VCPU_INIT if it really wants to.
927 vcpu->arch.target = -1;
928 ret = ARM_EXCEPTION_IL;
931 ret = handle_exit(vcpu, ret);
934 /* Tell userspace about in-kernel device output levels */
935 if (unlikely(!irqchip_in_kernel(vcpu->kvm))) {
936 kvm_timer_update_run(vcpu);
937 kvm_pmu_update_run(vcpu);
940 kvm_sigset_deactivate(vcpu);
944 * In the unlikely event that we are returning to userspace
945 * with pending exceptions or PC adjustment, commit these
946 * adjustments in order to give userspace a consistent view of
947 * the vcpu state. Note that this relies on __kvm_adjust_pc()
948 * being preempt-safe on VHE.
950 if (unlikely(vcpu->arch.flags & (KVM_ARM64_PENDING_EXCEPTION |
951 KVM_ARM64_INCREMENT_PC)))
952 kvm_call_hyp(__kvm_adjust_pc, vcpu);
958 static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level)
964 if (number == KVM_ARM_IRQ_CPU_IRQ)
965 bit_index = __ffs(HCR_VI);
966 else /* KVM_ARM_IRQ_CPU_FIQ */
967 bit_index = __ffs(HCR_VF);
969 hcr = vcpu_hcr(vcpu);
971 set = test_and_set_bit(bit_index, hcr);
973 set = test_and_clear_bit(bit_index, hcr);
976 * If we didn't change anything, no need to wake up or kick other CPUs
982 * The vcpu irq_lines field was updated, wake up sleeping VCPUs and
983 * trigger a world-switch round on the running physical CPU to set the
984 * virtual IRQ/FIQ fields in the HCR appropriately.
986 kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
992 int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
995 u32 irq = irq_level->irq;
996 unsigned int irq_type, vcpu_idx, irq_num;
997 int nrcpus = atomic_read(&kvm->online_vcpus);
998 struct kvm_vcpu *vcpu = NULL;
999 bool level = irq_level->level;
1001 irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK;
1002 vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK;
1003 vcpu_idx += ((irq >> KVM_ARM_IRQ_VCPU2_SHIFT) & KVM_ARM_IRQ_VCPU2_MASK) * (KVM_ARM_IRQ_VCPU_MASK + 1);
1004 irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK;
1006 trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level);
1009 case KVM_ARM_IRQ_TYPE_CPU:
1010 if (irqchip_in_kernel(kvm))
1013 if (vcpu_idx >= nrcpus)
1016 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
1020 if (irq_num > KVM_ARM_IRQ_CPU_FIQ)
1023 return vcpu_interrupt_line(vcpu, irq_num, level);
1024 case KVM_ARM_IRQ_TYPE_PPI:
1025 if (!irqchip_in_kernel(kvm))
1028 if (vcpu_idx >= nrcpus)
1031 vcpu = kvm_get_vcpu(kvm, vcpu_idx);
1035 if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS)
1038 return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level, NULL);
1039 case KVM_ARM_IRQ_TYPE_SPI:
1040 if (!irqchip_in_kernel(kvm))
1043 if (irq_num < VGIC_NR_PRIVATE_IRQS)
1046 return kvm_vgic_inject_irq(kvm, 0, irq_num, level, NULL);
1052 static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
1053 const struct kvm_vcpu_init *init)
1055 unsigned int i, ret;
1056 u32 phys_target = kvm_target_cpu();
1058 if (init->target != phys_target)
1062 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
1063 * use the same target.
1065 if (vcpu->arch.target != -1 && vcpu->arch.target != init->target)
1068 /* -ENOENT for unknown features, -EINVAL for invalid combinations. */
1069 for (i = 0; i < sizeof(init->features) * 8; i++) {
1070 bool set = (init->features[i / 32] & (1 << (i % 32)));
1072 if (set && i >= KVM_VCPU_MAX_FEATURES)
1076 * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must
1077 * use the same feature set.
1079 if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES &&
1080 test_bit(i, vcpu->arch.features) != set)
1084 set_bit(i, vcpu->arch.features);
1087 vcpu->arch.target = phys_target;
1089 /* Now we know what it is, we can reset it. */
1090 ret = kvm_reset_vcpu(vcpu);
1092 vcpu->arch.target = -1;
1093 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
1099 static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
1100 struct kvm_vcpu_init *init)
1104 ret = kvm_vcpu_set_target(vcpu, init);
1109 * Ensure a rebooted VM will fault in RAM pages and detect if the
1110 * guest MMU is turned off and flush the caches as needed.
1112 * S2FWB enforces all memory accesses to RAM being cacheable,
1113 * ensuring that the data side is always coherent. We still
1114 * need to invalidate the I-cache though, as FWB does *not*
1115 * imply CTR_EL0.DIC.
1117 if (vcpu->arch.has_run_once) {
1118 if (!cpus_have_final_cap(ARM64_HAS_STAGE2_FWB))
1119 stage2_unmap_vm(vcpu->kvm);
1121 icache_inval_all_pou();
1124 vcpu_reset_hcr(vcpu);
1125 vcpu->arch.cptr_el2 = CPTR_EL2_DEFAULT;
1128 * Handle the "start in power-off" case.
1130 if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features))
1131 vcpu_power_off(vcpu);
1133 vcpu->arch.power_off = false;
1138 static int kvm_arm_vcpu_set_attr(struct kvm_vcpu *vcpu,
1139 struct kvm_device_attr *attr)
1143 switch (attr->group) {
1145 ret = kvm_arm_vcpu_arch_set_attr(vcpu, attr);
1152 static int kvm_arm_vcpu_get_attr(struct kvm_vcpu *vcpu,
1153 struct kvm_device_attr *attr)
1157 switch (attr->group) {
1159 ret = kvm_arm_vcpu_arch_get_attr(vcpu, attr);
1166 static int kvm_arm_vcpu_has_attr(struct kvm_vcpu *vcpu,
1167 struct kvm_device_attr *attr)
1171 switch (attr->group) {
1173 ret = kvm_arm_vcpu_arch_has_attr(vcpu, attr);
1180 static int kvm_arm_vcpu_get_events(struct kvm_vcpu *vcpu,
1181 struct kvm_vcpu_events *events)
1183 memset(events, 0, sizeof(*events));
1185 return __kvm_arm_vcpu_get_events(vcpu, events);
1188 static int kvm_arm_vcpu_set_events(struct kvm_vcpu *vcpu,
1189 struct kvm_vcpu_events *events)
1193 /* check whether the reserved field is zero */
1194 for (i = 0; i < ARRAY_SIZE(events->reserved); i++)
1195 if (events->reserved[i])
1198 /* check whether the pad field is zero */
1199 for (i = 0; i < ARRAY_SIZE(events->exception.pad); i++)
1200 if (events->exception.pad[i])
1203 return __kvm_arm_vcpu_set_events(vcpu, events);
1206 long kvm_arch_vcpu_ioctl(struct file *filp,
1207 unsigned int ioctl, unsigned long arg)
1209 struct kvm_vcpu *vcpu = filp->private_data;
1210 void __user *argp = (void __user *)arg;
1211 struct kvm_device_attr attr;
1215 case KVM_ARM_VCPU_INIT: {
1216 struct kvm_vcpu_init init;
1219 if (copy_from_user(&init, argp, sizeof(init)))
1222 r = kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init);
1225 case KVM_SET_ONE_REG:
1226 case KVM_GET_ONE_REG: {
1227 struct kvm_one_reg reg;
1230 if (unlikely(!kvm_vcpu_initialized(vcpu)))
1234 if (copy_from_user(®, argp, sizeof(reg)))
1238 * We could owe a reset due to PSCI. Handle the pending reset
1239 * here to ensure userspace register accesses are ordered after
1242 if (kvm_check_request(KVM_REQ_VCPU_RESET, vcpu))
1243 kvm_reset_vcpu(vcpu);
1245 if (ioctl == KVM_SET_ONE_REG)
1246 r = kvm_arm_set_reg(vcpu, ®);
1248 r = kvm_arm_get_reg(vcpu, ®);
1251 case KVM_GET_REG_LIST: {
1252 struct kvm_reg_list __user *user_list = argp;
1253 struct kvm_reg_list reg_list;
1257 if (unlikely(!kvm_vcpu_initialized(vcpu)))
1261 if (!kvm_arm_vcpu_is_finalized(vcpu))
1265 if (copy_from_user(®_list, user_list, sizeof(reg_list)))
1268 reg_list.n = kvm_arm_num_regs(vcpu);
1269 if (copy_to_user(user_list, ®_list, sizeof(reg_list)))
1274 r = kvm_arm_copy_reg_indices(vcpu, user_list->reg);
1277 case KVM_SET_DEVICE_ATTR: {
1279 if (copy_from_user(&attr, argp, sizeof(attr)))
1281 r = kvm_arm_vcpu_set_attr(vcpu, &attr);
1284 case KVM_GET_DEVICE_ATTR: {
1286 if (copy_from_user(&attr, argp, sizeof(attr)))
1288 r = kvm_arm_vcpu_get_attr(vcpu, &attr);
1291 case KVM_HAS_DEVICE_ATTR: {
1293 if (copy_from_user(&attr, argp, sizeof(attr)))
1295 r = kvm_arm_vcpu_has_attr(vcpu, &attr);
1298 case KVM_GET_VCPU_EVENTS: {
1299 struct kvm_vcpu_events events;
1301 if (kvm_arm_vcpu_get_events(vcpu, &events))
1304 if (copy_to_user(argp, &events, sizeof(events)))
1309 case KVM_SET_VCPU_EVENTS: {
1310 struct kvm_vcpu_events events;
1312 if (copy_from_user(&events, argp, sizeof(events)))
1315 return kvm_arm_vcpu_set_events(vcpu, &events);
1317 case KVM_ARM_VCPU_FINALIZE: {
1320 if (!kvm_vcpu_initialized(vcpu))
1323 if (get_user(what, (const int __user *)argp))
1326 return kvm_arm_vcpu_finalize(vcpu, what);
1335 void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
1340 void kvm_arch_flush_remote_tlbs_memslot(struct kvm *kvm,
1341 const struct kvm_memory_slot *memslot)
1343 kvm_flush_remote_tlbs(kvm);
1346 static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm,
1347 struct kvm_arm_device_addr *dev_addr)
1349 unsigned long dev_id, type;
1351 dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >>
1352 KVM_ARM_DEVICE_ID_SHIFT;
1353 type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >>
1354 KVM_ARM_DEVICE_TYPE_SHIFT;
1357 case KVM_ARM_DEVICE_VGIC_V2:
1360 return kvm_vgic_addr(kvm, type, &dev_addr->addr, true);
1366 long kvm_arch_vm_ioctl(struct file *filp,
1367 unsigned int ioctl, unsigned long arg)
1369 struct kvm *kvm = filp->private_data;
1370 void __user *argp = (void __user *)arg;
1373 case KVM_CREATE_IRQCHIP: {
1377 mutex_lock(&kvm->lock);
1378 ret = kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2);
1379 mutex_unlock(&kvm->lock);
1382 case KVM_ARM_SET_DEVICE_ADDR: {
1383 struct kvm_arm_device_addr dev_addr;
1385 if (copy_from_user(&dev_addr, argp, sizeof(dev_addr)))
1387 return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr);
1389 case KVM_ARM_PREFERRED_TARGET: {
1391 struct kvm_vcpu_init init;
1393 err = kvm_vcpu_preferred_target(&init);
1397 if (copy_to_user(argp, &init, sizeof(init)))
1402 case KVM_ARM_MTE_COPY_TAGS: {
1403 struct kvm_arm_copy_mte_tags copy_tags;
1405 if (copy_from_user(©_tags, argp, sizeof(copy_tags)))
1407 return kvm_vm_ioctl_mte_copy_tags(kvm, ©_tags);
1414 static unsigned long nvhe_percpu_size(void)
1416 return (unsigned long)CHOOSE_NVHE_SYM(__per_cpu_end) -
1417 (unsigned long)CHOOSE_NVHE_SYM(__per_cpu_start);
1420 static unsigned long nvhe_percpu_order(void)
1422 unsigned long size = nvhe_percpu_size();
1424 return size ? get_order(size) : 0;
1427 /* A lookup table holding the hypervisor VA for each vector slot */
1428 static void *hyp_spectre_vector_selector[BP_HARDEN_EL2_SLOTS];
1430 static void kvm_init_vector_slot(void *base, enum arm64_hyp_spectre_vector slot)
1432 hyp_spectre_vector_selector[slot] = __kvm_vector_slot2addr(base, slot);
1435 static int kvm_init_vector_slots(void)
1440 base = kern_hyp_va(kvm_ksym_ref(__kvm_hyp_vector));
1441 kvm_init_vector_slot(base, HYP_VECTOR_DIRECT);
1443 base = kern_hyp_va(kvm_ksym_ref(__bp_harden_hyp_vecs));
1444 kvm_init_vector_slot(base, HYP_VECTOR_SPECTRE_DIRECT);
1446 if (!cpus_have_const_cap(ARM64_SPECTRE_V3A))
1450 err = create_hyp_exec_mappings(__pa_symbol(__bp_harden_hyp_vecs),
1451 __BP_HARDEN_HYP_VECS_SZ, &base);
1456 kvm_init_vector_slot(base, HYP_VECTOR_INDIRECT);
1457 kvm_init_vector_slot(base, HYP_VECTOR_SPECTRE_INDIRECT);
1461 static void cpu_prepare_hyp_mode(int cpu)
1463 struct kvm_nvhe_init_params *params = per_cpu_ptr_nvhe_sym(kvm_init_params, cpu);
1467 * Calculate the raw per-cpu offset without a translation from the
1468 * kernel's mapping to the linear mapping, and store it in tpidr_el2
1469 * so that we can use adr_l to access per-cpu variables in EL2.
1470 * Also drop the KASAN tag which gets in the way...
1472 params->tpidr_el2 = (unsigned long)kasan_reset_tag(per_cpu_ptr_nvhe_sym(__per_cpu_start, cpu)) -
1473 (unsigned long)kvm_ksym_ref(CHOOSE_NVHE_SYM(__per_cpu_start));
1475 params->mair_el2 = read_sysreg(mair_el1);
1478 * The ID map may be configured to use an extended virtual address
1479 * range. This is only the case if system RAM is out of range for the
1480 * currently configured page size and VA_BITS, in which case we will
1481 * also need the extended virtual range for the HYP ID map, or we won't
1482 * be able to enable the EL2 MMU.
1484 * However, at EL2, there is only one TTBR register, and we can't switch
1485 * between translation tables *and* update TCR_EL2.T0SZ at the same
1486 * time. Bottom line: we need to use the extended range with *both* our
1487 * translation tables.
1489 * So use the same T0SZ value we use for the ID map.
1491 tcr = (read_sysreg(tcr_el1) & TCR_EL2_MASK) | TCR_EL2_RES1;
1492 tcr &= ~TCR_T0SZ_MASK;
1493 tcr |= (idmap_t0sz & GENMASK(TCR_TxSZ_WIDTH - 1, 0)) << TCR_T0SZ_OFFSET;
1494 params->tcr_el2 = tcr;
1496 params->stack_hyp_va = kern_hyp_va(per_cpu(kvm_arm_hyp_stack_page, cpu) + PAGE_SIZE);
1497 params->pgd_pa = kvm_mmu_get_httbr();
1498 if (is_protected_kvm_enabled())
1499 params->hcr_el2 = HCR_HOST_NVHE_PROTECTED_FLAGS;
1501 params->hcr_el2 = HCR_HOST_NVHE_FLAGS;
1502 params->vttbr = params->vtcr = 0;
1505 * Flush the init params from the data cache because the struct will
1506 * be read while the MMU is off.
1508 kvm_flush_dcache_to_poc(params, sizeof(*params));
1511 static void hyp_install_host_vector(void)
1513 struct kvm_nvhe_init_params *params;
1514 struct arm_smccc_res res;
1516 /* Switch from the HYP stub to our own HYP init vector */
1517 __hyp_set_vectors(kvm_get_idmap_vector());
1520 * Call initialization code, and switch to the full blown HYP code.
1521 * If the cpucaps haven't been finalized yet, something has gone very
1522 * wrong, and hyp will crash and burn when it uses any
1523 * cpus_have_const_cap() wrapper.
1525 BUG_ON(!system_capabilities_finalized());
1526 params = this_cpu_ptr_nvhe_sym(kvm_init_params);
1527 arm_smccc_1_1_hvc(KVM_HOST_SMCCC_FUNC(__kvm_hyp_init), virt_to_phys(params), &res);
1528 WARN_ON(res.a0 != SMCCC_RET_SUCCESS);
1531 static void cpu_init_hyp_mode(void)
1533 hyp_install_host_vector();
1536 * Disabling SSBD on a non-VHE system requires us to enable SSBS
1539 if (this_cpu_has_cap(ARM64_SSBS) &&
1540 arm64_get_spectre_v4_state() == SPECTRE_VULNERABLE) {
1541 kvm_call_hyp_nvhe(__kvm_enable_ssbs);
1545 static void cpu_hyp_reset(void)
1547 if (!is_kernel_in_hyp_mode())
1548 __hyp_reset_vectors();
1552 * EL2 vectors can be mapped and rerouted in a number of ways,
1553 * depending on the kernel configuration and CPU present:
1555 * - If the CPU is affected by Spectre-v2, the hardening sequence is
1556 * placed in one of the vector slots, which is executed before jumping
1557 * to the real vectors.
1559 * - If the CPU also has the ARM64_SPECTRE_V3A cap, the slot
1560 * containing the hardening sequence is mapped next to the idmap page,
1561 * and executed before jumping to the real vectors.
1563 * - If the CPU only has the ARM64_SPECTRE_V3A cap, then an
1564 * empty slot is selected, mapped next to the idmap page, and
1565 * executed before jumping to the real vectors.
1567 * Note that ARM64_SPECTRE_V3A is somewhat incompatible with
1568 * VHE, as we don't have hypervisor-specific mappings. If the system
1569 * is VHE and yet selects this capability, it will be ignored.
1571 static void cpu_set_hyp_vector(void)
1573 struct bp_hardening_data *data = this_cpu_ptr(&bp_hardening_data);
1574 void *vector = hyp_spectre_vector_selector[data->slot];
1576 if (!is_protected_kvm_enabled())
1577 *this_cpu_ptr_hyp_sym(kvm_hyp_vector) = (unsigned long)vector;
1579 kvm_call_hyp_nvhe(__pkvm_cpu_set_vector, data->slot);
1582 static void cpu_hyp_reinit(void)
1584 kvm_init_host_cpu_context(&this_cpu_ptr_hyp_sym(kvm_host_data)->host_ctxt);
1588 if (is_kernel_in_hyp_mode())
1589 kvm_timer_init_vhe();
1591 cpu_init_hyp_mode();
1593 cpu_set_hyp_vector();
1595 kvm_arm_init_debug();
1598 kvm_vgic_init_cpu_hardware();
1601 static void _kvm_arch_hardware_enable(void *discard)
1603 if (!__this_cpu_read(kvm_arm_hardware_enabled)) {
1605 __this_cpu_write(kvm_arm_hardware_enabled, 1);
1609 int kvm_arch_hardware_enable(void)
1611 _kvm_arch_hardware_enable(NULL);
1615 static void _kvm_arch_hardware_disable(void *discard)
1617 if (__this_cpu_read(kvm_arm_hardware_enabled)) {
1619 __this_cpu_write(kvm_arm_hardware_enabled, 0);
1623 void kvm_arch_hardware_disable(void)
1625 if (!is_protected_kvm_enabled())
1626 _kvm_arch_hardware_disable(NULL);
1629 #ifdef CONFIG_CPU_PM
1630 static int hyp_init_cpu_pm_notifier(struct notifier_block *self,
1635 * kvm_arm_hardware_enabled is left with its old value over
1636 * PM_ENTER->PM_EXIT. It is used to indicate PM_EXIT should
1641 if (__this_cpu_read(kvm_arm_hardware_enabled))
1643 * don't update kvm_arm_hardware_enabled here
1644 * so that the hardware will be re-enabled
1645 * when we resume. See below.
1650 case CPU_PM_ENTER_FAILED:
1652 if (__this_cpu_read(kvm_arm_hardware_enabled))
1653 /* The hardware was enabled before suspend. */
1663 static struct notifier_block hyp_init_cpu_pm_nb = {
1664 .notifier_call = hyp_init_cpu_pm_notifier,
1667 static void hyp_cpu_pm_init(void)
1669 if (!is_protected_kvm_enabled())
1670 cpu_pm_register_notifier(&hyp_init_cpu_pm_nb);
1672 static void hyp_cpu_pm_exit(void)
1674 if (!is_protected_kvm_enabled())
1675 cpu_pm_unregister_notifier(&hyp_init_cpu_pm_nb);
1678 static inline void hyp_cpu_pm_init(void)
1681 static inline void hyp_cpu_pm_exit(void)
1686 static void init_cpu_logical_map(void)
1691 * Copy the MPIDR <-> logical CPU ID mapping to hyp.
1692 * Only copy the set of online CPUs whose features have been chacked
1693 * against the finalized system capabilities. The hypervisor will not
1694 * allow any other CPUs from the `possible` set to boot.
1696 for_each_online_cpu(cpu)
1697 hyp_cpu_logical_map[cpu] = cpu_logical_map(cpu);
1700 #define init_psci_0_1_impl_state(config, what) \
1701 config.psci_0_1_ ## what ## _implemented = psci_ops.what
1703 static bool init_psci_relay(void)
1706 * If PSCI has not been initialized, protected KVM cannot install
1707 * itself on newly booted CPUs.
1709 if (!psci_ops.get_version) {
1710 kvm_err("Cannot initialize protected mode without PSCI\n");
1714 kvm_host_psci_config.version = psci_ops.get_version();
1716 if (kvm_host_psci_config.version == PSCI_VERSION(0, 1)) {
1717 kvm_host_psci_config.function_ids_0_1 = get_psci_0_1_function_ids();
1718 init_psci_0_1_impl_state(kvm_host_psci_config, cpu_suspend);
1719 init_psci_0_1_impl_state(kvm_host_psci_config, cpu_on);
1720 init_psci_0_1_impl_state(kvm_host_psci_config, cpu_off);
1721 init_psci_0_1_impl_state(kvm_host_psci_config, migrate);
1726 static int init_subsystems(void)
1731 * Enable hardware so that subsystem initialisation can access EL2.
1733 on_each_cpu(_kvm_arch_hardware_enable, NULL, 1);
1736 * Register CPU lower-power notifier
1741 * Init HYP view of VGIC
1743 err = kvm_vgic_hyp_init();
1746 vgic_present = true;
1750 vgic_present = false;
1758 * Init HYP architected timer support
1760 err = kvm_timer_hyp_init(vgic_present);
1765 kvm_sys_reg_table_init();
1768 if (err || !is_protected_kvm_enabled())
1769 on_each_cpu(_kvm_arch_hardware_disable, NULL, 1);
1774 static void teardown_hyp_mode(void)
1779 for_each_possible_cpu(cpu) {
1780 free_page(per_cpu(kvm_arm_hyp_stack_page, cpu));
1781 free_pages(kvm_arm_hyp_percpu_base[cpu], nvhe_percpu_order());
1785 static int do_pkvm_init(u32 hyp_va_bits)
1787 void *per_cpu_base = kvm_ksym_ref(kvm_arm_hyp_percpu_base);
1791 hyp_install_host_vector();
1792 ret = kvm_call_hyp_nvhe(__pkvm_init, hyp_mem_base, hyp_mem_size,
1793 num_possible_cpus(), kern_hyp_va(per_cpu_base),
1800 static int kvm_hyp_init_protection(u32 hyp_va_bits)
1802 void *addr = phys_to_virt(hyp_mem_base);
1805 kvm_nvhe_sym(id_aa64mmfr0_el1_sys_val) = read_sanitised_ftr_reg(SYS_ID_AA64MMFR0_EL1);
1806 kvm_nvhe_sym(id_aa64mmfr1_el1_sys_val) = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1);
1808 ret = create_hyp_mappings(addr, addr + hyp_mem_size, PAGE_HYP);
1812 ret = do_pkvm_init(hyp_va_bits);
1822 * Inits Hyp-mode on all online CPUs
1824 static int init_hyp_mode(void)
1831 * The protected Hyp-mode cannot be initialized if the memory pool
1832 * allocation has failed.
1834 if (is_protected_kvm_enabled() && !hyp_mem_base)
1838 * Allocate Hyp PGD and setup Hyp identity mapping
1840 err = kvm_mmu_init(&hyp_va_bits);
1845 * Allocate stack pages for Hypervisor-mode
1847 for_each_possible_cpu(cpu) {
1848 unsigned long stack_page;
1850 stack_page = __get_free_page(GFP_KERNEL);
1856 per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page;
1860 * Allocate and initialize pages for Hypervisor-mode percpu regions.
1862 for_each_possible_cpu(cpu) {
1866 page = alloc_pages(GFP_KERNEL, nvhe_percpu_order());
1872 page_addr = page_address(page);
1873 memcpy(page_addr, CHOOSE_NVHE_SYM(__per_cpu_start), nvhe_percpu_size());
1874 kvm_arm_hyp_percpu_base[cpu] = (unsigned long)page_addr;
1878 * Map the Hyp-code called directly from the host
1880 err = create_hyp_mappings(kvm_ksym_ref(__hyp_text_start),
1881 kvm_ksym_ref(__hyp_text_end), PAGE_HYP_EXEC);
1883 kvm_err("Cannot map world-switch code\n");
1887 err = create_hyp_mappings(kvm_ksym_ref(__hyp_rodata_start),
1888 kvm_ksym_ref(__hyp_rodata_end), PAGE_HYP_RO);
1890 kvm_err("Cannot map .hyp.rodata section\n");
1894 err = create_hyp_mappings(kvm_ksym_ref(__start_rodata),
1895 kvm_ksym_ref(__end_rodata), PAGE_HYP_RO);
1897 kvm_err("Cannot map rodata section\n");
1902 * .hyp.bss is guaranteed to be placed at the beginning of the .bss
1903 * section thanks to an assertion in the linker script. Map it RW and
1904 * the rest of .bss RO.
1906 err = create_hyp_mappings(kvm_ksym_ref(__hyp_bss_start),
1907 kvm_ksym_ref(__hyp_bss_end), PAGE_HYP);
1909 kvm_err("Cannot map hyp bss section: %d\n", err);
1913 err = create_hyp_mappings(kvm_ksym_ref(__hyp_bss_end),
1914 kvm_ksym_ref(__bss_stop), PAGE_HYP_RO);
1916 kvm_err("Cannot map bss section\n");
1921 * Map the Hyp stack pages
1923 for_each_possible_cpu(cpu) {
1924 char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu);
1925 err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE,
1929 kvm_err("Cannot map hyp stack\n");
1934 for_each_possible_cpu(cpu) {
1935 char *percpu_begin = (char *)kvm_arm_hyp_percpu_base[cpu];
1936 char *percpu_end = percpu_begin + nvhe_percpu_size();
1938 /* Map Hyp percpu pages */
1939 err = create_hyp_mappings(percpu_begin, percpu_end, PAGE_HYP);
1941 kvm_err("Cannot map hyp percpu region\n");
1945 /* Prepare the CPU initialization parameters */
1946 cpu_prepare_hyp_mode(cpu);
1949 if (is_protected_kvm_enabled()) {
1950 init_cpu_logical_map();
1952 if (!init_psci_relay()) {
1958 if (is_protected_kvm_enabled()) {
1959 err = kvm_hyp_init_protection(hyp_va_bits);
1961 kvm_err("Failed to init hyp memory protection\n");
1969 teardown_hyp_mode();
1970 kvm_err("error initializing Hyp mode: %d\n", err);
1974 static void _kvm_host_prot_finalize(void *discard)
1976 WARN_ON(kvm_call_hyp_nvhe(__pkvm_prot_finalize));
1979 static int finalize_hyp_mode(void)
1981 if (!is_protected_kvm_enabled())
1985 * Exclude HYP BSS from kmemleak so that it doesn't get peeked
1986 * at, which would end badly once the section is inaccessible.
1987 * None of other sections should ever be introspected.
1989 kmemleak_free_part(__hyp_bss_start, __hyp_bss_end - __hyp_bss_start);
1992 * Flip the static key upfront as that may no longer be possible
1993 * once the host stage 2 is installed.
1995 static_branch_enable(&kvm_protected_mode_initialized);
1996 on_each_cpu(_kvm_host_prot_finalize, NULL, 1);
2001 struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
2003 struct kvm_vcpu *vcpu;
2006 mpidr &= MPIDR_HWID_BITMASK;
2007 kvm_for_each_vcpu(i, vcpu, kvm) {
2008 if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
2014 bool kvm_arch_has_irq_bypass(void)
2019 int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
2020 struct irq_bypass_producer *prod)
2022 struct kvm_kernel_irqfd *irqfd =
2023 container_of(cons, struct kvm_kernel_irqfd, consumer);
2025 return kvm_vgic_v4_set_forwarding(irqfd->kvm, prod->irq,
2028 void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
2029 struct irq_bypass_producer *prod)
2031 struct kvm_kernel_irqfd *irqfd =
2032 container_of(cons, struct kvm_kernel_irqfd, consumer);
2034 kvm_vgic_v4_unset_forwarding(irqfd->kvm, prod->irq,
2038 void kvm_arch_irq_bypass_stop(struct irq_bypass_consumer *cons)
2040 struct kvm_kernel_irqfd *irqfd =
2041 container_of(cons, struct kvm_kernel_irqfd, consumer);
2043 kvm_arm_halt_guest(irqfd->kvm);
2046 void kvm_arch_irq_bypass_start(struct irq_bypass_consumer *cons)
2048 struct kvm_kernel_irqfd *irqfd =
2049 container_of(cons, struct kvm_kernel_irqfd, consumer);
2051 kvm_arm_resume_guest(irqfd->kvm);
2055 * Initialize Hyp-mode and memory mappings on all CPUs.
2057 int kvm_arch_init(void *opaque)
2062 if (!is_hyp_mode_available()) {
2063 kvm_info("HYP mode not available\n");
2067 in_hyp_mode = is_kernel_in_hyp_mode();
2069 if (cpus_have_final_cap(ARM64_WORKAROUND_DEVICE_LOAD_ACQUIRE) ||
2070 cpus_have_final_cap(ARM64_WORKAROUND_1508412))
2071 kvm_info("Guests without required CPU erratum workarounds can deadlock system!\n" \
2072 "Only trusted guests should be used on this system.\n");
2074 err = kvm_set_ipa_limit();
2078 err = kvm_arm_init_sve();
2083 err = init_hyp_mode();
2088 err = kvm_init_vector_slots();
2090 kvm_err("Cannot initialise vector slots\n");
2094 err = init_subsystems();
2099 err = finalize_hyp_mode();
2101 kvm_err("Failed to finalize Hyp protection\n");
2106 if (is_protected_kvm_enabled()) {
2107 kvm_info("Protected nVHE mode initialized successfully\n");
2108 } else if (in_hyp_mode) {
2109 kvm_info("VHE mode initialized successfully\n");
2111 kvm_info("Hyp mode initialized successfully\n");
2119 teardown_hyp_mode();
2124 /* NOP: Compiling as a module not supported */
2125 void kvm_arch_exit(void)
2127 kvm_perf_teardown();
2130 static int __init early_kvm_mode_cfg(char *arg)
2135 if (strcmp(arg, "protected") == 0) {
2136 kvm_mode = KVM_MODE_PROTECTED;
2140 if (strcmp(arg, "nvhe") == 0 && !WARN_ON(is_kernel_in_hyp_mode()))
2145 early_param("kvm-arm.mode", early_kvm_mode_cfg);
2147 enum kvm_mode kvm_get_mode(void)
2152 static int arm_init(void)
2154 int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
2158 module_init(arm_init);