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