KVM: Force PPC to define its own rcuwait object
[linux-2.6-block.git] / virt / kvm / async_pf.c
CommitLineData
775c8a3d 1// SPDX-License-Identifier: GPL-2.0-only
af585b92
GN
2/*
3 * kvm asynchronous fault support
4 *
5 * Copyright 2010 Red Hat, Inc.
6 *
7 * Author:
8 * Gleb Natapov <gleb@redhat.com>
af585b92
GN
9 */
10
11#include <linux/kvm_host.h>
12#include <linux/slab.h>
13#include <linux/module.h>
14#include <linux/mmu_context.h>
6e84f315 15#include <linux/sched/mm.h>
af585b92
GN
16
17#include "async_pf.h"
18#include <trace/events/kvm.h>
19
20static struct kmem_cache *async_pf_cache;
21
22int kvm_async_pf_init(void)
23{
24 async_pf_cache = KMEM_CACHE(kvm_async_pf, 0);
25
26 if (!async_pf_cache)
27 return -ENOMEM;
28
29 return 0;
30}
31
32void kvm_async_pf_deinit(void)
33{
4f52696a 34 kmem_cache_destroy(async_pf_cache);
af585b92
GN
35 async_pf_cache = NULL;
36}
37
38void kvm_async_pf_vcpu_init(struct kvm_vcpu *vcpu)
39{
40 INIT_LIST_HEAD(&vcpu->async_pf.done);
41 INIT_LIST_HEAD(&vcpu->async_pf.queue);
42 spin_lock_init(&vcpu->async_pf.lock);
43}
44
45static void async_pf_execute(struct work_struct *work)
46{
af585b92
GN
47 struct kvm_async_pf *apf =
48 container_of(work, struct kvm_async_pf, work);
49 struct mm_struct *mm = apf->mm;
50 struct kvm_vcpu *vcpu = apf->vcpu;
51 unsigned long addr = apf->addr;
736c291c 52 gpa_t cr2_or_gpa = apf->cr2_or_gpa;
8b7457ef 53 int locked = 1;
557a961a 54 bool first;
af585b92
GN
55
56 might_sleep();
57
1e987790 58 /*
bdd303cb 59 * This work is run asynchronously to the task which owns
1e987790 60 * mm and might be done in another context, so we must
8b7457ef 61 * access remotely.
1e987790 62 */
d8ed45c5 63 mmap_read_lock(mm);
64019a2e 64 get_user_pages_remote(mm, addr, 1, FOLL_WRITE, NULL, NULL,
8b7457ef
LS
65 &locked);
66 if (locked)
d8ed45c5 67 mmap_read_unlock(mm);
1e987790 68
4425f567
PB
69 if (IS_ENABLED(CONFIG_KVM_ASYNC_PF_SYNC))
70 kvm_arch_async_page_present(vcpu, apf);
af585b92
GN
71
72 spin_lock(&vcpu->async_pf.lock);
557a961a 73 first = list_empty(&vcpu->async_pf.done);
af585b92 74 list_add_tail(&apf->link, &vcpu->async_pf.done);
22583f0d 75 apf->vcpu = NULL;
af585b92
GN
76 spin_unlock(&vcpu->async_pf.lock);
77
557a961a
VK
78 if (!IS_ENABLED(CONFIG_KVM_ASYNC_PF_SYNC) && first)
79 kvm_arch_async_page_present_queued(vcpu);
80
af585b92
GN
81 /*
82 * apf may be freed by kvm_check_async_pf_completion() after
83 * this point
84 */
85
736c291c 86 trace_kvm_async_pf_completed(addr, cr2_or_gpa);
af585b92 87
510958e9 88 rcuwait_wake_up(kvm_arch_vcpu_get_wait(vcpu));
af585b92 89
41c22f62 90 mmput(mm);
af585b92
GN
91 kvm_put_kvm(vcpu->kvm);
92}
93
94void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu)
95{
22583f0d
PB
96 spin_lock(&vcpu->async_pf.lock);
97
af585b92
GN
98 /* cancel outstanding work queue item */
99 while (!list_empty(&vcpu->async_pf.queue)) {
100 struct kvm_async_pf *work =
433da860
GT
101 list_first_entry(&vcpu->async_pf.queue,
102 typeof(*work), queue);
af585b92 103 list_del(&work->queue);
9f2ceda4 104
22583f0d
PB
105 /*
106 * We know it's present in vcpu->async_pf.done, do
107 * nothing here.
108 */
109 if (!work->vcpu)
110 continue;
111
112 spin_unlock(&vcpu->async_pf.lock);
9f2ceda4
DD
113#ifdef CONFIG_KVM_ASYNC_PF_SYNC
114 flush_work(&work->work);
115#else
98fda169 116 if (cancel_work_sync(&work->work)) {
41c22f62 117 mmput(work->mm);
28b441e2 118 kvm_put_kvm(vcpu->kvm); /* == work->vcpu->kvm */
af585b92 119 kmem_cache_free(async_pf_cache, work);
28b441e2 120 }
9f2ceda4 121#endif
22583f0d 122 spin_lock(&vcpu->async_pf.lock);
af585b92
GN
123 }
124
af585b92
GN
125 while (!list_empty(&vcpu->async_pf.done)) {
126 struct kvm_async_pf *work =
433da860
GT
127 list_first_entry(&vcpu->async_pf.done,
128 typeof(*work), link);
af585b92 129 list_del(&work->link);
af585b92
GN
130 kmem_cache_free(async_pf_cache, work);
131 }
132 spin_unlock(&vcpu->async_pf.lock);
133
134 vcpu->async_pf.queued = 0;
135}
136
137void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu)
138{
139 struct kvm_async_pf *work;
140
15096ffc 141 while (!list_empty_careful(&vcpu->async_pf.done) &&
7c0ade6c 142 kvm_arch_can_dequeue_async_page_present(vcpu)) {
15096ffc
XG
143 spin_lock(&vcpu->async_pf.lock);
144 work = list_first_entry(&vcpu->async_pf.done, typeof(*work),
145 link);
146 list_del(&work->link);
147 spin_unlock(&vcpu->async_pf.lock);
af585b92 148
f2e10669 149 kvm_arch_async_page_ready(vcpu, work);
4425f567
PB
150 if (!IS_ENABLED(CONFIG_KVM_ASYNC_PF_SYNC))
151 kvm_arch_async_page_present(vcpu, work);
af585b92 152
15096ffc
XG
153 list_del(&work->queue);
154 vcpu->async_pf.queued--;
15096ffc
XG
155 kmem_cache_free(async_pf_cache, work);
156 }
af585b92
GN
157}
158
e8c22266
VK
159/*
160 * Try to schedule a job to handle page fault asynchronously. Returns 'true' on
161 * success, 'false' on failure (page fault has to be handled synchronously).
162 */
163bool kvm_setup_async_pf(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
164 unsigned long hva, struct kvm_arch_async_pf *arch)
af585b92
GN
165{
166 struct kvm_async_pf *work;
167
168 if (vcpu->async_pf.queued >= ASYNC_PF_PER_VCPU)
e8c22266 169 return false;
af585b92 170
7863e346
VK
171 /* Arch specific code should not do async PF in this case */
172 if (unlikely(kvm_is_error_hva(hva)))
e8c22266 173 return false;
af585b92
GN
174
175 /*
176 * do alloc nowait since if we are going to sleep anyway we
177 * may as well sleep faulting in page
178 */
d7444794 179 work = kmem_cache_zalloc(async_pf_cache, GFP_NOWAIT | __GFP_NOWARN);
af585b92 180 if (!work)
e8c22266 181 return false;
af585b92 182
f2e10669 183 work->wakeup_all = false;
af585b92 184 work->vcpu = vcpu;
736c291c 185 work->cr2_or_gpa = cr2_or_gpa;
e0ead41a 186 work->addr = hva;
af585b92
GN
187 work->arch = *arch;
188 work->mm = current->mm;
3fce371b 189 mmget(work->mm);
af585b92
GN
190 kvm_get_kvm(work->vcpu->kvm);
191
af585b92 192 INIT_WORK(&work->work, async_pf_execute);
af585b92
GN
193
194 list_add_tail(&work->queue, &vcpu->async_pf.queue);
195 vcpu->async_pf.queued++;
2a18b7e7 196 work->notpresent_injected = kvm_arch_async_page_not_present(vcpu, work);
7863e346
VK
197
198 schedule_work(&work->work);
199
e8c22266 200 return true;
af585b92 201}
344d9588
GN
202
203int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu)
204{
205 struct kvm_async_pf *work;
557a961a 206 bool first;
344d9588 207
64f638c7 208 if (!list_empty_careful(&vcpu->async_pf.done))
344d9588
GN
209 return 0;
210
211 work = kmem_cache_zalloc(async_pf_cache, GFP_ATOMIC);
212 if (!work)
213 return -ENOMEM;
214
f2e10669 215 work->wakeup_all = true;
344d9588
GN
216 INIT_LIST_HEAD(&work->queue); /* for list_del to work */
217
64f638c7 218 spin_lock(&vcpu->async_pf.lock);
557a961a 219 first = list_empty(&vcpu->async_pf.done);
344d9588 220 list_add_tail(&work->link, &vcpu->async_pf.done);
64f638c7
XG
221 spin_unlock(&vcpu->async_pf.lock);
222
557a961a
VK
223 if (!IS_ENABLED(CONFIG_KVM_ASYNC_PF_SYNC) && first)
224 kvm_arch_async_page_present_queued(vcpu);
225
344d9588
GN
226 vcpu->async_pf.queued++;
227 return 0;
228}