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