blob: 6eca153e1a0229c1d7178f4ec7962c4706d777ab [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
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
Hollis Blancharde2174022007-12-03 15:30:24 -060018#include "iodev.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080019
Avi Kivityedf88412007-12-16 11:02:48 +020020#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080021#include <linux/kvm.h>
22#include <linux/module.h>
23#include <linux/errno.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080024#include <linux/percpu.h>
25#include <linux/gfp.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080026#include <linux/mm.h>
27#include <linux/miscdevice.h>
28#include <linux/vmalloc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/reboot.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080030#include <linux/debugfs.h>
31#include <linux/highmem.h>
32#include <linux/file.h>
Avi Kivity59ae6c62007-02-12 00:54:48 -080033#include <linux/sysdev.h>
Avi Kivity774c47f2007-02-12 00:54:47 -080034#include <linux/cpu.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040035#include <linux/sched.h>
Avi Kivityd9e368d2007-06-07 19:18:30 +030036#include <linux/cpumask.h>
37#include <linux/smp.h>
Avi Kivityd6d28162007-06-28 08:38:16 -040038#include <linux/anon_inodes.h>
Avi Kivity04d2cc72007-09-10 18:10:54 +030039#include <linux/profile.h>
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050040#include <linux/kvm_para.h>
Izik Eidus6fc138d2007-10-09 19:20:39 +020041#include <linux/pagemap.h>
Anthony Liguori8d4e1282007-10-18 09:59:34 -050042#include <linux/mman.h>
Anthony Liguori35149e22008-04-02 14:46:56 -050043#include <linux/swap.h>
Sheng Yange56d5322009-03-12 21:45:39 +080044#include <linux/bitops.h>
Marcelo Tosatti547de292009-05-07 17:55:13 -030045#include <linux/spinlock.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080046
Avi Kivitye4956062007-06-28 14:15:57 -040047#include <asm/processor.h>
Avi Kivitye4956062007-06-28 14:15:57 -040048#include <asm/io.h>
49#include <asm/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020050#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080051
Laurent Vivier5f94c172008-05-30 16:05:54 +020052#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
53#include "coalesced_mmio.h"
54#endif
55
Xiantao Zhang8a98f662008-10-06 13:47:38 +080056#ifdef KVM_CAP_DEVICE_ASSIGNMENT
57#include <linux/pci.h>
58#include <linux/interrupt.h>
59#include "irq.h"
60#endif
61
Marcelo Tosatti229456f2009-06-17 09:22:14 -030062#define CREATE_TRACE_POINTS
63#include <trace/events/kvm.h>
64
Avi Kivity6aa8b732006-12-10 02:21:36 -080065MODULE_AUTHOR("Qumranet");
66MODULE_LICENSE("GPL");
67
Marcelo Tosattifa40a822009-06-04 15:08:24 -030068/*
69 * Ordering of locks:
70 *
Michael S. Tsirkin22fc0292009-06-29 22:24:45 +030071 * kvm->slots_lock --> kvm->lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030072 */
73
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080074DEFINE_SPINLOCK(kvm_lock);
75LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080076
Rusty Russell7f59f492008-12-07 21:25:45 +103077static cpumask_var_t cpus_hardware_enabled;
Avi Kivity1b6c0162007-05-24 13:03:52 +030078
Rusty Russellc16f8622007-07-30 21:12:19 +100079struct kmem_cache *kvm_vcpu_cache;
80EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030081
Avi Kivity15ad7142007-07-11 18:17:21 +030082static __read_mostly struct preempt_ops kvm_preempt_ops;
83
Hollis Blanchard76f7c872008-04-15 16:05:42 -050084struct dentry *kvm_debugfs_dir;
Avi Kivity6aa8b732006-12-10 02:21:36 -080085
Avi Kivitybccf2152007-02-21 18:04:26 +020086static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
87 unsigned long arg);
88
Hannes Edere8ba5d32008-11-28 17:02:42 +010089static bool kvm_rebooting;
Avi Kivity4ecac3f2008-05-13 13:23:38 +030090
Marcelo Tosatti54dee992009-06-11 12:07:44 -030091static bool largepages_enabled = true;
92
Xiantao Zhang8a98f662008-10-06 13:47:38 +080093#ifdef KVM_CAP_DEVICE_ASSIGNMENT
94static struct kvm_assigned_dev_kernel *kvm_find_assigned_dev(struct list_head *head,
95 int assigned_dev_id)
96{
97 struct list_head *ptr;
98 struct kvm_assigned_dev_kernel *match;
99
100 list_for_each(ptr, head) {
101 match = list_entry(ptr, struct kvm_assigned_dev_kernel, list);
102 if (match->assigned_dev_id == assigned_dev_id)
103 return match;
104 }
105 return NULL;
106}
107
Sheng Yang2350bd12009-02-25 17:22:27 +0800108static int find_index_from_host_irq(struct kvm_assigned_dev_kernel
109 *assigned_dev, int irq)
110{
111 int i, index;
112 struct msix_entry *host_msix_entries;
113
114 host_msix_entries = assigned_dev->host_msix_entries;
115
116 index = -1;
117 for (i = 0; i < assigned_dev->entries_nr; i++)
118 if (irq == host_msix_entries[i].vector) {
119 index = i;
120 break;
121 }
122 if (index < 0) {
123 printk(KERN_WARNING "Fail to find correlated MSI-X entry!\n");
124 return 0;
125 }
126
127 return index;
128}
129
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800130static void kvm_assigned_dev_interrupt_work_handler(struct work_struct *work)
131{
132 struct kvm_assigned_dev_kernel *assigned_dev;
Sheng Yang2350bd12009-02-25 17:22:27 +0800133 struct kvm *kvm;
Sheng Yang968a6342009-04-30 10:58:42 +0800134 int i;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800135
136 assigned_dev = container_of(work, struct kvm_assigned_dev_kernel,
137 interrupt_work);
Sheng Yang2350bd12009-02-25 17:22:27 +0800138 kvm = assigned_dev->kvm;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800139
Marcelo Tosattifa40a822009-06-04 15:08:24 -0300140 mutex_lock(&kvm->irq_lock);
Marcelo Tosatti547de292009-05-07 17:55:13 -0300141 spin_lock_irq(&assigned_dev->assigned_dev_lock);
Sheng Yange56d5322009-03-12 21:45:39 +0800142 if (assigned_dev->irq_requested_type & KVM_DEV_IRQ_HOST_MSIX) {
Sheng Yang2350bd12009-02-25 17:22:27 +0800143 struct kvm_guest_msix_entry *guest_entries =
144 assigned_dev->guest_msix_entries;
145 for (i = 0; i < assigned_dev->entries_nr; i++) {
146 if (!(guest_entries[i].flags &
147 KVM_ASSIGNED_MSIX_PENDING))
148 continue;
149 guest_entries[i].flags &= ~KVM_ASSIGNED_MSIX_PENDING;
150 kvm_set_irq(assigned_dev->kvm,
151 assigned_dev->irq_source_id,
152 guest_entries[i].vector, 1);
Sheng Yang2350bd12009-02-25 17:22:27 +0800153 }
Sheng Yang968a6342009-04-30 10:58:42 +0800154 } else
Sheng Yang2350bd12009-02-25 17:22:27 +0800155 kvm_set_irq(assigned_dev->kvm, assigned_dev->irq_source_id,
156 assigned_dev->guest_irq, 1);
Sheng Yang2350bd12009-02-25 17:22:27 +0800157
Marcelo Tosatti547de292009-05-07 17:55:13 -0300158 spin_unlock_irq(&assigned_dev->assigned_dev_lock);
Marcelo Tosattifa40a822009-06-04 15:08:24 -0300159 mutex_unlock(&assigned_dev->kvm->irq_lock);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800160}
161
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800162static irqreturn_t kvm_assigned_dev_intr(int irq, void *dev_id)
163{
Marcelo Tosatti547de292009-05-07 17:55:13 -0300164 unsigned long flags;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800165 struct kvm_assigned_dev_kernel *assigned_dev =
166 (struct kvm_assigned_dev_kernel *) dev_id;
167
Marcelo Tosatti547de292009-05-07 17:55:13 -0300168 spin_lock_irqsave(&assigned_dev->assigned_dev_lock, flags);
Sheng Yange56d5322009-03-12 21:45:39 +0800169 if (assigned_dev->irq_requested_type & KVM_DEV_IRQ_HOST_MSIX) {
Sheng Yang2350bd12009-02-25 17:22:27 +0800170 int index = find_index_from_host_irq(assigned_dev, irq);
171 if (index < 0)
Marcelo Tosatti547de292009-05-07 17:55:13 -0300172 goto out;
Sheng Yang2350bd12009-02-25 17:22:27 +0800173 assigned_dev->guest_msix_entries[index].flags |=
174 KVM_ASSIGNED_MSIX_PENDING;
175 }
176
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800177 schedule_work(&assigned_dev->interrupt_work);
Mark McLoughlindefaf152008-12-02 12:16:33 +0000178
Sheng Yang968a6342009-04-30 10:58:42 +0800179 if (assigned_dev->irq_requested_type & KVM_DEV_IRQ_GUEST_INTX) {
180 disable_irq_nosync(irq);
181 assigned_dev->host_irq_disabled = true;
182 }
Mark McLoughlindefaf152008-12-02 12:16:33 +0000183
Marcelo Tosatti547de292009-05-07 17:55:13 -0300184out:
185 spin_unlock_irqrestore(&assigned_dev->assigned_dev_lock, flags);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800186 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;
Marcelo Tosatti547de292009-05-07 17:55:13 -0300193 unsigned long flags;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800194
195 if (kian->gsi == -1)
196 return;
197
198 dev = container_of(kian, struct kvm_assigned_dev_kernel,
199 ack_notifier);
Mark McLoughlindefaf152008-12-02 12:16:33 +0000200
Sheng Yang5550af42008-10-15 20:15:06 +0800201 kvm_set_irq(dev->kvm, dev->irq_source_id, dev->guest_irq, 0);
Mark McLoughlindefaf152008-12-02 12:16:33 +0000202
203 /* The guest irq may be shared so this ack may be
204 * from another device.
205 */
Marcelo Tosatti547de292009-05-07 17:55:13 -0300206 spin_lock_irqsave(&dev->assigned_dev_lock, flags);
Mark McLoughlindefaf152008-12-02 12:16:33 +0000207 if (dev->host_irq_disabled) {
208 enable_irq(dev->host_irq);
209 dev->host_irq_disabled = false;
210 }
Marcelo Tosatti547de292009-05-07 17:55:13 -0300211 spin_unlock_irqrestore(&dev->assigned_dev_lock, flags);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800212}
213
Sheng Yange56d5322009-03-12 21:45:39 +0800214static void deassign_guest_irq(struct kvm *kvm,
215 struct kvm_assigned_dev_kernel *assigned_dev)
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800216{
Marcelo Tosattifa40a822009-06-04 15:08:24 -0300217 kvm_unregister_irq_ack_notifier(kvm, &assigned_dev->ack_notifier);
Sheng Yange56d5322009-03-12 21:45:39 +0800218 assigned_dev->ack_notifier.gsi = -1;
Mark McLoughlinf29b2672008-12-01 13:57:47 +0000219
220 if (assigned_dev->irq_source_id != -1)
221 kvm_free_irq_source_id(kvm, assigned_dev->irq_source_id);
222 assigned_dev->irq_source_id = -1;
Sheng Yange56d5322009-03-12 21:45:39 +0800223 assigned_dev->irq_requested_type &= ~(KVM_DEV_IRQ_GUEST_MASK);
224}
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800225
Sheng Yange56d5322009-03-12 21:45:39 +0800226/* The function implicit hold kvm->lock mutex due to cancel_work_sync() */
227static void deassign_host_irq(struct kvm *kvm,
228 struct kvm_assigned_dev_kernel *assigned_dev)
229{
Sheng Yangba4cef32009-01-06 10:03:03 +0800230 /*
231 * In kvm_free_device_irq, cancel_work_sync return true if:
232 * 1. work is scheduled, and then cancelled.
233 * 2. work callback is executed.
234 *
235 * The first one ensured that the irq is disabled and no more events
236 * would happen. But for the second one, the irq may be enabled (e.g.
237 * for MSI). So we disable irq here to prevent further events.
238 *
239 * Notice this maybe result in nested disable if the interrupt type is
240 * INTx, but it's OK for we are going to free it.
241 *
242 * If this function is a part of VM destroy, please ensure that till
243 * now, the kvm state is still legal for probably we also have to wait
244 * interrupt_work done.
245 */
Sheng Yange56d5322009-03-12 21:45:39 +0800246 if (assigned_dev->irq_requested_type & KVM_DEV_IRQ_HOST_MSIX) {
Sheng Yangd510d6c2009-02-25 17:22:28 +0800247 int i;
248 for (i = 0; i < assigned_dev->entries_nr; i++)
249 disable_irq_nosync(assigned_dev->
250 host_msix_entries[i].vector);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800251
Sheng Yangd510d6c2009-02-25 17:22:28 +0800252 cancel_work_sync(&assigned_dev->interrupt_work);
Mark McLoughlin4a643be2008-12-01 13:57:49 +0000253
Sheng Yangd510d6c2009-02-25 17:22:28 +0800254 for (i = 0; i < assigned_dev->entries_nr; i++)
255 free_irq(assigned_dev->host_msix_entries[i].vector,
256 (void *)assigned_dev);
257
258 assigned_dev->entries_nr = 0;
259 kfree(assigned_dev->host_msix_entries);
260 kfree(assigned_dev->guest_msix_entries);
261 pci_disable_msix(assigned_dev->dev);
262 } else {
263 /* Deal with MSI and INTx */
264 disable_irq_nosync(assigned_dev->host_irq);
265 cancel_work_sync(&assigned_dev->interrupt_work);
266
267 free_irq(assigned_dev->host_irq, (void *)assigned_dev);
268
Sheng Yange56d5322009-03-12 21:45:39 +0800269 if (assigned_dev->irq_requested_type & KVM_DEV_IRQ_HOST_MSI)
Sheng Yangd510d6c2009-02-25 17:22:28 +0800270 pci_disable_msi(assigned_dev->dev);
271 }
Mark McLoughlin4a643be2008-12-01 13:57:49 +0000272
Sheng Yange56d5322009-03-12 21:45:39 +0800273 assigned_dev->irq_requested_type &= ~(KVM_DEV_IRQ_HOST_MASK);
Mark McLoughlin4a643be2008-12-01 13:57:49 +0000274}
275
Sheng Yange56d5322009-03-12 21:45:39 +0800276static int kvm_deassign_irq(struct kvm *kvm,
277 struct kvm_assigned_dev_kernel *assigned_dev,
278 unsigned long irq_requested_type)
279{
280 unsigned long guest_irq_type, host_irq_type;
281
282 if (!irqchip_in_kernel(kvm))
283 return -EINVAL;
284 /* no irq assignment to deassign */
285 if (!assigned_dev->irq_requested_type)
286 return -ENXIO;
287
288 host_irq_type = irq_requested_type & KVM_DEV_IRQ_HOST_MASK;
289 guest_irq_type = irq_requested_type & KVM_DEV_IRQ_GUEST_MASK;
290
291 if (host_irq_type)
292 deassign_host_irq(kvm, assigned_dev);
293 if (guest_irq_type)
294 deassign_guest_irq(kvm, assigned_dev);
295
296 return 0;
297}
298
299static void kvm_free_assigned_irq(struct kvm *kvm,
300 struct kvm_assigned_dev_kernel *assigned_dev)
301{
302 kvm_deassign_irq(kvm, assigned_dev, assigned_dev->irq_requested_type);
303}
Mark McLoughlin4a643be2008-12-01 13:57:49 +0000304
305static void kvm_free_assigned_device(struct kvm *kvm,
306 struct kvm_assigned_dev_kernel
307 *assigned_dev)
308{
309 kvm_free_assigned_irq(kvm, assigned_dev);
310
Sheng Yang6eb55812008-10-31 12:37:41 +0800311 pci_reset_function(assigned_dev->dev);
312
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800313 pci_release_regions(assigned_dev->dev);
314 pci_disable_device(assigned_dev->dev);
315 pci_dev_put(assigned_dev->dev);
316
317 list_del(&assigned_dev->list);
318 kfree(assigned_dev);
319}
320
321void kvm_free_all_assigned_devices(struct kvm *kvm)
322{
323 struct list_head *ptr, *ptr2;
324 struct kvm_assigned_dev_kernel *assigned_dev;
325
326 list_for_each_safe(ptr, ptr2, &kvm->arch.assigned_dev_head) {
327 assigned_dev = list_entry(ptr,
328 struct kvm_assigned_dev_kernel,
329 list);
330
331 kvm_free_assigned_device(kvm, assigned_dev);
332 }
333}
334
Sheng Yange56d5322009-03-12 21:45:39 +0800335static int assigned_device_enable_host_intx(struct kvm *kvm,
336 struct kvm_assigned_dev_kernel *dev)
Sheng Yang00e3ed32008-11-24 14:32:50 +0800337{
Sheng Yange56d5322009-03-12 21:45:39 +0800338 dev->host_irq = dev->dev->irq;
339 /* Even though this is PCI, we don't want to use shared
340 * interrupts. Sharing host devices with guest-assigned devices
341 * on the same interrupt line is not a happy situation: there
342 * are going to be long delays in accepting, acking, etc.
343 */
344 if (request_irq(dev->host_irq, kvm_assigned_dev_intr,
345 0, "kvm_assigned_intx_device", (void *)dev))
346 return -EIO;
Sheng Yang00e3ed32008-11-24 14:32:50 +0800347 return 0;
348}
349
Sheng Yange56d5322009-03-12 21:45:39 +0800350#ifdef __KVM_HAVE_MSI
351static int assigned_device_enable_host_msi(struct kvm *kvm,
352 struct kvm_assigned_dev_kernel *dev)
Sheng Yang6b9cc7f2008-11-24 14:32:56 +0800353{
354 int r;
355
Sheng Yange56d5322009-03-12 21:45:39 +0800356 if (!dev->dev->msi_enabled) {
357 r = pci_enable_msi(dev->dev);
358 if (r)
359 return r;
Sheng Yang5319c662008-11-24 14:32:57 +0800360 }
Sheng Yang6b9cc7f2008-11-24 14:32:56 +0800361
Sheng Yange56d5322009-03-12 21:45:39 +0800362 dev->host_irq = dev->dev->irq;
363 if (request_irq(dev->host_irq, kvm_assigned_dev_intr, 0,
364 "kvm_assigned_msi_device", (void *)dev)) {
365 pci_disable_msi(dev->dev);
366 return -EIO;
Sheng Yang6b9cc7f2008-11-24 14:32:56 +0800367 }
368
Sheng Yang6b9cc7f2008-11-24 14:32:56 +0800369 return 0;
370}
371#endif
372
Sheng Yangd510d6c2009-02-25 17:22:28 +0800373#ifdef __KVM_HAVE_MSIX
Sheng Yange56d5322009-03-12 21:45:39 +0800374static int assigned_device_enable_host_msix(struct kvm *kvm,
375 struct kvm_assigned_dev_kernel *dev)
Sheng Yangd510d6c2009-02-25 17:22:28 +0800376{
Sheng Yange56d5322009-03-12 21:45:39 +0800377 int i, r = -EINVAL;
Sheng Yangd510d6c2009-02-25 17:22:28 +0800378
Sheng Yange56d5322009-03-12 21:45:39 +0800379 /* host_msix_entries and guest_msix_entries should have been
380 * initialized */
381 if (dev->entries_nr == 0)
382 return r;
Sheng Yangd510d6c2009-02-25 17:22:28 +0800383
Sheng Yange56d5322009-03-12 21:45:39 +0800384 r = pci_enable_msix(dev->dev, dev->host_msix_entries, dev->entries_nr);
385 if (r)
386 return r;
Sheng Yangd510d6c2009-02-25 17:22:28 +0800387
Sheng Yange56d5322009-03-12 21:45:39 +0800388 for (i = 0; i < dev->entries_nr; i++) {
389 r = request_irq(dev->host_msix_entries[i].vector,
390 kvm_assigned_dev_intr, 0,
391 "kvm_assigned_msix_device",
392 (void *)dev);
393 /* FIXME: free requested_irq's on failure */
Sheng Yangd510d6c2009-02-25 17:22:28 +0800394 if (r)
395 return r;
Sheng Yangd510d6c2009-02-25 17:22:28 +0800396 }
397
Sheng Yange56d5322009-03-12 21:45:39 +0800398 return 0;
399}
Sheng Yangd510d6c2009-02-25 17:22:28 +0800400
Sheng Yange56d5322009-03-12 21:45:39 +0800401#endif
402
403static int assigned_device_enable_guest_intx(struct kvm *kvm,
404 struct kvm_assigned_dev_kernel *dev,
405 struct kvm_assigned_irq *irq)
406{
407 dev->guest_irq = irq->guest_irq;
408 dev->ack_notifier.gsi = irq->guest_irq;
409 return 0;
410}
411
412#ifdef __KVM_HAVE_MSI
413static int assigned_device_enable_guest_msi(struct kvm *kvm,
414 struct kvm_assigned_dev_kernel *dev,
415 struct kvm_assigned_irq *irq)
416{
417 dev->guest_irq = irq->guest_irq;
418 dev->ack_notifier.gsi = -1;
Sheng Yang968a6342009-04-30 10:58:42 +0800419 dev->host_irq_disabled = false;
Sheng Yange56d5322009-03-12 21:45:39 +0800420 return 0;
421}
422#endif
423#ifdef __KVM_HAVE_MSIX
424static int assigned_device_enable_guest_msix(struct kvm *kvm,
425 struct kvm_assigned_dev_kernel *dev,
426 struct kvm_assigned_irq *irq)
427{
428 dev->guest_irq = irq->guest_irq;
429 dev->ack_notifier.gsi = -1;
Sheng Yang968a6342009-04-30 10:58:42 +0800430 dev->host_irq_disabled = false;
Sheng Yangd510d6c2009-02-25 17:22:28 +0800431 return 0;
432}
433#endif
434
Sheng Yange56d5322009-03-12 21:45:39 +0800435static int assign_host_irq(struct kvm *kvm,
436 struct kvm_assigned_dev_kernel *dev,
437 __u32 host_irq_type)
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800438{
Sheng Yange56d5322009-03-12 21:45:39 +0800439 int r = -EEXIST;
440
441 if (dev->irq_requested_type & KVM_DEV_IRQ_HOST_MASK)
442 return r;
443
444 switch (host_irq_type) {
445 case KVM_DEV_IRQ_HOST_INTX:
446 r = assigned_device_enable_host_intx(kvm, dev);
447 break;
448#ifdef __KVM_HAVE_MSI
449 case KVM_DEV_IRQ_HOST_MSI:
450 r = assigned_device_enable_host_msi(kvm, dev);
451 break;
452#endif
453#ifdef __KVM_HAVE_MSIX
454 case KVM_DEV_IRQ_HOST_MSIX:
455 r = assigned_device_enable_host_msix(kvm, dev);
456 break;
457#endif
458 default:
459 r = -EINVAL;
460 }
461
462 if (!r)
463 dev->irq_requested_type |= host_irq_type;
464
465 return r;
466}
467
468static int assign_guest_irq(struct kvm *kvm,
469 struct kvm_assigned_dev_kernel *dev,
470 struct kvm_assigned_irq *irq,
471 unsigned long guest_irq_type)
472{
473 int id;
474 int r = -EEXIST;
475
476 if (dev->irq_requested_type & KVM_DEV_IRQ_GUEST_MASK)
477 return r;
478
479 id = kvm_request_irq_source_id(kvm);
480 if (id < 0)
481 return id;
482
483 dev->irq_source_id = id;
484
485 switch (guest_irq_type) {
486 case KVM_DEV_IRQ_GUEST_INTX:
487 r = assigned_device_enable_guest_intx(kvm, dev, irq);
488 break;
489#ifdef __KVM_HAVE_MSI
490 case KVM_DEV_IRQ_GUEST_MSI:
491 r = assigned_device_enable_guest_msi(kvm, dev, irq);
492 break;
493#endif
494#ifdef __KVM_HAVE_MSIX
495 case KVM_DEV_IRQ_GUEST_MSIX:
496 r = assigned_device_enable_guest_msix(kvm, dev, irq);
497 break;
498#endif
499 default:
500 r = -EINVAL;
501 }
502
503 if (!r) {
504 dev->irq_requested_type |= guest_irq_type;
505 kvm_register_irq_ack_notifier(kvm, &dev->ack_notifier);
506 } else
507 kvm_free_irq_source_id(kvm, dev->irq_source_id);
508
509 return r;
510}
511
512/* TODO Deal with KVM_DEV_IRQ_ASSIGNED_MASK_MSIX */
513static int kvm_vm_ioctl_assign_irq(struct kvm *kvm,
514 struct kvm_assigned_irq *assigned_irq)
515{
516 int r = -EINVAL;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800517 struct kvm_assigned_dev_kernel *match;
Sheng Yange56d5322009-03-12 21:45:39 +0800518 unsigned long host_irq_type, guest_irq_type;
519
520 if (!capable(CAP_SYS_RAWIO))
521 return -EPERM;
522
523 if (!irqchip_in_kernel(kvm))
524 return r;
525
526 mutex_lock(&kvm->lock);
527 r = -ENODEV;
528 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
529 assigned_irq->assigned_dev_id);
530 if (!match)
531 goto out;
532
533 host_irq_type = (assigned_irq->flags & KVM_DEV_IRQ_HOST_MASK);
534 guest_irq_type = (assigned_irq->flags & KVM_DEV_IRQ_GUEST_MASK);
535
536 r = -EINVAL;
537 /* can only assign one type at a time */
538 if (hweight_long(host_irq_type) > 1)
539 goto out;
540 if (hweight_long(guest_irq_type) > 1)
541 goto out;
542 if (host_irq_type == 0 && guest_irq_type == 0)
543 goto out;
544
545 r = 0;
546 if (host_irq_type)
547 r = assign_host_irq(kvm, match, host_irq_type);
548 if (r)
549 goto out;
550
551 if (guest_irq_type)
552 r = assign_guest_irq(kvm, match, assigned_irq, guest_irq_type);
553out:
554 mutex_unlock(&kvm->lock);
555 return r;
556}
557
558static int kvm_vm_ioctl_deassign_dev_irq(struct kvm *kvm,
559 struct kvm_assigned_irq
560 *assigned_irq)
561{
562 int r = -ENODEV;
563 struct kvm_assigned_dev_kernel *match;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800564
565 mutex_lock(&kvm->lock);
566
567 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
568 assigned_irq->assigned_dev_id);
Sheng Yange56d5322009-03-12 21:45:39 +0800569 if (!match)
570 goto out;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800571
Sheng Yange56d5322009-03-12 21:45:39 +0800572 r = kvm_deassign_irq(kvm, match, assigned_irq->flags);
573out:
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800574 mutex_unlock(&kvm->lock);
575 return r;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800576}
577
578static int kvm_vm_ioctl_assign_device(struct kvm *kvm,
579 struct kvm_assigned_pci_dev *assigned_dev)
580{
581 int r = 0;
582 struct kvm_assigned_dev_kernel *match;
583 struct pci_dev *dev;
584
Mark McLoughlin682edb42009-02-05 18:23:46 +0000585 down_read(&kvm->slots_lock);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800586 mutex_lock(&kvm->lock);
587
588 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
589 assigned_dev->assigned_dev_id);
590 if (match) {
591 /* device already assigned */
Sheng Yange56d5322009-03-12 21:45:39 +0800592 r = -EEXIST;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800593 goto out;
594 }
595
596 match = kzalloc(sizeof(struct kvm_assigned_dev_kernel), GFP_KERNEL);
597 if (match == NULL) {
598 printk(KERN_INFO "%s: Couldn't allocate memory\n",
599 __func__);
600 r = -ENOMEM;
601 goto out;
602 }
603 dev = pci_get_bus_and_slot(assigned_dev->busnr,
604 assigned_dev->devfn);
605 if (!dev) {
606 printk(KERN_INFO "%s: host device not found\n", __func__);
607 r = -EINVAL;
608 goto out_free;
609 }
610 if (pci_enable_device(dev)) {
611 printk(KERN_INFO "%s: Could not enable PCI device\n", __func__);
612 r = -EBUSY;
613 goto out_put;
614 }
615 r = pci_request_regions(dev, "kvm_assigned_device");
616 if (r) {
617 printk(KERN_INFO "%s: Could not get access to device regions\n",
618 __func__);
619 goto out_disable;
620 }
Sheng Yang6eb55812008-10-31 12:37:41 +0800621
622 pci_reset_function(dev);
623
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800624 match->assigned_dev_id = assigned_dev->assigned_dev_id;
625 match->host_busnr = assigned_dev->busnr;
626 match->host_devfn = assigned_dev->devfn;
Weidong Hanb6535742008-12-08 23:29:53 +0800627 match->flags = assigned_dev->flags;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800628 match->dev = dev;
Marcelo Tosatti547de292009-05-07 17:55:13 -0300629 spin_lock_init(&match->assigned_dev_lock);
Mark McLoughlinf29b2672008-12-01 13:57:47 +0000630 match->irq_source_id = -1;
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800631 match->kvm = kvm;
Sheng Yange56d5322009-03-12 21:45:39 +0800632 match->ack_notifier.irq_acked = kvm_assigned_dev_ack_irq;
633 INIT_WORK(&match->interrupt_work,
634 kvm_assigned_dev_interrupt_work_handler);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800635
636 list_add(&match->list, &kvm->arch.assigned_dev_head);
637
638 if (assigned_dev->flags & KVM_DEV_ASSIGN_ENABLE_IOMMU) {
Joerg Roedel19de40a2008-12-03 14:43:34 +0100639 if (!kvm->arch.iommu_domain) {
Weidong Han260782b2008-12-02 21:03:39 +0800640 r = kvm_iommu_map_guest(kvm);
641 if (r)
642 goto out_list_del;
643 }
644 r = kvm_assign_device(kvm, match);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800645 if (r)
646 goto out_list_del;
647 }
648
649out:
650 mutex_unlock(&kvm->lock);
Mark McLoughlin682edb42009-02-05 18:23:46 +0000651 up_read(&kvm->slots_lock);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800652 return r;
653out_list_del:
654 list_del(&match->list);
655 pci_release_regions(dev);
656out_disable:
657 pci_disable_device(dev);
658out_put:
659 pci_dev_put(dev);
660out_free:
661 kfree(match);
662 mutex_unlock(&kvm->lock);
Mark McLoughlin682edb42009-02-05 18:23:46 +0000663 up_read(&kvm->slots_lock);
Xiantao Zhang8a98f662008-10-06 13:47:38 +0800664 return r;
665}
666#endif
667
Weidong Han0a920352008-12-02 21:24:23 +0800668#ifdef KVM_CAP_DEVICE_DEASSIGNMENT
669static int kvm_vm_ioctl_deassign_device(struct kvm *kvm,
670 struct kvm_assigned_pci_dev *assigned_dev)
671{
672 int r = 0;
673 struct kvm_assigned_dev_kernel *match;
674
675 mutex_lock(&kvm->lock);
676
677 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
678 assigned_dev->assigned_dev_id);
679 if (!match) {
680 printk(KERN_INFO "%s: device hasn't been assigned before, "
681 "so cannot be deassigned\n", __func__);
682 r = -EINVAL;
683 goto out;
684 }
685
Weidong Han4a906e42009-02-13 17:27:51 +0800686 if (match->flags & KVM_DEV_ASSIGN_ENABLE_IOMMU)
Weidong Han0a920352008-12-02 21:24:23 +0800687 kvm_deassign_device(kvm, match);
688
689 kvm_free_assigned_device(kvm, match);
690
691out:
692 mutex_unlock(&kvm->lock);
693 return r;
694}
695#endif
696
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +0800697inline int kvm_is_mmio_pfn(pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300698{
Joerg Roedelfc5659c2009-02-18 14:08:58 +0100699 if (pfn_valid(pfn)) {
700 struct page *page = compound_head(pfn_to_page(pfn));
701 return PageReserved(page);
702 }
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300703
704 return true;
705}
706
Avi Kivity6aa8b732006-12-10 02:21:36 -0800707/*
708 * Switches to specified vcpu, until a matching vcpu_put()
709 */
Carsten Otte313a3dc2007-10-11 19:16:52 +0200710void vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800711{
Avi Kivity15ad7142007-07-11 18:17:21 +0300712 int cpu;
713
Avi Kivitybccf2152007-02-21 18:04:26 +0200714 mutex_lock(&vcpu->mutex);
Avi Kivity15ad7142007-07-11 18:17:21 +0300715 cpu = get_cpu();
716 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200717 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300718 put_cpu();
Avi Kivitybccf2152007-02-21 18:04:26 +0200719}
720
Carsten Otte313a3dc2007-10-11 19:16:52 +0200721void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800722{
Avi Kivity15ad7142007-07-11 18:17:21 +0300723 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200724 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300725 preempt_notifier_unregister(&vcpu->preempt_notifier);
726 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800727 mutex_unlock(&vcpu->mutex);
728}
729
Avi Kivityd9e368d2007-06-07 19:18:30 +0300730static void ack_flush(void *_completed)
731{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300732}
733
Rusty Russell49846892008-12-08 20:26:24 +1030734static bool make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300735{
Avi Kivity597a5f52008-07-20 14:24:22 +0300736 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030737 cpumask_var_t cpus;
738 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300739 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300740
Li Zefan79f55992009-06-15 14:58:26 +0800741 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030742
Marcelo Tosatti84261922009-06-17 10:53:47 -0300743 spin_lock(&kvm->requests_lock);
Jan Kiszkae601e3b2009-07-20 11:30:12 +0200744 me = smp_processor_id();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300745 kvm_for_each_vcpu(i, vcpu, kvm) {
Rusty Russell49846892008-12-08 20:26:24 +1030746 if (test_and_set_bit(req, &vcpu->requests))
Avi Kivityd9e368d2007-06-07 19:18:30 +0300747 continue;
748 cpu = vcpu->cpu;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030749 if (cpus != NULL && cpu != -1 && cpu != me)
750 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300751 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030752 if (unlikely(cpus == NULL))
753 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
754 else if (!cpumask_empty(cpus))
755 smp_call_function_many(cpus, ack_flush, NULL, 1);
756 else
757 called = false;
Marcelo Tosatti84261922009-06-17 10:53:47 -0300758 spin_unlock(&kvm->requests_lock);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030759 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030760 return called;
761}
762
763void kvm_flush_remote_tlbs(struct kvm *kvm)
764{
765 if (make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
766 ++kvm->stat.remote_tlb_flush;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300767}
768
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500769void kvm_reload_remote_mmus(struct kvm *kvm)
770{
Rusty Russell49846892008-12-08 20:26:24 +1030771 make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500772}
773
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000774int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
775{
776 struct page *page;
777 int r;
778
779 mutex_init(&vcpu->mutex);
780 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000781 vcpu->kvm = kvm;
782 vcpu->vcpu_id = id;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300783 init_waitqueue_head(&vcpu->wq);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000784
785 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
786 if (!page) {
787 r = -ENOMEM;
788 goto fail;
789 }
790 vcpu->run = page_address(page);
791
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800792 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000793 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800794 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000795 return 0;
796
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000797fail_free_run:
798 free_page((unsigned long)vcpu->run);
799fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000800 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000801}
802EXPORT_SYMBOL_GPL(kvm_vcpu_init);
803
804void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
805{
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800806 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000807 free_page((unsigned long)vcpu->run);
808}
809EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
810
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200811#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
812static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
813{
814 return container_of(mn, struct kvm, mmu_notifier);
815}
816
817static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
818 struct mm_struct *mm,
819 unsigned long address)
820{
821 struct kvm *kvm = mmu_notifier_to_kvm(mn);
822 int need_tlb_flush;
823
824 /*
825 * When ->invalidate_page runs, the linux pte has been zapped
826 * already but the page is still allocated until
827 * ->invalidate_page returns. So if we increase the sequence
828 * here the kvm page fault will notice if the spte can't be
829 * established because the page is going to be freed. If
830 * instead the kvm page fault establishes the spte before
831 * ->invalidate_page runs, kvm_unmap_hva will release it
832 * before returning.
833 *
834 * The sequence increase only need to be seen at spin_unlock
835 * time, and not at spin_lock time.
836 *
837 * Increasing the sequence after the spin_unlock would be
838 * unsafe because the kvm page fault could then establish the
839 * pte after kvm_unmap_hva returned, without noticing the page
840 * is going to be freed.
841 */
842 spin_lock(&kvm->mmu_lock);
843 kvm->mmu_notifier_seq++;
844 need_tlb_flush = kvm_unmap_hva(kvm, address);
845 spin_unlock(&kvm->mmu_lock);
846
847 /* we've to flush the tlb before the pages can be freed */
848 if (need_tlb_flush)
849 kvm_flush_remote_tlbs(kvm);
850
851}
852
Izik Eidus3da0dd42009-09-23 21:47:18 +0300853static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
854 struct mm_struct *mm,
855 unsigned long address,
856 pte_t pte)
857{
858 struct kvm *kvm = mmu_notifier_to_kvm(mn);
859
860 spin_lock(&kvm->mmu_lock);
861 kvm->mmu_notifier_seq++;
862 kvm_set_spte_hva(kvm, address, pte);
863 spin_unlock(&kvm->mmu_lock);
864}
865
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200866static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
867 struct mm_struct *mm,
868 unsigned long start,
869 unsigned long end)
870{
871 struct kvm *kvm = mmu_notifier_to_kvm(mn);
872 int need_tlb_flush = 0;
873
874 spin_lock(&kvm->mmu_lock);
875 /*
876 * The count increase must become visible at unlock time as no
877 * spte can be established without taking the mmu_lock and
878 * count is also read inside the mmu_lock critical section.
879 */
880 kvm->mmu_notifier_count++;
881 for (; start < end; start += PAGE_SIZE)
882 need_tlb_flush |= kvm_unmap_hva(kvm, start);
883 spin_unlock(&kvm->mmu_lock);
884
885 /* we've to flush the tlb before the pages can be freed */
886 if (need_tlb_flush)
887 kvm_flush_remote_tlbs(kvm);
888}
889
890static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
891 struct mm_struct *mm,
892 unsigned long start,
893 unsigned long end)
894{
895 struct kvm *kvm = mmu_notifier_to_kvm(mn);
896
897 spin_lock(&kvm->mmu_lock);
898 /*
899 * This sequence increase will notify the kvm page fault that
900 * the page that is going to be mapped in the spte could have
901 * been freed.
902 */
903 kvm->mmu_notifier_seq++;
904 /*
905 * The above sequence increase must be visible before the
906 * below count decrease but both values are read by the kvm
907 * page fault under mmu_lock spinlock so we don't need to add
908 * a smb_wmb() here in between the two.
909 */
910 kvm->mmu_notifier_count--;
911 spin_unlock(&kvm->mmu_lock);
912
913 BUG_ON(kvm->mmu_notifier_count < 0);
914}
915
916static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
917 struct mm_struct *mm,
918 unsigned long address)
919{
920 struct kvm *kvm = mmu_notifier_to_kvm(mn);
921 int young;
922
923 spin_lock(&kvm->mmu_lock);
924 young = kvm_age_hva(kvm, address);
925 spin_unlock(&kvm->mmu_lock);
926
927 if (young)
928 kvm_flush_remote_tlbs(kvm);
929
930 return young;
931}
932
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100933static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
934 struct mm_struct *mm)
935{
936 struct kvm *kvm = mmu_notifier_to_kvm(mn);
937 kvm_arch_flush_shadow(kvm);
938}
939
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200940static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
941 .invalidate_page = kvm_mmu_notifier_invalidate_page,
942 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
943 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
944 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300945 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100946 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200947};
948#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
949
Avi Kivityf17abe92007-02-21 19:28:04 +0200950static struct kvm *kvm_create_vm(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800951{
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800952 struct kvm *kvm = kvm_arch_create_vm();
Laurent Vivier5f94c172008-05-30 16:05:54 +0200953#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
954 struct page *page;
955#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800956
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800957 if (IS_ERR(kvm))
958 goto out;
Avi Kivity75858a82009-01-04 17:10:50 +0200959#ifdef CONFIG_HAVE_KVM_IRQCHIP
960 INIT_HLIST_HEAD(&kvm->mask_notifier_list);
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300961 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200962#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963
Laurent Vivier5f94c172008-05-30 16:05:54 +0200964#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
965 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
966 if (!page) {
967 kfree(kvm);
968 return ERR_PTR(-ENOMEM);
969 }
970 kvm->coalesced_mmio_ring =
971 (struct kvm_coalesced_mmio_ring *)page_address(page);
972#endif
973
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200974#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
975 {
976 int err;
977 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
978 err = mmu_notifier_register(&kvm->mmu_notifier, current->mm);
979 if (err) {
980#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
981 put_page(page);
982#endif
983 kfree(kvm);
984 return ERR_PTR(err);
985 }
986 }
987#endif
988
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200989 kvm->mm = current->mm;
990 atomic_inc(&kvm->mm->mm_count);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500991 spin_lock_init(&kvm->mmu_lock);
Marcelo Tosatti84261922009-06-17 10:53:47 -0300992 spin_lock_init(&kvm->requests_lock);
Eddie Dong74906342007-06-19 18:05:03 +0300993 kvm_io_bus_init(&kvm->pio_bus);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400994 kvm_eventfd_init(kvm);
Shaohua Li11ec2802007-07-23 14:51:37 +0800995 mutex_init(&kvm->lock);
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300996 mutex_init(&kvm->irq_lock);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400997 kvm_io_bus_init(&kvm->mmio_bus);
Izik Eidus72dc67a2008-02-10 18:04:15 +0200998 init_rwsem(&kvm->slots_lock);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300999 atomic_set(&kvm->users_count, 1);
Rusty Russell5e58cfe2007-07-23 17:08:21 +10001000 spin_lock(&kvm_lock);
1001 list_add(&kvm->vm_list, &vm_list);
1002 spin_unlock(&kvm_lock);
Laurent Vivier5f94c172008-05-30 16:05:54 +02001003#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1004 kvm_coalesced_mmio_init(kvm);
1005#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08001006out:
Avi Kivityf17abe92007-02-21 19:28:04 +02001007 return kvm;
1008}
1009
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010/*
1011 * Free any memory in @free but not in @dont.
1012 */
1013static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
1014 struct kvm_memory_slot *dont)
1015{
Joerg Roedelec04b262009-06-19 15:16:23 +02001016 int i;
1017
Izik Eidus290fc382007-09-27 14:11:22 +02001018 if (!dont || free->rmap != dont->rmap)
1019 vfree(free->rmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020
1021 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
1022 vfree(free->dirty_bitmap);
1023
Joerg Roedelec04b262009-06-19 15:16:23 +02001024
1025 for (i = 0; i < KVM_NR_PAGE_SIZES - 1; ++i) {
1026 if (!dont || free->lpage_info[i] != dont->lpage_info[i]) {
1027 vfree(free->lpage_info[i]);
1028 free->lpage_info[i] = NULL;
1029 }
1030 }
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001031
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032 free->npages = 0;
Al Viro8b6d44c2007-02-09 16:38:40 +00001033 free->dirty_bitmap = NULL;
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001034 free->rmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001035}
1036
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08001037void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001038{
1039 int i;
1040
1041 for (i = 0; i < kvm->nmemslots; ++i)
Al Viro8b6d44c2007-02-09 16:38:40 +00001042 kvm_free_physmem_slot(&kvm->memslots[i], NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043}
1044
Avi Kivityf17abe92007-02-21 19:28:04 +02001045static void kvm_destroy_vm(struct kvm *kvm)
1046{
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001047 struct mm_struct *mm = kvm->mm;
1048
Sheng Yangad8ba2c2009-01-06 10:03:02 +08001049 kvm_arch_sync_events(kvm);
Avi Kivity133de902007-02-12 00:54:44 -08001050 spin_lock(&kvm_lock);
1051 list_del(&kvm->vm_list);
1052 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +02001053 kvm_free_irq_routing(kvm);
Eddie Dong74906342007-06-19 18:05:03 +03001054 kvm_io_bus_destroy(&kvm->pio_bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001055 kvm_io_bus_destroy(&kvm->mmio_bus);
Laurent Vivier5f94c172008-05-30 16:05:54 +02001056#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1057 if (kvm->coalesced_mmio_ring != NULL)
1058 free_page((unsigned long)kvm->coalesced_mmio_ring);
1059#endif
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001060#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
1061 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +02001062#else
1063 kvm_arch_flush_shadow(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001064#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08001065 kvm_arch_destroy_vm(kvm);
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001066 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +02001067}
1068
Izik Eidusd39f13b2008-03-30 16:01:25 +03001069void kvm_get_kvm(struct kvm *kvm)
1070{
1071 atomic_inc(&kvm->users_count);
1072}
1073EXPORT_SYMBOL_GPL(kvm_get_kvm);
1074
1075void kvm_put_kvm(struct kvm *kvm)
1076{
1077 if (atomic_dec_and_test(&kvm->users_count))
1078 kvm_destroy_vm(kvm);
1079}
1080EXPORT_SYMBOL_GPL(kvm_put_kvm);
1081
1082
Avi Kivityf17abe92007-02-21 19:28:04 +02001083static int kvm_vm_release(struct inode *inode, struct file *filp)
1084{
1085 struct kvm *kvm = filp->private_data;
1086
Gregory Haskins721eecb2009-05-20 10:30:49 -04001087 kvm_irqfd_release(kvm);
1088
Izik Eidusd39f13b2008-03-30 16:01:25 +03001089 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001090 return 0;
1091}
1092
Avi Kivity6aa8b732006-12-10 02:21:36 -08001093/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001094 * Allocate some memory and give it an address in the guest physical address
1095 * space.
1096 *
1097 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +08001098 *
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001099 * Must be called holding mmap_sem for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001100 */
Sheng Yangf78e0e22007-10-29 09:40:42 +08001101int __kvm_set_memory_region(struct kvm *kvm,
1102 struct kvm_userspace_memory_region *mem,
1103 int user_alloc)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001104{
1105 int r;
1106 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +02001107 unsigned long npages;
1108 unsigned long i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001109 struct kvm_memory_slot *memslot;
1110 struct kvm_memory_slot old, new;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001111
1112 r = -EINVAL;
1113 /* General sanity checks */
1114 if (mem->memory_size & (PAGE_SIZE - 1))
1115 goto out;
1116 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
1117 goto out;
Sheng Yange7cacd42008-11-11 15:30:40 +08001118 if (user_alloc && (mem->userspace_addr & (PAGE_SIZE - 1)))
Hollis Blanchard78749802008-11-07 13:32:12 -06001119 goto out;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001120 if (mem->slot >= KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121 goto out;
1122 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
1123 goto out;
1124
1125 memslot = &kvm->memslots[mem->slot];
1126 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
1127 npages = mem->memory_size >> PAGE_SHIFT;
1128
1129 if (!npages)
1130 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
1131
Avi Kivity6aa8b732006-12-10 02:21:36 -08001132 new = old = *memslot;
1133
1134 new.base_gfn = base_gfn;
1135 new.npages = npages;
1136 new.flags = mem->flags;
1137
1138 /* Disallow changing a memory slot's size. */
1139 r = -EINVAL;
1140 if (npages && old.npages && npages != old.npages)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001141 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142
1143 /* Check for overlaps */
1144 r = -EEXIST;
1145 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
1146 struct kvm_memory_slot *s = &kvm->memslots[i];
1147
Jan Kiszka4cd481f2009-04-13 11:59:32 +02001148 if (s == memslot || !s->npages)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001149 continue;
1150 if (!((base_gfn + npages <= s->base_gfn) ||
1151 (base_gfn >= s->base_gfn + s->npages)))
Sheng Yangf78e0e22007-10-29 09:40:42 +08001152 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001154
Avi Kivity6aa8b732006-12-10 02:21:36 -08001155 /* Free page dirty bitmap if unneeded */
1156 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +00001157 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001158
1159 r = -ENOMEM;
1160
1161 /* Allocate if a slot is being created */
Carsten Otteeff01142008-06-27 15:05:31 +02001162#ifndef CONFIG_S390
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001163 if (npages && !new.rmap) {
Mike Dayd77c26f2007-10-08 09:02:08 -04001164 new.rmap = vmalloc(npages * sizeof(struct page *));
Izik Eidus290fc382007-09-27 14:11:22 +02001165
1166 if (!new.rmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001167 goto out_free;
Izik Eidus290fc382007-09-27 14:11:22 +02001168
Izik Eidus290fc382007-09-27 14:11:22 +02001169 memset(new.rmap, 0, npages * sizeof(*new.rmap));
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001170
Izik Eidus80b14b52007-10-25 11:54:04 +02001171 new.user_alloc = user_alloc;
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02001172 /*
1173 * hva_to_rmmap() serialzies with the mmu_lock and to be
1174 * safe it has to ignore memslots with !user_alloc &&
1175 * !userspace_addr.
1176 */
1177 if (user_alloc)
1178 new.userspace_addr = mem->userspace_addr;
1179 else
1180 new.userspace_addr = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001181 }
Joerg Roedelec04b262009-06-19 15:16:23 +02001182 if (!npages)
1183 goto skip_lpage;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001184
Joerg Roedelec04b262009-06-19 15:16:23 +02001185 for (i = 0; i < KVM_NR_PAGE_SIZES - 1; ++i) {
Heiko Carstens28bcb112009-09-03 17:35:35 +02001186 unsigned long ugfn;
1187 unsigned long j;
1188 int lpages;
Joerg Roedelec04b262009-06-19 15:16:23 +02001189 int level = i + 2;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001190
Joerg Roedelec04b262009-06-19 15:16:23 +02001191 /* Avoid unused variable warning if no large pages */
1192 (void)level;
1193
1194 if (new.lpage_info[i])
1195 continue;
1196
1197 lpages = 1 + (base_gfn + npages - 1) /
1198 KVM_PAGES_PER_HPAGE(level);
1199 lpages -= base_gfn / KVM_PAGES_PER_HPAGE(level);
1200
1201 new.lpage_info[i] = vmalloc(lpages * sizeof(*new.lpage_info[i]));
1202
1203 if (!new.lpage_info[i])
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001204 goto out_free;
1205
Joerg Roedelec04b262009-06-19 15:16:23 +02001206 memset(new.lpage_info[i], 0,
1207 lpages * sizeof(*new.lpage_info[i]));
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001208
Joerg Roedelec04b262009-06-19 15:16:23 +02001209 if (base_gfn % KVM_PAGES_PER_HPAGE(level))
1210 new.lpage_info[i][0].write_count = 1;
1211 if ((base_gfn+npages) % KVM_PAGES_PER_HPAGE(level))
1212 new.lpage_info[i][lpages - 1].write_count = 1;
Avi Kivityac045272009-06-08 15:52:39 +03001213 ugfn = new.userspace_addr >> PAGE_SHIFT;
1214 /*
1215 * If the gfn and userspace address are not aligned wrt each
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001216 * other, or if explicitly asked to, disable large page
1217 * support for this slot
Avi Kivityac045272009-06-08 15:52:39 +03001218 */
Joerg Roedelec04b262009-06-19 15:16:23 +02001219 if ((base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001220 !largepages_enabled)
Joerg Roedelec04b262009-06-19 15:16:23 +02001221 for (j = 0; j < lpages; ++j)
1222 new.lpage_info[i][j].write_count = 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001223 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001224
Joerg Roedelec04b262009-06-19 15:16:23 +02001225skip_lpage:
1226
Avi Kivity6aa8b732006-12-10 02:21:36 -08001227 /* Allocate page dirty bitmap if needed */
1228 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
1229 unsigned dirty_bytes = ALIGN(npages, BITS_PER_LONG) / 8;
1230
1231 new.dirty_bitmap = vmalloc(dirty_bytes);
1232 if (!new.dirty_bitmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001233 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001234 memset(new.dirty_bitmap, 0, dirty_bytes);
Izik Eiduse2445842009-06-10 19:23:24 +03001235 if (old.npages)
1236 kvm_arch_flush_shadow(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001237 }
Christian Borntraeger3eea8432009-06-23 17:24:06 +02001238#else /* not defined CONFIG_S390 */
1239 new.user_alloc = user_alloc;
1240 if (user_alloc)
1241 new.userspace_addr = mem->userspace_addr;
Carsten Otteeff01142008-06-27 15:05:31 +02001242#endif /* not defined CONFIG_S390 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001243
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001244 if (!npages)
1245 kvm_arch_flush_shadow(kvm);
1246
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02001247 spin_lock(&kvm->mmu_lock);
1248 if (mem->slot >= kvm->nmemslots)
1249 kvm->nmemslots = mem->slot + 1;
1250
Avi Kivity6aa8b732006-12-10 02:21:36 -08001251 *memslot = new;
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02001252 spin_unlock(&kvm->mmu_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001253
Zhang Xiantao0de10342007-11-20 16:25:04 +08001254 r = kvm_arch_set_memory_region(kvm, mem, old, user_alloc);
1255 if (r) {
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02001256 spin_lock(&kvm->mmu_lock);
Zhang Xiantao0de10342007-11-20 16:25:04 +08001257 *memslot = old;
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02001258 spin_unlock(&kvm->mmu_lock);
Zhang Xiantao0de10342007-11-20 16:25:04 +08001259 goto out_free;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08001260 }
1261
Glauber Costa6f897242008-12-03 13:40:51 -02001262 kvm_free_physmem_slot(&old, npages ? &new : NULL);
1263 /* Slot deletion case: we have to update the current slot */
Marcelo Tosattib43b1902009-05-12 18:55:44 -03001264 spin_lock(&kvm->mmu_lock);
Glauber Costa6f897242008-12-03 13:40:51 -02001265 if (!npages)
1266 *memslot = old;
Marcelo Tosattib43b1902009-05-12 18:55:44 -03001267 spin_unlock(&kvm->mmu_lock);
Xiantao Zhang8a98f662008-10-06 13:47:38 +08001268#ifdef CONFIG_DMAR
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03001269 /* map the pages in iommu page table */
1270 r = kvm_iommu_map_pages(kvm, base_gfn, npages);
1271 if (r)
1272 goto out;
Xiantao Zhang8a98f662008-10-06 13:47:38 +08001273#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001274 return 0;
1275
Sheng Yangf78e0e22007-10-29 09:40:42 +08001276out_free:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001277 kvm_free_physmem_slot(&new, &old);
1278out:
1279 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +02001280
1281}
Sheng Yangf78e0e22007-10-29 09:40:42 +08001282EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
1283
1284int kvm_set_memory_region(struct kvm *kvm,
1285 struct kvm_userspace_memory_region *mem,
1286 int user_alloc)
1287{
1288 int r;
1289
Izik Eidus72dc67a2008-02-10 18:04:15 +02001290 down_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001291 r = __kvm_set_memory_region(kvm, mem, user_alloc);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001292 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001293 return r;
1294}
Izik Eidus210c7c42007-10-24 23:52:57 +02001295EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1296
Carsten Otte1fe779f2007-10-29 16:08:35 +01001297int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1298 struct
1299 kvm_userspace_memory_region *mem,
1300 int user_alloc)
Izik Eidus210c7c42007-10-24 23:52:57 +02001301{
Izik Eiduse0d62c72007-10-24 23:57:46 +02001302 if (mem->slot >= KVM_MEMORY_SLOTS)
1303 return -EINVAL;
Izik Eidus210c7c42007-10-24 23:52:57 +02001304 return kvm_set_memory_region(kvm, mem, user_alloc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001305}
1306
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001307int kvm_get_dirty_log(struct kvm *kvm,
1308 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001309{
1310 struct kvm_memory_slot *memslot;
1311 int r, i;
1312 int n;
1313 unsigned long any = 0;
1314
Avi Kivity6aa8b732006-12-10 02:21:36 -08001315 r = -EINVAL;
1316 if (log->slot >= KVM_MEMORY_SLOTS)
1317 goto out;
1318
1319 memslot = &kvm->memslots[log->slot];
1320 r = -ENOENT;
1321 if (!memslot->dirty_bitmap)
1322 goto out;
1323
Uri Lublincd1a4a92007-02-22 16:43:09 +02001324 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325
Uri Lublincd1a4a92007-02-22 16:43:09 +02001326 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001327 any = memslot->dirty_bitmap[i];
1328
1329 r = -EFAULT;
1330 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
1331 goto out;
1332
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001333 if (any)
1334 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001335
1336 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001337out:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001338 return r;
1339}
1340
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001341void kvm_disable_largepages(void)
1342{
1343 largepages_enabled = false;
1344}
1345EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1346
Izik Eiduscea7bb22007-10-17 19:17:48 +02001347int is_error_page(struct page *page)
1348{
1349 return page == bad_page;
1350}
1351EXPORT_SYMBOL_GPL(is_error_page);
1352
Anthony Liguori35149e22008-04-02 14:46:56 -05001353int is_error_pfn(pfn_t pfn)
1354{
1355 return pfn == bad_pfn;
1356}
1357EXPORT_SYMBOL_GPL(is_error_pfn);
1358
Izik Eidusf9d46eb2007-11-11 22:02:22 +02001359static inline unsigned long bad_hva(void)
1360{
1361 return PAGE_OFFSET;
1362}
1363
1364int kvm_is_error_hva(unsigned long addr)
1365{
1366 return addr == bad_hva();
1367}
1368EXPORT_SYMBOL_GPL(kvm_is_error_hva);
1369
Izik Eidus28430992008-10-03 17:40:32 +03001370struct kvm_memory_slot *gfn_to_memslot_unaliased(struct kvm *kvm, gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371{
1372 int i;
1373
1374 for (i = 0; i < kvm->nmemslots; ++i) {
1375 struct kvm_memory_slot *memslot = &kvm->memslots[i];
1376
1377 if (gfn >= memslot->base_gfn
1378 && gfn < memslot->base_gfn + memslot->npages)
1379 return memslot;
1380 }
Al Viro8b6d44c2007-02-09 16:38:40 +00001381 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001382}
Izik Eidus28430992008-10-03 17:40:32 +03001383EXPORT_SYMBOL_GPL(gfn_to_memslot_unaliased);
Avi Kivitye8207542007-03-30 16:54:30 +03001384
1385struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1386{
1387 gfn = unalias_gfn(kvm, gfn);
Izik Eidus28430992008-10-03 17:40:32 +03001388 return gfn_to_memslot_unaliased(kvm, gfn);
Avi Kivitye8207542007-03-30 16:54:30 +03001389}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001390
Izik Eiduse0d62c72007-10-24 23:57:46 +02001391int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1392{
1393 int i;
1394
1395 gfn = unalias_gfn(kvm, gfn);
1396 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
1397 struct kvm_memory_slot *memslot = &kvm->memslots[i];
1398
1399 if (gfn >= memslot->base_gfn
1400 && gfn < memslot->base_gfn + memslot->npages)
1401 return 1;
1402 }
1403 return 0;
1404}
1405EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1406
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001407unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
Izik Eidus539cb662007-11-11 22:05:04 +02001408{
1409 struct kvm_memory_slot *slot;
1410
1411 gfn = unalias_gfn(kvm, gfn);
Izik Eidus28430992008-10-03 17:40:32 +03001412 slot = gfn_to_memslot_unaliased(kvm, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001413 if (!slot)
1414 return bad_hva();
1415 return (slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE);
1416}
Sheng Yang0d150292008-04-25 21:44:50 +08001417EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001418
Anthony Liguori35149e22008-04-02 14:46:56 -05001419pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
Avi Kivity954bbbc22007-03-30 14:02:32 +03001420{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001421 struct page *page[1];
Izik Eidus539cb662007-11-11 22:05:04 +02001422 unsigned long addr;
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001423 int npages;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001424 pfn_t pfn;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001425
Avi Kivity60395222007-10-21 11:03:36 +02001426 might_sleep();
1427
Izik Eidus539cb662007-11-11 22:05:04 +02001428 addr = gfn_to_hva(kvm, gfn);
1429 if (kvm_is_error_hva(addr)) {
Izik Eidus8a7ae052007-10-18 11:09:33 +02001430 get_page(bad_page);
Anthony Liguori35149e22008-04-02 14:46:56 -05001431 return page_to_pfn(bad_page);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001432 }
Izik Eidus8a7ae052007-10-18 11:09:33 +02001433
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001434 npages = get_user_pages_fast(addr, 1, 1, page);
Izik Eidus539cb662007-11-11 22:05:04 +02001435
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001436 if (unlikely(npages != 1)) {
1437 struct vm_area_struct *vma;
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001438
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001439 down_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001440 vma = find_vma(current->mm, addr);
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001441
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001442 if (vma == NULL || addr < vma->vm_start ||
1443 !(vma->vm_flags & VM_PFNMAP)) {
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001444 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001445 get_page(bad_page);
1446 return page_to_pfn(bad_page);
1447 }
1448
1449 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001450 up_read(&current->mm->mmap_sem);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001451 BUG_ON(!kvm_is_mmio_pfn(pfn));
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001452 } else
1453 pfn = page_to_pfn(page[0]);
1454
1455 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001456}
1457
1458EXPORT_SYMBOL_GPL(gfn_to_pfn);
1459
1460struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1461{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001462 pfn_t pfn;
1463
1464 pfn = gfn_to_pfn(kvm, gfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001465 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001466 return pfn_to_page(pfn);
1467
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001468 WARN_ON(kvm_is_mmio_pfn(pfn));
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001469
1470 get_page(bad_page);
1471 return bad_page;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001472}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001473
Avi Kivity954bbbc22007-03-30 14:02:32 +03001474EXPORT_SYMBOL_GPL(gfn_to_page);
1475
Izik Eidusb4231d62007-11-20 11:49:33 +02001476void kvm_release_page_clean(struct page *page)
1477{
Anthony Liguori35149e22008-04-02 14:46:56 -05001478 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001479}
1480EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1481
Anthony Liguori35149e22008-04-02 14:46:56 -05001482void kvm_release_pfn_clean(pfn_t pfn)
1483{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001484 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001485 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001486}
1487EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1488
Izik Eidusb4231d62007-11-20 11:49:33 +02001489void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001490{
Anthony Liguori35149e22008-04-02 14:46:56 -05001491 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001492}
Izik Eidusb4231d62007-11-20 11:49:33 +02001493EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001494
Anthony Liguori35149e22008-04-02 14:46:56 -05001495void kvm_release_pfn_dirty(pfn_t pfn)
1496{
1497 kvm_set_pfn_dirty(pfn);
1498 kvm_release_pfn_clean(pfn);
1499}
1500EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
1501
1502void kvm_set_page_dirty(struct page *page)
1503{
1504 kvm_set_pfn_dirty(page_to_pfn(page));
1505}
1506EXPORT_SYMBOL_GPL(kvm_set_page_dirty);
1507
1508void kvm_set_pfn_dirty(pfn_t pfn)
1509{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001510 if (!kvm_is_mmio_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001511 struct page *page = pfn_to_page(pfn);
1512 if (!PageReserved(page))
1513 SetPageDirty(page);
1514 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001515}
1516EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1517
1518void kvm_set_pfn_accessed(pfn_t pfn)
1519{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001520 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001521 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001522}
1523EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1524
1525void kvm_get_pfn(pfn_t pfn)
1526{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001527 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001528 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001529}
1530EXPORT_SYMBOL_GPL(kvm_get_pfn);
1531
Izik Eidus195aefd2007-10-01 22:14:18 +02001532static int next_segment(unsigned long len, int offset)
1533{
1534 if (len > PAGE_SIZE - offset)
1535 return PAGE_SIZE - offset;
1536 else
1537 return len;
1538}
1539
1540int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1541 int len)
1542{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001543 int r;
1544 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001545
Izik Eiduse0506bc2007-11-11 22:10:22 +02001546 addr = gfn_to_hva(kvm, gfn);
1547 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001548 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001549 r = copy_from_user(data, (void __user *)addr + offset, len);
1550 if (r)
1551 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001552 return 0;
1553}
1554EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1555
1556int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1557{
1558 gfn_t gfn = gpa >> PAGE_SHIFT;
1559 int seg;
1560 int offset = offset_in_page(gpa);
1561 int ret;
1562
1563 while ((seg = next_segment(len, offset)) != 0) {
1564 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1565 if (ret < 0)
1566 return ret;
1567 offset = 0;
1568 len -= seg;
1569 data += seg;
1570 ++gfn;
1571 }
1572 return 0;
1573}
1574EXPORT_SYMBOL_GPL(kvm_read_guest);
1575
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001576int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1577 unsigned long len)
1578{
1579 int r;
1580 unsigned long addr;
1581 gfn_t gfn = gpa >> PAGE_SHIFT;
1582 int offset = offset_in_page(gpa);
1583
1584 addr = gfn_to_hva(kvm, gfn);
1585 if (kvm_is_error_hva(addr))
1586 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001587 pagefault_disable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001588 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001589 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001590 if (r)
1591 return -EFAULT;
1592 return 0;
1593}
1594EXPORT_SYMBOL(kvm_read_guest_atomic);
1595
Izik Eidus195aefd2007-10-01 22:14:18 +02001596int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1597 int offset, int len)
1598{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001599 int r;
1600 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001601
Izik Eiduse0506bc2007-11-11 22:10:22 +02001602 addr = gfn_to_hva(kvm, gfn);
1603 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001604 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001605 r = copy_to_user((void __user *)addr + offset, data, len);
1606 if (r)
1607 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001608 mark_page_dirty(kvm, gfn);
1609 return 0;
1610}
1611EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1612
1613int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1614 unsigned long len)
1615{
1616 gfn_t gfn = gpa >> PAGE_SHIFT;
1617 int seg;
1618 int offset = offset_in_page(gpa);
1619 int ret;
1620
1621 while ((seg = next_segment(len, offset)) != 0) {
1622 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1623 if (ret < 0)
1624 return ret;
1625 offset = 0;
1626 len -= seg;
1627 data += seg;
1628 ++gfn;
1629 }
1630 return 0;
1631}
1632
1633int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1634{
Izik Eidus3e021bf2007-11-19 11:16:57 +02001635 return kvm_write_guest_page(kvm, gfn, empty_zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001636}
1637EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1638
1639int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1640{
1641 gfn_t gfn = gpa >> PAGE_SHIFT;
1642 int seg;
1643 int offset = offset_in_page(gpa);
1644 int ret;
1645
1646 while ((seg = next_segment(len, offset)) != 0) {
1647 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1648 if (ret < 0)
1649 return ret;
1650 offset = 0;
1651 len -= seg;
1652 ++gfn;
1653 }
1654 return 0;
1655}
1656EXPORT_SYMBOL_GPL(kvm_clear_guest);
1657
Avi Kivity6aa8b732006-12-10 02:21:36 -08001658void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1659{
Nguyen Anh Quynh31389942007-06-05 10:35:19 +03001660 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001661
Uri Lublin3b6fff12007-10-30 10:42:09 +02001662 gfn = unalias_gfn(kvm, gfn);
Izik Eidus28430992008-10-03 17:40:32 +03001663 memslot = gfn_to_memslot_unaliased(kvm, gfn);
Rusty Russell7e9d6192007-07-31 20:41:14 +10001664 if (memslot && memslot->dirty_bitmap) {
1665 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001666
Rusty Russell7e9d6192007-07-31 20:41:14 +10001667 /* avoid RMW */
1668 if (!test_bit(rel_gfn, memslot->dirty_bitmap))
1669 set_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001670 }
1671}
1672
Eddie Dongb6958ce2007-07-18 12:15:21 +03001673/*
1674 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1675 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001676void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001677{
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001678 DEFINE_WAIT(wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001679
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001680 for (;;) {
1681 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001682
Gleb Natapova1b37102009-07-09 15:33:52 +03001683 if (kvm_arch_vcpu_runnable(vcpu)) {
Marcelo Tosattid7690172008-09-08 15:23:48 -03001684 set_bit(KVM_REQ_UNHALT, &vcpu->requests);
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001685 break;
Marcelo Tosattid7690172008-09-08 15:23:48 -03001686 }
Gleb Natapov09cec752009-03-23 15:11:44 +02001687 if (kvm_cpu_has_pending_timer(vcpu))
1688 break;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001689 if (signal_pending(current))
1690 break;
1691
Eddie Dongb6958ce2007-07-18 12:15:21 +03001692 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001693 }
1694
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001695 finish_wait(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001696}
1697
Avi Kivity6aa8b732006-12-10 02:21:36 -08001698void kvm_resched(struct kvm_vcpu *vcpu)
1699{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001700 if (!need_resched())
1701 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001702 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001703}
1704EXPORT_SYMBOL_GPL(kvm_resched);
1705
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001706static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001707{
1708 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001709 struct page *page;
1710
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001711 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001712 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001713#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001714 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001715 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001716#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001717#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1718 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1719 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1720#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001721 else
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001722 return VM_FAULT_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001723 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001724 vmf->page = page;
1725 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001726}
1727
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001728static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001729 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001730};
1731
1732static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1733{
1734 vma->vm_ops = &kvm_vcpu_vm_ops;
1735 return 0;
1736}
1737
Avi Kivitybccf2152007-02-21 18:04:26 +02001738static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1739{
1740 struct kvm_vcpu *vcpu = filp->private_data;
1741
Al Viro66c0b392008-04-19 20:33:56 +01001742 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001743 return 0;
1744}
1745
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001746static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001747 .release = kvm_vcpu_release,
1748 .unlocked_ioctl = kvm_vcpu_ioctl,
1749 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001750 .mmap = kvm_vcpu_mmap,
Avi Kivitybccf2152007-02-21 18:04:26 +02001751};
1752
1753/*
1754 * Allocates an inode for the vcpu.
1755 */
1756static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1757{
Gleb Natapov73880c82009-06-09 15:56:28 +03001758 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, 0);
Avi Kivitybccf2152007-02-21 18:04:26 +02001759}
1760
Avi Kivityc5ea7662007-02-20 18:41:05 +02001761/*
1762 * Creates some virtual cpus. Good luck creating more than one.
1763 */
Gleb Natapov73880c82009-06-09 15:56:28 +03001764static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02001765{
1766 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001767 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001768
Gleb Natapov73880c82009-06-09 15:56:28 +03001769 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001770 if (IS_ERR(vcpu))
1771 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001772
Avi Kivity15ad7142007-07-11 18:17:21 +03001773 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1774
Avi Kivity26e52152007-11-20 15:30:24 +02001775 r = kvm_arch_vcpu_setup(vcpu);
1776 if (r)
Glauber Costa7d8fece2008-09-17 23:16:59 -03001777 return r;
Avi Kivity26e52152007-11-20 15:30:24 +02001778
Shaohua Li11ec2802007-07-23 14:51:37 +08001779 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001780 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1781 r = -EINVAL;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001782 goto vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001783 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001784
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001785 kvm_for_each_vcpu(r, v, kvm)
1786 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03001787 r = -EEXIST;
1788 goto vcpu_destroy;
1789 }
1790
1791 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001792
1793 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01001794 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001795 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03001796 if (r < 0) {
1797 kvm_put_kvm(kvm);
1798 goto vcpu_destroy;
1799 }
1800
1801 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
1802 smp_wmb();
1803 atomic_inc(&kvm->online_vcpus);
1804
1805#ifdef CONFIG_KVM_APIC_ARCHITECTURE
1806 if (kvm->bsp_vcpu_id == id)
1807 kvm->bsp_vcpu = vcpu;
1808#endif
1809 mutex_unlock(&kvm->lock);
Avi Kivitybccf2152007-02-21 18:04:26 +02001810 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001811
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001812vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03001813 mutex_unlock(&kvm->lock);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06001814 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001815 return r;
1816}
1817
Avi Kivity1961d272007-03-05 19:46:05 +02001818static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1819{
1820 if (sigset) {
1821 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1822 vcpu->sigset_active = 1;
1823 vcpu->sigset = *sigset;
1824 } else
1825 vcpu->sigset_active = 0;
1826 return 0;
1827}
1828
Sheng Yangc1e01512009-02-25 17:22:26 +08001829#ifdef __KVM_HAVE_MSIX
1830static int kvm_vm_ioctl_set_msix_nr(struct kvm *kvm,
1831 struct kvm_assigned_msix_nr *entry_nr)
1832{
1833 int r = 0;
1834 struct kvm_assigned_dev_kernel *adev;
1835
1836 mutex_lock(&kvm->lock);
1837
1838 adev = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
1839 entry_nr->assigned_dev_id);
1840 if (!adev) {
1841 r = -EINVAL;
1842 goto msix_nr_out;
1843 }
1844
1845 if (adev->entries_nr == 0) {
1846 adev->entries_nr = entry_nr->entry_nr;
1847 if (adev->entries_nr == 0 ||
1848 adev->entries_nr >= KVM_MAX_MSIX_PER_DEV) {
1849 r = -EINVAL;
1850 goto msix_nr_out;
1851 }
1852
1853 adev->host_msix_entries = kzalloc(sizeof(struct msix_entry) *
1854 entry_nr->entry_nr,
1855 GFP_KERNEL);
1856 if (!adev->host_msix_entries) {
1857 r = -ENOMEM;
1858 goto msix_nr_out;
1859 }
1860 adev->guest_msix_entries = kzalloc(
1861 sizeof(struct kvm_guest_msix_entry) *
1862 entry_nr->entry_nr, GFP_KERNEL);
1863 if (!adev->guest_msix_entries) {
1864 kfree(adev->host_msix_entries);
1865 r = -ENOMEM;
1866 goto msix_nr_out;
1867 }
1868 } else /* Not allowed set MSI-X number twice */
1869 r = -EINVAL;
1870msix_nr_out:
1871 mutex_unlock(&kvm->lock);
1872 return r;
1873}
1874
1875static int kvm_vm_ioctl_set_msix_entry(struct kvm *kvm,
1876 struct kvm_assigned_msix_entry *entry)
1877{
1878 int r = 0, i;
1879 struct kvm_assigned_dev_kernel *adev;
1880
1881 mutex_lock(&kvm->lock);
1882
1883 adev = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
1884 entry->assigned_dev_id);
1885
1886 if (!adev) {
1887 r = -EINVAL;
1888 goto msix_entry_out;
1889 }
1890
1891 for (i = 0; i < adev->entries_nr; i++)
1892 if (adev->guest_msix_entries[i].vector == 0 ||
1893 adev->guest_msix_entries[i].entry == entry->entry) {
1894 adev->guest_msix_entries[i].entry = entry->entry;
1895 adev->guest_msix_entries[i].vector = entry->gsi;
1896 adev->host_msix_entries[i].entry = entry->entry;
1897 break;
1898 }
1899 if (i == adev->entries_nr) {
1900 r = -ENOSPC;
1901 goto msix_entry_out;
1902 }
1903
1904msix_entry_out:
1905 mutex_unlock(&kvm->lock);
1906
1907 return r;
1908}
1909#endif
1910
Avi Kivitybccf2152007-02-21 18:04:26 +02001911static long kvm_vcpu_ioctl(struct file *filp,
1912 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001913{
Avi Kivitybccf2152007-02-21 18:04:26 +02001914 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f366982007-02-09 16:38:35 +00001915 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02001916 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001917 struct kvm_fpu *fpu = NULL;
1918 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001919
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001920 if (vcpu->kvm->mm != current->mm)
1921 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001922 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001923 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001924 r = -EINVAL;
1925 if (arg)
1926 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05001927 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001928 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001929 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001930 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001931
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001932 r = -ENOMEM;
1933 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1934 if (!kvm_regs)
1935 goto out;
1936 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001937 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001938 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001939 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001940 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
1941 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001942 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001943out_free1:
1944 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001945 break;
1946 }
1947 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001948 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001949
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001950 r = -ENOMEM;
1951 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1952 if (!kvm_regs)
1953 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001954 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001955 if (copy_from_user(kvm_regs, argp, sizeof(struct kvm_regs)))
1956 goto out_free2;
1957 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001958 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001959 goto out_free2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001960 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001961out_free2:
1962 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001963 break;
1964 }
1965 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001966 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1967 r = -ENOMEM;
1968 if (!kvm_sregs)
1969 goto out;
1970 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001971 if (r)
1972 goto out;
1973 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001974 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001975 goto out;
1976 r = 0;
1977 break;
1978 }
1979 case KVM_SET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001980 kvm_sregs = kmalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1981 r = -ENOMEM;
1982 if (!kvm_sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001983 goto out;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001984 r = -EFAULT;
1985 if (copy_from_user(kvm_sregs, argp, sizeof(struct kvm_sregs)))
1986 goto out;
1987 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001988 if (r)
1989 goto out;
1990 r = 0;
1991 break;
1992 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03001993 case KVM_GET_MP_STATE: {
1994 struct kvm_mp_state mp_state;
1995
1996 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
1997 if (r)
1998 goto out;
1999 r = -EFAULT;
2000 if (copy_to_user(argp, &mp_state, sizeof mp_state))
2001 goto out;
2002 r = 0;
2003 break;
2004 }
2005 case KVM_SET_MP_STATE: {
2006 struct kvm_mp_state mp_state;
2007
2008 r = -EFAULT;
2009 if (copy_from_user(&mp_state, argp, sizeof mp_state))
2010 goto out;
2011 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
2012 if (r)
2013 goto out;
2014 r = 0;
2015 break;
2016 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002017 case KVM_TRANSLATE: {
2018 struct kvm_translation tr;
2019
2020 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002021 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002022 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002023 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002024 if (r)
2025 goto out;
2026 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002027 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002028 goto out;
2029 r = 0;
2030 break;
2031 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002032 case KVM_SET_GUEST_DEBUG: {
2033 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002034
2035 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002036 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002037 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002038 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002039 if (r)
2040 goto out;
2041 r = 0;
2042 break;
2043 }
Avi Kivity1961d272007-03-05 19:46:05 +02002044 case KVM_SET_SIGNAL_MASK: {
2045 struct kvm_signal_mask __user *sigmask_arg = argp;
2046 struct kvm_signal_mask kvm_sigmask;
2047 sigset_t sigset, *p;
2048
2049 p = NULL;
2050 if (argp) {
2051 r = -EFAULT;
2052 if (copy_from_user(&kvm_sigmask, argp,
2053 sizeof kvm_sigmask))
2054 goto out;
2055 r = -EINVAL;
2056 if (kvm_sigmask.len != sizeof sigset)
2057 goto out;
2058 r = -EFAULT;
2059 if (copy_from_user(&sigset, sigmask_arg->sigset,
2060 sizeof sigset))
2061 goto out;
2062 p = &sigset;
2063 }
2064 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2065 break;
2066 }
Avi Kivityb8836732007-04-01 16:34:31 +03002067 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002068 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2069 r = -ENOMEM;
2070 if (!fpu)
2071 goto out;
2072 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002073 if (r)
2074 goto out;
2075 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002076 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002077 goto out;
2078 r = 0;
2079 break;
2080 }
2081 case KVM_SET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002082 fpu = kmalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2083 r = -ENOMEM;
2084 if (!fpu)
Avi Kivityb8836732007-04-01 16:34:31 +03002085 goto out;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002086 r = -EFAULT;
2087 if (copy_from_user(fpu, argp, sizeof(struct kvm_fpu)))
2088 goto out;
2089 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002090 if (r)
2091 goto out;
2092 r = 0;
2093 break;
2094 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002095 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002096 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002097 }
2098out:
Dave Hansenfa3795a2008-08-11 10:01:46 -07002099 kfree(fpu);
2100 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002101 return r;
2102}
2103
2104static long kvm_vm_ioctl(struct file *filp,
2105 unsigned int ioctl, unsigned long arg)
2106{
2107 struct kvm *kvm = filp->private_data;
2108 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002109 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002110
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002111 if (kvm->mm != current->mm)
2112 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002113 switch (ioctl) {
2114 case KVM_CREATE_VCPU:
2115 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
2116 if (r < 0)
2117 goto out;
2118 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002119 case KVM_SET_USER_MEMORY_REGION: {
2120 struct kvm_userspace_memory_region kvm_userspace_mem;
2121
2122 r = -EFAULT;
2123 if (copy_from_user(&kvm_userspace_mem, argp,
2124 sizeof kvm_userspace_mem))
2125 goto out;
2126
2127 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002128 if (r)
2129 goto out;
2130 break;
2131 }
2132 case KVM_GET_DIRTY_LOG: {
2133 struct kvm_dirty_log log;
2134
2135 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002136 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002137 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002138 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002139 if (r)
2140 goto out;
2141 break;
2142 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002143#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2144 case KVM_REGISTER_COALESCED_MMIO: {
2145 struct kvm_coalesced_mmio_zone zone;
2146 r = -EFAULT;
2147 if (copy_from_user(&zone, argp, sizeof zone))
2148 goto out;
2149 r = -ENXIO;
2150 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
2151 if (r)
2152 goto out;
2153 r = 0;
2154 break;
2155 }
2156 case KVM_UNREGISTER_COALESCED_MMIO: {
2157 struct kvm_coalesced_mmio_zone zone;
2158 r = -EFAULT;
2159 if (copy_from_user(&zone, argp, sizeof zone))
2160 goto out;
2161 r = -ENXIO;
2162 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
2163 if (r)
2164 goto out;
2165 r = 0;
2166 break;
2167 }
2168#endif
Xiantao Zhang8a98f662008-10-06 13:47:38 +08002169#ifdef KVM_CAP_DEVICE_ASSIGNMENT
2170 case KVM_ASSIGN_PCI_DEVICE: {
2171 struct kvm_assigned_pci_dev assigned_dev;
2172
2173 r = -EFAULT;
2174 if (copy_from_user(&assigned_dev, argp, sizeof assigned_dev))
2175 goto out;
2176 r = kvm_vm_ioctl_assign_device(kvm, &assigned_dev);
2177 if (r)
2178 goto out;
2179 break;
2180 }
2181 case KVM_ASSIGN_IRQ: {
Sheng Yange56d5322009-03-12 21:45:39 +08002182 r = -EOPNOTSUPP;
2183 break;
2184 }
2185#ifdef KVM_CAP_ASSIGN_DEV_IRQ
2186 case KVM_ASSIGN_DEV_IRQ: {
Xiantao Zhang8a98f662008-10-06 13:47:38 +08002187 struct kvm_assigned_irq assigned_irq;
2188
2189 r = -EFAULT;
2190 if (copy_from_user(&assigned_irq, argp, sizeof assigned_irq))
2191 goto out;
2192 r = kvm_vm_ioctl_assign_irq(kvm, &assigned_irq);
2193 if (r)
2194 goto out;
2195 break;
2196 }
Sheng Yange56d5322009-03-12 21:45:39 +08002197 case KVM_DEASSIGN_DEV_IRQ: {
2198 struct kvm_assigned_irq assigned_irq;
2199
2200 r = -EFAULT;
2201 if (copy_from_user(&assigned_irq, argp, sizeof assigned_irq))
2202 goto out;
2203 r = kvm_vm_ioctl_deassign_dev_irq(kvm, &assigned_irq);
2204 if (r)
2205 goto out;
2206 break;
2207 }
2208#endif
Xiantao Zhang8a98f662008-10-06 13:47:38 +08002209#endif
Weidong Han0a920352008-12-02 21:24:23 +08002210#ifdef KVM_CAP_DEVICE_DEASSIGNMENT
2211 case KVM_DEASSIGN_PCI_DEVICE: {
2212 struct kvm_assigned_pci_dev assigned_dev;
2213
2214 r = -EFAULT;
2215 if (copy_from_user(&assigned_dev, argp, sizeof assigned_dev))
2216 goto out;
2217 r = kvm_vm_ioctl_deassign_device(kvm, &assigned_dev);
2218 if (r)
2219 goto out;
2220 break;
2221 }
2222#endif
Avi Kivity399ec802008-11-19 13:58:46 +02002223#ifdef KVM_CAP_IRQ_ROUTING
2224 case KVM_SET_GSI_ROUTING: {
2225 struct kvm_irq_routing routing;
2226 struct kvm_irq_routing __user *urouting;
2227 struct kvm_irq_routing_entry *entries;
2228
2229 r = -EFAULT;
2230 if (copy_from_user(&routing, argp, sizeof(routing)))
2231 goto out;
2232 r = -EINVAL;
2233 if (routing.nr >= KVM_MAX_IRQ_ROUTES)
2234 goto out;
2235 if (routing.flags)
2236 goto out;
2237 r = -ENOMEM;
2238 entries = vmalloc(routing.nr * sizeof(*entries));
2239 if (!entries)
2240 goto out;
2241 r = -EFAULT;
2242 urouting = argp;
2243 if (copy_from_user(entries, urouting->entries,
2244 routing.nr * sizeof(*entries)))
2245 goto out_free_irq_routing;
2246 r = kvm_set_irq_routing(kvm, entries, routing.nr,
2247 routing.flags);
2248 out_free_irq_routing:
2249 vfree(entries);
2250 break;
2251 }
Avi Kivity6621fbc2009-08-10 17:00:52 +03002252#endif /* KVM_CAP_IRQ_ROUTING */
Sheng Yangc1e01512009-02-25 17:22:26 +08002253#ifdef __KVM_HAVE_MSIX
2254 case KVM_ASSIGN_SET_MSIX_NR: {
2255 struct kvm_assigned_msix_nr entry_nr;
2256 r = -EFAULT;
2257 if (copy_from_user(&entry_nr, argp, sizeof entry_nr))
2258 goto out;
2259 r = kvm_vm_ioctl_set_msix_nr(kvm, &entry_nr);
2260 if (r)
2261 goto out;
2262 break;
2263 }
2264 case KVM_ASSIGN_SET_MSIX_ENTRY: {
2265 struct kvm_assigned_msix_entry entry;
2266 r = -EFAULT;
2267 if (copy_from_user(&entry, argp, sizeof entry))
2268 goto out;
2269 r = kvm_vm_ioctl_set_msix_entry(kvm, &entry);
2270 if (r)
2271 goto out;
2272 break;
2273 }
Avi Kivity399ec802008-11-19 13:58:46 +02002274#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04002275 case KVM_IRQFD: {
2276 struct kvm_irqfd data;
2277
2278 r = -EFAULT;
2279 if (copy_from_user(&data, argp, sizeof data))
2280 goto out;
2281 r = kvm_irqfd(kvm, data.fd, data.gsi, data.flags);
2282 break;
2283 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002284 case KVM_IOEVENTFD: {
2285 struct kvm_ioeventfd data;
2286
2287 r = -EFAULT;
2288 if (copy_from_user(&data, argp, sizeof data))
2289 goto out;
2290 r = kvm_ioeventfd(kvm, &data);
2291 break;
2292 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002293#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2294 case KVM_SET_BOOT_CPU_ID:
2295 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002296 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002297 if (atomic_read(&kvm->online_vcpus) != 0)
2298 r = -EBUSY;
2299 else
2300 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002301 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002302 break;
2303#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02002304 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002305 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002306 }
2307out:
2308 return r;
2309}
2310
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002311static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivityf17abe92007-02-21 19:28:04 +02002312{
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002313 struct page *page[1];
2314 unsigned long addr;
2315 int npages;
2316 gfn_t gfn = vmf->pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02002317 struct kvm *kvm = vma->vm_file->private_data;
Avi Kivityf17abe92007-02-21 19:28:04 +02002318
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002319 addr = gfn_to_hva(kvm, gfn);
2320 if (kvm_is_error_hva(addr))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002321 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002322
2323 npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page,
2324 NULL);
2325 if (unlikely(npages != 1))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002326 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002327
2328 vmf->page = page[0];
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002329 return 0;
Avi Kivityf17abe92007-02-21 19:28:04 +02002330}
2331
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002332static const struct vm_operations_struct kvm_vm_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002333 .fault = kvm_vm_fault,
Avi Kivityf17abe92007-02-21 19:28:04 +02002334};
2335
2336static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
2337{
2338 vma->vm_ops = &kvm_vm_vm_ops;
2339 return 0;
2340}
2341
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002342static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002343 .release = kvm_vm_release,
2344 .unlocked_ioctl = kvm_vm_ioctl,
2345 .compat_ioctl = kvm_vm_ioctl,
2346 .mmap = kvm_vm_mmap,
2347};
2348
2349static int kvm_dev_ioctl_create_vm(void)
2350{
Al Viro2030a422008-02-23 06:46:49 -05002351 int fd;
Avi Kivityf17abe92007-02-21 19:28:04 +02002352 struct kvm *kvm;
2353
Avi Kivityf17abe92007-02-21 19:28:04 +02002354 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04002355 if (IS_ERR(kvm))
2356 return PTR_ERR(kvm);
Ulrich Drepper7d9dbca2008-07-23 21:29:22 -07002357 fd = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, 0);
Al Viro2030a422008-02-23 06:46:49 -05002358 if (fd < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002359 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002360
Avi Kivityf17abe92007-02-21 19:28:04 +02002361 return fd;
Avi Kivityf17abe92007-02-21 19:28:04 +02002362}
2363
Avi Kivity1a811b62008-12-08 18:25:27 +02002364static long kvm_dev_ioctl_check_extension_generic(long arg)
2365{
2366 switch (arg) {
Avi Kivityca9edae2008-12-08 18:29:29 +02002367 case KVM_CAP_USER_MEMORY:
Avi Kivity1a811b62008-12-08 18:25:27 +02002368 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
Jan Kiszka4cd481f2009-04-13 11:59:32 +02002369 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Gleb Natapov73880c82009-06-09 15:56:28 +03002370#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2371 case KVM_CAP_SET_BOOT_CPU_ID:
2372#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002373 return 1;
Avi Kivity399ec802008-11-19 13:58:46 +02002374#ifdef CONFIG_HAVE_KVM_IRQCHIP
2375 case KVM_CAP_IRQ_ROUTING:
Sheng Yang36463142009-03-16 16:33:43 +08002376 return KVM_MAX_IRQ_ROUTES;
Avi Kivity399ec802008-11-19 13:58:46 +02002377#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002378 default:
2379 break;
2380 }
2381 return kvm_dev_ioctl_check_extension(arg);
2382}
2383
Avi Kivityf17abe92007-02-21 19:28:04 +02002384static long kvm_dev_ioctl(struct file *filp,
2385 unsigned int ioctl, unsigned long arg)
2386{
Avi Kivity07c45a32007-03-07 13:05:38 +02002387 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002388
2389 switch (ioctl) {
2390 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002391 r = -EINVAL;
2392 if (arg)
2393 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002394 r = KVM_API_VERSION;
2395 break;
2396 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002397 r = -EINVAL;
2398 if (arg)
2399 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002400 r = kvm_dev_ioctl_create_vm();
2401 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002402 case KVM_CHECK_EXTENSION:
Avi Kivity1a811b62008-12-08 18:25:27 +02002403 r = kvm_dev_ioctl_check_extension_generic(arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002404 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002405 case KVM_GET_VCPU_MMAP_SIZE:
2406 r = -EINVAL;
2407 if (arg)
2408 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002409 r = PAGE_SIZE; /* struct kvm_run */
2410#ifdef CONFIG_X86
2411 r += PAGE_SIZE; /* pio data page */
2412#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002413#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2414 r += PAGE_SIZE; /* coalesced mmio ring page */
2415#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002416 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002417 case KVM_TRACE_ENABLE:
2418 case KVM_TRACE_PAUSE:
2419 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002420 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002421 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002422 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002423 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002424 }
2425out:
2426 return r;
2427}
2428
Avi Kivity6aa8b732006-12-10 02:21:36 -08002429static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002430 .unlocked_ioctl = kvm_dev_ioctl,
2431 .compat_ioctl = kvm_dev_ioctl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432};
2433
2434static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002435 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002436 "kvm",
2437 &kvm_chardev_ops,
2438};
2439
Avi Kivity1b6c0162007-05-24 13:03:52 +03002440static void hardware_enable(void *junk)
2441{
2442 int cpu = raw_smp_processor_id();
2443
Rusty Russell7f59f492008-12-07 21:25:45 +10302444 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002445 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302446 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002447 kvm_arch_hardware_enable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03002448}
2449
2450static void hardware_disable(void *junk)
2451{
2452 int cpu = raw_smp_processor_id();
2453
Rusty Russell7f59f492008-12-07 21:25:45 +10302454 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002455 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302456 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002457 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03002458}
2459
Avi Kivity774c47f2007-02-12 00:54:47 -08002460static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2461 void *v)
2462{
2463 int cpu = (long)v;
2464
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002465 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002466 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002467 case CPU_DYING:
Avi Kivity6ec8a852007-08-19 15:57:26 +03002468 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2469 cpu);
2470 hardware_disable(NULL);
2471 break;
Avi Kivity774c47f2007-02-12 00:54:47 -08002472 case CPU_UP_CANCELED:
Jeremy Katz43934a32007-02-19 14:37:46 +02002473 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2474 cpu);
Jens Axboe8691e5a2008-06-06 11:18:06 +02002475 smp_call_function_single(cpu, hardware_disable, NULL, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08002476 break;
Jeremy Katz43934a32007-02-19 14:37:46 +02002477 case CPU_ONLINE:
2478 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2479 cpu);
Jens Axboe8691e5a2008-06-06 11:18:06 +02002480 smp_call_function_single(cpu, hardware_enable, NULL, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08002481 break;
2482 }
2483 return NOTIFY_OK;
2484}
2485
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002486
2487asmlinkage void kvm_handle_fault_on_reboot(void)
2488{
2489 if (kvm_rebooting)
2490 /* spin while reset goes on */
2491 while (true)
2492 ;
2493 /* Fault while not rebooting. We want the trace. */
2494 BUG();
2495}
2496EXPORT_SYMBOL_GPL(kvm_handle_fault_on_reboot);
2497
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002498static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002499 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002500{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002501 /*
2502 * Some (well, at least mine) BIOSes hang on reboot if
2503 * in vmx root mode.
2504 *
2505 * And Intel TXT required VMX off for all cpu when system shutdown.
2506 */
2507 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2508 kvm_rebooting = true;
2509 on_each_cpu(hardware_disable, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002510 return NOTIFY_OK;
2511}
2512
2513static struct notifier_block kvm_reboot_notifier = {
2514 .notifier_call = kvm_reboot,
2515 .priority = 0,
2516};
2517
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002518void kvm_io_bus_init(struct kvm_io_bus *bus)
2519{
2520 memset(bus, 0, sizeof(*bus));
2521}
2522
2523void kvm_io_bus_destroy(struct kvm_io_bus *bus)
2524{
2525 int i;
2526
2527 for (i = 0; i < bus->dev_count; i++) {
2528 struct kvm_io_device *pos = bus->devs[i];
2529
2530 kvm_iodevice_destructor(pos);
2531 }
2532}
2533
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002534/* kvm_io_bus_write - called under kvm->slots_lock */
2535int kvm_io_bus_write(struct kvm_io_bus *bus, gpa_t addr,
2536 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002537{
2538 int i;
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002539 for (i = 0; i < bus->dev_count; i++)
2540 if (!kvm_iodevice_write(bus->devs[i], addr, len, val))
2541 return 0;
2542 return -EOPNOTSUPP;
2543}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002544
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002545/* kvm_io_bus_read - called under kvm->slots_lock */
2546int kvm_io_bus_read(struct kvm_io_bus *bus, gpa_t addr, int len, void *val)
2547{
2548 int i;
2549 for (i = 0; i < bus->dev_count; i++)
2550 if (!kvm_iodevice_read(bus->devs[i], addr, len, val))
2551 return 0;
2552 return -EOPNOTSUPP;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002553}
2554
Gregory Haskins090b7af2009-07-07 17:08:44 -04002555int kvm_io_bus_register_dev(struct kvm *kvm, struct kvm_io_bus *bus,
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002556 struct kvm_io_device *dev)
2557{
Gregory Haskins090b7af2009-07-07 17:08:44 -04002558 int ret;
2559
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002560 down_write(&kvm->slots_lock);
Gregory Haskins090b7af2009-07-07 17:08:44 -04002561 ret = __kvm_io_bus_register_dev(bus, dev);
2562 up_write(&kvm->slots_lock);
2563
2564 return ret;
2565}
2566
2567/* An unlocked version. Caller must have write lock on slots_lock. */
2568int __kvm_io_bus_register_dev(struct kvm_io_bus *bus,
2569 struct kvm_io_device *dev)
2570{
2571 if (bus->dev_count > NR_IOBUS_DEVS-1)
2572 return -ENOSPC;
2573
2574 bus->devs[bus->dev_count++] = dev;
2575
2576 return 0;
2577}
2578
2579void kvm_io_bus_unregister_dev(struct kvm *kvm,
2580 struct kvm_io_bus *bus,
2581 struct kvm_io_device *dev)
2582{
2583 down_write(&kvm->slots_lock);
2584 __kvm_io_bus_unregister_dev(bus, dev);
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002585 up_write(&kvm->slots_lock);
2586}
2587
2588/* An unlocked version. Caller must have write lock on slots_lock. */
Gregory Haskins090b7af2009-07-07 17:08:44 -04002589void __kvm_io_bus_unregister_dev(struct kvm_io_bus *bus,
2590 struct kvm_io_device *dev)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002591{
Gregory Haskins090b7af2009-07-07 17:08:44 -04002592 int i;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002593
Gregory Haskins090b7af2009-07-07 17:08:44 -04002594 for (i = 0; i < bus->dev_count; i++)
2595 if (bus->devs[i] == dev) {
2596 bus->devs[i] = bus->devs[--bus->dev_count];
2597 break;
2598 }
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002599}
2600
Avi Kivity774c47f2007-02-12 00:54:47 -08002601static struct notifier_block kvm_cpu_notifier = {
2602 .notifier_call = kvm_cpu_hotplug,
2603 .priority = 20, /* must be > scheduler priority */
2604};
2605
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002606static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02002607{
2608 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02002609 struct kvm *kvm;
2610
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002611 *val = 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002612 spin_lock(&kvm_lock);
2613 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002614 *val += *(u32 *)((void *)kvm + offset);
Avi Kivityba1389b2007-11-18 16:24:12 +02002615 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002616 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002617}
2618
2619DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
2620
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002621static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03002622{
2623 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002624 struct kvm *kvm;
2625 struct kvm_vcpu *vcpu;
2626 int i;
2627
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002628 *val = 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002629 spin_lock(&kvm_lock);
2630 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002631 kvm_for_each_vcpu(i, vcpu, kvm)
2632 *val += *(u32 *)((void *)vcpu + offset);
2633
Avi Kivity1165f5f2007-04-19 17:27:43 +03002634 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002635 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002636}
2637
Avi Kivityba1389b2007-11-18 16:24:12 +02002638DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
2639
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002640static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02002641 [KVM_STAT_VCPU] = &vcpu_stat_fops,
2642 [KVM_STAT_VM] = &vm_stat_fops,
2643};
Avi Kivity1165f5f2007-04-19 17:27:43 +03002644
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08002645static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002646{
2647 struct kvm_stats_debugfs_item *p;
2648
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002649 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002650 for (p = debugfs_entries; p->name; ++p)
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002651 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03002652 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02002653 stat_fops[p->kind]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002654}
2655
2656static void kvm_exit_debug(void)
2657{
2658 struct kvm_stats_debugfs_item *p;
2659
2660 for (p = debugfs_entries; p->name; ++p)
2661 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002662 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002663}
2664
Avi Kivity59ae6c62007-02-12 00:54:48 -08002665static int kvm_suspend(struct sys_device *dev, pm_message_t state)
2666{
Avi Kivity4267c412007-05-24 13:09:41 +03002667 hardware_disable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002668 return 0;
2669}
2670
2671static int kvm_resume(struct sys_device *dev)
2672{
Avi Kivity4267c412007-05-24 13:09:41 +03002673 hardware_enable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002674 return 0;
2675}
2676
2677static struct sysdev_class kvm_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002678 .name = "kvm",
Avi Kivity59ae6c62007-02-12 00:54:48 -08002679 .suspend = kvm_suspend,
2680 .resume = kvm_resume,
2681};
2682
2683static struct sys_device kvm_sysdev = {
2684 .id = 0,
2685 .cls = &kvm_sysdev_class,
2686};
2687
Izik Eiduscea7bb22007-10-17 19:17:48 +02002688struct page *bad_page;
Anthony Liguori35149e22008-04-02 14:46:56 -05002689pfn_t bad_pfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002690
Avi Kivity15ad7142007-07-11 18:17:21 +03002691static inline
2692struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
2693{
2694 return container_of(pn, struct kvm_vcpu, preempt_notifier);
2695}
2696
2697static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
2698{
2699 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2700
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002701 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002702}
2703
2704static void kvm_sched_out(struct preempt_notifier *pn,
2705 struct task_struct *next)
2706{
2707 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2708
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002709 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002710}
2711
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002712int kvm_init(void *opaque, unsigned int vcpu_size,
Rusty Russellc16f8622007-07-30 21:12:19 +10002713 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002714{
2715 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002716 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002717
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002718 r = kvm_arch_init(opaque);
2719 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002720 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002721
2722 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2723
2724 if (bad_page == NULL) {
2725 r = -ENOMEM;
2726 goto out;
2727 }
2728
Anthony Liguori35149e22008-04-02 14:46:56 -05002729 bad_pfn = page_to_pfn(bad_page);
2730
Avi Kivity8437a612009-06-06 14:52:35 -07002731 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10302732 r = -ENOMEM;
2733 goto out_free_0;
2734 }
2735
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002736 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002737 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10302738 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002739
Yang, Sheng002c7f72007-07-31 14:23:01 +03002740 for_each_online_cpu(cpu) {
2741 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002742 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02002743 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03002744 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002745 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002746 }
2747
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002748 on_each_cpu(hardware_enable, NULL, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08002749 r = register_cpu_notifier(&kvm_cpu_notifier);
2750 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002751 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002752 register_reboot_notifier(&kvm_reboot_notifier);
2753
Avi Kivity59ae6c62007-02-12 00:54:48 -08002754 r = sysdev_class_register(&kvm_sysdev_class);
2755 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002756 goto out_free_3;
Avi Kivity59ae6c62007-02-12 00:54:48 -08002757
2758 r = sysdev_register(&kvm_sysdev);
2759 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002760 goto out_free_4;
Avi Kivity59ae6c62007-02-12 00:54:48 -08002761
Rusty Russellc16f8622007-07-30 21:12:19 +10002762 /* A kmem cache lets us meet the alignment requirements of fx_save. */
2763 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size,
Joe Perches56919c52007-11-12 20:06:51 -08002764 __alignof__(struct kvm_vcpu),
2765 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10002766 if (!kvm_vcpu_cache) {
2767 r = -ENOMEM;
Zhang Xiantaod23087842007-11-29 15:35:39 +08002768 goto out_free_5;
Rusty Russellc16f8622007-07-30 21:12:19 +10002769 }
2770
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002772 kvm_vm_fops.owner = module;
2773 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774
2775 r = misc_register(&kvm_dev);
2776 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04002777 printk(KERN_ERR "kvm: misc device register failed\n");
Avi Kivity6aa8b732006-12-10 02:21:36 -08002778 goto out_free;
2779 }
2780
Avi Kivity15ad7142007-07-11 18:17:21 +03002781 kvm_preempt_ops.sched_in = kvm_sched_in;
2782 kvm_preempt_ops.sched_out = kvm_sched_out;
2783
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002784 kvm_init_debug();
2785
Avi Kivityc7addb92007-09-16 18:58:32 +02002786 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002787
2788out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10002789 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002790out_free_5:
Avi Kivity59ae6c62007-02-12 00:54:48 -08002791 sysdev_unregister(&kvm_sysdev);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002792out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08002793 sysdev_class_unregister(&kvm_sysdev_class);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002794out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002795 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08002796 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002797out_free_2:
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002798 on_each_cpu(hardware_disable, NULL, 1);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002799out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002800 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10302801out_free_0a:
2802 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002803out_free_0:
2804 __free_page(bad_page);
Avi Kivityca45aaa2007-03-01 19:21:03 +02002805out:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002806 kvm_arch_exit();
Zhang Xiantaod23087842007-11-29 15:35:39 +08002807out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002808 return r;
2809}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002810EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002811
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002812void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002813{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002814 tracepoint_synchronize_unregister();
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002815 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002816 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10002817 kmem_cache_destroy(kvm_vcpu_cache);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002818 sysdev_unregister(&kvm_sysdev);
2819 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002821 unregister_cpu_notifier(&kvm_cpu_notifier);
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002822 on_each_cpu(hardware_disable, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002823 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002824 kvm_arch_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10302825 free_cpumask_var(cpus_hardware_enabled);
Izik Eiduscea7bb22007-10-17 19:17:48 +02002826 __free_page(bad_page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002827}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002828EXPORT_SYMBOL_GPL(kvm_exit);