1 // SPDX-License-Identifier: GPL-2.0-only
3 * kvm asynchronous fault support
5 * Copyright 2010 Red Hat, Inc.
8 * Gleb Natapov <gleb@redhat.com>
11 #include <linux/kvm_host.h>
12 #include <linux/slab.h>
13 #include <linux/module.h>
14 #include <linux/mmu_context.h>
15 #include <linux/sched/mm.h>
18 #include <trace/events/kvm.h>
20 static struct kmem_cache
*async_pf_cache
;
22 int kvm_async_pf_init(void)
24 async_pf_cache
= KMEM_CACHE(kvm_async_pf
, 0);
32 void kvm_async_pf_deinit(void)
34 kmem_cache_destroy(async_pf_cache
);
35 async_pf_cache
= NULL
;
38 void kvm_async_pf_vcpu_init(struct kvm_vcpu
*vcpu
)
40 INIT_LIST_HEAD(&vcpu
->async_pf
.done
);
41 INIT_LIST_HEAD(&vcpu
->async_pf
.queue
);
42 spin_lock_init(&vcpu
->async_pf
.lock
);
45 static void async_pf_execute(struct work_struct
*work
)
47 struct kvm_async_pf
*apf
=
48 container_of(work
, struct kvm_async_pf
, work
);
49 struct kvm_vcpu
*vcpu
= apf
->vcpu
;
50 struct mm_struct
*mm
= vcpu
->kvm
->mm
;
51 unsigned long addr
= apf
->addr
;
52 gpa_t cr2_or_gpa
= apf
->cr2_or_gpa
;
59 * Attempt to pin the VM's host address space, and simply skip gup() if
60 * acquiring a pin fail, i.e. if the process is exiting. Note, KVM
61 * holds a reference to its associated mm_struct until the very end of
62 * kvm_destroy_vm(), i.e. the struct itself won't be freed before this
63 * work item is fully processed.
65 if (mmget_not_zero(mm
)) {
67 get_user_pages_remote(mm
, addr
, 1, FOLL_WRITE
, NULL
, &locked
);
74 * Notify and kick the vCPU even if faulting in the page failed, e.g.
75 * so that the vCPU can retry the fault synchronously.
77 if (IS_ENABLED(CONFIG_KVM_ASYNC_PF_SYNC
))
78 kvm_arch_async_page_present(vcpu
, apf
);
80 spin_lock(&vcpu
->async_pf
.lock
);
81 first
= list_empty(&vcpu
->async_pf
.done
);
82 list_add_tail(&apf
->link
, &vcpu
->async_pf
.done
);
83 spin_unlock(&vcpu
->async_pf
.lock
);
86 * The apf struct may be freed by kvm_check_async_pf_completion() as
87 * soon as the lock is dropped. Nullify it to prevent improper usage.
91 if (!IS_ENABLED(CONFIG_KVM_ASYNC_PF_SYNC
) && first
)
92 kvm_arch_async_page_present_queued(vcpu
);
94 trace_kvm_async_pf_completed(addr
, cr2_or_gpa
);
96 __kvm_vcpu_wake_up(vcpu
);
99 static void kvm_flush_and_free_async_pf_work(struct kvm_async_pf
*work
)
102 * The async #PF is "done", but KVM must wait for the work item itself,
103 * i.e. async_pf_execute(), to run to completion. If KVM is a module,
104 * KVM must ensure *no* code owned by the KVM (the module) can be run
105 * after the last call to module_put(). Note, flushing the work item
106 * is always required when the item is taken off the completion queue.
107 * E.g. even if the vCPU handles the item in the "normal" path, the VM
108 * could be terminated before async_pf_execute() completes.
110 * Wake all events skip the queue and go straight done, i.e. don't
111 * need to be flushed (but sanity check that the work wasn't queued).
113 if (work
->wakeup_all
)
114 WARN_ON_ONCE(work
->work
.func
);
116 flush_work(&work
->work
);
117 kmem_cache_free(async_pf_cache
, work
);
120 void kvm_clear_async_pf_completion_queue(struct kvm_vcpu
*vcpu
)
122 /* cancel outstanding work queue item */
123 while (!list_empty(&vcpu
->async_pf
.queue
)) {
124 struct kvm_async_pf
*work
=
125 list_first_entry(&vcpu
->async_pf
.queue
,
126 typeof(*work
), queue
);
127 list_del(&work
->queue
);
129 #ifdef CONFIG_KVM_ASYNC_PF_SYNC
130 flush_work(&work
->work
);
132 if (cancel_work_sync(&work
->work
))
133 kmem_cache_free(async_pf_cache
, work
);
137 spin_lock(&vcpu
->async_pf
.lock
);
138 while (!list_empty(&vcpu
->async_pf
.done
)) {
139 struct kvm_async_pf
*work
=
140 list_first_entry(&vcpu
->async_pf
.done
,
141 typeof(*work
), link
);
142 list_del(&work
->link
);
144 spin_unlock(&vcpu
->async_pf
.lock
);
145 kvm_flush_and_free_async_pf_work(work
);
146 spin_lock(&vcpu
->async_pf
.lock
);
148 spin_unlock(&vcpu
->async_pf
.lock
);
150 vcpu
->async_pf
.queued
= 0;
153 void kvm_check_async_pf_completion(struct kvm_vcpu
*vcpu
)
155 struct kvm_async_pf
*work
;
157 while (!list_empty_careful(&vcpu
->async_pf
.done
) &&
158 kvm_arch_can_dequeue_async_page_present(vcpu
)) {
159 spin_lock(&vcpu
->async_pf
.lock
);
160 work
= list_first_entry(&vcpu
->async_pf
.done
, typeof(*work
),
162 list_del(&work
->link
);
163 spin_unlock(&vcpu
->async_pf
.lock
);
165 kvm_arch_async_page_ready(vcpu
, work
);
166 if (!IS_ENABLED(CONFIG_KVM_ASYNC_PF_SYNC
))
167 kvm_arch_async_page_present(vcpu
, work
);
169 list_del(&work
->queue
);
170 vcpu
->async_pf
.queued
--;
171 kvm_flush_and_free_async_pf_work(work
);
176 * Try to schedule a job to handle page fault asynchronously. Returns 'true' on
177 * success, 'false' on failure (page fault has to be handled synchronously).
179 bool kvm_setup_async_pf(struct kvm_vcpu
*vcpu
, gpa_t cr2_or_gpa
,
180 unsigned long hva
, struct kvm_arch_async_pf
*arch
)
182 struct kvm_async_pf
*work
;
184 if (vcpu
->async_pf
.queued
>= ASYNC_PF_PER_VCPU
)
187 /* Arch specific code should not do async PF in this case */
188 if (unlikely(kvm_is_error_hva(hva
)))
192 * do alloc nowait since if we are going to sleep anyway we
193 * may as well sleep faulting in page
195 work
= kmem_cache_zalloc(async_pf_cache
, GFP_NOWAIT
| __GFP_NOWARN
);
199 work
->wakeup_all
= false;
201 work
->cr2_or_gpa
= cr2_or_gpa
;
205 INIT_WORK(&work
->work
, async_pf_execute
);
207 list_add_tail(&work
->queue
, &vcpu
->async_pf
.queue
);
208 vcpu
->async_pf
.queued
++;
209 work
->notpresent_injected
= kvm_arch_async_page_not_present(vcpu
, work
);
211 schedule_work(&work
->work
);
216 int kvm_async_pf_wakeup_all(struct kvm_vcpu
*vcpu
)
218 struct kvm_async_pf
*work
;
221 if (!list_empty_careful(&vcpu
->async_pf
.done
))
224 work
= kmem_cache_zalloc(async_pf_cache
, GFP_ATOMIC
);
228 work
->wakeup_all
= true;
229 INIT_LIST_HEAD(&work
->queue
); /* for list_del to work */
231 spin_lock(&vcpu
->async_pf
.lock
);
232 first
= list_empty(&vcpu
->async_pf
.done
);
233 list_add_tail(&work
->link
, &vcpu
->async_pf
.done
);
234 spin_unlock(&vcpu
->async_pf
.lock
);
236 if (!IS_ENABLED(CONFIG_KVM_ASYNC_PF_SYNC
) && first
)
237 kvm_arch_async_page_present_queued(vcpu
);
239 vcpu
->async_pf
.queued
++;