]>
Commit | Line | Data |
---|---|---|
6aa8b732 AK |
1 | /* |
2 | * Kernel-based Virtual Machine driver for Linux | |
3 | * | |
4 | * This module enables machines with Intel VT-x extensions to run virtual | |
5 | * machines without emulation or binary translation. | |
6 | * | |
7 | * Copyright (C) 2006 Qumranet, Inc. | |
9611c187 | 8 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
6aa8b732 AK |
9 | * |
10 | * Authors: | |
11 | * Avi Kivity <[email protected]> | |
12 | * Yaniv Kamay <[email protected]> | |
13 | * | |
14 | * This work is licensed under the terms of the GNU GPL, version 2. See | |
15 | * the COPYING file in the top-level directory. | |
16 | * | |
17 | */ | |
18 | ||
af669ac6 | 19 | #include <kvm/iodev.h> |
6aa8b732 | 20 | |
edf88417 | 21 | #include <linux/kvm_host.h> |
6aa8b732 AK |
22 | #include <linux/kvm.h> |
23 | #include <linux/module.h> | |
24 | #include <linux/errno.h> | |
6aa8b732 | 25 | #include <linux/percpu.h> |
6aa8b732 AK |
26 | #include <linux/mm.h> |
27 | #include <linux/miscdevice.h> | |
28 | #include <linux/vmalloc.h> | |
6aa8b732 | 29 | #include <linux/reboot.h> |
6aa8b732 AK |
30 | #include <linux/debugfs.h> |
31 | #include <linux/highmem.h> | |
32 | #include <linux/file.h> | |
fb3600cc | 33 | #include <linux/syscore_ops.h> |
774c47f1 | 34 | #include <linux/cpu.h> |
e8edc6e0 | 35 | #include <linux/sched.h> |
d9e368d6 AK |
36 | #include <linux/cpumask.h> |
37 | #include <linux/smp.h> | |
d6d28168 | 38 | #include <linux/anon_inodes.h> |
04d2cc77 | 39 | #include <linux/profile.h> |
7aa81cc0 | 40 | #include <linux/kvm_para.h> |
6fc138d2 | 41 | #include <linux/pagemap.h> |
8d4e1288 | 42 | #include <linux/mman.h> |
35149e21 | 43 | #include <linux/swap.h> |
e56d532f | 44 | #include <linux/bitops.h> |
547de29e | 45 | #include <linux/spinlock.h> |
6ff5894c | 46 | #include <linux/compat.h> |
bc6678a3 | 47 | #include <linux/srcu.h> |
8f0b1ab6 | 48 | #include <linux/hugetlb.h> |
5a0e3ad6 | 49 | #include <linux/slab.h> |
743eeb0b SL |
50 | #include <linux/sort.h> |
51 | #include <linux/bsearch.h> | |
6aa8b732 | 52 | |
e495606d | 53 | #include <asm/processor.h> |
e495606d | 54 | #include <asm/io.h> |
2ea75be3 | 55 | #include <asm/ioctl.h> |
e495606d | 56 | #include <asm/uaccess.h> |
3e021bf5 | 57 | #include <asm/pgtable.h> |
6aa8b732 | 58 | |
5f94c174 | 59 | #include "coalesced_mmio.h" |
af585b92 | 60 | #include "async_pf.h" |
3c3c29fd | 61 | #include "vfio.h" |
5f94c174 | 62 | |
229456fc MT |
63 | #define CREATE_TRACE_POINTS |
64 | #include <trace/events/kvm.h> | |
65 | ||
536a6f88 JF |
66 | /* Worst case buffer size needed for holding an integer. */ |
67 | #define ITOA_MAX_LEN 12 | |
68 | ||
6aa8b732 AK |
69 | MODULE_AUTHOR("Qumranet"); |
70 | MODULE_LICENSE("GPL"); | |
71 | ||
920552b2 DH |
72 | /* Architectures should define their poll value according to the halt latency */ |
73 | static unsigned int halt_poll_ns = KVM_HALT_POLL_NS_DEFAULT; | |
f7819512 PB |
74 | module_param(halt_poll_ns, uint, S_IRUGO | S_IWUSR); |
75 | ||
aca6ff29 WL |
76 | /* Default doubles per-vcpu halt_poll_ns. */ |
77 | static unsigned int halt_poll_ns_grow = 2; | |
6b6de68c | 78 | module_param(halt_poll_ns_grow, uint, S_IRUGO | S_IWUSR); |
aca6ff29 WL |
79 | |
80 | /* Default resets per-vcpu halt_poll_ns . */ | |
81 | static unsigned int halt_poll_ns_shrink; | |
6b6de68c | 82 | module_param(halt_poll_ns_shrink, uint, S_IRUGO | S_IWUSR); |
aca6ff29 | 83 | |
fa40a821 MT |
84 | /* |
85 | * Ordering of locks: | |
86 | * | |
b7d409de | 87 | * kvm->lock --> kvm->slots_lock --> kvm->irq_lock |
fa40a821 MT |
88 | */ |
89 | ||
2f303b74 | 90 | DEFINE_SPINLOCK(kvm_lock); |
4a937f96 | 91 | static DEFINE_RAW_SPINLOCK(kvm_count_lock); |
e9b11c17 | 92 | LIST_HEAD(vm_list); |
133de902 | 93 | |
7f59f492 | 94 | static cpumask_var_t cpus_hardware_enabled; |
f4fee932 | 95 | static int kvm_usage_count; |
10474ae8 | 96 | static atomic_t hardware_enable_failed; |
1b6c0168 | 97 | |
c16f862d RR |
98 | struct kmem_cache *kvm_vcpu_cache; |
99 | EXPORT_SYMBOL_GPL(kvm_vcpu_cache); | |
1165f5fe | 100 | |
15ad7146 AK |
101 | static __read_mostly struct preempt_ops kvm_preempt_ops; |
102 | ||
76f7c879 | 103 | struct dentry *kvm_debugfs_dir; |
e23a808b | 104 | EXPORT_SYMBOL_GPL(kvm_debugfs_dir); |
6aa8b732 | 105 | |
536a6f88 JF |
106 | static int kvm_debugfs_num_entries; |
107 | static const struct file_operations *stat_fops_per_vm[]; | |
108 | ||
bccf2150 AK |
109 | static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl, |
110 | unsigned long arg); | |
de8e5d74 | 111 | #ifdef CONFIG_KVM_COMPAT |
1dda606c AG |
112 | static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl, |
113 | unsigned long arg); | |
114 | #endif | |
10474ae8 AG |
115 | static int hardware_enable_all(void); |
116 | static void hardware_disable_all(void); | |
bccf2150 | 117 | |
e93f8a0f | 118 | static void kvm_io_bus_destroy(struct kvm_io_bus *bus); |
7940876e | 119 | |
ba049e93 | 120 | static void kvm_release_pfn_dirty(kvm_pfn_t pfn); |
bc009e43 | 121 | static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot, gfn_t gfn); |
e93f8a0f | 122 | |
52480137 | 123 | __visible bool kvm_rebooting; |
b7c4145b | 124 | EXPORT_SYMBOL_GPL(kvm_rebooting); |
4ecac3fd | 125 | |
54dee993 MT |
126 | static bool largepages_enabled = true; |
127 | ||
ba049e93 | 128 | bool kvm_is_reserved_pfn(kvm_pfn_t pfn) |
cbff90a7 | 129 | { |
11feeb49 | 130 | if (pfn_valid(pfn)) |
bf4bea8e | 131 | return PageReserved(pfn_to_page(pfn)); |
cbff90a7 BAY |
132 | |
133 | return true; | |
134 | } | |
135 | ||
bccf2150 AK |
136 | /* |
137 | * Switches to specified vcpu, until a matching vcpu_put() | |
138 | */ | |
9fc77441 | 139 | int vcpu_load(struct kvm_vcpu *vcpu) |
6aa8b732 | 140 | { |
15ad7146 AK |
141 | int cpu; |
142 | ||
9fc77441 MT |
143 | if (mutex_lock_killable(&vcpu->mutex)) |
144 | return -EINTR; | |
15ad7146 AK |
145 | cpu = get_cpu(); |
146 | preempt_notifier_register(&vcpu->preempt_notifier); | |
313a3dc7 | 147 | kvm_arch_vcpu_load(vcpu, cpu); |
15ad7146 | 148 | put_cpu(); |
9fc77441 | 149 | return 0; |
6aa8b732 | 150 | } |
2f1fe811 | 151 | EXPORT_SYMBOL_GPL(vcpu_load); |
6aa8b732 | 152 | |
313a3dc7 | 153 | void vcpu_put(struct kvm_vcpu *vcpu) |
6aa8b732 | 154 | { |
15ad7146 | 155 | preempt_disable(); |
313a3dc7 | 156 | kvm_arch_vcpu_put(vcpu); |
15ad7146 AK |
157 | preempt_notifier_unregister(&vcpu->preempt_notifier); |
158 | preempt_enable(); | |
6aa8b732 AK |
159 | mutex_unlock(&vcpu->mutex); |
160 | } | |
2f1fe811 | 161 | EXPORT_SYMBOL_GPL(vcpu_put); |
6aa8b732 | 162 | |
d9e368d6 AK |
163 | static void ack_flush(void *_completed) |
164 | { | |
d9e368d6 AK |
165 | } |
166 | ||
445b8236 | 167 | bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req) |
d9e368d6 | 168 | { |
597a5f55 | 169 | int i, cpu, me; |
6ef7a1bc RR |
170 | cpumask_var_t cpus; |
171 | bool called = true; | |
d9e368d6 | 172 | struct kvm_vcpu *vcpu; |
d9e368d6 | 173 | |
79f55997 | 174 | zalloc_cpumask_var(&cpus, GFP_ATOMIC); |
6ef7a1bc | 175 | |
3cba4130 | 176 | me = get_cpu(); |
988a2cae | 177 | kvm_for_each_vcpu(i, vcpu, kvm) { |
3cba4130 | 178 | kvm_make_request(req, vcpu); |
d9e368d6 | 179 | cpu = vcpu->cpu; |
6b7e2d09 | 180 | |
a30a0509 LT |
181 | /* Set ->requests bit before we read ->mode. */ |
182 | smp_mb__after_atomic(); | |
6b7e2d09 XG |
183 | |
184 | if (cpus != NULL && cpu != -1 && cpu != me && | |
185 | kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE) | |
6ef7a1bc | 186 | cpumask_set_cpu(cpu, cpus); |
49846896 | 187 | } |
6ef7a1bc RR |
188 | if (unlikely(cpus == NULL)) |
189 | smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1); | |
190 | else if (!cpumask_empty(cpus)) | |
191 | smp_call_function_many(cpus, ack_flush, NULL, 1); | |
192 | else | |
193 | called = false; | |
3cba4130 | 194 | put_cpu(); |
6ef7a1bc | 195 | free_cpumask_var(cpus); |
49846896 | 196 | return called; |
d9e368d6 AK |
197 | } |
198 | ||
a6d51016 | 199 | #ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL |
49846896 | 200 | void kvm_flush_remote_tlbs(struct kvm *kvm) |
2e53d63a | 201 | { |
4ae3cb3a LT |
202 | /* |
203 | * Read tlbs_dirty before setting KVM_REQ_TLB_FLUSH in | |
204 | * kvm_make_all_cpus_request. | |
205 | */ | |
206 | long dirty_count = smp_load_acquire(&kvm->tlbs_dirty); | |
207 | ||
208 | /* | |
209 | * We want to publish modifications to the page tables before reading | |
210 | * mode. Pairs with a memory barrier in arch-specific code. | |
211 | * - x86: smp_mb__after_srcu_read_unlock in vcpu_enter_guest | |
212 | * and smp_mb in walk_shadow_page_lockless_begin/end. | |
213 | * - powerpc: smp_mb in kvmppc_prepare_to_enter. | |
214 | * | |
215 | * There is already an smp_mb__after_atomic() before | |
216 | * kvm_make_all_cpus_request() reads vcpu->mode. We reuse that | |
217 | * barrier here. | |
218 | */ | |
445b8236 | 219 | if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH)) |
49846896 | 220 | ++kvm->stat.remote_tlb_flush; |
a086f6a1 | 221 | cmpxchg(&kvm->tlbs_dirty, dirty_count, 0); |
2e53d63a | 222 | } |
2ba9f0d8 | 223 | EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs); |
a6d51016 | 224 | #endif |
2e53d63a | 225 | |
49846896 RR |
226 | void kvm_reload_remote_mmus(struct kvm *kvm) |
227 | { | |
445b8236 | 228 | kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD); |
49846896 | 229 | } |
2e53d63a | 230 | |
fb3f0f51 RR |
231 | int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id) |
232 | { | |
233 | struct page *page; | |
234 | int r; | |
235 | ||
236 | mutex_init(&vcpu->mutex); | |
237 | vcpu->cpu = -1; | |
fb3f0f51 RR |
238 | vcpu->kvm = kvm; |
239 | vcpu->vcpu_id = id; | |
34bb10b7 | 240 | vcpu->pid = NULL; |
8577370f | 241 | init_swait_queue_head(&vcpu->wq); |
af585b92 | 242 | kvm_async_pf_vcpu_init(vcpu); |
fb3f0f51 | 243 | |
bf9f6ac8 FW |
244 | vcpu->pre_pcpu = -1; |
245 | INIT_LIST_HEAD(&vcpu->blocked_vcpu_list); | |
246 | ||
fb3f0f51 RR |
247 | page = alloc_page(GFP_KERNEL | __GFP_ZERO); |
248 | if (!page) { | |
249 | r = -ENOMEM; | |
250 | goto fail; | |
251 | } | |
252 | vcpu->run = page_address(page); | |
253 | ||
4c088493 R |
254 | kvm_vcpu_set_in_spin_loop(vcpu, false); |
255 | kvm_vcpu_set_dy_eligible(vcpu, false); | |
3a08a8f9 | 256 | vcpu->preempted = false; |
4c088493 | 257 | |
e9b11c17 | 258 | r = kvm_arch_vcpu_init(vcpu); |
fb3f0f51 | 259 | if (r < 0) |
e9b11c17 | 260 | goto fail_free_run; |
fb3f0f51 RR |
261 | return 0; |
262 | ||
fb3f0f51 RR |
263 | fail_free_run: |
264 | free_page((unsigned long)vcpu->run); | |
265 | fail: | |
76fafa5e | 266 | return r; |
fb3f0f51 RR |
267 | } |
268 | EXPORT_SYMBOL_GPL(kvm_vcpu_init); | |
269 | ||
270 | void kvm_vcpu_uninit(struct kvm_vcpu *vcpu) | |
271 | { | |
34bb10b7 | 272 | put_pid(vcpu->pid); |
e9b11c17 | 273 | kvm_arch_vcpu_uninit(vcpu); |
fb3f0f51 RR |
274 | free_page((unsigned long)vcpu->run); |
275 | } | |
276 | EXPORT_SYMBOL_GPL(kvm_vcpu_uninit); | |
277 | ||
e930bffe AA |
278 | #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER) |
279 | static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn) | |
280 | { | |
281 | return container_of(mn, struct kvm, mmu_notifier); | |
282 | } | |
283 | ||
284 | static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn, | |
285 | struct mm_struct *mm, | |
286 | unsigned long address) | |
287 | { | |
288 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
bc6678a3 | 289 | int need_tlb_flush, idx; |
e930bffe AA |
290 | |
291 | /* | |
292 | * When ->invalidate_page runs, the linux pte has been zapped | |
293 | * already but the page is still allocated until | |
294 | * ->invalidate_page returns. So if we increase the sequence | |
295 | * here the kvm page fault will notice if the spte can't be | |
296 | * established because the page is going to be freed. If | |
297 | * instead the kvm page fault establishes the spte before | |
298 | * ->invalidate_page runs, kvm_unmap_hva will release it | |
299 | * before returning. | |
300 | * | |
301 | * The sequence increase only need to be seen at spin_unlock | |
302 | * time, and not at spin_lock time. | |
303 | * | |
304 | * Increasing the sequence after the spin_unlock would be | |
305 | * unsafe because the kvm page fault could then establish the | |
306 | * pte after kvm_unmap_hva returned, without noticing the page | |
307 | * is going to be freed. | |
308 | */ | |
bc6678a3 | 309 | idx = srcu_read_lock(&kvm->srcu); |
e930bffe | 310 | spin_lock(&kvm->mmu_lock); |
565f3be2 | 311 | |
e930bffe | 312 | kvm->mmu_notifier_seq++; |
a4ee1ca4 | 313 | need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty; |
e930bffe AA |
314 | /* we've to flush the tlb before the pages can be freed */ |
315 | if (need_tlb_flush) | |
316 | kvm_flush_remote_tlbs(kvm); | |
317 | ||
565f3be2 | 318 | spin_unlock(&kvm->mmu_lock); |
fe71557a TC |
319 | |
320 | kvm_arch_mmu_notifier_invalidate_page(kvm, address); | |
321 | ||
565f3be2 | 322 | srcu_read_unlock(&kvm->srcu, idx); |
e930bffe AA |
323 | } |
324 | ||
3da0dd43 IE |
325 | static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn, |
326 | struct mm_struct *mm, | |
327 | unsigned long address, | |
328 | pte_t pte) | |
329 | { | |
330 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
bc6678a3 | 331 | int idx; |
3da0dd43 | 332 | |
bc6678a3 | 333 | idx = srcu_read_lock(&kvm->srcu); |
3da0dd43 IE |
334 | spin_lock(&kvm->mmu_lock); |
335 | kvm->mmu_notifier_seq++; | |
336 | kvm_set_spte_hva(kvm, address, pte); | |
337 | spin_unlock(&kvm->mmu_lock); | |
bc6678a3 | 338 | srcu_read_unlock(&kvm->srcu, idx); |
3da0dd43 IE |
339 | } |
340 | ||
e930bffe AA |
341 | static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn, |
342 | struct mm_struct *mm, | |
343 | unsigned long start, | |
344 | unsigned long end) | |
345 | { | |
346 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
bc6678a3 | 347 | int need_tlb_flush = 0, idx; |
e930bffe | 348 | |
bc6678a3 | 349 | idx = srcu_read_lock(&kvm->srcu); |
e930bffe AA |
350 | spin_lock(&kvm->mmu_lock); |
351 | /* | |
352 | * The count increase must become visible at unlock time as no | |
353 | * spte can be established without taking the mmu_lock and | |
354 | * count is also read inside the mmu_lock critical section. | |
355 | */ | |
356 | kvm->mmu_notifier_count++; | |
b3ae2096 | 357 | need_tlb_flush = kvm_unmap_hva_range(kvm, start, end); |
a4ee1ca4 | 358 | need_tlb_flush |= kvm->tlbs_dirty; |
e930bffe AA |
359 | /* we've to flush the tlb before the pages can be freed */ |
360 | if (need_tlb_flush) | |
361 | kvm_flush_remote_tlbs(kvm); | |
565f3be2 TY |
362 | |
363 | spin_unlock(&kvm->mmu_lock); | |
364 | srcu_read_unlock(&kvm->srcu, idx); | |
e930bffe AA |
365 | } |
366 | ||
367 | static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn, | |
368 | struct mm_struct *mm, | |
369 | unsigned long start, | |
370 | unsigned long end) | |
371 | { | |
372 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
373 | ||
374 | spin_lock(&kvm->mmu_lock); | |
375 | /* | |
376 | * This sequence increase will notify the kvm page fault that | |
377 | * the page that is going to be mapped in the spte could have | |
378 | * been freed. | |
379 | */ | |
380 | kvm->mmu_notifier_seq++; | |
a355aa54 | 381 | smp_wmb(); |
e930bffe AA |
382 | /* |
383 | * The above sequence increase must be visible before the | |
a355aa54 PM |
384 | * below count decrease, which is ensured by the smp_wmb above |
385 | * in conjunction with the smp_rmb in mmu_notifier_retry(). | |
e930bffe AA |
386 | */ |
387 | kvm->mmu_notifier_count--; | |
388 | spin_unlock(&kvm->mmu_lock); | |
389 | ||
390 | BUG_ON(kvm->mmu_notifier_count < 0); | |
391 | } | |
392 | ||
393 | static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn, | |
394 | struct mm_struct *mm, | |
57128468 ALC |
395 | unsigned long start, |
396 | unsigned long end) | |
e930bffe AA |
397 | { |
398 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
bc6678a3 | 399 | int young, idx; |
e930bffe | 400 | |
bc6678a3 | 401 | idx = srcu_read_lock(&kvm->srcu); |
e930bffe | 402 | spin_lock(&kvm->mmu_lock); |
e930bffe | 403 | |
57128468 | 404 | young = kvm_age_hva(kvm, start, end); |
e930bffe AA |
405 | if (young) |
406 | kvm_flush_remote_tlbs(kvm); | |
407 | ||
565f3be2 TY |
408 | spin_unlock(&kvm->mmu_lock); |
409 | srcu_read_unlock(&kvm->srcu, idx); | |
410 | ||
e930bffe AA |
411 | return young; |
412 | } | |
413 | ||
1d7715c6 VD |
414 | static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn, |
415 | struct mm_struct *mm, | |
416 | unsigned long start, | |
417 | unsigned long end) | |
418 | { | |
419 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
420 | int young, idx; | |
421 | ||
422 | idx = srcu_read_lock(&kvm->srcu); | |
423 | spin_lock(&kvm->mmu_lock); | |
424 | /* | |
425 | * Even though we do not flush TLB, this will still adversely | |
426 | * affect performance on pre-Haswell Intel EPT, where there is | |
427 | * no EPT Access Bit to clear so that we have to tear down EPT | |
428 | * tables instead. If we find this unacceptable, we can always | |
429 | * add a parameter to kvm_age_hva so that it effectively doesn't | |
430 | * do anything on clear_young. | |
431 | * | |
432 | * Also note that currently we never issue secondary TLB flushes | |
433 | * from clear_young, leaving this job up to the regular system | |
434 | * cadence. If we find this inaccurate, we might come up with a | |
435 | * more sophisticated heuristic later. | |
436 | */ | |
437 | young = kvm_age_hva(kvm, start, end); | |
438 | spin_unlock(&kvm->mmu_lock); | |
439 | srcu_read_unlock(&kvm->srcu, idx); | |
440 | ||
441 | return young; | |
442 | } | |
443 | ||
8ee53820 AA |
444 | static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn, |
445 | struct mm_struct *mm, | |
446 | unsigned long address) | |
447 | { | |
448 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
449 | int young, idx; | |
450 | ||
451 | idx = srcu_read_lock(&kvm->srcu); | |
452 | spin_lock(&kvm->mmu_lock); | |
453 | young = kvm_test_age_hva(kvm, address); | |
454 | spin_unlock(&kvm->mmu_lock); | |
455 | srcu_read_unlock(&kvm->srcu, idx); | |
456 | ||
457 | return young; | |
458 | } | |
459 | ||
85db06e5 MT |
460 | static void kvm_mmu_notifier_release(struct mmu_notifier *mn, |
461 | struct mm_struct *mm) | |
462 | { | |
463 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
eda2beda LJ |
464 | int idx; |
465 | ||
466 | idx = srcu_read_lock(&kvm->srcu); | |
2df72e9b | 467 | kvm_arch_flush_shadow_all(kvm); |
eda2beda | 468 | srcu_read_unlock(&kvm->srcu, idx); |
85db06e5 MT |
469 | } |
470 | ||
e930bffe AA |
471 | static const struct mmu_notifier_ops kvm_mmu_notifier_ops = { |
472 | .invalidate_page = kvm_mmu_notifier_invalidate_page, | |
473 | .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start, | |
474 | .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end, | |
475 | .clear_flush_young = kvm_mmu_notifier_clear_flush_young, | |
1d7715c6 | 476 | .clear_young = kvm_mmu_notifier_clear_young, |
8ee53820 | 477 | .test_young = kvm_mmu_notifier_test_young, |
3da0dd43 | 478 | .change_pte = kvm_mmu_notifier_change_pte, |
85db06e5 | 479 | .release = kvm_mmu_notifier_release, |
e930bffe | 480 | }; |
4c07b0a4 AK |
481 | |
482 | static int kvm_init_mmu_notifier(struct kvm *kvm) | |
483 | { | |
484 | kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops; | |
485 | return mmu_notifier_register(&kvm->mmu_notifier, current->mm); | |
486 | } | |
487 | ||
488 | #else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */ | |
489 | ||
490 | static int kvm_init_mmu_notifier(struct kvm *kvm) | |
491 | { | |
492 | return 0; | |
493 | } | |
494 | ||
e930bffe AA |
495 | #endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */ |
496 | ||
a47d2b07 | 497 | static struct kvm_memslots *kvm_alloc_memslots(void) |
bf3e05bc XG |
498 | { |
499 | int i; | |
a47d2b07 | 500 | struct kvm_memslots *slots; |
bf3e05bc | 501 | |
a47d2b07 PB |
502 | slots = kvm_kvzalloc(sizeof(struct kvm_memslots)); |
503 | if (!slots) | |
504 | return NULL; | |
505 | ||
506 | /* | |
507 | * Init kvm generation close to the maximum to easily test the | |
508 | * code of handling generation number wrap-around. | |
509 | */ | |
510 | slots->generation = -150; | |
bf3e05bc | 511 | for (i = 0; i < KVM_MEM_SLOTS_NUM; i++) |
f85e2cb5 | 512 | slots->id_to_index[i] = slots->memslots[i].id = i; |
a47d2b07 PB |
513 | |
514 | return slots; | |
515 | } | |
516 | ||
517 | static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot) | |
518 | { | |
519 | if (!memslot->dirty_bitmap) | |
520 | return; | |
521 | ||
522 | kvfree(memslot->dirty_bitmap); | |
523 | memslot->dirty_bitmap = NULL; | |
524 | } | |
525 | ||
526 | /* | |
527 | * Free any memory in @free but not in @dont. | |
528 | */ | |
529 | static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free, | |
530 | struct kvm_memory_slot *dont) | |
531 | { | |
532 | if (!dont || free->dirty_bitmap != dont->dirty_bitmap) | |
533 | kvm_destroy_dirty_bitmap(free); | |
534 | ||
535 | kvm_arch_free_memslot(kvm, free, dont); | |
536 | ||
537 | free->npages = 0; | |
538 | } | |
539 | ||
540 | static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots) | |
541 | { | |
542 | struct kvm_memory_slot *memslot; | |
543 | ||
544 | if (!slots) | |
545 | return; | |
546 | ||
547 | kvm_for_each_memslot(memslot, slots) | |
548 | kvm_free_memslot(kvm, memslot, NULL); | |
549 | ||
550 | kvfree(slots); | |
bf3e05bc XG |
551 | } |
552 | ||
536a6f88 JF |
553 | static void kvm_destroy_vm_debugfs(struct kvm *kvm) |
554 | { | |
555 | int i; | |
556 | ||
557 | if (!kvm->debugfs_dentry) | |
558 | return; | |
559 | ||
560 | debugfs_remove_recursive(kvm->debugfs_dentry); | |
561 | ||
562 | for (i = 0; i < kvm_debugfs_num_entries; i++) | |
563 | kfree(kvm->debugfs_stat_data[i]); | |
564 | kfree(kvm->debugfs_stat_data); | |
565 | } | |
566 | ||
567 | static int kvm_create_vm_debugfs(struct kvm *kvm, int fd) | |
568 | { | |
569 | char dir_name[ITOA_MAX_LEN * 2]; | |
570 | struct kvm_stat_data *stat_data; | |
571 | struct kvm_stats_debugfs_item *p; | |
572 | ||
573 | if (!debugfs_initialized()) | |
574 | return 0; | |
575 | ||
576 | snprintf(dir_name, sizeof(dir_name), "%d-%d", task_pid_nr(current), fd); | |
577 | kvm->debugfs_dentry = debugfs_create_dir(dir_name, | |
578 | kvm_debugfs_dir); | |
579 | if (!kvm->debugfs_dentry) | |
580 | return -ENOMEM; | |
581 | ||
582 | kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries, | |
583 | sizeof(*kvm->debugfs_stat_data), | |
584 | GFP_KERNEL); | |
585 | if (!kvm->debugfs_stat_data) | |
586 | return -ENOMEM; | |
587 | ||
588 | for (p = debugfs_entries; p->name; p++) { | |
589 | stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL); | |
590 | if (!stat_data) | |
591 | return -ENOMEM; | |
592 | ||
593 | stat_data->kvm = kvm; | |
594 | stat_data->offset = p->offset; | |
595 | kvm->debugfs_stat_data[p - debugfs_entries] = stat_data; | |
596 | if (!debugfs_create_file(p->name, 0444, | |
597 | kvm->debugfs_dentry, | |
598 | stat_data, | |
599 | stat_fops_per_vm[p->kind])) | |
600 | return -ENOMEM; | |
601 | } | |
602 | return 0; | |
603 | } | |
604 | ||
e08b9637 | 605 | static struct kvm *kvm_create_vm(unsigned long type) |
6aa8b732 | 606 | { |
d89f5eff JK |
607 | int r, i; |
608 | struct kvm *kvm = kvm_arch_alloc_vm(); | |
6aa8b732 | 609 | |
d89f5eff JK |
610 | if (!kvm) |
611 | return ERR_PTR(-ENOMEM); | |
612 | ||
e9ad4ec8 PB |
613 | spin_lock_init(&kvm->mmu_lock); |
614 | atomic_inc(¤t->mm->mm_count); | |
615 | kvm->mm = current->mm; | |
616 | kvm_eventfd_init(kvm); | |
617 | mutex_init(&kvm->lock); | |
618 | mutex_init(&kvm->irq_lock); | |
619 | mutex_init(&kvm->slots_lock); | |
620 | atomic_set(&kvm->users_count, 1); | |
621 | INIT_LIST_HEAD(&kvm->devices); | |
622 | ||
e08b9637 | 623 | r = kvm_arch_init_vm(kvm, type); |
d89f5eff | 624 | if (r) |
719d93cd | 625 | goto out_err_no_disable; |
10474ae8 AG |
626 | |
627 | r = hardware_enable_all(); | |
628 | if (r) | |
719d93cd | 629 | goto out_err_no_disable; |
10474ae8 | 630 | |
c77dcacb | 631 | #ifdef CONFIG_HAVE_KVM_IRQFD |
136bdfee | 632 | INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list); |
75858a84 | 633 | #endif |
6aa8b732 | 634 | |
1e702d9a AW |
635 | BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX); |
636 | ||
46a26bf5 | 637 | r = -ENOMEM; |
f481b069 PB |
638 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
639 | kvm->memslots[i] = kvm_alloc_memslots(); | |
640 | if (!kvm->memslots[i]) | |
641 | goto out_err_no_srcu; | |
642 | } | |
00f034a1 | 643 | |
bc6678a3 | 644 | if (init_srcu_struct(&kvm->srcu)) |
719d93cd CB |
645 | goto out_err_no_srcu; |
646 | if (init_srcu_struct(&kvm->irq_srcu)) | |
647 | goto out_err_no_irq_srcu; | |
e93f8a0f MT |
648 | for (i = 0; i < KVM_NR_BUSES; i++) { |
649 | kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus), | |
650 | GFP_KERNEL); | |
57e7fbee | 651 | if (!kvm->buses[i]) |
e93f8a0f | 652 | goto out_err; |
e93f8a0f | 653 | } |
e930bffe | 654 | |
74b5c5bf MW |
655 | r = kvm_init_mmu_notifier(kvm); |
656 | if (r) | |
657 | goto out_err; | |
658 | ||
2f303b74 | 659 | spin_lock(&kvm_lock); |
5e58cfe4 | 660 | list_add(&kvm->vm_list, &vm_list); |
2f303b74 | 661 | spin_unlock(&kvm_lock); |
d89f5eff | 662 | |
2ecd9d29 PZ |
663 | preempt_notifier_inc(); |
664 | ||
f17abe9a | 665 | return kvm; |
10474ae8 AG |
666 | |
667 | out_err: | |
719d93cd CB |
668 | cleanup_srcu_struct(&kvm->irq_srcu); |
669 | out_err_no_irq_srcu: | |
57e7fbee | 670 | cleanup_srcu_struct(&kvm->srcu); |
719d93cd | 671 | out_err_no_srcu: |
10474ae8 | 672 | hardware_disable_all(); |
719d93cd | 673 | out_err_no_disable: |
e93f8a0f MT |
674 | for (i = 0; i < KVM_NR_BUSES; i++) |
675 | kfree(kvm->buses[i]); | |
f481b069 PB |
676 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) |
677 | kvm_free_memslots(kvm, kvm->memslots[i]); | |
d89f5eff | 678 | kvm_arch_free_vm(kvm); |
e9ad4ec8 | 679 | mmdrop(current->mm); |
10474ae8 | 680 | return ERR_PTR(r); |
f17abe9a AK |
681 | } |
682 | ||
92eca8fa TY |
683 | /* |
684 | * Avoid using vmalloc for a small buffer. | |
685 | * Should not be used when the size is statically known. | |
686 | */ | |
c1a7b32a | 687 | void *kvm_kvzalloc(unsigned long size) |
92eca8fa TY |
688 | { |
689 | if (size > PAGE_SIZE) | |
690 | return vzalloc(size); | |
691 | else | |
692 | return kzalloc(size, GFP_KERNEL); | |
693 | } | |
694 | ||
07f0a7bd SW |
695 | static void kvm_destroy_devices(struct kvm *kvm) |
696 | { | |
e6e3b5a6 | 697 | struct kvm_device *dev, *tmp; |
07f0a7bd | 698 | |
e6e3b5a6 GT |
699 | list_for_each_entry_safe(dev, tmp, &kvm->devices, vm_node) { |
700 | list_del(&dev->vm_node); | |
07f0a7bd SW |
701 | dev->ops->destroy(dev); |
702 | } | |
703 | } | |
704 | ||
f17abe9a AK |
705 | static void kvm_destroy_vm(struct kvm *kvm) |
706 | { | |
e93f8a0f | 707 | int i; |
6d4e4c4f AK |
708 | struct mm_struct *mm = kvm->mm; |
709 | ||
536a6f88 | 710 | kvm_destroy_vm_debugfs(kvm); |
ad8ba2cd | 711 | kvm_arch_sync_events(kvm); |
2f303b74 | 712 | spin_lock(&kvm_lock); |
133de902 | 713 | list_del(&kvm->vm_list); |
2f303b74 | 714 | spin_unlock(&kvm_lock); |
399ec807 | 715 | kvm_free_irq_routing(kvm); |
e93f8a0f MT |
716 | for (i = 0; i < KVM_NR_BUSES; i++) |
717 | kvm_io_bus_destroy(kvm->buses[i]); | |
980da6ce | 718 | kvm_coalesced_mmio_free(kvm); |
e930bffe AA |
719 | #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER) |
720 | mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm); | |
f00be0ca | 721 | #else |
2df72e9b | 722 | kvm_arch_flush_shadow_all(kvm); |
5f94c174 | 723 | #endif |
d19a9cd2 | 724 | kvm_arch_destroy_vm(kvm); |
07f0a7bd | 725 | kvm_destroy_devices(kvm); |
f481b069 PB |
726 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) |
727 | kvm_free_memslots(kvm, kvm->memslots[i]); | |
820b3fcd | 728 | cleanup_srcu_struct(&kvm->irq_srcu); |
d89f5eff JK |
729 | cleanup_srcu_struct(&kvm->srcu); |
730 | kvm_arch_free_vm(kvm); | |
2ecd9d29 | 731 | preempt_notifier_dec(); |
10474ae8 | 732 | hardware_disable_all(); |
6d4e4c4f | 733 | mmdrop(mm); |
f17abe9a AK |
734 | } |
735 | ||
d39f13b0 IE |
736 | void kvm_get_kvm(struct kvm *kvm) |
737 | { | |
738 | atomic_inc(&kvm->users_count); | |
739 | } | |
740 | EXPORT_SYMBOL_GPL(kvm_get_kvm); | |
741 | ||
742 | void kvm_put_kvm(struct kvm *kvm) | |
743 | { | |
744 | if (atomic_dec_and_test(&kvm->users_count)) | |
745 | kvm_destroy_vm(kvm); | |
746 | } | |
747 | EXPORT_SYMBOL_GPL(kvm_put_kvm); | |
748 | ||
749 | ||
f17abe9a AK |
750 | static int kvm_vm_release(struct inode *inode, struct file *filp) |
751 | { | |
752 | struct kvm *kvm = filp->private_data; | |
753 | ||
721eecbf GH |
754 | kvm_irqfd_release(kvm); |
755 | ||
d39f13b0 | 756 | kvm_put_kvm(kvm); |
6aa8b732 AK |
757 | return 0; |
758 | } | |
759 | ||
515a0127 TY |
760 | /* |
761 | * Allocation size is twice as large as the actual dirty bitmap size. | |
93474b25 | 762 | * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed. |
515a0127 | 763 | */ |
a36a57b1 TY |
764 | static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot) |
765 | { | |
515a0127 | 766 | unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot); |
a36a57b1 | 767 | |
92eca8fa | 768 | memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes); |
a36a57b1 TY |
769 | if (!memslot->dirty_bitmap) |
770 | return -ENOMEM; | |
771 | ||
a36a57b1 TY |
772 | return 0; |
773 | } | |
774 | ||
bf3e05bc | 775 | /* |
0e60b079 IM |
776 | * Insert memslot and re-sort memslots based on their GFN, |
777 | * so binary search could be used to lookup GFN. | |
778 | * Sorting algorithm takes advantage of having initially | |
779 | * sorted array and known changed memslot position. | |
bf3e05bc | 780 | */ |
5cc15027 PB |
781 | static void update_memslots(struct kvm_memslots *slots, |
782 | struct kvm_memory_slot *new) | |
bf3e05bc | 783 | { |
8593176c PB |
784 | int id = new->id; |
785 | int i = slots->id_to_index[id]; | |
063584d4 | 786 | struct kvm_memory_slot *mslots = slots->memslots; |
f85e2cb5 | 787 | |
8593176c | 788 | WARN_ON(mslots[i].id != id); |
9c1a5d38 | 789 | if (!new->npages) { |
dbaff309 | 790 | WARN_ON(!mslots[i].npages); |
9c1a5d38 IM |
791 | if (mslots[i].npages) |
792 | slots->used_slots--; | |
793 | } else { | |
794 | if (!mslots[i].npages) | |
795 | slots->used_slots++; | |
796 | } | |
0e60b079 | 797 | |
7f379cff | 798 | while (i < KVM_MEM_SLOTS_NUM - 1 && |
0e60b079 IM |
799 | new->base_gfn <= mslots[i + 1].base_gfn) { |
800 | if (!mslots[i + 1].npages) | |
801 | break; | |
7f379cff IM |
802 | mslots[i] = mslots[i + 1]; |
803 | slots->id_to_index[mslots[i].id] = i; | |
804 | i++; | |
805 | } | |
efbeec70 PB |
806 | |
807 | /* | |
808 | * The ">=" is needed when creating a slot with base_gfn == 0, | |
809 | * so that it moves before all those with base_gfn == npages == 0. | |
810 | * | |
811 | * On the other hand, if new->npages is zero, the above loop has | |
812 | * already left i pointing to the beginning of the empty part of | |
813 | * mslots, and the ">=" would move the hole backwards in this | |
814 | * case---which is wrong. So skip the loop when deleting a slot. | |
815 | */ | |
816 | if (new->npages) { | |
817 | while (i > 0 && | |
818 | new->base_gfn >= mslots[i - 1].base_gfn) { | |
819 | mslots[i] = mslots[i - 1]; | |
820 | slots->id_to_index[mslots[i].id] = i; | |
821 | i--; | |
822 | } | |
dbaff309 PB |
823 | } else |
824 | WARN_ON_ONCE(i != slots->used_slots); | |
f85e2cb5 | 825 | |
8593176c PB |
826 | mslots[i] = *new; |
827 | slots->id_to_index[mslots[i].id] = i; | |
bf3e05bc XG |
828 | } |
829 | ||
09170a49 | 830 | static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem) |
a50d64d6 | 831 | { |
4d8b81ab XG |
832 | u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES; |
833 | ||
0f8a4de3 | 834 | #ifdef __KVM_HAVE_READONLY_MEM |
4d8b81ab XG |
835 | valid_flags |= KVM_MEM_READONLY; |
836 | #endif | |
837 | ||
838 | if (mem->flags & ~valid_flags) | |
a50d64d6 XG |
839 | return -EINVAL; |
840 | ||
841 | return 0; | |
842 | } | |
843 | ||
7ec4fb44 | 844 | static struct kvm_memslots *install_new_memslots(struct kvm *kvm, |
f481b069 | 845 | int as_id, struct kvm_memslots *slots) |
7ec4fb44 | 846 | { |
f481b069 | 847 | struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id); |
7ec4fb44 | 848 | |
ee3d1570 DM |
849 | /* |
850 | * Set the low bit in the generation, which disables SPTE caching | |
851 | * until the end of synchronize_srcu_expedited. | |
852 | */ | |
853 | WARN_ON(old_memslots->generation & 1); | |
854 | slots->generation = old_memslots->generation + 1; | |
855 | ||
f481b069 | 856 | rcu_assign_pointer(kvm->memslots[as_id], slots); |
7ec4fb44 | 857 | synchronize_srcu_expedited(&kvm->srcu); |
e59dbe09 | 858 | |
ee3d1570 DM |
859 | /* |
860 | * Increment the new memslot generation a second time. This prevents | |
861 | * vm exits that race with memslot updates from caching a memslot | |
862 | * generation that will (potentially) be valid forever. | |
863 | */ | |
864 | slots->generation++; | |
865 | ||
15f46015 | 866 | kvm_arch_memslots_updated(kvm, slots); |
e59dbe09 TY |
867 | |
868 | return old_memslots; | |
7ec4fb44 GN |
869 | } |
870 | ||
6aa8b732 AK |
871 | /* |
872 | * Allocate some memory and give it an address in the guest physical address | |
873 | * space. | |
874 | * | |
875 | * Discontiguous memory is allowed, mostly for framebuffers. | |
f78e0e2e | 876 | * |
02d5d55b | 877 | * Must be called holding kvm->slots_lock for write. |
6aa8b732 | 878 | */ |
f78e0e2e | 879 | int __kvm_set_memory_region(struct kvm *kvm, |
09170a49 | 880 | const struct kvm_userspace_memory_region *mem) |
6aa8b732 | 881 | { |
8234b22e | 882 | int r; |
6aa8b732 | 883 | gfn_t base_gfn; |
28bcb112 | 884 | unsigned long npages; |
a843fac2 | 885 | struct kvm_memory_slot *slot; |
6aa8b732 | 886 | struct kvm_memory_slot old, new; |
b7f69c55 | 887 | struct kvm_memslots *slots = NULL, *old_memslots; |
f481b069 | 888 | int as_id, id; |
f64c0398 | 889 | enum kvm_mr_change change; |
6aa8b732 | 890 | |
a50d64d6 XG |
891 | r = check_memory_region_flags(mem); |
892 | if (r) | |
893 | goto out; | |
894 | ||
6aa8b732 | 895 | r = -EINVAL; |
f481b069 PB |
896 | as_id = mem->slot >> 16; |
897 | id = (u16)mem->slot; | |
898 | ||
6aa8b732 AK |
899 | /* General sanity checks */ |
900 | if (mem->memory_size & (PAGE_SIZE - 1)) | |
901 | goto out; | |
902 | if (mem->guest_phys_addr & (PAGE_SIZE - 1)) | |
903 | goto out; | |
fa3d315a | 904 | /* We can read the guest memory with __xxx_user() later on. */ |
f481b069 | 905 | if ((id < KVM_USER_MEM_SLOTS) && |
fa3d315a | 906 | ((mem->userspace_addr & (PAGE_SIZE - 1)) || |
9e3bb6b6 HC |
907 | !access_ok(VERIFY_WRITE, |
908 | (void __user *)(unsigned long)mem->userspace_addr, | |
909 | mem->memory_size))) | |
78749809 | 910 | goto out; |
f481b069 | 911 | if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM) |
6aa8b732 AK |
912 | goto out; |
913 | if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr) | |
914 | goto out; | |
915 | ||
f481b069 | 916 | slot = id_to_memslot(__kvm_memslots(kvm, as_id), id); |
6aa8b732 AK |
917 | base_gfn = mem->guest_phys_addr >> PAGE_SHIFT; |
918 | npages = mem->memory_size >> PAGE_SHIFT; | |
919 | ||
660c22c4 TY |
920 | if (npages > KVM_MEM_MAX_NR_PAGES) |
921 | goto out; | |
922 | ||
a843fac2 | 923 | new = old = *slot; |
6aa8b732 | 924 | |
f481b069 | 925 | new.id = id; |
6aa8b732 AK |
926 | new.base_gfn = base_gfn; |
927 | new.npages = npages; | |
928 | new.flags = mem->flags; | |
929 | ||
f64c0398 TY |
930 | if (npages) { |
931 | if (!old.npages) | |
932 | change = KVM_MR_CREATE; | |
933 | else { /* Modify an existing slot. */ | |
934 | if ((mem->userspace_addr != old.userspace_addr) || | |
75d61fbc TY |
935 | (npages != old.npages) || |
936 | ((new.flags ^ old.flags) & KVM_MEM_READONLY)) | |
f64c0398 TY |
937 | goto out; |
938 | ||
939 | if (base_gfn != old.base_gfn) | |
940 | change = KVM_MR_MOVE; | |
941 | else if (new.flags != old.flags) | |
942 | change = KVM_MR_FLAGS_ONLY; | |
943 | else { /* Nothing to change. */ | |
944 | r = 0; | |
945 | goto out; | |
946 | } | |
947 | } | |
09170a49 PB |
948 | } else { |
949 | if (!old.npages) | |
950 | goto out; | |
951 | ||
f64c0398 | 952 | change = KVM_MR_DELETE; |
09170a49 PB |
953 | new.base_gfn = 0; |
954 | new.flags = 0; | |
955 | } | |
6aa8b732 | 956 | |
f64c0398 | 957 | if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) { |
0a706bee TY |
958 | /* Check for overlaps */ |
959 | r = -EEXIST; | |
f481b069 | 960 | kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) { |
a843fac2 | 961 | if ((slot->id >= KVM_USER_MEM_SLOTS) || |
f481b069 | 962 | (slot->id == id)) |
0a706bee TY |
963 | continue; |
964 | if (!((base_gfn + npages <= slot->base_gfn) || | |
965 | (base_gfn >= slot->base_gfn + slot->npages))) | |
966 | goto out; | |
967 | } | |
6aa8b732 | 968 | } |
6aa8b732 | 969 | |
6aa8b732 AK |
970 | /* Free page dirty bitmap if unneeded */ |
971 | if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES)) | |
8b6d44c7 | 972 | new.dirty_bitmap = NULL; |
6aa8b732 AK |
973 | |
974 | r = -ENOMEM; | |
f64c0398 | 975 | if (change == KVM_MR_CREATE) { |
189a2f7b | 976 | new.userspace_addr = mem->userspace_addr; |
d89cc617 | 977 | |
5587027c | 978 | if (kvm_arch_create_memslot(kvm, &new, npages)) |
db3fe4eb | 979 | goto out_free; |
6aa8b732 | 980 | } |
ec04b260 | 981 | |
6aa8b732 AK |
982 | /* Allocate page dirty bitmap if needed */ |
983 | if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) { | |
a36a57b1 | 984 | if (kvm_create_dirty_bitmap(&new) < 0) |
f78e0e2e | 985 | goto out_free; |
6aa8b732 AK |
986 | } |
987 | ||
74496134 | 988 | slots = kvm_kvzalloc(sizeof(struct kvm_memslots)); |
f2a81036 PB |
989 | if (!slots) |
990 | goto out_free; | |
f481b069 | 991 | memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots)); |
f2a81036 | 992 | |
f64c0398 | 993 | if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) { |
f481b069 | 994 | slot = id_to_memslot(slots, id); |
28a37544 XG |
995 | slot->flags |= KVM_MEMSLOT_INVALID; |
996 | ||
f481b069 | 997 | old_memslots = install_new_memslots(kvm, as_id, slots); |
bc6678a3 | 998 | |
e40f193f AW |
999 | /* slot was deleted or moved, clear iommu mapping */ |
1000 | kvm_iommu_unmap_pages(kvm, &old); | |
12d6e753 MT |
1001 | /* From this point no new shadow pages pointing to a deleted, |
1002 | * or moved, memslot will be created. | |
bc6678a3 MT |
1003 | * |
1004 | * validation of sp->gfn happens in: | |
b7d409de XL |
1005 | * - gfn_to_hva (kvm_read_guest, gfn_to_pfn) |
1006 | * - kvm_is_visible_gfn (mmu_check_roots) | |
bc6678a3 | 1007 | */ |
2df72e9b | 1008 | kvm_arch_flush_shadow_memslot(kvm, slot); |
f2a81036 PB |
1009 | |
1010 | /* | |
1011 | * We can re-use the old_memslots from above, the only difference | |
1012 | * from the currently installed memslots is the invalid flag. This | |
1013 | * will get overwritten by update_memslots anyway. | |
1014 | */ | |
b7f69c55 | 1015 | slots = old_memslots; |
bc6678a3 | 1016 | } |
34d4cb8f | 1017 | |
7b6195a9 | 1018 | r = kvm_arch_prepare_memory_region(kvm, &new, mem, change); |
f7784b8e | 1019 | if (r) |
b7f69c55 | 1020 | goto out_slots; |
f7784b8e | 1021 | |
a47d2b07 | 1022 | /* actual memory is freed via old in kvm_free_memslot below */ |
f64c0398 | 1023 | if (change == KVM_MR_DELETE) { |
bc6678a3 | 1024 | new.dirty_bitmap = NULL; |
db3fe4eb | 1025 | memset(&new.arch, 0, sizeof(new.arch)); |
bc6678a3 MT |
1026 | } |
1027 | ||
5cc15027 | 1028 | update_memslots(slots, &new); |
f481b069 | 1029 | old_memslots = install_new_memslots(kvm, as_id, slots); |
3ad82a7e | 1030 | |
f36f3f28 | 1031 | kvm_arch_commit_memory_region(kvm, mem, &old, &new, change); |
82ce2c96 | 1032 | |
a47d2b07 | 1033 | kvm_free_memslot(kvm, &old, &new); |
74496134 | 1034 | kvfree(old_memslots); |
bc6678a3 | 1035 | |
261874b0 AW |
1036 | /* |
1037 | * IOMMU mapping: New slots need to be mapped. Old slots need to be | |
75d61fbc TY |
1038 | * un-mapped and re-mapped if their base changes. Since base change |
1039 | * unmapping is handled above with slot deletion, mapping alone is | |
1040 | * needed here. Anything else the iommu might care about for existing | |
1041 | * slots (size changes, userspace addr changes and read-only flag | |
1042 | * changes) is disallowed above, so any other attribute changes getting | |
1043 | * here can be skipped. | |
261874b0 | 1044 | */ |
75d61fbc TY |
1045 | if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) { |
1046 | r = kvm_iommu_map_pages(kvm, &new); | |
e0230e13 | 1047 | return r; |
bc6678a3 MT |
1048 | } |
1049 | ||
6aa8b732 AK |
1050 | return 0; |
1051 | ||
e40f193f | 1052 | out_slots: |
74496134 | 1053 | kvfree(slots); |
f78e0e2e | 1054 | out_free: |
a47d2b07 | 1055 | kvm_free_memslot(kvm, &new, &old); |
6aa8b732 AK |
1056 | out: |
1057 | return r; | |
210c7c4d | 1058 | } |
f78e0e2e SY |
1059 | EXPORT_SYMBOL_GPL(__kvm_set_memory_region); |
1060 | ||
1061 | int kvm_set_memory_region(struct kvm *kvm, | |
09170a49 | 1062 | const struct kvm_userspace_memory_region *mem) |
f78e0e2e SY |
1063 | { |
1064 | int r; | |
1065 | ||
79fac95e | 1066 | mutex_lock(&kvm->slots_lock); |
47ae31e2 | 1067 | r = __kvm_set_memory_region(kvm, mem); |
79fac95e | 1068 | mutex_unlock(&kvm->slots_lock); |
f78e0e2e SY |
1069 | return r; |
1070 | } | |
210c7c4d IE |
1071 | EXPORT_SYMBOL_GPL(kvm_set_memory_region); |
1072 | ||
7940876e SH |
1073 | static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm, |
1074 | struct kvm_userspace_memory_region *mem) | |
210c7c4d | 1075 | { |
f481b069 | 1076 | if ((u16)mem->slot >= KVM_USER_MEM_SLOTS) |
e0d62c7f | 1077 | return -EINVAL; |
09170a49 | 1078 | |
47ae31e2 | 1079 | return kvm_set_memory_region(kvm, mem); |
6aa8b732 AK |
1080 | } |
1081 | ||
5bb064dc ZX |
1082 | int kvm_get_dirty_log(struct kvm *kvm, |
1083 | struct kvm_dirty_log *log, int *is_dirty) | |
6aa8b732 | 1084 | { |
9f6b8029 | 1085 | struct kvm_memslots *slots; |
6aa8b732 | 1086 | struct kvm_memory_slot *memslot; |
f481b069 | 1087 | int r, i, as_id, id; |
87bf6e7d | 1088 | unsigned long n; |
6aa8b732 AK |
1089 | unsigned long any = 0; |
1090 | ||
6aa8b732 | 1091 | r = -EINVAL; |
f481b069 PB |
1092 | as_id = log->slot >> 16; |
1093 | id = (u16)log->slot; | |
1094 | if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS) | |
6aa8b732 AK |
1095 | goto out; |
1096 | ||
f481b069 PB |
1097 | slots = __kvm_memslots(kvm, as_id); |
1098 | memslot = id_to_memslot(slots, id); | |
6aa8b732 AK |
1099 | r = -ENOENT; |
1100 | if (!memslot->dirty_bitmap) | |
1101 | goto out; | |
1102 | ||
87bf6e7d | 1103 | n = kvm_dirty_bitmap_bytes(memslot); |
6aa8b732 | 1104 | |
cd1a4a98 | 1105 | for (i = 0; !any && i < n/sizeof(long); ++i) |
6aa8b732 AK |
1106 | any = memslot->dirty_bitmap[i]; |
1107 | ||
1108 | r = -EFAULT; | |
1109 | if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n)) | |
1110 | goto out; | |
1111 | ||
5bb064dc ZX |
1112 | if (any) |
1113 | *is_dirty = 1; | |
6aa8b732 AK |
1114 | |
1115 | r = 0; | |
6aa8b732 | 1116 | out: |
6aa8b732 AK |
1117 | return r; |
1118 | } | |
2ba9f0d8 | 1119 | EXPORT_SYMBOL_GPL(kvm_get_dirty_log); |
6aa8b732 | 1120 | |
ba0513b5 MS |
1121 | #ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT |
1122 | /** | |
1123 | * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages | |
1124 | * are dirty write protect them for next write. | |
1125 | * @kvm: pointer to kvm instance | |
1126 | * @log: slot id and address to which we copy the log | |
1127 | * @is_dirty: flag set if any page is dirty | |
1128 | * | |
1129 | * We need to keep it in mind that VCPU threads can write to the bitmap | |
1130 | * concurrently. So, to avoid losing track of dirty pages we keep the | |
1131 | * following order: | |
1132 | * | |
1133 | * 1. Take a snapshot of the bit and clear it if needed. | |
1134 | * 2. Write protect the corresponding page. | |
1135 | * 3. Copy the snapshot to the userspace. | |
1136 | * 4. Upon return caller flushes TLB's if needed. | |
1137 | * | |
1138 | * Between 2 and 4, the guest may write to the page using the remaining TLB | |
1139 | * entry. This is not a problem because the page is reported dirty using | |
1140 | * the snapshot taken before and step 4 ensures that writes done after | |
1141 | * exiting to userspace will be logged for the next call. | |
1142 | * | |
1143 | */ | |
1144 | int kvm_get_dirty_log_protect(struct kvm *kvm, | |
1145 | struct kvm_dirty_log *log, bool *is_dirty) | |
1146 | { | |
9f6b8029 | 1147 | struct kvm_memslots *slots; |
ba0513b5 | 1148 | struct kvm_memory_slot *memslot; |
f481b069 | 1149 | int r, i, as_id, id; |
ba0513b5 MS |
1150 | unsigned long n; |
1151 | unsigned long *dirty_bitmap; | |
1152 | unsigned long *dirty_bitmap_buffer; | |
1153 | ||
1154 | r = -EINVAL; | |
f481b069 PB |
1155 | as_id = log->slot >> 16; |
1156 | id = (u16)log->slot; | |
1157 | if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS) | |
ba0513b5 MS |
1158 | goto out; |
1159 | ||
f481b069 PB |
1160 | slots = __kvm_memslots(kvm, as_id); |
1161 | memslot = id_to_memslot(slots, id); | |
ba0513b5 MS |
1162 | |
1163 | dirty_bitmap = memslot->dirty_bitmap; | |
1164 | r = -ENOENT; | |
1165 | if (!dirty_bitmap) | |
1166 | goto out; | |
1167 | ||
1168 | n = kvm_dirty_bitmap_bytes(memslot); | |
1169 | ||
1170 | dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long); | |
1171 | memset(dirty_bitmap_buffer, 0, n); | |
1172 | ||
1173 | spin_lock(&kvm->mmu_lock); | |
1174 | *is_dirty = false; | |
1175 | for (i = 0; i < n / sizeof(long); i++) { | |
1176 | unsigned long mask; | |
1177 | gfn_t offset; | |
1178 | ||
1179 | if (!dirty_bitmap[i]) | |
1180 | continue; | |
1181 | ||
1182 | *is_dirty = true; | |
1183 | ||
1184 | mask = xchg(&dirty_bitmap[i], 0); | |
1185 | dirty_bitmap_buffer[i] = mask; | |
1186 | ||
58d2930f TY |
1187 | if (mask) { |
1188 | offset = i * BITS_PER_LONG; | |
1189 | kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot, | |
1190 | offset, mask); | |
1191 | } | |
ba0513b5 MS |
1192 | } |
1193 | ||
1194 | spin_unlock(&kvm->mmu_lock); | |
1195 | ||
1196 | r = -EFAULT; | |
1197 | if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n)) | |
1198 | goto out; | |
1199 | ||
1200 | r = 0; | |
1201 | out: | |
1202 | return r; | |
1203 | } | |
1204 | EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect); | |
1205 | #endif | |
1206 | ||
db3fe4eb TY |
1207 | bool kvm_largepages_enabled(void) |
1208 | { | |
1209 | return largepages_enabled; | |
1210 | } | |
1211 | ||
54dee993 MT |
1212 | void kvm_disable_largepages(void) |
1213 | { | |
1214 | largepages_enabled = false; | |
1215 | } | |
1216 | EXPORT_SYMBOL_GPL(kvm_disable_largepages); | |
1217 | ||
49c7754c GN |
1218 | struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn) |
1219 | { | |
1220 | return __gfn_to_memslot(kvm_memslots(kvm), gfn); | |
1221 | } | |
a1f4d395 | 1222 | EXPORT_SYMBOL_GPL(gfn_to_memslot); |
6aa8b732 | 1223 | |
8e73485c PB |
1224 | struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn) |
1225 | { | |
1226 | return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn); | |
1227 | } | |
1228 | ||
33e94154 | 1229 | bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn) |
e0d62c7f | 1230 | { |
bf3e05bc | 1231 | struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn); |
e0d62c7f | 1232 | |
bbacc0c1 | 1233 | if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS || |
bf3e05bc | 1234 | memslot->flags & KVM_MEMSLOT_INVALID) |
33e94154 | 1235 | return false; |
e0d62c7f | 1236 | |
33e94154 | 1237 | return true; |
e0d62c7f IE |
1238 | } |
1239 | EXPORT_SYMBOL_GPL(kvm_is_visible_gfn); | |
1240 | ||
8f0b1ab6 JR |
1241 | unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn) |
1242 | { | |
1243 | struct vm_area_struct *vma; | |
1244 | unsigned long addr, size; | |
1245 | ||
1246 | size = PAGE_SIZE; | |
1247 | ||
1248 | addr = gfn_to_hva(kvm, gfn); | |
1249 | if (kvm_is_error_hva(addr)) | |
1250 | return PAGE_SIZE; | |
1251 | ||
1252 | down_read(¤t->mm->mmap_sem); | |
1253 | vma = find_vma(current->mm, addr); | |
1254 | if (!vma) | |
1255 | goto out; | |
1256 | ||
1257 | size = vma_kernel_pagesize(vma); | |
1258 | ||
1259 | out: | |
1260 | up_read(¤t->mm->mmap_sem); | |
1261 | ||
1262 | return size; | |
1263 | } | |
1264 | ||
4d8b81ab XG |
1265 | static bool memslot_is_readonly(struct kvm_memory_slot *slot) |
1266 | { | |
1267 | return slot->flags & KVM_MEM_READONLY; | |
1268 | } | |
1269 | ||
4d8b81ab XG |
1270 | static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn, |
1271 | gfn_t *nr_pages, bool write) | |
539cb660 | 1272 | { |
bc6678a3 | 1273 | if (!slot || slot->flags & KVM_MEMSLOT_INVALID) |
ca3a490c | 1274 | return KVM_HVA_ERR_BAD; |
48987781 | 1275 | |
4d8b81ab XG |
1276 | if (memslot_is_readonly(slot) && write) |
1277 | return KVM_HVA_ERR_RO_BAD; | |
48987781 XG |
1278 | |
1279 | if (nr_pages) | |
1280 | *nr_pages = slot->npages - (gfn - slot->base_gfn); | |
1281 | ||
4d8b81ab | 1282 | return __gfn_to_hva_memslot(slot, gfn); |
539cb660 | 1283 | } |
48987781 | 1284 | |
4d8b81ab XG |
1285 | static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn, |
1286 | gfn_t *nr_pages) | |
1287 | { | |
1288 | return __gfn_to_hva_many(slot, gfn, nr_pages, true); | |
539cb660 | 1289 | } |
48987781 | 1290 | |
4d8b81ab | 1291 | unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, |
7940876e | 1292 | gfn_t gfn) |
4d8b81ab XG |
1293 | { |
1294 | return gfn_to_hva_many(slot, gfn, NULL); | |
1295 | } | |
1296 | EXPORT_SYMBOL_GPL(gfn_to_hva_memslot); | |
1297 | ||
48987781 XG |
1298 | unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn) |
1299 | { | |
49c7754c | 1300 | return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL); |
48987781 | 1301 | } |
0d150298 | 1302 | EXPORT_SYMBOL_GPL(gfn_to_hva); |
539cb660 | 1303 | |
8e73485c PB |
1304 | unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn) |
1305 | { | |
1306 | return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL); | |
1307 | } | |
1308 | EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva); | |
1309 | ||
86ab8cff | 1310 | /* |
ba6a3541 PB |
1311 | * If writable is set to false, the hva returned by this function is only |
1312 | * allowed to be read. | |
86ab8cff | 1313 | */ |
64d83126 CD |
1314 | unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, |
1315 | gfn_t gfn, bool *writable) | |
86ab8cff | 1316 | { |
a2ac07fe GN |
1317 | unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false); |
1318 | ||
1319 | if (!kvm_is_error_hva(hva) && writable) | |
ba6a3541 PB |
1320 | *writable = !memslot_is_readonly(slot); |
1321 | ||
a2ac07fe | 1322 | return hva; |
86ab8cff XG |
1323 | } |
1324 | ||
64d83126 CD |
1325 | unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable) |
1326 | { | |
1327 | struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn); | |
1328 | ||
1329 | return gfn_to_hva_memslot_prot(slot, gfn, writable); | |
1330 | } | |
1331 | ||
8e73485c PB |
1332 | unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable) |
1333 | { | |
1334 | struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); | |
1335 | ||
1336 | return gfn_to_hva_memslot_prot(slot, gfn, writable); | |
1337 | } | |
1338 | ||
d4edcf0d DH |
1339 | static int get_user_page_nowait(unsigned long start, int write, |
1340 | struct page **page) | |
0857b9e9 GN |
1341 | { |
1342 | int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET; | |
1343 | ||
1344 | if (write) | |
1345 | flags |= FOLL_WRITE; | |
1346 | ||
d4edcf0d DH |
1347 | return __get_user_pages(current, current->mm, start, 1, flags, page, |
1348 | NULL, NULL); | |
0857b9e9 GN |
1349 | } |
1350 | ||
fafc3dba YH |
1351 | static inline int check_user_page_hwpoison(unsigned long addr) |
1352 | { | |
1353 | int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE; | |
1354 | ||
1355 | rc = __get_user_pages(current, current->mm, addr, 1, | |
1356 | flags, NULL, NULL, NULL); | |
1357 | return rc == -EHWPOISON; | |
1358 | } | |
1359 | ||
2fc84311 XG |
1360 | /* |
1361 | * The atomic path to get the writable pfn which will be stored in @pfn, | |
1362 | * true indicates success, otherwise false is returned. | |
1363 | */ | |
1364 | static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async, | |
ba049e93 | 1365 | bool write_fault, bool *writable, kvm_pfn_t *pfn) |
954bbbc2 | 1366 | { |
8d4e1288 | 1367 | struct page *page[1]; |
2fc84311 | 1368 | int npages; |
954bbbc2 | 1369 | |
2fc84311 XG |
1370 | if (!(async || atomic)) |
1371 | return false; | |
af585b92 | 1372 | |
12ce13fe XG |
1373 | /* |
1374 | * Fast pin a writable pfn only if it is a write fault request | |
1375 | * or the caller allows to map a writable pfn for a read fault | |
1376 | * request. | |
1377 | */ | |
1378 | if (!(write_fault || writable)) | |
1379 | return false; | |
612819c3 | 1380 | |
2fc84311 XG |
1381 | npages = __get_user_pages_fast(addr, 1, 1, page); |
1382 | if (npages == 1) { | |
1383 | *pfn = page_to_pfn(page[0]); | |
612819c3 | 1384 | |
2fc84311 XG |
1385 | if (writable) |
1386 | *writable = true; | |
1387 | return true; | |
1388 | } | |
af585b92 | 1389 | |
2fc84311 XG |
1390 | return false; |
1391 | } | |
612819c3 | 1392 | |
2fc84311 XG |
1393 | /* |
1394 | * The slow path to get the pfn of the specified host virtual address, | |
1395 | * 1 indicates success, -errno is returned if error is detected. | |
1396 | */ | |
1397 | static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault, | |
ba049e93 | 1398 | bool *writable, kvm_pfn_t *pfn) |
2fc84311 XG |
1399 | { |
1400 | struct page *page[1]; | |
1401 | int npages = 0; | |
612819c3 | 1402 | |
2fc84311 XG |
1403 | might_sleep(); |
1404 | ||
1405 | if (writable) | |
1406 | *writable = write_fault; | |
1407 | ||
1408 | if (async) { | |
1409 | down_read(¤t->mm->mmap_sem); | |
d4edcf0d | 1410 | npages = get_user_page_nowait(addr, write_fault, page); |
2fc84311 | 1411 | up_read(¤t->mm->mmap_sem); |
0664e57f AA |
1412 | } else |
1413 | npages = __get_user_pages_unlocked(current, current->mm, addr, 1, | |
1414 | write_fault, 0, page, | |
1415 | FOLL_TOUCH|FOLL_HWPOISON); | |
2fc84311 XG |
1416 | if (npages != 1) |
1417 | return npages; | |
1418 | ||
1419 | /* map read fault as writable if possible */ | |
12ce13fe | 1420 | if (unlikely(!write_fault) && writable) { |
2fc84311 XG |
1421 | struct page *wpage[1]; |
1422 | ||
1423 | npages = __get_user_pages_fast(addr, 1, 1, wpage); | |
1424 | if (npages == 1) { | |
1425 | *writable = true; | |
1426 | put_page(page[0]); | |
1427 | page[0] = wpage[0]; | |
612819c3 | 1428 | } |
2fc84311 XG |
1429 | |
1430 | npages = 1; | |
887c08ac | 1431 | } |
2fc84311 XG |
1432 | *pfn = page_to_pfn(page[0]); |
1433 | return npages; | |
1434 | } | |
539cb660 | 1435 | |
4d8b81ab XG |
1436 | static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault) |
1437 | { | |
1438 | if (unlikely(!(vma->vm_flags & VM_READ))) | |
1439 | return false; | |
2e2e3738 | 1440 | |
4d8b81ab XG |
1441 | if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE)))) |
1442 | return false; | |
887c08ac | 1443 | |
4d8b81ab XG |
1444 | return true; |
1445 | } | |
bf998156 | 1446 | |
12ce13fe XG |
1447 | /* |
1448 | * Pin guest page in memory and return its pfn. | |
1449 | * @addr: host virtual address which maps memory to the guest | |
1450 | * @atomic: whether this function can sleep | |
1451 | * @async: whether this function need to wait IO complete if the | |
1452 | * host page is not in the memory | |
1453 | * @write_fault: whether we should get a writable host page | |
1454 | * @writable: whether it allows to map a writable host page for !@write_fault | |
1455 | * | |
1456 | * The function will map a writable host page for these two cases: | |
1457 | * 1): @write_fault = true | |
1458 | * 2): @write_fault = false && @writable, @writable will tell the caller | |
1459 | * whether the mapping is writable. | |
1460 | */ | |
ba049e93 | 1461 | static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async, |
2fc84311 XG |
1462 | bool write_fault, bool *writable) |
1463 | { | |
1464 | struct vm_area_struct *vma; | |
ba049e93 | 1465 | kvm_pfn_t pfn = 0; |
2fc84311 | 1466 | int npages; |
2e2e3738 | 1467 | |
2fc84311 XG |
1468 | /* we can do it either atomically or asynchronously, not both */ |
1469 | BUG_ON(atomic && async); | |
8d4e1288 | 1470 | |
2fc84311 XG |
1471 | if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn)) |
1472 | return pfn; | |
1473 | ||
1474 | if (atomic) | |
1475 | return KVM_PFN_ERR_FAULT; | |
1476 | ||
1477 | npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn); | |
1478 | if (npages == 1) | |
1479 | return pfn; | |
8d4e1288 | 1480 | |
2fc84311 XG |
1481 | down_read(¤t->mm->mmap_sem); |
1482 | if (npages == -EHWPOISON || | |
1483 | (!async && check_user_page_hwpoison(addr))) { | |
1484 | pfn = KVM_PFN_ERR_HWPOISON; | |
1485 | goto exit; | |
1486 | } | |
1487 | ||
1488 | vma = find_vma_intersection(current->mm, addr, addr + 1); | |
1489 | ||
1490 | if (vma == NULL) | |
1491 | pfn = KVM_PFN_ERR_FAULT; | |
1492 | else if ((vma->vm_flags & VM_PFNMAP)) { | |
1493 | pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) + | |
1494 | vma->vm_pgoff; | |
bf4bea8e | 1495 | BUG_ON(!kvm_is_reserved_pfn(pfn)); |
2fc84311 | 1496 | } else { |
4d8b81ab | 1497 | if (async && vma_is_valid(vma, write_fault)) |
2fc84311 XG |
1498 | *async = true; |
1499 | pfn = KVM_PFN_ERR_FAULT; | |
1500 | } | |
1501 | exit: | |
1502 | up_read(¤t->mm->mmap_sem); | |
2e2e3738 | 1503 | return pfn; |
35149e21 AL |
1504 | } |
1505 | ||
ba049e93 DW |
1506 | kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, |
1507 | bool atomic, bool *async, bool write_fault, | |
1508 | bool *writable) | |
887c08ac | 1509 | { |
4d8b81ab XG |
1510 | unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault); |
1511 | ||
b2740d35 PB |
1512 | if (addr == KVM_HVA_ERR_RO_BAD) { |
1513 | if (writable) | |
1514 | *writable = false; | |
4d8b81ab | 1515 | return KVM_PFN_ERR_RO_FAULT; |
b2740d35 | 1516 | } |
4d8b81ab | 1517 | |
b2740d35 PB |
1518 | if (kvm_is_error_hva(addr)) { |
1519 | if (writable) | |
1520 | *writable = false; | |
81c52c56 | 1521 | return KVM_PFN_NOSLOT; |
b2740d35 | 1522 | } |
4d8b81ab XG |
1523 | |
1524 | /* Do not map writable pfn in the readonly memslot. */ | |
1525 | if (writable && memslot_is_readonly(slot)) { | |
1526 | *writable = false; | |
1527 | writable = NULL; | |
1528 | } | |
1529 | ||
1530 | return hva_to_pfn(addr, atomic, async, write_fault, | |
1531 | writable); | |
887c08ac | 1532 | } |
3520469d | 1533 | EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot); |
887c08ac | 1534 | |
ba049e93 | 1535 | kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault, |
612819c3 MT |
1536 | bool *writable) |
1537 | { | |
e37afc6e PB |
1538 | return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL, |
1539 | write_fault, writable); | |
612819c3 MT |
1540 | } |
1541 | EXPORT_SYMBOL_GPL(gfn_to_pfn_prot); | |
1542 | ||
ba049e93 | 1543 | kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn) |
506f0d6f | 1544 | { |
4d8b81ab | 1545 | return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL); |
506f0d6f | 1546 | } |
e37afc6e | 1547 | EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot); |
506f0d6f | 1548 | |
ba049e93 | 1549 | kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn) |
506f0d6f | 1550 | { |
4d8b81ab | 1551 | return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL); |
506f0d6f | 1552 | } |
037d92dc | 1553 | EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic); |
506f0d6f | 1554 | |
ba049e93 | 1555 | kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn) |
e37afc6e PB |
1556 | { |
1557 | return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn); | |
1558 | } | |
1559 | EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic); | |
1560 | ||
ba049e93 | 1561 | kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn) |
8e73485c PB |
1562 | { |
1563 | return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn); | |
1564 | } | |
1565 | EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic); | |
1566 | ||
ba049e93 | 1567 | kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn) |
e37afc6e PB |
1568 | { |
1569 | return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn); | |
1570 | } | |
1571 | EXPORT_SYMBOL_GPL(gfn_to_pfn); | |
1572 | ||
ba049e93 | 1573 | kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
8e73485c PB |
1574 | { |
1575 | return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn); | |
1576 | } | |
1577 | EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn); | |
1578 | ||
d9ef13c2 PB |
1579 | int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn, |
1580 | struct page **pages, int nr_pages) | |
48987781 XG |
1581 | { |
1582 | unsigned long addr; | |
1583 | gfn_t entry; | |
1584 | ||
d9ef13c2 | 1585 | addr = gfn_to_hva_many(slot, gfn, &entry); |
48987781 XG |
1586 | if (kvm_is_error_hva(addr)) |
1587 | return -1; | |
1588 | ||
1589 | if (entry < nr_pages) | |
1590 | return 0; | |
1591 | ||
1592 | return __get_user_pages_fast(addr, nr_pages, 1, pages); | |
1593 | } | |
1594 | EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic); | |
1595 | ||
ba049e93 | 1596 | static struct page *kvm_pfn_to_page(kvm_pfn_t pfn) |
a2766325 | 1597 | { |
81c52c56 | 1598 | if (is_error_noslot_pfn(pfn)) |
cb9aaa30 | 1599 | return KVM_ERR_PTR_BAD_PAGE; |
a2766325 | 1600 | |
bf4bea8e | 1601 | if (kvm_is_reserved_pfn(pfn)) { |
cb9aaa30 | 1602 | WARN_ON(1); |
6cede2e6 | 1603 | return KVM_ERR_PTR_BAD_PAGE; |
cb9aaa30 | 1604 | } |
a2766325 XG |
1605 | |
1606 | return pfn_to_page(pfn); | |
1607 | } | |
1608 | ||
35149e21 AL |
1609 | struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn) |
1610 | { | |
ba049e93 | 1611 | kvm_pfn_t pfn; |
2e2e3738 AL |
1612 | |
1613 | pfn = gfn_to_pfn(kvm, gfn); | |
2e2e3738 | 1614 | |
a2766325 | 1615 | return kvm_pfn_to_page(pfn); |
954bbbc2 AK |
1616 | } |
1617 | EXPORT_SYMBOL_GPL(gfn_to_page); | |
1618 | ||
8e73485c PB |
1619 | struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn) |
1620 | { | |
ba049e93 | 1621 | kvm_pfn_t pfn; |
8e73485c PB |
1622 | |
1623 | pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn); | |
1624 | ||
1625 | return kvm_pfn_to_page(pfn); | |
1626 | } | |
1627 | EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page); | |
1628 | ||
b4231d61 IE |
1629 | void kvm_release_page_clean(struct page *page) |
1630 | { | |
32cad84f XG |
1631 | WARN_ON(is_error_page(page)); |
1632 | ||
35149e21 | 1633 | kvm_release_pfn_clean(page_to_pfn(page)); |
b4231d61 IE |
1634 | } |
1635 | EXPORT_SYMBOL_GPL(kvm_release_page_clean); | |
1636 | ||
ba049e93 | 1637 | void kvm_release_pfn_clean(kvm_pfn_t pfn) |
35149e21 | 1638 | { |
bf4bea8e | 1639 | if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn)) |
2e2e3738 | 1640 | put_page(pfn_to_page(pfn)); |
35149e21 AL |
1641 | } |
1642 | EXPORT_SYMBOL_GPL(kvm_release_pfn_clean); | |
1643 | ||
b4231d61 | 1644 | void kvm_release_page_dirty(struct page *page) |
8a7ae055 | 1645 | { |
a2766325 XG |
1646 | WARN_ON(is_error_page(page)); |
1647 | ||
35149e21 AL |
1648 | kvm_release_pfn_dirty(page_to_pfn(page)); |
1649 | } | |
1650 | EXPORT_SYMBOL_GPL(kvm_release_page_dirty); | |
1651 | ||
ba049e93 | 1652 | static void kvm_release_pfn_dirty(kvm_pfn_t pfn) |
35149e21 AL |
1653 | { |
1654 | kvm_set_pfn_dirty(pfn); | |
1655 | kvm_release_pfn_clean(pfn); | |
1656 | } | |
35149e21 | 1657 | |
ba049e93 | 1658 | void kvm_set_pfn_dirty(kvm_pfn_t pfn) |
35149e21 | 1659 | { |
bf4bea8e | 1660 | if (!kvm_is_reserved_pfn(pfn)) { |
2e2e3738 | 1661 | struct page *page = pfn_to_page(pfn); |
f95ef0cd | 1662 | |
2e2e3738 AL |
1663 | if (!PageReserved(page)) |
1664 | SetPageDirty(page); | |
1665 | } | |
8a7ae055 | 1666 | } |
35149e21 AL |
1667 | EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty); |
1668 | ||
ba049e93 | 1669 | void kvm_set_pfn_accessed(kvm_pfn_t pfn) |
35149e21 | 1670 | { |
bf4bea8e | 1671 | if (!kvm_is_reserved_pfn(pfn)) |
2e2e3738 | 1672 | mark_page_accessed(pfn_to_page(pfn)); |
35149e21 AL |
1673 | } |
1674 | EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed); | |
1675 | ||
ba049e93 | 1676 | void kvm_get_pfn(kvm_pfn_t pfn) |
35149e21 | 1677 | { |
bf4bea8e | 1678 | if (!kvm_is_reserved_pfn(pfn)) |
2e2e3738 | 1679 | get_page(pfn_to_page(pfn)); |
35149e21 AL |
1680 | } |
1681 | EXPORT_SYMBOL_GPL(kvm_get_pfn); | |
8a7ae055 | 1682 | |
195aefde IE |
1683 | static int next_segment(unsigned long len, int offset) |
1684 | { | |
1685 | if (len > PAGE_SIZE - offset) | |
1686 | return PAGE_SIZE - offset; | |
1687 | else | |
1688 | return len; | |
1689 | } | |
1690 | ||
8e73485c PB |
1691 | static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn, |
1692 | void *data, int offset, int len) | |
195aefde | 1693 | { |
e0506bcb IE |
1694 | int r; |
1695 | unsigned long addr; | |
195aefde | 1696 | |
8e73485c | 1697 | addr = gfn_to_hva_memslot_prot(slot, gfn, NULL); |
e0506bcb IE |
1698 | if (kvm_is_error_hva(addr)) |
1699 | return -EFAULT; | |
3180a7fc | 1700 | r = __copy_from_user(data, (void __user *)addr + offset, len); |
e0506bcb | 1701 | if (r) |
195aefde | 1702 | return -EFAULT; |
195aefde IE |
1703 | return 0; |
1704 | } | |
8e73485c PB |
1705 | |
1706 | int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset, | |
1707 | int len) | |
1708 | { | |
1709 | struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn); | |
1710 | ||
1711 | return __kvm_read_guest_page(slot, gfn, data, offset, len); | |
1712 | } | |
195aefde IE |
1713 | EXPORT_SYMBOL_GPL(kvm_read_guest_page); |
1714 | ||
8e73485c PB |
1715 | int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data, |
1716 | int offset, int len) | |
1717 | { | |
1718 | struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); | |
1719 | ||
1720 | return __kvm_read_guest_page(slot, gfn, data, offset, len); | |
1721 | } | |
1722 | EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page); | |
1723 | ||
195aefde IE |
1724 | int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len) |
1725 | { | |
1726 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1727 | int seg; | |
1728 | int offset = offset_in_page(gpa); | |
1729 | int ret; | |
1730 | ||
1731 | while ((seg = next_segment(len, offset)) != 0) { | |
1732 | ret = kvm_read_guest_page(kvm, gfn, data, offset, seg); | |
1733 | if (ret < 0) | |
1734 | return ret; | |
1735 | offset = 0; | |
1736 | len -= seg; | |
1737 | data += seg; | |
1738 | ++gfn; | |
1739 | } | |
1740 | return 0; | |
1741 | } | |
1742 | EXPORT_SYMBOL_GPL(kvm_read_guest); | |
1743 | ||
8e73485c | 1744 | int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len) |
7ec54588 | 1745 | { |
7ec54588 | 1746 | gfn_t gfn = gpa >> PAGE_SHIFT; |
8e73485c | 1747 | int seg; |
7ec54588 | 1748 | int offset = offset_in_page(gpa); |
8e73485c PB |
1749 | int ret; |
1750 | ||
1751 | while ((seg = next_segment(len, offset)) != 0) { | |
1752 | ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg); | |
1753 | if (ret < 0) | |
1754 | return ret; | |
1755 | offset = 0; | |
1756 | len -= seg; | |
1757 | data += seg; | |
1758 | ++gfn; | |
1759 | } | |
1760 | return 0; | |
1761 | } | |
1762 | EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest); | |
7ec54588 | 1763 | |
8e73485c PB |
1764 | static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn, |
1765 | void *data, int offset, unsigned long len) | |
1766 | { | |
1767 | int r; | |
1768 | unsigned long addr; | |
1769 | ||
1770 | addr = gfn_to_hva_memslot_prot(slot, gfn, NULL); | |
7ec54588 MT |
1771 | if (kvm_is_error_hva(addr)) |
1772 | return -EFAULT; | |
0aac03f0 | 1773 | pagefault_disable(); |
3180a7fc | 1774 | r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len); |
0aac03f0 | 1775 | pagefault_enable(); |
7ec54588 MT |
1776 | if (r) |
1777 | return -EFAULT; | |
1778 | return 0; | |
1779 | } | |
7ec54588 | 1780 | |
8e73485c PB |
1781 | int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data, |
1782 | unsigned long len) | |
1783 | { | |
1784 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1785 | struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn); | |
1786 | int offset = offset_in_page(gpa); | |
1787 | ||
1788 | return __kvm_read_guest_atomic(slot, gfn, data, offset, len); | |
1789 | } | |
1790 | EXPORT_SYMBOL_GPL(kvm_read_guest_atomic); | |
1791 | ||
1792 | int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa, | |
1793 | void *data, unsigned long len) | |
1794 | { | |
1795 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1796 | struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); | |
1797 | int offset = offset_in_page(gpa); | |
1798 | ||
1799 | return __kvm_read_guest_atomic(slot, gfn, data, offset, len); | |
1800 | } | |
1801 | EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic); | |
1802 | ||
1803 | static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn, | |
1804 | const void *data, int offset, int len) | |
195aefde | 1805 | { |
e0506bcb IE |
1806 | int r; |
1807 | unsigned long addr; | |
195aefde | 1808 | |
251eb841 | 1809 | addr = gfn_to_hva_memslot(memslot, gfn); |
e0506bcb IE |
1810 | if (kvm_is_error_hva(addr)) |
1811 | return -EFAULT; | |
8b0cedff | 1812 | r = __copy_to_user((void __user *)addr + offset, data, len); |
e0506bcb | 1813 | if (r) |
195aefde | 1814 | return -EFAULT; |
bc009e43 | 1815 | mark_page_dirty_in_slot(memslot, gfn); |
195aefde IE |
1816 | return 0; |
1817 | } | |
8e73485c PB |
1818 | |
1819 | int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, | |
1820 | const void *data, int offset, int len) | |
1821 | { | |
1822 | struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn); | |
1823 | ||
1824 | return __kvm_write_guest_page(slot, gfn, data, offset, len); | |
1825 | } | |
195aefde IE |
1826 | EXPORT_SYMBOL_GPL(kvm_write_guest_page); |
1827 | ||
8e73485c PB |
1828 | int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, |
1829 | const void *data, int offset, int len) | |
1830 | { | |
1831 | struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); | |
1832 | ||
1833 | return __kvm_write_guest_page(slot, gfn, data, offset, len); | |
1834 | } | |
1835 | EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page); | |
1836 | ||
195aefde IE |
1837 | int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data, |
1838 | unsigned long len) | |
1839 | { | |
1840 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1841 | int seg; | |
1842 | int offset = offset_in_page(gpa); | |
1843 | int ret; | |
1844 | ||
1845 | while ((seg = next_segment(len, offset)) != 0) { | |
1846 | ret = kvm_write_guest_page(kvm, gfn, data, offset, seg); | |
1847 | if (ret < 0) | |
1848 | return ret; | |
1849 | offset = 0; | |
1850 | len -= seg; | |
1851 | data += seg; | |
1852 | ++gfn; | |
1853 | } | |
1854 | return 0; | |
1855 | } | |
ff651cb6 | 1856 | EXPORT_SYMBOL_GPL(kvm_write_guest); |
195aefde | 1857 | |
8e73485c PB |
1858 | int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data, |
1859 | unsigned long len) | |
1860 | { | |
1861 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1862 | int seg; | |
1863 | int offset = offset_in_page(gpa); | |
1864 | int ret; | |
1865 | ||
1866 | while ((seg = next_segment(len, offset)) != 0) { | |
1867 | ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg); | |
1868 | if (ret < 0) | |
1869 | return ret; | |
1870 | offset = 0; | |
1871 | len -= seg; | |
1872 | data += seg; | |
1873 | ++gfn; | |
1874 | } | |
1875 | return 0; | |
1876 | } | |
1877 | EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest); | |
1878 | ||
49c7754c | 1879 | int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc, |
8f964525 | 1880 | gpa_t gpa, unsigned long len) |
49c7754c GN |
1881 | { |
1882 | struct kvm_memslots *slots = kvm_memslots(kvm); | |
1883 | int offset = offset_in_page(gpa); | |
8f964525 AH |
1884 | gfn_t start_gfn = gpa >> PAGE_SHIFT; |
1885 | gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT; | |
1886 | gfn_t nr_pages_needed = end_gfn - start_gfn + 1; | |
1887 | gfn_t nr_pages_avail; | |
49c7754c GN |
1888 | |
1889 | ghc->gpa = gpa; | |
1890 | ghc->generation = slots->generation; | |
8f964525 AH |
1891 | ghc->len = len; |
1892 | ghc->memslot = gfn_to_memslot(kvm, start_gfn); | |
ca3f0874 RK |
1893 | ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL); |
1894 | if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) { | |
49c7754c | 1895 | ghc->hva += offset; |
8f964525 AH |
1896 | } else { |
1897 | /* | |
1898 | * If the requested region crosses two memslots, we still | |
1899 | * verify that the entire region is valid here. | |
1900 | */ | |
1901 | while (start_gfn <= end_gfn) { | |
1902 | ghc->memslot = gfn_to_memslot(kvm, start_gfn); | |
1903 | ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, | |
1904 | &nr_pages_avail); | |
1905 | if (kvm_is_error_hva(ghc->hva)) | |
1906 | return -EFAULT; | |
1907 | start_gfn += nr_pages_avail; | |
1908 | } | |
1909 | /* Use the slow path for cross page reads and writes. */ | |
1910 | ghc->memslot = NULL; | |
1911 | } | |
49c7754c GN |
1912 | return 0; |
1913 | } | |
1914 | EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init); | |
1915 | ||
1916 | int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc, | |
1917 | void *data, unsigned long len) | |
1918 | { | |
1919 | struct kvm_memslots *slots = kvm_memslots(kvm); | |
1920 | int r; | |
1921 | ||
8f964525 AH |
1922 | BUG_ON(len > ghc->len); |
1923 | ||
49c7754c | 1924 | if (slots->generation != ghc->generation) |
8f964525 AH |
1925 | kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len); |
1926 | ||
1927 | if (unlikely(!ghc->memslot)) | |
1928 | return kvm_write_guest(kvm, ghc->gpa, data, len); | |
49c7754c GN |
1929 | |
1930 | if (kvm_is_error_hva(ghc->hva)) | |
1931 | return -EFAULT; | |
1932 | ||
8b0cedff | 1933 | r = __copy_to_user((void __user *)ghc->hva, data, len); |
49c7754c GN |
1934 | if (r) |
1935 | return -EFAULT; | |
bc009e43 | 1936 | mark_page_dirty_in_slot(ghc->memslot, ghc->gpa >> PAGE_SHIFT); |
49c7754c GN |
1937 | |
1938 | return 0; | |
1939 | } | |
1940 | EXPORT_SYMBOL_GPL(kvm_write_guest_cached); | |
1941 | ||
e03b644f GN |
1942 | int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc, |
1943 | void *data, unsigned long len) | |
1944 | { | |
1945 | struct kvm_memslots *slots = kvm_memslots(kvm); | |
1946 | int r; | |
1947 | ||
8f964525 AH |
1948 | BUG_ON(len > ghc->len); |
1949 | ||
e03b644f | 1950 | if (slots->generation != ghc->generation) |
8f964525 AH |
1951 | kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len); |
1952 | ||
1953 | if (unlikely(!ghc->memslot)) | |
1954 | return kvm_read_guest(kvm, ghc->gpa, data, len); | |
e03b644f GN |
1955 | |
1956 | if (kvm_is_error_hva(ghc->hva)) | |
1957 | return -EFAULT; | |
1958 | ||
1959 | r = __copy_from_user(data, (void __user *)ghc->hva, len); | |
1960 | if (r) | |
1961 | return -EFAULT; | |
1962 | ||
1963 | return 0; | |
1964 | } | |
1965 | EXPORT_SYMBOL_GPL(kvm_read_guest_cached); | |
1966 | ||
195aefde IE |
1967 | int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len) |
1968 | { | |
8a3caa6d HC |
1969 | const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0))); |
1970 | ||
1971 | return kvm_write_guest_page(kvm, gfn, zero_page, offset, len); | |
195aefde IE |
1972 | } |
1973 | EXPORT_SYMBOL_GPL(kvm_clear_guest_page); | |
1974 | ||
1975 | int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len) | |
1976 | { | |
1977 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1978 | int seg; | |
1979 | int offset = offset_in_page(gpa); | |
1980 | int ret; | |
1981 | ||
bfda0e84 | 1982 | while ((seg = next_segment(len, offset)) != 0) { |
195aefde IE |
1983 | ret = kvm_clear_guest_page(kvm, gfn, offset, seg); |
1984 | if (ret < 0) | |
1985 | return ret; | |
1986 | offset = 0; | |
1987 | len -= seg; | |
1988 | ++gfn; | |
1989 | } | |
1990 | return 0; | |
1991 | } | |
1992 | EXPORT_SYMBOL_GPL(kvm_clear_guest); | |
1993 | ||
bc009e43 | 1994 | static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot, |
7940876e | 1995 | gfn_t gfn) |
6aa8b732 | 1996 | { |
7e9d619d RR |
1997 | if (memslot && memslot->dirty_bitmap) { |
1998 | unsigned long rel_gfn = gfn - memslot->base_gfn; | |
6aa8b732 | 1999 | |
b74ca3b3 | 2000 | set_bit_le(rel_gfn, memslot->dirty_bitmap); |
6aa8b732 AK |
2001 | } |
2002 | } | |
2003 | ||
49c7754c GN |
2004 | void mark_page_dirty(struct kvm *kvm, gfn_t gfn) |
2005 | { | |
2006 | struct kvm_memory_slot *memslot; | |
2007 | ||
2008 | memslot = gfn_to_memslot(kvm, gfn); | |
bc009e43 | 2009 | mark_page_dirty_in_slot(memslot, gfn); |
49c7754c | 2010 | } |
2ba9f0d8 | 2011 | EXPORT_SYMBOL_GPL(mark_page_dirty); |
49c7754c | 2012 | |
8e73485c PB |
2013 | void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn) |
2014 | { | |
2015 | struct kvm_memory_slot *memslot; | |
2016 | ||
2017 | memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); | |
2018 | mark_page_dirty_in_slot(memslot, gfn); | |
2019 | } | |
2020 | EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty); | |
2021 | ||
aca6ff29 WL |
2022 | static void grow_halt_poll_ns(struct kvm_vcpu *vcpu) |
2023 | { | |
6b6de68c | 2024 | unsigned int old, val, grow; |
aca6ff29 | 2025 | |
2cbd7824 | 2026 | old = val = vcpu->halt_poll_ns; |
6b6de68c | 2027 | grow = READ_ONCE(halt_poll_ns_grow); |
aca6ff29 | 2028 | /* 10us base */ |
6b6de68c | 2029 | if (val == 0 && grow) |
aca6ff29 WL |
2030 | val = 10000; |
2031 | else | |
6b6de68c | 2032 | val *= grow; |
aca6ff29 | 2033 | |
313f636d DM |
2034 | if (val > halt_poll_ns) |
2035 | val = halt_poll_ns; | |
2036 | ||
aca6ff29 | 2037 | vcpu->halt_poll_ns = val; |
2cbd7824 | 2038 | trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old); |
aca6ff29 WL |
2039 | } |
2040 | ||
2041 | static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu) | |
2042 | { | |
6b6de68c | 2043 | unsigned int old, val, shrink; |
aca6ff29 | 2044 | |
2cbd7824 | 2045 | old = val = vcpu->halt_poll_ns; |
6b6de68c CB |
2046 | shrink = READ_ONCE(halt_poll_ns_shrink); |
2047 | if (shrink == 0) | |
aca6ff29 WL |
2048 | val = 0; |
2049 | else | |
6b6de68c | 2050 | val /= shrink; |
aca6ff29 WL |
2051 | |
2052 | vcpu->halt_poll_ns = val; | |
2cbd7824 | 2053 | trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old); |
aca6ff29 WL |
2054 | } |
2055 | ||
f7819512 PB |
2056 | static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu) |
2057 | { | |
2058 | if (kvm_arch_vcpu_runnable(vcpu)) { | |
2059 | kvm_make_request(KVM_REQ_UNHALT, vcpu); | |
2060 | return -EINTR; | |
2061 | } | |
2062 | if (kvm_cpu_has_pending_timer(vcpu)) | |
2063 | return -EINTR; | |
2064 | if (signal_pending(current)) | |
2065 | return -EINTR; | |
2066 | ||
2067 | return 0; | |
2068 | } | |
2069 | ||
b6958ce4 ED |
2070 | /* |
2071 | * The vCPU has executed a HLT instruction with in-kernel mode enabled. | |
2072 | */ | |
8776e519 | 2073 | void kvm_vcpu_block(struct kvm_vcpu *vcpu) |
d3bef15f | 2074 | { |
f7819512 | 2075 | ktime_t start, cur; |
8577370f | 2076 | DECLARE_SWAITQUEUE(wait); |
f7819512 | 2077 | bool waited = false; |
aca6ff29 | 2078 | u64 block_ns; |
f7819512 PB |
2079 | |
2080 | start = cur = ktime_get(); | |
19020f8a WL |
2081 | if (vcpu->halt_poll_ns) { |
2082 | ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns); | |
f95ef0cd | 2083 | |
62bea5bf | 2084 | ++vcpu->stat.halt_attempted_poll; |
f7819512 PB |
2085 | do { |
2086 | /* | |
2087 | * This sets KVM_REQ_UNHALT if an interrupt | |
2088 | * arrives. | |
2089 | */ | |
2090 | if (kvm_vcpu_check_block(vcpu) < 0) { | |
2091 | ++vcpu->stat.halt_successful_poll; | |
3491caf2 CB |
2092 | if (!vcpu_valid_wakeup(vcpu)) |
2093 | ++vcpu->stat.halt_poll_invalid; | |
f7819512 PB |
2094 | goto out; |
2095 | } | |
2096 | cur = ktime_get(); | |
2097 | } while (single_task_running() && ktime_before(cur, stop)); | |
2098 | } | |
e5c239cf | 2099 | |
3217f7c2 CD |
2100 | kvm_arch_vcpu_blocking(vcpu); |
2101 | ||
e5c239cf | 2102 | for (;;) { |
8577370f | 2103 | prepare_to_swait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE); |
e5c239cf | 2104 | |
f7819512 | 2105 | if (kvm_vcpu_check_block(vcpu) < 0) |
e5c239cf MT |
2106 | break; |
2107 | ||
f7819512 | 2108 | waited = true; |
b6958ce4 | 2109 | schedule(); |
b6958ce4 | 2110 | } |
d3bef15f | 2111 | |
8577370f | 2112 | finish_swait(&vcpu->wq, &wait); |
f7819512 PB |
2113 | cur = ktime_get(); |
2114 | ||
3217f7c2 | 2115 | kvm_arch_vcpu_unblocking(vcpu); |
f7819512 | 2116 | out: |
aca6ff29 WL |
2117 | block_ns = ktime_to_ns(cur) - ktime_to_ns(start); |
2118 | ||
2086d320 CB |
2119 | if (!vcpu_valid_wakeup(vcpu)) |
2120 | shrink_halt_poll_ns(vcpu); | |
2121 | else if (halt_poll_ns) { | |
aca6ff29 WL |
2122 | if (block_ns <= vcpu->halt_poll_ns) |
2123 | ; | |
2124 | /* we had a long block, shrink polling */ | |
2086d320 | 2125 | else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns) |
aca6ff29 WL |
2126 | shrink_halt_poll_ns(vcpu); |
2127 | /* we had a short halt and our poll time is too small */ | |
2128 | else if (vcpu->halt_poll_ns < halt_poll_ns && | |
2129 | block_ns < halt_poll_ns) | |
2130 | grow_halt_poll_ns(vcpu); | |
edb9272f WL |
2131 | } else |
2132 | vcpu->halt_poll_ns = 0; | |
aca6ff29 | 2133 | |
3491caf2 CB |
2134 | trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu)); |
2135 | kvm_arch_vcpu_block_finish(vcpu); | |
b6958ce4 | 2136 | } |
2ba9f0d8 | 2137 | EXPORT_SYMBOL_GPL(kvm_vcpu_block); |
b6958ce4 | 2138 | |
8c84780d | 2139 | #ifndef CONFIG_S390 |
dd1a4cc1 | 2140 | void kvm_vcpu_wake_up(struct kvm_vcpu *vcpu) |
b6d33834 | 2141 | { |
8577370f | 2142 | struct swait_queue_head *wqp; |
b6d33834 CD |
2143 | |
2144 | wqp = kvm_arch_vcpu_wq(vcpu); | |
8577370f MT |
2145 | if (swait_active(wqp)) { |
2146 | swake_up(wqp); | |
b6d33834 CD |
2147 | ++vcpu->stat.halt_wakeup; |
2148 | } | |
2149 | ||
dd1a4cc1 RK |
2150 | } |
2151 | EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up); | |
2152 | ||
2153 | /* | |
2154 | * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode. | |
2155 | */ | |
2156 | void kvm_vcpu_kick(struct kvm_vcpu *vcpu) | |
2157 | { | |
2158 | int me; | |
2159 | int cpu = vcpu->cpu; | |
2160 | ||
2161 | kvm_vcpu_wake_up(vcpu); | |
b6d33834 CD |
2162 | me = get_cpu(); |
2163 | if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu)) | |
2164 | if (kvm_arch_vcpu_should_kick(vcpu)) | |
2165 | smp_send_reschedule(cpu); | |
2166 | put_cpu(); | |
2167 | } | |
a20ed54d | 2168 | EXPORT_SYMBOL_GPL(kvm_vcpu_kick); |
8c84780d | 2169 | #endif /* !CONFIG_S390 */ |
b6d33834 | 2170 | |
fa93384f | 2171 | int kvm_vcpu_yield_to(struct kvm_vcpu *target) |
41628d33 KW |
2172 | { |
2173 | struct pid *pid; | |
2174 | struct task_struct *task = NULL; | |
fa93384f | 2175 | int ret = 0; |
41628d33 KW |
2176 | |
2177 | rcu_read_lock(); | |
2178 | pid = rcu_dereference(target->pid); | |
2179 | if (pid) | |
27fbe64b | 2180 | task = get_pid_task(pid, PIDTYPE_PID); |
41628d33 KW |
2181 | rcu_read_unlock(); |
2182 | if (!task) | |
c45c528e | 2183 | return ret; |
c45c528e | 2184 | ret = yield_to(task, 1); |
41628d33 | 2185 | put_task_struct(task); |
c45c528e R |
2186 | |
2187 | return ret; | |
41628d33 KW |
2188 | } |
2189 | EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to); | |
2190 | ||
06e48c51 R |
2191 | /* |
2192 | * Helper that checks whether a VCPU is eligible for directed yield. | |
2193 | * Most eligible candidate to yield is decided by following heuristics: | |
2194 | * | |
2195 | * (a) VCPU which has not done pl-exit or cpu relax intercepted recently | |
2196 | * (preempted lock holder), indicated by @in_spin_loop. | |
2197 | * Set at the beiginning and cleared at the end of interception/PLE handler. | |
2198 | * | |
2199 | * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get | |
2200 | * chance last time (mostly it has become eligible now since we have probably | |
2201 | * yielded to lockholder in last iteration. This is done by toggling | |
2202 | * @dy_eligible each time a VCPU checked for eligibility.) | |
2203 | * | |
2204 | * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding | |
2205 | * to preempted lock-holder could result in wrong VCPU selection and CPU | |
2206 | * burning. Giving priority for a potential lock-holder increases lock | |
2207 | * progress. | |
2208 | * | |
2209 | * Since algorithm is based on heuristics, accessing another VCPU data without | |
2210 | * locking does not harm. It may result in trying to yield to same VCPU, fail | |
2211 | * and continue with next VCPU and so on. | |
2212 | */ | |
7940876e | 2213 | static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu) |
06e48c51 | 2214 | { |
4a55dd72 | 2215 | #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT |
06e48c51 R |
2216 | bool eligible; |
2217 | ||
2218 | eligible = !vcpu->spin_loop.in_spin_loop || | |
34656113 | 2219 | vcpu->spin_loop.dy_eligible; |
06e48c51 R |
2220 | |
2221 | if (vcpu->spin_loop.in_spin_loop) | |
2222 | kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible); | |
2223 | ||
2224 | return eligible; | |
4a55dd72 SW |
2225 | #else |
2226 | return true; | |
06e48c51 | 2227 | #endif |
4a55dd72 | 2228 | } |
c45c528e | 2229 | |
217ece61 | 2230 | void kvm_vcpu_on_spin(struct kvm_vcpu *me) |
d255f4f2 | 2231 | { |
217ece61 RR |
2232 | struct kvm *kvm = me->kvm; |
2233 | struct kvm_vcpu *vcpu; | |
2234 | int last_boosted_vcpu = me->kvm->last_boosted_vcpu; | |
2235 | int yielded = 0; | |
c45c528e | 2236 | int try = 3; |
217ece61 RR |
2237 | int pass; |
2238 | int i; | |
d255f4f2 | 2239 | |
4c088493 | 2240 | kvm_vcpu_set_in_spin_loop(me, true); |
217ece61 RR |
2241 | /* |
2242 | * We boost the priority of a VCPU that is runnable but not | |
2243 | * currently running, because it got preempted by something | |
2244 | * else and called schedule in __vcpu_run. Hopefully that | |
2245 | * VCPU is holding the lock that we need and will release it. | |
2246 | * We approximate round-robin by starting at the last boosted VCPU. | |
2247 | */ | |
c45c528e | 2248 | for (pass = 0; pass < 2 && !yielded && try; pass++) { |
217ece61 | 2249 | kvm_for_each_vcpu(i, vcpu, kvm) { |
5cfc2aab | 2250 | if (!pass && i <= last_boosted_vcpu) { |
217ece61 RR |
2251 | i = last_boosted_vcpu; |
2252 | continue; | |
2253 | } else if (pass && i > last_boosted_vcpu) | |
2254 | break; | |
7bc7ae25 R |
2255 | if (!ACCESS_ONCE(vcpu->preempted)) |
2256 | continue; | |
217ece61 RR |
2257 | if (vcpu == me) |
2258 | continue; | |
8577370f | 2259 | if (swait_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu)) |
217ece61 | 2260 | continue; |
06e48c51 R |
2261 | if (!kvm_vcpu_eligible_for_directed_yield(vcpu)) |
2262 | continue; | |
c45c528e R |
2263 | |
2264 | yielded = kvm_vcpu_yield_to(vcpu); | |
2265 | if (yielded > 0) { | |
217ece61 | 2266 | kvm->last_boosted_vcpu = i; |
217ece61 | 2267 | break; |
c45c528e R |
2268 | } else if (yielded < 0) { |
2269 | try--; | |
2270 | if (!try) | |
2271 | break; | |
217ece61 | 2272 | } |
217ece61 RR |
2273 | } |
2274 | } | |
4c088493 | 2275 | kvm_vcpu_set_in_spin_loop(me, false); |
06e48c51 R |
2276 | |
2277 | /* Ensure vcpu is not eligible during next spinloop */ | |
2278 | kvm_vcpu_set_dy_eligible(me, false); | |
d255f4f2 ZE |
2279 | } |
2280 | EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin); | |
2281 | ||
e4a533a4 | 2282 | static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf) |
9a2bb7f4 AK |
2283 | { |
2284 | struct kvm_vcpu *vcpu = vma->vm_file->private_data; | |
9a2bb7f4 AK |
2285 | struct page *page; |
2286 | ||
e4a533a4 | 2287 | if (vmf->pgoff == 0) |
039576c0 | 2288 | page = virt_to_page(vcpu->run); |
09566765 | 2289 | #ifdef CONFIG_X86 |
e4a533a4 | 2290 | else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET) |
ad312c7c | 2291 | page = virt_to_page(vcpu->arch.pio_data); |
5f94c174 LV |
2292 | #endif |
2293 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET | |
2294 | else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET) | |
2295 | page = virt_to_page(vcpu->kvm->coalesced_mmio_ring); | |
09566765 | 2296 | #endif |
039576c0 | 2297 | else |
5b1c1493 | 2298 | return kvm_arch_vcpu_fault(vcpu, vmf); |
9a2bb7f4 | 2299 | get_page(page); |
e4a533a4 NP |
2300 | vmf->page = page; |
2301 | return 0; | |
9a2bb7f4 AK |
2302 | } |
2303 | ||
f0f37e2f | 2304 | static const struct vm_operations_struct kvm_vcpu_vm_ops = { |
e4a533a4 | 2305 | .fault = kvm_vcpu_fault, |
9a2bb7f4 AK |
2306 | }; |
2307 | ||
2308 | static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma) | |
2309 | { | |
2310 | vma->vm_ops = &kvm_vcpu_vm_ops; | |
2311 | return 0; | |
2312 | } | |
2313 | ||
bccf2150 AK |
2314 | static int kvm_vcpu_release(struct inode *inode, struct file *filp) |
2315 | { | |
2316 | struct kvm_vcpu *vcpu = filp->private_data; | |
2317 | ||
66c0b394 | 2318 | kvm_put_kvm(vcpu->kvm); |
bccf2150 AK |
2319 | return 0; |
2320 | } | |
2321 | ||
3d3aab1b | 2322 | static struct file_operations kvm_vcpu_fops = { |
bccf2150 AK |
2323 | .release = kvm_vcpu_release, |
2324 | .unlocked_ioctl = kvm_vcpu_ioctl, | |
de8e5d74 | 2325 | #ifdef CONFIG_KVM_COMPAT |
1dda606c AG |
2326 | .compat_ioctl = kvm_vcpu_compat_ioctl, |
2327 | #endif | |
9a2bb7f4 | 2328 | .mmap = kvm_vcpu_mmap, |
6038f373 | 2329 | .llseek = noop_llseek, |
bccf2150 AK |
2330 | }; |
2331 | ||
2332 | /* | |
2333 | * Allocates an inode for the vcpu. | |
2334 | */ | |
2335 | static int create_vcpu_fd(struct kvm_vcpu *vcpu) | |
2336 | { | |
24009b05 | 2337 | return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC); |
bccf2150 AK |
2338 | } |
2339 | ||
c5ea7660 AK |
2340 | /* |
2341 | * Creates some virtual cpus. Good luck creating more than one. | |
2342 | */ | |
73880c80 | 2343 | static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id) |
c5ea7660 AK |
2344 | { |
2345 | int r; | |
e09fefde | 2346 | struct kvm_vcpu *vcpu; |
c5ea7660 | 2347 | |
0b1b1dfd | 2348 | if (id >= KVM_MAX_VCPU_ID) |
338c7dba AH |
2349 | return -EINVAL; |
2350 | ||
73880c80 | 2351 | vcpu = kvm_arch_vcpu_create(kvm, id); |
fb3f0f51 RR |
2352 | if (IS_ERR(vcpu)) |
2353 | return PTR_ERR(vcpu); | |
c5ea7660 | 2354 | |
15ad7146 AK |
2355 | preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops); |
2356 | ||
26e5215f AK |
2357 | r = kvm_arch_vcpu_setup(vcpu); |
2358 | if (r) | |
d780592b | 2359 | goto vcpu_destroy; |
26e5215f | 2360 | |
11ec2804 | 2361 | mutex_lock(&kvm->lock); |
3e515705 AK |
2362 | if (!kvm_vcpu_compatible(vcpu)) { |
2363 | r = -EINVAL; | |
2364 | goto unlock_vcpu_destroy; | |
2365 | } | |
73880c80 GN |
2366 | if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) { |
2367 | r = -EINVAL; | |
d780592b | 2368 | goto unlock_vcpu_destroy; |
fb3f0f51 | 2369 | } |
e09fefde DH |
2370 | if (kvm_get_vcpu_by_id(kvm, id)) { |
2371 | r = -EEXIST; | |
2372 | goto unlock_vcpu_destroy; | |
2373 | } | |
73880c80 GN |
2374 | |
2375 | BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]); | |
c5ea7660 | 2376 | |
fb3f0f51 | 2377 | /* Now it's all set up, let userspace reach it */ |
66c0b394 | 2378 | kvm_get_kvm(kvm); |
bccf2150 | 2379 | r = create_vcpu_fd(vcpu); |
73880c80 GN |
2380 | if (r < 0) { |
2381 | kvm_put_kvm(kvm); | |
d780592b | 2382 | goto unlock_vcpu_destroy; |
73880c80 GN |
2383 | } |
2384 | ||
2385 | kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu; | |
dd489240 PB |
2386 | |
2387 | /* | |
2388 | * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus | |
2389 | * before kvm->online_vcpu's incremented value. | |
2390 | */ | |
73880c80 GN |
2391 | smp_wmb(); |
2392 | atomic_inc(&kvm->online_vcpus); | |
2393 | ||
73880c80 | 2394 | mutex_unlock(&kvm->lock); |
42897d86 | 2395 | kvm_arch_vcpu_postcreate(vcpu); |
fb3f0f51 | 2396 | return r; |
39c3b86e | 2397 | |
d780592b | 2398 | unlock_vcpu_destroy: |
7d8fece6 | 2399 | mutex_unlock(&kvm->lock); |
d780592b | 2400 | vcpu_destroy: |
d40ccc62 | 2401 | kvm_arch_vcpu_destroy(vcpu); |
c5ea7660 AK |
2402 | return r; |
2403 | } | |
2404 | ||
1961d276 AK |
2405 | static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset) |
2406 | { | |
2407 | if (sigset) { | |
2408 | sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP)); | |
2409 | vcpu->sigset_active = 1; | |
2410 | vcpu->sigset = *sigset; | |
2411 | } else | |
2412 | vcpu->sigset_active = 0; | |
2413 | return 0; | |
2414 | } | |
2415 | ||
bccf2150 AK |
2416 | static long kvm_vcpu_ioctl(struct file *filp, |
2417 | unsigned int ioctl, unsigned long arg) | |
6aa8b732 | 2418 | { |
bccf2150 | 2419 | struct kvm_vcpu *vcpu = filp->private_data; |
2f366987 | 2420 | void __user *argp = (void __user *)arg; |
313a3dc7 | 2421 | int r; |
fa3795a7 DH |
2422 | struct kvm_fpu *fpu = NULL; |
2423 | struct kvm_sregs *kvm_sregs = NULL; | |
6aa8b732 | 2424 | |
6d4e4c4f AK |
2425 | if (vcpu->kvm->mm != current->mm) |
2426 | return -EIO; | |
2122ff5e | 2427 | |
2ea75be3 DM |
2428 | if (unlikely(_IOC_TYPE(ioctl) != KVMIO)) |
2429 | return -EINVAL; | |
2430 | ||
2f4d9b54 | 2431 | #if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS) |
2122ff5e AK |
2432 | /* |
2433 | * Special cases: vcpu ioctls that are asynchronous to vcpu execution, | |
2434 | * so vcpu_load() would break it. | |
2435 | */ | |
47b43c52 | 2436 | if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT) |
2122ff5e AK |
2437 | return kvm_arch_vcpu_ioctl(filp, ioctl, arg); |
2438 | #endif | |
2439 | ||
2440 | ||
9fc77441 MT |
2441 | r = vcpu_load(vcpu); |
2442 | if (r) | |
2443 | return r; | |
6aa8b732 | 2444 | switch (ioctl) { |
9a2bb7f4 | 2445 | case KVM_RUN: |
f0fe5108 AK |
2446 | r = -EINVAL; |
2447 | if (arg) | |
2448 | goto out; | |
7a72f7a1 CB |
2449 | if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) { |
2450 | /* The thread running this VCPU changed. */ | |
2451 | struct pid *oldpid = vcpu->pid; | |
2452 | struct pid *newpid = get_task_pid(current, PIDTYPE_PID); | |
f95ef0cd | 2453 | |
7a72f7a1 CB |
2454 | rcu_assign_pointer(vcpu->pid, newpid); |
2455 | if (oldpid) | |
2456 | synchronize_rcu(); | |
2457 | put_pid(oldpid); | |
2458 | } | |
b6c7a5dc | 2459 | r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run); |
64be5007 | 2460 | trace_kvm_userspace_exit(vcpu->run->exit_reason, r); |
6aa8b732 | 2461 | break; |
6aa8b732 | 2462 | case KVM_GET_REGS: { |
3e4bb3ac | 2463 | struct kvm_regs *kvm_regs; |
6aa8b732 | 2464 | |
3e4bb3ac XZ |
2465 | r = -ENOMEM; |
2466 | kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL); | |
2467 | if (!kvm_regs) | |
6aa8b732 | 2468 | goto out; |
3e4bb3ac XZ |
2469 | r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs); |
2470 | if (r) | |
2471 | goto out_free1; | |
6aa8b732 | 2472 | r = -EFAULT; |
3e4bb3ac XZ |
2473 | if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs))) |
2474 | goto out_free1; | |
6aa8b732 | 2475 | r = 0; |
3e4bb3ac XZ |
2476 | out_free1: |
2477 | kfree(kvm_regs); | |
6aa8b732 AK |
2478 | break; |
2479 | } | |
2480 | case KVM_SET_REGS: { | |
3e4bb3ac | 2481 | struct kvm_regs *kvm_regs; |
6aa8b732 | 2482 | |
3e4bb3ac | 2483 | r = -ENOMEM; |
ff5c2c03 SL |
2484 | kvm_regs = memdup_user(argp, sizeof(*kvm_regs)); |
2485 | if (IS_ERR(kvm_regs)) { | |
2486 | r = PTR_ERR(kvm_regs); | |
6aa8b732 | 2487 | goto out; |
ff5c2c03 | 2488 | } |
3e4bb3ac | 2489 | r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs); |
3e4bb3ac | 2490 | kfree(kvm_regs); |
6aa8b732 AK |
2491 | break; |
2492 | } | |
2493 | case KVM_GET_SREGS: { | |
fa3795a7 DH |
2494 | kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL); |
2495 | r = -ENOMEM; | |
2496 | if (!kvm_sregs) | |
2497 | goto out; | |
2498 | r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs); | |
6aa8b732 AK |
2499 | if (r) |
2500 | goto out; | |
2501 | r = -EFAULT; | |
fa3795a7 | 2502 | if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs))) |
6aa8b732 AK |
2503 | goto out; |
2504 | r = 0; | |
2505 | break; | |
2506 | } | |
2507 | case KVM_SET_SREGS: { | |
ff5c2c03 SL |
2508 | kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs)); |
2509 | if (IS_ERR(kvm_sregs)) { | |
2510 | r = PTR_ERR(kvm_sregs); | |
18595411 | 2511 | kvm_sregs = NULL; |
6aa8b732 | 2512 | goto out; |
ff5c2c03 | 2513 | } |
fa3795a7 | 2514 | r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs); |
6aa8b732 AK |
2515 | break; |
2516 | } | |
62d9f0db MT |
2517 | case KVM_GET_MP_STATE: { |
2518 | struct kvm_mp_state mp_state; | |
2519 | ||
2520 | r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state); | |
2521 | if (r) | |
2522 | goto out; | |
2523 | r = -EFAULT; | |
893bdbf1 | 2524 | if (copy_to_user(argp, &mp_state, sizeof(mp_state))) |
62d9f0db MT |
2525 | goto out; |
2526 | r = 0; | |
2527 | break; | |
2528 | } | |
2529 | case KVM_SET_MP_STATE: { | |
2530 | struct kvm_mp_state mp_state; | |
2531 | ||
2532 | r = -EFAULT; | |
893bdbf1 | 2533 | if (copy_from_user(&mp_state, argp, sizeof(mp_state))) |
62d9f0db MT |
2534 | goto out; |
2535 | r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state); | |
62d9f0db MT |
2536 | break; |
2537 | } | |
6aa8b732 AK |
2538 | case KVM_TRANSLATE: { |
2539 | struct kvm_translation tr; | |
2540 | ||
2541 | r = -EFAULT; | |
893bdbf1 | 2542 | if (copy_from_user(&tr, argp, sizeof(tr))) |
6aa8b732 | 2543 | goto out; |
8b006791 | 2544 | r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr); |
6aa8b732 AK |
2545 | if (r) |
2546 | goto out; | |
2547 | r = -EFAULT; | |
893bdbf1 | 2548 | if (copy_to_user(argp, &tr, sizeof(tr))) |
6aa8b732 AK |
2549 | goto out; |
2550 | r = 0; | |
2551 | break; | |
2552 | } | |
d0bfb940 JK |
2553 | case KVM_SET_GUEST_DEBUG: { |
2554 | struct kvm_guest_debug dbg; | |
6aa8b732 AK |
2555 | |
2556 | r = -EFAULT; | |
893bdbf1 | 2557 | if (copy_from_user(&dbg, argp, sizeof(dbg))) |
6aa8b732 | 2558 | goto out; |
d0bfb940 | 2559 | r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg); |
6aa8b732 AK |
2560 | break; |
2561 | } | |
1961d276 AK |
2562 | case KVM_SET_SIGNAL_MASK: { |
2563 | struct kvm_signal_mask __user *sigmask_arg = argp; | |
2564 | struct kvm_signal_mask kvm_sigmask; | |
2565 | sigset_t sigset, *p; | |
2566 | ||
2567 | p = NULL; | |
2568 | if (argp) { | |
2569 | r = -EFAULT; | |
2570 | if (copy_from_user(&kvm_sigmask, argp, | |
893bdbf1 | 2571 | sizeof(kvm_sigmask))) |
1961d276 AK |
2572 | goto out; |
2573 | r = -EINVAL; | |
893bdbf1 | 2574 | if (kvm_sigmask.len != sizeof(sigset)) |
1961d276 AK |
2575 | goto out; |
2576 | r = -EFAULT; | |
2577 | if (copy_from_user(&sigset, sigmask_arg->sigset, | |
893bdbf1 | 2578 | sizeof(sigset))) |
1961d276 AK |
2579 | goto out; |
2580 | p = &sigset; | |
2581 | } | |
376d41ff | 2582 | r = kvm_vcpu_ioctl_set_sigmask(vcpu, p); |
1961d276 AK |
2583 | break; |
2584 | } | |
b8836737 | 2585 | case KVM_GET_FPU: { |
fa3795a7 DH |
2586 | fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL); |
2587 | r = -ENOMEM; | |
2588 | if (!fpu) | |
2589 | goto out; | |
2590 | r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu); | |
b8836737 AK |
2591 | if (r) |
2592 | goto out; | |
2593 | r = -EFAULT; | |
fa3795a7 | 2594 | if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu))) |
b8836737 AK |
2595 | goto out; |
2596 | r = 0; | |
2597 | break; | |
2598 | } | |
2599 | case KVM_SET_FPU: { | |
ff5c2c03 SL |
2600 | fpu = memdup_user(argp, sizeof(*fpu)); |
2601 | if (IS_ERR(fpu)) { | |
2602 | r = PTR_ERR(fpu); | |
18595411 | 2603 | fpu = NULL; |
b8836737 | 2604 | goto out; |
ff5c2c03 | 2605 | } |
fa3795a7 | 2606 | r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu); |
b8836737 AK |
2607 | break; |
2608 | } | |
bccf2150 | 2609 | default: |
313a3dc7 | 2610 | r = kvm_arch_vcpu_ioctl(filp, ioctl, arg); |
bccf2150 AK |
2611 | } |
2612 | out: | |
2122ff5e | 2613 | vcpu_put(vcpu); |
fa3795a7 DH |
2614 | kfree(fpu); |
2615 | kfree(kvm_sregs); | |
bccf2150 AK |
2616 | return r; |
2617 | } | |
2618 | ||
de8e5d74 | 2619 | #ifdef CONFIG_KVM_COMPAT |
1dda606c AG |
2620 | static long kvm_vcpu_compat_ioctl(struct file *filp, |
2621 | unsigned int ioctl, unsigned long arg) | |
2622 | { | |
2623 | struct kvm_vcpu *vcpu = filp->private_data; | |
2624 | void __user *argp = compat_ptr(arg); | |
2625 | int r; | |
2626 | ||
2627 | if (vcpu->kvm->mm != current->mm) | |
2628 | return -EIO; | |
2629 | ||
2630 | switch (ioctl) { | |
2631 | case KVM_SET_SIGNAL_MASK: { | |
2632 | struct kvm_signal_mask __user *sigmask_arg = argp; | |
2633 | struct kvm_signal_mask kvm_sigmask; | |
2634 | compat_sigset_t csigset; | |
2635 | sigset_t sigset; | |
2636 | ||
2637 | if (argp) { | |
2638 | r = -EFAULT; | |
2639 | if (copy_from_user(&kvm_sigmask, argp, | |
893bdbf1 | 2640 | sizeof(kvm_sigmask))) |
1dda606c AG |
2641 | goto out; |
2642 | r = -EINVAL; | |
893bdbf1 | 2643 | if (kvm_sigmask.len != sizeof(csigset)) |
1dda606c AG |
2644 | goto out; |
2645 | r = -EFAULT; | |
2646 | if (copy_from_user(&csigset, sigmask_arg->sigset, | |
893bdbf1 | 2647 | sizeof(csigset))) |
1dda606c | 2648 | goto out; |
760a9a30 AC |
2649 | sigset_from_compat(&sigset, &csigset); |
2650 | r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset); | |
2651 | } else | |
2652 | r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL); | |
1dda606c AG |
2653 | break; |
2654 | } | |
2655 | default: | |
2656 | r = kvm_vcpu_ioctl(filp, ioctl, arg); | |
2657 | } | |
2658 | ||
2659 | out: | |
2660 | return r; | |
2661 | } | |
2662 | #endif | |
2663 | ||
852b6d57 SW |
2664 | static int kvm_device_ioctl_attr(struct kvm_device *dev, |
2665 | int (*accessor)(struct kvm_device *dev, | |
2666 | struct kvm_device_attr *attr), | |
2667 | unsigned long arg) | |
2668 | { | |
2669 | struct kvm_device_attr attr; | |
2670 | ||
2671 | if (!accessor) | |
2672 | return -EPERM; | |
2673 | ||
2674 | if (copy_from_user(&attr, (void __user *)arg, sizeof(attr))) | |
2675 | return -EFAULT; | |
2676 | ||
2677 | return accessor(dev, &attr); | |
2678 | } | |
2679 | ||
2680 | static long kvm_device_ioctl(struct file *filp, unsigned int ioctl, | |
2681 | unsigned long arg) | |
2682 | { | |
2683 | struct kvm_device *dev = filp->private_data; | |
2684 | ||
2685 | switch (ioctl) { | |
2686 | case KVM_SET_DEVICE_ATTR: | |
2687 | return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg); | |
2688 | case KVM_GET_DEVICE_ATTR: | |
2689 | return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg); | |
2690 | case KVM_HAS_DEVICE_ATTR: | |
2691 | return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg); | |
2692 | default: | |
2693 | if (dev->ops->ioctl) | |
2694 | return dev->ops->ioctl(dev, ioctl, arg); | |
2695 | ||
2696 | return -ENOTTY; | |
2697 | } | |
2698 | } | |
2699 | ||
852b6d57 SW |
2700 | static int kvm_device_release(struct inode *inode, struct file *filp) |
2701 | { | |
2702 | struct kvm_device *dev = filp->private_data; | |
2703 | struct kvm *kvm = dev->kvm; | |
2704 | ||
852b6d57 SW |
2705 | kvm_put_kvm(kvm); |
2706 | return 0; | |
2707 | } | |
2708 | ||
2709 | static const struct file_operations kvm_device_fops = { | |
2710 | .unlocked_ioctl = kvm_device_ioctl, | |
de8e5d74 | 2711 | #ifdef CONFIG_KVM_COMPAT |
db6ae615 SW |
2712 | .compat_ioctl = kvm_device_ioctl, |
2713 | #endif | |
852b6d57 SW |
2714 | .release = kvm_device_release, |
2715 | }; | |
2716 | ||
2717 | struct kvm_device *kvm_device_from_filp(struct file *filp) | |
2718 | { | |
2719 | if (filp->f_op != &kvm_device_fops) | |
2720 | return NULL; | |
2721 | ||
2722 | return filp->private_data; | |
2723 | } | |
2724 | ||
d60eacb0 | 2725 | static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = { |
5df554ad | 2726 | #ifdef CONFIG_KVM_MPIC |
d60eacb0 WD |
2727 | [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops, |
2728 | [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops, | |
5975a2e0 | 2729 | #endif |
d60eacb0 | 2730 | |
5975a2e0 | 2731 | #ifdef CONFIG_KVM_XICS |
d60eacb0 | 2732 | [KVM_DEV_TYPE_XICS] = &kvm_xics_ops, |
ec53500f | 2733 | #endif |
d60eacb0 WD |
2734 | }; |
2735 | ||
2736 | int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type) | |
2737 | { | |
2738 | if (type >= ARRAY_SIZE(kvm_device_ops_table)) | |
2739 | return -ENOSPC; | |
2740 | ||
2741 | if (kvm_device_ops_table[type] != NULL) | |
2742 | return -EEXIST; | |
2743 | ||
2744 | kvm_device_ops_table[type] = ops; | |
2745 | return 0; | |
2746 | } | |
2747 | ||
571ee1b6 WL |
2748 | void kvm_unregister_device_ops(u32 type) |
2749 | { | |
2750 | if (kvm_device_ops_table[type] != NULL) | |
2751 | kvm_device_ops_table[type] = NULL; | |
2752 | } | |
2753 | ||
852b6d57 SW |
2754 | static int kvm_ioctl_create_device(struct kvm *kvm, |
2755 | struct kvm_create_device *cd) | |
2756 | { | |
2757 | struct kvm_device_ops *ops = NULL; | |
2758 | struct kvm_device *dev; | |
2759 | bool test = cd->flags & KVM_CREATE_DEVICE_TEST; | |
2760 | int ret; | |
2761 | ||
d60eacb0 WD |
2762 | if (cd->type >= ARRAY_SIZE(kvm_device_ops_table)) |
2763 | return -ENODEV; | |
2764 | ||
2765 | ops = kvm_device_ops_table[cd->type]; | |
2766 | if (ops == NULL) | |
852b6d57 | 2767 | return -ENODEV; |
852b6d57 SW |
2768 | |
2769 | if (test) | |
2770 | return 0; | |
2771 | ||
2772 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); | |
2773 | if (!dev) | |
2774 | return -ENOMEM; | |
2775 | ||
2776 | dev->ops = ops; | |
2777 | dev->kvm = kvm; | |
852b6d57 SW |
2778 | |
2779 | ret = ops->create(dev, cd->type); | |
2780 | if (ret < 0) { | |
2781 | kfree(dev); | |
2782 | return ret; | |
2783 | } | |
2784 | ||
24009b05 | 2785 | ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC); |
852b6d57 SW |
2786 | if (ret < 0) { |
2787 | ops->destroy(dev); | |
2788 | return ret; | |
2789 | } | |
2790 | ||
07f0a7bd | 2791 | list_add(&dev->vm_node, &kvm->devices); |
852b6d57 SW |
2792 | kvm_get_kvm(kvm); |
2793 | cd->fd = ret; | |
2794 | return 0; | |
2795 | } | |
2796 | ||
92b591a4 AG |
2797 | static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg) |
2798 | { | |
2799 | switch (arg) { | |
2800 | case KVM_CAP_USER_MEMORY: | |
2801 | case KVM_CAP_DESTROY_MEMORY_REGION_WORKS: | |
2802 | case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS: | |
92b591a4 AG |
2803 | case KVM_CAP_INTERNAL_ERROR_DATA: |
2804 | #ifdef CONFIG_HAVE_KVM_MSI | |
2805 | case KVM_CAP_SIGNAL_MSI: | |
2806 | #endif | |
297e2105 | 2807 | #ifdef CONFIG_HAVE_KVM_IRQFD |
dc9be0fa | 2808 | case KVM_CAP_IRQFD: |
92b591a4 AG |
2809 | case KVM_CAP_IRQFD_RESAMPLE: |
2810 | #endif | |
e9ea5069 | 2811 | case KVM_CAP_IOEVENTFD_ANY_LENGTH: |
92b591a4 AG |
2812 | case KVM_CAP_CHECK_EXTENSION_VM: |
2813 | return 1; | |
2814 | #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING | |
2815 | case KVM_CAP_IRQ_ROUTING: | |
2816 | return KVM_MAX_IRQ_ROUTES; | |
f481b069 PB |
2817 | #endif |
2818 | #if KVM_ADDRESS_SPACE_NUM > 1 | |
2819 | case KVM_CAP_MULTI_ADDRESS_SPACE: | |
2820 | return KVM_ADDRESS_SPACE_NUM; | |
92b591a4 | 2821 | #endif |
0b1b1dfd GK |
2822 | case KVM_CAP_MAX_VCPU_ID: |
2823 | return KVM_MAX_VCPU_ID; | |
92b591a4 AG |
2824 | default: |
2825 | break; | |
2826 | } | |
2827 | return kvm_vm_ioctl_check_extension(kvm, arg); | |
2828 | } | |
2829 | ||
bccf2150 AK |
2830 | static long kvm_vm_ioctl(struct file *filp, |
2831 | unsigned int ioctl, unsigned long arg) | |
2832 | { | |
2833 | struct kvm *kvm = filp->private_data; | |
2834 | void __user *argp = (void __user *)arg; | |
1fe779f8 | 2835 | int r; |
bccf2150 | 2836 | |
6d4e4c4f AK |
2837 | if (kvm->mm != current->mm) |
2838 | return -EIO; | |
bccf2150 AK |
2839 | switch (ioctl) { |
2840 | case KVM_CREATE_VCPU: | |
2841 | r = kvm_vm_ioctl_create_vcpu(kvm, arg); | |
bccf2150 | 2842 | break; |
6fc138d2 IE |
2843 | case KVM_SET_USER_MEMORY_REGION: { |
2844 | struct kvm_userspace_memory_region kvm_userspace_mem; | |
2845 | ||
2846 | r = -EFAULT; | |
2847 | if (copy_from_user(&kvm_userspace_mem, argp, | |
893bdbf1 | 2848 | sizeof(kvm_userspace_mem))) |
6fc138d2 IE |
2849 | goto out; |
2850 | ||
47ae31e2 | 2851 | r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem); |
6aa8b732 AK |
2852 | break; |
2853 | } | |
2854 | case KVM_GET_DIRTY_LOG: { | |
2855 | struct kvm_dirty_log log; | |
2856 | ||
2857 | r = -EFAULT; | |
893bdbf1 | 2858 | if (copy_from_user(&log, argp, sizeof(log))) |
6aa8b732 | 2859 | goto out; |
2c6f5df9 | 2860 | r = kvm_vm_ioctl_get_dirty_log(kvm, &log); |
6aa8b732 AK |
2861 | break; |
2862 | } | |
5f94c174 LV |
2863 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET |
2864 | case KVM_REGISTER_COALESCED_MMIO: { | |
2865 | struct kvm_coalesced_mmio_zone zone; | |
f95ef0cd | 2866 | |
5f94c174 | 2867 | r = -EFAULT; |
893bdbf1 | 2868 | if (copy_from_user(&zone, argp, sizeof(zone))) |
5f94c174 | 2869 | goto out; |
5f94c174 | 2870 | r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone); |
5f94c174 LV |
2871 | break; |
2872 | } | |
2873 | case KVM_UNREGISTER_COALESCED_MMIO: { | |
2874 | struct kvm_coalesced_mmio_zone zone; | |
f95ef0cd | 2875 | |
5f94c174 | 2876 | r = -EFAULT; |
893bdbf1 | 2877 | if (copy_from_user(&zone, argp, sizeof(zone))) |
5f94c174 | 2878 | goto out; |
5f94c174 | 2879 | r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone); |
5f94c174 LV |
2880 | break; |
2881 | } | |
2882 | #endif | |
721eecbf GH |
2883 | case KVM_IRQFD: { |
2884 | struct kvm_irqfd data; | |
2885 | ||
2886 | r = -EFAULT; | |
893bdbf1 | 2887 | if (copy_from_user(&data, argp, sizeof(data))) |
721eecbf | 2888 | goto out; |
d4db2935 | 2889 | r = kvm_irqfd(kvm, &data); |
721eecbf GH |
2890 | break; |
2891 | } | |
d34e6b17 GH |
2892 | case KVM_IOEVENTFD: { |
2893 | struct kvm_ioeventfd data; | |
2894 | ||
2895 | r = -EFAULT; | |
893bdbf1 | 2896 | if (copy_from_user(&data, argp, sizeof(data))) |
d34e6b17 GH |
2897 | goto out; |
2898 | r = kvm_ioeventfd(kvm, &data); | |
2899 | break; | |
2900 | } | |
07975ad3 JK |
2901 | #ifdef CONFIG_HAVE_KVM_MSI |
2902 | case KVM_SIGNAL_MSI: { | |
2903 | struct kvm_msi msi; | |
2904 | ||
2905 | r = -EFAULT; | |
893bdbf1 | 2906 | if (copy_from_user(&msi, argp, sizeof(msi))) |
07975ad3 JK |
2907 | goto out; |
2908 | r = kvm_send_userspace_msi(kvm, &msi); | |
2909 | break; | |
2910 | } | |
23d43cf9 CD |
2911 | #endif |
2912 | #ifdef __KVM_HAVE_IRQ_LINE | |
2913 | case KVM_IRQ_LINE_STATUS: | |
2914 | case KVM_IRQ_LINE: { | |
2915 | struct kvm_irq_level irq_event; | |
2916 | ||
2917 | r = -EFAULT; | |
893bdbf1 | 2918 | if (copy_from_user(&irq_event, argp, sizeof(irq_event))) |
23d43cf9 CD |
2919 | goto out; |
2920 | ||
aa2fbe6d YZ |
2921 | r = kvm_vm_ioctl_irq_line(kvm, &irq_event, |
2922 | ioctl == KVM_IRQ_LINE_STATUS); | |
23d43cf9 CD |
2923 | if (r) |
2924 | goto out; | |
2925 | ||
2926 | r = -EFAULT; | |
2927 | if (ioctl == KVM_IRQ_LINE_STATUS) { | |
893bdbf1 | 2928 | if (copy_to_user(argp, &irq_event, sizeof(irq_event))) |
23d43cf9 CD |
2929 | goto out; |
2930 | } | |
2931 | ||
2932 | r = 0; | |
2933 | break; | |
2934 | } | |
73880c80 | 2935 | #endif |
aa8d5944 AG |
2936 | #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING |
2937 | case KVM_SET_GSI_ROUTING: { | |
2938 | struct kvm_irq_routing routing; | |
2939 | struct kvm_irq_routing __user *urouting; | |
f8c1b85b | 2940 | struct kvm_irq_routing_entry *entries = NULL; |
aa8d5944 AG |
2941 | |
2942 | r = -EFAULT; | |
2943 | if (copy_from_user(&routing, argp, sizeof(routing))) | |
2944 | goto out; | |
2945 | r = -EINVAL; | |
caf1ff26 | 2946 | if (routing.nr > KVM_MAX_IRQ_ROUTES) |
aa8d5944 AG |
2947 | goto out; |
2948 | if (routing.flags) | |
2949 | goto out; | |
f8c1b85b PB |
2950 | if (routing.nr) { |
2951 | r = -ENOMEM; | |
2952 | entries = vmalloc(routing.nr * sizeof(*entries)); | |
2953 | if (!entries) | |
2954 | goto out; | |
2955 | r = -EFAULT; | |
2956 | urouting = argp; | |
2957 | if (copy_from_user(entries, urouting->entries, | |
2958 | routing.nr * sizeof(*entries))) | |
2959 | goto out_free_irq_routing; | |
2960 | } | |
aa8d5944 AG |
2961 | r = kvm_set_irq_routing(kvm, entries, routing.nr, |
2962 | routing.flags); | |
a642a175 | 2963 | out_free_irq_routing: |
aa8d5944 AG |
2964 | vfree(entries); |
2965 | break; | |
2966 | } | |
2967 | #endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */ | |
852b6d57 SW |
2968 | case KVM_CREATE_DEVICE: { |
2969 | struct kvm_create_device cd; | |
2970 | ||
2971 | r = -EFAULT; | |
2972 | if (copy_from_user(&cd, argp, sizeof(cd))) | |
2973 | goto out; | |
2974 | ||
2975 | r = kvm_ioctl_create_device(kvm, &cd); | |
2976 | if (r) | |
2977 | goto out; | |
2978 | ||
2979 | r = -EFAULT; | |
2980 | if (copy_to_user(argp, &cd, sizeof(cd))) | |
2981 | goto out; | |
2982 | ||
2983 | r = 0; | |
2984 | break; | |
2985 | } | |
92b591a4 AG |
2986 | case KVM_CHECK_EXTENSION: |
2987 | r = kvm_vm_ioctl_check_extension_generic(kvm, arg); | |
2988 | break; | |
f17abe9a | 2989 | default: |
1fe779f8 | 2990 | r = kvm_arch_vm_ioctl(filp, ioctl, arg); |
f17abe9a AK |
2991 | } |
2992 | out: | |
2993 | return r; | |
2994 | } | |
2995 | ||
de8e5d74 | 2996 | #ifdef CONFIG_KVM_COMPAT |
6ff5894c AB |
2997 | struct compat_kvm_dirty_log { |
2998 | __u32 slot; | |
2999 | __u32 padding1; | |
3000 | union { | |
3001 | compat_uptr_t dirty_bitmap; /* one bit per page */ | |
3002 | __u64 padding2; | |
3003 | }; | |
3004 | }; | |
3005 | ||
3006 | static long kvm_vm_compat_ioctl(struct file *filp, | |
3007 | unsigned int ioctl, unsigned long arg) | |
3008 | { | |
3009 | struct kvm *kvm = filp->private_data; | |
3010 | int r; | |
3011 | ||
3012 | if (kvm->mm != current->mm) | |
3013 | return -EIO; | |
3014 | switch (ioctl) { | |
3015 | case KVM_GET_DIRTY_LOG: { | |
3016 | struct compat_kvm_dirty_log compat_log; | |
3017 | struct kvm_dirty_log log; | |
3018 | ||
3019 | r = -EFAULT; | |
3020 | if (copy_from_user(&compat_log, (void __user *)arg, | |
3021 | sizeof(compat_log))) | |
3022 | goto out; | |
3023 | log.slot = compat_log.slot; | |
3024 | log.padding1 = compat_log.padding1; | |
3025 | log.padding2 = compat_log.padding2; | |
3026 | log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap); | |
3027 | ||
3028 | r = kvm_vm_ioctl_get_dirty_log(kvm, &log); | |
6ff5894c AB |
3029 | break; |
3030 | } | |
3031 | default: | |
3032 | r = kvm_vm_ioctl(filp, ioctl, arg); | |
3033 | } | |
3034 | ||
3035 | out: | |
3036 | return r; | |
3037 | } | |
3038 | #endif | |
3039 | ||
3d3aab1b | 3040 | static struct file_operations kvm_vm_fops = { |
f17abe9a AK |
3041 | .release = kvm_vm_release, |
3042 | .unlocked_ioctl = kvm_vm_ioctl, | |
de8e5d74 | 3043 | #ifdef CONFIG_KVM_COMPAT |
6ff5894c AB |
3044 | .compat_ioctl = kvm_vm_compat_ioctl, |
3045 | #endif | |
6038f373 | 3046 | .llseek = noop_llseek, |
f17abe9a AK |
3047 | }; |
3048 | ||
e08b9637 | 3049 | static int kvm_dev_ioctl_create_vm(unsigned long type) |
f17abe9a | 3050 | { |
aac87636 | 3051 | int r; |
f17abe9a | 3052 | struct kvm *kvm; |
506cfba9 | 3053 | struct file *file; |
f17abe9a | 3054 | |
e08b9637 | 3055 | kvm = kvm_create_vm(type); |
d6d28168 AK |
3056 | if (IS_ERR(kvm)) |
3057 | return PTR_ERR(kvm); | |
6ce5a090 TY |
3058 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET |
3059 | r = kvm_coalesced_mmio_init(kvm); | |
3060 | if (r < 0) { | |
3061 | kvm_put_kvm(kvm); | |
3062 | return r; | |
3063 | } | |
3064 | #endif | |
506cfba9 | 3065 | r = get_unused_fd_flags(O_CLOEXEC); |
536a6f88 | 3066 | if (r < 0) { |
66c0b394 | 3067 | kvm_put_kvm(kvm); |
536a6f88 JF |
3068 | return r; |
3069 | } | |
506cfba9 AV |
3070 | file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR); |
3071 | if (IS_ERR(file)) { | |
3072 | put_unused_fd(r); | |
3073 | kvm_put_kvm(kvm); | |
3074 | return PTR_ERR(file); | |
3075 | } | |
536a6f88 JF |
3076 | |
3077 | if (kvm_create_vm_debugfs(kvm, r) < 0) { | |
506cfba9 AV |
3078 | put_unused_fd(r); |
3079 | fput(file); | |
536a6f88 JF |
3080 | return -ENOMEM; |
3081 | } | |
f17abe9a | 3082 | |
506cfba9 | 3083 | fd_install(r, file); |
aac87636 | 3084 | return r; |
f17abe9a AK |
3085 | } |
3086 | ||
3087 | static long kvm_dev_ioctl(struct file *filp, | |
3088 | unsigned int ioctl, unsigned long arg) | |
3089 | { | |
07c45a36 | 3090 | long r = -EINVAL; |
f17abe9a AK |
3091 | |
3092 | switch (ioctl) { | |
3093 | case KVM_GET_API_VERSION: | |
f0fe5108 AK |
3094 | if (arg) |
3095 | goto out; | |
f17abe9a AK |
3096 | r = KVM_API_VERSION; |
3097 | break; | |
3098 | case KVM_CREATE_VM: | |
e08b9637 | 3099 | r = kvm_dev_ioctl_create_vm(arg); |
f17abe9a | 3100 | break; |
018d00d2 | 3101 | case KVM_CHECK_EXTENSION: |
784aa3d7 | 3102 | r = kvm_vm_ioctl_check_extension_generic(NULL, arg); |
5d308f45 | 3103 | break; |
07c45a36 | 3104 | case KVM_GET_VCPU_MMAP_SIZE: |
07c45a36 AK |
3105 | if (arg) |
3106 | goto out; | |
adb1ff46 AK |
3107 | r = PAGE_SIZE; /* struct kvm_run */ |
3108 | #ifdef CONFIG_X86 | |
3109 | r += PAGE_SIZE; /* pio data page */ | |
5f94c174 LV |
3110 | #endif |
3111 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET | |
3112 | r += PAGE_SIZE; /* coalesced mmio ring page */ | |
adb1ff46 | 3113 | #endif |
07c45a36 | 3114 | break; |
d4c9ff2d FEL |
3115 | case KVM_TRACE_ENABLE: |
3116 | case KVM_TRACE_PAUSE: | |
3117 | case KVM_TRACE_DISABLE: | |
2023a29c | 3118 | r = -EOPNOTSUPP; |
d4c9ff2d | 3119 | break; |
6aa8b732 | 3120 | default: |
043405e1 | 3121 | return kvm_arch_dev_ioctl(filp, ioctl, arg); |
6aa8b732 AK |
3122 | } |
3123 | out: | |
3124 | return r; | |
3125 | } | |
3126 | ||
6aa8b732 | 3127 | static struct file_operations kvm_chardev_ops = { |
6aa8b732 AK |
3128 | .unlocked_ioctl = kvm_dev_ioctl, |
3129 | .compat_ioctl = kvm_dev_ioctl, | |
6038f373 | 3130 | .llseek = noop_llseek, |
6aa8b732 AK |
3131 | }; |
3132 | ||
3133 | static struct miscdevice kvm_dev = { | |
bbe4432e | 3134 | KVM_MINOR, |
6aa8b732 AK |
3135 | "kvm", |
3136 | &kvm_chardev_ops, | |
3137 | }; | |
3138 | ||
75b7127c | 3139 | static void hardware_enable_nolock(void *junk) |
1b6c0168 AK |
3140 | { |
3141 | int cpu = raw_smp_processor_id(); | |
10474ae8 | 3142 | int r; |
1b6c0168 | 3143 | |
7f59f492 | 3144 | if (cpumask_test_cpu(cpu, cpus_hardware_enabled)) |
1b6c0168 | 3145 | return; |
10474ae8 | 3146 | |
7f59f492 | 3147 | cpumask_set_cpu(cpu, cpus_hardware_enabled); |
10474ae8 | 3148 | |
13a34e06 | 3149 | r = kvm_arch_hardware_enable(); |
10474ae8 AG |
3150 | |
3151 | if (r) { | |
3152 | cpumask_clear_cpu(cpu, cpus_hardware_enabled); | |
3153 | atomic_inc(&hardware_enable_failed); | |
1170adc6 | 3154 | pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu); |
10474ae8 | 3155 | } |
1b6c0168 AK |
3156 | } |
3157 | ||
8c18b2d2 | 3158 | static int kvm_starting_cpu(unsigned int cpu) |
75b7127c | 3159 | { |
4a937f96 | 3160 | raw_spin_lock(&kvm_count_lock); |
4fa92fb2 PB |
3161 | if (kvm_usage_count) |
3162 | hardware_enable_nolock(NULL); | |
4a937f96 | 3163 | raw_spin_unlock(&kvm_count_lock); |
8c18b2d2 | 3164 | return 0; |
75b7127c TY |
3165 | } |
3166 | ||
3167 | static void hardware_disable_nolock(void *junk) | |
1b6c0168 AK |
3168 | { |
3169 | int cpu = raw_smp_processor_id(); | |
3170 | ||
7f59f492 | 3171 | if (!cpumask_test_cpu(cpu, cpus_hardware_enabled)) |
1b6c0168 | 3172 | return; |
7f59f492 | 3173 | cpumask_clear_cpu(cpu, cpus_hardware_enabled); |
13a34e06 | 3174 | kvm_arch_hardware_disable(); |
1b6c0168 AK |
3175 | } |
3176 | ||
8c18b2d2 | 3177 | static int kvm_dying_cpu(unsigned int cpu) |
75b7127c | 3178 | { |
4a937f96 | 3179 | raw_spin_lock(&kvm_count_lock); |
4fa92fb2 PB |
3180 | if (kvm_usage_count) |
3181 | hardware_disable_nolock(NULL); | |
4a937f96 | 3182 | raw_spin_unlock(&kvm_count_lock); |
8c18b2d2 | 3183 | return 0; |
75b7127c TY |
3184 | } |
3185 | ||
10474ae8 AG |
3186 | static void hardware_disable_all_nolock(void) |
3187 | { | |
3188 | BUG_ON(!kvm_usage_count); | |
3189 | ||
3190 | kvm_usage_count--; | |
3191 | if (!kvm_usage_count) | |
75b7127c | 3192 | on_each_cpu(hardware_disable_nolock, NULL, 1); |
10474ae8 AG |
3193 | } |
3194 | ||
3195 | static void hardware_disable_all(void) | |
3196 | { | |
4a937f96 | 3197 | raw_spin_lock(&kvm_count_lock); |
10474ae8 | 3198 | hardware_disable_all_nolock(); |
4a937f96 | 3199 | raw_spin_unlock(&kvm_count_lock); |
10474ae8 AG |
3200 | } |
3201 | ||
3202 | static int hardware_enable_all(void) | |
3203 | { | |
3204 | int r = 0; | |
3205 | ||
4a937f96 | 3206 | raw_spin_lock(&kvm_count_lock); |
10474ae8 AG |
3207 | |
3208 | kvm_usage_count++; | |
3209 | if (kvm_usage_count == 1) { | |
3210 | atomic_set(&hardware_enable_failed, 0); | |
75b7127c | 3211 | on_each_cpu(hardware_enable_nolock, NULL, 1); |
10474ae8 AG |
3212 | |
3213 | if (atomic_read(&hardware_enable_failed)) { | |
3214 | hardware_disable_all_nolock(); | |
3215 | r = -EBUSY; | |
3216 | } | |
3217 | } | |
3218 | ||
4a937f96 | 3219 | raw_spin_unlock(&kvm_count_lock); |
10474ae8 AG |
3220 | |
3221 | return r; | |
3222 | } | |
3223 | ||
9a2b85c6 | 3224 | static int kvm_reboot(struct notifier_block *notifier, unsigned long val, |
d77c26fc | 3225 | void *v) |
9a2b85c6 | 3226 | { |
8e1c1815 SY |
3227 | /* |
3228 | * Some (well, at least mine) BIOSes hang on reboot if | |
3229 | * in vmx root mode. | |
3230 | * | |
3231 | * And Intel TXT required VMX off for all cpu when system shutdown. | |
3232 | */ | |
1170adc6 | 3233 | pr_info("kvm: exiting hardware virtualization\n"); |
8e1c1815 | 3234 | kvm_rebooting = true; |
75b7127c | 3235 | on_each_cpu(hardware_disable_nolock, NULL, 1); |
9a2b85c6 RR |
3236 | return NOTIFY_OK; |
3237 | } | |
3238 | ||
3239 | static struct notifier_block kvm_reboot_notifier = { | |
3240 | .notifier_call = kvm_reboot, | |
3241 | .priority = 0, | |
3242 | }; | |
3243 | ||
e93f8a0f | 3244 | static void kvm_io_bus_destroy(struct kvm_io_bus *bus) |
2eeb2e94 GH |
3245 | { |
3246 | int i; | |
3247 | ||
3248 | for (i = 0; i < bus->dev_count; i++) { | |
743eeb0b | 3249 | struct kvm_io_device *pos = bus->range[i].dev; |
2eeb2e94 GH |
3250 | |
3251 | kvm_iodevice_destructor(pos); | |
3252 | } | |
e93f8a0f | 3253 | kfree(bus); |
2eeb2e94 GH |
3254 | } |
3255 | ||
c21fbff1 | 3256 | static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1, |
20e87b72 | 3257 | const struct kvm_io_range *r2) |
743eeb0b | 3258 | { |
8f4216c7 JW |
3259 | gpa_t addr1 = r1->addr; |
3260 | gpa_t addr2 = r2->addr; | |
3261 | ||
3262 | if (addr1 < addr2) | |
743eeb0b | 3263 | return -1; |
8f4216c7 JW |
3264 | |
3265 | /* If r2->len == 0, match the exact address. If r2->len != 0, | |
3266 | * accept any overlapping write. Any order is acceptable for | |
3267 | * overlapping ranges, because kvm_io_bus_get_first_dev ensures | |
3268 | * we process all of them. | |
3269 | */ | |
3270 | if (r2->len) { | |
3271 | addr1 += r1->len; | |
3272 | addr2 += r2->len; | |
3273 | } | |
3274 | ||
3275 | if (addr1 > addr2) | |
743eeb0b | 3276 | return 1; |
8f4216c7 | 3277 | |
743eeb0b SL |
3278 | return 0; |
3279 | } | |
3280 | ||
a343c9b7 PB |
3281 | static int kvm_io_bus_sort_cmp(const void *p1, const void *p2) |
3282 | { | |
c21fbff1 | 3283 | return kvm_io_bus_cmp(p1, p2); |
a343c9b7 PB |
3284 | } |
3285 | ||
39369f7a | 3286 | static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev, |
743eeb0b SL |
3287 | gpa_t addr, int len) |
3288 | { | |
743eeb0b SL |
3289 | bus->range[bus->dev_count++] = (struct kvm_io_range) { |
3290 | .addr = addr, | |
3291 | .len = len, | |
3292 | .dev = dev, | |
3293 | }; | |
3294 | ||
3295 | sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range), | |
3296 | kvm_io_bus_sort_cmp, NULL); | |
3297 | ||
3298 | return 0; | |
3299 | } | |
3300 | ||
39369f7a | 3301 | static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus, |
743eeb0b SL |
3302 | gpa_t addr, int len) |
3303 | { | |
3304 | struct kvm_io_range *range, key; | |
3305 | int off; | |
3306 | ||
3307 | key = (struct kvm_io_range) { | |
3308 | .addr = addr, | |
3309 | .len = len, | |
3310 | }; | |
3311 | ||
3312 | range = bsearch(&key, bus->range, bus->dev_count, | |
3313 | sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp); | |
3314 | if (range == NULL) | |
3315 | return -ENOENT; | |
3316 | ||
3317 | off = range - bus->range; | |
3318 | ||
c21fbff1 | 3319 | while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0) |
743eeb0b SL |
3320 | off--; |
3321 | ||
3322 | return off; | |
3323 | } | |
3324 | ||
e32edf4f | 3325 | static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus, |
126a5af5 CH |
3326 | struct kvm_io_range *range, const void *val) |
3327 | { | |
3328 | int idx; | |
3329 | ||
3330 | idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len); | |
3331 | if (idx < 0) | |
3332 | return -EOPNOTSUPP; | |
3333 | ||
3334 | while (idx < bus->dev_count && | |
c21fbff1 | 3335 | kvm_io_bus_cmp(range, &bus->range[idx]) == 0) { |
e32edf4f | 3336 | if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr, |
126a5af5 CH |
3337 | range->len, val)) |
3338 | return idx; | |
3339 | idx++; | |
3340 | } | |
3341 | ||
3342 | return -EOPNOTSUPP; | |
3343 | } | |
3344 | ||
bda9020e | 3345 | /* kvm_io_bus_write - called under kvm->slots_lock */ |
e32edf4f | 3346 | int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr, |
bda9020e | 3347 | int len, const void *val) |
2eeb2e94 | 3348 | { |
90d83dc3 | 3349 | struct kvm_io_bus *bus; |
743eeb0b | 3350 | struct kvm_io_range range; |
126a5af5 | 3351 | int r; |
743eeb0b SL |
3352 | |
3353 | range = (struct kvm_io_range) { | |
3354 | .addr = addr, | |
3355 | .len = len, | |
3356 | }; | |
90d83dc3 | 3357 | |
e32edf4f NN |
3358 | bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu); |
3359 | r = __kvm_io_bus_write(vcpu, bus, &range, val); | |
126a5af5 CH |
3360 | return r < 0 ? r : 0; |
3361 | } | |
3362 | ||
3363 | /* kvm_io_bus_write_cookie - called under kvm->slots_lock */ | |
e32edf4f NN |
3364 | int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, |
3365 | gpa_t addr, int len, const void *val, long cookie) | |
126a5af5 CH |
3366 | { |
3367 | struct kvm_io_bus *bus; | |
3368 | struct kvm_io_range range; | |
3369 | ||
3370 | range = (struct kvm_io_range) { | |
3371 | .addr = addr, | |
3372 | .len = len, | |
3373 | }; | |
3374 | ||
e32edf4f | 3375 | bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu); |
126a5af5 CH |
3376 | |
3377 | /* First try the device referenced by cookie. */ | |
3378 | if ((cookie >= 0) && (cookie < bus->dev_count) && | |
c21fbff1 | 3379 | (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0)) |
e32edf4f | 3380 | if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len, |
126a5af5 CH |
3381 | val)) |
3382 | return cookie; | |
3383 | ||
3384 | /* | |
3385 | * cookie contained garbage; fall back to search and return the | |
3386 | * correct cookie value. | |
3387 | */ | |
e32edf4f | 3388 | return __kvm_io_bus_write(vcpu, bus, &range, val); |
126a5af5 CH |
3389 | } |
3390 | ||
e32edf4f NN |
3391 | static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus, |
3392 | struct kvm_io_range *range, void *val) | |
126a5af5 CH |
3393 | { |
3394 | int idx; | |
3395 | ||
3396 | idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len); | |
743eeb0b SL |
3397 | if (idx < 0) |
3398 | return -EOPNOTSUPP; | |
3399 | ||
3400 | while (idx < bus->dev_count && | |
c21fbff1 | 3401 | kvm_io_bus_cmp(range, &bus->range[idx]) == 0) { |
e32edf4f | 3402 | if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr, |
126a5af5 CH |
3403 | range->len, val)) |
3404 | return idx; | |
743eeb0b SL |
3405 | idx++; |
3406 | } | |
3407 | ||
bda9020e MT |
3408 | return -EOPNOTSUPP; |
3409 | } | |
68c3b4d1 | 3410 | EXPORT_SYMBOL_GPL(kvm_io_bus_write); |
2eeb2e94 | 3411 | |
bda9020e | 3412 | /* kvm_io_bus_read - called under kvm->slots_lock */ |
e32edf4f | 3413 | int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr, |
e93f8a0f | 3414 | int len, void *val) |
bda9020e | 3415 | { |
90d83dc3 | 3416 | struct kvm_io_bus *bus; |
743eeb0b | 3417 | struct kvm_io_range range; |
126a5af5 | 3418 | int r; |
743eeb0b SL |
3419 | |
3420 | range = (struct kvm_io_range) { | |
3421 | .addr = addr, | |
3422 | .len = len, | |
3423 | }; | |
e93f8a0f | 3424 | |
e32edf4f NN |
3425 | bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu); |
3426 | r = __kvm_io_bus_read(vcpu, bus, &range, val); | |
126a5af5 CH |
3427 | return r < 0 ? r : 0; |
3428 | } | |
743eeb0b | 3429 | |
2eeb2e94 | 3430 | |
79fac95e | 3431 | /* Caller must hold slots_lock. */ |
743eeb0b SL |
3432 | int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, |
3433 | int len, struct kvm_io_device *dev) | |
6c474694 | 3434 | { |
e93f8a0f | 3435 | struct kvm_io_bus *new_bus, *bus; |
090b7aff | 3436 | |
e93f8a0f | 3437 | bus = kvm->buses[bus_idx]; |
6ea34c9b AK |
3438 | /* exclude ioeventfd which is limited by maximum fd */ |
3439 | if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1) | |
090b7aff | 3440 | return -ENOSPC; |
2eeb2e94 | 3441 | |
d3febddd | 3442 | new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count + 1) * |
a1300716 | 3443 | sizeof(struct kvm_io_range)), GFP_KERNEL); |
e93f8a0f MT |
3444 | if (!new_bus) |
3445 | return -ENOMEM; | |
a1300716 AK |
3446 | memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count * |
3447 | sizeof(struct kvm_io_range))); | |
743eeb0b | 3448 | kvm_io_bus_insert_dev(new_bus, dev, addr, len); |
e93f8a0f MT |
3449 | rcu_assign_pointer(kvm->buses[bus_idx], new_bus); |
3450 | synchronize_srcu_expedited(&kvm->srcu); | |
3451 | kfree(bus); | |
090b7aff GH |
3452 | |
3453 | return 0; | |
3454 | } | |
3455 | ||
79fac95e | 3456 | /* Caller must hold slots_lock. */ |
e93f8a0f MT |
3457 | int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx, |
3458 | struct kvm_io_device *dev) | |
090b7aff | 3459 | { |
e93f8a0f MT |
3460 | int i, r; |
3461 | struct kvm_io_bus *new_bus, *bus; | |
090b7aff | 3462 | |
cdfca7b3 | 3463 | bus = kvm->buses[bus_idx]; |
e93f8a0f | 3464 | r = -ENOENT; |
a1300716 AK |
3465 | for (i = 0; i < bus->dev_count; i++) |
3466 | if (bus->range[i].dev == dev) { | |
e93f8a0f | 3467 | r = 0; |
090b7aff GH |
3468 | break; |
3469 | } | |
e93f8a0f | 3470 | |
a1300716 | 3471 | if (r) |
e93f8a0f | 3472 | return r; |
a1300716 | 3473 | |
d3febddd | 3474 | new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count - 1) * |
a1300716 AK |
3475 | sizeof(struct kvm_io_range)), GFP_KERNEL); |
3476 | if (!new_bus) | |
3477 | return -ENOMEM; | |
3478 | ||
3479 | memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range)); | |
3480 | new_bus->dev_count--; | |
3481 | memcpy(new_bus->range + i, bus->range + i + 1, | |
3482 | (new_bus->dev_count - i) * sizeof(struct kvm_io_range)); | |
e93f8a0f MT |
3483 | |
3484 | rcu_assign_pointer(kvm->buses[bus_idx], new_bus); | |
3485 | synchronize_srcu_expedited(&kvm->srcu); | |
3486 | kfree(bus); | |
3487 | return r; | |
2eeb2e94 GH |
3488 | } |
3489 | ||
536a6f88 JF |
3490 | static int kvm_debugfs_open(struct inode *inode, struct file *file, |
3491 | int (*get)(void *, u64 *), int (*set)(void *, u64), | |
3492 | const char *fmt) | |
3493 | { | |
3494 | struct kvm_stat_data *stat_data = (struct kvm_stat_data *) | |
3495 | inode->i_private; | |
3496 | ||
3497 | /* The debugfs files are a reference to the kvm struct which | |
3498 | * is still valid when kvm_destroy_vm is called. | |
3499 | * To avoid the race between open and the removal of the debugfs | |
3500 | * directory we test against the users count. | |
3501 | */ | |
3502 | if (!atomic_add_unless(&stat_data->kvm->users_count, 1, 0)) | |
3503 | return -ENOENT; | |
3504 | ||
3505 | if (simple_attr_open(inode, file, get, set, fmt)) { | |
3506 | kvm_put_kvm(stat_data->kvm); | |
3507 | return -ENOMEM; | |
3508 | } | |
3509 | ||
3510 | return 0; | |
3511 | } | |
3512 | ||
3513 | static int kvm_debugfs_release(struct inode *inode, struct file *file) | |
3514 | { | |
3515 | struct kvm_stat_data *stat_data = (struct kvm_stat_data *) | |
3516 | inode->i_private; | |
3517 | ||
3518 | simple_attr_release(inode, file); | |
3519 | kvm_put_kvm(stat_data->kvm); | |
3520 | ||
3521 | return 0; | |
3522 | } | |
3523 | ||
3524 | static int vm_stat_get_per_vm(void *data, u64 *val) | |
3525 | { | |
3526 | struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data; | |
3527 | ||
3528 | *val = *(u32 *)((void *)stat_data->kvm + stat_data->offset); | |
3529 | ||
3530 | return 0; | |
3531 | } | |
3532 | ||
3533 | static int vm_stat_get_per_vm_open(struct inode *inode, struct file *file) | |
3534 | { | |
3535 | __simple_attr_check_format("%llu\n", 0ull); | |
3536 | return kvm_debugfs_open(inode, file, vm_stat_get_per_vm, | |
3537 | NULL, "%llu\n"); | |
3538 | } | |
3539 | ||
3540 | static const struct file_operations vm_stat_get_per_vm_fops = { | |
3541 | .owner = THIS_MODULE, | |
3542 | .open = vm_stat_get_per_vm_open, | |
3543 | .release = kvm_debugfs_release, | |
3544 | .read = simple_attr_read, | |
3545 | .write = simple_attr_write, | |
3546 | .llseek = generic_file_llseek, | |
3547 | }; | |
3548 | ||
3549 | static int vcpu_stat_get_per_vm(void *data, u64 *val) | |
3550 | { | |
3551 | int i; | |
3552 | struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data; | |
3553 | struct kvm_vcpu *vcpu; | |
3554 | ||
3555 | *val = 0; | |
3556 | ||
3557 | kvm_for_each_vcpu(i, vcpu, stat_data->kvm) | |
3558 | *val += *(u32 *)((void *)vcpu + stat_data->offset); | |
3559 | ||
3560 | return 0; | |
3561 | } | |
3562 | ||
3563 | static int vcpu_stat_get_per_vm_open(struct inode *inode, struct file *file) | |
3564 | { | |
3565 | __simple_attr_check_format("%llu\n", 0ull); | |
3566 | return kvm_debugfs_open(inode, file, vcpu_stat_get_per_vm, | |
3567 | NULL, "%llu\n"); | |
3568 | } | |
3569 | ||
3570 | static const struct file_operations vcpu_stat_get_per_vm_fops = { | |
3571 | .owner = THIS_MODULE, | |
3572 | .open = vcpu_stat_get_per_vm_open, | |
3573 | .release = kvm_debugfs_release, | |
3574 | .read = simple_attr_read, | |
3575 | .write = simple_attr_write, | |
3576 | .llseek = generic_file_llseek, | |
3577 | }; | |
3578 | ||
3579 | static const struct file_operations *stat_fops_per_vm[] = { | |
3580 | [KVM_STAT_VCPU] = &vcpu_stat_get_per_vm_fops, | |
3581 | [KVM_STAT_VM] = &vm_stat_get_per_vm_fops, | |
3582 | }; | |
3583 | ||
8b88b099 | 3584 | static int vm_stat_get(void *_offset, u64 *val) |
ba1389b7 AK |
3585 | { |
3586 | unsigned offset = (long)_offset; | |
ba1389b7 | 3587 | struct kvm *kvm; |
536a6f88 JF |
3588 | struct kvm_stat_data stat_tmp = {.offset = offset}; |
3589 | u64 tmp_val; | |
ba1389b7 | 3590 | |
8b88b099 | 3591 | *val = 0; |
2f303b74 | 3592 | spin_lock(&kvm_lock); |
536a6f88 JF |
3593 | list_for_each_entry(kvm, &vm_list, vm_list) { |
3594 | stat_tmp.kvm = kvm; | |
3595 | vm_stat_get_per_vm((void *)&stat_tmp, &tmp_val); | |
3596 | *val += tmp_val; | |
3597 | } | |
2f303b74 | 3598 | spin_unlock(&kvm_lock); |
8b88b099 | 3599 | return 0; |
ba1389b7 AK |
3600 | } |
3601 | ||
3602 | DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n"); | |
3603 | ||
8b88b099 | 3604 | static int vcpu_stat_get(void *_offset, u64 *val) |
1165f5fe AK |
3605 | { |
3606 | unsigned offset = (long)_offset; | |
1165f5fe | 3607 | struct kvm *kvm; |
536a6f88 JF |
3608 | struct kvm_stat_data stat_tmp = {.offset = offset}; |
3609 | u64 tmp_val; | |
1165f5fe | 3610 | |
8b88b099 | 3611 | *val = 0; |
2f303b74 | 3612 | spin_lock(&kvm_lock); |
536a6f88 JF |
3613 | list_for_each_entry(kvm, &vm_list, vm_list) { |
3614 | stat_tmp.kvm = kvm; | |
3615 | vcpu_stat_get_per_vm((void *)&stat_tmp, &tmp_val); | |
3616 | *val += tmp_val; | |
3617 | } | |
2f303b74 | 3618 | spin_unlock(&kvm_lock); |
8b88b099 | 3619 | return 0; |
1165f5fe AK |
3620 | } |
3621 | ||
ba1389b7 AK |
3622 | DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n"); |
3623 | ||
828c0950 | 3624 | static const struct file_operations *stat_fops[] = { |
ba1389b7 AK |
3625 | [KVM_STAT_VCPU] = &vcpu_stat_fops, |
3626 | [KVM_STAT_VM] = &vm_stat_fops, | |
3627 | }; | |
1165f5fe | 3628 | |
4f69b680 | 3629 | static int kvm_init_debug(void) |
6aa8b732 | 3630 | { |
0c8eb04a | 3631 | int r = -EEXIST; |
6aa8b732 AK |
3632 | struct kvm_stats_debugfs_item *p; |
3633 | ||
76f7c879 | 3634 | kvm_debugfs_dir = debugfs_create_dir("kvm", NULL); |
4f69b680 H |
3635 | if (kvm_debugfs_dir == NULL) |
3636 | goto out; | |
3637 | ||
536a6f88 JF |
3638 | kvm_debugfs_num_entries = 0; |
3639 | for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) { | |
4bd33b56 JF |
3640 | if (!debugfs_create_file(p->name, 0444, kvm_debugfs_dir, |
3641 | (void *)(long)p->offset, | |
3642 | stat_fops[p->kind])) | |
4f69b680 H |
3643 | goto out_dir; |
3644 | } | |
3645 | ||
3646 | return 0; | |
3647 | ||
3648 | out_dir: | |
3649 | debugfs_remove_recursive(kvm_debugfs_dir); | |
3650 | out: | |
3651 | return r; | |
6aa8b732 AK |
3652 | } |
3653 | ||
fb3600cc | 3654 | static int kvm_suspend(void) |
59ae6c6b | 3655 | { |
10474ae8 | 3656 | if (kvm_usage_count) |
75b7127c | 3657 | hardware_disable_nolock(NULL); |
59ae6c6b AK |
3658 | return 0; |
3659 | } | |
3660 | ||
fb3600cc | 3661 | static void kvm_resume(void) |
59ae6c6b | 3662 | { |
ca84d1a2 | 3663 | if (kvm_usage_count) { |
4a937f96 | 3664 | WARN_ON(raw_spin_is_locked(&kvm_count_lock)); |
75b7127c | 3665 | hardware_enable_nolock(NULL); |
ca84d1a2 | 3666 | } |
59ae6c6b AK |
3667 | } |
3668 | ||
fb3600cc | 3669 | static struct syscore_ops kvm_syscore_ops = { |
59ae6c6b AK |
3670 | .suspend = kvm_suspend, |
3671 | .resume = kvm_resume, | |
3672 | }; | |
3673 | ||
15ad7146 AK |
3674 | static inline |
3675 | struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn) | |
3676 | { | |
3677 | return container_of(pn, struct kvm_vcpu, preempt_notifier); | |
3678 | } | |
3679 | ||
3680 | static void kvm_sched_in(struct preempt_notifier *pn, int cpu) | |
3681 | { | |
3682 | struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn); | |
f95ef0cd | 3683 | |
3a08a8f9 R |
3684 | if (vcpu->preempted) |
3685 | vcpu->preempted = false; | |
15ad7146 | 3686 | |
e790d9ef RK |
3687 | kvm_arch_sched_in(vcpu, cpu); |
3688 | ||
e9b11c17 | 3689 | kvm_arch_vcpu_load(vcpu, cpu); |
15ad7146 AK |
3690 | } |
3691 | ||
3692 | static void kvm_sched_out(struct preempt_notifier *pn, | |
3693 | struct task_struct *next) | |
3694 | { | |
3695 | struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn); | |
3696 | ||
3a08a8f9 R |
3697 | if (current->state == TASK_RUNNING) |
3698 | vcpu->preempted = true; | |
e9b11c17 | 3699 | kvm_arch_vcpu_put(vcpu); |
15ad7146 AK |
3700 | } |
3701 | ||
0ee75bea | 3702 | int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align, |
c16f862d | 3703 | struct module *module) |
6aa8b732 AK |
3704 | { |
3705 | int r; | |
002c7f7c | 3706 | int cpu; |
6aa8b732 | 3707 | |
f8c16bba ZX |
3708 | r = kvm_arch_init(opaque); |
3709 | if (r) | |
d2308784 | 3710 | goto out_fail; |
cb498ea2 | 3711 | |
7dac16c3 AH |
3712 | /* |
3713 | * kvm_arch_init makes sure there's at most one caller | |
3714 | * for architectures that support multiple implementations, | |
3715 | * like intel and amd on x86. | |
3716 | * kvm_arch_init must be called before kvm_irqfd_init to avoid creating | |
3717 | * conflicts in case kvm is already setup for another implementation. | |
3718 | */ | |
3719 | r = kvm_irqfd_init(); | |
3720 | if (r) | |
3721 | goto out_irqfd; | |
3722 | ||
8437a617 | 3723 | if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) { |
7f59f492 RR |
3724 | r = -ENOMEM; |
3725 | goto out_free_0; | |
3726 | } | |
3727 | ||
e9b11c17 | 3728 | r = kvm_arch_hardware_setup(); |
6aa8b732 | 3729 | if (r < 0) |
7f59f492 | 3730 | goto out_free_0a; |
6aa8b732 | 3731 | |
002c7f7c YS |
3732 | for_each_online_cpu(cpu) { |
3733 | smp_call_function_single(cpu, | |
e9b11c17 | 3734 | kvm_arch_check_processor_compat, |
8691e5a8 | 3735 | &r, 1); |
002c7f7c | 3736 | if (r < 0) |
d2308784 | 3737 | goto out_free_1; |
002c7f7c YS |
3738 | } |
3739 | ||
8c18b2d2 TG |
3740 | r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "AP_KVM_STARTING", |
3741 | kvm_starting_cpu, kvm_dying_cpu); | |
774c47f1 | 3742 | if (r) |
d2308784 | 3743 | goto out_free_2; |
6aa8b732 AK |
3744 | register_reboot_notifier(&kvm_reboot_notifier); |
3745 | ||
c16f862d | 3746 | /* A kmem cache lets us meet the alignment requirements of fx_save. */ |
0ee75bea AK |
3747 | if (!vcpu_align) |
3748 | vcpu_align = __alignof__(struct kvm_vcpu); | |
3749 | kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align, | |
56919c5c | 3750 | 0, NULL); |
c16f862d RR |
3751 | if (!kvm_vcpu_cache) { |
3752 | r = -ENOMEM; | |
fb3600cc | 3753 | goto out_free_3; |
c16f862d RR |
3754 | } |
3755 | ||
af585b92 GN |
3756 | r = kvm_async_pf_init(); |
3757 | if (r) | |
3758 | goto out_free; | |
3759 | ||
6aa8b732 | 3760 | kvm_chardev_ops.owner = module; |
3d3aab1b CB |
3761 | kvm_vm_fops.owner = module; |
3762 | kvm_vcpu_fops.owner = module; | |
6aa8b732 AK |
3763 | |
3764 | r = misc_register(&kvm_dev); | |
3765 | if (r) { | |
1170adc6 | 3766 | pr_err("kvm: misc device register failed\n"); |
af585b92 | 3767 | goto out_unreg; |
6aa8b732 AK |
3768 | } |
3769 | ||
fb3600cc RW |
3770 | register_syscore_ops(&kvm_syscore_ops); |
3771 | ||
15ad7146 AK |
3772 | kvm_preempt_ops.sched_in = kvm_sched_in; |
3773 | kvm_preempt_ops.sched_out = kvm_sched_out; | |
3774 | ||
4f69b680 H |
3775 | r = kvm_init_debug(); |
3776 | if (r) { | |
1170adc6 | 3777 | pr_err("kvm: create debugfs files failed\n"); |
4f69b680 H |
3778 | goto out_undebugfs; |
3779 | } | |
0ea4ed8e | 3780 | |
3c3c29fd PB |
3781 | r = kvm_vfio_ops_init(); |
3782 | WARN_ON(r); | |
3783 | ||
c7addb90 | 3784 | return 0; |
6aa8b732 | 3785 | |
4f69b680 H |
3786 | out_undebugfs: |
3787 | unregister_syscore_ops(&kvm_syscore_ops); | |
afc2f792 | 3788 | misc_deregister(&kvm_dev); |
af585b92 GN |
3789 | out_unreg: |
3790 | kvm_async_pf_deinit(); | |
6aa8b732 | 3791 | out_free: |
c16f862d | 3792 | kmem_cache_destroy(kvm_vcpu_cache); |
d2308784 | 3793 | out_free_3: |
6aa8b732 | 3794 | unregister_reboot_notifier(&kvm_reboot_notifier); |
8c18b2d2 | 3795 | cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING); |
d2308784 | 3796 | out_free_2: |
d2308784 | 3797 | out_free_1: |
e9b11c17 | 3798 | kvm_arch_hardware_unsetup(); |
7f59f492 RR |
3799 | out_free_0a: |
3800 | free_cpumask_var(cpus_hardware_enabled); | |
d2308784 | 3801 | out_free_0: |
a0f155e9 CH |
3802 | kvm_irqfd_exit(); |
3803 | out_irqfd: | |
7dac16c3 AH |
3804 | kvm_arch_exit(); |
3805 | out_fail: | |
6aa8b732 AK |
3806 | return r; |
3807 | } | |
cb498ea2 | 3808 | EXPORT_SYMBOL_GPL(kvm_init); |
6aa8b732 | 3809 | |
cb498ea2 | 3810 | void kvm_exit(void) |
6aa8b732 | 3811 | { |
4bd33b56 | 3812 | debugfs_remove_recursive(kvm_debugfs_dir); |
6aa8b732 | 3813 | misc_deregister(&kvm_dev); |
c16f862d | 3814 | kmem_cache_destroy(kvm_vcpu_cache); |
af585b92 | 3815 | kvm_async_pf_deinit(); |
fb3600cc | 3816 | unregister_syscore_ops(&kvm_syscore_ops); |
6aa8b732 | 3817 | unregister_reboot_notifier(&kvm_reboot_notifier); |
8c18b2d2 | 3818 | cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING); |
75b7127c | 3819 | on_each_cpu(hardware_disable_nolock, NULL, 1); |
e9b11c17 | 3820 | kvm_arch_hardware_unsetup(); |
f8c16bba | 3821 | kvm_arch_exit(); |
a0f155e9 | 3822 | kvm_irqfd_exit(); |
7f59f492 | 3823 | free_cpumask_var(cpus_hardware_enabled); |
571ee1b6 | 3824 | kvm_vfio_ops_exit(); |
6aa8b732 | 3825 | } |
cb498ea2 | 3826 | EXPORT_SYMBOL_GPL(kvm_exit); |