blob: 3fec2cdd951ba55845c733471567af9cabd7ff62 [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.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Hollis Blancharde2174022007-12-03 15:30:24 -060019#include "iodev.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080020
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include <linux/kvm.h>
23#include <linux/module.h>
24#include <linux/errno.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/percpu.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>
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +010033#include <linux/syscore_ops.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>
Arnd Bergmann6ff58942009-10-22 14:19:27 +020046#include <linux/compat.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020047#include <linux/srcu.h>
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +010048#include <linux/hugetlb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Sasha Levin743eeb02011-07-27 16:00:48 +030050#include <linux/sort.h>
51#include <linux/bsearch.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080052
Avi Kivitye4956062007-06-28 14:15:57 -040053#include <asm/processor.h>
Avi Kivitye4956062007-06-28 14:15:57 -040054#include <asm/io.h>
55#include <asm/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020056#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080057
Laurent Vivier5f94c172008-05-30 16:05:54 +020058#include "coalesced_mmio.h"
Gleb Natapovaf585b92010-10-14 11:22:46 +020059#include "async_pf.h"
Laurent Vivier5f94c172008-05-30 16:05:54 +020060
Marcelo Tosatti229456f2009-06-17 09:22:14 -030061#define CREATE_TRACE_POINTS
62#include <trace/events/kvm.h>
63
Avi Kivity6aa8b732006-12-10 02:21:36 -080064MODULE_AUTHOR("Qumranet");
65MODULE_LICENSE("GPL");
66
Marcelo Tosattifa40a822009-06-04 15:08:24 -030067/*
68 * Ordering of locks:
69 *
Sheng Yangfae3a352009-12-15 10:28:07 +080070 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030071 */
72
Jan Kiszkae935b832011-02-08 12:55:33 +010073DEFINE_RAW_SPINLOCK(kvm_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080074LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080075
Rusty Russell7f59f492008-12-07 21:25:45 +103076static cpumask_var_t cpus_hardware_enabled;
Alexander Graf10474ae2009-09-15 11:37:46 +020077static int kvm_usage_count = 0;
78static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +030079
Rusty Russellc16f8622007-07-30 21:12:19 +100080struct kmem_cache *kvm_vcpu_cache;
81EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030082
Avi Kivity15ad7142007-07-11 18:17:21 +030083static __read_mostly struct preempt_ops kvm_preempt_ops;
84
Hollis Blanchard76f7c872008-04-15 16:05:42 -050085struct dentry *kvm_debugfs_dir;
Avi Kivity6aa8b732006-12-10 02:21:36 -080086
Avi Kivitybccf2152007-02-21 18:04:26 +020087static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
88 unsigned long arg);
Alexander Graf1dda6062011-06-08 02:45:37 +020089#ifdef CONFIG_COMPAT
90static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
91 unsigned long arg);
92#endif
Alexander Graf10474ae2009-09-15 11:37:46 +020093static int hardware_enable_all(void);
94static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +020095
Marcelo Tosattie93f8a02009-12-23 14:35:24 -020096static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
97
Avi Kivityb7c41452010-12-02 17:52:50 +020098bool kvm_rebooting;
99EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300100
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300101static bool largepages_enabled = true;
102
Xiao Guangronga2766322012-07-26 11:58:59 +0800103bool kvm_is_mmio_pfn(pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300104{
Joerg Roedelfc5659c2009-02-18 14:08:58 +0100105 if (pfn_valid(pfn)) {
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800106 int reserved;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800107 struct page *tail = pfn_to_page(pfn);
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800108 struct page *head = compound_trans_head(tail);
109 reserved = PageReserved(head);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800110 if (head != tail) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800111 /*
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800112 * "head" is not a dangling pointer
113 * (compound_trans_head takes care of that)
114 * but the hugepage may have been splitted
115 * from under us (and we may not hold a
116 * reference count on the head page so it can
117 * be reused before we run PageReferenced), so
118 * we've to check PageTail before returning
119 * what we just read.
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800120 */
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800121 smp_rmb();
122 if (PageTail(tail))
123 return reserved;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800124 }
125 return PageReserved(tail);
Joerg Roedelfc5659c2009-02-18 14:08:58 +0100126 }
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300127
128 return true;
129}
130
Avi Kivity6aa8b732006-12-10 02:21:36 -0800131/*
132 * Switches to specified vcpu, until a matching vcpu_put()
133 */
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300134int vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800135{
Avi Kivity15ad7142007-07-11 18:17:21 +0300136 int cpu;
137
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300138 if (mutex_lock_killable(&vcpu->mutex))
139 return -EINTR;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500140 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
141 /* The thread running this VCPU changed. */
142 struct pid *oldpid = vcpu->pid;
143 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
144 rcu_assign_pointer(vcpu->pid, newpid);
145 synchronize_rcu();
146 put_pid(oldpid);
147 }
Avi Kivity15ad7142007-07-11 18:17:21 +0300148 cpu = get_cpu();
149 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200150 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300151 put_cpu();
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300152 return 0;
Avi Kivitybccf2152007-02-21 18:04:26 +0200153}
154
Carsten Otte313a3dc2007-10-11 19:16:52 +0200155void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800156{
Avi Kivity15ad7142007-07-11 18:17:21 +0300157 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200158 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300159 preempt_notifier_unregister(&vcpu->preempt_notifier);
160 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800161 mutex_unlock(&vcpu->mutex);
162}
163
Avi Kivityd9e368d2007-06-07 19:18:30 +0300164static void ack_flush(void *_completed)
165{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300166}
167
Rusty Russell49846892008-12-08 20:26:24 +1030168static bool make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300169{
Avi Kivity597a5f52008-07-20 14:24:22 +0300170 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030171 cpumask_var_t cpus;
172 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300173 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300174
Li Zefan79f55992009-06-15 14:58:26 +0800175 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030176
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800177 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300178 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800179 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300180 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800181
182 /* Set ->requests bit before we read ->mode */
183 smp_mb();
184
185 if (cpus != NULL && cpu != -1 && cpu != me &&
186 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030187 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300188 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030189 if (unlikely(cpus == NULL))
190 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
191 else if (!cpumask_empty(cpus))
192 smp_call_function_many(cpus, ack_flush, NULL, 1);
193 else
194 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800195 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030196 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030197 return called;
198}
199
200void kvm_flush_remote_tlbs(struct kvm *kvm)
201{
Alex Shibec87d62012-03-04 13:13:38 +0800202 long dirty_count = kvm->tlbs_dirty;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800203
204 smp_mb();
Rusty Russell49846892008-12-08 20:26:24 +1030205 if (make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
206 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800207 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300208}
209
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500210void kvm_reload_remote_mmus(struct kvm *kvm)
211{
Rusty Russell49846892008-12-08 20:26:24 +1030212 make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500213}
214
Marcelo Tosattid8281992012-11-27 23:29:01 -0200215void kvm_make_mclock_inprogress_request(struct kvm *kvm)
216{
217 make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
218}
219
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000220int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
221{
222 struct page *page;
223 int r;
224
225 mutex_init(&vcpu->mutex);
226 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000227 vcpu->kvm = kvm;
228 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500229 vcpu->pid = NULL;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300230 init_waitqueue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200231 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000232
233 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
234 if (!page) {
235 r = -ENOMEM;
236 goto fail;
237 }
238 vcpu->run = page_address(page);
239
Raghavendra K T4c088492012-07-18 19:07:46 +0530240 kvm_vcpu_set_in_spin_loop(vcpu, false);
241 kvm_vcpu_set_dy_eligible(vcpu, false);
242
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800243 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000244 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800245 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000246 return 0;
247
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000248fail_free_run:
249 free_page((unsigned long)vcpu->run);
250fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000251 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000252}
253EXPORT_SYMBOL_GPL(kvm_vcpu_init);
254
255void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
256{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500257 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800258 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000259 free_page((unsigned long)vcpu->run);
260}
261EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
262
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200263#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
264static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
265{
266 return container_of(mn, struct kvm, mmu_notifier);
267}
268
269static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
270 struct mm_struct *mm,
271 unsigned long address)
272{
273 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200274 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200275
276 /*
277 * When ->invalidate_page runs, the linux pte has been zapped
278 * already but the page is still allocated until
279 * ->invalidate_page returns. So if we increase the sequence
280 * here the kvm page fault will notice if the spte can't be
281 * established because the page is going to be freed. If
282 * instead the kvm page fault establishes the spte before
283 * ->invalidate_page runs, kvm_unmap_hva will release it
284 * before returning.
285 *
286 * The sequence increase only need to be seen at spin_unlock
287 * time, and not at spin_lock time.
288 *
289 * Increasing the sequence after the spin_unlock would be
290 * unsafe because the kvm page fault could then establish the
291 * pte after kvm_unmap_hva returned, without noticing the page
292 * is going to be freed.
293 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200294 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200295 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900296
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200297 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800298 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200299 /* we've to flush the tlb before the pages can be freed */
300 if (need_tlb_flush)
301 kvm_flush_remote_tlbs(kvm);
302
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900303 spin_unlock(&kvm->mmu_lock);
304 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200305}
306
Izik Eidus3da0dd42009-09-23 21:47:18 +0300307static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
308 struct mm_struct *mm,
309 unsigned long address,
310 pte_t pte)
311{
312 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200313 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300314
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200315 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300316 spin_lock(&kvm->mmu_lock);
317 kvm->mmu_notifier_seq++;
318 kvm_set_spte_hva(kvm, address, pte);
319 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200320 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300321}
322
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200323static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
324 struct mm_struct *mm,
325 unsigned long start,
326 unsigned long end)
327{
328 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200329 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200330
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200331 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200332 spin_lock(&kvm->mmu_lock);
333 /*
334 * The count increase must become visible at unlock time as no
335 * spte can be established without taking the mmu_lock and
336 * count is also read inside the mmu_lock critical section.
337 */
338 kvm->mmu_notifier_count++;
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +0900339 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800340 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200341 /* we've to flush the tlb before the pages can be freed */
342 if (need_tlb_flush)
343 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900344
345 spin_unlock(&kvm->mmu_lock);
346 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200347}
348
349static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
350 struct mm_struct *mm,
351 unsigned long start,
352 unsigned long end)
353{
354 struct kvm *kvm = mmu_notifier_to_kvm(mn);
355
356 spin_lock(&kvm->mmu_lock);
357 /*
358 * This sequence increase will notify the kvm page fault that
359 * the page that is going to be mapped in the spte could have
360 * been freed.
361 */
362 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000363 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200364 /*
365 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000366 * below count decrease, which is ensured by the smp_wmb above
367 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200368 */
369 kvm->mmu_notifier_count--;
370 spin_unlock(&kvm->mmu_lock);
371
372 BUG_ON(kvm->mmu_notifier_count < 0);
373}
374
375static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
376 struct mm_struct *mm,
377 unsigned long address)
378{
379 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200380 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200381
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200382 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200383 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200384
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900385 young = kvm_age_hva(kvm, address);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200386 if (young)
387 kvm_flush_remote_tlbs(kvm);
388
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900389 spin_unlock(&kvm->mmu_lock);
390 srcu_read_unlock(&kvm->srcu, idx);
391
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200392 return young;
393}
394
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800395static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
396 struct mm_struct *mm,
397 unsigned long address)
398{
399 struct kvm *kvm = mmu_notifier_to_kvm(mn);
400 int young, idx;
401
402 idx = srcu_read_lock(&kvm->srcu);
403 spin_lock(&kvm->mmu_lock);
404 young = kvm_test_age_hva(kvm, address);
405 spin_unlock(&kvm->mmu_lock);
406 srcu_read_unlock(&kvm->srcu, idx);
407
408 return young;
409}
410
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100411static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
412 struct mm_struct *mm)
413{
414 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800415 int idx;
416
417 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300418 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800419 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100420}
421
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200422static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
423 .invalidate_page = kvm_mmu_notifier_invalidate_page,
424 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
425 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
426 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800427 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300428 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100429 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200430};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200431
432static int kvm_init_mmu_notifier(struct kvm *kvm)
433{
434 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
435 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
436}
437
438#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
439
440static int kvm_init_mmu_notifier(struct kvm *kvm)
441{
442 return 0;
443}
444
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200445#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
446
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800447static void kvm_init_memslots_id(struct kvm *kvm)
448{
449 int i;
450 struct kvm_memslots *slots = kvm->memslots;
451
452 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800453 slots->id_to_index[i] = slots->memslots[i].id = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800454}
455
Carsten Ottee08b9632012-01-04 10:25:20 +0100456static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800457{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100458 int r, i;
459 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800460
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100461 if (!kvm)
462 return ERR_PTR(-ENOMEM);
463
Carsten Ottee08b9632012-01-04 10:25:20 +0100464 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100465 if (r)
466 goto out_err_nodisable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200467
468 r = hardware_enable_all();
469 if (r)
470 goto out_err_nodisable;
471
Avi Kivity75858a82009-01-04 17:10:50 +0200472#ifdef CONFIG_HAVE_KVM_IRQCHIP
473 INIT_HLIST_HEAD(&kvm->mask_notifier_list);
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300474 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200475#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800476
Alex Williamson1e702d92012-12-10 10:33:32 -0700477 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
478
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200479 r = -ENOMEM;
480 kvm->memslots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
481 if (!kvm->memslots)
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100482 goto out_err_nosrcu;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800483 kvm_init_memslots_id(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200484 if (init_srcu_struct(&kvm->srcu))
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100485 goto out_err_nosrcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200486 for (i = 0; i < KVM_NR_BUSES; i++) {
487 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
488 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100489 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200490 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200491 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700492
OGAWA Hirofumi85722cd2011-05-11 09:28:28 +0900493 spin_lock_init(&kvm->mmu_lock);
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200494 kvm->mm = current->mm;
495 atomic_inc(&kvm->mm->mm_count);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400496 kvm_eventfd_init(kvm);
Shaohua Li11ec2802007-07-23 14:51:37 +0800497 mutex_init(&kvm->lock);
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300498 mutex_init(&kvm->irq_lock);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200499 mutex_init(&kvm->slots_lock);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300500 atomic_set(&kvm->users_count, 1);
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700501
502 r = kvm_init_mmu_notifier(kvm);
503 if (r)
504 goto out_err;
505
Jan Kiszkae935b832011-02-08 12:55:33 +0100506 raw_spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000507 list_add(&kvm->vm_list, &vm_list);
Jan Kiszkae935b832011-02-08 12:55:33 +0100508 raw_spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100509
Avi Kivityf17abe92007-02-21 19:28:04 +0200510 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200511
512out_err:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100513 cleanup_srcu_struct(&kvm->srcu);
514out_err_nosrcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200515 hardware_disable_all();
516out_err_nodisable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200517 for (i = 0; i < KVM_NR_BUSES; i++)
518 kfree(kvm->buses[i]);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200519 kfree(kvm->memslots);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100520 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200521 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200522}
523
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900524/*
525 * Avoid using vmalloc for a small buffer.
526 * Should not be used when the size is statically known.
527 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900528void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900529{
530 if (size > PAGE_SIZE)
531 return vzalloc(size);
532 else
533 return kzalloc(size, GFP_KERNEL);
534}
535
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900536void kvm_kvfree(const void *addr)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900537{
538 if (is_vmalloc_addr(addr))
539 vfree(addr);
540 else
541 kfree(addr);
542}
543
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900544static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
545{
546 if (!memslot->dirty_bitmap)
547 return;
548
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900549 kvm_kvfree(memslot->dirty_bitmap);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900550 memslot->dirty_bitmap = NULL;
551}
552
Avi Kivity6aa8b732006-12-10 02:21:36 -0800553/*
554 * Free any memory in @free but not in @dont.
555 */
556static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
557 struct kvm_memory_slot *dont)
558{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800559 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900560 kvm_destroy_dirty_bitmap(free);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800561
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900562 kvm_arch_free_memslot(free, dont);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300563
Avi Kivity6aa8b732006-12-10 02:21:36 -0800564 free->npages = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800565}
566
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800567void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800568{
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200569 struct kvm_memslots *slots = kvm->memslots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800570 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800571
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800572 kvm_for_each_memslot(memslot, slots)
573 kvm_free_physmem_slot(memslot, NULL);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200574
575 kfree(kvm->memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800576}
577
Avi Kivityf17abe92007-02-21 19:28:04 +0200578static void kvm_destroy_vm(struct kvm *kvm)
579{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200580 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200581 struct mm_struct *mm = kvm->mm;
582
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800583 kvm_arch_sync_events(kvm);
Jan Kiszkae935b832011-02-08 12:55:33 +0100584 raw_spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800585 list_del(&kvm->vm_list);
Jan Kiszkae935b832011-02-08 12:55:33 +0100586 raw_spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200587 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200588 for (i = 0; i < KVM_NR_BUSES; i++)
589 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200590 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200591#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
592 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200593#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300594 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200595#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800596 kvm_arch_destroy_vm(kvm);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100597 kvm_free_physmem(kvm);
598 cleanup_srcu_struct(&kvm->srcu);
599 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200600 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200601 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200602}
603
Izik Eidusd39f13b2008-03-30 16:01:25 +0300604void kvm_get_kvm(struct kvm *kvm)
605{
606 atomic_inc(&kvm->users_count);
607}
608EXPORT_SYMBOL_GPL(kvm_get_kvm);
609
610void kvm_put_kvm(struct kvm *kvm)
611{
612 if (atomic_dec_and_test(&kvm->users_count))
613 kvm_destroy_vm(kvm);
614}
615EXPORT_SYMBOL_GPL(kvm_put_kvm);
616
617
Avi Kivityf17abe92007-02-21 19:28:04 +0200618static int kvm_vm_release(struct inode *inode, struct file *filp)
619{
620 struct kvm *kvm = filp->private_data;
621
Gregory Haskins721eecb2009-05-20 10:30:49 -0400622 kvm_irqfd_release(kvm);
623
Izik Eidusd39f13b2008-03-30 16:01:25 +0300624 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800625 return 0;
626}
627
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900628/*
629 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900630 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900631 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900632static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
633{
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900634#ifndef CONFIG_S390
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900635 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900636
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900637 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900638 if (!memslot->dirty_bitmap)
639 return -ENOMEM;
640
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900641#endif /* !CONFIG_S390 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900642 return 0;
643}
644
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800645static int cmp_memslot(const void *slot1, const void *slot2)
646{
647 struct kvm_memory_slot *s1, *s2;
648
649 s1 = (struct kvm_memory_slot *)slot1;
650 s2 = (struct kvm_memory_slot *)slot2;
651
652 if (s1->npages < s2->npages)
653 return 1;
654 if (s1->npages > s2->npages)
655 return -1;
656
657 return 0;
658}
659
660/*
661 * Sort the memslots base on its size, so the larger slots
662 * will get better fit.
663 */
664static void sort_memslots(struct kvm_memslots *slots)
665{
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800666 int i;
667
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800668 sort(slots->memslots, KVM_MEM_SLOTS_NUM,
669 sizeof(struct kvm_memory_slot), cmp_memslot, NULL);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800670
671 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
672 slots->id_to_index[slots->memslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800673}
674
Alex Williamson116c14c2012-12-21 08:20:16 -0700675void update_memslots(struct kvm_memslots *slots, struct kvm_memory_slot *new,
676 u64 last_generation)
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800677{
678 if (new) {
679 int id = new->id;
Xiao Guangrong28a37542011-11-24 19:04:35 +0800680 struct kvm_memory_slot *old = id_to_memslot(slots, id);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800681 unsigned long npages = old->npages;
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800682
Xiao Guangrong28a37542011-11-24 19:04:35 +0800683 *old = *new;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800684 if (new->npages != npages)
685 sort_memslots(slots);
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800686 }
687
Alex Williamson116c14c2012-12-21 08:20:16 -0700688 slots->generation = last_generation + 1;
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800689}
690
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800691static int check_memory_region_flags(struct kvm_userspace_memory_region *mem)
692{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800693 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
694
695#ifdef KVM_CAP_READONLY_MEM
696 valid_flags |= KVM_MEM_READONLY;
697#endif
698
699 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800700 return -EINVAL;
701
702 return 0;
703}
704
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200705static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
706 struct kvm_memslots *slots, struct kvm_memory_slot *new)
707{
708 struct kvm_memslots *old_memslots = kvm->memslots;
709
710 update_memslots(slots, new, kvm->memslots->generation);
711 rcu_assign_pointer(kvm->memslots, slots);
712 synchronize_srcu_expedited(&kvm->srcu);
713 return old_memslots;
714}
715
Avi Kivity6aa8b732006-12-10 02:21:36 -0800716/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800717 * Allocate some memory and give it an address in the guest physical address
718 * space.
719 *
720 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800721 *
Marcelo Tosatti10589a42007-12-20 19:18:22 -0500722 * Must be called holding mmap_sem for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800723 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800724int __kvm_set_memory_region(struct kvm *kvm,
725 struct kvm_userspace_memory_region *mem,
Alex Williamsonf82a8cf2012-12-10 10:33:21 -0700726 bool user_alloc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800727{
Avi Kivity8234b222010-12-27 12:08:45 +0200728 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200730 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900731 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700733 struct kvm_memslots *slots = NULL, *old_memslots;
Alex Williamson261874b2013-01-24 15:04:03 -0700734 bool old_iommu_mapped;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800735
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800736 r = check_memory_region_flags(mem);
737 if (r)
738 goto out;
739
Avi Kivity6aa8b732006-12-10 02:21:36 -0800740 r = -EINVAL;
741 /* General sanity checks */
742 if (mem->memory_size & (PAGE_SIZE - 1))
743 goto out;
744 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
745 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900746 /* We can read the guest memory with __xxx_user() later on. */
747 if (user_alloc &&
748 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200749 !access_ok(VERIFY_WRITE,
750 (void __user *)(unsigned long)mem->userspace_addr,
751 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600752 goto out;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800753 if (mem->slot >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800754 goto out;
755 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
756 goto out;
757
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900758 slot = id_to_memslot(kvm->memslots, mem->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800759 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
760 npages = mem->memory_size >> PAGE_SHIFT;
761
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900762 r = -EINVAL;
763 if (npages > KVM_MEM_MAX_NR_PAGES)
764 goto out;
765
Avi Kivity6aa8b732006-12-10 02:21:36 -0800766 if (!npages)
767 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
768
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900769 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770
Avi Kivitye36d96f2010-06-21 10:56:36 +0300771 new.id = mem->slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772 new.base_gfn = base_gfn;
773 new.npages = npages;
774 new.flags = mem->flags;
775
Alex Williamson261874b2013-01-24 15:04:03 -0700776 old_iommu_mapped = old.npages;
777
Alex Williamsonf0736cf02012-12-10 10:32:45 -0700778 /*
779 * Disallow changing a memory slot's size or changing anything about
780 * zero sized slots that doesn't involve making them non-zero.
781 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782 r = -EINVAL;
783 if (npages && old.npages && npages != old.npages)
Takuya Yoshikawa0ea75e12013-01-11 18:26:10 +0900784 goto out;
Alex Williamsonf0736cf02012-12-10 10:32:45 -0700785 if (!npages && !old.npages)
Takuya Yoshikawa0ea75e12013-01-11 18:26:10 +0900786 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900788 if ((npages && !old.npages) || (base_gfn != old.base_gfn)) {
789 /* Check for overlaps */
790 r = -EEXIST;
791 kvm_for_each_memslot(slot, kvm->memslots) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900792 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
793 (slot->id == mem->slot))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900794 continue;
795 if (!((base_gfn + npages <= slot->base_gfn) ||
796 (base_gfn >= slot->base_gfn + slot->npages)))
797 goto out;
798 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800799 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800800
Avi Kivity6aa8b732006-12-10 02:21:36 -0800801 /* Free page dirty bitmap if unneeded */
802 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000803 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800804
805 r = -ENOMEM;
806
Alex Williamson9c695d42012-12-10 10:32:51 -0700807 /*
808 * Allocate if a slot is being created. If modifying a slot,
809 * the userspace_addr cannot change.
810 */
Alex Williamsonf0736cf02012-12-10 10:32:45 -0700811 if (!old.npages) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900812 new.user_alloc = user_alloc;
813 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900814
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900815 if (kvm_arch_create_memslot(&new, npages))
816 goto out_free;
Alex Williamson9c695d42012-12-10 10:32:51 -0700817 } else if (npages && mem->userspace_addr != old.userspace_addr) {
818 r = -EINVAL;
819 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800820 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200821
Avi Kivity6aa8b732006-12-10 02:21:36 -0800822 /* Allocate page dirty bitmap if needed */
823 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900824 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800825 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800826 }
827
Marcelo Tosatti12d6e752012-08-24 15:54:58 -0300828 if (!npages || base_gfn != old.base_gfn) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200829 r = -ENOMEM;
Thomas Meyer6da64fd2011-11-08 20:32:19 +0100830 slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots),
831 GFP_KERNEL);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200832 if (!slots)
833 goto out_free;
Xiao Guangrong28a37542011-11-24 19:04:35 +0800834 slot = id_to_memslot(slots, mem->slot);
835 slot->flags |= KVM_MEMSLOT_INVALID;
836
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200837 old_memslots = install_new_memslots(kvm, slots, NULL);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200838
Alex Williamsone40f1932012-12-10 10:32:57 -0700839 /* slot was deleted or moved, clear iommu mapping */
840 kvm_iommu_unmap_pages(kvm, &old);
Alex Williamson261874b2013-01-24 15:04:03 -0700841 old_iommu_mapped = false;
Marcelo Tosatti12d6e752012-08-24 15:54:58 -0300842 /* From this point no new shadow pages pointing to a deleted,
843 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200844 *
845 * validation of sp->gfn happens in:
846 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
847 * - kvm_is_visible_gfn (mmu_check_roots)
848 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300849 kvm_arch_flush_shadow_memslot(kvm, slot);
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700850 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200851 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300852
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200853 r = kvm_arch_prepare_memory_region(kvm, &new, old, mem, user_alloc);
854 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700855 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200856
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200857 r = -ENOMEM;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700858 /*
859 * We can re-use the old_memslots from above, the only difference
860 * from the currently installed memslots is the invalid flag. This
861 * will get overwritten by update_memslots anyway.
862 */
863 if (!slots) {
864 slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots),
865 GFP_KERNEL);
866 if (!slots)
867 goto out_free;
868 }
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200869
Alex Williamson261874b2013-01-24 15:04:03 -0700870 /*
871 * IOMMU mapping: New slots need to be mapped. Old slots need to be
872 * un-mapped and re-mapped if their base changes or if flags that the
873 * iommu cares about change (read-only). Base change unmapping is
874 * handled above with slot deletion, so we only unmap incompatible
875 * flags here. Anything else the iommu might care about for existing
876 * slots (size changes, userspace addr changes) is disallowed above,
877 * so any other attribute changes getting here can be skipped.
878 */
Alex Williamsone40f1932012-12-10 10:32:57 -0700879 if (npages) {
Alex Williamson261874b2013-01-24 15:04:03 -0700880 if (old_iommu_mapped &&
881 ((new.flags ^ old.flags) & KVM_MEM_READONLY)) {
882 kvm_iommu_unmap_pages(kvm, &old);
883 old_iommu_mapped = false;
884 }
885
886 if (!old_iommu_mapped) {
887 r = kvm_iommu_map_pages(kvm, &new);
888 if (r)
889 goto out_slots;
890 }
Alex Williamsone40f1932012-12-10 10:32:57 -0700891 }
892
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200893 /* actual memory is freed via old in kvm_free_physmem_slot below */
894 if (!npages) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200895 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900896 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200897 }
898
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200899 old_memslots = install_new_memslots(kvm, slots, &new);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800900
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200901 kvm_arch_commit_memory_region(kvm, mem, old, user_alloc);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800902
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200903 kvm_free_physmem_slot(&old, &new);
904 kfree(old_memslots);
905
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 return 0;
907
Alex Williamsone40f1932012-12-10 10:32:57 -0700908out_slots:
909 kfree(slots);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800910out_free:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800911 kvm_free_physmem_slot(&new, &old);
912out:
913 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200914}
Sheng Yangf78e0e22007-10-29 09:40:42 +0800915EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
916
917int kvm_set_memory_region(struct kvm *kvm,
918 struct kvm_userspace_memory_region *mem,
Alex Williamsonf82a8cf2012-12-10 10:33:21 -0700919 bool user_alloc)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800920{
921 int r;
922
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200923 mutex_lock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800924 r = __kvm_set_memory_region(kvm, mem, user_alloc);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200925 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800926 return r;
927}
Izik Eidus210c7c42007-10-24 23:52:57 +0200928EXPORT_SYMBOL_GPL(kvm_set_memory_region);
929
Carsten Otte1fe779f2007-10-29 16:08:35 +0100930int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
931 struct
932 kvm_userspace_memory_region *mem,
Alex Williamsonf82a8cf2012-12-10 10:33:21 -0700933 bool user_alloc)
Izik Eidus210c7c42007-10-24 23:52:57 +0200934{
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700935 if (mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +0200936 return -EINVAL;
Izik Eidus210c7c42007-10-24 23:52:57 +0200937 return kvm_set_memory_region(kvm, mem, user_alloc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938}
939
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800940int kvm_get_dirty_log(struct kvm *kvm,
941 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800942{
943 struct kvm_memory_slot *memslot;
944 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900945 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800946 unsigned long any = 0;
947
Avi Kivity6aa8b732006-12-10 02:21:36 -0800948 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700949 if (log->slot >= KVM_USER_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800950 goto out;
951
Xiao Guangrong28a37542011-11-24 19:04:35 +0800952 memslot = id_to_memslot(kvm->memslots, log->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800953 r = -ENOENT;
954 if (!memslot->dirty_bitmap)
955 goto out;
956
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900957 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800958
Uri Lublincd1a4a92007-02-22 16:43:09 +0200959 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800960 any = memslot->dirty_bitmap[i];
961
962 r = -EFAULT;
963 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
964 goto out;
965
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800966 if (any)
967 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968
969 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971 return r;
972}
973
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900974bool kvm_largepages_enabled(void)
975{
976 return largepages_enabled;
977}
978
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300979void kvm_disable_largepages(void)
980{
981 largepages_enabled = false;
982}
983EXPORT_SYMBOL_GPL(kvm_disable_largepages);
984
Gleb Natapov49c77542010-10-18 15:22:23 +0200985struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
986{
987 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
988}
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300989EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990
Izik Eiduse0d62c72007-10-24 23:57:46 +0200991int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
992{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800993 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +0200994
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700995 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800996 memslot->flags & KVM_MEMSLOT_INVALID)
997 return 0;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200998
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800999 return 1;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001000}
1001EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1002
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001003unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1004{
1005 struct vm_area_struct *vma;
1006 unsigned long addr, size;
1007
1008 size = PAGE_SIZE;
1009
1010 addr = gfn_to_hva(kvm, gfn);
1011 if (kvm_is_error_hva(addr))
1012 return PAGE_SIZE;
1013
1014 down_read(&current->mm->mmap_sem);
1015 vma = find_vma(current->mm, addr);
1016 if (!vma)
1017 goto out;
1018
1019 size = vma_kernel_pagesize(vma);
1020
1021out:
1022 up_read(&current->mm->mmap_sem);
1023
1024 return size;
1025}
1026
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001027static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1028{
1029 return slot->flags & KVM_MEM_READONLY;
1030}
1031
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001032static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1033 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001034{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001035 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001036 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001037
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001038 if (memslot_is_readonly(slot) && write)
1039 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001040
1041 if (nr_pages)
1042 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1043
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001044 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001045}
Xiao Guangrong48987782010-08-22 19:11:43 +08001046
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001047static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1048 gfn_t *nr_pages)
1049{
1050 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1051}
1052
1053unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
1054 gfn_t gfn)
1055{
1056 return gfn_to_hva_many(slot, gfn, NULL);
1057}
1058EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1059
Xiao Guangrong48987782010-08-22 19:11:43 +08001060unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1061{
Gleb Natapov49c77542010-10-18 15:22:23 +02001062 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001063}
Sheng Yang0d150292008-04-25 21:44:50 +08001064EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001065
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001066/*
1067 * The hva returned by this function is only allowed to be read.
1068 * It should pair with kvm_read_hva() or kvm_read_hva_atomic().
1069 */
1070static unsigned long gfn_to_hva_read(struct kvm *kvm, gfn_t gfn)
Gleb Natapov80300892010-10-19 18:13:41 +02001071{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001072 return __gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL, false);
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001073}
1074
1075static int kvm_read_hva(void *data, void __user *hva, int len)
1076{
1077 return __copy_from_user(data, hva, len);
1078}
1079
1080static int kvm_read_hva_atomic(void *data, void __user *hva, int len)
1081{
1082 return __copy_from_user_inatomic(data, hva, len);
Gleb Natapov80300892010-10-19 18:13:41 +02001083}
1084
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001085int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
1086 unsigned long start, int write, struct page **page)
1087{
1088 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1089
1090 if (write)
1091 flags |= FOLL_WRITE;
1092
1093 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1094}
1095
Huang Yingfafc3db2011-01-30 11:15:49 +08001096static inline int check_user_page_hwpoison(unsigned long addr)
1097{
1098 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1099
1100 rc = __get_user_pages(current, current->mm, addr, 1,
1101 flags, NULL, NULL, NULL);
1102 return rc == -EHWPOISON;
1103}
1104
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001105/*
1106 * The atomic path to get the writable pfn which will be stored in @pfn,
1107 * true indicates success, otherwise false is returned.
1108 */
1109static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
1110 bool write_fault, bool *writable, pfn_t *pfn)
1111{
1112 struct page *page[1];
1113 int npages;
1114
1115 if (!(async || atomic))
1116 return false;
1117
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001118 /*
1119 * Fast pin a writable pfn only if it is a write fault request
1120 * or the caller allows to map a writable pfn for a read fault
1121 * request.
1122 */
1123 if (!(write_fault || writable))
1124 return false;
1125
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001126 npages = __get_user_pages_fast(addr, 1, 1, page);
1127 if (npages == 1) {
1128 *pfn = page_to_pfn(page[0]);
1129
1130 if (writable)
1131 *writable = true;
1132 return true;
1133 }
1134
1135 return false;
1136}
1137
1138/*
1139 * The slow path to get the pfn of the specified host virtual address,
1140 * 1 indicates success, -errno is returned if error is detected.
1141 */
1142static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
1143 bool *writable, pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001144{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001145 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001146 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001147
1148 might_sleep();
1149
1150 if (writable)
1151 *writable = write_fault;
1152
1153 if (async) {
1154 down_read(&current->mm->mmap_sem);
1155 npages = get_user_page_nowait(current, current->mm,
1156 addr, write_fault, page);
1157 up_read(&current->mm->mmap_sem);
1158 } else
1159 npages = get_user_pages_fast(addr, 1, write_fault,
1160 page);
1161 if (npages != 1)
1162 return npages;
1163
1164 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001165 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001166 struct page *wpage[1];
1167
1168 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1169 if (npages == 1) {
1170 *writable = true;
1171 put_page(page[0]);
1172 page[0] = wpage[0];
1173 }
1174
1175 npages = 1;
1176 }
1177 *pfn = page_to_pfn(page[0]);
1178 return npages;
1179}
1180
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001181static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1182{
1183 if (unlikely(!(vma->vm_flags & VM_READ)))
1184 return false;
1185
1186 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1187 return false;
1188
1189 return true;
1190}
1191
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001192/*
1193 * Pin guest page in memory and return its pfn.
1194 * @addr: host virtual address which maps memory to the guest
1195 * @atomic: whether this function can sleep
1196 * @async: whether this function need to wait IO complete if the
1197 * host page is not in the memory
1198 * @write_fault: whether we should get a writable host page
1199 * @writable: whether it allows to map a writable host page for !@write_fault
1200 *
1201 * The function will map a writable host page for these two cases:
1202 * 1): @write_fault = true
1203 * 2): @write_fault = false && @writable, @writable will tell the caller
1204 * whether the mapping is writable.
1205 */
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001206static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
1207 bool write_fault, bool *writable)
1208{
1209 struct vm_area_struct *vma;
1210 pfn_t pfn = 0;
1211 int npages;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001212
Gleb Natapovaf585b92010-10-14 11:22:46 +02001213 /* we can do it either atomically or asynchronously, not both */
1214 BUG_ON(atomic && async);
1215
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001216 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1217 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001218
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001219 if (atomic)
1220 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001221
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001222 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1223 if (npages == 1)
1224 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001225
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001226 down_read(&current->mm->mmap_sem);
1227 if (npages == -EHWPOISON ||
1228 (!async && check_user_page_hwpoison(addr))) {
1229 pfn = KVM_PFN_ERR_HWPOISON;
1230 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001231 }
Izik Eidus539cb662007-11-11 22:05:04 +02001232
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001233 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001234
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001235 if (vma == NULL)
1236 pfn = KVM_PFN_ERR_FAULT;
1237 else if ((vma->vm_flags & VM_PFNMAP)) {
1238 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1239 vma->vm_pgoff;
1240 BUG_ON(!kvm_is_mmio_pfn(pfn));
1241 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001242 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001243 *async = true;
1244 pfn = KVM_PFN_ERR_FAULT;
1245 }
1246exit:
1247 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001248 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001249}
1250
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001251static pfn_t
1252__gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
1253 bool *async, bool write_fault, bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001254{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001255 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1256
1257 if (addr == KVM_HVA_ERR_RO_BAD)
1258 return KVM_PFN_ERR_RO_FAULT;
1259
1260 if (kvm_is_error_hva(addr))
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001261 return KVM_PFN_NOSLOT;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001262
1263 /* Do not map writable pfn in the readonly memslot. */
1264 if (writable && memslot_is_readonly(slot)) {
1265 *writable = false;
1266 writable = NULL;
1267 }
1268
1269 return hva_to_pfn(addr, atomic, async, write_fault,
1270 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001271}
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001272
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001273static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1274 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001275{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001276 struct kvm_memory_slot *slot;
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001277
Gleb Natapovaf585b92010-10-14 11:22:46 +02001278 if (async)
1279 *async = false;
1280
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001281 slot = gfn_to_memslot(kvm, gfn);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001282
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001283 return __gfn_to_pfn_memslot(slot, gfn, atomic, async, write_fault,
1284 writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001285}
1286
1287pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1288{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001289 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001290}
1291EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1292
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001293pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1294 bool write_fault, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02001295{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001296 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001297}
1298EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1299
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001300pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1301{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001302 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001303}
Anthony Liguori35149e22008-04-02 14:46:56 -05001304EXPORT_SYMBOL_GPL(gfn_to_pfn);
1305
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001306pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1307 bool *writable)
1308{
1309 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1310}
1311EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1312
Xiao Guangrongd5661042012-07-17 21:56:16 +08001313pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001314{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001315 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001316}
1317
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001318pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
1319{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001320 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001321}
1322EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1323
Xiao Guangrong48987782010-08-22 19:11:43 +08001324int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1325 int nr_pages)
1326{
1327 unsigned long addr;
1328 gfn_t entry;
1329
Gleb Natapov49c77542010-10-18 15:22:23 +02001330 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001331 if (kvm_is_error_hva(addr))
1332 return -1;
1333
1334 if (entry < nr_pages)
1335 return 0;
1336
1337 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1338}
1339EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1340
Xiao Guangronga2766322012-07-26 11:58:59 +08001341static struct page *kvm_pfn_to_page(pfn_t pfn)
1342{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001343 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001344 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001345
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001346 if (kvm_is_mmio_pfn(pfn)) {
1347 WARN_ON(1);
1348 return KVM_ERR_PTR_BAD_PAGE;
1349 }
1350
Xiao Guangronga2766322012-07-26 11:58:59 +08001351 return pfn_to_page(pfn);
1352}
1353
Anthony Liguori35149e22008-04-02 14:46:56 -05001354struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1355{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001356 pfn_t pfn;
1357
1358 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001359
Xiao Guangronga2766322012-07-26 11:58:59 +08001360 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001361}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001362
Avi Kivity954bbbc2007-03-30 14:02:32 +03001363EXPORT_SYMBOL_GPL(gfn_to_page);
1364
Izik Eidusb4231d62007-11-20 11:49:33 +02001365void kvm_release_page_clean(struct page *page)
1366{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001367 WARN_ON(is_error_page(page));
1368
Anthony Liguori35149e22008-04-02 14:46:56 -05001369 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001370}
1371EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1372
Anthony Liguori35149e22008-04-02 14:46:56 -05001373void kvm_release_pfn_clean(pfn_t pfn)
1374{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001375 if (!is_error_noslot_pfn(pfn) && !kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001376 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001377}
1378EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1379
Izik Eidusb4231d62007-11-20 11:49:33 +02001380void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001381{
Xiao Guangronga2766322012-07-26 11:58:59 +08001382 WARN_ON(is_error_page(page));
1383
Anthony Liguori35149e22008-04-02 14:46:56 -05001384 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001385}
Izik Eidusb4231d62007-11-20 11:49:33 +02001386EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001387
Anthony Liguori35149e22008-04-02 14:46:56 -05001388void kvm_release_pfn_dirty(pfn_t pfn)
1389{
1390 kvm_set_pfn_dirty(pfn);
1391 kvm_release_pfn_clean(pfn);
1392}
1393EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
1394
1395void kvm_set_page_dirty(struct page *page)
1396{
1397 kvm_set_pfn_dirty(page_to_pfn(page));
1398}
1399EXPORT_SYMBOL_GPL(kvm_set_page_dirty);
1400
1401void kvm_set_pfn_dirty(pfn_t pfn)
1402{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001403 if (!kvm_is_mmio_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001404 struct page *page = pfn_to_page(pfn);
1405 if (!PageReserved(page))
1406 SetPageDirty(page);
1407 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001408}
1409EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1410
1411void kvm_set_pfn_accessed(pfn_t pfn)
1412{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001413 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001414 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001415}
1416EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1417
1418void kvm_get_pfn(pfn_t pfn)
1419{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001420 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001421 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001422}
1423EXPORT_SYMBOL_GPL(kvm_get_pfn);
1424
Izik Eidus195aefd2007-10-01 22:14:18 +02001425static int next_segment(unsigned long len, int offset)
1426{
1427 if (len > PAGE_SIZE - offset)
1428 return PAGE_SIZE - offset;
1429 else
1430 return len;
1431}
1432
1433int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1434 int len)
1435{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001436 int r;
1437 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001438
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001439 addr = gfn_to_hva_read(kvm, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001440 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001441 return -EFAULT;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001442 r = kvm_read_hva(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001443 if (r)
1444 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001445 return 0;
1446}
1447EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1448
1449int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1450{
1451 gfn_t gfn = gpa >> PAGE_SHIFT;
1452 int seg;
1453 int offset = offset_in_page(gpa);
1454 int ret;
1455
1456 while ((seg = next_segment(len, offset)) != 0) {
1457 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1458 if (ret < 0)
1459 return ret;
1460 offset = 0;
1461 len -= seg;
1462 data += seg;
1463 ++gfn;
1464 }
1465 return 0;
1466}
1467EXPORT_SYMBOL_GPL(kvm_read_guest);
1468
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001469int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1470 unsigned long len)
1471{
1472 int r;
1473 unsigned long addr;
1474 gfn_t gfn = gpa >> PAGE_SHIFT;
1475 int offset = offset_in_page(gpa);
1476
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001477 addr = gfn_to_hva_read(kvm, gfn);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001478 if (kvm_is_error_hva(addr))
1479 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001480 pagefault_disable();
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001481 r = kvm_read_hva_atomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001482 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001483 if (r)
1484 return -EFAULT;
1485 return 0;
1486}
1487EXPORT_SYMBOL(kvm_read_guest_atomic);
1488
Izik Eidus195aefd2007-10-01 22:14:18 +02001489int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1490 int offset, int len)
1491{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001492 int r;
1493 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001494
Izik Eiduse0506bc2007-11-11 22:10:22 +02001495 addr = gfn_to_hva(kvm, gfn);
1496 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001497 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001498 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001499 if (r)
1500 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001501 mark_page_dirty(kvm, gfn);
1502 return 0;
1503}
1504EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1505
1506int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1507 unsigned long len)
1508{
1509 gfn_t gfn = gpa >> PAGE_SHIFT;
1510 int seg;
1511 int offset = offset_in_page(gpa);
1512 int ret;
1513
1514 while ((seg = next_segment(len, offset)) != 0) {
1515 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1516 if (ret < 0)
1517 return ret;
1518 offset = 0;
1519 len -= seg;
1520 data += seg;
1521 ++gfn;
1522 }
1523 return 0;
1524}
1525
Gleb Natapov49c77542010-10-18 15:22:23 +02001526int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1527 gpa_t gpa)
1528{
1529 struct kvm_memslots *slots = kvm_memslots(kvm);
1530 int offset = offset_in_page(gpa);
1531 gfn_t gfn = gpa >> PAGE_SHIFT;
1532
1533 ghc->gpa = gpa;
1534 ghc->generation = slots->generation;
Paul Mackerras9d4cba72012-01-12 20:09:51 +00001535 ghc->memslot = gfn_to_memslot(kvm, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02001536 ghc->hva = gfn_to_hva_many(ghc->memslot, gfn, NULL);
1537 if (!kvm_is_error_hva(ghc->hva))
1538 ghc->hva += offset;
1539 else
1540 return -EFAULT;
1541
1542 return 0;
1543}
1544EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1545
1546int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1547 void *data, unsigned long len)
1548{
1549 struct kvm_memslots *slots = kvm_memslots(kvm);
1550 int r;
1551
1552 if (slots->generation != ghc->generation)
1553 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1554
1555 if (kvm_is_error_hva(ghc->hva))
1556 return -EFAULT;
1557
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001558 r = __copy_to_user((void __user *)ghc->hva, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001559 if (r)
1560 return -EFAULT;
1561 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1562
1563 return 0;
1564}
1565EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1566
Gleb Natapove03b6442011-07-11 15:28:11 -04001567int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1568 void *data, unsigned long len)
1569{
1570 struct kvm_memslots *slots = kvm_memslots(kvm);
1571 int r;
1572
1573 if (slots->generation != ghc->generation)
1574 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1575
1576 if (kvm_is_error_hva(ghc->hva))
1577 return -EFAULT;
1578
1579 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1580 if (r)
1581 return -EFAULT;
1582
1583 return 0;
1584}
1585EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1586
Izik Eidus195aefd2007-10-01 22:14:18 +02001587int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1588{
Heiko Carstens3bcc8a82010-10-27 17:21:21 +02001589 return kvm_write_guest_page(kvm, gfn, (const void *) empty_zero_page,
1590 offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001591}
1592EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1593
1594int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1595{
1596 gfn_t gfn = gpa >> PAGE_SHIFT;
1597 int seg;
1598 int offset = offset_in_page(gpa);
1599 int ret;
1600
1601 while ((seg = next_segment(len, offset)) != 0) {
1602 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1603 if (ret < 0)
1604 return ret;
1605 offset = 0;
1606 len -= seg;
1607 ++gfn;
1608 }
1609 return 0;
1610}
1611EXPORT_SYMBOL_GPL(kvm_clear_guest);
1612
Gleb Natapov49c77542010-10-18 15:22:23 +02001613void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
1614 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001615{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001616 if (memslot && memslot->dirty_bitmap) {
1617 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001618
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07001619 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001620 }
1621}
1622
Gleb Natapov49c77542010-10-18 15:22:23 +02001623void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1624{
1625 struct kvm_memory_slot *memslot;
1626
1627 memslot = gfn_to_memslot(kvm, gfn);
1628 mark_page_dirty_in_slot(kvm, memslot, gfn);
1629}
1630
Eddie Dongb6958ce2007-07-18 12:15:21 +03001631/*
1632 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1633 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001634void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001635{
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001636 DEFINE_WAIT(wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001637
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001638 for (;;) {
1639 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001640
Gleb Natapova1b37102009-07-09 15:33:52 +03001641 if (kvm_arch_vcpu_runnable(vcpu)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03001642 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001643 break;
Marcelo Tosattid7690172008-09-08 15:23:48 -03001644 }
Gleb Natapov09cec752009-03-23 15:11:44 +02001645 if (kvm_cpu_has_pending_timer(vcpu))
1646 break;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001647 if (signal_pending(current))
1648 break;
1649
Eddie Dongb6958ce2007-07-18 12:15:21 +03001650 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001651 }
1652
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001653 finish_wait(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001654}
1655
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001656#ifndef CONFIG_S390
Christoffer Dallb6d33832012-03-08 16:44:24 -05001657/*
1658 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1659 */
1660void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1661{
1662 int me;
1663 int cpu = vcpu->cpu;
1664 wait_queue_head_t *wqp;
1665
1666 wqp = kvm_arch_vcpu_wq(vcpu);
1667 if (waitqueue_active(wqp)) {
1668 wake_up_interruptible(wqp);
1669 ++vcpu->stat.halt_wakeup;
1670 }
1671
1672 me = get_cpu();
1673 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1674 if (kvm_arch_vcpu_should_kick(vcpu))
1675 smp_send_reschedule(cpu);
1676 put_cpu();
1677}
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001678#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05001679
Avi Kivity6aa8b732006-12-10 02:21:36 -08001680void kvm_resched(struct kvm_vcpu *vcpu)
1681{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001682 if (!need_resched())
1683 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001684 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001685}
1686EXPORT_SYMBOL_GPL(kvm_resched);
1687
Konstantin Weitz41628d32012-04-25 15:30:38 +02001688bool kvm_vcpu_yield_to(struct kvm_vcpu *target)
1689{
1690 struct pid *pid;
1691 struct task_struct *task = NULL;
1692
1693 rcu_read_lock();
1694 pid = rcu_dereference(target->pid);
1695 if (pid)
1696 task = get_pid_task(target->pid, PIDTYPE_PID);
1697 rcu_read_unlock();
1698 if (!task)
1699 return false;
1700 if (task->flags & PF_VCPU) {
1701 put_task_struct(task);
1702 return false;
1703 }
1704 if (yield_to(task, 1)) {
1705 put_task_struct(task);
1706 return true;
1707 }
1708 put_task_struct(task);
1709 return false;
1710}
1711EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
1712
Raghavendra K T06e48c52012-07-19 15:17:52 +05301713#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1714/*
1715 * Helper that checks whether a VCPU is eligible for directed yield.
1716 * Most eligible candidate to yield is decided by following heuristics:
1717 *
1718 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
1719 * (preempted lock holder), indicated by @in_spin_loop.
1720 * Set at the beiginning and cleared at the end of interception/PLE handler.
1721 *
1722 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
1723 * chance last time (mostly it has become eligible now since we have probably
1724 * yielded to lockholder in last iteration. This is done by toggling
1725 * @dy_eligible each time a VCPU checked for eligibility.)
1726 *
1727 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
1728 * to preempted lock-holder could result in wrong VCPU selection and CPU
1729 * burning. Giving priority for a potential lock-holder increases lock
1730 * progress.
1731 *
1732 * Since algorithm is based on heuristics, accessing another VCPU data without
1733 * locking does not harm. It may result in trying to yield to same VCPU, fail
1734 * and continue with next VCPU and so on.
1735 */
1736bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
1737{
1738 bool eligible;
1739
1740 eligible = !vcpu->spin_loop.in_spin_loop ||
1741 (vcpu->spin_loop.in_spin_loop &&
1742 vcpu->spin_loop.dy_eligible);
1743
1744 if (vcpu->spin_loop.in_spin_loop)
1745 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
1746
1747 return eligible;
1748}
1749#endif
Rik van Riel217ece62011-02-01 09:53:28 -05001750void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001751{
Rik van Riel217ece62011-02-01 09:53:28 -05001752 struct kvm *kvm = me->kvm;
1753 struct kvm_vcpu *vcpu;
1754 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
1755 int yielded = 0;
1756 int pass;
1757 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001758
Raghavendra K T4c088492012-07-18 19:07:46 +05301759 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05001760 /*
1761 * We boost the priority of a VCPU that is runnable but not
1762 * currently running, because it got preempted by something
1763 * else and called schedule in __vcpu_run. Hopefully that
1764 * VCPU is holding the lock that we need and will release it.
1765 * We approximate round-robin by starting at the last boosted VCPU.
1766 */
1767 for (pass = 0; pass < 2 && !yielded; pass++) {
1768 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04001769 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05001770 i = last_boosted_vcpu;
1771 continue;
1772 } else if (pass && i > last_boosted_vcpu)
1773 break;
1774 if (vcpu == me)
1775 continue;
1776 if (waitqueue_active(&vcpu->wq))
1777 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301778 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
1779 continue;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001780 if (kvm_vcpu_yield_to(vcpu)) {
Rik van Riel217ece62011-02-01 09:53:28 -05001781 kvm->last_boosted_vcpu = i;
1782 yielded = 1;
1783 break;
1784 }
Rik van Riel217ece62011-02-01 09:53:28 -05001785 }
1786 }
Raghavendra K T4c088492012-07-18 19:07:46 +05301787 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05301788
1789 /* Ensure vcpu is not eligible during next spinloop */
1790 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001791}
1792EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1793
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001794static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001795{
1796 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001797 struct page *page;
1798
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001799 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001800 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001801#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001802 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001803 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001804#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001805#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1806 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1807 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1808#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001809 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01001810 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001811 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001812 vmf->page = page;
1813 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001814}
1815
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001816static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001817 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001818};
1819
1820static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1821{
1822 vma->vm_ops = &kvm_vcpu_vm_ops;
1823 return 0;
1824}
1825
Avi Kivitybccf2152007-02-21 18:04:26 +02001826static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1827{
1828 struct kvm_vcpu *vcpu = filp->private_data;
1829
Al Viro66c0b392008-04-19 20:33:56 +01001830 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001831 return 0;
1832}
1833
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001834static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001835 .release = kvm_vcpu_release,
1836 .unlocked_ioctl = kvm_vcpu_ioctl,
Alexander Graf1dda6062011-06-08 02:45:37 +02001837#ifdef CONFIG_COMPAT
1838 .compat_ioctl = kvm_vcpu_compat_ioctl,
1839#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001840 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001841 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001842};
1843
1844/*
1845 * Allocates an inode for the vcpu.
1846 */
1847static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1848{
Roland Dreier628ff7c2009-12-18 09:41:24 -08001849 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR);
Avi Kivitybccf2152007-02-21 18:04:26 +02001850}
1851
Avi Kivityc5ea7662007-02-20 18:41:05 +02001852/*
1853 * Creates some virtual cpus. Good luck creating more than one.
1854 */
Gleb Natapov73880c82009-06-09 15:56:28 +03001855static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02001856{
1857 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001858 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001859
Gleb Natapov73880c82009-06-09 15:56:28 +03001860 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001861 if (IS_ERR(vcpu))
1862 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001863
Avi Kivity15ad7142007-07-11 18:17:21 +03001864 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1865
Avi Kivity26e52152007-11-20 15:30:24 +02001866 r = kvm_arch_vcpu_setup(vcpu);
1867 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02001868 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02001869
Shaohua Li11ec2802007-07-23 14:51:37 +08001870 mutex_lock(&kvm->lock);
Avi Kivity3e515702012-03-05 14:23:29 +02001871 if (!kvm_vcpu_compatible(vcpu)) {
1872 r = -EINVAL;
1873 goto unlock_vcpu_destroy;
1874 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001875 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1876 r = -EINVAL;
Jan Kiszkad7805922011-05-23 10:33:05 +02001877 goto unlock_vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001878 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001879
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001880 kvm_for_each_vcpu(r, v, kvm)
1881 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03001882 r = -EEXIST;
Jan Kiszkad7805922011-05-23 10:33:05 +02001883 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03001884 }
1885
1886 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001887
1888 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01001889 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001890 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03001891 if (r < 0) {
1892 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02001893 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03001894 }
1895
1896 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
1897 smp_wmb();
1898 atomic_inc(&kvm->online_vcpus);
1899
Gleb Natapov73880c82009-06-09 15:56:28 +03001900 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02001901 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02001902 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001903
Jan Kiszkad7805922011-05-23 10:33:05 +02001904unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03001905 mutex_unlock(&kvm->lock);
Jan Kiszkad7805922011-05-23 10:33:05 +02001906vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06001907 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001908 return r;
1909}
1910
Avi Kivity1961d272007-03-05 19:46:05 +02001911static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1912{
1913 if (sigset) {
1914 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1915 vcpu->sigset_active = 1;
1916 vcpu->sigset = *sigset;
1917 } else
1918 vcpu->sigset_active = 0;
1919 return 0;
1920}
1921
Avi Kivitybccf2152007-02-21 18:04:26 +02001922static long kvm_vcpu_ioctl(struct file *filp,
1923 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001924{
Avi Kivitybccf2152007-02-21 18:04:26 +02001925 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00001926 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02001927 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001928 struct kvm_fpu *fpu = NULL;
1929 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001930
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001931 if (vcpu->kvm->mm != current->mm)
1932 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03001933
1934#if defined(CONFIG_S390) || defined(CONFIG_PPC)
1935 /*
1936 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
1937 * so vcpu_load() would break it.
1938 */
1939 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT)
1940 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
1941#endif
1942
1943
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03001944 r = vcpu_load(vcpu);
1945 if (r)
1946 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001947 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001948 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001949 r = -EINVAL;
1950 if (arg)
1951 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05001952 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02001953 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001954 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001955 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001956 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001957
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001958 r = -ENOMEM;
1959 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1960 if (!kvm_regs)
1961 goto out;
1962 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001963 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001964 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001965 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001966 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
1967 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001968 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001969out_free1:
1970 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001971 break;
1972 }
1973 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001974 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001975
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001976 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001977 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
1978 if (IS_ERR(kvm_regs)) {
1979 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001980 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001981 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001982 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001983 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001984 break;
1985 }
1986 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001987 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1988 r = -ENOMEM;
1989 if (!kvm_sregs)
1990 goto out;
1991 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001992 if (r)
1993 goto out;
1994 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001995 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001996 goto out;
1997 r = 0;
1998 break;
1999 }
2000 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002001 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2002 if (IS_ERR(kvm_sregs)) {
2003 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002004 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002005 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002006 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002007 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002008 break;
2009 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002010 case KVM_GET_MP_STATE: {
2011 struct kvm_mp_state mp_state;
2012
2013 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2014 if (r)
2015 goto out;
2016 r = -EFAULT;
2017 if (copy_to_user(argp, &mp_state, sizeof mp_state))
2018 goto out;
2019 r = 0;
2020 break;
2021 }
2022 case KVM_SET_MP_STATE: {
2023 struct kvm_mp_state mp_state;
2024
2025 r = -EFAULT;
2026 if (copy_from_user(&mp_state, argp, sizeof mp_state))
2027 goto out;
2028 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002029 break;
2030 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002031 case KVM_TRANSLATE: {
2032 struct kvm_translation tr;
2033
2034 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002035 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002036 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002037 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002038 if (r)
2039 goto out;
2040 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002041 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002042 goto out;
2043 r = 0;
2044 break;
2045 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002046 case KVM_SET_GUEST_DEBUG: {
2047 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002048
2049 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002050 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002051 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002052 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002053 break;
2054 }
Avi Kivity1961d272007-03-05 19:46:05 +02002055 case KVM_SET_SIGNAL_MASK: {
2056 struct kvm_signal_mask __user *sigmask_arg = argp;
2057 struct kvm_signal_mask kvm_sigmask;
2058 sigset_t sigset, *p;
2059
2060 p = NULL;
2061 if (argp) {
2062 r = -EFAULT;
2063 if (copy_from_user(&kvm_sigmask, argp,
2064 sizeof kvm_sigmask))
2065 goto out;
2066 r = -EINVAL;
2067 if (kvm_sigmask.len != sizeof sigset)
2068 goto out;
2069 r = -EFAULT;
2070 if (copy_from_user(&sigset, sigmask_arg->sigset,
2071 sizeof sigset))
2072 goto out;
2073 p = &sigset;
2074 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002075 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002076 break;
2077 }
Avi Kivityb8836732007-04-01 16:34:31 +03002078 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002079 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2080 r = -ENOMEM;
2081 if (!fpu)
2082 goto out;
2083 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002084 if (r)
2085 goto out;
2086 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002087 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002088 goto out;
2089 r = 0;
2090 break;
2091 }
2092 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002093 fpu = memdup_user(argp, sizeof(*fpu));
2094 if (IS_ERR(fpu)) {
2095 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002096 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002097 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002098 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002099 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002100 break;
2101 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002102 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002103 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002104 }
2105out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002106 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002107 kfree(fpu);
2108 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002109 return r;
2110}
2111
Alexander Graf1dda6062011-06-08 02:45:37 +02002112#ifdef CONFIG_COMPAT
2113static long kvm_vcpu_compat_ioctl(struct file *filp,
2114 unsigned int ioctl, unsigned long arg)
2115{
2116 struct kvm_vcpu *vcpu = filp->private_data;
2117 void __user *argp = compat_ptr(arg);
2118 int r;
2119
2120 if (vcpu->kvm->mm != current->mm)
2121 return -EIO;
2122
2123 switch (ioctl) {
2124 case KVM_SET_SIGNAL_MASK: {
2125 struct kvm_signal_mask __user *sigmask_arg = argp;
2126 struct kvm_signal_mask kvm_sigmask;
2127 compat_sigset_t csigset;
2128 sigset_t sigset;
2129
2130 if (argp) {
2131 r = -EFAULT;
2132 if (copy_from_user(&kvm_sigmask, argp,
2133 sizeof kvm_sigmask))
2134 goto out;
2135 r = -EINVAL;
2136 if (kvm_sigmask.len != sizeof csigset)
2137 goto out;
2138 r = -EFAULT;
2139 if (copy_from_user(&csigset, sigmask_arg->sigset,
2140 sizeof csigset))
2141 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002142 sigset_from_compat(&sigset, &csigset);
2143 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2144 } else
2145 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002146 break;
2147 }
2148 default:
2149 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2150 }
2151
2152out:
2153 return r;
2154}
2155#endif
2156
Avi Kivitybccf2152007-02-21 18:04:26 +02002157static long kvm_vm_ioctl(struct file *filp,
2158 unsigned int ioctl, unsigned long arg)
2159{
2160 struct kvm *kvm = filp->private_data;
2161 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002162 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002163
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002164 if (kvm->mm != current->mm)
2165 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002166 switch (ioctl) {
2167 case KVM_CREATE_VCPU:
2168 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002169 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002170 case KVM_SET_USER_MEMORY_REGION: {
2171 struct kvm_userspace_memory_region kvm_userspace_mem;
2172
2173 r = -EFAULT;
2174 if (copy_from_user(&kvm_userspace_mem, argp,
2175 sizeof kvm_userspace_mem))
2176 goto out;
2177
Alex Williamsonf82a8cf2012-12-10 10:33:21 -07002178 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002179 break;
2180 }
2181 case KVM_GET_DIRTY_LOG: {
2182 struct kvm_dirty_log log;
2183
2184 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002185 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002186 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002187 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002188 break;
2189 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002190#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2191 case KVM_REGISTER_COALESCED_MMIO: {
2192 struct kvm_coalesced_mmio_zone zone;
2193 r = -EFAULT;
2194 if (copy_from_user(&zone, argp, sizeof zone))
2195 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002196 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002197 break;
2198 }
2199 case KVM_UNREGISTER_COALESCED_MMIO: {
2200 struct kvm_coalesced_mmio_zone zone;
2201 r = -EFAULT;
2202 if (copy_from_user(&zone, argp, sizeof zone))
2203 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002204 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002205 break;
2206 }
2207#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04002208 case KVM_IRQFD: {
2209 struct kvm_irqfd data;
2210
2211 r = -EFAULT;
2212 if (copy_from_user(&data, argp, sizeof data))
2213 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06002214 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecb2009-05-20 10:30:49 -04002215 break;
2216 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002217 case KVM_IOEVENTFD: {
2218 struct kvm_ioeventfd data;
2219
2220 r = -EFAULT;
2221 if (copy_from_user(&data, argp, sizeof data))
2222 goto out;
2223 r = kvm_ioeventfd(kvm, &data);
2224 break;
2225 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002226#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2227 case KVM_SET_BOOT_CPU_ID:
2228 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002229 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002230 if (atomic_read(&kvm->online_vcpus) != 0)
2231 r = -EBUSY;
2232 else
2233 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002234 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002235 break;
2236#endif
Jan Kiszka07975ad2012-03-29 21:14:12 +02002237#ifdef CONFIG_HAVE_KVM_MSI
2238 case KVM_SIGNAL_MSI: {
2239 struct kvm_msi msi;
2240
2241 r = -EFAULT;
2242 if (copy_from_user(&msi, argp, sizeof msi))
2243 goto out;
2244 r = kvm_send_userspace_msi(kvm, &msi);
2245 break;
2246 }
2247#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002248#ifdef __KVM_HAVE_IRQ_LINE
2249 case KVM_IRQ_LINE_STATUS:
2250 case KVM_IRQ_LINE: {
2251 struct kvm_irq_level irq_event;
2252
2253 r = -EFAULT;
2254 if (copy_from_user(&irq_event, argp, sizeof irq_event))
2255 goto out;
2256
2257 r = kvm_vm_ioctl_irq_line(kvm, &irq_event);
2258 if (r)
2259 goto out;
2260
2261 r = -EFAULT;
2262 if (ioctl == KVM_IRQ_LINE_STATUS) {
2263 if (copy_to_user(argp, &irq_event, sizeof irq_event))
2264 goto out;
2265 }
2266
2267 r = 0;
2268 break;
2269 }
2270#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02002271 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002272 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivitybfd99ff2009-08-26 14:57:50 +03002273 if (r == -ENOTTY)
2274 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002275 }
2276out:
2277 return r;
2278}
2279
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002280#ifdef CONFIG_COMPAT
2281struct compat_kvm_dirty_log {
2282 __u32 slot;
2283 __u32 padding1;
2284 union {
2285 compat_uptr_t dirty_bitmap; /* one bit per page */
2286 __u64 padding2;
2287 };
2288};
2289
2290static long kvm_vm_compat_ioctl(struct file *filp,
2291 unsigned int ioctl, unsigned long arg)
2292{
2293 struct kvm *kvm = filp->private_data;
2294 int r;
2295
2296 if (kvm->mm != current->mm)
2297 return -EIO;
2298 switch (ioctl) {
2299 case KVM_GET_DIRTY_LOG: {
2300 struct compat_kvm_dirty_log compat_log;
2301 struct kvm_dirty_log log;
2302
2303 r = -EFAULT;
2304 if (copy_from_user(&compat_log, (void __user *)arg,
2305 sizeof(compat_log)))
2306 goto out;
2307 log.slot = compat_log.slot;
2308 log.padding1 = compat_log.padding1;
2309 log.padding2 = compat_log.padding2;
2310 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2311
2312 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002313 break;
2314 }
2315 default:
2316 r = kvm_vm_ioctl(filp, ioctl, arg);
2317 }
2318
2319out:
2320 return r;
2321}
2322#endif
2323
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002324static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivityf17abe92007-02-21 19:28:04 +02002325{
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002326 struct page *page[1];
2327 unsigned long addr;
2328 int npages;
2329 gfn_t gfn = vmf->pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02002330 struct kvm *kvm = vma->vm_file->private_data;
Avi Kivityf17abe92007-02-21 19:28:04 +02002331
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002332 addr = gfn_to_hva(kvm, gfn);
2333 if (kvm_is_error_hva(addr))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002334 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002335
2336 npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page,
2337 NULL);
2338 if (unlikely(npages != 1))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002339 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002340
2341 vmf->page = page[0];
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002342 return 0;
Avi Kivityf17abe92007-02-21 19:28:04 +02002343}
2344
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002345static const struct vm_operations_struct kvm_vm_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002346 .fault = kvm_vm_fault,
Avi Kivityf17abe92007-02-21 19:28:04 +02002347};
2348
2349static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
2350{
2351 vma->vm_ops = &kvm_vm_vm_ops;
2352 return 0;
2353}
2354
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002355static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002356 .release = kvm_vm_release,
2357 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002358#ifdef CONFIG_COMPAT
2359 .compat_ioctl = kvm_vm_compat_ioctl,
2360#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02002361 .mmap = kvm_vm_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002362 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002363};
2364
Carsten Ottee08b9632012-01-04 10:25:20 +01002365static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02002366{
Heiko Carstensaac87632010-10-27 17:22:10 +02002367 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002368 struct kvm *kvm;
2369
Carsten Ottee08b9632012-01-04 10:25:20 +01002370 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04002371 if (IS_ERR(kvm))
2372 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002373#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2374 r = kvm_coalesced_mmio_init(kvm);
2375 if (r < 0) {
2376 kvm_put_kvm(kvm);
2377 return r;
2378 }
2379#endif
Heiko Carstensaac87632010-10-27 17:22:10 +02002380 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
2381 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002382 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002383
Heiko Carstensaac87632010-10-27 17:22:10 +02002384 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002385}
2386
Avi Kivity1a811b62008-12-08 18:25:27 +02002387static long kvm_dev_ioctl_check_extension_generic(long arg)
2388{
2389 switch (arg) {
Avi Kivityca9edae2008-12-08 18:29:29 +02002390 case KVM_CAP_USER_MEMORY:
Avi Kivity1a811b62008-12-08 18:25:27 +02002391 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
Jan Kiszka4cd481f2009-04-13 11:59:32 +02002392 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Gleb Natapov73880c82009-06-09 15:56:28 +03002393#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2394 case KVM_CAP_SET_BOOT_CPU_ID:
2395#endif
Avi Kivitya9c73992009-11-04 11:54:59 +02002396 case KVM_CAP_INTERNAL_ERROR_DATA:
Jan Kiszka07975ad2012-03-29 21:14:12 +02002397#ifdef CONFIG_HAVE_KVM_MSI
2398 case KVM_CAP_SIGNAL_MSI:
2399#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002400 return 1;
Marc Zyngier9900b4b2012-06-15 15:07:02 -04002401#ifdef KVM_CAP_IRQ_ROUTING
Avi Kivity399ec802008-11-19 13:58:46 +02002402 case KVM_CAP_IRQ_ROUTING:
Sheng Yang36463142009-03-16 16:33:43 +08002403 return KVM_MAX_IRQ_ROUTES;
Avi Kivity399ec802008-11-19 13:58:46 +02002404#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002405 default:
2406 break;
2407 }
2408 return kvm_dev_ioctl_check_extension(arg);
2409}
2410
Avi Kivityf17abe92007-02-21 19:28:04 +02002411static long kvm_dev_ioctl(struct file *filp,
2412 unsigned int ioctl, unsigned long arg)
2413{
Avi Kivity07c45a32007-03-07 13:05:38 +02002414 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002415
2416 switch (ioctl) {
2417 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002418 r = -EINVAL;
2419 if (arg)
2420 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002421 r = KVM_API_VERSION;
2422 break;
2423 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01002424 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002425 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002426 case KVM_CHECK_EXTENSION:
Avi Kivity1a811b62008-12-08 18:25:27 +02002427 r = kvm_dev_ioctl_check_extension_generic(arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002428 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002429 case KVM_GET_VCPU_MMAP_SIZE:
2430 r = -EINVAL;
2431 if (arg)
2432 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002433 r = PAGE_SIZE; /* struct kvm_run */
2434#ifdef CONFIG_X86
2435 r += PAGE_SIZE; /* pio data page */
2436#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002437#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2438 r += PAGE_SIZE; /* coalesced mmio ring page */
2439#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002440 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002441 case KVM_TRACE_ENABLE:
2442 case KVM_TRACE_PAUSE:
2443 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002444 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002445 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002446 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002447 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002448 }
2449out:
2450 return r;
2451}
2452
Avi Kivity6aa8b732006-12-10 02:21:36 -08002453static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002454 .unlocked_ioctl = kvm_dev_ioctl,
2455 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002456 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002457};
2458
2459static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002460 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002461 "kvm",
2462 &kvm_chardev_ops,
2463};
2464
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002465static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002466{
2467 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002468 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002469
Rusty Russell7f59f492008-12-07 21:25:45 +10302470 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002471 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002472
Rusty Russell7f59f492008-12-07 21:25:45 +10302473 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002474
2475 r = kvm_arch_hardware_enable(NULL);
2476
2477 if (r) {
2478 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2479 atomic_inc(&hardware_enable_failed);
2480 printk(KERN_INFO "kvm: enabling virtualization on "
2481 "CPU%d failed\n", cpu);
2482 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002483}
2484
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002485static void hardware_enable(void *junk)
2486{
Jan Kiszkae935b832011-02-08 12:55:33 +01002487 raw_spin_lock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002488 hardware_enable_nolock(junk);
Jan Kiszkae935b832011-02-08 12:55:33 +01002489 raw_spin_unlock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002490}
2491
2492static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002493{
2494 int cpu = raw_smp_processor_id();
2495
Rusty Russell7f59f492008-12-07 21:25:45 +10302496 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002497 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302498 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002499 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03002500}
2501
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002502static void hardware_disable(void *junk)
2503{
Jan Kiszkae935b832011-02-08 12:55:33 +01002504 raw_spin_lock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002505 hardware_disable_nolock(junk);
Jan Kiszkae935b832011-02-08 12:55:33 +01002506 raw_spin_unlock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002507}
2508
Alexander Graf10474ae2009-09-15 11:37:46 +02002509static void hardware_disable_all_nolock(void)
2510{
2511 BUG_ON(!kvm_usage_count);
2512
2513 kvm_usage_count--;
2514 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002515 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002516}
2517
2518static void hardware_disable_all(void)
2519{
Jan Kiszkae935b832011-02-08 12:55:33 +01002520 raw_spin_lock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002521 hardware_disable_all_nolock();
Jan Kiszkae935b832011-02-08 12:55:33 +01002522 raw_spin_unlock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002523}
2524
2525static int hardware_enable_all(void)
2526{
2527 int r = 0;
2528
Jan Kiszkae935b832011-02-08 12:55:33 +01002529 raw_spin_lock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002530
2531 kvm_usage_count++;
2532 if (kvm_usage_count == 1) {
2533 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002534 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002535
2536 if (atomic_read(&hardware_enable_failed)) {
2537 hardware_disable_all_nolock();
2538 r = -EBUSY;
2539 }
2540 }
2541
Jan Kiszkae935b832011-02-08 12:55:33 +01002542 raw_spin_unlock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002543
2544 return r;
2545}
2546
Avi Kivity774c47f2007-02-12 00:54:47 -08002547static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2548 void *v)
2549{
2550 int cpu = (long)v;
2551
Alexander Graf10474ae2009-09-15 11:37:46 +02002552 if (!kvm_usage_count)
2553 return NOTIFY_OK;
2554
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002555 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002556 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002557 case CPU_DYING:
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002558 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2559 cpu);
2560 hardware_disable(NULL);
2561 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002562 case CPU_STARTING:
Jeremy Katz43934a32007-02-19 14:37:46 +02002563 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2564 cpu);
Zachary Amsdenda908f22010-08-19 22:07:27 -10002565 hardware_enable(NULL);
Avi Kivity774c47f2007-02-12 00:54:47 -08002566 break;
2567 }
2568 return NOTIFY_OK;
2569}
2570
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002571
Avi Kivityb7c41452010-12-02 17:52:50 +02002572asmlinkage void kvm_spurious_fault(void)
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002573{
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002574 /* Fault while not rebooting. We want the trace. */
2575 BUG();
2576}
Avi Kivityb7c41452010-12-02 17:52:50 +02002577EXPORT_SYMBOL_GPL(kvm_spurious_fault);
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002578
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002579static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002580 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002581{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002582 /*
2583 * Some (well, at least mine) BIOSes hang on reboot if
2584 * in vmx root mode.
2585 *
2586 * And Intel TXT required VMX off for all cpu when system shutdown.
2587 */
2588 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2589 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002590 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002591 return NOTIFY_OK;
2592}
2593
2594static struct notifier_block kvm_reboot_notifier = {
2595 .notifier_call = kvm_reboot,
2596 .priority = 0,
2597};
2598
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002599static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002600{
2601 int i;
2602
2603 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03002604 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002605
2606 kvm_iodevice_destructor(pos);
2607 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002608 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002609}
2610
Sasha Levin743eeb02011-07-27 16:00:48 +03002611int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
2612{
2613 const struct kvm_io_range *r1 = p1;
2614 const struct kvm_io_range *r2 = p2;
2615
2616 if (r1->addr < r2->addr)
2617 return -1;
2618 if (r1->addr + r1->len > r2->addr + r2->len)
2619 return 1;
2620 return 0;
2621}
2622
2623int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
2624 gpa_t addr, int len)
2625{
Sasha Levin743eeb02011-07-27 16:00:48 +03002626 bus->range[bus->dev_count++] = (struct kvm_io_range) {
2627 .addr = addr,
2628 .len = len,
2629 .dev = dev,
2630 };
2631
2632 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
2633 kvm_io_bus_sort_cmp, NULL);
2634
2635 return 0;
2636}
2637
2638int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
2639 gpa_t addr, int len)
2640{
2641 struct kvm_io_range *range, key;
2642 int off;
2643
2644 key = (struct kvm_io_range) {
2645 .addr = addr,
2646 .len = len,
2647 };
2648
2649 range = bsearch(&key, bus->range, bus->dev_count,
2650 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
2651 if (range == NULL)
2652 return -ENOENT;
2653
2654 off = range - bus->range;
2655
2656 while (off > 0 && kvm_io_bus_sort_cmp(&key, &bus->range[off-1]) == 0)
2657 off--;
2658
2659 return off;
2660}
2661
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002662/* kvm_io_bus_write - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002663int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002664 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002665{
Sasha Levin743eeb02011-07-27 16:00:48 +03002666 int idx;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002667 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03002668 struct kvm_io_range range;
2669
2670 range = (struct kvm_io_range) {
2671 .addr = addr,
2672 .len = len,
2673 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002674
2675 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Sasha Levin743eeb02011-07-27 16:00:48 +03002676 idx = kvm_io_bus_get_first_dev(bus, addr, len);
2677 if (idx < 0)
2678 return -EOPNOTSUPP;
2679
2680 while (idx < bus->dev_count &&
2681 kvm_io_bus_sort_cmp(&range, &bus->range[idx]) == 0) {
2682 if (!kvm_iodevice_write(bus->range[idx].dev, addr, len, val))
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002683 return 0;
Sasha Levin743eeb02011-07-27 16:00:48 +03002684 idx++;
2685 }
2686
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002687 return -EOPNOTSUPP;
2688}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002689
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002690/* kvm_io_bus_read - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002691int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2692 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002693{
Sasha Levin743eeb02011-07-27 16:00:48 +03002694 int idx;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002695 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03002696 struct kvm_io_range range;
2697
2698 range = (struct kvm_io_range) {
2699 .addr = addr,
2700 .len = len,
2701 };
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002702
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002703 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Sasha Levin743eeb02011-07-27 16:00:48 +03002704 idx = kvm_io_bus_get_first_dev(bus, addr, len);
2705 if (idx < 0)
2706 return -EOPNOTSUPP;
2707
2708 while (idx < bus->dev_count &&
2709 kvm_io_bus_sort_cmp(&range, &bus->range[idx]) == 0) {
2710 if (!kvm_iodevice_read(bus->range[idx].dev, addr, len, val))
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002711 return 0;
Sasha Levin743eeb02011-07-27 16:00:48 +03002712 idx++;
2713 }
2714
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002715 return -EOPNOTSUPP;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002716}
2717
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002718/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03002719int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2720 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002721{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002722 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002723
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002724 bus = kvm->buses[bus_idx];
Amos Konga13007162012-03-09 12:17:32 +08002725 if (bus->dev_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002726 return -ENOSPC;
2727
Amos Konga13007162012-03-09 12:17:32 +08002728 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
2729 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002730 if (!new_bus)
2731 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08002732 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
2733 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03002734 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002735 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2736 synchronize_srcu_expedited(&kvm->srcu);
2737 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04002738
2739 return 0;
2740}
2741
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002742/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002743int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2744 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002745{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002746 int i, r;
2747 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002748
Sasha Levincdfca7b2011-12-04 19:36:28 +02002749 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002750 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08002751 for (i = 0; i < bus->dev_count; i++)
2752 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002753 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002754 break;
2755 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002756
Amos Konga13007162012-03-09 12:17:32 +08002757 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002758 return r;
Amos Konga13007162012-03-09 12:17:32 +08002759
2760 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
2761 sizeof(struct kvm_io_range)), GFP_KERNEL);
2762 if (!new_bus)
2763 return -ENOMEM;
2764
2765 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
2766 new_bus->dev_count--;
2767 memcpy(new_bus->range + i, bus->range + i + 1,
2768 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002769
2770 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2771 synchronize_srcu_expedited(&kvm->srcu);
2772 kfree(bus);
2773 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002774}
2775
Avi Kivity774c47f2007-02-12 00:54:47 -08002776static struct notifier_block kvm_cpu_notifier = {
2777 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08002778};
2779
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002780static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02002781{
2782 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02002783 struct kvm *kvm;
2784
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002785 *val = 0;
Jan Kiszkae935b832011-02-08 12:55:33 +01002786 raw_spin_lock(&kvm_lock);
Avi Kivityba1389b2007-11-18 16:24:12 +02002787 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002788 *val += *(u32 *)((void *)kvm + offset);
Jan Kiszkae935b832011-02-08 12:55:33 +01002789 raw_spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002790 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002791}
2792
2793DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
2794
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002795static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03002796{
2797 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002798 struct kvm *kvm;
2799 struct kvm_vcpu *vcpu;
2800 int i;
2801
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002802 *val = 0;
Jan Kiszkae935b832011-02-08 12:55:33 +01002803 raw_spin_lock(&kvm_lock);
Avi Kivity1165f5f2007-04-19 17:27:43 +03002804 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002805 kvm_for_each_vcpu(i, vcpu, kvm)
2806 *val += *(u32 *)((void *)vcpu + offset);
2807
Jan Kiszkae935b832011-02-08 12:55:33 +01002808 raw_spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002809 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002810}
2811
Avi Kivityba1389b2007-11-18 16:24:12 +02002812DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
2813
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002814static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02002815 [KVM_STAT_VCPU] = &vcpu_stat_fops,
2816 [KVM_STAT_VM] = &vm_stat_fops,
2817};
Avi Kivity1165f5f2007-04-19 17:27:43 +03002818
Hamo4f69b682011-12-15 14:23:16 +08002819static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820{
Hamo4f69b682011-12-15 14:23:16 +08002821 int r = -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002822 struct kvm_stats_debugfs_item *p;
2823
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002824 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08002825 if (kvm_debugfs_dir == NULL)
2826 goto out;
2827
2828 for (p = debugfs_entries; p->name; ++p) {
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002829 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03002830 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02002831 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08002832 if (p->dentry == NULL)
2833 goto out_dir;
2834 }
2835
2836 return 0;
2837
2838out_dir:
2839 debugfs_remove_recursive(kvm_debugfs_dir);
2840out:
2841 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842}
2843
2844static void kvm_exit_debug(void)
2845{
2846 struct kvm_stats_debugfs_item *p;
2847
2848 for (p = debugfs_entries; p->name; ++p)
2849 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002850 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851}
2852
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002853static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08002854{
Alexander Graf10474ae2009-09-15 11:37:46 +02002855 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002856 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002857 return 0;
2858}
2859
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002860static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08002861{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002862 if (kvm_usage_count) {
Jan Kiszkae935b832011-02-08 12:55:33 +01002863 WARN_ON(raw_spin_is_locked(&kvm_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002864 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002865 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08002866}
2867
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002868static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08002869 .suspend = kvm_suspend,
2870 .resume = kvm_resume,
2871};
2872
Avi Kivity15ad7142007-07-11 18:17:21 +03002873static inline
2874struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
2875{
2876 return container_of(pn, struct kvm_vcpu, preempt_notifier);
2877}
2878
2879static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
2880{
2881 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2882
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002883 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002884}
2885
2886static void kvm_sched_out(struct preempt_notifier *pn,
2887 struct task_struct *next)
2888{
2889 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2890
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002891 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002892}
2893
Avi Kivity0ee75be2010-04-28 15:39:01 +03002894int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10002895 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002896{
2897 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002898 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002899
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002900 r = kvm_arch_init(opaque);
2901 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002902 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002903
Avi Kivity8437a612009-06-06 14:52:35 -07002904 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10302905 r = -ENOMEM;
2906 goto out_free_0;
2907 }
2908
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002909 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002910 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10302911 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002912
Yang, Sheng002c7f72007-07-31 14:23:01 +03002913 for_each_online_cpu(cpu) {
2914 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002915 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02002916 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03002917 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002918 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002919 }
2920
Avi Kivity774c47f2007-02-12 00:54:47 -08002921 r = register_cpu_notifier(&kvm_cpu_notifier);
2922 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002923 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002924 register_reboot_notifier(&kvm_reboot_notifier);
2925
Rusty Russellc16f8622007-07-30 21:12:19 +10002926 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03002927 if (!vcpu_align)
2928 vcpu_align = __alignof__(struct kvm_vcpu);
2929 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08002930 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10002931 if (!kvm_vcpu_cache) {
2932 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002933 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10002934 }
2935
Gleb Natapovaf585b92010-10-14 11:22:46 +02002936 r = kvm_async_pf_init();
2937 if (r)
2938 goto out_free;
2939
Avi Kivity6aa8b732006-12-10 02:21:36 -08002940 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002941 kvm_vm_fops.owner = module;
2942 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002943
2944 r = misc_register(&kvm_dev);
2945 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04002946 printk(KERN_ERR "kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02002947 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002948 }
2949
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002950 register_syscore_ops(&kvm_syscore_ops);
2951
Avi Kivity15ad7142007-07-11 18:17:21 +03002952 kvm_preempt_ops.sched_in = kvm_sched_in;
2953 kvm_preempt_ops.sched_out = kvm_sched_out;
2954
Hamo4f69b682011-12-15 14:23:16 +08002955 r = kvm_init_debug();
2956 if (r) {
2957 printk(KERN_ERR "kvm: create debugfs files failed\n");
2958 goto out_undebugfs;
2959 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002960
Avi Kivityc7addb92007-09-16 18:58:32 +02002961 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002962
Hamo4f69b682011-12-15 14:23:16 +08002963out_undebugfs:
2964 unregister_syscore_ops(&kvm_syscore_ops);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002965out_unreg:
2966 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002967out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10002968 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002969out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002970 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08002971 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002972out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08002973out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002974 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10302975out_free_0a:
2976 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002977out_free_0:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002978 kvm_arch_exit();
Zhang Xiantaod23087842007-11-29 15:35:39 +08002979out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002980 return r;
2981}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002982EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002983
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002984void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002985{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002986 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002987 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10002988 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002989 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002990 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002991 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002992 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002993 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002994 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002995 kvm_arch_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10302996 free_cpumask_var(cpus_hardware_enabled);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002997}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002998EXPORT_SYMBOL_GPL(kvm_exit);