]>
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 | ||
e2174021 | 19 | #include "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 AK |
54 | #include <asm/io.h> |
55 | #include <asm/uaccess.h> | |
3e021bf5 | 56 | #include <asm/pgtable.h> |
6aa8b732 | 57 | |
5f94c174 | 58 | #include "coalesced_mmio.h" |
af585b92 | 59 | #include "async_pf.h" |
5f94c174 | 60 | |
229456fc MT |
61 | #define CREATE_TRACE_POINTS |
62 | #include <trace/events/kvm.h> | |
63 | ||
6aa8b732 AK |
64 | MODULE_AUTHOR("Qumranet"); |
65 | MODULE_LICENSE("GPL"); | |
66 | ||
fa40a821 MT |
67 | /* |
68 | * Ordering of locks: | |
69 | * | |
fae3a353 | 70 | * kvm->lock --> kvm->slots_lock --> kvm->irq_lock |
fa40a821 MT |
71 | */ |
72 | ||
e935b837 | 73 | DEFINE_RAW_SPINLOCK(kvm_lock); |
e9b11c17 | 74 | LIST_HEAD(vm_list); |
133de902 | 75 | |
7f59f492 | 76 | static cpumask_var_t cpus_hardware_enabled; |
10474ae8 AG |
77 | static int kvm_usage_count = 0; |
78 | static atomic_t hardware_enable_failed; | |
1b6c0168 | 79 | |
c16f862d RR |
80 | struct kmem_cache *kvm_vcpu_cache; |
81 | EXPORT_SYMBOL_GPL(kvm_vcpu_cache); | |
1165f5fe | 82 | |
15ad7146 AK |
83 | static __read_mostly struct preempt_ops kvm_preempt_ops; |
84 | ||
76f7c879 | 85 | struct dentry *kvm_debugfs_dir; |
6aa8b732 | 86 | |
bccf2150 AK |
87 | static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl, |
88 | unsigned long arg); | |
1dda606c AG |
89 | #ifdef CONFIG_COMPAT |
90 | static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl, | |
91 | unsigned long arg); | |
92 | #endif | |
10474ae8 AG |
93 | static int hardware_enable_all(void); |
94 | static void hardware_disable_all(void); | |
bccf2150 | 95 | |
e93f8a0f MT |
96 | static void kvm_io_bus_destroy(struct kvm_io_bus *bus); |
97 | ||
b7c4145b AK |
98 | bool kvm_rebooting; |
99 | EXPORT_SYMBOL_GPL(kvm_rebooting); | |
4ecac3fd | 100 | |
54dee993 MT |
101 | static bool largepages_enabled = true; |
102 | ||
a2766325 | 103 | bool kvm_is_mmio_pfn(pfn_t pfn) |
cbff90a7 | 104 | { |
11feeb49 AA |
105 | if (pfn_valid(pfn)) |
106 | return PageReserved(pfn_to_page(pfn)); | |
cbff90a7 BAY |
107 | |
108 | return true; | |
109 | } | |
110 | ||
bccf2150 AK |
111 | /* |
112 | * Switches to specified vcpu, until a matching vcpu_put() | |
113 | */ | |
9fc77441 | 114 | int vcpu_load(struct kvm_vcpu *vcpu) |
6aa8b732 | 115 | { |
15ad7146 AK |
116 | int cpu; |
117 | ||
9fc77441 MT |
118 | if (mutex_lock_killable(&vcpu->mutex)) |
119 | return -EINTR; | |
34bb10b7 RR |
120 | if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) { |
121 | /* The thread running this VCPU changed. */ | |
122 | struct pid *oldpid = vcpu->pid; | |
123 | struct pid *newpid = get_task_pid(current, PIDTYPE_PID); | |
124 | rcu_assign_pointer(vcpu->pid, newpid); | |
125 | synchronize_rcu(); | |
126 | put_pid(oldpid); | |
127 | } | |
15ad7146 AK |
128 | cpu = get_cpu(); |
129 | preempt_notifier_register(&vcpu->preempt_notifier); | |
313a3dc7 | 130 | kvm_arch_vcpu_load(vcpu, cpu); |
15ad7146 | 131 | put_cpu(); |
9fc77441 | 132 | return 0; |
6aa8b732 AK |
133 | } |
134 | ||
313a3dc7 | 135 | void vcpu_put(struct kvm_vcpu *vcpu) |
6aa8b732 | 136 | { |
15ad7146 | 137 | preempt_disable(); |
313a3dc7 | 138 | kvm_arch_vcpu_put(vcpu); |
15ad7146 AK |
139 | preempt_notifier_unregister(&vcpu->preempt_notifier); |
140 | preempt_enable(); | |
6aa8b732 AK |
141 | mutex_unlock(&vcpu->mutex); |
142 | } | |
143 | ||
d9e368d6 AK |
144 | static void ack_flush(void *_completed) |
145 | { | |
d9e368d6 AK |
146 | } |
147 | ||
49846896 | 148 | static bool make_all_cpus_request(struct kvm *kvm, unsigned int req) |
d9e368d6 | 149 | { |
597a5f55 | 150 | int i, cpu, me; |
6ef7a1bc RR |
151 | cpumask_var_t cpus; |
152 | bool called = true; | |
d9e368d6 | 153 | struct kvm_vcpu *vcpu; |
d9e368d6 | 154 | |
79f55997 | 155 | zalloc_cpumask_var(&cpus, GFP_ATOMIC); |
6ef7a1bc | 156 | |
3cba4130 | 157 | me = get_cpu(); |
988a2cae | 158 | kvm_for_each_vcpu(i, vcpu, kvm) { |
3cba4130 | 159 | kvm_make_request(req, vcpu); |
d9e368d6 | 160 | cpu = vcpu->cpu; |
6b7e2d09 XG |
161 | |
162 | /* Set ->requests bit before we read ->mode */ | |
163 | smp_mb(); | |
164 | ||
165 | if (cpus != NULL && cpu != -1 && cpu != me && | |
166 | kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE) | |
6ef7a1bc | 167 | cpumask_set_cpu(cpu, cpus); |
49846896 | 168 | } |
6ef7a1bc RR |
169 | if (unlikely(cpus == NULL)) |
170 | smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1); | |
171 | else if (!cpumask_empty(cpus)) | |
172 | smp_call_function_many(cpus, ack_flush, NULL, 1); | |
173 | else | |
174 | called = false; | |
3cba4130 | 175 | put_cpu(); |
6ef7a1bc | 176 | free_cpumask_var(cpus); |
49846896 | 177 | return called; |
d9e368d6 AK |
178 | } |
179 | ||
49846896 | 180 | void kvm_flush_remote_tlbs(struct kvm *kvm) |
2e53d63a | 181 | { |
bec87d6e | 182 | long dirty_count = kvm->tlbs_dirty; |
a4ee1ca4 XG |
183 | |
184 | smp_mb(); | |
49846896 RR |
185 | if (make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH)) |
186 | ++kvm->stat.remote_tlb_flush; | |
a4ee1ca4 | 187 | cmpxchg(&kvm->tlbs_dirty, dirty_count, 0); |
2e53d63a MT |
188 | } |
189 | ||
49846896 RR |
190 | void kvm_reload_remote_mmus(struct kvm *kvm) |
191 | { | |
192 | make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD); | |
193 | } | |
2e53d63a | 194 | |
d828199e MT |
195 | void kvm_make_mclock_inprogress_request(struct kvm *kvm) |
196 | { | |
197 | make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS); | |
198 | } | |
199 | ||
3d81bc7e | 200 | void kvm_make_scan_ioapic_request(struct kvm *kvm) |
c7c9c56c | 201 | { |
3d81bc7e | 202 | make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC); |
c7c9c56c YZ |
203 | } |
204 | ||
fb3f0f51 RR |
205 | int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id) |
206 | { | |
207 | struct page *page; | |
208 | int r; | |
209 | ||
210 | mutex_init(&vcpu->mutex); | |
211 | vcpu->cpu = -1; | |
fb3f0f51 RR |
212 | vcpu->kvm = kvm; |
213 | vcpu->vcpu_id = id; | |
34bb10b7 | 214 | vcpu->pid = NULL; |
b6958ce4 | 215 | init_waitqueue_head(&vcpu->wq); |
af585b92 | 216 | kvm_async_pf_vcpu_init(vcpu); |
fb3f0f51 RR |
217 | |
218 | page = alloc_page(GFP_KERNEL | __GFP_ZERO); | |
219 | if (!page) { | |
220 | r = -ENOMEM; | |
221 | goto fail; | |
222 | } | |
223 | vcpu->run = page_address(page); | |
224 | ||
4c088493 R |
225 | kvm_vcpu_set_in_spin_loop(vcpu, false); |
226 | kvm_vcpu_set_dy_eligible(vcpu, false); | |
3a08a8f9 | 227 | vcpu->preempted = false; |
4c088493 | 228 | |
e9b11c17 | 229 | r = kvm_arch_vcpu_init(vcpu); |
fb3f0f51 | 230 | if (r < 0) |
e9b11c17 | 231 | goto fail_free_run; |
fb3f0f51 RR |
232 | return 0; |
233 | ||
fb3f0f51 RR |
234 | fail_free_run: |
235 | free_page((unsigned long)vcpu->run); | |
236 | fail: | |
76fafa5e | 237 | return r; |
fb3f0f51 RR |
238 | } |
239 | EXPORT_SYMBOL_GPL(kvm_vcpu_init); | |
240 | ||
241 | void kvm_vcpu_uninit(struct kvm_vcpu *vcpu) | |
242 | { | |
34bb10b7 | 243 | put_pid(vcpu->pid); |
e9b11c17 | 244 | kvm_arch_vcpu_uninit(vcpu); |
fb3f0f51 RR |
245 | free_page((unsigned long)vcpu->run); |
246 | } | |
247 | EXPORT_SYMBOL_GPL(kvm_vcpu_uninit); | |
248 | ||
e930bffe AA |
249 | #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER) |
250 | static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn) | |
251 | { | |
252 | return container_of(mn, struct kvm, mmu_notifier); | |
253 | } | |
254 | ||
255 | static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn, | |
256 | struct mm_struct *mm, | |
257 | unsigned long address) | |
258 | { | |
259 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
bc6678a3 | 260 | int need_tlb_flush, idx; |
e930bffe AA |
261 | |
262 | /* | |
263 | * When ->invalidate_page runs, the linux pte has been zapped | |
264 | * already but the page is still allocated until | |
265 | * ->invalidate_page returns. So if we increase the sequence | |
266 | * here the kvm page fault will notice if the spte can't be | |
267 | * established because the page is going to be freed. If | |
268 | * instead the kvm page fault establishes the spte before | |
269 | * ->invalidate_page runs, kvm_unmap_hva will release it | |
270 | * before returning. | |
271 | * | |
272 | * The sequence increase only need to be seen at spin_unlock | |
273 | * time, and not at spin_lock time. | |
274 | * | |
275 | * Increasing the sequence after the spin_unlock would be | |
276 | * unsafe because the kvm page fault could then establish the | |
277 | * pte after kvm_unmap_hva returned, without noticing the page | |
278 | * is going to be freed. | |
279 | */ | |
bc6678a3 | 280 | idx = srcu_read_lock(&kvm->srcu); |
e930bffe | 281 | spin_lock(&kvm->mmu_lock); |
565f3be2 | 282 | |
e930bffe | 283 | kvm->mmu_notifier_seq++; |
a4ee1ca4 | 284 | need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty; |
e930bffe AA |
285 | /* we've to flush the tlb before the pages can be freed */ |
286 | if (need_tlb_flush) | |
287 | kvm_flush_remote_tlbs(kvm); | |
288 | ||
565f3be2 TY |
289 | spin_unlock(&kvm->mmu_lock); |
290 | srcu_read_unlock(&kvm->srcu, idx); | |
e930bffe AA |
291 | } |
292 | ||
3da0dd43 IE |
293 | static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn, |
294 | struct mm_struct *mm, | |
295 | unsigned long address, | |
296 | pte_t pte) | |
297 | { | |
298 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
bc6678a3 | 299 | int idx; |
3da0dd43 | 300 | |
bc6678a3 | 301 | idx = srcu_read_lock(&kvm->srcu); |
3da0dd43 IE |
302 | spin_lock(&kvm->mmu_lock); |
303 | kvm->mmu_notifier_seq++; | |
304 | kvm_set_spte_hva(kvm, address, pte); | |
305 | spin_unlock(&kvm->mmu_lock); | |
bc6678a3 | 306 | srcu_read_unlock(&kvm->srcu, idx); |
3da0dd43 IE |
307 | } |
308 | ||
e930bffe AA |
309 | static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn, |
310 | struct mm_struct *mm, | |
311 | unsigned long start, | |
312 | unsigned long end) | |
313 | { | |
314 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
bc6678a3 | 315 | int need_tlb_flush = 0, idx; |
e930bffe | 316 | |
bc6678a3 | 317 | idx = srcu_read_lock(&kvm->srcu); |
e930bffe AA |
318 | spin_lock(&kvm->mmu_lock); |
319 | /* | |
320 | * The count increase must become visible at unlock time as no | |
321 | * spte can be established without taking the mmu_lock and | |
322 | * count is also read inside the mmu_lock critical section. | |
323 | */ | |
324 | kvm->mmu_notifier_count++; | |
b3ae2096 | 325 | need_tlb_flush = kvm_unmap_hva_range(kvm, start, end); |
a4ee1ca4 | 326 | need_tlb_flush |= kvm->tlbs_dirty; |
e930bffe AA |
327 | /* we've to flush the tlb before the pages can be freed */ |
328 | if (need_tlb_flush) | |
329 | kvm_flush_remote_tlbs(kvm); | |
565f3be2 TY |
330 | |
331 | spin_unlock(&kvm->mmu_lock); | |
332 | srcu_read_unlock(&kvm->srcu, idx); | |
e930bffe AA |
333 | } |
334 | ||
335 | static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn, | |
336 | struct mm_struct *mm, | |
337 | unsigned long start, | |
338 | unsigned long end) | |
339 | { | |
340 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
341 | ||
342 | spin_lock(&kvm->mmu_lock); | |
343 | /* | |
344 | * This sequence increase will notify the kvm page fault that | |
345 | * the page that is going to be mapped in the spte could have | |
346 | * been freed. | |
347 | */ | |
348 | kvm->mmu_notifier_seq++; | |
a355aa54 | 349 | smp_wmb(); |
e930bffe AA |
350 | /* |
351 | * The above sequence increase must be visible before the | |
a355aa54 PM |
352 | * below count decrease, which is ensured by the smp_wmb above |
353 | * in conjunction with the smp_rmb in mmu_notifier_retry(). | |
e930bffe AA |
354 | */ |
355 | kvm->mmu_notifier_count--; | |
356 | spin_unlock(&kvm->mmu_lock); | |
357 | ||
358 | BUG_ON(kvm->mmu_notifier_count < 0); | |
359 | } | |
360 | ||
361 | static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn, | |
362 | struct mm_struct *mm, | |
363 | unsigned long address) | |
364 | { | |
365 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
bc6678a3 | 366 | int young, idx; |
e930bffe | 367 | |
bc6678a3 | 368 | idx = srcu_read_lock(&kvm->srcu); |
e930bffe | 369 | spin_lock(&kvm->mmu_lock); |
e930bffe | 370 | |
565f3be2 | 371 | young = kvm_age_hva(kvm, address); |
e930bffe AA |
372 | if (young) |
373 | kvm_flush_remote_tlbs(kvm); | |
374 | ||
565f3be2 TY |
375 | spin_unlock(&kvm->mmu_lock); |
376 | srcu_read_unlock(&kvm->srcu, idx); | |
377 | ||
e930bffe AA |
378 | return young; |
379 | } | |
380 | ||
8ee53820 AA |
381 | static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn, |
382 | struct mm_struct *mm, | |
383 | unsigned long address) | |
384 | { | |
385 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
386 | int young, idx; | |
387 | ||
388 | idx = srcu_read_lock(&kvm->srcu); | |
389 | spin_lock(&kvm->mmu_lock); | |
390 | young = kvm_test_age_hva(kvm, address); | |
391 | spin_unlock(&kvm->mmu_lock); | |
392 | srcu_read_unlock(&kvm->srcu, idx); | |
393 | ||
394 | return young; | |
395 | } | |
396 | ||
85db06e5 MT |
397 | static void kvm_mmu_notifier_release(struct mmu_notifier *mn, |
398 | struct mm_struct *mm) | |
399 | { | |
400 | struct kvm *kvm = mmu_notifier_to_kvm(mn); | |
eda2beda LJ |
401 | int idx; |
402 | ||
403 | idx = srcu_read_lock(&kvm->srcu); | |
2df72e9b | 404 | kvm_arch_flush_shadow_all(kvm); |
eda2beda | 405 | srcu_read_unlock(&kvm->srcu, idx); |
85db06e5 MT |
406 | } |
407 | ||
e930bffe AA |
408 | static const struct mmu_notifier_ops kvm_mmu_notifier_ops = { |
409 | .invalidate_page = kvm_mmu_notifier_invalidate_page, | |
410 | .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start, | |
411 | .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end, | |
412 | .clear_flush_young = kvm_mmu_notifier_clear_flush_young, | |
8ee53820 | 413 | .test_young = kvm_mmu_notifier_test_young, |
3da0dd43 | 414 | .change_pte = kvm_mmu_notifier_change_pte, |
85db06e5 | 415 | .release = kvm_mmu_notifier_release, |
e930bffe | 416 | }; |
4c07b0a4 AK |
417 | |
418 | static int kvm_init_mmu_notifier(struct kvm *kvm) | |
419 | { | |
420 | kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops; | |
421 | return mmu_notifier_register(&kvm->mmu_notifier, current->mm); | |
422 | } | |
423 | ||
424 | #else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */ | |
425 | ||
426 | static int kvm_init_mmu_notifier(struct kvm *kvm) | |
427 | { | |
428 | return 0; | |
429 | } | |
430 | ||
e930bffe AA |
431 | #endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */ |
432 | ||
bf3e05bc XG |
433 | static void kvm_init_memslots_id(struct kvm *kvm) |
434 | { | |
435 | int i; | |
436 | struct kvm_memslots *slots = kvm->memslots; | |
437 | ||
438 | for (i = 0; i < KVM_MEM_SLOTS_NUM; i++) | |
f85e2cb5 | 439 | slots->id_to_index[i] = slots->memslots[i].id = i; |
bf3e05bc XG |
440 | } |
441 | ||
e08b9637 | 442 | static struct kvm *kvm_create_vm(unsigned long type) |
6aa8b732 | 443 | { |
d89f5eff JK |
444 | int r, i; |
445 | struct kvm *kvm = kvm_arch_alloc_vm(); | |
6aa8b732 | 446 | |
d89f5eff JK |
447 | if (!kvm) |
448 | return ERR_PTR(-ENOMEM); | |
449 | ||
e08b9637 | 450 | r = kvm_arch_init_vm(kvm, type); |
d89f5eff JK |
451 | if (r) |
452 | goto out_err_nodisable; | |
10474ae8 AG |
453 | |
454 | r = hardware_enable_all(); | |
455 | if (r) | |
456 | goto out_err_nodisable; | |
457 | ||
75858a84 AK |
458 | #ifdef CONFIG_HAVE_KVM_IRQCHIP |
459 | INIT_HLIST_HEAD(&kvm->mask_notifier_list); | |
136bdfee | 460 | INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list); |
75858a84 | 461 | #endif |
6aa8b732 | 462 | |
1e702d9a AW |
463 | BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX); |
464 | ||
46a26bf5 MT |
465 | r = -ENOMEM; |
466 | kvm->memslots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL); | |
467 | if (!kvm->memslots) | |
57e7fbee | 468 | goto out_err_nosrcu; |
bf3e05bc | 469 | kvm_init_memslots_id(kvm); |
bc6678a3 | 470 | if (init_srcu_struct(&kvm->srcu)) |
57e7fbee | 471 | goto out_err_nosrcu; |
e93f8a0f MT |
472 | for (i = 0; i < KVM_NR_BUSES; i++) { |
473 | kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus), | |
474 | GFP_KERNEL); | |
57e7fbee | 475 | if (!kvm->buses[i]) |
e93f8a0f | 476 | goto out_err; |
e93f8a0f | 477 | } |
e930bffe | 478 | |
74b5c5bf | 479 | spin_lock_init(&kvm->mmu_lock); |
6d4e4c4f AK |
480 | kvm->mm = current->mm; |
481 | atomic_inc(&kvm->mm->mm_count); | |
d34e6b17 | 482 | kvm_eventfd_init(kvm); |
11ec2804 | 483 | mutex_init(&kvm->lock); |
60eead79 | 484 | mutex_init(&kvm->irq_lock); |
79fac95e | 485 | mutex_init(&kvm->slots_lock); |
d39f13b0 | 486 | atomic_set(&kvm->users_count, 1); |
07f0a7bd | 487 | INIT_LIST_HEAD(&kvm->devices); |
74b5c5bf MW |
488 | |
489 | r = kvm_init_mmu_notifier(kvm); | |
490 | if (r) | |
491 | goto out_err; | |
492 | ||
e935b837 | 493 | raw_spin_lock(&kvm_lock); |
5e58cfe4 | 494 | list_add(&kvm->vm_list, &vm_list); |
e935b837 | 495 | raw_spin_unlock(&kvm_lock); |
d89f5eff | 496 | |
f17abe9a | 497 | return kvm; |
10474ae8 AG |
498 | |
499 | out_err: | |
57e7fbee JK |
500 | cleanup_srcu_struct(&kvm->srcu); |
501 | out_err_nosrcu: | |
10474ae8 AG |
502 | hardware_disable_all(); |
503 | out_err_nodisable: | |
e93f8a0f MT |
504 | for (i = 0; i < KVM_NR_BUSES; i++) |
505 | kfree(kvm->buses[i]); | |
46a26bf5 | 506 | kfree(kvm->memslots); |
d89f5eff | 507 | kvm_arch_free_vm(kvm); |
10474ae8 | 508 | return ERR_PTR(r); |
f17abe9a AK |
509 | } |
510 | ||
92eca8fa TY |
511 | /* |
512 | * Avoid using vmalloc for a small buffer. | |
513 | * Should not be used when the size is statically known. | |
514 | */ | |
c1a7b32a | 515 | void *kvm_kvzalloc(unsigned long size) |
92eca8fa TY |
516 | { |
517 | if (size > PAGE_SIZE) | |
518 | return vzalloc(size); | |
519 | else | |
520 | return kzalloc(size, GFP_KERNEL); | |
521 | } | |
522 | ||
c1a7b32a | 523 | void kvm_kvfree(const void *addr) |
92eca8fa TY |
524 | { |
525 | if (is_vmalloc_addr(addr)) | |
526 | vfree(addr); | |
527 | else | |
528 | kfree(addr); | |
529 | } | |
530 | ||
a36a57b1 TY |
531 | static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot) |
532 | { | |
533 | if (!memslot->dirty_bitmap) | |
534 | return; | |
535 | ||
92eca8fa | 536 | kvm_kvfree(memslot->dirty_bitmap); |
a36a57b1 TY |
537 | memslot->dirty_bitmap = NULL; |
538 | } | |
539 | ||
6aa8b732 AK |
540 | /* |
541 | * Free any memory in @free but not in @dont. | |
542 | */ | |
543 | static void kvm_free_physmem_slot(struct kvm_memory_slot *free, | |
544 | struct kvm_memory_slot *dont) | |
545 | { | |
6aa8b732 | 546 | if (!dont || free->dirty_bitmap != dont->dirty_bitmap) |
a36a57b1 | 547 | kvm_destroy_dirty_bitmap(free); |
6aa8b732 | 548 | |
db3fe4eb | 549 | kvm_arch_free_memslot(free, dont); |
05da4558 | 550 | |
6aa8b732 | 551 | free->npages = 0; |
6aa8b732 AK |
552 | } |
553 | ||
d19a9cd2 | 554 | void kvm_free_physmem(struct kvm *kvm) |
6aa8b732 | 555 | { |
46a26bf5 | 556 | struct kvm_memslots *slots = kvm->memslots; |
be6ba0f0 | 557 | struct kvm_memory_slot *memslot; |
46a26bf5 | 558 | |
be6ba0f0 XG |
559 | kvm_for_each_memslot(memslot, slots) |
560 | kvm_free_physmem_slot(memslot, NULL); | |
6aa8b732 | 561 | |
46a26bf5 | 562 | kfree(kvm->memslots); |
6aa8b732 AK |
563 | } |
564 | ||
07f0a7bd SW |
565 | static void kvm_destroy_devices(struct kvm *kvm) |
566 | { | |
567 | struct list_head *node, *tmp; | |
568 | ||
569 | list_for_each_safe(node, tmp, &kvm->devices) { | |
570 | struct kvm_device *dev = | |
571 | list_entry(node, struct kvm_device, vm_node); | |
572 | ||
573 | list_del(node); | |
574 | dev->ops->destroy(dev); | |
575 | } | |
576 | } | |
577 | ||
f17abe9a AK |
578 | static void kvm_destroy_vm(struct kvm *kvm) |
579 | { | |
e93f8a0f | 580 | int i; |
6d4e4c4f AK |
581 | struct mm_struct *mm = kvm->mm; |
582 | ||
ad8ba2cd | 583 | kvm_arch_sync_events(kvm); |
e935b837 | 584 | raw_spin_lock(&kvm_lock); |
133de902 | 585 | list_del(&kvm->vm_list); |
e935b837 | 586 | raw_spin_unlock(&kvm_lock); |
399ec807 | 587 | kvm_free_irq_routing(kvm); |
e93f8a0f MT |
588 | for (i = 0; i < KVM_NR_BUSES; i++) |
589 | kvm_io_bus_destroy(kvm->buses[i]); | |
980da6ce | 590 | kvm_coalesced_mmio_free(kvm); |
e930bffe AA |
591 | #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER) |
592 | mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm); | |
f00be0ca | 593 | #else |
2df72e9b | 594 | kvm_arch_flush_shadow_all(kvm); |
5f94c174 | 595 | #endif |
d19a9cd2 | 596 | kvm_arch_destroy_vm(kvm); |
07f0a7bd | 597 | kvm_destroy_devices(kvm); |
d89f5eff JK |
598 | kvm_free_physmem(kvm); |
599 | cleanup_srcu_struct(&kvm->srcu); | |
600 | kvm_arch_free_vm(kvm); | |
10474ae8 | 601 | hardware_disable_all(); |
6d4e4c4f | 602 | mmdrop(mm); |
f17abe9a AK |
603 | } |
604 | ||
d39f13b0 IE |
605 | void kvm_get_kvm(struct kvm *kvm) |
606 | { | |
607 | atomic_inc(&kvm->users_count); | |
608 | } | |
609 | EXPORT_SYMBOL_GPL(kvm_get_kvm); | |
610 | ||
611 | void kvm_put_kvm(struct kvm *kvm) | |
612 | { | |
613 | if (atomic_dec_and_test(&kvm->users_count)) | |
614 | kvm_destroy_vm(kvm); | |
615 | } | |
616 | EXPORT_SYMBOL_GPL(kvm_put_kvm); | |
617 | ||
618 | ||
f17abe9a AK |
619 | static int kvm_vm_release(struct inode *inode, struct file *filp) |
620 | { | |
621 | struct kvm *kvm = filp->private_data; | |
622 | ||
721eecbf GH |
623 | kvm_irqfd_release(kvm); |
624 | ||
d39f13b0 | 625 | kvm_put_kvm(kvm); |
6aa8b732 AK |
626 | return 0; |
627 | } | |
628 | ||
515a0127 TY |
629 | /* |
630 | * Allocation size is twice as large as the actual dirty bitmap size. | |
93474b25 | 631 | * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed. |
515a0127 | 632 | */ |
a36a57b1 TY |
633 | static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot) |
634 | { | |
189a2f7b | 635 | #ifndef CONFIG_S390 |
515a0127 | 636 | unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot); |
a36a57b1 | 637 | |
92eca8fa | 638 | memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes); |
a36a57b1 TY |
639 | if (!memslot->dirty_bitmap) |
640 | return -ENOMEM; | |
641 | ||
189a2f7b | 642 | #endif /* !CONFIG_S390 */ |
a36a57b1 TY |
643 | return 0; |
644 | } | |
645 | ||
bf3e05bc XG |
646 | static int cmp_memslot(const void *slot1, const void *slot2) |
647 | { | |
648 | struct kvm_memory_slot *s1, *s2; | |
649 | ||
650 | s1 = (struct kvm_memory_slot *)slot1; | |
651 | s2 = (struct kvm_memory_slot *)slot2; | |
652 | ||
653 | if (s1->npages < s2->npages) | |
654 | return 1; | |
655 | if (s1->npages > s2->npages) | |
656 | return -1; | |
657 | ||
658 | return 0; | |
659 | } | |
660 | ||
661 | /* | |
662 | * Sort the memslots base on its size, so the larger slots | |
663 | * will get better fit. | |
664 | */ | |
665 | static void sort_memslots(struct kvm_memslots *slots) | |
666 | { | |
f85e2cb5 XG |
667 | int i; |
668 | ||
bf3e05bc XG |
669 | sort(slots->memslots, KVM_MEM_SLOTS_NUM, |
670 | sizeof(struct kvm_memory_slot), cmp_memslot, NULL); | |
f85e2cb5 XG |
671 | |
672 | for (i = 0; i < KVM_MEM_SLOTS_NUM; i++) | |
673 | slots->id_to_index[slots->memslots[i].id] = i; | |
bf3e05bc XG |
674 | } |
675 | ||
116c14c0 AW |
676 | void update_memslots(struct kvm_memslots *slots, struct kvm_memory_slot *new, |
677 | u64 last_generation) | |
be593d62 XG |
678 | { |
679 | if (new) { | |
680 | int id = new->id; | |
28a37544 | 681 | struct kvm_memory_slot *old = id_to_memslot(slots, id); |
bf3e05bc | 682 | unsigned long npages = old->npages; |
be593d62 | 683 | |
28a37544 | 684 | *old = *new; |
bf3e05bc XG |
685 | if (new->npages != npages) |
686 | sort_memslots(slots); | |
be593d62 XG |
687 | } |
688 | ||
116c14c0 | 689 | slots->generation = last_generation + 1; |
be593d62 XG |
690 | } |
691 | ||
a50d64d6 XG |
692 | static int check_memory_region_flags(struct kvm_userspace_memory_region *mem) |
693 | { | |
4d8b81ab XG |
694 | u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES; |
695 | ||
696 | #ifdef KVM_CAP_READONLY_MEM | |
697 | valid_flags |= KVM_MEM_READONLY; | |
698 | #endif | |
699 | ||
700 | if (mem->flags & ~valid_flags) | |
a50d64d6 XG |
701 | return -EINVAL; |
702 | ||
703 | return 0; | |
704 | } | |
705 | ||
7ec4fb44 GN |
706 | static struct kvm_memslots *install_new_memslots(struct kvm *kvm, |
707 | struct kvm_memslots *slots, struct kvm_memory_slot *new) | |
708 | { | |
709 | struct kvm_memslots *old_memslots = kvm->memslots; | |
710 | ||
711 | update_memslots(slots, new, kvm->memslots->generation); | |
712 | rcu_assign_pointer(kvm->memslots, slots); | |
713 | synchronize_srcu_expedited(&kvm->srcu); | |
e59dbe09 TY |
714 | |
715 | kvm_arch_memslots_updated(kvm); | |
716 | ||
717 | return old_memslots; | |
7ec4fb44 GN |
718 | } |
719 | ||
6aa8b732 AK |
720 | /* |
721 | * Allocate some memory and give it an address in the guest physical address | |
722 | * space. | |
723 | * | |
724 | * Discontiguous memory is allowed, mostly for framebuffers. | |
f78e0e2e | 725 | * |
10589a46 | 726 | * Must be called holding mmap_sem for write. |
6aa8b732 | 727 | */ |
f78e0e2e | 728 | int __kvm_set_memory_region(struct kvm *kvm, |
47ae31e2 | 729 | struct kvm_userspace_memory_region *mem) |
6aa8b732 | 730 | { |
8234b22e | 731 | int r; |
6aa8b732 | 732 | gfn_t base_gfn; |
28bcb112 | 733 | unsigned long npages; |
a843fac2 | 734 | struct kvm_memory_slot *slot; |
6aa8b732 | 735 | struct kvm_memory_slot old, new; |
b7f69c55 | 736 | struct kvm_memslots *slots = NULL, *old_memslots; |
f64c0398 | 737 | enum kvm_mr_change change; |
6aa8b732 | 738 | |
a50d64d6 XG |
739 | r = check_memory_region_flags(mem); |
740 | if (r) | |
741 | goto out; | |
742 | ||
6aa8b732 AK |
743 | r = -EINVAL; |
744 | /* General sanity checks */ | |
745 | if (mem->memory_size & (PAGE_SIZE - 1)) | |
746 | goto out; | |
747 | if (mem->guest_phys_addr & (PAGE_SIZE - 1)) | |
748 | goto out; | |
fa3d315a | 749 | /* We can read the guest memory with __xxx_user() later on. */ |
47ae31e2 | 750 | if ((mem->slot < KVM_USER_MEM_SLOTS) && |
fa3d315a | 751 | ((mem->userspace_addr & (PAGE_SIZE - 1)) || |
9e3bb6b6 HC |
752 | !access_ok(VERIFY_WRITE, |
753 | (void __user *)(unsigned long)mem->userspace_addr, | |
754 | mem->memory_size))) | |
78749809 | 755 | goto out; |
93a5cef0 | 756 | if (mem->slot >= KVM_MEM_SLOTS_NUM) |
6aa8b732 AK |
757 | goto out; |
758 | if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr) | |
759 | goto out; | |
760 | ||
a843fac2 | 761 | slot = id_to_memslot(kvm->memslots, mem->slot); |
6aa8b732 AK |
762 | base_gfn = mem->guest_phys_addr >> PAGE_SHIFT; |
763 | npages = mem->memory_size >> PAGE_SHIFT; | |
764 | ||
660c22c4 TY |
765 | r = -EINVAL; |
766 | if (npages > KVM_MEM_MAX_NR_PAGES) | |
767 | goto out; | |
768 | ||
6aa8b732 AK |
769 | if (!npages) |
770 | mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES; | |
771 | ||
a843fac2 | 772 | new = old = *slot; |
6aa8b732 | 773 | |
e36d96f7 | 774 | new.id = mem->slot; |
6aa8b732 AK |
775 | new.base_gfn = base_gfn; |
776 | new.npages = npages; | |
777 | new.flags = mem->flags; | |
778 | ||
6aa8b732 | 779 | r = -EINVAL; |
f64c0398 TY |
780 | if (npages) { |
781 | if (!old.npages) | |
782 | change = KVM_MR_CREATE; | |
783 | else { /* Modify an existing slot. */ | |
784 | if ((mem->userspace_addr != old.userspace_addr) || | |
75d61fbc TY |
785 | (npages != old.npages) || |
786 | ((new.flags ^ old.flags) & KVM_MEM_READONLY)) | |
f64c0398 TY |
787 | goto out; |
788 | ||
789 | if (base_gfn != old.base_gfn) | |
790 | change = KVM_MR_MOVE; | |
791 | else if (new.flags != old.flags) | |
792 | change = KVM_MR_FLAGS_ONLY; | |
793 | else { /* Nothing to change. */ | |
794 | r = 0; | |
795 | goto out; | |
796 | } | |
797 | } | |
798 | } else if (old.npages) { | |
799 | change = KVM_MR_DELETE; | |
800 | } else /* Modify a non-existent slot: disallowed. */ | |
0ea75e1d | 801 | goto out; |
6aa8b732 | 802 | |
f64c0398 | 803 | if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) { |
0a706bee TY |
804 | /* Check for overlaps */ |
805 | r = -EEXIST; | |
806 | kvm_for_each_memslot(slot, kvm->memslots) { | |
a843fac2 TY |
807 | if ((slot->id >= KVM_USER_MEM_SLOTS) || |
808 | (slot->id == mem->slot)) | |
0a706bee TY |
809 | continue; |
810 | if (!((base_gfn + npages <= slot->base_gfn) || | |
811 | (base_gfn >= slot->base_gfn + slot->npages))) | |
812 | goto out; | |
813 | } | |
6aa8b732 | 814 | } |
6aa8b732 | 815 | |
6aa8b732 AK |
816 | /* Free page dirty bitmap if unneeded */ |
817 | if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES)) | |
8b6d44c7 | 818 | new.dirty_bitmap = NULL; |
6aa8b732 AK |
819 | |
820 | r = -ENOMEM; | |
f64c0398 | 821 | if (change == KVM_MR_CREATE) { |
189a2f7b | 822 | new.userspace_addr = mem->userspace_addr; |
d89cc617 | 823 | |
db3fe4eb TY |
824 | if (kvm_arch_create_memslot(&new, npages)) |
825 | goto out_free; | |
6aa8b732 | 826 | } |
ec04b260 | 827 | |
6aa8b732 AK |
828 | /* Allocate page dirty bitmap if needed */ |
829 | if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) { | |
a36a57b1 | 830 | if (kvm_create_dirty_bitmap(&new) < 0) |
f78e0e2e | 831 | goto out_free; |
6aa8b732 AK |
832 | } |
833 | ||
f64c0398 | 834 | if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) { |
bc6678a3 | 835 | r = -ENOMEM; |
6da64fdb TM |
836 | slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots), |
837 | GFP_KERNEL); | |
bc6678a3 MT |
838 | if (!slots) |
839 | goto out_free; | |
28a37544 XG |
840 | slot = id_to_memslot(slots, mem->slot); |
841 | slot->flags |= KVM_MEMSLOT_INVALID; | |
842 | ||
7ec4fb44 | 843 | old_memslots = install_new_memslots(kvm, slots, NULL); |
bc6678a3 | 844 | |
e40f193f AW |
845 | /* slot was deleted or moved, clear iommu mapping */ |
846 | kvm_iommu_unmap_pages(kvm, &old); | |
12d6e753 MT |
847 | /* From this point no new shadow pages pointing to a deleted, |
848 | * or moved, memslot will be created. | |
bc6678a3 MT |
849 | * |
850 | * validation of sp->gfn happens in: | |
851 | * - gfn_to_hva (kvm_read_guest, gfn_to_pfn) | |
852 | * - kvm_is_visible_gfn (mmu_check_roots) | |
853 | */ | |
2df72e9b | 854 | kvm_arch_flush_shadow_memslot(kvm, slot); |
b7f69c55 | 855 | slots = old_memslots; |
bc6678a3 | 856 | } |
34d4cb8f | 857 | |
7b6195a9 | 858 | r = kvm_arch_prepare_memory_region(kvm, &new, mem, change); |
f7784b8e | 859 | if (r) |
b7f69c55 | 860 | goto out_slots; |
f7784b8e | 861 | |
bc6678a3 | 862 | r = -ENOMEM; |
b7f69c55 AW |
863 | /* |
864 | * We can re-use the old_memslots from above, the only difference | |
865 | * from the currently installed memslots is the invalid flag. This | |
866 | * will get overwritten by update_memslots anyway. | |
867 | */ | |
868 | if (!slots) { | |
869 | slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots), | |
870 | GFP_KERNEL); | |
871 | if (!slots) | |
872 | goto out_free; | |
873 | } | |
bc6678a3 | 874 | |
261874b0 AW |
875 | /* |
876 | * IOMMU mapping: New slots need to be mapped. Old slots need to be | |
75d61fbc TY |
877 | * un-mapped and re-mapped if their base changes. Since base change |
878 | * unmapping is handled above with slot deletion, mapping alone is | |
879 | * needed here. Anything else the iommu might care about for existing | |
880 | * slots (size changes, userspace addr changes and read-only flag | |
881 | * changes) is disallowed above, so any other attribute changes getting | |
882 | * here can be skipped. | |
261874b0 | 883 | */ |
75d61fbc TY |
884 | if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) { |
885 | r = kvm_iommu_map_pages(kvm, &new); | |
886 | if (r) | |
887 | goto out_slots; | |
e40f193f AW |
888 | } |
889 | ||
bc6678a3 | 890 | /* actual memory is freed via old in kvm_free_physmem_slot below */ |
f64c0398 | 891 | if (change == KVM_MR_DELETE) { |
bc6678a3 | 892 | new.dirty_bitmap = NULL; |
db3fe4eb | 893 | memset(&new.arch, 0, sizeof(new.arch)); |
bc6678a3 MT |
894 | } |
895 | ||
7ec4fb44 | 896 | old_memslots = install_new_memslots(kvm, slots, &new); |
3ad82a7e | 897 | |
8482644a | 898 | kvm_arch_commit_memory_region(kvm, mem, &old, change); |
82ce2c96 | 899 | |
bc6678a3 MT |
900 | kvm_free_physmem_slot(&old, &new); |
901 | kfree(old_memslots); | |
902 | ||
6aa8b732 AK |
903 | return 0; |
904 | ||
e40f193f AW |
905 | out_slots: |
906 | kfree(slots); | |
f78e0e2e | 907 | out_free: |
6aa8b732 AK |
908 | kvm_free_physmem_slot(&new, &old); |
909 | out: | |
910 | return r; | |
210c7c4d | 911 | } |
f78e0e2e SY |
912 | EXPORT_SYMBOL_GPL(__kvm_set_memory_region); |
913 | ||
914 | int kvm_set_memory_region(struct kvm *kvm, | |
47ae31e2 | 915 | struct kvm_userspace_memory_region *mem) |
f78e0e2e SY |
916 | { |
917 | int r; | |
918 | ||
79fac95e | 919 | mutex_lock(&kvm->slots_lock); |
47ae31e2 | 920 | r = __kvm_set_memory_region(kvm, mem); |
79fac95e | 921 | mutex_unlock(&kvm->slots_lock); |
f78e0e2e SY |
922 | return r; |
923 | } | |
210c7c4d IE |
924 | EXPORT_SYMBOL_GPL(kvm_set_memory_region); |
925 | ||
1fe779f8 | 926 | int kvm_vm_ioctl_set_memory_region(struct kvm *kvm, |
47ae31e2 | 927 | struct kvm_userspace_memory_region *mem) |
210c7c4d | 928 | { |
bbacc0c1 | 929 | if (mem->slot >= KVM_USER_MEM_SLOTS) |
e0d62c7f | 930 | return -EINVAL; |
47ae31e2 | 931 | return kvm_set_memory_region(kvm, mem); |
6aa8b732 AK |
932 | } |
933 | ||
5bb064dc ZX |
934 | int kvm_get_dirty_log(struct kvm *kvm, |
935 | struct kvm_dirty_log *log, int *is_dirty) | |
6aa8b732 AK |
936 | { |
937 | struct kvm_memory_slot *memslot; | |
938 | int r, i; | |
87bf6e7d | 939 | unsigned long n; |
6aa8b732 AK |
940 | unsigned long any = 0; |
941 | ||
6aa8b732 | 942 | r = -EINVAL; |
bbacc0c1 | 943 | if (log->slot >= KVM_USER_MEM_SLOTS) |
6aa8b732 AK |
944 | goto out; |
945 | ||
28a37544 | 946 | memslot = id_to_memslot(kvm->memslots, log->slot); |
6aa8b732 AK |
947 | r = -ENOENT; |
948 | if (!memslot->dirty_bitmap) | |
949 | goto out; | |
950 | ||
87bf6e7d | 951 | n = kvm_dirty_bitmap_bytes(memslot); |
6aa8b732 | 952 | |
cd1a4a98 | 953 | for (i = 0; !any && i < n/sizeof(long); ++i) |
6aa8b732 AK |
954 | any = memslot->dirty_bitmap[i]; |
955 | ||
956 | r = -EFAULT; | |
957 | if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n)) | |
958 | goto out; | |
959 | ||
5bb064dc ZX |
960 | if (any) |
961 | *is_dirty = 1; | |
6aa8b732 AK |
962 | |
963 | r = 0; | |
6aa8b732 | 964 | out: |
6aa8b732 AK |
965 | return r; |
966 | } | |
967 | ||
db3fe4eb TY |
968 | bool kvm_largepages_enabled(void) |
969 | { | |
970 | return largepages_enabled; | |
971 | } | |
972 | ||
54dee993 MT |
973 | void kvm_disable_largepages(void) |
974 | { | |
975 | largepages_enabled = false; | |
976 | } | |
977 | EXPORT_SYMBOL_GPL(kvm_disable_largepages); | |
978 | ||
49c7754c GN |
979 | struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn) |
980 | { | |
981 | return __gfn_to_memslot(kvm_memslots(kvm), gfn); | |
982 | } | |
a1f4d395 | 983 | EXPORT_SYMBOL_GPL(gfn_to_memslot); |
6aa8b732 | 984 | |
e0d62c7f IE |
985 | int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn) |
986 | { | |
bf3e05bc | 987 | struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn); |
e0d62c7f | 988 | |
bbacc0c1 | 989 | if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS || |
bf3e05bc XG |
990 | memslot->flags & KVM_MEMSLOT_INVALID) |
991 | return 0; | |
e0d62c7f | 992 | |
bf3e05bc | 993 | return 1; |
e0d62c7f IE |
994 | } |
995 | EXPORT_SYMBOL_GPL(kvm_is_visible_gfn); | |
996 | ||
8f0b1ab6 JR |
997 | unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn) |
998 | { | |
999 | struct vm_area_struct *vma; | |
1000 | unsigned long addr, size; | |
1001 | ||
1002 | size = PAGE_SIZE; | |
1003 | ||
1004 | addr = gfn_to_hva(kvm, gfn); | |
1005 | if (kvm_is_error_hva(addr)) | |
1006 | return PAGE_SIZE; | |
1007 | ||
1008 | down_read(¤t->mm->mmap_sem); | |
1009 | vma = find_vma(current->mm, addr); | |
1010 | if (!vma) | |
1011 | goto out; | |
1012 | ||
1013 | size = vma_kernel_pagesize(vma); | |
1014 | ||
1015 | out: | |
1016 | up_read(¤t->mm->mmap_sem); | |
1017 | ||
1018 | return size; | |
1019 | } | |
1020 | ||
4d8b81ab XG |
1021 | static bool memslot_is_readonly(struct kvm_memory_slot *slot) |
1022 | { | |
1023 | return slot->flags & KVM_MEM_READONLY; | |
1024 | } | |
1025 | ||
4d8b81ab XG |
1026 | static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn, |
1027 | gfn_t *nr_pages, bool write) | |
539cb660 | 1028 | { |
bc6678a3 | 1029 | if (!slot || slot->flags & KVM_MEMSLOT_INVALID) |
ca3a490c | 1030 | return KVM_HVA_ERR_BAD; |
48987781 | 1031 | |
4d8b81ab XG |
1032 | if (memslot_is_readonly(slot) && write) |
1033 | return KVM_HVA_ERR_RO_BAD; | |
48987781 XG |
1034 | |
1035 | if (nr_pages) | |
1036 | *nr_pages = slot->npages - (gfn - slot->base_gfn); | |
1037 | ||
4d8b81ab | 1038 | return __gfn_to_hva_memslot(slot, gfn); |
539cb660 | 1039 | } |
48987781 | 1040 | |
4d8b81ab XG |
1041 | static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn, |
1042 | gfn_t *nr_pages) | |
1043 | { | |
1044 | return __gfn_to_hva_many(slot, gfn, nr_pages, true); | |
539cb660 | 1045 | } |
48987781 | 1046 | |
4d8b81ab XG |
1047 | unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, |
1048 | gfn_t gfn) | |
1049 | { | |
1050 | return gfn_to_hva_many(slot, gfn, NULL); | |
1051 | } | |
1052 | EXPORT_SYMBOL_GPL(gfn_to_hva_memslot); | |
1053 | ||
48987781 XG |
1054 | unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn) |
1055 | { | |
49c7754c | 1056 | return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL); |
48987781 | 1057 | } |
0d150298 | 1058 | EXPORT_SYMBOL_GPL(gfn_to_hva); |
539cb660 | 1059 | |
86ab8cff XG |
1060 | /* |
1061 | * The hva returned by this function is only allowed to be read. | |
1062 | * It should pair with kvm_read_hva() or kvm_read_hva_atomic(). | |
1063 | */ | |
1064 | static unsigned long gfn_to_hva_read(struct kvm *kvm, gfn_t gfn) | |
1065 | { | |
4d8b81ab | 1066 | return __gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL, false); |
86ab8cff XG |
1067 | } |
1068 | ||
1069 | static int kvm_read_hva(void *data, void __user *hva, int len) | |
8030089f | 1070 | { |
86ab8cff XG |
1071 | return __copy_from_user(data, hva, len); |
1072 | } | |
1073 | ||
1074 | static int kvm_read_hva_atomic(void *data, void __user *hva, int len) | |
1075 | { | |
1076 | return __copy_from_user_inatomic(data, hva, len); | |
8030089f GN |
1077 | } |
1078 | ||
39369f7a | 1079 | static int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm, |
0857b9e9 GN |
1080 | unsigned long start, int write, struct page **page) |
1081 | { | |
1082 | int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET; | |
1083 | ||
1084 | if (write) | |
1085 | flags |= FOLL_WRITE; | |
1086 | ||
1087 | return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL); | |
1088 | } | |
1089 | ||
fafc3dba YH |
1090 | static inline int check_user_page_hwpoison(unsigned long addr) |
1091 | { | |
1092 | int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE; | |
1093 | ||
1094 | rc = __get_user_pages(current, current->mm, addr, 1, | |
1095 | flags, NULL, NULL, NULL); | |
1096 | return rc == -EHWPOISON; | |
1097 | } | |
1098 | ||
2fc84311 XG |
1099 | /* |
1100 | * The atomic path to get the writable pfn which will be stored in @pfn, | |
1101 | * true indicates success, otherwise false is returned. | |
1102 | */ | |
1103 | static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async, | |
1104 | bool write_fault, bool *writable, pfn_t *pfn) | |
954bbbc2 | 1105 | { |
8d4e1288 | 1106 | struct page *page[1]; |
2fc84311 | 1107 | int npages; |
954bbbc2 | 1108 | |
2fc84311 XG |
1109 | if (!(async || atomic)) |
1110 | return false; | |
af585b92 | 1111 | |
12ce13fe XG |
1112 | /* |
1113 | * Fast pin a writable pfn only if it is a write fault request | |
1114 | * or the caller allows to map a writable pfn for a read fault | |
1115 | * request. | |
1116 | */ | |
1117 | if (!(write_fault || writable)) | |
1118 | return false; | |
612819c3 | 1119 | |
2fc84311 XG |
1120 | npages = __get_user_pages_fast(addr, 1, 1, page); |
1121 | if (npages == 1) { | |
1122 | *pfn = page_to_pfn(page[0]); | |
612819c3 | 1123 | |
2fc84311 XG |
1124 | if (writable) |
1125 | *writable = true; | |
1126 | return true; | |
1127 | } | |
af585b92 | 1128 | |
2fc84311 XG |
1129 | return false; |
1130 | } | |
612819c3 | 1131 | |
2fc84311 XG |
1132 | /* |
1133 | * The slow path to get the pfn of the specified host virtual address, | |
1134 | * 1 indicates success, -errno is returned if error is detected. | |
1135 | */ | |
1136 | static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault, | |
1137 | bool *writable, pfn_t *pfn) | |
1138 | { | |
1139 | struct page *page[1]; | |
1140 | int npages = 0; | |
612819c3 | 1141 | |
2fc84311 XG |
1142 | might_sleep(); |
1143 | ||
1144 | if (writable) | |
1145 | *writable = write_fault; | |
1146 | ||
1147 | if (async) { | |
1148 | down_read(¤t->mm->mmap_sem); | |
1149 | npages = get_user_page_nowait(current, current->mm, | |
1150 | addr, write_fault, page); | |
1151 | up_read(¤t->mm->mmap_sem); | |
1152 | } else | |
1153 | npages = get_user_pages_fast(addr, 1, write_fault, | |
1154 | page); | |
1155 | if (npages != 1) | |
1156 | return npages; | |
1157 | ||
1158 | /* map read fault as writable if possible */ | |
12ce13fe | 1159 | if (unlikely(!write_fault) && writable) { |
2fc84311 XG |
1160 | struct page *wpage[1]; |
1161 | ||
1162 | npages = __get_user_pages_fast(addr, 1, 1, wpage); | |
1163 | if (npages == 1) { | |
1164 | *writable = true; | |
1165 | put_page(page[0]); | |
1166 | page[0] = wpage[0]; | |
612819c3 | 1167 | } |
2fc84311 XG |
1168 | |
1169 | npages = 1; | |
887c08ac | 1170 | } |
2fc84311 XG |
1171 | *pfn = page_to_pfn(page[0]); |
1172 | return npages; | |
1173 | } | |
539cb660 | 1174 | |
4d8b81ab XG |
1175 | static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault) |
1176 | { | |
1177 | if (unlikely(!(vma->vm_flags & VM_READ))) | |
1178 | return false; | |
2e2e3738 | 1179 | |
4d8b81ab XG |
1180 | if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE)))) |
1181 | return false; | |
887c08ac | 1182 | |
4d8b81ab XG |
1183 | return true; |
1184 | } | |
bf998156 | 1185 | |
12ce13fe XG |
1186 | /* |
1187 | * Pin guest page in memory and return its pfn. | |
1188 | * @addr: host virtual address which maps memory to the guest | |
1189 | * @atomic: whether this function can sleep | |
1190 | * @async: whether this function need to wait IO complete if the | |
1191 | * host page is not in the memory | |
1192 | * @write_fault: whether we should get a writable host page | |
1193 | * @writable: whether it allows to map a writable host page for !@write_fault | |
1194 | * | |
1195 | * The function will map a writable host page for these two cases: | |
1196 | * 1): @write_fault = true | |
1197 | * 2): @write_fault = false && @writable, @writable will tell the caller | |
1198 | * whether the mapping is writable. | |
1199 | */ | |
2fc84311 XG |
1200 | static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async, |
1201 | bool write_fault, bool *writable) | |
1202 | { | |
1203 | struct vm_area_struct *vma; | |
1204 | pfn_t pfn = 0; | |
1205 | int npages; | |
2e2e3738 | 1206 | |
2fc84311 XG |
1207 | /* we can do it either atomically or asynchronously, not both */ |
1208 | BUG_ON(atomic && async); | |
8d4e1288 | 1209 | |
2fc84311 XG |
1210 | if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn)) |
1211 | return pfn; | |
1212 | ||
1213 | if (atomic) | |
1214 | return KVM_PFN_ERR_FAULT; | |
1215 | ||
1216 | npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn); | |
1217 | if (npages == 1) | |
1218 | return pfn; | |
8d4e1288 | 1219 | |
2fc84311 XG |
1220 | down_read(¤t->mm->mmap_sem); |
1221 | if (npages == -EHWPOISON || | |
1222 | (!async && check_user_page_hwpoison(addr))) { | |
1223 | pfn = KVM_PFN_ERR_HWPOISON; | |
1224 | goto exit; | |
1225 | } | |
1226 | ||
1227 | vma = find_vma_intersection(current->mm, addr, addr + 1); | |
1228 | ||
1229 | if (vma == NULL) | |
1230 | pfn = KVM_PFN_ERR_FAULT; | |
1231 | else if ((vma->vm_flags & VM_PFNMAP)) { | |
1232 | pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) + | |
1233 | vma->vm_pgoff; | |
1234 | BUG_ON(!kvm_is_mmio_pfn(pfn)); | |
1235 | } else { | |
4d8b81ab | 1236 | if (async && vma_is_valid(vma, write_fault)) |
2fc84311 XG |
1237 | *async = true; |
1238 | pfn = KVM_PFN_ERR_FAULT; | |
1239 | } | |
1240 | exit: | |
1241 | up_read(¤t->mm->mmap_sem); | |
2e2e3738 | 1242 | return pfn; |
35149e21 AL |
1243 | } |
1244 | ||
4d8b81ab XG |
1245 | static pfn_t |
1246 | __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic, | |
1247 | bool *async, bool write_fault, bool *writable) | |
887c08ac | 1248 | { |
4d8b81ab XG |
1249 | unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault); |
1250 | ||
1251 | if (addr == KVM_HVA_ERR_RO_BAD) | |
1252 | return KVM_PFN_ERR_RO_FAULT; | |
1253 | ||
1254 | if (kvm_is_error_hva(addr)) | |
81c52c56 | 1255 | return KVM_PFN_NOSLOT; |
4d8b81ab XG |
1256 | |
1257 | /* Do not map writable pfn in the readonly memslot. */ | |
1258 | if (writable && memslot_is_readonly(slot)) { | |
1259 | *writable = false; | |
1260 | writable = NULL; | |
1261 | } | |
1262 | ||
1263 | return hva_to_pfn(addr, atomic, async, write_fault, | |
1264 | writable); | |
887c08ac | 1265 | } |
887c08ac | 1266 | |
612819c3 MT |
1267 | static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async, |
1268 | bool write_fault, bool *writable) | |
506f0d6f | 1269 | { |
4d8b81ab | 1270 | struct kvm_memory_slot *slot; |
506f0d6f | 1271 | |
af585b92 GN |
1272 | if (async) |
1273 | *async = false; | |
1274 | ||
4d8b81ab | 1275 | slot = gfn_to_memslot(kvm, gfn); |
506f0d6f | 1276 | |
4d8b81ab XG |
1277 | return __gfn_to_pfn_memslot(slot, gfn, atomic, async, write_fault, |
1278 | writable); | |
365fb3fd XG |
1279 | } |
1280 | ||
1281 | pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn) | |
1282 | { | |
612819c3 | 1283 | return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL); |
365fb3fd XG |
1284 | } |
1285 | EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic); | |
1286 | ||
612819c3 MT |
1287 | pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async, |
1288 | bool write_fault, bool *writable) | |
af585b92 | 1289 | { |
612819c3 | 1290 | return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable); |
af585b92 GN |
1291 | } |
1292 | EXPORT_SYMBOL_GPL(gfn_to_pfn_async); | |
1293 | ||
365fb3fd XG |
1294 | pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn) |
1295 | { | |
612819c3 | 1296 | return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL); |
506f0d6f | 1297 | } |
35149e21 AL |
1298 | EXPORT_SYMBOL_GPL(gfn_to_pfn); |
1299 | ||
612819c3 MT |
1300 | pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault, |
1301 | bool *writable) | |
1302 | { | |
1303 | return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable); | |
1304 | } | |
1305 | EXPORT_SYMBOL_GPL(gfn_to_pfn_prot); | |
1306 | ||
d5661048 | 1307 | pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn) |
506f0d6f | 1308 | { |
4d8b81ab | 1309 | return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL); |
506f0d6f MT |
1310 | } |
1311 | ||
037d92dc | 1312 | pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn) |
506f0d6f | 1313 | { |
4d8b81ab | 1314 | return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL); |
506f0d6f | 1315 | } |
037d92dc | 1316 | EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic); |
506f0d6f | 1317 | |
48987781 XG |
1318 | int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages, |
1319 | int nr_pages) | |
1320 | { | |
1321 | unsigned long addr; | |
1322 | gfn_t entry; | |
1323 | ||
49c7754c | 1324 | addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry); |
48987781 XG |
1325 | if (kvm_is_error_hva(addr)) |
1326 | return -1; | |
1327 | ||
1328 | if (entry < nr_pages) | |
1329 | return 0; | |
1330 | ||
1331 | return __get_user_pages_fast(addr, nr_pages, 1, pages); | |
1332 | } | |
1333 | EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic); | |
1334 | ||
a2766325 XG |
1335 | static struct page *kvm_pfn_to_page(pfn_t pfn) |
1336 | { | |
81c52c56 | 1337 | if (is_error_noslot_pfn(pfn)) |
cb9aaa30 | 1338 | return KVM_ERR_PTR_BAD_PAGE; |
a2766325 | 1339 | |
cb9aaa30 XG |
1340 | if (kvm_is_mmio_pfn(pfn)) { |
1341 | WARN_ON(1); | |
6cede2e6 | 1342 | return KVM_ERR_PTR_BAD_PAGE; |
cb9aaa30 | 1343 | } |
a2766325 XG |
1344 | |
1345 | return pfn_to_page(pfn); | |
1346 | } | |
1347 | ||
35149e21 AL |
1348 | struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn) |
1349 | { | |
2e2e3738 AL |
1350 | pfn_t pfn; |
1351 | ||
1352 | pfn = gfn_to_pfn(kvm, gfn); | |
2e2e3738 | 1353 | |
a2766325 | 1354 | return kvm_pfn_to_page(pfn); |
954bbbc2 | 1355 | } |
aab61cc0 | 1356 | |
954bbbc2 AK |
1357 | EXPORT_SYMBOL_GPL(gfn_to_page); |
1358 | ||
b4231d61 IE |
1359 | void kvm_release_page_clean(struct page *page) |
1360 | { | |
32cad84f XG |
1361 | WARN_ON(is_error_page(page)); |
1362 | ||
35149e21 | 1363 | kvm_release_pfn_clean(page_to_pfn(page)); |
b4231d61 IE |
1364 | } |
1365 | EXPORT_SYMBOL_GPL(kvm_release_page_clean); | |
1366 | ||
35149e21 AL |
1367 | void kvm_release_pfn_clean(pfn_t pfn) |
1368 | { | |
81c52c56 | 1369 | if (!is_error_noslot_pfn(pfn) && !kvm_is_mmio_pfn(pfn)) |
2e2e3738 | 1370 | put_page(pfn_to_page(pfn)); |
35149e21 AL |
1371 | } |
1372 | EXPORT_SYMBOL_GPL(kvm_release_pfn_clean); | |
1373 | ||
b4231d61 | 1374 | void kvm_release_page_dirty(struct page *page) |
8a7ae055 | 1375 | { |
a2766325 XG |
1376 | WARN_ON(is_error_page(page)); |
1377 | ||
35149e21 AL |
1378 | kvm_release_pfn_dirty(page_to_pfn(page)); |
1379 | } | |
1380 | EXPORT_SYMBOL_GPL(kvm_release_page_dirty); | |
1381 | ||
1382 | void kvm_release_pfn_dirty(pfn_t pfn) | |
1383 | { | |
1384 | kvm_set_pfn_dirty(pfn); | |
1385 | kvm_release_pfn_clean(pfn); | |
1386 | } | |
1387 | EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty); | |
1388 | ||
1389 | void kvm_set_page_dirty(struct page *page) | |
1390 | { | |
1391 | kvm_set_pfn_dirty(page_to_pfn(page)); | |
1392 | } | |
1393 | EXPORT_SYMBOL_GPL(kvm_set_page_dirty); | |
1394 | ||
1395 | void kvm_set_pfn_dirty(pfn_t pfn) | |
1396 | { | |
c77fb9dc | 1397 | if (!kvm_is_mmio_pfn(pfn)) { |
2e2e3738 AL |
1398 | struct page *page = pfn_to_page(pfn); |
1399 | if (!PageReserved(page)) | |
1400 | SetPageDirty(page); | |
1401 | } | |
8a7ae055 | 1402 | } |
35149e21 AL |
1403 | EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty); |
1404 | ||
1405 | void kvm_set_pfn_accessed(pfn_t pfn) | |
1406 | { | |
c77fb9dc | 1407 | if (!kvm_is_mmio_pfn(pfn)) |
2e2e3738 | 1408 | mark_page_accessed(pfn_to_page(pfn)); |
35149e21 AL |
1409 | } |
1410 | EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed); | |
1411 | ||
1412 | void kvm_get_pfn(pfn_t pfn) | |
1413 | { | |
c77fb9dc | 1414 | if (!kvm_is_mmio_pfn(pfn)) |
2e2e3738 | 1415 | get_page(pfn_to_page(pfn)); |
35149e21 AL |
1416 | } |
1417 | EXPORT_SYMBOL_GPL(kvm_get_pfn); | |
8a7ae055 | 1418 | |
195aefde IE |
1419 | static int next_segment(unsigned long len, int offset) |
1420 | { | |
1421 | if (len > PAGE_SIZE - offset) | |
1422 | return PAGE_SIZE - offset; | |
1423 | else | |
1424 | return len; | |
1425 | } | |
1426 | ||
1427 | int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset, | |
1428 | int len) | |
1429 | { | |
e0506bcb IE |
1430 | int r; |
1431 | unsigned long addr; | |
195aefde | 1432 | |
86ab8cff | 1433 | addr = gfn_to_hva_read(kvm, gfn); |
e0506bcb IE |
1434 | if (kvm_is_error_hva(addr)) |
1435 | return -EFAULT; | |
86ab8cff | 1436 | r = kvm_read_hva(data, (void __user *)addr + offset, len); |
e0506bcb | 1437 | if (r) |
195aefde | 1438 | return -EFAULT; |
195aefde IE |
1439 | return 0; |
1440 | } | |
1441 | EXPORT_SYMBOL_GPL(kvm_read_guest_page); | |
1442 | ||
1443 | int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len) | |
1444 | { | |
1445 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1446 | int seg; | |
1447 | int offset = offset_in_page(gpa); | |
1448 | int ret; | |
1449 | ||
1450 | while ((seg = next_segment(len, offset)) != 0) { | |
1451 | ret = kvm_read_guest_page(kvm, gfn, data, offset, seg); | |
1452 | if (ret < 0) | |
1453 | return ret; | |
1454 | offset = 0; | |
1455 | len -= seg; | |
1456 | data += seg; | |
1457 | ++gfn; | |
1458 | } | |
1459 | return 0; | |
1460 | } | |
1461 | EXPORT_SYMBOL_GPL(kvm_read_guest); | |
1462 | ||
7ec54588 MT |
1463 | int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data, |
1464 | unsigned long len) | |
1465 | { | |
1466 | int r; | |
1467 | unsigned long addr; | |
1468 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1469 | int offset = offset_in_page(gpa); | |
1470 | ||
86ab8cff | 1471 | addr = gfn_to_hva_read(kvm, gfn); |
7ec54588 MT |
1472 | if (kvm_is_error_hva(addr)) |
1473 | return -EFAULT; | |
0aac03f0 | 1474 | pagefault_disable(); |
86ab8cff | 1475 | r = kvm_read_hva_atomic(data, (void __user *)addr + offset, len); |
0aac03f0 | 1476 | pagefault_enable(); |
7ec54588 MT |
1477 | if (r) |
1478 | return -EFAULT; | |
1479 | return 0; | |
1480 | } | |
1481 | EXPORT_SYMBOL(kvm_read_guest_atomic); | |
1482 | ||
195aefde IE |
1483 | int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data, |
1484 | int offset, int len) | |
1485 | { | |
e0506bcb IE |
1486 | int r; |
1487 | unsigned long addr; | |
195aefde | 1488 | |
e0506bcb IE |
1489 | addr = gfn_to_hva(kvm, gfn); |
1490 | if (kvm_is_error_hva(addr)) | |
1491 | return -EFAULT; | |
8b0cedff | 1492 | r = __copy_to_user((void __user *)addr + offset, data, len); |
e0506bcb | 1493 | if (r) |
195aefde | 1494 | return -EFAULT; |
195aefde IE |
1495 | mark_page_dirty(kvm, gfn); |
1496 | return 0; | |
1497 | } | |
1498 | EXPORT_SYMBOL_GPL(kvm_write_guest_page); | |
1499 | ||
1500 | int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data, | |
1501 | unsigned long len) | |
1502 | { | |
1503 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1504 | int seg; | |
1505 | int offset = offset_in_page(gpa); | |
1506 | int ret; | |
1507 | ||
1508 | while ((seg = next_segment(len, offset)) != 0) { | |
1509 | ret = kvm_write_guest_page(kvm, gfn, data, offset, seg); | |
1510 | if (ret < 0) | |
1511 | return ret; | |
1512 | offset = 0; | |
1513 | len -= seg; | |
1514 | data += seg; | |
1515 | ++gfn; | |
1516 | } | |
1517 | return 0; | |
1518 | } | |
1519 | ||
49c7754c | 1520 | int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc, |
8f964525 | 1521 | gpa_t gpa, unsigned long len) |
49c7754c GN |
1522 | { |
1523 | struct kvm_memslots *slots = kvm_memslots(kvm); | |
1524 | int offset = offset_in_page(gpa); | |
8f964525 AH |
1525 | gfn_t start_gfn = gpa >> PAGE_SHIFT; |
1526 | gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT; | |
1527 | gfn_t nr_pages_needed = end_gfn - start_gfn + 1; | |
1528 | gfn_t nr_pages_avail; | |
49c7754c GN |
1529 | |
1530 | ghc->gpa = gpa; | |
1531 | ghc->generation = slots->generation; | |
8f964525 AH |
1532 | ghc->len = len; |
1533 | ghc->memslot = gfn_to_memslot(kvm, start_gfn); | |
1534 | ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, &nr_pages_avail); | |
1535 | if (!kvm_is_error_hva(ghc->hva) && nr_pages_avail >= nr_pages_needed) { | |
49c7754c | 1536 | ghc->hva += offset; |
8f964525 AH |
1537 | } else { |
1538 | /* | |
1539 | * If the requested region crosses two memslots, we still | |
1540 | * verify that the entire region is valid here. | |
1541 | */ | |
1542 | while (start_gfn <= end_gfn) { | |
1543 | ghc->memslot = gfn_to_memslot(kvm, start_gfn); | |
1544 | ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, | |
1545 | &nr_pages_avail); | |
1546 | if (kvm_is_error_hva(ghc->hva)) | |
1547 | return -EFAULT; | |
1548 | start_gfn += nr_pages_avail; | |
1549 | } | |
1550 | /* Use the slow path for cross page reads and writes. */ | |
1551 | ghc->memslot = NULL; | |
1552 | } | |
49c7754c GN |
1553 | return 0; |
1554 | } | |
1555 | EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init); | |
1556 | ||
1557 | int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc, | |
1558 | void *data, unsigned long len) | |
1559 | { | |
1560 | struct kvm_memslots *slots = kvm_memslots(kvm); | |
1561 | int r; | |
1562 | ||
8f964525 AH |
1563 | BUG_ON(len > ghc->len); |
1564 | ||
49c7754c | 1565 | if (slots->generation != ghc->generation) |
8f964525 AH |
1566 | kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len); |
1567 | ||
1568 | if (unlikely(!ghc->memslot)) | |
1569 | return kvm_write_guest(kvm, ghc->gpa, data, len); | |
49c7754c GN |
1570 | |
1571 | if (kvm_is_error_hva(ghc->hva)) | |
1572 | return -EFAULT; | |
1573 | ||
8b0cedff | 1574 | r = __copy_to_user((void __user *)ghc->hva, data, len); |
49c7754c GN |
1575 | if (r) |
1576 | return -EFAULT; | |
1577 | mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT); | |
1578 | ||
1579 | return 0; | |
1580 | } | |
1581 | EXPORT_SYMBOL_GPL(kvm_write_guest_cached); | |
1582 | ||
e03b644f GN |
1583 | int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc, |
1584 | void *data, unsigned long len) | |
1585 | { | |
1586 | struct kvm_memslots *slots = kvm_memslots(kvm); | |
1587 | int r; | |
1588 | ||
8f964525 AH |
1589 | BUG_ON(len > ghc->len); |
1590 | ||
e03b644f | 1591 | if (slots->generation != ghc->generation) |
8f964525 AH |
1592 | kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len); |
1593 | ||
1594 | if (unlikely(!ghc->memslot)) | |
1595 | return kvm_read_guest(kvm, ghc->gpa, data, len); | |
e03b644f GN |
1596 | |
1597 | if (kvm_is_error_hva(ghc->hva)) | |
1598 | return -EFAULT; | |
1599 | ||
1600 | r = __copy_from_user(data, (void __user *)ghc->hva, len); | |
1601 | if (r) | |
1602 | return -EFAULT; | |
1603 | ||
1604 | return 0; | |
1605 | } | |
1606 | EXPORT_SYMBOL_GPL(kvm_read_guest_cached); | |
1607 | ||
195aefde IE |
1608 | int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len) |
1609 | { | |
3bcc8a8c HC |
1610 | return kvm_write_guest_page(kvm, gfn, (const void *) empty_zero_page, |
1611 | offset, len); | |
195aefde IE |
1612 | } |
1613 | EXPORT_SYMBOL_GPL(kvm_clear_guest_page); | |
1614 | ||
1615 | int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len) | |
1616 | { | |
1617 | gfn_t gfn = gpa >> PAGE_SHIFT; | |
1618 | int seg; | |
1619 | int offset = offset_in_page(gpa); | |
1620 | int ret; | |
1621 | ||
1622 | while ((seg = next_segment(len, offset)) != 0) { | |
1623 | ret = kvm_clear_guest_page(kvm, gfn, offset, seg); | |
1624 | if (ret < 0) | |
1625 | return ret; | |
1626 | offset = 0; | |
1627 | len -= seg; | |
1628 | ++gfn; | |
1629 | } | |
1630 | return 0; | |
1631 | } | |
1632 | EXPORT_SYMBOL_GPL(kvm_clear_guest); | |
1633 | ||
49c7754c GN |
1634 | void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot, |
1635 | gfn_t gfn) | |
6aa8b732 | 1636 | { |
7e9d619d RR |
1637 | if (memslot && memslot->dirty_bitmap) { |
1638 | unsigned long rel_gfn = gfn - memslot->base_gfn; | |
6aa8b732 | 1639 | |
b74ca3b3 | 1640 | set_bit_le(rel_gfn, memslot->dirty_bitmap); |
6aa8b732 AK |
1641 | } |
1642 | } | |
1643 | ||
49c7754c GN |
1644 | void mark_page_dirty(struct kvm *kvm, gfn_t gfn) |
1645 | { | |
1646 | struct kvm_memory_slot *memslot; | |
1647 | ||
1648 | memslot = gfn_to_memslot(kvm, gfn); | |
1649 | mark_page_dirty_in_slot(kvm, memslot, gfn); | |
1650 | } | |
1651 | ||
b6958ce4 ED |
1652 | /* |
1653 | * The vCPU has executed a HLT instruction with in-kernel mode enabled. | |
1654 | */ | |
8776e519 | 1655 | void kvm_vcpu_block(struct kvm_vcpu *vcpu) |
d3bef15f | 1656 | { |
e5c239cf MT |
1657 | DEFINE_WAIT(wait); |
1658 | ||
1659 | for (;;) { | |
1660 | prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE); | |
1661 | ||
a1b37100 | 1662 | if (kvm_arch_vcpu_runnable(vcpu)) { |
a8eeb04a | 1663 | kvm_make_request(KVM_REQ_UNHALT, vcpu); |
e5c239cf | 1664 | break; |
d7690175 | 1665 | } |
09cec754 GN |
1666 | if (kvm_cpu_has_pending_timer(vcpu)) |
1667 | break; | |
e5c239cf MT |
1668 | if (signal_pending(current)) |
1669 | break; | |
1670 | ||
b6958ce4 | 1671 | schedule(); |
b6958ce4 | 1672 | } |
d3bef15f | 1673 | |
e5c239cf | 1674 | finish_wait(&vcpu->wq, &wait); |
b6958ce4 ED |
1675 | } |
1676 | ||
8c84780d | 1677 | #ifndef CONFIG_S390 |
b6d33834 CD |
1678 | /* |
1679 | * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode. | |
1680 | */ | |
1681 | void kvm_vcpu_kick(struct kvm_vcpu *vcpu) | |
1682 | { | |
1683 | int me; | |
1684 | int cpu = vcpu->cpu; | |
1685 | wait_queue_head_t *wqp; | |
1686 | ||
1687 | wqp = kvm_arch_vcpu_wq(vcpu); | |
1688 | if (waitqueue_active(wqp)) { | |
1689 | wake_up_interruptible(wqp); | |
1690 | ++vcpu->stat.halt_wakeup; | |
1691 | } | |
1692 | ||
1693 | me = get_cpu(); | |
1694 | if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu)) | |
1695 | if (kvm_arch_vcpu_should_kick(vcpu)) | |
1696 | smp_send_reschedule(cpu); | |
1697 | put_cpu(); | |
1698 | } | |
a20ed54d | 1699 | EXPORT_SYMBOL_GPL(kvm_vcpu_kick); |
8c84780d | 1700 | #endif /* !CONFIG_S390 */ |
b6d33834 | 1701 | |
6aa8b732 AK |
1702 | void kvm_resched(struct kvm_vcpu *vcpu) |
1703 | { | |
3fca0365 YD |
1704 | if (!need_resched()) |
1705 | return; | |
6aa8b732 | 1706 | cond_resched(); |
6aa8b732 AK |
1707 | } |
1708 | EXPORT_SYMBOL_GPL(kvm_resched); | |
1709 | ||
41628d33 KW |
1710 | bool kvm_vcpu_yield_to(struct kvm_vcpu *target) |
1711 | { | |
1712 | struct pid *pid; | |
1713 | struct task_struct *task = NULL; | |
c45c528e | 1714 | bool ret = false; |
41628d33 KW |
1715 | |
1716 | rcu_read_lock(); | |
1717 | pid = rcu_dereference(target->pid); | |
1718 | if (pid) | |
1719 | task = get_pid_task(target->pid, PIDTYPE_PID); | |
1720 | rcu_read_unlock(); | |
1721 | if (!task) | |
c45c528e | 1722 | return ret; |
41628d33 KW |
1723 | if (task->flags & PF_VCPU) { |
1724 | put_task_struct(task); | |
c45c528e | 1725 | return ret; |
41628d33 | 1726 | } |
c45c528e | 1727 | ret = yield_to(task, 1); |
41628d33 | 1728 | put_task_struct(task); |
c45c528e R |
1729 | |
1730 | return ret; | |
41628d33 KW |
1731 | } |
1732 | EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to); | |
1733 | ||
06e48c51 R |
1734 | #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT |
1735 | /* | |
1736 | * Helper that checks whether a VCPU is eligible for directed yield. | |
1737 | * Most eligible candidate to yield is decided by following heuristics: | |
1738 | * | |
1739 | * (a) VCPU which has not done pl-exit or cpu relax intercepted recently | |
1740 | * (preempted lock holder), indicated by @in_spin_loop. | |
1741 | * Set at the beiginning and cleared at the end of interception/PLE handler. | |
1742 | * | |
1743 | * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get | |
1744 | * chance last time (mostly it has become eligible now since we have probably | |
1745 | * yielded to lockholder in last iteration. This is done by toggling | |
1746 | * @dy_eligible each time a VCPU checked for eligibility.) | |
1747 | * | |
1748 | * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding | |
1749 | * to preempted lock-holder could result in wrong VCPU selection and CPU | |
1750 | * burning. Giving priority for a potential lock-holder increases lock | |
1751 | * progress. | |
1752 | * | |
1753 | * Since algorithm is based on heuristics, accessing another VCPU data without | |
1754 | * locking does not harm. It may result in trying to yield to same VCPU, fail | |
1755 | * and continue with next VCPU and so on. | |
1756 | */ | |
1757 | bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu) | |
1758 | { | |
1759 | bool eligible; | |
1760 | ||
1761 | eligible = !vcpu->spin_loop.in_spin_loop || | |
1762 | (vcpu->spin_loop.in_spin_loop && | |
1763 | vcpu->spin_loop.dy_eligible); | |
1764 | ||
1765 | if (vcpu->spin_loop.in_spin_loop) | |
1766 | kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible); | |
1767 | ||
1768 | return eligible; | |
1769 | } | |
1770 | #endif | |
c45c528e | 1771 | |
217ece61 | 1772 | void kvm_vcpu_on_spin(struct kvm_vcpu *me) |
d255f4f2 | 1773 | { |
217ece61 RR |
1774 | struct kvm *kvm = me->kvm; |
1775 | struct kvm_vcpu *vcpu; | |
1776 | int last_boosted_vcpu = me->kvm->last_boosted_vcpu; | |
1777 | int yielded = 0; | |
c45c528e | 1778 | int try = 3; |
217ece61 RR |
1779 | int pass; |
1780 | int i; | |
d255f4f2 | 1781 | |
4c088493 | 1782 | kvm_vcpu_set_in_spin_loop(me, true); |
217ece61 RR |
1783 | /* |
1784 | * We boost the priority of a VCPU that is runnable but not | |
1785 | * currently running, because it got preempted by something | |
1786 | * else and called schedule in __vcpu_run. Hopefully that | |
1787 | * VCPU is holding the lock that we need and will release it. | |
1788 | * We approximate round-robin by starting at the last boosted VCPU. | |
1789 | */ | |
c45c528e | 1790 | for (pass = 0; pass < 2 && !yielded && try; pass++) { |
217ece61 | 1791 | kvm_for_each_vcpu(i, vcpu, kvm) { |
5cfc2aab | 1792 | if (!pass && i <= last_boosted_vcpu) { |
217ece61 RR |
1793 | i = last_boosted_vcpu; |
1794 | continue; | |
1795 | } else if (pass && i > last_boosted_vcpu) | |
1796 | break; | |
7bc7ae25 R |
1797 | if (!ACCESS_ONCE(vcpu->preempted)) |
1798 | continue; | |
217ece61 RR |
1799 | if (vcpu == me) |
1800 | continue; | |
1801 | if (waitqueue_active(&vcpu->wq)) | |
1802 | continue; | |
06e48c51 R |
1803 | if (!kvm_vcpu_eligible_for_directed_yield(vcpu)) |
1804 | continue; | |
c45c528e R |
1805 | |
1806 | yielded = kvm_vcpu_yield_to(vcpu); | |
1807 | if (yielded > 0) { | |
217ece61 | 1808 | kvm->last_boosted_vcpu = i; |
217ece61 | 1809 | break; |
c45c528e R |
1810 | } else if (yielded < 0) { |
1811 | try--; | |
1812 | if (!try) | |
1813 | break; | |
217ece61 | 1814 | } |
217ece61 RR |
1815 | } |
1816 | } | |
4c088493 | 1817 | kvm_vcpu_set_in_spin_loop(me, false); |
06e48c51 R |
1818 | |
1819 | /* Ensure vcpu is not eligible during next spinloop */ | |
1820 | kvm_vcpu_set_dy_eligible(me, false); | |
d255f4f2 ZE |
1821 | } |
1822 | EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin); | |
1823 | ||
e4a533a4 | 1824 | static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf) |
9a2bb7f4 AK |
1825 | { |
1826 | struct kvm_vcpu *vcpu = vma->vm_file->private_data; | |
9a2bb7f4 AK |
1827 | struct page *page; |
1828 | ||
e4a533a4 | 1829 | if (vmf->pgoff == 0) |
039576c0 | 1830 | page = virt_to_page(vcpu->run); |
09566765 | 1831 | #ifdef CONFIG_X86 |
e4a533a4 | 1832 | else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET) |
ad312c7c | 1833 | page = virt_to_page(vcpu->arch.pio_data); |
5f94c174 LV |
1834 | #endif |
1835 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET | |
1836 | else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET) | |
1837 | page = virt_to_page(vcpu->kvm->coalesced_mmio_ring); | |
09566765 | 1838 | #endif |
039576c0 | 1839 | else |
5b1c1493 | 1840 | return kvm_arch_vcpu_fault(vcpu, vmf); |
9a2bb7f4 | 1841 | get_page(page); |
e4a533a4 NP |
1842 | vmf->page = page; |
1843 | return 0; | |
9a2bb7f4 AK |
1844 | } |
1845 | ||
f0f37e2f | 1846 | static const struct vm_operations_struct kvm_vcpu_vm_ops = { |
e4a533a4 | 1847 | .fault = kvm_vcpu_fault, |
9a2bb7f4 AK |
1848 | }; |
1849 | ||
1850 | static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma) | |
1851 | { | |
1852 | vma->vm_ops = &kvm_vcpu_vm_ops; | |
1853 | return 0; | |
1854 | } | |
1855 | ||
bccf2150 AK |
1856 | static int kvm_vcpu_release(struct inode *inode, struct file *filp) |
1857 | { | |
1858 | struct kvm_vcpu *vcpu = filp->private_data; | |
1859 | ||
66c0b394 | 1860 | kvm_put_kvm(vcpu->kvm); |
bccf2150 AK |
1861 | return 0; |
1862 | } | |
1863 | ||
3d3aab1b | 1864 | static struct file_operations kvm_vcpu_fops = { |
bccf2150 AK |
1865 | .release = kvm_vcpu_release, |
1866 | .unlocked_ioctl = kvm_vcpu_ioctl, | |
1dda606c AG |
1867 | #ifdef CONFIG_COMPAT |
1868 | .compat_ioctl = kvm_vcpu_compat_ioctl, | |
1869 | #endif | |
9a2bb7f4 | 1870 | .mmap = kvm_vcpu_mmap, |
6038f373 | 1871 | .llseek = noop_llseek, |
bccf2150 AK |
1872 | }; |
1873 | ||
1874 | /* | |
1875 | * Allocates an inode for the vcpu. | |
1876 | */ | |
1877 | static int create_vcpu_fd(struct kvm_vcpu *vcpu) | |
1878 | { | |
24009b05 | 1879 | return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC); |
bccf2150 AK |
1880 | } |
1881 | ||
c5ea7660 AK |
1882 | /* |
1883 | * Creates some virtual cpus. Good luck creating more than one. | |
1884 | */ | |
73880c80 | 1885 | static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id) |
c5ea7660 AK |
1886 | { |
1887 | int r; | |
988a2cae | 1888 | struct kvm_vcpu *vcpu, *v; |
c5ea7660 | 1889 | |
73880c80 | 1890 | vcpu = kvm_arch_vcpu_create(kvm, id); |
fb3f0f51 RR |
1891 | if (IS_ERR(vcpu)) |
1892 | return PTR_ERR(vcpu); | |
c5ea7660 | 1893 | |
15ad7146 AK |
1894 | preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops); |
1895 | ||
26e5215f AK |
1896 | r = kvm_arch_vcpu_setup(vcpu); |
1897 | if (r) | |
d780592b | 1898 | goto vcpu_destroy; |
26e5215f | 1899 | |
11ec2804 | 1900 | mutex_lock(&kvm->lock); |
3e515705 AK |
1901 | if (!kvm_vcpu_compatible(vcpu)) { |
1902 | r = -EINVAL; | |
1903 | goto unlock_vcpu_destroy; | |
1904 | } | |
73880c80 GN |
1905 | if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) { |
1906 | r = -EINVAL; | |
d780592b | 1907 | goto unlock_vcpu_destroy; |
fb3f0f51 | 1908 | } |
73880c80 | 1909 | |
988a2cae GN |
1910 | kvm_for_each_vcpu(r, v, kvm) |
1911 | if (v->vcpu_id == id) { | |
73880c80 | 1912 | r = -EEXIST; |
d780592b | 1913 | goto unlock_vcpu_destroy; |
73880c80 GN |
1914 | } |
1915 | ||
1916 | BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]); | |
c5ea7660 | 1917 | |
fb3f0f51 | 1918 | /* Now it's all set up, let userspace reach it */ |
66c0b394 | 1919 | kvm_get_kvm(kvm); |
bccf2150 | 1920 | r = create_vcpu_fd(vcpu); |
73880c80 GN |
1921 | if (r < 0) { |
1922 | kvm_put_kvm(kvm); | |
d780592b | 1923 | goto unlock_vcpu_destroy; |
73880c80 GN |
1924 | } |
1925 | ||
1926 | kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu; | |
1927 | smp_wmb(); | |
1928 | atomic_inc(&kvm->online_vcpus); | |
1929 | ||
73880c80 | 1930 | mutex_unlock(&kvm->lock); |
42897d86 | 1931 | kvm_arch_vcpu_postcreate(vcpu); |
fb3f0f51 | 1932 | return r; |
39c3b86e | 1933 | |
d780592b | 1934 | unlock_vcpu_destroy: |
7d8fece6 | 1935 | mutex_unlock(&kvm->lock); |
d780592b | 1936 | vcpu_destroy: |
d40ccc62 | 1937 | kvm_arch_vcpu_destroy(vcpu); |
c5ea7660 AK |
1938 | return r; |
1939 | } | |
1940 | ||
1961d276 AK |
1941 | static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset) |
1942 | { | |
1943 | if (sigset) { | |
1944 | sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP)); | |
1945 | vcpu->sigset_active = 1; | |
1946 | vcpu->sigset = *sigset; | |
1947 | } else | |
1948 | vcpu->sigset_active = 0; | |
1949 | return 0; | |
1950 | } | |
1951 | ||
bccf2150 AK |
1952 | static long kvm_vcpu_ioctl(struct file *filp, |
1953 | unsigned int ioctl, unsigned long arg) | |
6aa8b732 | 1954 | { |
bccf2150 | 1955 | struct kvm_vcpu *vcpu = filp->private_data; |
2f366987 | 1956 | void __user *argp = (void __user *)arg; |
313a3dc7 | 1957 | int r; |
fa3795a7 DH |
1958 | struct kvm_fpu *fpu = NULL; |
1959 | struct kvm_sregs *kvm_sregs = NULL; | |
6aa8b732 | 1960 | |
6d4e4c4f AK |
1961 | if (vcpu->kvm->mm != current->mm) |
1962 | return -EIO; | |
2122ff5e | 1963 | |
2f4d9b54 | 1964 | #if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS) |
2122ff5e AK |
1965 | /* |
1966 | * Special cases: vcpu ioctls that are asynchronous to vcpu execution, | |
1967 | * so vcpu_load() would break it. | |
1968 | */ | |
1969 | if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT) | |
1970 | return kvm_arch_vcpu_ioctl(filp, ioctl, arg); | |
1971 | #endif | |
1972 | ||
1973 | ||
9fc77441 MT |
1974 | r = vcpu_load(vcpu); |
1975 | if (r) | |
1976 | return r; | |
6aa8b732 | 1977 | switch (ioctl) { |
9a2bb7f4 | 1978 | case KVM_RUN: |
f0fe5108 AK |
1979 | r = -EINVAL; |
1980 | if (arg) | |
1981 | goto out; | |
b6c7a5dc | 1982 | r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run); |
64be5007 | 1983 | trace_kvm_userspace_exit(vcpu->run->exit_reason, r); |
6aa8b732 | 1984 | break; |
6aa8b732 | 1985 | case KVM_GET_REGS: { |
3e4bb3ac | 1986 | struct kvm_regs *kvm_regs; |
6aa8b732 | 1987 | |
3e4bb3ac XZ |
1988 | r = -ENOMEM; |
1989 | kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL); | |
1990 | if (!kvm_regs) | |
6aa8b732 | 1991 | goto out; |
3e4bb3ac XZ |
1992 | r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs); |
1993 | if (r) | |
1994 | goto out_free1; | |
6aa8b732 | 1995 | r = -EFAULT; |
3e4bb3ac XZ |
1996 | if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs))) |
1997 | goto out_free1; | |
6aa8b732 | 1998 | r = 0; |
3e4bb3ac XZ |
1999 | out_free1: |
2000 | kfree(kvm_regs); | |
6aa8b732 AK |
2001 | break; |
2002 | } | |
2003 | case KVM_SET_REGS: { | |
3e4bb3ac | 2004 | struct kvm_regs *kvm_regs; |
6aa8b732 | 2005 | |
3e4bb3ac | 2006 | r = -ENOMEM; |
ff5c2c03 SL |
2007 | kvm_regs = memdup_user(argp, sizeof(*kvm_regs)); |
2008 | if (IS_ERR(kvm_regs)) { | |
2009 | r = PTR_ERR(kvm_regs); | |
6aa8b732 | 2010 | goto out; |
ff5c2c03 | 2011 | } |
3e4bb3ac | 2012 | r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs); |
3e4bb3ac | 2013 | kfree(kvm_regs); |
6aa8b732 AK |
2014 | break; |
2015 | } | |
2016 | case KVM_GET_SREGS: { | |
fa3795a7 DH |
2017 | kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL); |
2018 | r = -ENOMEM; | |
2019 | if (!kvm_sregs) | |
2020 | goto out; | |
2021 | r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs); | |
6aa8b732 AK |
2022 | if (r) |
2023 | goto out; | |
2024 | r = -EFAULT; | |
fa3795a7 | 2025 | if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs))) |
6aa8b732 AK |
2026 | goto out; |
2027 | r = 0; | |
2028 | break; | |
2029 | } | |
2030 | case KVM_SET_SREGS: { | |
ff5c2c03 SL |
2031 | kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs)); |
2032 | if (IS_ERR(kvm_sregs)) { | |
2033 | r = PTR_ERR(kvm_sregs); | |
18595411 | 2034 | kvm_sregs = NULL; |
6aa8b732 | 2035 | goto out; |
ff5c2c03 | 2036 | } |
fa3795a7 | 2037 | r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs); |
6aa8b732 AK |
2038 | break; |
2039 | } | |
62d9f0db MT |
2040 | case KVM_GET_MP_STATE: { |
2041 | struct kvm_mp_state mp_state; | |
2042 | ||
2043 | r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state); | |
2044 | if (r) | |
2045 | goto out; | |
2046 | r = -EFAULT; | |
2047 | if (copy_to_user(argp, &mp_state, sizeof mp_state)) | |
2048 | goto out; | |
2049 | r = 0; | |
2050 | break; | |
2051 | } | |
2052 | case KVM_SET_MP_STATE: { | |
2053 | struct kvm_mp_state mp_state; | |
2054 | ||
2055 | r = -EFAULT; | |
2056 | if (copy_from_user(&mp_state, argp, sizeof mp_state)) | |
2057 | goto out; | |
2058 | r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state); | |
62d9f0db MT |
2059 | break; |
2060 | } | |
6aa8b732 AK |
2061 | case KVM_TRANSLATE: { |
2062 | struct kvm_translation tr; | |
2063 | ||
2064 | r = -EFAULT; | |
2f366987 | 2065 | if (copy_from_user(&tr, argp, sizeof tr)) |
6aa8b732 | 2066 | goto out; |
8b006791 | 2067 | r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr); |
6aa8b732 AK |
2068 | if (r) |
2069 | goto out; | |
2070 | r = -EFAULT; | |
2f366987 | 2071 | if (copy_to_user(argp, &tr, sizeof tr)) |
6aa8b732 AK |
2072 | goto out; |
2073 | r = 0; | |
2074 | break; | |
2075 | } | |
d0bfb940 JK |
2076 | case KVM_SET_GUEST_DEBUG: { |
2077 | struct kvm_guest_debug dbg; | |
6aa8b732 AK |
2078 | |
2079 | r = -EFAULT; | |
2f366987 | 2080 | if (copy_from_user(&dbg, argp, sizeof dbg)) |
6aa8b732 | 2081 | goto out; |
d0bfb940 | 2082 | r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg); |
6aa8b732 AK |
2083 | break; |
2084 | } | |
1961d276 AK |
2085 | case KVM_SET_SIGNAL_MASK: { |
2086 | struct kvm_signal_mask __user *sigmask_arg = argp; | |
2087 | struct kvm_signal_mask kvm_sigmask; | |
2088 | sigset_t sigset, *p; | |
2089 | ||
2090 | p = NULL; | |
2091 | if (argp) { | |
2092 | r = -EFAULT; | |
2093 | if (copy_from_user(&kvm_sigmask, argp, | |
2094 | sizeof kvm_sigmask)) | |
2095 | goto out; | |
2096 | r = -EINVAL; | |
2097 | if (kvm_sigmask.len != sizeof sigset) | |
2098 | goto out; | |
2099 | r = -EFAULT; | |
2100 | if (copy_from_user(&sigset, sigmask_arg->sigset, | |
2101 | sizeof sigset)) | |
2102 | goto out; | |
2103 | p = &sigset; | |
2104 | } | |
376d41ff | 2105 | r = kvm_vcpu_ioctl_set_sigmask(vcpu, p); |
1961d276 AK |
2106 | break; |
2107 | } | |
b8836737 | 2108 | case KVM_GET_FPU: { |
fa3795a7 DH |
2109 | fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL); |
2110 | r = -ENOMEM; | |
2111 | if (!fpu) | |
2112 | goto out; | |
2113 | r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu); | |
b8836737 AK |
2114 | if (r) |
2115 | goto out; | |
2116 | r = -EFAULT; | |
fa3795a7 | 2117 | if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu))) |
b8836737 AK |
2118 | goto out; |
2119 | r = 0; | |
2120 | break; | |
2121 | } | |
2122 | case KVM_SET_FPU: { | |
ff5c2c03 SL |
2123 | fpu = memdup_user(argp, sizeof(*fpu)); |
2124 | if (IS_ERR(fpu)) { | |
2125 | r = PTR_ERR(fpu); | |
18595411 | 2126 | fpu = NULL; |
b8836737 | 2127 | goto out; |
ff5c2c03 | 2128 | } |
fa3795a7 | 2129 | r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu); |
b8836737 AK |
2130 | break; |
2131 | } | |
bccf2150 | 2132 | default: |
313a3dc7 | 2133 | r = kvm_arch_vcpu_ioctl(filp, ioctl, arg); |
bccf2150 AK |
2134 | } |
2135 | out: | |
2122ff5e | 2136 | vcpu_put(vcpu); |
fa3795a7 DH |
2137 | kfree(fpu); |
2138 | kfree(kvm_sregs); | |
bccf2150 AK |
2139 | return r; |
2140 | } | |
2141 | ||
1dda606c AG |
2142 | #ifdef CONFIG_COMPAT |
2143 | static long kvm_vcpu_compat_ioctl(struct file *filp, | |
2144 | unsigned int ioctl, unsigned long arg) | |
2145 | { | |
2146 | struct kvm_vcpu *vcpu = filp->private_data; | |
2147 | void __user *argp = compat_ptr(arg); | |
2148 | int r; | |
2149 | ||
2150 | if (vcpu->kvm->mm != current->mm) | |
2151 | return -EIO; | |
2152 | ||
2153 | switch (ioctl) { | |
2154 | case KVM_SET_SIGNAL_MASK: { | |
2155 | struct kvm_signal_mask __user *sigmask_arg = argp; | |
2156 | struct kvm_signal_mask kvm_sigmask; | |
2157 | compat_sigset_t csigset; | |
2158 | sigset_t sigset; | |
2159 | ||
2160 | if (argp) { | |
2161 | r = -EFAULT; | |
2162 | if (copy_from_user(&kvm_sigmask, argp, | |
2163 | sizeof kvm_sigmask)) | |
2164 | goto out; | |
2165 | r = -EINVAL; | |
2166 | if (kvm_sigmask.len != sizeof csigset) | |
2167 | goto out; | |
2168 | r = -EFAULT; | |
2169 | if (copy_from_user(&csigset, sigmask_arg->sigset, | |
2170 | sizeof csigset)) | |
2171 | goto out; | |
760a9a30 AC |
2172 | sigset_from_compat(&sigset, &csigset); |
2173 | r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset); | |
2174 | } else | |
2175 | r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL); | |
1dda606c AG |
2176 | break; |
2177 | } | |
2178 | default: | |
2179 | r = kvm_vcpu_ioctl(filp, ioctl, arg); | |
2180 | } | |
2181 | ||
2182 | out: | |
2183 | return r; | |
2184 | } | |
2185 | #endif | |
2186 | ||
852b6d57 SW |
2187 | static int kvm_device_ioctl_attr(struct kvm_device *dev, |
2188 | int (*accessor)(struct kvm_device *dev, | |
2189 | struct kvm_device_attr *attr), | |
2190 | unsigned long arg) | |
2191 | { | |
2192 | struct kvm_device_attr attr; | |
2193 | ||
2194 | if (!accessor) | |
2195 | return -EPERM; | |
2196 | ||
2197 | if (copy_from_user(&attr, (void __user *)arg, sizeof(attr))) | |
2198 | return -EFAULT; | |
2199 | ||
2200 | return accessor(dev, &attr); | |
2201 | } | |
2202 | ||
2203 | static long kvm_device_ioctl(struct file *filp, unsigned int ioctl, | |
2204 | unsigned long arg) | |
2205 | { | |
2206 | struct kvm_device *dev = filp->private_data; | |
2207 | ||
2208 | switch (ioctl) { | |
2209 | case KVM_SET_DEVICE_ATTR: | |
2210 | return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg); | |
2211 | case KVM_GET_DEVICE_ATTR: | |
2212 | return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg); | |
2213 | case KVM_HAS_DEVICE_ATTR: | |
2214 | return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg); | |
2215 | default: | |
2216 | if (dev->ops->ioctl) | |
2217 | return dev->ops->ioctl(dev, ioctl, arg); | |
2218 | ||
2219 | return -ENOTTY; | |
2220 | } | |
2221 | } | |
2222 | ||
852b6d57 SW |
2223 | static int kvm_device_release(struct inode *inode, struct file *filp) |
2224 | { | |
2225 | struct kvm_device *dev = filp->private_data; | |
2226 | struct kvm *kvm = dev->kvm; | |
2227 | ||
852b6d57 SW |
2228 | kvm_put_kvm(kvm); |
2229 | return 0; | |
2230 | } | |
2231 | ||
2232 | static const struct file_operations kvm_device_fops = { | |
2233 | .unlocked_ioctl = kvm_device_ioctl, | |
db6ae615 SW |
2234 | #ifdef CONFIG_COMPAT |
2235 | .compat_ioctl = kvm_device_ioctl, | |
2236 | #endif | |
852b6d57 SW |
2237 | .release = kvm_device_release, |
2238 | }; | |
2239 | ||
2240 | struct kvm_device *kvm_device_from_filp(struct file *filp) | |
2241 | { | |
2242 | if (filp->f_op != &kvm_device_fops) | |
2243 | return NULL; | |
2244 | ||
2245 | return filp->private_data; | |
2246 | } | |
2247 | ||
2248 | static int kvm_ioctl_create_device(struct kvm *kvm, | |
2249 | struct kvm_create_device *cd) | |
2250 | { | |
2251 | struct kvm_device_ops *ops = NULL; | |
2252 | struct kvm_device *dev; | |
2253 | bool test = cd->flags & KVM_CREATE_DEVICE_TEST; | |
2254 | int ret; | |
2255 | ||
2256 | switch (cd->type) { | |
5df554ad SW |
2257 | #ifdef CONFIG_KVM_MPIC |
2258 | case KVM_DEV_TYPE_FSL_MPIC_20: | |
2259 | case KVM_DEV_TYPE_FSL_MPIC_42: | |
2260 | ops = &kvm_mpic_ops; | |
2261 | break; | |
5975a2e0 PM |
2262 | #endif |
2263 | #ifdef CONFIG_KVM_XICS | |
2264 | case KVM_DEV_TYPE_XICS: | |
2265 | ops = &kvm_xics_ops; | |
2266 | break; | |
5df554ad | 2267 | #endif |
852b6d57 SW |
2268 | default: |
2269 | return -ENODEV; | |
2270 | } | |
2271 | ||
2272 | if (test) | |
2273 | return 0; | |
2274 | ||
2275 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); | |
2276 | if (!dev) | |
2277 | return -ENOMEM; | |
2278 | ||
2279 | dev->ops = ops; | |
2280 | dev->kvm = kvm; | |
852b6d57 SW |
2281 | |
2282 | ret = ops->create(dev, cd->type); | |
2283 | if (ret < 0) { | |
2284 | kfree(dev); | |
2285 | return ret; | |
2286 | } | |
2287 | ||
24009b05 | 2288 | ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC); |
852b6d57 SW |
2289 | if (ret < 0) { |
2290 | ops->destroy(dev); | |
2291 | return ret; | |
2292 | } | |
2293 | ||
07f0a7bd | 2294 | list_add(&dev->vm_node, &kvm->devices); |
852b6d57 SW |
2295 | kvm_get_kvm(kvm); |
2296 | cd->fd = ret; | |
2297 | return 0; | |
2298 | } | |
2299 | ||
bccf2150 AK |
2300 | static long kvm_vm_ioctl(struct file *filp, |
2301 | unsigned int ioctl, unsigned long arg) | |
2302 | { | |
2303 | struct kvm *kvm = filp->private_data; | |
2304 | void __user *argp = (void __user *)arg; | |
1fe779f8 | 2305 | int r; |
bccf2150 | 2306 | |
6d4e4c4f AK |
2307 | if (kvm->mm != current->mm) |
2308 | return -EIO; | |
bccf2150 AK |
2309 | switch (ioctl) { |
2310 | case KVM_CREATE_VCPU: | |
2311 | r = kvm_vm_ioctl_create_vcpu(kvm, arg); | |
bccf2150 | 2312 | break; |
6fc138d2 IE |
2313 | case KVM_SET_USER_MEMORY_REGION: { |
2314 | struct kvm_userspace_memory_region kvm_userspace_mem; | |
2315 | ||
2316 | r = -EFAULT; | |
2317 | if (copy_from_user(&kvm_userspace_mem, argp, | |
2318 | sizeof kvm_userspace_mem)) | |
2319 | goto out; | |
2320 | ||
47ae31e2 | 2321 | r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem); |
6aa8b732 AK |
2322 | break; |
2323 | } | |
2324 | case KVM_GET_DIRTY_LOG: { | |
2325 | struct kvm_dirty_log log; | |
2326 | ||
2327 | r = -EFAULT; | |
2f366987 | 2328 | if (copy_from_user(&log, argp, sizeof log)) |
6aa8b732 | 2329 | goto out; |
2c6f5df9 | 2330 | r = kvm_vm_ioctl_get_dirty_log(kvm, &log); |
6aa8b732 AK |
2331 | break; |
2332 | } | |
5f94c174 LV |
2333 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET |
2334 | case KVM_REGISTER_COALESCED_MMIO: { | |
2335 | struct kvm_coalesced_mmio_zone zone; | |
2336 | r = -EFAULT; | |
2337 | if (copy_from_user(&zone, argp, sizeof zone)) | |
2338 | goto out; | |
5f94c174 | 2339 | r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone); |
5f94c174 LV |
2340 | break; |
2341 | } | |
2342 | case KVM_UNREGISTER_COALESCED_MMIO: { | |
2343 | struct kvm_coalesced_mmio_zone zone; | |
2344 | r = -EFAULT; | |
2345 | if (copy_from_user(&zone, argp, sizeof zone)) | |
2346 | goto out; | |
5f94c174 | 2347 | r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone); |
5f94c174 LV |
2348 | break; |
2349 | } | |
2350 | #endif | |
721eecbf GH |
2351 | case KVM_IRQFD: { |
2352 | struct kvm_irqfd data; | |
2353 | ||
2354 | r = -EFAULT; | |
2355 | if (copy_from_user(&data, argp, sizeof data)) | |
2356 | goto out; | |
d4db2935 | 2357 | r = kvm_irqfd(kvm, &data); |
721eecbf GH |
2358 | break; |
2359 | } | |
d34e6b17 GH |
2360 | case KVM_IOEVENTFD: { |
2361 | struct kvm_ioeventfd data; | |
2362 | ||
2363 | r = -EFAULT; | |
2364 | if (copy_from_user(&data, argp, sizeof data)) | |
2365 | goto out; | |
2366 | r = kvm_ioeventfd(kvm, &data); | |
2367 | break; | |
2368 | } | |
73880c80 GN |
2369 | #ifdef CONFIG_KVM_APIC_ARCHITECTURE |
2370 | case KVM_SET_BOOT_CPU_ID: | |
2371 | r = 0; | |
894a9c55 | 2372 | mutex_lock(&kvm->lock); |
73880c80 GN |
2373 | if (atomic_read(&kvm->online_vcpus) != 0) |
2374 | r = -EBUSY; | |
2375 | else | |
2376 | kvm->bsp_vcpu_id = arg; | |
894a9c55 | 2377 | mutex_unlock(&kvm->lock); |
73880c80 | 2378 | break; |
07975ad3 JK |
2379 | #endif |
2380 | #ifdef CONFIG_HAVE_KVM_MSI | |
2381 | case KVM_SIGNAL_MSI: { | |
2382 | struct kvm_msi msi; | |
2383 | ||
2384 | r = -EFAULT; | |
2385 | if (copy_from_user(&msi, argp, sizeof msi)) | |
2386 | goto out; | |
2387 | r = kvm_send_userspace_msi(kvm, &msi); | |
2388 | break; | |
2389 | } | |
23d43cf9 CD |
2390 | #endif |
2391 | #ifdef __KVM_HAVE_IRQ_LINE | |
2392 | case KVM_IRQ_LINE_STATUS: | |
2393 | case KVM_IRQ_LINE: { | |
2394 | struct kvm_irq_level irq_event; | |
2395 | ||
2396 | r = -EFAULT; | |
2397 | if (copy_from_user(&irq_event, argp, sizeof irq_event)) | |
2398 | goto out; | |
2399 | ||
aa2fbe6d YZ |
2400 | r = kvm_vm_ioctl_irq_line(kvm, &irq_event, |
2401 | ioctl == KVM_IRQ_LINE_STATUS); | |
23d43cf9 CD |
2402 | if (r) |
2403 | goto out; | |
2404 | ||
2405 | r = -EFAULT; | |
2406 | if (ioctl == KVM_IRQ_LINE_STATUS) { | |
2407 | if (copy_to_user(argp, &irq_event, sizeof irq_event)) | |
2408 | goto out; | |
2409 | } | |
2410 | ||
2411 | r = 0; | |
2412 | break; | |
2413 | } | |
73880c80 | 2414 | #endif |
aa8d5944 AG |
2415 | #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING |
2416 | case KVM_SET_GSI_ROUTING: { | |
2417 | struct kvm_irq_routing routing; | |
2418 | struct kvm_irq_routing __user *urouting; | |
2419 | struct kvm_irq_routing_entry *entries; | |
2420 | ||
2421 | r = -EFAULT; | |
2422 | if (copy_from_user(&routing, argp, sizeof(routing))) | |
2423 | goto out; | |
2424 | r = -EINVAL; | |
2425 | if (routing.nr >= KVM_MAX_IRQ_ROUTES) | |
2426 | goto out; | |
2427 | if (routing.flags) | |
2428 | goto out; | |
2429 | r = -ENOMEM; | |
2430 | entries = vmalloc(routing.nr * sizeof(*entries)); | |
2431 | if (!entries) | |
2432 | goto out; | |
2433 | r = -EFAULT; | |
2434 | urouting = argp; | |
2435 | if (copy_from_user(entries, urouting->entries, | |
2436 | routing.nr * sizeof(*entries))) | |
2437 | goto out_free_irq_routing; | |
2438 | r = kvm_set_irq_routing(kvm, entries, routing.nr, | |
2439 | routing.flags); | |
2440 | out_free_irq_routing: | |
2441 | vfree(entries); | |
2442 | break; | |
2443 | } | |
2444 | #endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */ | |
852b6d57 SW |
2445 | case KVM_CREATE_DEVICE: { |
2446 | struct kvm_create_device cd; | |
2447 | ||
2448 | r = -EFAULT; | |
2449 | if (copy_from_user(&cd, argp, sizeof(cd))) | |
2450 | goto out; | |
2451 | ||
2452 | r = kvm_ioctl_create_device(kvm, &cd); | |
2453 | if (r) | |
2454 | goto out; | |
2455 | ||
2456 | r = -EFAULT; | |
2457 | if (copy_to_user(argp, &cd, sizeof(cd))) | |
2458 | goto out; | |
2459 | ||
2460 | r = 0; | |
2461 | break; | |
2462 | } | |
f17abe9a | 2463 | default: |
1fe779f8 | 2464 | r = kvm_arch_vm_ioctl(filp, ioctl, arg); |
bfd99ff5 AK |
2465 | if (r == -ENOTTY) |
2466 | r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg); | |
f17abe9a AK |
2467 | } |
2468 | out: | |
2469 | return r; | |
2470 | } | |
2471 | ||
6ff5894c AB |
2472 | #ifdef CONFIG_COMPAT |
2473 | struct compat_kvm_dirty_log { | |
2474 | __u32 slot; | |
2475 | __u32 padding1; | |
2476 | union { | |
2477 | compat_uptr_t dirty_bitmap; /* one bit per page */ | |
2478 | __u64 padding2; | |
2479 | }; | |
2480 | }; | |
2481 | ||
2482 | static long kvm_vm_compat_ioctl(struct file *filp, | |
2483 | unsigned int ioctl, unsigned long arg) | |
2484 | { | |
2485 | struct kvm *kvm = filp->private_data; | |
2486 | int r; | |
2487 | ||
2488 | if (kvm->mm != current->mm) | |
2489 | return -EIO; | |
2490 | switch (ioctl) { | |
2491 | case KVM_GET_DIRTY_LOG: { | |
2492 | struct compat_kvm_dirty_log compat_log; | |
2493 | struct kvm_dirty_log log; | |
2494 | ||
2495 | r = -EFAULT; | |
2496 | if (copy_from_user(&compat_log, (void __user *)arg, | |
2497 | sizeof(compat_log))) | |
2498 | goto out; | |
2499 | log.slot = compat_log.slot; | |
2500 | log.padding1 = compat_log.padding1; | |
2501 | log.padding2 = compat_log.padding2; | |
2502 | log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap); | |
2503 | ||
2504 | r = kvm_vm_ioctl_get_dirty_log(kvm, &log); | |
6ff5894c AB |
2505 | break; |
2506 | } | |
2507 | default: | |
2508 | r = kvm_vm_ioctl(filp, ioctl, arg); | |
2509 | } | |
2510 | ||
2511 | out: | |
2512 | return r; | |
2513 | } | |
2514 | #endif | |
2515 | ||
e4a533a4 | 2516 | static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) |
f17abe9a | 2517 | { |
777b3f49 MT |
2518 | struct page *page[1]; |
2519 | unsigned long addr; | |
2520 | int npages; | |
2521 | gfn_t gfn = vmf->pgoff; | |
f17abe9a | 2522 | struct kvm *kvm = vma->vm_file->private_data; |
f17abe9a | 2523 | |
777b3f49 MT |
2524 | addr = gfn_to_hva(kvm, gfn); |
2525 | if (kvm_is_error_hva(addr)) | |
e4a533a4 | 2526 | return VM_FAULT_SIGBUS; |
777b3f49 MT |
2527 | |
2528 | npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page, | |
2529 | NULL); | |
2530 | if (unlikely(npages != 1)) | |
e4a533a4 | 2531 | return VM_FAULT_SIGBUS; |
777b3f49 MT |
2532 | |
2533 | vmf->page = page[0]; | |
e4a533a4 | 2534 | return 0; |
f17abe9a AK |
2535 | } |
2536 | ||
f0f37e2f | 2537 | static const struct vm_operations_struct kvm_vm_vm_ops = { |
e4a533a4 | 2538 | .fault = kvm_vm_fault, |
f17abe9a AK |
2539 | }; |
2540 | ||
2541 | static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma) | |
2542 | { | |
2543 | vma->vm_ops = &kvm_vm_vm_ops; | |
2544 | return 0; | |
2545 | } | |
2546 | ||
3d3aab1b | 2547 | static struct file_operations kvm_vm_fops = { |
f17abe9a AK |
2548 | .release = kvm_vm_release, |
2549 | .unlocked_ioctl = kvm_vm_ioctl, | |
6ff5894c AB |
2550 | #ifdef CONFIG_COMPAT |
2551 | .compat_ioctl = kvm_vm_compat_ioctl, | |
2552 | #endif | |
f17abe9a | 2553 | .mmap = kvm_vm_mmap, |
6038f373 | 2554 | .llseek = noop_llseek, |
f17abe9a AK |
2555 | }; |
2556 | ||
e08b9637 | 2557 | static int kvm_dev_ioctl_create_vm(unsigned long type) |
f17abe9a | 2558 | { |
aac87636 | 2559 | int r; |
f17abe9a AK |
2560 | struct kvm *kvm; |
2561 | ||
e08b9637 | 2562 | kvm = kvm_create_vm(type); |
d6d28168 AK |
2563 | if (IS_ERR(kvm)) |
2564 | return PTR_ERR(kvm); | |
6ce5a090 TY |
2565 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET |
2566 | r = kvm_coalesced_mmio_init(kvm); | |
2567 | if (r < 0) { | |
2568 | kvm_put_kvm(kvm); | |
2569 | return r; | |
2570 | } | |
2571 | #endif | |
24009b05 | 2572 | r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR | O_CLOEXEC); |
aac87636 | 2573 | if (r < 0) |
66c0b394 | 2574 | kvm_put_kvm(kvm); |
f17abe9a | 2575 | |
aac87636 | 2576 | return r; |
f17abe9a AK |
2577 | } |
2578 | ||
1a811b61 AK |
2579 | static long kvm_dev_ioctl_check_extension_generic(long arg) |
2580 | { | |
2581 | switch (arg) { | |
ca9edaee | 2582 | case KVM_CAP_USER_MEMORY: |
1a811b61 | 2583 | case KVM_CAP_DESTROY_MEMORY_REGION_WORKS: |
4cd481f6 | 2584 | case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS: |
73880c80 GN |
2585 | #ifdef CONFIG_KVM_APIC_ARCHITECTURE |
2586 | case KVM_CAP_SET_BOOT_CPU_ID: | |
2587 | #endif | |
a9c7399d | 2588 | case KVM_CAP_INTERNAL_ERROR_DATA: |
07975ad3 JK |
2589 | #ifdef CONFIG_HAVE_KVM_MSI |
2590 | case KVM_CAP_SIGNAL_MSI: | |
7df35f54 AG |
2591 | #endif |
2592 | #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING | |
2593 | case KVM_CAP_IRQFD_RESAMPLE: | |
07975ad3 | 2594 | #endif |
1a811b61 | 2595 | return 1; |
a725d56a | 2596 | #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING |
399ec807 | 2597 | case KVM_CAP_IRQ_ROUTING: |
36463146 | 2598 | return KVM_MAX_IRQ_ROUTES; |
399ec807 | 2599 | #endif |
1a811b61 AK |
2600 | default: |
2601 | break; | |
2602 | } | |
2603 | return kvm_dev_ioctl_check_extension(arg); | |
2604 | } | |
2605 | ||
f17abe9a AK |
2606 | static long kvm_dev_ioctl(struct file *filp, |
2607 | unsigned int ioctl, unsigned long arg) | |
2608 | { | |
07c45a36 | 2609 | long r = -EINVAL; |
f17abe9a AK |
2610 | |
2611 | switch (ioctl) { | |
2612 | case KVM_GET_API_VERSION: | |
f0fe5108 AK |
2613 | r = -EINVAL; |
2614 | if (arg) | |
2615 | goto out; | |
f17abe9a AK |
2616 | r = KVM_API_VERSION; |
2617 | break; | |
2618 | case KVM_CREATE_VM: | |
e08b9637 | 2619 | r = kvm_dev_ioctl_create_vm(arg); |
f17abe9a | 2620 | break; |
018d00d2 | 2621 | case KVM_CHECK_EXTENSION: |
1a811b61 | 2622 | r = kvm_dev_ioctl_check_extension_generic(arg); |
5d308f45 | 2623 | break; |
07c45a36 AK |
2624 | case KVM_GET_VCPU_MMAP_SIZE: |
2625 | r = -EINVAL; | |
2626 | if (arg) | |
2627 | goto out; | |
adb1ff46 AK |
2628 | r = PAGE_SIZE; /* struct kvm_run */ |
2629 | #ifdef CONFIG_X86 | |
2630 | r += PAGE_SIZE; /* pio data page */ | |
5f94c174 LV |
2631 | #endif |
2632 | #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET | |
2633 | r += PAGE_SIZE; /* coalesced mmio ring page */ | |
adb1ff46 | 2634 | #endif |
07c45a36 | 2635 | break; |
d4c9ff2d FEL |
2636 | case KVM_TRACE_ENABLE: |
2637 | case KVM_TRACE_PAUSE: | |
2638 | case KVM_TRACE_DISABLE: | |
2023a29c | 2639 | r = -EOPNOTSUPP; |
d4c9ff2d | 2640 | break; |
6aa8b732 | 2641 | default: |
043405e1 | 2642 | return kvm_arch_dev_ioctl(filp, ioctl, arg); |
6aa8b732 AK |
2643 | } |
2644 | out: | |
2645 | return r; | |
2646 | } | |
2647 | ||
6aa8b732 | 2648 | static struct file_operations kvm_chardev_ops = { |
6aa8b732 AK |
2649 | .unlocked_ioctl = kvm_dev_ioctl, |
2650 | .compat_ioctl = kvm_dev_ioctl, | |
6038f373 | 2651 | .llseek = noop_llseek, |
6aa8b732 AK |
2652 | }; |
2653 | ||
2654 | static struct miscdevice kvm_dev = { | |
bbe4432e | 2655 | KVM_MINOR, |
6aa8b732 AK |
2656 | "kvm", |
2657 | &kvm_chardev_ops, | |
2658 | }; | |
2659 | ||
75b7127c | 2660 | static void hardware_enable_nolock(void *junk) |
1b6c0168 AK |
2661 | { |
2662 | int cpu = raw_smp_processor_id(); | |
10474ae8 | 2663 | int r; |
1b6c0168 | 2664 | |
7f59f492 | 2665 | if (cpumask_test_cpu(cpu, cpus_hardware_enabled)) |
1b6c0168 | 2666 | return; |
10474ae8 | 2667 | |
7f59f492 | 2668 | cpumask_set_cpu(cpu, cpus_hardware_enabled); |
10474ae8 AG |
2669 | |
2670 | r = kvm_arch_hardware_enable(NULL); | |
2671 | ||
2672 | if (r) { | |
2673 | cpumask_clear_cpu(cpu, cpus_hardware_enabled); | |
2674 | atomic_inc(&hardware_enable_failed); | |
2675 | printk(KERN_INFO "kvm: enabling virtualization on " | |
2676 | "CPU%d failed\n", cpu); | |
2677 | } | |
1b6c0168 AK |
2678 | } |
2679 | ||
75b7127c TY |
2680 | static void hardware_enable(void *junk) |
2681 | { | |
e935b837 | 2682 | raw_spin_lock(&kvm_lock); |
75b7127c | 2683 | hardware_enable_nolock(junk); |
e935b837 | 2684 | raw_spin_unlock(&kvm_lock); |
75b7127c TY |
2685 | } |
2686 | ||
2687 | static void hardware_disable_nolock(void *junk) | |
1b6c0168 AK |
2688 | { |
2689 | int cpu = raw_smp_processor_id(); | |
2690 | ||
7f59f492 | 2691 | if (!cpumask_test_cpu(cpu, cpus_hardware_enabled)) |
1b6c0168 | 2692 | return; |
7f59f492 | 2693 | cpumask_clear_cpu(cpu, cpus_hardware_enabled); |
e9b11c17 | 2694 | kvm_arch_hardware_disable(NULL); |
1b6c0168 AK |
2695 | } |
2696 | ||
75b7127c TY |
2697 | static void hardware_disable(void *junk) |
2698 | { | |
e935b837 | 2699 | raw_spin_lock(&kvm_lock); |
75b7127c | 2700 | hardware_disable_nolock(junk); |
e935b837 | 2701 | raw_spin_unlock(&kvm_lock); |
75b7127c TY |
2702 | } |
2703 | ||
10474ae8 AG |
2704 | static void hardware_disable_all_nolock(void) |
2705 | { | |
2706 | BUG_ON(!kvm_usage_count); | |
2707 | ||
2708 | kvm_usage_count--; | |
2709 | if (!kvm_usage_count) | |
75b7127c | 2710 | on_each_cpu(hardware_disable_nolock, NULL, 1); |
10474ae8 AG |
2711 | } |
2712 | ||
2713 | static void hardware_disable_all(void) | |
2714 | { | |
e935b837 | 2715 | raw_spin_lock(&kvm_lock); |
10474ae8 | 2716 | hardware_disable_all_nolock(); |
e935b837 | 2717 | raw_spin_unlock(&kvm_lock); |
10474ae8 AG |
2718 | } |
2719 | ||
2720 | static int hardware_enable_all(void) | |
2721 | { | |
2722 | int r = 0; | |
2723 | ||
e935b837 | 2724 | raw_spin_lock(&kvm_lock); |
10474ae8 AG |
2725 | |
2726 | kvm_usage_count++; | |
2727 | if (kvm_usage_count == 1) { | |
2728 | atomic_set(&hardware_enable_failed, 0); | |
75b7127c | 2729 | on_each_cpu(hardware_enable_nolock, NULL, 1); |
10474ae8 AG |
2730 | |
2731 | if (atomic_read(&hardware_enable_failed)) { | |
2732 | hardware_disable_all_nolock(); | |
2733 | r = -EBUSY; | |
2734 | } | |
2735 | } | |
2736 | ||
e935b837 | 2737 | raw_spin_unlock(&kvm_lock); |
10474ae8 AG |
2738 | |
2739 | return r; | |
2740 | } | |
2741 | ||
774c47f1 AK |
2742 | static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val, |
2743 | void *v) | |
2744 | { | |
2745 | int cpu = (long)v; | |
2746 | ||
10474ae8 AG |
2747 | if (!kvm_usage_count) |
2748 | return NOTIFY_OK; | |
2749 | ||
1a6f4d7f | 2750 | val &= ~CPU_TASKS_FROZEN; |
774c47f1 | 2751 | switch (val) { |
cec9ad27 | 2752 | case CPU_DYING: |
6ec8a856 AK |
2753 | printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n", |
2754 | cpu); | |
2755 | hardware_disable(NULL); | |
2756 | break; | |
da908f2f | 2757 | case CPU_STARTING: |
43934a38 JK |
2758 | printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n", |
2759 | cpu); | |
da908f2f | 2760 | hardware_enable(NULL); |
774c47f1 AK |
2761 | break; |
2762 | } | |
2763 | return NOTIFY_OK; | |
2764 | } | |
2765 | ||
9a2b85c6 | 2766 | static int kvm_reboot(struct notifier_block *notifier, unsigned long val, |
d77c26fc | 2767 | void *v) |
9a2b85c6 | 2768 | { |
8e1c1815 SY |
2769 | /* |
2770 | * Some (well, at least mine) BIOSes hang on reboot if | |
2771 | * in vmx root mode. | |
2772 | * | |
2773 | * And Intel TXT required VMX off for all cpu when system shutdown. | |
2774 | */ | |
2775 | printk(KERN_INFO "kvm: exiting hardware virtualization\n"); | |
2776 | kvm_rebooting = true; | |
75b7127c | 2777 | on_each_cpu(hardware_disable_nolock, NULL, 1); |
9a2b85c6 RR |
2778 | return NOTIFY_OK; |
2779 | } | |
2780 | ||
2781 | static struct notifier_block kvm_reboot_notifier = { | |
2782 | .notifier_call = kvm_reboot, | |
2783 | .priority = 0, | |
2784 | }; | |
2785 | ||
e93f8a0f | 2786 | static void kvm_io_bus_destroy(struct kvm_io_bus *bus) |
2eeb2e94 GH |
2787 | { |
2788 | int i; | |
2789 | ||
2790 | for (i = 0; i < bus->dev_count; i++) { | |
743eeb0b | 2791 | struct kvm_io_device *pos = bus->range[i].dev; |
2eeb2e94 GH |
2792 | |
2793 | kvm_iodevice_destructor(pos); | |
2794 | } | |
e93f8a0f | 2795 | kfree(bus); |
2eeb2e94 GH |
2796 | } |
2797 | ||
c21fbff1 PB |
2798 | static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1, |
2799 | const struct kvm_io_range *r2) | |
743eeb0b | 2800 | { |
743eeb0b SL |
2801 | if (r1->addr < r2->addr) |
2802 | return -1; | |
2803 | if (r1->addr + r1->len > r2->addr + r2->len) | |
2804 | return 1; | |
2805 | return 0; | |
2806 | } | |
2807 | ||
a343c9b7 PB |
2808 | static int kvm_io_bus_sort_cmp(const void *p1, const void *p2) |
2809 | { | |
c21fbff1 | 2810 | return kvm_io_bus_cmp(p1, p2); |
a343c9b7 PB |
2811 | } |
2812 | ||
39369f7a | 2813 | static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev, |
743eeb0b SL |
2814 | gpa_t addr, int len) |
2815 | { | |
743eeb0b SL |
2816 | bus->range[bus->dev_count++] = (struct kvm_io_range) { |
2817 | .addr = addr, | |
2818 | .len = len, | |
2819 | .dev = dev, | |
2820 | }; | |
2821 | ||
2822 | sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range), | |
2823 | kvm_io_bus_sort_cmp, NULL); | |
2824 | ||
2825 | return 0; | |
2826 | } | |
2827 | ||
39369f7a | 2828 | static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus, |
743eeb0b SL |
2829 | gpa_t addr, int len) |
2830 | { | |
2831 | struct kvm_io_range *range, key; | |
2832 | int off; | |
2833 | ||
2834 | key = (struct kvm_io_range) { | |
2835 | .addr = addr, | |
2836 | .len = len, | |
2837 | }; | |
2838 | ||
2839 | range = bsearch(&key, bus->range, bus->dev_count, | |
2840 | sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp); | |
2841 | if (range == NULL) | |
2842 | return -ENOENT; | |
2843 | ||
2844 | off = range - bus->range; | |
2845 | ||
c21fbff1 | 2846 | while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0) |
743eeb0b SL |
2847 | off--; |
2848 | ||
2849 | return off; | |
2850 | } | |
2851 | ||
126a5af5 CH |
2852 | static int __kvm_io_bus_write(struct kvm_io_bus *bus, |
2853 | struct kvm_io_range *range, const void *val) | |
2854 | { | |
2855 | int idx; | |
2856 | ||
2857 | idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len); | |
2858 | if (idx < 0) | |
2859 | return -EOPNOTSUPP; | |
2860 | ||
2861 | while (idx < bus->dev_count && | |
c21fbff1 | 2862 | kvm_io_bus_cmp(range, &bus->range[idx]) == 0) { |
126a5af5 CH |
2863 | if (!kvm_iodevice_write(bus->range[idx].dev, range->addr, |
2864 | range->len, val)) | |
2865 | return idx; | |
2866 | idx++; | |
2867 | } | |
2868 | ||
2869 | return -EOPNOTSUPP; | |
2870 | } | |
2871 | ||
bda9020e | 2872 | /* kvm_io_bus_write - called under kvm->slots_lock */ |
e93f8a0f | 2873 | int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, |
bda9020e | 2874 | int len, const void *val) |
2eeb2e94 | 2875 | { |
90d83dc3 | 2876 | struct kvm_io_bus *bus; |
743eeb0b | 2877 | struct kvm_io_range range; |
126a5af5 | 2878 | int r; |
743eeb0b SL |
2879 | |
2880 | range = (struct kvm_io_range) { | |
2881 | .addr = addr, | |
2882 | .len = len, | |
2883 | }; | |
90d83dc3 LJ |
2884 | |
2885 | bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu); | |
126a5af5 CH |
2886 | r = __kvm_io_bus_write(bus, &range, val); |
2887 | return r < 0 ? r : 0; | |
2888 | } | |
2889 | ||
2890 | /* kvm_io_bus_write_cookie - called under kvm->slots_lock */ | |
2891 | int kvm_io_bus_write_cookie(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, | |
2892 | int len, const void *val, long cookie) | |
2893 | { | |
2894 | struct kvm_io_bus *bus; | |
2895 | struct kvm_io_range range; | |
2896 | ||
2897 | range = (struct kvm_io_range) { | |
2898 | .addr = addr, | |
2899 | .len = len, | |
2900 | }; | |
2901 | ||
2902 | bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu); | |
2903 | ||
2904 | /* First try the device referenced by cookie. */ | |
2905 | if ((cookie >= 0) && (cookie < bus->dev_count) && | |
c21fbff1 | 2906 | (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0)) |
126a5af5 CH |
2907 | if (!kvm_iodevice_write(bus->range[cookie].dev, addr, len, |
2908 | val)) | |
2909 | return cookie; | |
2910 | ||
2911 | /* | |
2912 | * cookie contained garbage; fall back to search and return the | |
2913 | * correct cookie value. | |
2914 | */ | |
2915 | return __kvm_io_bus_write(bus, &range, val); | |
2916 | } | |
2917 | ||
2918 | static int __kvm_io_bus_read(struct kvm_io_bus *bus, struct kvm_io_range *range, | |
2919 | void *val) | |
2920 | { | |
2921 | int idx; | |
2922 | ||
2923 | idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len); | |
743eeb0b SL |
2924 | if (idx < 0) |
2925 | return -EOPNOTSUPP; | |
2926 | ||
2927 | while (idx < bus->dev_count && | |
c21fbff1 | 2928 | kvm_io_bus_cmp(range, &bus->range[idx]) == 0) { |
126a5af5 CH |
2929 | if (!kvm_iodevice_read(bus->range[idx].dev, range->addr, |
2930 | range->len, val)) | |
2931 | return idx; | |
743eeb0b SL |
2932 | idx++; |
2933 | } | |
2934 | ||
bda9020e MT |
2935 | return -EOPNOTSUPP; |
2936 | } | |
2eeb2e94 | 2937 | |
bda9020e | 2938 | /* kvm_io_bus_read - called under kvm->slots_lock */ |
e93f8a0f MT |
2939 | int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, |
2940 | int len, void *val) | |
bda9020e | 2941 | { |
90d83dc3 | 2942 | struct kvm_io_bus *bus; |
743eeb0b | 2943 | struct kvm_io_range range; |
126a5af5 | 2944 | int r; |
743eeb0b SL |
2945 | |
2946 | range = (struct kvm_io_range) { | |
2947 | .addr = addr, | |
2948 | .len = len, | |
2949 | }; | |
e93f8a0f | 2950 | |
90d83dc3 | 2951 | bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu); |
126a5af5 CH |
2952 | r = __kvm_io_bus_read(bus, &range, val); |
2953 | return r < 0 ? r : 0; | |
2954 | } | |
743eeb0b | 2955 | |
126a5af5 CH |
2956 | /* kvm_io_bus_read_cookie - called under kvm->slots_lock */ |
2957 | int kvm_io_bus_read_cookie(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, | |
2958 | int len, void *val, long cookie) | |
2959 | { | |
2960 | struct kvm_io_bus *bus; | |
2961 | struct kvm_io_range range; | |
743eeb0b | 2962 | |
126a5af5 CH |
2963 | range = (struct kvm_io_range) { |
2964 | .addr = addr, | |
2965 | .len = len, | |
2966 | }; | |
2967 | ||
2968 | bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu); | |
2969 | ||
2970 | /* First try the device referenced by cookie. */ | |
2971 | if ((cookie >= 0) && (cookie < bus->dev_count) && | |
c21fbff1 | 2972 | (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0)) |
126a5af5 CH |
2973 | if (!kvm_iodevice_read(bus->range[cookie].dev, addr, len, |
2974 | val)) | |
2975 | return cookie; | |
2976 | ||
2977 | /* | |
2978 | * cookie contained garbage; fall back to search and return the | |
2979 | * correct cookie value. | |
2980 | */ | |
2981 | return __kvm_io_bus_read(bus, &range, val); | |
2eeb2e94 GH |
2982 | } |
2983 | ||
79fac95e | 2984 | /* Caller must hold slots_lock. */ |
743eeb0b SL |
2985 | int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, |
2986 | int len, struct kvm_io_device *dev) | |
6c474694 | 2987 | { |
e93f8a0f | 2988 | struct kvm_io_bus *new_bus, *bus; |
090b7aff | 2989 | |
e93f8a0f | 2990 | bus = kvm->buses[bus_idx]; |
6ea34c9b AK |
2991 | /* exclude ioeventfd which is limited by maximum fd */ |
2992 | if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1) | |
090b7aff | 2993 | return -ENOSPC; |
2eeb2e94 | 2994 | |
a1300716 AK |
2995 | new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) * |
2996 | sizeof(struct kvm_io_range)), GFP_KERNEL); | |
e93f8a0f MT |
2997 | if (!new_bus) |
2998 | return -ENOMEM; | |
a1300716 AK |
2999 | memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count * |
3000 | sizeof(struct kvm_io_range))); | |
743eeb0b | 3001 | kvm_io_bus_insert_dev(new_bus, dev, addr, len); |
e93f8a0f MT |
3002 | rcu_assign_pointer(kvm->buses[bus_idx], new_bus); |
3003 | synchronize_srcu_expedited(&kvm->srcu); | |
3004 | kfree(bus); | |
090b7aff GH |
3005 | |
3006 | return 0; | |
3007 | } | |
3008 | ||
79fac95e | 3009 | /* Caller must hold slots_lock. */ |
e93f8a0f MT |
3010 | int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx, |
3011 | struct kvm_io_device *dev) | |
090b7aff | 3012 | { |
e93f8a0f MT |
3013 | int i, r; |
3014 | struct kvm_io_bus *new_bus, *bus; | |
090b7aff | 3015 | |
cdfca7b3 | 3016 | bus = kvm->buses[bus_idx]; |
e93f8a0f | 3017 | r = -ENOENT; |
a1300716 AK |
3018 | for (i = 0; i < bus->dev_count; i++) |
3019 | if (bus->range[i].dev == dev) { | |
e93f8a0f | 3020 | r = 0; |
090b7aff GH |
3021 | break; |
3022 | } | |
e93f8a0f | 3023 | |
a1300716 | 3024 | if (r) |
e93f8a0f | 3025 | return r; |
a1300716 AK |
3026 | |
3027 | new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) * | |
3028 | sizeof(struct kvm_io_range)), GFP_KERNEL); | |
3029 | if (!new_bus) | |
3030 | return -ENOMEM; | |
3031 | ||
3032 | memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range)); | |
3033 | new_bus->dev_count--; | |
3034 | memcpy(new_bus->range + i, bus->range + i + 1, | |
3035 | (new_bus->dev_count - i) * sizeof(struct kvm_io_range)); | |
e93f8a0f MT |
3036 | |
3037 | rcu_assign_pointer(kvm->buses[bus_idx], new_bus); | |
3038 | synchronize_srcu_expedited(&kvm->srcu); | |
3039 | kfree(bus); | |
3040 | return r; | |
2eeb2e94 GH |
3041 | } |
3042 | ||
774c47f1 AK |
3043 | static struct notifier_block kvm_cpu_notifier = { |
3044 | .notifier_call = kvm_cpu_hotplug, | |
774c47f1 AK |
3045 | }; |
3046 | ||
8b88b099 | 3047 | static int vm_stat_get(void *_offset, u64 *val) |
ba1389b7 AK |
3048 | { |
3049 | unsigned offset = (long)_offset; | |
ba1389b7 AK |
3050 | struct kvm *kvm; |
3051 | ||
8b88b099 | 3052 | *val = 0; |
e935b837 | 3053 | raw_spin_lock(&kvm_lock); |
ba1389b7 | 3054 | list_for_each_entry(kvm, &vm_list, vm_list) |
8b88b099 | 3055 | *val += *(u32 *)((void *)kvm + offset); |
e935b837 | 3056 | raw_spin_unlock(&kvm_lock); |
8b88b099 | 3057 | return 0; |
ba1389b7 AK |
3058 | } |
3059 | ||
3060 | DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n"); | |
3061 | ||
8b88b099 | 3062 | static int vcpu_stat_get(void *_offset, u64 *val) |
1165f5fe AK |
3063 | { |
3064 | unsigned offset = (long)_offset; | |
1165f5fe AK |
3065 | struct kvm *kvm; |
3066 | struct kvm_vcpu *vcpu; | |
3067 | int i; | |
3068 | ||
8b88b099 | 3069 | *val = 0; |
e935b837 | 3070 | raw_spin_lock(&kvm_lock); |
1165f5fe | 3071 | list_for_each_entry(kvm, &vm_list, vm_list) |
988a2cae GN |
3072 | kvm_for_each_vcpu(i, vcpu, kvm) |
3073 | *val += *(u32 *)((void *)vcpu + offset); | |
3074 | ||
e935b837 | 3075 | raw_spin_unlock(&kvm_lock); |
8b88b099 | 3076 | return 0; |
1165f5fe AK |
3077 | } |
3078 | ||
ba1389b7 AK |
3079 | DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n"); |
3080 | ||
828c0950 | 3081 | static const struct file_operations *stat_fops[] = { |
ba1389b7 AK |
3082 | [KVM_STAT_VCPU] = &vcpu_stat_fops, |
3083 | [KVM_STAT_VM] = &vm_stat_fops, | |
3084 | }; | |
1165f5fe | 3085 | |
4f69b680 | 3086 | static int kvm_init_debug(void) |
6aa8b732 | 3087 | { |
4f69b680 | 3088 | int r = -EFAULT; |
6aa8b732 AK |
3089 | struct kvm_stats_debugfs_item *p; |
3090 | ||
76f7c879 | 3091 | kvm_debugfs_dir = debugfs_create_dir("kvm", NULL); |
4f69b680 H |
3092 | if (kvm_debugfs_dir == NULL) |
3093 | goto out; | |
3094 | ||
3095 | for (p = debugfs_entries; p->name; ++p) { | |
76f7c879 | 3096 | p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir, |
1165f5fe | 3097 | (void *)(long)p->offset, |
ba1389b7 | 3098 | stat_fops[p->kind]); |
4f69b680 H |
3099 | if (p->dentry == NULL) |
3100 | goto out_dir; | |
3101 | } | |
3102 | ||
3103 | return 0; | |
3104 | ||
3105 | out_dir: | |
3106 | debugfs_remove_recursive(kvm_debugfs_dir); | |
3107 | out: | |
3108 | return r; | |
6aa8b732 AK |
3109 | } |
3110 | ||
3111 | static void kvm_exit_debug(void) | |
3112 | { | |
3113 | struct kvm_stats_debugfs_item *p; | |
3114 | ||
3115 | for (p = debugfs_entries; p->name; ++p) | |
3116 | debugfs_remove(p->dentry); | |
76f7c879 | 3117 | debugfs_remove(kvm_debugfs_dir); |
6aa8b732 AK |
3118 | } |
3119 | ||
fb3600cc | 3120 | static int kvm_suspend(void) |
59ae6c6b | 3121 | { |
10474ae8 | 3122 | if (kvm_usage_count) |
75b7127c | 3123 | hardware_disable_nolock(NULL); |
59ae6c6b AK |
3124 | return 0; |
3125 | } | |
3126 | ||
fb3600cc | 3127 | static void kvm_resume(void) |
59ae6c6b | 3128 | { |
ca84d1a2 | 3129 | if (kvm_usage_count) { |
e935b837 | 3130 | WARN_ON(raw_spin_is_locked(&kvm_lock)); |
75b7127c | 3131 | hardware_enable_nolock(NULL); |
ca84d1a2 | 3132 | } |
59ae6c6b AK |
3133 | } |
3134 | ||
fb3600cc | 3135 | static struct syscore_ops kvm_syscore_ops = { |
59ae6c6b AK |
3136 | .suspend = kvm_suspend, |
3137 | .resume = kvm_resume, | |
3138 | }; | |
3139 | ||
15ad7146 AK |
3140 | static inline |
3141 | struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn) | |
3142 | { | |
3143 | return container_of(pn, struct kvm_vcpu, preempt_notifier); | |
3144 | } | |
3145 | ||
3146 | static void kvm_sched_in(struct preempt_notifier *pn, int cpu) | |
3147 | { | |
3148 | struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn); | |
3a08a8f9 R |
3149 | if (vcpu->preempted) |
3150 | vcpu->preempted = false; | |
15ad7146 | 3151 | |
e9b11c17 | 3152 | kvm_arch_vcpu_load(vcpu, cpu); |
15ad7146 AK |
3153 | } |
3154 | ||
3155 | static void kvm_sched_out(struct preempt_notifier *pn, | |
3156 | struct task_struct *next) | |
3157 | { | |
3158 | struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn); | |
3159 | ||
3a08a8f9 R |
3160 | if (current->state == TASK_RUNNING) |
3161 | vcpu->preempted = true; | |
e9b11c17 | 3162 | kvm_arch_vcpu_put(vcpu); |
15ad7146 AK |
3163 | } |
3164 | ||
0ee75bea | 3165 | int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align, |
c16f862d | 3166 | struct module *module) |
6aa8b732 AK |
3167 | { |
3168 | int r; | |
002c7f7c | 3169 | int cpu; |
6aa8b732 | 3170 | |
f8c16bba ZX |
3171 | r = kvm_arch_init(opaque); |
3172 | if (r) | |
d2308784 | 3173 | goto out_fail; |
cb498ea2 | 3174 | |
7dac16c3 AH |
3175 | /* |
3176 | * kvm_arch_init makes sure there's at most one caller | |
3177 | * for architectures that support multiple implementations, | |
3178 | * like intel and amd on x86. | |
3179 | * kvm_arch_init must be called before kvm_irqfd_init to avoid creating | |
3180 | * conflicts in case kvm is already setup for another implementation. | |
3181 | */ | |
3182 | r = kvm_irqfd_init(); | |
3183 | if (r) | |
3184 | goto out_irqfd; | |
3185 | ||
8437a617 | 3186 | if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) { |
7f59f492 RR |
3187 | r = -ENOMEM; |
3188 | goto out_free_0; | |
3189 | } | |
3190 | ||
e9b11c17 | 3191 | r = kvm_arch_hardware_setup(); |
6aa8b732 | 3192 | if (r < 0) |
7f59f492 | 3193 | goto out_free_0a; |
6aa8b732 | 3194 | |
002c7f7c YS |
3195 | for_each_online_cpu(cpu) { |
3196 | smp_call_function_single(cpu, | |
e9b11c17 | 3197 | kvm_arch_check_processor_compat, |
8691e5a8 | 3198 | &r, 1); |
002c7f7c | 3199 | if (r < 0) |
d2308784 | 3200 | goto out_free_1; |
002c7f7c YS |
3201 | } |
3202 | ||
774c47f1 AK |
3203 | r = register_cpu_notifier(&kvm_cpu_notifier); |
3204 | if (r) | |
d2308784 | 3205 | goto out_free_2; |
6aa8b732 AK |
3206 | register_reboot_notifier(&kvm_reboot_notifier); |
3207 | ||
c16f862d | 3208 | /* A kmem cache lets us meet the alignment requirements of fx_save. */ |
0ee75bea AK |
3209 | if (!vcpu_align) |
3210 | vcpu_align = __alignof__(struct kvm_vcpu); | |
3211 | kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align, | |
56919c5c | 3212 | 0, NULL); |
c16f862d RR |
3213 | if (!kvm_vcpu_cache) { |
3214 | r = -ENOMEM; | |
fb3600cc | 3215 | goto out_free_3; |
c16f862d RR |
3216 | } |
3217 | ||
af585b92 GN |
3218 | r = kvm_async_pf_init(); |
3219 | if (r) | |
3220 | goto out_free; | |
3221 | ||
6aa8b732 | 3222 | kvm_chardev_ops.owner = module; |
3d3aab1b CB |
3223 | kvm_vm_fops.owner = module; |
3224 | kvm_vcpu_fops.owner = module; | |
6aa8b732 AK |
3225 | |
3226 | r = misc_register(&kvm_dev); | |
3227 | if (r) { | |
d77c26fc | 3228 | printk(KERN_ERR "kvm: misc device register failed\n"); |
af585b92 | 3229 | goto out_unreg; |
6aa8b732 AK |
3230 | } |
3231 | ||
fb3600cc RW |
3232 | register_syscore_ops(&kvm_syscore_ops); |
3233 | ||
15ad7146 AK |
3234 | kvm_preempt_ops.sched_in = kvm_sched_in; |
3235 | kvm_preempt_ops.sched_out = kvm_sched_out; | |
3236 | ||
4f69b680 H |
3237 | r = kvm_init_debug(); |
3238 | if (r) { | |
3239 | printk(KERN_ERR "kvm: create debugfs files failed\n"); | |
3240 | goto out_undebugfs; | |
3241 | } | |
0ea4ed8e | 3242 | |
c7addb90 | 3243 | return 0; |
6aa8b732 | 3244 | |
4f69b680 H |
3245 | out_undebugfs: |
3246 | unregister_syscore_ops(&kvm_syscore_ops); | |
afc2f792 | 3247 | misc_deregister(&kvm_dev); |
af585b92 GN |
3248 | out_unreg: |
3249 | kvm_async_pf_deinit(); | |
6aa8b732 | 3250 | out_free: |
c16f862d | 3251 | kmem_cache_destroy(kvm_vcpu_cache); |
d2308784 | 3252 | out_free_3: |
6aa8b732 | 3253 | unregister_reboot_notifier(&kvm_reboot_notifier); |
774c47f1 | 3254 | unregister_cpu_notifier(&kvm_cpu_notifier); |
d2308784 | 3255 | out_free_2: |
d2308784 | 3256 | out_free_1: |
e9b11c17 | 3257 | kvm_arch_hardware_unsetup(); |
7f59f492 RR |
3258 | out_free_0a: |
3259 | free_cpumask_var(cpus_hardware_enabled); | |
d2308784 | 3260 | out_free_0: |
a0f155e9 CH |
3261 | kvm_irqfd_exit(); |
3262 | out_irqfd: | |
7dac16c3 AH |
3263 | kvm_arch_exit(); |
3264 | out_fail: | |
6aa8b732 AK |
3265 | return r; |
3266 | } | |
cb498ea2 | 3267 | EXPORT_SYMBOL_GPL(kvm_init); |
6aa8b732 | 3268 | |
cb498ea2 | 3269 | void kvm_exit(void) |
6aa8b732 | 3270 | { |
0ea4ed8e | 3271 | kvm_exit_debug(); |
6aa8b732 | 3272 | misc_deregister(&kvm_dev); |
c16f862d | 3273 | kmem_cache_destroy(kvm_vcpu_cache); |
af585b92 | 3274 | kvm_async_pf_deinit(); |
fb3600cc | 3275 | unregister_syscore_ops(&kvm_syscore_ops); |
6aa8b732 | 3276 | unregister_reboot_notifier(&kvm_reboot_notifier); |
59ae6c6b | 3277 | unregister_cpu_notifier(&kvm_cpu_notifier); |
75b7127c | 3278 | on_each_cpu(hardware_disable_nolock, NULL, 1); |
e9b11c17 | 3279 | kvm_arch_hardware_unsetup(); |
f8c16bba | 3280 | kvm_arch_exit(); |
a0f155e9 | 3281 | kvm_irqfd_exit(); |
7f59f492 | 3282 | free_cpumask_var(cpus_hardware_enabled); |
6aa8b732 | 3283 | } |
cb498ea2 | 3284 | EXPORT_SYMBOL_GPL(kvm_exit); |