]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - virt/kvm/kvm_main.c
KVM: fix sparse warnings: Should it be static?
[mirror_ubuntu-artful-kernel.git] / virt / kvm / kvm_main.c
CommitLineData
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.
8 *
9 * Authors:
10 * Avi Kivity <avi@qumranet.com>
11 * Yaniv Kamay <yaniv@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
17
e2174021 18#include "iodev.h"
6aa8b732 19
edf88417 20#include <linux/kvm_host.h>
6aa8b732
AK
21#include <linux/kvm.h>
22#include <linux/module.h>
23#include <linux/errno.h>
6aa8b732
AK
24#include <linux/percpu.h>
25#include <linux/gfp.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>
59ae6c6b 33#include <linux/sysdev.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>
6aa8b732 44
e495606d 45#include <asm/processor.h>
e495606d
AK
46#include <asm/io.h>
47#include <asm/uaccess.h>
3e021bf5 48#include <asm/pgtable.h>
6aa8b732 49
5f94c174
LV
50#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
51#include "coalesced_mmio.h"
52#endif
53
8a98f664
XZ
54#ifdef KVM_CAP_DEVICE_ASSIGNMENT
55#include <linux/pci.h>
56#include <linux/interrupt.h>
57#include "irq.h"
58#endif
59
6aa8b732
AK
60MODULE_AUTHOR("Qumranet");
61MODULE_LICENSE("GPL");
62
5319c662
SY
63static int msi2intx = 1;
64module_param(msi2intx, bool, 0);
65
e9b11c17
ZX
66DEFINE_SPINLOCK(kvm_lock);
67LIST_HEAD(vm_list);
133de902 68
7f59f492 69static cpumask_var_t cpus_hardware_enabled;
1b6c0168 70
c16f862d
RR
71struct kmem_cache *kvm_vcpu_cache;
72EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
1165f5fe 73
15ad7146
AK
74static __read_mostly struct preempt_ops kvm_preempt_ops;
75
76f7c879 76struct dentry *kvm_debugfs_dir;
6aa8b732 77
bccf2150
AK
78static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
79 unsigned long arg);
80
e8ba5d31 81static bool kvm_rebooting;
4ecac3fd 82
8a98f664
XZ
83#ifdef KVM_CAP_DEVICE_ASSIGNMENT
84static struct kvm_assigned_dev_kernel *kvm_find_assigned_dev(struct list_head *head,
85 int assigned_dev_id)
86{
87 struct list_head *ptr;
88 struct kvm_assigned_dev_kernel *match;
89
90 list_for_each(ptr, head) {
91 match = list_entry(ptr, struct kvm_assigned_dev_kernel, list);
92 if (match->assigned_dev_id == assigned_dev_id)
93 return match;
94 }
95 return NULL;
96}
97
98static void kvm_assigned_dev_interrupt_work_handler(struct work_struct *work)
99{
100 struct kvm_assigned_dev_kernel *assigned_dev;
101
102 assigned_dev = container_of(work, struct kvm_assigned_dev_kernel,
103 interrupt_work);
104
105 /* This is taken to safely inject irq inside the guest. When
106 * the interrupt injection (or the ioapic code) uses a
107 * finer-grained lock, update this
108 */
109 mutex_lock(&assigned_dev->kvm->lock);
79950e10
SY
110 kvm_set_irq(assigned_dev->kvm, assigned_dev->irq_source_id,
111 assigned_dev->guest_irq, 1);
112
113 if (assigned_dev->irq_requested_type & KVM_ASSIGNED_DEV_GUEST_MSI) {
6b9cc7fd 114 enable_irq(assigned_dev->host_irq);
defaf158 115 assigned_dev->host_irq_disabled = false;
6b9cc7fd 116 }
8a98f664 117 mutex_unlock(&assigned_dev->kvm->lock);
8a98f664
XZ
118}
119
8a98f664
XZ
120static irqreturn_t kvm_assigned_dev_intr(int irq, void *dev_id)
121{
122 struct kvm_assigned_dev_kernel *assigned_dev =
123 (struct kvm_assigned_dev_kernel *) dev_id;
124
8a98f664 125 schedule_work(&assigned_dev->interrupt_work);
defaf158 126
8a98f664 127 disable_irq_nosync(irq);
defaf158
MM
128 assigned_dev->host_irq_disabled = true;
129
8a98f664
XZ
130 return IRQ_HANDLED;
131}
132
133/* Ack the irq line for an assigned device */
134static void kvm_assigned_dev_ack_irq(struct kvm_irq_ack_notifier *kian)
135{
136 struct kvm_assigned_dev_kernel *dev;
137
138 if (kian->gsi == -1)
139 return;
140
141 dev = container_of(kian, struct kvm_assigned_dev_kernel,
142 ack_notifier);
defaf158 143
5550af4d 144 kvm_set_irq(dev->kvm, dev->irq_source_id, dev->guest_irq, 0);
defaf158
MM
145
146 /* The guest irq may be shared so this ack may be
147 * from another device.
148 */
149 if (dev->host_irq_disabled) {
150 enable_irq(dev->host_irq);
151 dev->host_irq_disabled = false;
152 }
8a98f664
XZ
153}
154
ba4cef31 155/* The function implicit hold kvm->lock mutex due to cancel_work_sync() */
4a643be8
MM
156static void kvm_free_assigned_irq(struct kvm *kvm,
157 struct kvm_assigned_dev_kernel *assigned_dev)
8a98f664 158{
4a643be8
MM
159 if (!irqchip_in_kernel(kvm))
160 return;
8a98f664 161
e19e30ef 162 kvm_unregister_irq_ack_notifier(&assigned_dev->ack_notifier);
f29b2673
MM
163
164 if (assigned_dev->irq_source_id != -1)
165 kvm_free_irq_source_id(kvm, assigned_dev->irq_source_id);
166 assigned_dev->irq_source_id = -1;
8a98f664 167
4a643be8
MM
168 if (!assigned_dev->irq_requested_type)
169 return;
170
ba4cef31
SY
171 /*
172 * In kvm_free_device_irq, cancel_work_sync return true if:
173 * 1. work is scheduled, and then cancelled.
174 * 2. work callback is executed.
175 *
176 * The first one ensured that the irq is disabled and no more events
177 * would happen. But for the second one, the irq may be enabled (e.g.
178 * for MSI). So we disable irq here to prevent further events.
179 *
180 * Notice this maybe result in nested disable if the interrupt type is
181 * INTx, but it's OK for we are going to free it.
182 *
183 * If this function is a part of VM destroy, please ensure that till
184 * now, the kvm state is still legal for probably we also have to wait
185 * interrupt_work done.
186 */
187 disable_irq_nosync(assigned_dev->host_irq);
188 cancel_work_sync(&assigned_dev->interrupt_work);
8a98f664 189
4a643be8
MM
190 free_irq(assigned_dev->host_irq, (void *)assigned_dev);
191
192 if (assigned_dev->irq_requested_type & KVM_ASSIGNED_DEV_HOST_MSI)
193 pci_disable_msi(assigned_dev->dev);
194
195 assigned_dev->irq_requested_type = 0;
196}
197
198
199static void kvm_free_assigned_device(struct kvm *kvm,
200 struct kvm_assigned_dev_kernel
201 *assigned_dev)
202{
203 kvm_free_assigned_irq(kvm, assigned_dev);
204
6eb55818
SY
205 pci_reset_function(assigned_dev->dev);
206
8a98f664
XZ
207 pci_release_regions(assigned_dev->dev);
208 pci_disable_device(assigned_dev->dev);
209 pci_dev_put(assigned_dev->dev);
210
211 list_del(&assigned_dev->list);
212 kfree(assigned_dev);
213}
214
215void kvm_free_all_assigned_devices(struct kvm *kvm)
216{
217 struct list_head *ptr, *ptr2;
218 struct kvm_assigned_dev_kernel *assigned_dev;
219
220 list_for_each_safe(ptr, ptr2, &kvm->arch.assigned_dev_head) {
221 assigned_dev = list_entry(ptr,
222 struct kvm_assigned_dev_kernel,
223 list);
224
225 kvm_free_assigned_device(kvm, assigned_dev);
226 }
227}
228
00e3ed39
SY
229static int assigned_device_update_intx(struct kvm *kvm,
230 struct kvm_assigned_dev_kernel *adev,
231 struct kvm_assigned_irq *airq)
232{
fbac7818
SY
233 adev->guest_irq = airq->guest_irq;
234 adev->ack_notifier.gsi = airq->guest_irq;
235
236 if (adev->irq_requested_type & KVM_ASSIGNED_DEV_HOST_INTX)
00e3ed39 237 return 0;
00e3ed39
SY
238
239 if (irqchip_in_kernel(kvm)) {
5319c662 240 if (!msi2intx &&
d7cff1c3
SY
241 (adev->irq_requested_type & KVM_ASSIGNED_DEV_HOST_MSI)) {
242 free_irq(adev->host_irq, (void *)adev);
6b9cc7fd
SY
243 pci_disable_msi(adev->dev);
244 }
245
00e3ed39
SY
246 if (!capable(CAP_SYS_RAWIO))
247 return -EPERM;
248
249 if (airq->host_irq)
250 adev->host_irq = airq->host_irq;
251 else
252 adev->host_irq = adev->dev->irq;
00e3ed39
SY
253
254 /* Even though this is PCI, we don't want to use shared
255 * interrupts. Sharing host devices with guest-assigned devices
256 * on the same interrupt line is not a happy situation: there
257 * are going to be long delays in accepting, acking, etc.
258 */
259 if (request_irq(adev->host_irq, kvm_assigned_dev_intr,
260 0, "kvm_assigned_intx_device", (void *)adev))
261 return -EIO;
262 }
263
4f906c19
SY
264 adev->irq_requested_type = KVM_ASSIGNED_DEV_GUEST_INTX |
265 KVM_ASSIGNED_DEV_HOST_INTX;
00e3ed39
SY
266 return 0;
267}
268
6b9cc7fd
SY
269#ifdef CONFIG_X86
270static int assigned_device_update_msi(struct kvm *kvm,
271 struct kvm_assigned_dev_kernel *adev,
272 struct kvm_assigned_irq *airq)
273{
274 int r;
275
79950e10 276 adev->guest_irq = airq->guest_irq;
5319c662
SY
277 if (airq->flags & KVM_DEV_IRQ_ASSIGN_ENABLE_MSI) {
278 /* x86 don't care upper address of guest msi message addr */
279 adev->irq_requested_type |= KVM_ASSIGNED_DEV_GUEST_MSI;
280 adev->irq_requested_type &= ~KVM_ASSIGNED_DEV_GUEST_INTX;
5319c662
SY
281 adev->ack_notifier.gsi = -1;
282 } else if (msi2intx) {
283 adev->irq_requested_type |= KVM_ASSIGNED_DEV_GUEST_INTX;
284 adev->irq_requested_type &= ~KVM_ASSIGNED_DEV_GUEST_MSI;
5319c662 285 adev->ack_notifier.gsi = airq->guest_irq;
17071fe7
SY
286 } else {
287 /*
288 * Guest require to disable device MSI, we disable MSI and
289 * re-enable INTx by default again. Notice it's only for
290 * non-msi2intx.
291 */
292 assigned_device_update_intx(kvm, adev, airq);
293 return 0;
5319c662 294 }
6b9cc7fd
SY
295
296 if (adev->irq_requested_type & KVM_ASSIGNED_DEV_HOST_MSI)
297 return 0;
298
299 if (irqchip_in_kernel(kvm)) {
5319c662
SY
300 if (!msi2intx) {
301 if (adev->irq_requested_type &
302 KVM_ASSIGNED_DEV_HOST_INTX)
303 free_irq(adev->host_irq, (void *)adev);
304
305 r = pci_enable_msi(adev->dev);
306 if (r)
307 return r;
308 }
6b9cc7fd
SY
309
310 adev->host_irq = adev->dev->irq;
311 if (request_irq(adev->host_irq, kvm_assigned_dev_intr, 0,
312 "kvm_assigned_msi_device", (void *)adev))
313 return -EIO;
314 }
315
5319c662
SY
316 if (!msi2intx)
317 adev->irq_requested_type = KVM_ASSIGNED_DEV_GUEST_MSI;
318
319 adev->irq_requested_type |= KVM_ASSIGNED_DEV_HOST_MSI;
6b9cc7fd
SY
320 return 0;
321}
322#endif
323
8a98f664
XZ
324static int kvm_vm_ioctl_assign_irq(struct kvm *kvm,
325 struct kvm_assigned_irq
326 *assigned_irq)
327{
328 int r = 0;
329 struct kvm_assigned_dev_kernel *match;
17071fe7 330 u32 current_flags = 0, changed_flags;
8a98f664
XZ
331
332 mutex_lock(&kvm->lock);
333
334 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
335 assigned_irq->assigned_dev_id);
336 if (!match) {
337 mutex_unlock(&kvm->lock);
338 return -EINVAL;
339 }
340
4f906c19 341 if (!match->irq_requested_type) {
342ffb93
SY
342 INIT_WORK(&match->interrupt_work,
343 kvm_assigned_dev_interrupt_work_handler);
344 if (irqchip_in_kernel(kvm)) {
345 /* Register ack nofitier */
346 match->ack_notifier.gsi = -1;
347 match->ack_notifier.irq_acked =
348 kvm_assigned_dev_ack_irq;
349 kvm_register_irq_ack_notifier(kvm,
350 &match->ack_notifier);
351
352 /* Request IRQ source ID */
353 r = kvm_request_irq_source_id(kvm);
354 if (r < 0)
355 goto out_release;
356 else
357 match->irq_source_id = r;
5319c662
SY
358
359#ifdef CONFIG_X86
360 /* Determine host device irq type, we can know the
361 * result from dev->msi_enabled */
362 if (msi2intx)
363 pci_enable_msi(match->dev);
364#endif
342ffb93 365 }
8a98f664
XZ
366 }
367
17071fe7
SY
368 if ((match->irq_requested_type & KVM_ASSIGNED_DEV_HOST_MSI) &&
369 (match->irq_requested_type & KVM_ASSIGNED_DEV_GUEST_MSI))
370 current_flags |= KVM_DEV_IRQ_ASSIGN_ENABLE_MSI;
371
372 changed_flags = assigned_irq->flags ^ current_flags;
373
374 if ((changed_flags & KVM_DEV_IRQ_ASSIGN_MSI_ACTION) ||
5319c662 375 (msi2intx && match->dev->msi_enabled)) {
6b9cc7fd
SY
376#ifdef CONFIG_X86
377 r = assigned_device_update_msi(kvm, match, assigned_irq);
378 if (r) {
379 printk(KERN_WARNING "kvm: failed to enable "
380 "MSI device!\n");
381 goto out_release;
382 }
383#else
384 r = -ENOTTY;
385#endif
386 } else if (assigned_irq->host_irq == 0 && match->dev->irq == 0) {
387 /* Host device IRQ 0 means don't support INTx */
5319c662
SY
388 if (!msi2intx) {
389 printk(KERN_WARNING
390 "kvm: wait device to enable MSI!\n");
391 r = 0;
392 } else {
393 printk(KERN_WARNING
394 "kvm: failed to enable MSI device!\n");
395 r = -ENOTTY;
396 goto out_release;
397 }
6b9cc7fd
SY
398 } else {
399 /* Non-sharing INTx mode */
400 r = assigned_device_update_intx(kvm, match, assigned_irq);
401 if (r) {
402 printk(KERN_WARNING "kvm: failed to enable "
403 "INTx device!\n");
404 goto out_release;
405 }
406 }
8a98f664 407
8a98f664
XZ
408 mutex_unlock(&kvm->lock);
409 return r;
410out_release:
411 mutex_unlock(&kvm->lock);
412 kvm_free_assigned_device(kvm, match);
413 return r;
414}
415
416static int kvm_vm_ioctl_assign_device(struct kvm *kvm,
417 struct kvm_assigned_pci_dev *assigned_dev)
418{
419 int r = 0;
420 struct kvm_assigned_dev_kernel *match;
421 struct pci_dev *dev;
422
682edb4c 423 down_read(&kvm->slots_lock);
8a98f664
XZ
424 mutex_lock(&kvm->lock);
425
426 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
427 assigned_dev->assigned_dev_id);
428 if (match) {
429 /* device already assigned */
430 r = -EINVAL;
431 goto out;
432 }
433
434 match = kzalloc(sizeof(struct kvm_assigned_dev_kernel), GFP_KERNEL);
435 if (match == NULL) {
436 printk(KERN_INFO "%s: Couldn't allocate memory\n",
437 __func__);
438 r = -ENOMEM;
439 goto out;
440 }
441 dev = pci_get_bus_and_slot(assigned_dev->busnr,
442 assigned_dev->devfn);
443 if (!dev) {
444 printk(KERN_INFO "%s: host device not found\n", __func__);
445 r = -EINVAL;
446 goto out_free;
447 }
448 if (pci_enable_device(dev)) {
449 printk(KERN_INFO "%s: Could not enable PCI device\n", __func__);
450 r = -EBUSY;
451 goto out_put;
452 }
453 r = pci_request_regions(dev, "kvm_assigned_device");
454 if (r) {
455 printk(KERN_INFO "%s: Could not get access to device regions\n",
456 __func__);
457 goto out_disable;
458 }
6eb55818
SY
459
460 pci_reset_function(dev);
461
8a98f664
XZ
462 match->assigned_dev_id = assigned_dev->assigned_dev_id;
463 match->host_busnr = assigned_dev->busnr;
464 match->host_devfn = assigned_dev->devfn;
b653574a 465 match->flags = assigned_dev->flags;
8a98f664 466 match->dev = dev;
f29b2673 467 match->irq_source_id = -1;
8a98f664
XZ
468 match->kvm = kvm;
469
470 list_add(&match->list, &kvm->arch.assigned_dev_head);
471
472 if (assigned_dev->flags & KVM_DEV_ASSIGN_ENABLE_IOMMU) {
19de40a8 473 if (!kvm->arch.iommu_domain) {
260782bc
WH
474 r = kvm_iommu_map_guest(kvm);
475 if (r)
476 goto out_list_del;
477 }
478 r = kvm_assign_device(kvm, match);
8a98f664
XZ
479 if (r)
480 goto out_list_del;
481 }
482
483out:
484 mutex_unlock(&kvm->lock);
682edb4c 485 up_read(&kvm->slots_lock);
8a98f664
XZ
486 return r;
487out_list_del:
488 list_del(&match->list);
489 pci_release_regions(dev);
490out_disable:
491 pci_disable_device(dev);
492out_put:
493 pci_dev_put(dev);
494out_free:
495 kfree(match);
496 mutex_unlock(&kvm->lock);
682edb4c 497 up_read(&kvm->slots_lock);
8a98f664
XZ
498 return r;
499}
500#endif
501
0a920356
WH
502#ifdef KVM_CAP_DEVICE_DEASSIGNMENT
503static int kvm_vm_ioctl_deassign_device(struct kvm *kvm,
504 struct kvm_assigned_pci_dev *assigned_dev)
505{
506 int r = 0;
507 struct kvm_assigned_dev_kernel *match;
508
509 mutex_lock(&kvm->lock);
510
511 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
512 assigned_dev->assigned_dev_id);
513 if (!match) {
514 printk(KERN_INFO "%s: device hasn't been assigned before, "
515 "so cannot be deassigned\n", __func__);
516 r = -EINVAL;
517 goto out;
518 }
519
4a906e49 520 if (match->flags & KVM_DEV_ASSIGN_ENABLE_IOMMU)
0a920356
WH
521 kvm_deassign_device(kvm, match);
522
523 kvm_free_assigned_device(kvm, match);
524
525out:
526 mutex_unlock(&kvm->lock);
527 return r;
528}
529#endif
530
5aacf0ca
JM
531static inline int valid_vcpu(int n)
532{
533 return likely(n >= 0 && n < KVM_MAX_VCPUS);
534}
535
c77fb9dc 536inline int kvm_is_mmio_pfn(pfn_t pfn)
cbff90a7 537{
fc5659c8
JR
538 if (pfn_valid(pfn)) {
539 struct page *page = compound_head(pfn_to_page(pfn));
540 return PageReserved(page);
541 }
cbff90a7
BAY
542
543 return true;
544}
545
bccf2150
AK
546/*
547 * Switches to specified vcpu, until a matching vcpu_put()
548 */
313a3dc7 549void vcpu_load(struct kvm_vcpu *vcpu)
6aa8b732 550{
15ad7146
AK
551 int cpu;
552
bccf2150 553 mutex_lock(&vcpu->mutex);
15ad7146
AK
554 cpu = get_cpu();
555 preempt_notifier_register(&vcpu->preempt_notifier);
313a3dc7 556 kvm_arch_vcpu_load(vcpu, cpu);
15ad7146 557 put_cpu();
6aa8b732
AK
558}
559
313a3dc7 560void vcpu_put(struct kvm_vcpu *vcpu)
6aa8b732 561{
15ad7146 562 preempt_disable();
313a3dc7 563 kvm_arch_vcpu_put(vcpu);
15ad7146
AK
564 preempt_notifier_unregister(&vcpu->preempt_notifier);
565 preempt_enable();
6aa8b732
AK
566 mutex_unlock(&vcpu->mutex);
567}
568
d9e368d6
AK
569static void ack_flush(void *_completed)
570{
d9e368d6
AK
571}
572
49846896 573static bool make_all_cpus_request(struct kvm *kvm, unsigned int req)
d9e368d6 574{
597a5f55 575 int i, cpu, me;
6ef7a1bc
RR
576 cpumask_var_t cpus;
577 bool called = true;
d9e368d6 578 struct kvm_vcpu *vcpu;
d9e368d6 579
6ef7a1bc
RR
580 if (alloc_cpumask_var(&cpus, GFP_ATOMIC))
581 cpumask_clear(cpus);
582
597a5f55 583 me = get_cpu();
fb3f0f51
RR
584 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
585 vcpu = kvm->vcpus[i];
586 if (!vcpu)
587 continue;
49846896 588 if (test_and_set_bit(req, &vcpu->requests))
d9e368d6
AK
589 continue;
590 cpu = vcpu->cpu;
6ef7a1bc
RR
591 if (cpus != NULL && cpu != -1 && cpu != me)
592 cpumask_set_cpu(cpu, cpus);
49846896 593 }
6ef7a1bc
RR
594 if (unlikely(cpus == NULL))
595 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
596 else if (!cpumask_empty(cpus))
597 smp_call_function_many(cpus, ack_flush, NULL, 1);
598 else
599 called = false;
597a5f55 600 put_cpu();
6ef7a1bc 601 free_cpumask_var(cpus);
49846896 602 return called;
d9e368d6
AK
603}
604
49846896 605void kvm_flush_remote_tlbs(struct kvm *kvm)
2e53d63a 606{
49846896
RR
607 if (make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
608 ++kvm->stat.remote_tlb_flush;
2e53d63a
MT
609}
610
49846896
RR
611void kvm_reload_remote_mmus(struct kvm *kvm)
612{
613 make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
614}
2e53d63a 615
fb3f0f51
RR
616int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
617{
618 struct page *page;
619 int r;
620
621 mutex_init(&vcpu->mutex);
622 vcpu->cpu = -1;
fb3f0f51
RR
623 vcpu->kvm = kvm;
624 vcpu->vcpu_id = id;
b6958ce4 625 init_waitqueue_head(&vcpu->wq);
fb3f0f51
RR
626
627 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
628 if (!page) {
629 r = -ENOMEM;
630 goto fail;
631 }
632 vcpu->run = page_address(page);
633
e9b11c17 634 r = kvm_arch_vcpu_init(vcpu);
fb3f0f51 635 if (r < 0)
e9b11c17 636 goto fail_free_run;
fb3f0f51
RR
637 return 0;
638
fb3f0f51
RR
639fail_free_run:
640 free_page((unsigned long)vcpu->run);
641fail:
76fafa5e 642 return r;
fb3f0f51
RR
643}
644EXPORT_SYMBOL_GPL(kvm_vcpu_init);
645
646void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
647{
e9b11c17 648 kvm_arch_vcpu_uninit(vcpu);
fb3f0f51
RR
649 free_page((unsigned long)vcpu->run);
650}
651EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
652
e930bffe
AA
653#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
654static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
655{
656 return container_of(mn, struct kvm, mmu_notifier);
657}
658
659static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
660 struct mm_struct *mm,
661 unsigned long address)
662{
663 struct kvm *kvm = mmu_notifier_to_kvm(mn);
664 int need_tlb_flush;
665
666 /*
667 * When ->invalidate_page runs, the linux pte has been zapped
668 * already but the page is still allocated until
669 * ->invalidate_page returns. So if we increase the sequence
670 * here the kvm page fault will notice if the spte can't be
671 * established because the page is going to be freed. If
672 * instead the kvm page fault establishes the spte before
673 * ->invalidate_page runs, kvm_unmap_hva will release it
674 * before returning.
675 *
676 * The sequence increase only need to be seen at spin_unlock
677 * time, and not at spin_lock time.
678 *
679 * Increasing the sequence after the spin_unlock would be
680 * unsafe because the kvm page fault could then establish the
681 * pte after kvm_unmap_hva returned, without noticing the page
682 * is going to be freed.
683 */
684 spin_lock(&kvm->mmu_lock);
685 kvm->mmu_notifier_seq++;
686 need_tlb_flush = kvm_unmap_hva(kvm, address);
687 spin_unlock(&kvm->mmu_lock);
688
689 /* we've to flush the tlb before the pages can be freed */
690 if (need_tlb_flush)
691 kvm_flush_remote_tlbs(kvm);
692
693}
694
695static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
696 struct mm_struct *mm,
697 unsigned long start,
698 unsigned long end)
699{
700 struct kvm *kvm = mmu_notifier_to_kvm(mn);
701 int need_tlb_flush = 0;
702
703 spin_lock(&kvm->mmu_lock);
704 /*
705 * The count increase must become visible at unlock time as no
706 * spte can be established without taking the mmu_lock and
707 * count is also read inside the mmu_lock critical section.
708 */
709 kvm->mmu_notifier_count++;
710 for (; start < end; start += PAGE_SIZE)
711 need_tlb_flush |= kvm_unmap_hva(kvm, start);
712 spin_unlock(&kvm->mmu_lock);
713
714 /* we've to flush the tlb before the pages can be freed */
715 if (need_tlb_flush)
716 kvm_flush_remote_tlbs(kvm);
717}
718
719static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
720 struct mm_struct *mm,
721 unsigned long start,
722 unsigned long end)
723{
724 struct kvm *kvm = mmu_notifier_to_kvm(mn);
725
726 spin_lock(&kvm->mmu_lock);
727 /*
728 * This sequence increase will notify the kvm page fault that
729 * the page that is going to be mapped in the spte could have
730 * been freed.
731 */
732 kvm->mmu_notifier_seq++;
733 /*
734 * The above sequence increase must be visible before the
735 * below count decrease but both values are read by the kvm
736 * page fault under mmu_lock spinlock so we don't need to add
737 * a smb_wmb() here in between the two.
738 */
739 kvm->mmu_notifier_count--;
740 spin_unlock(&kvm->mmu_lock);
741
742 BUG_ON(kvm->mmu_notifier_count < 0);
743}
744
745static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
746 struct mm_struct *mm,
747 unsigned long address)
748{
749 struct kvm *kvm = mmu_notifier_to_kvm(mn);
750 int young;
751
752 spin_lock(&kvm->mmu_lock);
753 young = kvm_age_hva(kvm, address);
754 spin_unlock(&kvm->mmu_lock);
755
756 if (young)
757 kvm_flush_remote_tlbs(kvm);
758
759 return young;
760}
761
85db06e5
MT
762static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
763 struct mm_struct *mm)
764{
765 struct kvm *kvm = mmu_notifier_to_kvm(mn);
766 kvm_arch_flush_shadow(kvm);
767}
768
e930bffe
AA
769static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
770 .invalidate_page = kvm_mmu_notifier_invalidate_page,
771 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
772 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
773 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
85db06e5 774 .release = kvm_mmu_notifier_release,
e930bffe
AA
775};
776#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
777
f17abe9a 778static struct kvm *kvm_create_vm(void)
6aa8b732 779{
d19a9cd2 780 struct kvm *kvm = kvm_arch_create_vm();
5f94c174
LV
781#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
782 struct page *page;
783#endif
6aa8b732 784
d19a9cd2
ZX
785 if (IS_ERR(kvm))
786 goto out;
75858a84 787#ifdef CONFIG_HAVE_KVM_IRQCHIP
399ec807 788 INIT_LIST_HEAD(&kvm->irq_routing);
75858a84
AK
789 INIT_HLIST_HEAD(&kvm->mask_notifier_list);
790#endif
6aa8b732 791
5f94c174
LV
792#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
793 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
794 if (!page) {
795 kfree(kvm);
796 return ERR_PTR(-ENOMEM);
797 }
798 kvm->coalesced_mmio_ring =
799 (struct kvm_coalesced_mmio_ring *)page_address(page);
800#endif
801
e930bffe
AA
802#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
803 {
804 int err;
805 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
806 err = mmu_notifier_register(&kvm->mmu_notifier, current->mm);
807 if (err) {
808#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
809 put_page(page);
810#endif
811 kfree(kvm);
812 return ERR_PTR(err);
813 }
814 }
815#endif
816
6d4e4c4f
AK
817 kvm->mm = current->mm;
818 atomic_inc(&kvm->mm->mm_count);
aaee2c94 819 spin_lock_init(&kvm->mmu_lock);
74906345 820 kvm_io_bus_init(&kvm->pio_bus);
11ec2804 821 mutex_init(&kvm->lock);
2eeb2e94 822 kvm_io_bus_init(&kvm->mmio_bus);
72dc67a6 823 init_rwsem(&kvm->slots_lock);
d39f13b0 824 atomic_set(&kvm->users_count, 1);
5e58cfe4
RR
825 spin_lock(&kvm_lock);
826 list_add(&kvm->vm_list, &vm_list);
827 spin_unlock(&kvm_lock);
5f94c174
LV
828#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
829 kvm_coalesced_mmio_init(kvm);
830#endif
d19a9cd2 831out:
f17abe9a
AK
832 return kvm;
833}
834
6aa8b732
AK
835/*
836 * Free any memory in @free but not in @dont.
837 */
838static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
839 struct kvm_memory_slot *dont)
840{
290fc38d
IE
841 if (!dont || free->rmap != dont->rmap)
842 vfree(free->rmap);
6aa8b732
AK
843
844 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
845 vfree(free->dirty_bitmap);
846
05da4558
MT
847 if (!dont || free->lpage_info != dont->lpage_info)
848 vfree(free->lpage_info);
849
6aa8b732 850 free->npages = 0;
8b6d44c7 851 free->dirty_bitmap = NULL;
8d4e1288 852 free->rmap = NULL;
05da4558 853 free->lpage_info = NULL;
6aa8b732
AK
854}
855
d19a9cd2 856void kvm_free_physmem(struct kvm *kvm)
6aa8b732
AK
857{
858 int i;
859
860 for (i = 0; i < kvm->nmemslots; ++i)
8b6d44c7 861 kvm_free_physmem_slot(&kvm->memslots[i], NULL);
6aa8b732
AK
862}
863
f17abe9a
AK
864static void kvm_destroy_vm(struct kvm *kvm)
865{
6d4e4c4f
AK
866 struct mm_struct *mm = kvm->mm;
867
ad8ba2cd 868 kvm_arch_sync_events(kvm);
133de902
AK
869 spin_lock(&kvm_lock);
870 list_del(&kvm->vm_list);
871 spin_unlock(&kvm_lock);
399ec807 872 kvm_free_irq_routing(kvm);
74906345 873 kvm_io_bus_destroy(&kvm->pio_bus);
2eeb2e94 874 kvm_io_bus_destroy(&kvm->mmio_bus);
5f94c174
LV
875#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
876 if (kvm->coalesced_mmio_ring != NULL)
877 free_page((unsigned long)kvm->coalesced_mmio_ring);
e930bffe
AA
878#endif
879#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
880 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
5f94c174 881#endif
d19a9cd2 882 kvm_arch_destroy_vm(kvm);
6d4e4c4f 883 mmdrop(mm);
f17abe9a
AK
884}
885
d39f13b0
IE
886void kvm_get_kvm(struct kvm *kvm)
887{
888 atomic_inc(&kvm->users_count);
889}
890EXPORT_SYMBOL_GPL(kvm_get_kvm);
891
892void kvm_put_kvm(struct kvm *kvm)
893{
894 if (atomic_dec_and_test(&kvm->users_count))
895 kvm_destroy_vm(kvm);
896}
897EXPORT_SYMBOL_GPL(kvm_put_kvm);
898
899
f17abe9a
AK
900static int kvm_vm_release(struct inode *inode, struct file *filp)
901{
902 struct kvm *kvm = filp->private_data;
903
d39f13b0 904 kvm_put_kvm(kvm);
6aa8b732
AK
905 return 0;
906}
907
6aa8b732
AK
908/*
909 * Allocate some memory and give it an address in the guest physical address
910 * space.
911 *
912 * Discontiguous memory is allowed, mostly for framebuffers.
f78e0e2e 913 *
10589a46 914 * Must be called holding mmap_sem for write.
6aa8b732 915 */
f78e0e2e
SY
916int __kvm_set_memory_region(struct kvm *kvm,
917 struct kvm_userspace_memory_region *mem,
918 int user_alloc)
6aa8b732
AK
919{
920 int r;
921 gfn_t base_gfn;
922 unsigned long npages;
923 unsigned long i;
924 struct kvm_memory_slot *memslot;
925 struct kvm_memory_slot old, new;
6aa8b732
AK
926
927 r = -EINVAL;
928 /* General sanity checks */
929 if (mem->memory_size & (PAGE_SIZE - 1))
930 goto out;
931 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
932 goto out;
e7cacd40 933 if (user_alloc && (mem->userspace_addr & (PAGE_SIZE - 1)))
78749809 934 goto out;
e0d62c7f 935 if (mem->slot >= KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
6aa8b732
AK
936 goto out;
937 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
938 goto out;
939
940 memslot = &kvm->memslots[mem->slot];
941 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
942 npages = mem->memory_size >> PAGE_SHIFT;
943
944 if (!npages)
945 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
946
6aa8b732
AK
947 new = old = *memslot;
948
949 new.base_gfn = base_gfn;
950 new.npages = npages;
951 new.flags = mem->flags;
952
953 /* Disallow changing a memory slot's size. */
954 r = -EINVAL;
955 if (npages && old.npages && npages != old.npages)
f78e0e2e 956 goto out_free;
6aa8b732
AK
957
958 /* Check for overlaps */
959 r = -EEXIST;
960 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
961 struct kvm_memory_slot *s = &kvm->memslots[i];
962
963 if (s == memslot)
964 continue;
965 if (!((base_gfn + npages <= s->base_gfn) ||
966 (base_gfn >= s->base_gfn + s->npages)))
f78e0e2e 967 goto out_free;
6aa8b732 968 }
6aa8b732 969
6aa8b732
AK
970 /* Free page dirty bitmap if unneeded */
971 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
8b6d44c7 972 new.dirty_bitmap = NULL;
6aa8b732
AK
973
974 r = -ENOMEM;
975
976 /* Allocate if a slot is being created */
eff0114a 977#ifndef CONFIG_S390
8d4e1288 978 if (npages && !new.rmap) {
d77c26fc 979 new.rmap = vmalloc(npages * sizeof(struct page *));
290fc38d
IE
980
981 if (!new.rmap)
f78e0e2e 982 goto out_free;
290fc38d 983
290fc38d 984 memset(new.rmap, 0, npages * sizeof(*new.rmap));
8d4e1288 985
80b14b5b 986 new.user_alloc = user_alloc;
604b38ac
AA
987 /*
988 * hva_to_rmmap() serialzies with the mmu_lock and to be
989 * safe it has to ignore memslots with !user_alloc &&
990 * !userspace_addr.
991 */
992 if (user_alloc)
993 new.userspace_addr = mem->userspace_addr;
994 else
995 new.userspace_addr = 0;
6aa8b732 996 }
05da4558
MT
997 if (npages && !new.lpage_info) {
998 int largepages = npages / KVM_PAGES_PER_HPAGE;
999 if (npages % KVM_PAGES_PER_HPAGE)
1000 largepages++;
1001 if (base_gfn % KVM_PAGES_PER_HPAGE)
1002 largepages++;
1003
1004 new.lpage_info = vmalloc(largepages * sizeof(*new.lpage_info));
1005
1006 if (!new.lpage_info)
1007 goto out_free;
1008
1009 memset(new.lpage_info, 0, largepages * sizeof(*new.lpage_info));
1010
1011 if (base_gfn % KVM_PAGES_PER_HPAGE)
1012 new.lpage_info[0].write_count = 1;
1013 if ((base_gfn+npages) % KVM_PAGES_PER_HPAGE)
1014 new.lpage_info[largepages-1].write_count = 1;
1015 }
6aa8b732
AK
1016
1017 /* Allocate page dirty bitmap if needed */
1018 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
1019 unsigned dirty_bytes = ALIGN(npages, BITS_PER_LONG) / 8;
1020
1021 new.dirty_bitmap = vmalloc(dirty_bytes);
1022 if (!new.dirty_bitmap)
f78e0e2e 1023 goto out_free;
6aa8b732
AK
1024 memset(new.dirty_bitmap, 0, dirty_bytes);
1025 }
eff0114a 1026#endif /* not defined CONFIG_S390 */
6aa8b732 1027
34d4cb8f
MT
1028 if (!npages)
1029 kvm_arch_flush_shadow(kvm);
1030
604b38ac
AA
1031 spin_lock(&kvm->mmu_lock);
1032 if (mem->slot >= kvm->nmemslots)
1033 kvm->nmemslots = mem->slot + 1;
1034
3ad82a7e 1035 *memslot = new;
604b38ac 1036 spin_unlock(&kvm->mmu_lock);
3ad82a7e 1037
0de10343
ZX
1038 r = kvm_arch_set_memory_region(kvm, mem, old, user_alloc);
1039 if (r) {
604b38ac 1040 spin_lock(&kvm->mmu_lock);
0de10343 1041 *memslot = old;
604b38ac 1042 spin_unlock(&kvm->mmu_lock);
0de10343 1043 goto out_free;
82ce2c96
IE
1044 }
1045
6f897248
GC
1046 kvm_free_physmem_slot(&old, npages ? &new : NULL);
1047 /* Slot deletion case: we have to update the current slot */
1048 if (!npages)
1049 *memslot = old;
8a98f664 1050#ifdef CONFIG_DMAR
62c476c7
BAY
1051 /* map the pages in iommu page table */
1052 r = kvm_iommu_map_pages(kvm, base_gfn, npages);
1053 if (r)
1054 goto out;
8a98f664 1055#endif
6aa8b732
AK
1056 return 0;
1057
f78e0e2e 1058out_free:
6aa8b732
AK
1059 kvm_free_physmem_slot(&new, &old);
1060out:
1061 return r;
210c7c4d
IE
1062
1063}
f78e0e2e
SY
1064EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
1065
1066int kvm_set_memory_region(struct kvm *kvm,
1067 struct kvm_userspace_memory_region *mem,
1068 int user_alloc)
1069{
1070 int r;
1071
72dc67a6 1072 down_write(&kvm->slots_lock);
f78e0e2e 1073 r = __kvm_set_memory_region(kvm, mem, user_alloc);
72dc67a6 1074 up_write(&kvm->slots_lock);
f78e0e2e
SY
1075 return r;
1076}
210c7c4d
IE
1077EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1078
1fe779f8
CO
1079int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1080 struct
1081 kvm_userspace_memory_region *mem,
1082 int user_alloc)
210c7c4d 1083{
e0d62c7f
IE
1084 if (mem->slot >= KVM_MEMORY_SLOTS)
1085 return -EINVAL;
210c7c4d 1086 return kvm_set_memory_region(kvm, mem, user_alloc);
6aa8b732
AK
1087}
1088
5bb064dc
ZX
1089int kvm_get_dirty_log(struct kvm *kvm,
1090 struct kvm_dirty_log *log, int *is_dirty)
6aa8b732
AK
1091{
1092 struct kvm_memory_slot *memslot;
1093 int r, i;
1094 int n;
1095 unsigned long any = 0;
1096
6aa8b732
AK
1097 r = -EINVAL;
1098 if (log->slot >= KVM_MEMORY_SLOTS)
1099 goto out;
1100
1101 memslot = &kvm->memslots[log->slot];
1102 r = -ENOENT;
1103 if (!memslot->dirty_bitmap)
1104 goto out;
1105
cd1a4a98 1106 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
6aa8b732 1107
cd1a4a98 1108 for (i = 0; !any && i < n/sizeof(long); ++i)
6aa8b732
AK
1109 any = memslot->dirty_bitmap[i];
1110
1111 r = -EFAULT;
1112 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
1113 goto out;
1114
5bb064dc
ZX
1115 if (any)
1116 *is_dirty = 1;
6aa8b732
AK
1117
1118 r = 0;
6aa8b732 1119out:
6aa8b732
AK
1120 return r;
1121}
1122
cea7bb21
IE
1123int is_error_page(struct page *page)
1124{
1125 return page == bad_page;
1126}
1127EXPORT_SYMBOL_GPL(is_error_page);
1128
35149e21
AL
1129int is_error_pfn(pfn_t pfn)
1130{
1131 return pfn == bad_pfn;
1132}
1133EXPORT_SYMBOL_GPL(is_error_pfn);
1134
f9d46eb0
IE
1135static inline unsigned long bad_hva(void)
1136{
1137 return PAGE_OFFSET;
1138}
1139
1140int kvm_is_error_hva(unsigned long addr)
1141{
1142 return addr == bad_hva();
1143}
1144EXPORT_SYMBOL_GPL(kvm_is_error_hva);
1145
2843099f 1146struct kvm_memory_slot *gfn_to_memslot_unaliased(struct kvm *kvm, gfn_t gfn)
6aa8b732
AK
1147{
1148 int i;
1149
1150 for (i = 0; i < kvm->nmemslots; ++i) {
1151 struct kvm_memory_slot *memslot = &kvm->memslots[i];
1152
1153 if (gfn >= memslot->base_gfn
1154 && gfn < memslot->base_gfn + memslot->npages)
1155 return memslot;
1156 }
8b6d44c7 1157 return NULL;
6aa8b732 1158}
2843099f 1159EXPORT_SYMBOL_GPL(gfn_to_memslot_unaliased);
e8207547
AK
1160
1161struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1162{
1163 gfn = unalias_gfn(kvm, gfn);
2843099f 1164 return gfn_to_memslot_unaliased(kvm, gfn);
e8207547 1165}
6aa8b732 1166
e0d62c7f
IE
1167int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1168{
1169 int i;
1170
1171 gfn = unalias_gfn(kvm, gfn);
1172 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
1173 struct kvm_memory_slot *memslot = &kvm->memslots[i];
1174
1175 if (gfn >= memslot->base_gfn
1176 && gfn < memslot->base_gfn + memslot->npages)
1177 return 1;
1178 }
1179 return 0;
1180}
1181EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1182
05da4558 1183unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
539cb660
IE
1184{
1185 struct kvm_memory_slot *slot;
1186
1187 gfn = unalias_gfn(kvm, gfn);
2843099f 1188 slot = gfn_to_memslot_unaliased(kvm, gfn);
539cb660
IE
1189 if (!slot)
1190 return bad_hva();
1191 return (slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE);
1192}
0d150298 1193EXPORT_SYMBOL_GPL(gfn_to_hva);
539cb660 1194
35149e21 1195pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
954bbbc2 1196{
8d4e1288 1197 struct page *page[1];
539cb660 1198 unsigned long addr;
8d4e1288 1199 int npages;
2e2e3738 1200 pfn_t pfn;
954bbbc2 1201
60395224
AK
1202 might_sleep();
1203
539cb660
IE
1204 addr = gfn_to_hva(kvm, gfn);
1205 if (kvm_is_error_hva(addr)) {
8a7ae055 1206 get_page(bad_page);
35149e21 1207 return page_to_pfn(bad_page);
8a7ae055 1208 }
8d4e1288 1209
4c2155ce 1210 npages = get_user_pages_fast(addr, 1, 1, page);
539cb660 1211
2e2e3738
AL
1212 if (unlikely(npages != 1)) {
1213 struct vm_area_struct *vma;
1214
4c2155ce 1215 down_read(&current->mm->mmap_sem);
2e2e3738 1216 vma = find_vma(current->mm, addr);
4c2155ce 1217
2e2e3738
AL
1218 if (vma == NULL || addr < vma->vm_start ||
1219 !(vma->vm_flags & VM_PFNMAP)) {
4c2155ce 1220 up_read(&current->mm->mmap_sem);
2e2e3738
AL
1221 get_page(bad_page);
1222 return page_to_pfn(bad_page);
1223 }
1224
1225 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
4c2155ce 1226 up_read(&current->mm->mmap_sem);
c77fb9dc 1227 BUG_ON(!kvm_is_mmio_pfn(pfn));
2e2e3738
AL
1228 } else
1229 pfn = page_to_pfn(page[0]);
8d4e1288 1230
2e2e3738 1231 return pfn;
35149e21
AL
1232}
1233
1234EXPORT_SYMBOL_GPL(gfn_to_pfn);
1235
1236struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1237{
2e2e3738
AL
1238 pfn_t pfn;
1239
1240 pfn = gfn_to_pfn(kvm, gfn);
c77fb9dc 1241 if (!kvm_is_mmio_pfn(pfn))
2e2e3738
AL
1242 return pfn_to_page(pfn);
1243
c77fb9dc 1244 WARN_ON(kvm_is_mmio_pfn(pfn));
2e2e3738
AL
1245
1246 get_page(bad_page);
1247 return bad_page;
954bbbc2 1248}
aab61cc0 1249
954bbbc2
AK
1250EXPORT_SYMBOL_GPL(gfn_to_page);
1251
b4231d61
IE
1252void kvm_release_page_clean(struct page *page)
1253{
35149e21 1254 kvm_release_pfn_clean(page_to_pfn(page));
b4231d61
IE
1255}
1256EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1257
35149e21
AL
1258void kvm_release_pfn_clean(pfn_t pfn)
1259{
c77fb9dc 1260 if (!kvm_is_mmio_pfn(pfn))
2e2e3738 1261 put_page(pfn_to_page(pfn));
35149e21
AL
1262}
1263EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1264
b4231d61 1265void kvm_release_page_dirty(struct page *page)
8a7ae055 1266{
35149e21
AL
1267 kvm_release_pfn_dirty(page_to_pfn(page));
1268}
1269EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
1270
1271void kvm_release_pfn_dirty(pfn_t pfn)
1272{
1273 kvm_set_pfn_dirty(pfn);
1274 kvm_release_pfn_clean(pfn);
1275}
1276EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
1277
1278void kvm_set_page_dirty(struct page *page)
1279{
1280 kvm_set_pfn_dirty(page_to_pfn(page));
1281}
1282EXPORT_SYMBOL_GPL(kvm_set_page_dirty);
1283
1284void kvm_set_pfn_dirty(pfn_t pfn)
1285{
c77fb9dc 1286 if (!kvm_is_mmio_pfn(pfn)) {
2e2e3738
AL
1287 struct page *page = pfn_to_page(pfn);
1288 if (!PageReserved(page))
1289 SetPageDirty(page);
1290 }
8a7ae055 1291}
35149e21
AL
1292EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1293
1294void kvm_set_pfn_accessed(pfn_t pfn)
1295{
c77fb9dc 1296 if (!kvm_is_mmio_pfn(pfn))
2e2e3738 1297 mark_page_accessed(pfn_to_page(pfn));
35149e21
AL
1298}
1299EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1300
1301void kvm_get_pfn(pfn_t pfn)
1302{
c77fb9dc 1303 if (!kvm_is_mmio_pfn(pfn))
2e2e3738 1304 get_page(pfn_to_page(pfn));
35149e21
AL
1305}
1306EXPORT_SYMBOL_GPL(kvm_get_pfn);
8a7ae055 1307
195aefde
IE
1308static int next_segment(unsigned long len, int offset)
1309{
1310 if (len > PAGE_SIZE - offset)
1311 return PAGE_SIZE - offset;
1312 else
1313 return len;
1314}
1315
1316int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1317 int len)
1318{
e0506bcb
IE
1319 int r;
1320 unsigned long addr;
195aefde 1321
e0506bcb
IE
1322 addr = gfn_to_hva(kvm, gfn);
1323 if (kvm_is_error_hva(addr))
1324 return -EFAULT;
1325 r = copy_from_user(data, (void __user *)addr + offset, len);
1326 if (r)
195aefde 1327 return -EFAULT;
195aefde
IE
1328 return 0;
1329}
1330EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1331
1332int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1333{
1334 gfn_t gfn = gpa >> PAGE_SHIFT;
1335 int seg;
1336 int offset = offset_in_page(gpa);
1337 int ret;
1338
1339 while ((seg = next_segment(len, offset)) != 0) {
1340 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1341 if (ret < 0)
1342 return ret;
1343 offset = 0;
1344 len -= seg;
1345 data += seg;
1346 ++gfn;
1347 }
1348 return 0;
1349}
1350EXPORT_SYMBOL_GPL(kvm_read_guest);
1351
7ec54588
MT
1352int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1353 unsigned long len)
1354{
1355 int r;
1356 unsigned long addr;
1357 gfn_t gfn = gpa >> PAGE_SHIFT;
1358 int offset = offset_in_page(gpa);
1359
1360 addr = gfn_to_hva(kvm, gfn);
1361 if (kvm_is_error_hva(addr))
1362 return -EFAULT;
0aac03f0 1363 pagefault_disable();
7ec54588 1364 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
0aac03f0 1365 pagefault_enable();
7ec54588
MT
1366 if (r)
1367 return -EFAULT;
1368 return 0;
1369}
1370EXPORT_SYMBOL(kvm_read_guest_atomic);
1371
195aefde
IE
1372int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1373 int offset, int len)
1374{
e0506bcb
IE
1375 int r;
1376 unsigned long addr;
195aefde 1377
e0506bcb
IE
1378 addr = gfn_to_hva(kvm, gfn);
1379 if (kvm_is_error_hva(addr))
1380 return -EFAULT;
1381 r = copy_to_user((void __user *)addr + offset, data, len);
1382 if (r)
195aefde 1383 return -EFAULT;
195aefde
IE
1384 mark_page_dirty(kvm, gfn);
1385 return 0;
1386}
1387EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1388
1389int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1390 unsigned long len)
1391{
1392 gfn_t gfn = gpa >> PAGE_SHIFT;
1393 int seg;
1394 int offset = offset_in_page(gpa);
1395 int ret;
1396
1397 while ((seg = next_segment(len, offset)) != 0) {
1398 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1399 if (ret < 0)
1400 return ret;
1401 offset = 0;
1402 len -= seg;
1403 data += seg;
1404 ++gfn;
1405 }
1406 return 0;
1407}
1408
1409int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1410{
3e021bf5 1411 return kvm_write_guest_page(kvm, gfn, empty_zero_page, offset, len);
195aefde
IE
1412}
1413EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1414
1415int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1416{
1417 gfn_t gfn = gpa >> PAGE_SHIFT;
1418 int seg;
1419 int offset = offset_in_page(gpa);
1420 int ret;
1421
1422 while ((seg = next_segment(len, offset)) != 0) {
1423 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1424 if (ret < 0)
1425 return ret;
1426 offset = 0;
1427 len -= seg;
1428 ++gfn;
1429 }
1430 return 0;
1431}
1432EXPORT_SYMBOL_GPL(kvm_clear_guest);
1433
6aa8b732
AK
1434void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1435{
31389947 1436 struct kvm_memory_slot *memslot;
6aa8b732 1437
3b6fff19 1438 gfn = unalias_gfn(kvm, gfn);
2843099f 1439 memslot = gfn_to_memslot_unaliased(kvm, gfn);
7e9d619d
RR
1440 if (memslot && memslot->dirty_bitmap) {
1441 unsigned long rel_gfn = gfn - memslot->base_gfn;
6aa8b732 1442
7e9d619d
RR
1443 /* avoid RMW */
1444 if (!test_bit(rel_gfn, memslot->dirty_bitmap))
1445 set_bit(rel_gfn, memslot->dirty_bitmap);
6aa8b732
AK
1446 }
1447}
1448
b6958ce4
ED
1449/*
1450 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1451 */
8776e519 1452void kvm_vcpu_block(struct kvm_vcpu *vcpu)
d3bef15f 1453{
e5c239cf
MT
1454 DEFINE_WAIT(wait);
1455
1456 for (;;) {
1457 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
1458
d7690175
MT
1459 if (kvm_cpu_has_interrupt(vcpu) ||
1460 kvm_cpu_has_pending_timer(vcpu) ||
1461 kvm_arch_vcpu_runnable(vcpu)) {
1462 set_bit(KVM_REQ_UNHALT, &vcpu->requests);
e5c239cf 1463 break;
d7690175 1464 }
e5c239cf
MT
1465 if (signal_pending(current))
1466 break;
1467
b6958ce4
ED
1468 vcpu_put(vcpu);
1469 schedule();
1470 vcpu_load(vcpu);
1471 }
d3bef15f 1472
e5c239cf 1473 finish_wait(&vcpu->wq, &wait);
b6958ce4
ED
1474}
1475
6aa8b732
AK
1476void kvm_resched(struct kvm_vcpu *vcpu)
1477{
3fca0365
YD
1478 if (!need_resched())
1479 return;
6aa8b732 1480 cond_resched();
6aa8b732
AK
1481}
1482EXPORT_SYMBOL_GPL(kvm_resched);
1483
e4a533a4 1484static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
9a2bb7f4
AK
1485{
1486 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
9a2bb7f4
AK
1487 struct page *page;
1488
e4a533a4 1489 if (vmf->pgoff == 0)
039576c0 1490 page = virt_to_page(vcpu->run);
09566765 1491#ifdef CONFIG_X86
e4a533a4 1492 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
ad312c7c 1493 page = virt_to_page(vcpu->arch.pio_data);
5f94c174
LV
1494#endif
1495#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1496 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1497 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
09566765 1498#endif
039576c0 1499 else
e4a533a4 1500 return VM_FAULT_SIGBUS;
9a2bb7f4 1501 get_page(page);
e4a533a4 1502 vmf->page = page;
1503 return 0;
9a2bb7f4
AK
1504}
1505
1506static struct vm_operations_struct kvm_vcpu_vm_ops = {
e4a533a4 1507 .fault = kvm_vcpu_fault,
9a2bb7f4
AK
1508};
1509
1510static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1511{
1512 vma->vm_ops = &kvm_vcpu_vm_ops;
1513 return 0;
1514}
1515
bccf2150
AK
1516static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1517{
1518 struct kvm_vcpu *vcpu = filp->private_data;
1519
66c0b394 1520 kvm_put_kvm(vcpu->kvm);
bccf2150
AK
1521 return 0;
1522}
1523
3d3aab1b 1524static struct file_operations kvm_vcpu_fops = {
bccf2150
AK
1525 .release = kvm_vcpu_release,
1526 .unlocked_ioctl = kvm_vcpu_ioctl,
1527 .compat_ioctl = kvm_vcpu_ioctl,
9a2bb7f4 1528 .mmap = kvm_vcpu_mmap,
bccf2150
AK
1529};
1530
1531/*
1532 * Allocates an inode for the vcpu.
1533 */
1534static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1535{
7d9dbca3 1536 int fd = anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, 0);
2030a42c 1537 if (fd < 0)
66c0b394 1538 kvm_put_kvm(vcpu->kvm);
bccf2150 1539 return fd;
bccf2150
AK
1540}
1541
c5ea7660
AK
1542/*
1543 * Creates some virtual cpus. Good luck creating more than one.
1544 */
1545static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, int n)
1546{
1547 int r;
1548 struct kvm_vcpu *vcpu;
1549
c5ea7660 1550 if (!valid_vcpu(n))
fb3f0f51 1551 return -EINVAL;
c5ea7660 1552
e9b11c17 1553 vcpu = kvm_arch_vcpu_create(kvm, n);
fb3f0f51
RR
1554 if (IS_ERR(vcpu))
1555 return PTR_ERR(vcpu);
c5ea7660 1556
15ad7146
AK
1557 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1558
26e5215f
AK
1559 r = kvm_arch_vcpu_setup(vcpu);
1560 if (r)
7d8fece6 1561 return r;
26e5215f 1562
11ec2804 1563 mutex_lock(&kvm->lock);
fb3f0f51
RR
1564 if (kvm->vcpus[n]) {
1565 r = -EEXIST;
e9b11c17 1566 goto vcpu_destroy;
fb3f0f51
RR
1567 }
1568 kvm->vcpus[n] = vcpu;
11ec2804 1569 mutex_unlock(&kvm->lock);
c5ea7660 1570
fb3f0f51 1571 /* Now it's all set up, let userspace reach it */
66c0b394 1572 kvm_get_kvm(kvm);
bccf2150
AK
1573 r = create_vcpu_fd(vcpu);
1574 if (r < 0)
fb3f0f51
RR
1575 goto unlink;
1576 return r;
39c3b86e 1577
fb3f0f51 1578unlink:
11ec2804 1579 mutex_lock(&kvm->lock);
fb3f0f51 1580 kvm->vcpus[n] = NULL;
e9b11c17 1581vcpu_destroy:
7d8fece6 1582 mutex_unlock(&kvm->lock);
d40ccc62 1583 kvm_arch_vcpu_destroy(vcpu);
c5ea7660
AK
1584 return r;
1585}
1586
1961d276
AK
1587static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1588{
1589 if (sigset) {
1590 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1591 vcpu->sigset_active = 1;
1592 vcpu->sigset = *sigset;
1593 } else
1594 vcpu->sigset_active = 0;
1595 return 0;
1596}
1597
bccf2150
AK
1598static long kvm_vcpu_ioctl(struct file *filp,
1599 unsigned int ioctl, unsigned long arg)
6aa8b732 1600{
bccf2150 1601 struct kvm_vcpu *vcpu = filp->private_data;
2f366987 1602 void __user *argp = (void __user *)arg;
313a3dc7 1603 int r;
fa3795a7
DH
1604 struct kvm_fpu *fpu = NULL;
1605 struct kvm_sregs *kvm_sregs = NULL;
6aa8b732 1606
6d4e4c4f
AK
1607 if (vcpu->kvm->mm != current->mm)
1608 return -EIO;
6aa8b732 1609 switch (ioctl) {
9a2bb7f4 1610 case KVM_RUN:
f0fe5108
AK
1611 r = -EINVAL;
1612 if (arg)
1613 goto out;
b6c7a5dc 1614 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
6aa8b732 1615 break;
6aa8b732 1616 case KVM_GET_REGS: {
3e4bb3ac 1617 struct kvm_regs *kvm_regs;
6aa8b732 1618
3e4bb3ac
XZ
1619 r = -ENOMEM;
1620 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1621 if (!kvm_regs)
6aa8b732 1622 goto out;
3e4bb3ac
XZ
1623 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
1624 if (r)
1625 goto out_free1;
6aa8b732 1626 r = -EFAULT;
3e4bb3ac
XZ
1627 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
1628 goto out_free1;
6aa8b732 1629 r = 0;
3e4bb3ac
XZ
1630out_free1:
1631 kfree(kvm_regs);
6aa8b732
AK
1632 break;
1633 }
1634 case KVM_SET_REGS: {
3e4bb3ac 1635 struct kvm_regs *kvm_regs;
6aa8b732 1636
3e4bb3ac
XZ
1637 r = -ENOMEM;
1638 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1639 if (!kvm_regs)
6aa8b732 1640 goto out;
3e4bb3ac
XZ
1641 r = -EFAULT;
1642 if (copy_from_user(kvm_regs, argp, sizeof(struct kvm_regs)))
1643 goto out_free2;
1644 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
6aa8b732 1645 if (r)
3e4bb3ac 1646 goto out_free2;
6aa8b732 1647 r = 0;
3e4bb3ac
XZ
1648out_free2:
1649 kfree(kvm_regs);
6aa8b732
AK
1650 break;
1651 }
1652 case KVM_GET_SREGS: {
fa3795a7
DH
1653 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1654 r = -ENOMEM;
1655 if (!kvm_sregs)
1656 goto out;
1657 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
6aa8b732
AK
1658 if (r)
1659 goto out;
1660 r = -EFAULT;
fa3795a7 1661 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
6aa8b732
AK
1662 goto out;
1663 r = 0;
1664 break;
1665 }
1666 case KVM_SET_SREGS: {
fa3795a7
DH
1667 kvm_sregs = kmalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1668 r = -ENOMEM;
1669 if (!kvm_sregs)
1670 goto out;
6aa8b732 1671 r = -EFAULT;
fa3795a7 1672 if (copy_from_user(kvm_sregs, argp, sizeof(struct kvm_sregs)))
6aa8b732 1673 goto out;
fa3795a7 1674 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
6aa8b732
AK
1675 if (r)
1676 goto out;
1677 r = 0;
1678 break;
1679 }
62d9f0db
MT
1680 case KVM_GET_MP_STATE: {
1681 struct kvm_mp_state mp_state;
1682
1683 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
1684 if (r)
1685 goto out;
1686 r = -EFAULT;
1687 if (copy_to_user(argp, &mp_state, sizeof mp_state))
1688 goto out;
1689 r = 0;
1690 break;
1691 }
1692 case KVM_SET_MP_STATE: {
1693 struct kvm_mp_state mp_state;
1694
1695 r = -EFAULT;
1696 if (copy_from_user(&mp_state, argp, sizeof mp_state))
1697 goto out;
1698 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
1699 if (r)
1700 goto out;
1701 r = 0;
1702 break;
1703 }
6aa8b732
AK
1704 case KVM_TRANSLATE: {
1705 struct kvm_translation tr;
1706
1707 r = -EFAULT;
2f366987 1708 if (copy_from_user(&tr, argp, sizeof tr))
6aa8b732 1709 goto out;
8b006791 1710 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
6aa8b732
AK
1711 if (r)
1712 goto out;
1713 r = -EFAULT;
2f366987 1714 if (copy_to_user(argp, &tr, sizeof tr))
6aa8b732
AK
1715 goto out;
1716 r = 0;
1717 break;
1718 }
d0bfb940
JK
1719 case KVM_SET_GUEST_DEBUG: {
1720 struct kvm_guest_debug dbg;
6aa8b732
AK
1721
1722 r = -EFAULT;
2f366987 1723 if (copy_from_user(&dbg, argp, sizeof dbg))
6aa8b732 1724 goto out;
d0bfb940 1725 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
6aa8b732
AK
1726 if (r)
1727 goto out;
1728 r = 0;
1729 break;
1730 }
1961d276
AK
1731 case KVM_SET_SIGNAL_MASK: {
1732 struct kvm_signal_mask __user *sigmask_arg = argp;
1733 struct kvm_signal_mask kvm_sigmask;
1734 sigset_t sigset, *p;
1735
1736 p = NULL;
1737 if (argp) {
1738 r = -EFAULT;
1739 if (copy_from_user(&kvm_sigmask, argp,
1740 sizeof kvm_sigmask))
1741 goto out;
1742 r = -EINVAL;
1743 if (kvm_sigmask.len != sizeof sigset)
1744 goto out;
1745 r = -EFAULT;
1746 if (copy_from_user(&sigset, sigmask_arg->sigset,
1747 sizeof sigset))
1748 goto out;
1749 p = &sigset;
1750 }
1751 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
1752 break;
1753 }
b8836737 1754 case KVM_GET_FPU: {
fa3795a7
DH
1755 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1756 r = -ENOMEM;
1757 if (!fpu)
1758 goto out;
1759 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
b8836737
AK
1760 if (r)
1761 goto out;
1762 r = -EFAULT;
fa3795a7 1763 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
b8836737
AK
1764 goto out;
1765 r = 0;
1766 break;
1767 }
1768 case KVM_SET_FPU: {
fa3795a7
DH
1769 fpu = kmalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1770 r = -ENOMEM;
1771 if (!fpu)
1772 goto out;
b8836737 1773 r = -EFAULT;
fa3795a7 1774 if (copy_from_user(fpu, argp, sizeof(struct kvm_fpu)))
b8836737 1775 goto out;
fa3795a7 1776 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
b8836737
AK
1777 if (r)
1778 goto out;
1779 r = 0;
1780 break;
1781 }
bccf2150 1782 default:
313a3dc7 1783 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
bccf2150
AK
1784 }
1785out:
fa3795a7
DH
1786 kfree(fpu);
1787 kfree(kvm_sregs);
bccf2150
AK
1788 return r;
1789}
1790
1791static long kvm_vm_ioctl(struct file *filp,
1792 unsigned int ioctl, unsigned long arg)
1793{
1794 struct kvm *kvm = filp->private_data;
1795 void __user *argp = (void __user *)arg;
1fe779f8 1796 int r;
bccf2150 1797
6d4e4c4f
AK
1798 if (kvm->mm != current->mm)
1799 return -EIO;
bccf2150
AK
1800 switch (ioctl) {
1801 case KVM_CREATE_VCPU:
1802 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
1803 if (r < 0)
1804 goto out;
1805 break;
6fc138d2
IE
1806 case KVM_SET_USER_MEMORY_REGION: {
1807 struct kvm_userspace_memory_region kvm_userspace_mem;
1808
1809 r = -EFAULT;
1810 if (copy_from_user(&kvm_userspace_mem, argp,
1811 sizeof kvm_userspace_mem))
1812 goto out;
1813
1814 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
6aa8b732
AK
1815 if (r)
1816 goto out;
1817 break;
1818 }
1819 case KVM_GET_DIRTY_LOG: {
1820 struct kvm_dirty_log log;
1821
1822 r = -EFAULT;
2f366987 1823 if (copy_from_user(&log, argp, sizeof log))
6aa8b732 1824 goto out;
2c6f5df9 1825 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
6aa8b732
AK
1826 if (r)
1827 goto out;
1828 break;
1829 }
5f94c174
LV
1830#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1831 case KVM_REGISTER_COALESCED_MMIO: {
1832 struct kvm_coalesced_mmio_zone zone;
1833 r = -EFAULT;
1834 if (copy_from_user(&zone, argp, sizeof zone))
1835 goto out;
1836 r = -ENXIO;
1837 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
1838 if (r)
1839 goto out;
1840 r = 0;
1841 break;
1842 }
1843 case KVM_UNREGISTER_COALESCED_MMIO: {
1844 struct kvm_coalesced_mmio_zone zone;
1845 r = -EFAULT;
1846 if (copy_from_user(&zone, argp, sizeof zone))
1847 goto out;
1848 r = -ENXIO;
1849 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
1850 if (r)
1851 goto out;
1852 r = 0;
1853 break;
1854 }
8a98f664
XZ
1855#endif
1856#ifdef KVM_CAP_DEVICE_ASSIGNMENT
1857 case KVM_ASSIGN_PCI_DEVICE: {
1858 struct kvm_assigned_pci_dev assigned_dev;
1859
1860 r = -EFAULT;
1861 if (copy_from_user(&assigned_dev, argp, sizeof assigned_dev))
1862 goto out;
1863 r = kvm_vm_ioctl_assign_device(kvm, &assigned_dev);
1864 if (r)
1865 goto out;
1866 break;
1867 }
1868 case KVM_ASSIGN_IRQ: {
1869 struct kvm_assigned_irq assigned_irq;
1870
1871 r = -EFAULT;
1872 if (copy_from_user(&assigned_irq, argp, sizeof assigned_irq))
1873 goto out;
1874 r = kvm_vm_ioctl_assign_irq(kvm, &assigned_irq);
1875 if (r)
1876 goto out;
1877 break;
1878 }
0a920356
WH
1879#endif
1880#ifdef KVM_CAP_DEVICE_DEASSIGNMENT
1881 case KVM_DEASSIGN_PCI_DEVICE: {
1882 struct kvm_assigned_pci_dev assigned_dev;
1883
1884 r = -EFAULT;
1885 if (copy_from_user(&assigned_dev, argp, sizeof assigned_dev))
1886 goto out;
1887 r = kvm_vm_ioctl_deassign_device(kvm, &assigned_dev);
1888 if (r)
1889 goto out;
1890 break;
1891 }
399ec807
AK
1892#endif
1893#ifdef KVM_CAP_IRQ_ROUTING
1894 case KVM_SET_GSI_ROUTING: {
1895 struct kvm_irq_routing routing;
1896 struct kvm_irq_routing __user *urouting;
1897 struct kvm_irq_routing_entry *entries;
1898
1899 r = -EFAULT;
1900 if (copy_from_user(&routing, argp, sizeof(routing)))
1901 goto out;
1902 r = -EINVAL;
1903 if (routing.nr >= KVM_MAX_IRQ_ROUTES)
1904 goto out;
1905 if (routing.flags)
1906 goto out;
1907 r = -ENOMEM;
1908 entries = vmalloc(routing.nr * sizeof(*entries));
1909 if (!entries)
1910 goto out;
1911 r = -EFAULT;
1912 urouting = argp;
1913 if (copy_from_user(entries, urouting->entries,
1914 routing.nr * sizeof(*entries)))
1915 goto out_free_irq_routing;
1916 r = kvm_set_irq_routing(kvm, entries, routing.nr,
1917 routing.flags);
1918 out_free_irq_routing:
1919 vfree(entries);
1920 break;
1921 }
5f94c174 1922#endif
f17abe9a 1923 default:
1fe779f8 1924 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
f17abe9a
AK
1925 }
1926out:
1927 return r;
1928}
1929
e4a533a4 1930static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
f17abe9a 1931{
777b3f49
MT
1932 struct page *page[1];
1933 unsigned long addr;
1934 int npages;
1935 gfn_t gfn = vmf->pgoff;
f17abe9a 1936 struct kvm *kvm = vma->vm_file->private_data;
f17abe9a 1937
777b3f49
MT
1938 addr = gfn_to_hva(kvm, gfn);
1939 if (kvm_is_error_hva(addr))
e4a533a4 1940 return VM_FAULT_SIGBUS;
777b3f49
MT
1941
1942 npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page,
1943 NULL);
1944 if (unlikely(npages != 1))
e4a533a4 1945 return VM_FAULT_SIGBUS;
777b3f49
MT
1946
1947 vmf->page = page[0];
e4a533a4 1948 return 0;
f17abe9a
AK
1949}
1950
1951static struct vm_operations_struct kvm_vm_vm_ops = {
e4a533a4 1952 .fault = kvm_vm_fault,
f17abe9a
AK
1953};
1954
1955static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
1956{
1957 vma->vm_ops = &kvm_vm_vm_ops;
1958 return 0;
1959}
1960
3d3aab1b 1961static struct file_operations kvm_vm_fops = {
f17abe9a
AK
1962 .release = kvm_vm_release,
1963 .unlocked_ioctl = kvm_vm_ioctl,
1964 .compat_ioctl = kvm_vm_ioctl,
1965 .mmap = kvm_vm_mmap,
1966};
1967
1968static int kvm_dev_ioctl_create_vm(void)
1969{
2030a42c 1970 int fd;
f17abe9a
AK
1971 struct kvm *kvm;
1972
f17abe9a 1973 kvm = kvm_create_vm();
d6d28168
AK
1974 if (IS_ERR(kvm))
1975 return PTR_ERR(kvm);
7d9dbca3 1976 fd = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, 0);
2030a42c 1977 if (fd < 0)
66c0b394 1978 kvm_put_kvm(kvm);
f17abe9a 1979
f17abe9a 1980 return fd;
f17abe9a
AK
1981}
1982
1a811b61
AK
1983static long kvm_dev_ioctl_check_extension_generic(long arg)
1984{
1985 switch (arg) {
ca9edaee 1986 case KVM_CAP_USER_MEMORY:
1a811b61
AK
1987 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
1988 return 1;
399ec807
AK
1989#ifdef CONFIG_HAVE_KVM_IRQCHIP
1990 case KVM_CAP_IRQ_ROUTING:
1991 return 1;
1992#endif
1a811b61
AK
1993 default:
1994 break;
1995 }
1996 return kvm_dev_ioctl_check_extension(arg);
1997}
1998
f17abe9a
AK
1999static long kvm_dev_ioctl(struct file *filp,
2000 unsigned int ioctl, unsigned long arg)
2001{
07c45a36 2002 long r = -EINVAL;
f17abe9a
AK
2003
2004 switch (ioctl) {
2005 case KVM_GET_API_VERSION:
f0fe5108
AK
2006 r = -EINVAL;
2007 if (arg)
2008 goto out;
f17abe9a
AK
2009 r = KVM_API_VERSION;
2010 break;
2011 case KVM_CREATE_VM:
f0fe5108
AK
2012 r = -EINVAL;
2013 if (arg)
2014 goto out;
f17abe9a
AK
2015 r = kvm_dev_ioctl_create_vm();
2016 break;
018d00d2 2017 case KVM_CHECK_EXTENSION:
1a811b61 2018 r = kvm_dev_ioctl_check_extension_generic(arg);
5d308f45 2019 break;
07c45a36
AK
2020 case KVM_GET_VCPU_MMAP_SIZE:
2021 r = -EINVAL;
2022 if (arg)
2023 goto out;
adb1ff46
AK
2024 r = PAGE_SIZE; /* struct kvm_run */
2025#ifdef CONFIG_X86
2026 r += PAGE_SIZE; /* pio data page */
5f94c174
LV
2027#endif
2028#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2029 r += PAGE_SIZE; /* coalesced mmio ring page */
adb1ff46 2030#endif
07c45a36 2031 break;
d4c9ff2d
FEL
2032 case KVM_TRACE_ENABLE:
2033 case KVM_TRACE_PAUSE:
2034 case KVM_TRACE_DISABLE:
2035 r = kvm_trace_ioctl(ioctl, arg);
2036 break;
6aa8b732 2037 default:
043405e1 2038 return kvm_arch_dev_ioctl(filp, ioctl, arg);
6aa8b732
AK
2039 }
2040out:
2041 return r;
2042}
2043
6aa8b732 2044static struct file_operations kvm_chardev_ops = {
6aa8b732
AK
2045 .unlocked_ioctl = kvm_dev_ioctl,
2046 .compat_ioctl = kvm_dev_ioctl,
6aa8b732
AK
2047};
2048
2049static struct miscdevice kvm_dev = {
bbe4432e 2050 KVM_MINOR,
6aa8b732
AK
2051 "kvm",
2052 &kvm_chardev_ops,
2053};
2054
1b6c0168
AK
2055static void hardware_enable(void *junk)
2056{
2057 int cpu = raw_smp_processor_id();
2058
7f59f492 2059 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
1b6c0168 2060 return;
7f59f492 2061 cpumask_set_cpu(cpu, cpus_hardware_enabled);
e9b11c17 2062 kvm_arch_hardware_enable(NULL);
1b6c0168
AK
2063}
2064
2065static void hardware_disable(void *junk)
2066{
2067 int cpu = raw_smp_processor_id();
2068
7f59f492 2069 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
1b6c0168 2070 return;
7f59f492 2071 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
e9b11c17 2072 kvm_arch_hardware_disable(NULL);
1b6c0168
AK
2073}
2074
774c47f1
AK
2075static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2076 void *v)
2077{
2078 int cpu = (long)v;
2079
1a6f4d7f 2080 val &= ~CPU_TASKS_FROZEN;
774c47f1 2081 switch (val) {
cec9ad27 2082 case CPU_DYING:
6ec8a856
AK
2083 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2084 cpu);
2085 hardware_disable(NULL);
2086 break;
774c47f1 2087 case CPU_UP_CANCELED:
43934a38
JK
2088 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2089 cpu);
8691e5a8 2090 smp_call_function_single(cpu, hardware_disable, NULL, 1);
774c47f1 2091 break;
43934a38
JK
2092 case CPU_ONLINE:
2093 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2094 cpu);
8691e5a8 2095 smp_call_function_single(cpu, hardware_enable, NULL, 1);
774c47f1
AK
2096 break;
2097 }
2098 return NOTIFY_OK;
2099}
2100
4ecac3fd
AK
2101
2102asmlinkage void kvm_handle_fault_on_reboot(void)
2103{
2104 if (kvm_rebooting)
2105 /* spin while reset goes on */
2106 while (true)
2107 ;
2108 /* Fault while not rebooting. We want the trace. */
2109 BUG();
2110}
2111EXPORT_SYMBOL_GPL(kvm_handle_fault_on_reboot);
2112
9a2b85c6 2113static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
d77c26fc 2114 void *v)
9a2b85c6
RR
2115{
2116 if (val == SYS_RESTART) {
2117 /*
2118 * Some (well, at least mine) BIOSes hang on reboot if
2119 * in vmx root mode.
2120 */
2121 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
4ecac3fd 2122 kvm_rebooting = true;
15c8b6c1 2123 on_each_cpu(hardware_disable, NULL, 1);
9a2b85c6
RR
2124 }
2125 return NOTIFY_OK;
2126}
2127
2128static struct notifier_block kvm_reboot_notifier = {
2129 .notifier_call = kvm_reboot,
2130 .priority = 0,
2131};
2132
2eeb2e94
GH
2133void kvm_io_bus_init(struct kvm_io_bus *bus)
2134{
2135 memset(bus, 0, sizeof(*bus));
2136}
2137
2138void kvm_io_bus_destroy(struct kvm_io_bus *bus)
2139{
2140 int i;
2141
2142 for (i = 0; i < bus->dev_count; i++) {
2143 struct kvm_io_device *pos = bus->devs[i];
2144
2145 kvm_iodevice_destructor(pos);
2146 }
2147}
2148
92760499
LV
2149struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus,
2150 gpa_t addr, int len, int is_write)
2eeb2e94
GH
2151{
2152 int i;
2153
2154 for (i = 0; i < bus->dev_count; i++) {
2155 struct kvm_io_device *pos = bus->devs[i];
2156
92760499 2157 if (pos->in_range(pos, addr, len, is_write))
2eeb2e94
GH
2158 return pos;
2159 }
2160
2161 return NULL;
2162}
2163
2164void kvm_io_bus_register_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev)
2165{
2166 BUG_ON(bus->dev_count > (NR_IOBUS_DEVS-1));
2167
2168 bus->devs[bus->dev_count++] = dev;
2169}
2170
774c47f1
AK
2171static struct notifier_block kvm_cpu_notifier = {
2172 .notifier_call = kvm_cpu_hotplug,
2173 .priority = 20, /* must be > scheduler priority */
2174};
2175
8b88b099 2176static int vm_stat_get(void *_offset, u64 *val)
ba1389b7
AK
2177{
2178 unsigned offset = (long)_offset;
ba1389b7
AK
2179 struct kvm *kvm;
2180
8b88b099 2181 *val = 0;
ba1389b7
AK
2182 spin_lock(&kvm_lock);
2183 list_for_each_entry(kvm, &vm_list, vm_list)
8b88b099 2184 *val += *(u32 *)((void *)kvm + offset);
ba1389b7 2185 spin_unlock(&kvm_lock);
8b88b099 2186 return 0;
ba1389b7
AK
2187}
2188
2189DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
2190
8b88b099 2191static int vcpu_stat_get(void *_offset, u64 *val)
1165f5fe
AK
2192{
2193 unsigned offset = (long)_offset;
1165f5fe
AK
2194 struct kvm *kvm;
2195 struct kvm_vcpu *vcpu;
2196 int i;
2197
8b88b099 2198 *val = 0;
1165f5fe
AK
2199 spin_lock(&kvm_lock);
2200 list_for_each_entry(kvm, &vm_list, vm_list)
2201 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
fb3f0f51
RR
2202 vcpu = kvm->vcpus[i];
2203 if (vcpu)
8b88b099 2204 *val += *(u32 *)((void *)vcpu + offset);
1165f5fe
AK
2205 }
2206 spin_unlock(&kvm_lock);
8b88b099 2207 return 0;
1165f5fe
AK
2208}
2209
ba1389b7
AK
2210DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
2211
2212static struct file_operations *stat_fops[] = {
2213 [KVM_STAT_VCPU] = &vcpu_stat_fops,
2214 [KVM_STAT_VM] = &vm_stat_fops,
2215};
1165f5fe 2216
a16b043c 2217static void kvm_init_debug(void)
6aa8b732
AK
2218{
2219 struct kvm_stats_debugfs_item *p;
2220
76f7c879 2221 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
6aa8b732 2222 for (p = debugfs_entries; p->name; ++p)
76f7c879 2223 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
1165f5fe 2224 (void *)(long)p->offset,
ba1389b7 2225 stat_fops[p->kind]);
6aa8b732
AK
2226}
2227
2228static void kvm_exit_debug(void)
2229{
2230 struct kvm_stats_debugfs_item *p;
2231
2232 for (p = debugfs_entries; p->name; ++p)
2233 debugfs_remove(p->dentry);
76f7c879 2234 debugfs_remove(kvm_debugfs_dir);
6aa8b732
AK
2235}
2236
59ae6c6b
AK
2237static int kvm_suspend(struct sys_device *dev, pm_message_t state)
2238{
4267c41a 2239 hardware_disable(NULL);
59ae6c6b
AK
2240 return 0;
2241}
2242
2243static int kvm_resume(struct sys_device *dev)
2244{
4267c41a 2245 hardware_enable(NULL);
59ae6c6b
AK
2246 return 0;
2247}
2248
2249static struct sysdev_class kvm_sysdev_class = {
af5ca3f4 2250 .name = "kvm",
59ae6c6b
AK
2251 .suspend = kvm_suspend,
2252 .resume = kvm_resume,
2253};
2254
2255static struct sys_device kvm_sysdev = {
2256 .id = 0,
2257 .cls = &kvm_sysdev_class,
2258};
2259
cea7bb21 2260struct page *bad_page;
35149e21 2261pfn_t bad_pfn;
6aa8b732 2262
15ad7146
AK
2263static inline
2264struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
2265{
2266 return container_of(pn, struct kvm_vcpu, preempt_notifier);
2267}
2268
2269static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
2270{
2271 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2272
e9b11c17 2273 kvm_arch_vcpu_load(vcpu, cpu);
15ad7146
AK
2274}
2275
2276static void kvm_sched_out(struct preempt_notifier *pn,
2277 struct task_struct *next)
2278{
2279 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2280
e9b11c17 2281 kvm_arch_vcpu_put(vcpu);
15ad7146
AK
2282}
2283
f8c16bba 2284int kvm_init(void *opaque, unsigned int vcpu_size,
c16f862d 2285 struct module *module)
6aa8b732
AK
2286{
2287 int r;
002c7f7c 2288 int cpu;
6aa8b732 2289
cb498ea2
ZX
2290 kvm_init_debug();
2291
f8c16bba
ZX
2292 r = kvm_arch_init(opaque);
2293 if (r)
d2308784 2294 goto out_fail;
cb498ea2
ZX
2295
2296 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2297
2298 if (bad_page == NULL) {
2299 r = -ENOMEM;
2300 goto out;
2301 }
2302
35149e21
AL
2303 bad_pfn = page_to_pfn(bad_page);
2304
7f59f492
RR
2305 if (!alloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
2306 r = -ENOMEM;
2307 goto out_free_0;
2308 }
2309
e9b11c17 2310 r = kvm_arch_hardware_setup();
6aa8b732 2311 if (r < 0)
7f59f492 2312 goto out_free_0a;
6aa8b732 2313
002c7f7c
YS
2314 for_each_online_cpu(cpu) {
2315 smp_call_function_single(cpu,
e9b11c17 2316 kvm_arch_check_processor_compat,
8691e5a8 2317 &r, 1);
002c7f7c 2318 if (r < 0)
d2308784 2319 goto out_free_1;
002c7f7c
YS
2320 }
2321
15c8b6c1 2322 on_each_cpu(hardware_enable, NULL, 1);
774c47f1
AK
2323 r = register_cpu_notifier(&kvm_cpu_notifier);
2324 if (r)
d2308784 2325 goto out_free_2;
6aa8b732
AK
2326 register_reboot_notifier(&kvm_reboot_notifier);
2327
59ae6c6b
AK
2328 r = sysdev_class_register(&kvm_sysdev_class);
2329 if (r)
d2308784 2330 goto out_free_3;
59ae6c6b
AK
2331
2332 r = sysdev_register(&kvm_sysdev);
2333 if (r)
d2308784 2334 goto out_free_4;
59ae6c6b 2335
c16f862d
RR
2336 /* A kmem cache lets us meet the alignment requirements of fx_save. */
2337 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size,
56919c5c
JP
2338 __alignof__(struct kvm_vcpu),
2339 0, NULL);
c16f862d
RR
2340 if (!kvm_vcpu_cache) {
2341 r = -ENOMEM;
d2308784 2342 goto out_free_5;
c16f862d
RR
2343 }
2344
6aa8b732 2345 kvm_chardev_ops.owner = module;
3d3aab1b
CB
2346 kvm_vm_fops.owner = module;
2347 kvm_vcpu_fops.owner = module;
6aa8b732
AK
2348
2349 r = misc_register(&kvm_dev);
2350 if (r) {
d77c26fc 2351 printk(KERN_ERR "kvm: misc device register failed\n");
6aa8b732
AK
2352 goto out_free;
2353 }
2354
15ad7146
AK
2355 kvm_preempt_ops.sched_in = kvm_sched_in;
2356 kvm_preempt_ops.sched_out = kvm_sched_out;
5319c662
SY
2357#ifndef CONFIG_X86
2358 msi2intx = 0;
2359#endif
15ad7146 2360
c7addb90 2361 return 0;
6aa8b732
AK
2362
2363out_free:
c16f862d 2364 kmem_cache_destroy(kvm_vcpu_cache);
d2308784 2365out_free_5:
59ae6c6b 2366 sysdev_unregister(&kvm_sysdev);
d2308784 2367out_free_4:
59ae6c6b 2368 sysdev_class_unregister(&kvm_sysdev_class);
d2308784 2369out_free_3:
6aa8b732 2370 unregister_reboot_notifier(&kvm_reboot_notifier);
774c47f1 2371 unregister_cpu_notifier(&kvm_cpu_notifier);
d2308784 2372out_free_2:
15c8b6c1 2373 on_each_cpu(hardware_disable, NULL, 1);
d2308784 2374out_free_1:
e9b11c17 2375 kvm_arch_hardware_unsetup();
7f59f492
RR
2376out_free_0a:
2377 free_cpumask_var(cpus_hardware_enabled);
d2308784
ZX
2378out_free_0:
2379 __free_page(bad_page);
ca45aaae 2380out:
f8c16bba 2381 kvm_arch_exit();
cb498ea2 2382 kvm_exit_debug();
d2308784 2383out_fail:
6aa8b732
AK
2384 return r;
2385}
cb498ea2 2386EXPORT_SYMBOL_GPL(kvm_init);
6aa8b732 2387
cb498ea2 2388void kvm_exit(void)
6aa8b732 2389{
d4c9ff2d 2390 kvm_trace_cleanup();
6aa8b732 2391 misc_deregister(&kvm_dev);
c16f862d 2392 kmem_cache_destroy(kvm_vcpu_cache);
59ae6c6b
AK
2393 sysdev_unregister(&kvm_sysdev);
2394 sysdev_class_unregister(&kvm_sysdev_class);
6aa8b732 2395 unregister_reboot_notifier(&kvm_reboot_notifier);
59ae6c6b 2396 unregister_cpu_notifier(&kvm_cpu_notifier);
15c8b6c1 2397 on_each_cpu(hardware_disable, NULL, 1);
e9b11c17 2398 kvm_arch_hardware_unsetup();
f8c16bba 2399 kvm_arch_exit();
6aa8b732 2400 kvm_exit_debug();
7f59f492 2401 free_cpumask_var(cpus_hardware_enabled);
cea7bb21 2402 __free_page(bad_page);
6aa8b732 2403}
cb498ea2 2404EXPORT_SYMBOL_GPL(kvm_exit);