blob: 3d5ae6f655dfc4a4970f8f0bd5b7d56a8d08b772 [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>
David Matlack2ea75be2014-09-19 16:03:25 -070055#include <asm/ioctl.h>
Avi Kivitye4956062007-06-28 14:15:57 -040056#include <asm/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020057#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080058
Laurent Vivier5f94c172008-05-30 16:05:54 +020059#include "coalesced_mmio.h"
Gleb Natapovaf585b92010-10-14 11:22:46 +020060#include "async_pf.h"
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +020061#include "vfio.h"
Laurent Vivier5f94c172008-05-30 16:05:54 +020062
Marcelo Tosatti229456f2009-06-17 09:22:14 -030063#define CREATE_TRACE_POINTS
64#include <trace/events/kvm.h>
65
Avi Kivity6aa8b732006-12-10 02:21:36 -080066MODULE_AUTHOR("Qumranet");
67MODULE_LICENSE("GPL");
68
Marcelo Tosattifa40a822009-06-04 15:08:24 -030069/*
70 * Ordering of locks:
71 *
Sheng Yangfae3a352009-12-15 10:28:07 +080072 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030073 */
74
Paolo Bonzini2f303b72013-09-25 13:53:07 +020075DEFINE_SPINLOCK(kvm_lock);
Paolo Bonzini4a937f92013-09-10 12:58:35 +020076static DEFINE_RAW_SPINLOCK(kvm_count_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080077LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080078
Rusty Russell7f59f492008-12-07 21:25:45 +103079static cpumask_var_t cpus_hardware_enabled;
Alexander Graf10474ae2009-09-15 11:37:46 +020080static int kvm_usage_count = 0;
81static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +030082
Rusty Russellc16f8622007-07-30 21:12:19 +100083struct kmem_cache *kvm_vcpu_cache;
84EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030085
Avi Kivity15ad7142007-07-11 18:17:21 +030086static __read_mostly struct preempt_ops kvm_preempt_ops;
87
Hollis Blanchard76f7c872008-04-15 16:05:42 -050088struct dentry *kvm_debugfs_dir;
Avi Kivity6aa8b732006-12-10 02:21:36 -080089
Avi Kivitybccf2152007-02-21 18:04:26 +020090static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
91 unsigned long arg);
Alexander Graf1dda6062011-06-08 02:45:37 +020092#ifdef CONFIG_COMPAT
93static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
94 unsigned long arg);
95#endif
Alexander Graf10474ae2009-09-15 11:37:46 +020096static int hardware_enable_all(void);
97static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +020098
Marcelo Tosattie93f8a02009-12-23 14:35:24 -020099static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
Stephen Hemminger79408762013-12-29 12:12:29 -0800100
101static void kvm_release_pfn_dirty(pfn_t pfn);
102static void mark_page_dirty_in_slot(struct kvm *kvm,
103 struct kvm_memory_slot *memslot, gfn_t gfn);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200104
Andi Kleen52480132014-02-08 08:51:57 +0100105__visible bool kvm_rebooting;
Avi Kivityb7c41452010-12-02 17:52:50 +0200106EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300107
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300108static bool largepages_enabled = true;
109
Ard Biesheuveld3fccc72014-11-10 09:33:56 +0100110bool kvm_is_reserved_pfn(pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300111{
Andrea Arcangeli11feeb42013-07-25 03:04:38 +0200112 if (pfn_valid(pfn))
Ard Biesheuveld3fccc72014-11-10 09:33:56 +0100113 return PageReserved(pfn_to_page(pfn));
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300114
115 return true;
116}
117
Avi Kivity6aa8b732006-12-10 02:21:36 -0800118/*
119 * Switches to specified vcpu, until a matching vcpu_put()
120 */
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300121int vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800122{
Avi Kivity15ad7142007-07-11 18:17:21 +0300123 int cpu;
124
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300125 if (mutex_lock_killable(&vcpu->mutex))
126 return -EINTR;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500127 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
128 /* The thread running this VCPU changed. */
129 struct pid *oldpid = vcpu->pid;
130 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
131 rcu_assign_pointer(vcpu->pid, newpid);
Christian Borntraeger7103f602014-08-19 16:45:56 +0200132 if (oldpid)
133 synchronize_rcu();
Rik van Riel34bb10b2011-02-01 09:52:41 -0500134 put_pid(oldpid);
135 }
Avi Kivity15ad7142007-07-11 18:17:21 +0300136 cpu = get_cpu();
137 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200138 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300139 put_cpu();
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300140 return 0;
Avi Kivitybccf2152007-02-21 18:04:26 +0200141}
Jim Mattson2aa2e062016-07-08 15:36:06 -0700142EXPORT_SYMBOL_GPL(vcpu_load);
Avi Kivitybccf2152007-02-21 18:04:26 +0200143
Carsten Otte313a3dc2007-10-11 19:16:52 +0200144void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800145{
Avi Kivity15ad7142007-07-11 18:17:21 +0300146 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200147 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300148 preempt_notifier_unregister(&vcpu->preempt_notifier);
149 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800150 mutex_unlock(&vcpu->mutex);
151}
Jim Mattson2aa2e062016-07-08 15:36:06 -0700152EXPORT_SYMBOL_GPL(vcpu_put);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800153
Avi Kivityd9e368d2007-06-07 19:18:30 +0300154static void ack_flush(void *_completed)
155{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300156}
157
Tang Chen445b8232014-09-24 15:57:55 +0800158bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300159{
Avi Kivity597a5f52008-07-20 14:24:22 +0300160 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030161 cpumask_var_t cpus;
162 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300163 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300164
Li Zefan79f55992009-06-15 14:58:26 +0800165 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030166
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800167 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300168 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800169 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300170 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800171
172 /* Set ->requests bit before we read ->mode */
173 smp_mb();
174
175 if (cpus != NULL && cpu != -1 && cpu != me &&
176 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030177 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300178 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030179 if (unlikely(cpus == NULL))
180 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
181 else if (!cpumask_empty(cpus))
182 smp_call_function_many(cpus, ack_flush, NULL, 1);
183 else
184 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800185 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030186 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030187 return called;
188}
189
190void kvm_flush_remote_tlbs(struct kvm *kvm)
191{
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800192 long dirty_count = kvm->tlbs_dirty;
193
194 smp_mb();
Tang Chen445b8232014-09-24 15:57:55 +0800195 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030196 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800197 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300198}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530199EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300200
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500201void kvm_reload_remote_mmus(struct kvm *kvm)
202{
Tang Chen445b8232014-09-24 15:57:55 +0800203 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500204}
205
Marcelo Tosattid8281992012-11-27 23:29:01 -0200206void kvm_make_mclock_inprogress_request(struct kvm *kvm)
207{
Tang Chen445b8232014-09-24 15:57:55 +0800208 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
Marcelo Tosattid8281992012-11-27 23:29:01 -0200209}
210
Yang Zhang3d81bc72013-04-11 19:25:13 +0800211void kvm_make_scan_ioapic_request(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800212{
Tang Chen445b8232014-09-24 15:57:55 +0800213 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800214}
215
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000216int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
217{
218 struct page *page;
219 int r;
220
221 mutex_init(&vcpu->mutex);
222 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000223 vcpu->kvm = kvm;
224 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500225 vcpu->pid = NULL;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300226 init_waitqueue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200227 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000228
229 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
230 if (!page) {
231 r = -ENOMEM;
232 goto fail;
233 }
234 vcpu->run = page_address(page);
235
Raghavendra K T4c088492012-07-18 19:07:46 +0530236 kvm_vcpu_set_in_spin_loop(vcpu, false);
237 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530238 vcpu->preempted = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530239
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800240 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000241 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800242 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000243 return 0;
244
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000245fail_free_run:
246 free_page((unsigned long)vcpu->run);
247fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000248 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000249}
250EXPORT_SYMBOL_GPL(kvm_vcpu_init);
251
252void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
253{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500254 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800255 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000256 free_page((unsigned long)vcpu->run);
257}
258EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
259
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200260#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
261static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
262{
263 return container_of(mn, struct kvm, mmu_notifier);
264}
265
266static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
267 struct mm_struct *mm,
268 unsigned long address)
269{
270 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200271 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200272
273 /*
274 * When ->invalidate_page runs, the linux pte has been zapped
275 * already but the page is still allocated until
276 * ->invalidate_page returns. So if we increase the sequence
277 * here the kvm page fault will notice if the spte can't be
278 * established because the page is going to be freed. If
279 * instead the kvm page fault establishes the spte before
280 * ->invalidate_page runs, kvm_unmap_hva will release it
281 * before returning.
282 *
283 * The sequence increase only need to be seen at spin_unlock
284 * time, and not at spin_lock time.
285 *
286 * Increasing the sequence after the spin_unlock would be
287 * unsafe because the kvm page fault could then establish the
288 * pte after kvm_unmap_hva returned, without noticing the page
289 * is going to be freed.
290 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200291 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200292 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900293
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200294 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800295 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200296 /* we've to flush the tlb before the pages can be freed */
297 if (need_tlb_flush)
298 kvm_flush_remote_tlbs(kvm);
299
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900300 spin_unlock(&kvm->mmu_lock);
Tang Chenfe715572014-09-24 15:57:57 +0800301
302 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
303
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900304 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,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700377 unsigned long start,
378 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200379{
380 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200381 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200382
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200383 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200384 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200385
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700386 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200387 if (young)
388 kvm_flush_remote_tlbs(kvm);
389
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900390 spin_unlock(&kvm->mmu_lock);
391 srcu_read_unlock(&kvm->srcu, idx);
392
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200393 return young;
394}
395
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800396static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
397 struct mm_struct *mm,
398 unsigned long address)
399{
400 struct kvm *kvm = mmu_notifier_to_kvm(mn);
401 int young, idx;
402
403 idx = srcu_read_lock(&kvm->srcu);
404 spin_lock(&kvm->mmu_lock);
405 young = kvm_test_age_hva(kvm, address);
406 spin_unlock(&kvm->mmu_lock);
407 srcu_read_unlock(&kvm->srcu, idx);
408
409 return young;
410}
411
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100412static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
413 struct mm_struct *mm)
414{
415 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800416 int idx;
417
418 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300419 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800420 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100421}
422
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200423static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
424 .invalidate_page = kvm_mmu_notifier_invalidate_page,
425 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
426 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
427 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800428 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300429 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100430 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200431};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200432
433static int kvm_init_mmu_notifier(struct kvm *kvm)
434{
435 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
436 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
437}
438
439#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
440
441static int kvm_init_mmu_notifier(struct kvm *kvm)
442{
443 return 0;
444}
445
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200446#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
447
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800448static void kvm_init_memslots_id(struct kvm *kvm)
449{
450 int i;
451 struct kvm_memslots *slots = kvm->memslots;
452
453 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800454 slots->id_to_index[i] = slots->memslots[i].id = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800455}
456
Carsten Ottee08b9632012-01-04 10:25:20 +0100457static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800458{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100459 int r, i;
460 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800461
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100462 if (!kvm)
463 return ERR_PTR(-ENOMEM);
464
Paolo Bonzini241a9a82016-03-21 10:15:25 +0100465 spin_lock_init(&kvm->mmu_lock);
466 atomic_inc(&current->mm->mm_count);
467 kvm->mm = current->mm;
468 kvm_eventfd_init(kvm);
469 mutex_init(&kvm->lock);
470 mutex_init(&kvm->irq_lock);
471 mutex_init(&kvm->slots_lock);
472 atomic_set(&kvm->users_count, 1);
473 INIT_LIST_HEAD(&kvm->devices);
474
Carsten Ottee08b9632012-01-04 10:25:20 +0100475 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100476 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100477 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200478
479 r = hardware_enable_all();
480 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100481 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200482
Avi Kivity75858a82009-01-04 17:10:50 +0200483#ifdef CONFIG_HAVE_KVM_IRQCHIP
484 INIT_HLIST_HEAD(&kvm->mask_notifier_list);
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200485#endif
486#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300487 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200488#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800489
Alex Williamson1e702d92012-12-10 10:33:32 -0700490 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
491
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200492 r = -ENOMEM;
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000493 kvm->memslots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200494 if (!kvm->memslots)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100495 goto out_err_no_srcu;
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200496
497 /*
498 * Init kvm generation close to the maximum to easily test the
499 * code of handling generation number wrap-around.
500 */
501 kvm->memslots->generation = -150;
502
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800503 kvm_init_memslots_id(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200504 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100505 goto out_err_no_srcu;
506 if (init_srcu_struct(&kvm->irq_srcu))
507 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200508 for (i = 0; i < KVM_NR_BUSES; i++) {
509 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
510 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100511 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200512 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200513 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700514
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700515 r = kvm_init_mmu_notifier(kvm);
516 if (r)
517 goto out_err;
518
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200519 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000520 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200521 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100522
Avi Kivityf17abe92007-02-21 19:28:04 +0200523 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200524
525out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100526 cleanup_srcu_struct(&kvm->irq_srcu);
527out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100528 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100529out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200530 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100531out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200532 for (i = 0; i < KVM_NR_BUSES; i++)
533 kfree(kvm->buses[i]);
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000534 kvfree(kvm->memslots);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100535 kvm_arch_free_vm(kvm);
Paolo Bonzini241a9a82016-03-21 10:15:25 +0100536 mmdrop(current->mm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200537 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200538}
539
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900540/*
541 * Avoid using vmalloc for a small buffer.
542 * Should not be used when the size is statically known.
543 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900544void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900545{
546 if (size > PAGE_SIZE)
547 return vzalloc(size);
548 else
549 return kzalloc(size, GFP_KERNEL);
550}
551
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900552void kvm_kvfree(const void *addr)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900553{
554 if (is_vmalloc_addr(addr))
555 vfree(addr);
556 else
557 kfree(addr);
558}
559
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900560static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
561{
562 if (!memslot->dirty_bitmap)
563 return;
564
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900565 kvm_kvfree(memslot->dirty_bitmap);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900566 memslot->dirty_bitmap = NULL;
567}
568
Avi Kivity6aa8b732006-12-10 02:21:36 -0800569/*
570 * Free any memory in @free but not in @dont.
571 */
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530572static void kvm_free_physmem_slot(struct kvm *kvm, struct kvm_memory_slot *free,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800573 struct kvm_memory_slot *dont)
574{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800575 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900576 kvm_destroy_dirty_bitmap(free);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800577
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530578 kvm_arch_free_memslot(kvm, free, dont);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300579
Avi Kivity6aa8b732006-12-10 02:21:36 -0800580 free->npages = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800581}
582
Stephen Hemminger79408762013-12-29 12:12:29 -0800583static void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800584{
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200585 struct kvm_memslots *slots = kvm->memslots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800586 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800587
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800588 kvm_for_each_memslot(memslot, slots)
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530589 kvm_free_physmem_slot(kvm, memslot, NULL);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200590
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000591 kvfree(kvm->memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800592}
593
Scott Wood07f0a7b2013-04-25 14:11:23 +0000594static void kvm_destroy_devices(struct kvm *kvm)
595{
596 struct list_head *node, *tmp;
597
598 list_for_each_safe(node, tmp, &kvm->devices) {
599 struct kvm_device *dev =
600 list_entry(node, struct kvm_device, vm_node);
601
602 list_del(node);
603 dev->ops->destroy(dev);
604 }
605}
606
Avi Kivityf17abe92007-02-21 19:28:04 +0200607static void kvm_destroy_vm(struct kvm *kvm)
608{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200609 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200610 struct mm_struct *mm = kvm->mm;
611
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800612 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200613 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800614 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200615 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200616 kvm_free_irq_routing(kvm);
Peter Xuc6216a02017-03-15 16:01:17 +0800617 for (i = 0; i < KVM_NR_BUSES; i++) {
David Hildenbrand07882fe2017-03-23 18:24:19 +0100618 if (kvm->buses[i])
619 kvm_io_bus_destroy(kvm->buses[i]);
Peter Xuc6216a02017-03-15 16:01:17 +0800620 kvm->buses[i] = NULL;
621 }
Avi Kivity980da6c2009-12-20 15:13:43 +0200622 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200623#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
624 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200625#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300626 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200627#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800628 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000629 kvm_destroy_devices(kvm);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100630 kvm_free_physmem(kvm);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200631 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100632 cleanup_srcu_struct(&kvm->srcu);
633 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200634 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200635 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200636}
637
Izik Eidusd39f13b2008-03-30 16:01:25 +0300638void kvm_get_kvm(struct kvm *kvm)
639{
640 atomic_inc(&kvm->users_count);
641}
642EXPORT_SYMBOL_GPL(kvm_get_kvm);
643
644void kvm_put_kvm(struct kvm *kvm)
645{
646 if (atomic_dec_and_test(&kvm->users_count))
647 kvm_destroy_vm(kvm);
648}
649EXPORT_SYMBOL_GPL(kvm_put_kvm);
650
651
Avi Kivityf17abe92007-02-21 19:28:04 +0200652static int kvm_vm_release(struct inode *inode, struct file *filp)
653{
654 struct kvm *kvm = filp->private_data;
655
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400656 kvm_irqfd_release(kvm);
657
Izik Eidusd39f13b2008-03-30 16:01:25 +0300658 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800659 return 0;
660}
661
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900662/*
663 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900664 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900665 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900666static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
667{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900668 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900669
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900670 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900671 if (!memslot->dirty_bitmap)
672 return -ENOMEM;
673
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900674 return 0;
675}
676
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800677static int cmp_memslot(const void *slot1, const void *slot2)
678{
679 struct kvm_memory_slot *s1, *s2;
680
681 s1 = (struct kvm_memory_slot *)slot1;
682 s2 = (struct kvm_memory_slot *)slot2;
683
684 if (s1->npages < s2->npages)
685 return 1;
686 if (s1->npages > s2->npages)
687 return -1;
688
689 return 0;
690}
691
692/*
693 * Sort the memslots base on its size, so the larger slots
694 * will get better fit.
695 */
696static void sort_memslots(struct kvm_memslots *slots)
697{
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800698 int i;
699
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800700 sort(slots->memslots, KVM_MEM_SLOTS_NUM,
701 sizeof(struct kvm_memory_slot), cmp_memslot, NULL);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800702
703 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
704 slots->id_to_index[slots->memslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800705}
706
Stephen Hemminger79408762013-12-29 12:12:29 -0800707static void update_memslots(struct kvm_memslots *slots,
David Matlackee3d1572014-08-18 15:46:06 -0700708 struct kvm_memory_slot *new)
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800709{
710 if (new) {
711 int id = new->id;
Xiao Guangrong28a37542011-11-24 19:04:35 +0800712 struct kvm_memory_slot *old = id_to_memslot(slots, id);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800713 unsigned long npages = old->npages;
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800714
Xiao Guangrong28a37542011-11-24 19:04:35 +0800715 *old = *new;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800716 if (new->npages != npages)
717 sort_memslots(slots);
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800718 }
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800719}
720
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800721static int check_memory_region_flags(struct kvm_userspace_memory_region *mem)
722{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800723 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
724
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200725#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800726 valid_flags |= KVM_MEM_READONLY;
727#endif
728
729 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800730 return -EINVAL;
731
732 return 0;
733}
734
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200735static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
736 struct kvm_memslots *slots, struct kvm_memory_slot *new)
737{
738 struct kvm_memslots *old_memslots = kvm->memslots;
739
David Matlackee3d1572014-08-18 15:46:06 -0700740 /*
741 * Set the low bit in the generation, which disables SPTE caching
742 * until the end of synchronize_srcu_expedited.
743 */
744 WARN_ON(old_memslots->generation & 1);
745 slots->generation = old_memslots->generation + 1;
746
747 update_memslots(slots, new);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200748 rcu_assign_pointer(kvm->memslots, slots);
749 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900750
David Matlackee3d1572014-08-18 15:46:06 -0700751 /*
752 * Increment the new memslot generation a second time. This prevents
753 * vm exits that race with memslot updates from caching a memslot
754 * generation that will (potentially) be valid forever.
755 */
756 slots->generation++;
757
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900758 kvm_arch_memslots_updated(kvm);
759
760 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200761}
762
Avi Kivity6aa8b732006-12-10 02:21:36 -0800763/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800764 * Allocate some memory and give it an address in the guest physical address
765 * space.
766 *
767 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800768 *
Marcelo Tosatti10589a42007-12-20 19:18:22 -0500769 * Must be called holding mmap_sem for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800771int __kvm_set_memory_region(struct kvm *kvm,
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900772 struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773{
Avi Kivity8234b222010-12-27 12:08:45 +0200774 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800775 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200776 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900777 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800778 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700779 struct kvm_memslots *slots = NULL, *old_memslots;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900780 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800781
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800782 r = check_memory_region_flags(mem);
783 if (r)
784 goto out;
785
Avi Kivity6aa8b732006-12-10 02:21:36 -0800786 r = -EINVAL;
787 /* General sanity checks */
788 if (mem->memory_size & (PAGE_SIZE - 1))
789 goto out;
790 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
791 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900792 /* We can read the guest memory with __xxx_user() later on. */
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900793 if ((mem->slot < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900794 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200795 !access_ok(VERIFY_WRITE,
796 (void __user *)(unsigned long)mem->userspace_addr,
797 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600798 goto out;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800799 if (mem->slot >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800800 goto out;
801 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
802 goto out;
803
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900804 slot = id_to_memslot(kvm->memslots, mem->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800805 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
806 npages = mem->memory_size >> PAGE_SHIFT;
807
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900808 if (npages > KVM_MEM_MAX_NR_PAGES)
809 goto out;
810
Avi Kivity6aa8b732006-12-10 02:21:36 -0800811 if (!npages)
812 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
813
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900814 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800815
Avi Kivitye36d96f2010-06-21 10:56:36 +0300816 new.id = mem->slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800817 new.base_gfn = base_gfn;
818 new.npages = npages;
819 new.flags = mem->flags;
820
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900821 if (npages) {
822 if (!old.npages)
823 change = KVM_MR_CREATE;
824 else { /* Modify an existing slot. */
825 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900826 (npages != old.npages) ||
827 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900828 goto out;
829
830 if (base_gfn != old.base_gfn)
831 change = KVM_MR_MOVE;
832 else if (new.flags != old.flags)
833 change = KVM_MR_FLAGS_ONLY;
834 else { /* Nothing to change. */
835 r = 0;
836 goto out;
837 }
838 }
839 } else if (old.npages) {
840 change = KVM_MR_DELETE;
841 } else /* Modify a non-existent slot: disallowed. */
Takuya Yoshikawa0ea75e12013-01-11 18:26:10 +0900842 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800843
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900844 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900845 /* Check for overlaps */
846 r = -EEXIST;
847 kvm_for_each_memslot(slot, kvm->memslots) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900848 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
849 (slot->id == mem->slot))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900850 continue;
851 if (!((base_gfn + npages <= slot->base_gfn) ||
852 (base_gfn >= slot->base_gfn + slot->npages)))
853 goto out;
854 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800856
Avi Kivity6aa8b732006-12-10 02:21:36 -0800857 /* Free page dirty bitmap if unneeded */
858 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000859 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800860
861 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900862 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900863 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900864
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530865 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900866 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800867 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200868
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869 /* Allocate page dirty bitmap if needed */
870 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900871 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800872 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800873 }
874
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900875 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000876 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200877 if (!slots)
878 goto out_free;
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000879 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
880
Xiao Guangrong28a37542011-11-24 19:04:35 +0800881 slot = id_to_memslot(slots, mem->slot);
882 slot->flags |= KVM_MEMSLOT_INVALID;
883
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200884 old_memslots = install_new_memslots(kvm, slots, NULL);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200885
Alex Williamsone40f1932012-12-10 10:32:57 -0700886 /* slot was deleted or moved, clear iommu mapping */
887 kvm_iommu_unmap_pages(kvm, &old);
Marcelo Tosatti12d6e752012-08-24 15:54:58 -0300888 /* From this point no new shadow pages pointing to a deleted,
889 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200890 *
891 * validation of sp->gfn happens in:
892 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
893 * - kvm_is_visible_gfn (mmu_check_roots)
894 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300895 kvm_arch_flush_shadow_memslot(kvm, slot);
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700896 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200897 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300898
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900899 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200900 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700901 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200902
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200903 r = -ENOMEM;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700904 /*
905 * We can re-use the old_memslots from above, the only difference
906 * from the currently installed memslots is the invalid flag. This
907 * will get overwritten by update_memslots anyway.
908 */
909 if (!slots) {
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000910 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700911 if (!slots)
912 goto out_free;
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000913 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700914 }
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200915
916 /* actual memory is freed via old in kvm_free_physmem_slot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900917 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200918 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900919 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200920 }
921
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200922 old_memslots = install_new_memslots(kvm, slots, &new);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900924 kvm_arch_commit_memory_region(kvm, mem, &old, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800925
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530926 kvm_free_physmem_slot(kvm, &old, &new);
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000927 kvfree(old_memslots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200928
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200929 /*
930 * IOMMU mapping: New slots need to be mapped. Old slots need to be
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931 * un-mapped and re-mapped if their base changes. Since base change
932 * unmapping is handled above with slot deletion, mapping alone is
Sheng Yangf78e0e22007-10-29 09:40:42 +0800933 * needed here. Anything else the iommu might care about for existing
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934 * slots (size changes, userspace addr changes and read-only flag
935 * changes) is disallowed above, so any other attribute changes getting
936 * here can be skipped.
Izik Eidus210c7c42007-10-24 23:52:57 +0200937 */
938 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Sheng Yangf78e0e22007-10-29 09:40:42 +0800939 r = kvm_iommu_map_pages(kvm, &new);
Yang Zhange0230e12013-10-24 09:56:39 +0800940 return r;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800941 }
942
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943 return 0;
944
945out_slots:
Igor Mammedovb94e91c2015-03-20 12:21:37 +0000946 kvfree(slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800947out_free:
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530948 kvm_free_physmem_slot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800949out:
950 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200951}
952EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800953
954int kvm_set_memory_region(struct kvm *kvm,
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900955 struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800956{
957 int r;
958
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200959 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900960 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200961 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800962 return r;
963}
Izik Eidus210c7c42007-10-24 23:52:57 +0200964EXPORT_SYMBOL_GPL(kvm_set_memory_region);
965
Stephen Hemminger79408762013-12-29 12:12:29 -0800966static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
967 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +0200968{
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700969 if (mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +0200970 return -EINVAL;
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900971 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800972}
973
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800974int kvm_get_dirty_log(struct kvm *kvm,
975 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800976{
977 struct kvm_memory_slot *memslot;
978 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900979 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800980 unsigned long any = 0;
981
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700983 if (log->slot >= KVM_USER_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984 goto out;
985
Xiao Guangrong28a37542011-11-24 19:04:35 +0800986 memslot = id_to_memslot(kvm->memslots, log->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987 r = -ENOENT;
988 if (!memslot->dirty_bitmap)
989 goto out;
990
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900991 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992
Uri Lublincd1a4a92007-02-22 16:43:09 +0200993 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 any = memslot->dirty_bitmap[i];
995
996 r = -EFAULT;
997 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
998 goto out;
999
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001000 if (any)
1001 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002
1003 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004out:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005 return r;
1006}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301007EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001009bool kvm_largepages_enabled(void)
1010{
1011 return largepages_enabled;
1012}
1013
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001014void kvm_disable_largepages(void)
1015{
1016 largepages_enabled = false;
1017}
1018EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1019
Gleb Natapov49c77542010-10-18 15:22:23 +02001020struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1021{
1022 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1023}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001024EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001025
Izik Eiduse0d62c72007-10-24 23:57:46 +02001026int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1027{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001028 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001029
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001030 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001031 memslot->flags & KVM_MEMSLOT_INVALID)
1032 return 0;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001033
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001034 return 1;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001035}
1036EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1037
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001038unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1039{
1040 struct vm_area_struct *vma;
1041 unsigned long addr, size;
1042
1043 size = PAGE_SIZE;
1044
1045 addr = gfn_to_hva(kvm, gfn);
1046 if (kvm_is_error_hva(addr))
1047 return PAGE_SIZE;
1048
1049 down_read(&current->mm->mmap_sem);
1050 vma = find_vma(current->mm, addr);
1051 if (!vma)
1052 goto out;
1053
1054 size = vma_kernel_pagesize(vma);
1055
1056out:
1057 up_read(&current->mm->mmap_sem);
1058
1059 return size;
1060}
1061
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001062static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1063{
1064 return slot->flags & KVM_MEM_READONLY;
1065}
1066
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001067static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1068 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001069{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001070 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001071 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001072
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001073 if (memslot_is_readonly(slot) && write)
1074 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001075
1076 if (nr_pages)
1077 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1078
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001079 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001080}
Xiao Guangrong48987782010-08-22 19:11:43 +08001081
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001082static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1083 gfn_t *nr_pages)
1084{
1085 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1086}
1087
1088unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001089 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001090{
1091 return gfn_to_hva_many(slot, gfn, NULL);
1092}
1093EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1094
Xiao Guangrong48987782010-08-22 19:11:43 +08001095unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1096{
Gleb Natapov49c77542010-10-18 15:22:23 +02001097 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001098}
Sheng Yang0d150292008-04-25 21:44:50 +08001099EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001100
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001101/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001102 * If writable is set to false, the hva returned by this function is only
1103 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001104 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001105unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1106 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001107{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001108 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1109
1110 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001111 *writable = !memslot_is_readonly(slot);
1112
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001113 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001114}
1115
Christoffer Dall64d83122014-08-19 12:15:00 +02001116unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1117{
1118 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1119
1120 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1121}
1122
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001123static int kvm_read_hva(void *data, void __user *hva, int len)
1124{
1125 return __copy_from_user(data, hva, len);
1126}
1127
1128static int kvm_read_hva_atomic(void *data, void __user *hva, int len)
1129{
1130 return __copy_from_user_inatomic(data, hva, len);
Gleb Natapov80300892010-10-19 18:13:41 +02001131}
1132
Geoff Levand39369f72013-04-05 19:20:30 +00001133static int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001134 unsigned long start, int write, struct page **page)
1135{
1136 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1137
1138 if (write)
1139 flags |= FOLL_WRITE;
1140
1141 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1142}
1143
Andres Lagar-Cavilla234b2392014-09-17 10:51:48 -07001144int kvm_get_user_page_io(struct task_struct *tsk, struct mm_struct *mm,
1145 unsigned long addr, bool write_fault,
1146 struct page **pagep)
1147{
1148 int npages;
1149 int locked = 1;
1150 int flags = FOLL_TOUCH | FOLL_HWPOISON |
1151 (pagep ? FOLL_GET : 0) |
1152 (write_fault ? FOLL_WRITE : 0);
1153
1154 /*
1155 * If retrying the fault, we get here *not* having allowed the filemap
1156 * to wait on the page lock. We should now allow waiting on the IO with
1157 * the mmap semaphore released.
1158 */
1159 down_read(&mm->mmap_sem);
1160 npages = __get_user_pages(tsk, mm, addr, 1, flags, pagep, NULL,
1161 &locked);
1162 if (!locked) {
Andres Lagar-Cavillabb0ca6a2014-09-25 15:26:50 -07001163 VM_BUG_ON(npages);
Andres Lagar-Cavilla234b2392014-09-17 10:51:48 -07001164
1165 if (!pagep)
1166 return 0;
1167
1168 /*
1169 * The previous call has now waited on the IO. Now we can
1170 * retry and complete. Pass TRIED to ensure we do not re
1171 * schedule async IO (see e.g. filemap_fault).
1172 */
1173 down_read(&mm->mmap_sem);
1174 npages = __get_user_pages(tsk, mm, addr, 1, flags | FOLL_TRIED,
1175 pagep, NULL, NULL);
1176 }
1177 up_read(&mm->mmap_sem);
1178 return npages;
1179}
1180
Huang Yingfafc3db2011-01-30 11:15:49 +08001181static inline int check_user_page_hwpoison(unsigned long addr)
1182{
1183 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1184
1185 rc = __get_user_pages(current, current->mm, addr, 1,
1186 flags, NULL, NULL, NULL);
1187 return rc == -EHWPOISON;
1188}
1189
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001190/*
1191 * The atomic path to get the writable pfn which will be stored in @pfn,
1192 * true indicates success, otherwise false is returned.
1193 */
1194static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
1195 bool write_fault, bool *writable, pfn_t *pfn)
1196{
1197 struct page *page[1];
1198 int npages;
1199
1200 if (!(async || atomic))
1201 return false;
1202
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001203 /*
1204 * Fast pin a writable pfn only if it is a write fault request
1205 * or the caller allows to map a writable pfn for a read fault
1206 * request.
1207 */
1208 if (!(write_fault || writable))
1209 return false;
1210
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001211 npages = __get_user_pages_fast(addr, 1, 1, page);
1212 if (npages == 1) {
1213 *pfn = page_to_pfn(page[0]);
1214
1215 if (writable)
1216 *writable = true;
1217 return true;
1218 }
1219
1220 return false;
1221}
1222
1223/*
1224 * The slow path to get the pfn of the specified host virtual address,
1225 * 1 indicates success, -errno is returned if error is detected.
1226 */
1227static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
1228 bool *writable, pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001229{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001230 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001231 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001232
1233 might_sleep();
1234
1235 if (writable)
1236 *writable = write_fault;
1237
1238 if (async) {
1239 down_read(&current->mm->mmap_sem);
1240 npages = get_user_page_nowait(current, current->mm,
1241 addr, write_fault, page);
1242 up_read(&current->mm->mmap_sem);
Andres Lagar-Cavilla234b2392014-09-17 10:51:48 -07001243 } else {
1244 /*
1245 * By now we have tried gup_fast, and possibly async_pf, and we
1246 * are certainly not atomic. Time to retry the gup, allowing
1247 * mmap semaphore to be relinquished in the case of IO.
1248 */
1249 npages = kvm_get_user_page_io(current, current->mm, addr,
1250 write_fault, page);
1251 }
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001252 if (npages != 1)
1253 return npages;
1254
1255 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001256 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001257 struct page *wpage[1];
1258
1259 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1260 if (npages == 1) {
1261 *writable = true;
1262 put_page(page[0]);
1263 page[0] = wpage[0];
1264 }
1265
1266 npages = 1;
1267 }
1268 *pfn = page_to_pfn(page[0]);
1269 return npages;
1270}
1271
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001272static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1273{
1274 if (unlikely(!(vma->vm_flags & VM_READ)))
1275 return false;
1276
1277 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1278 return false;
1279
1280 return true;
1281}
1282
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001283/*
1284 * Pin guest page in memory and return its pfn.
1285 * @addr: host virtual address which maps memory to the guest
1286 * @atomic: whether this function can sleep
1287 * @async: whether this function need to wait IO complete if the
1288 * host page is not in the memory
1289 * @write_fault: whether we should get a writable host page
1290 * @writable: whether it allows to map a writable host page for !@write_fault
1291 *
1292 * The function will map a writable host page for these two cases:
1293 * 1): @write_fault = true
1294 * 2): @write_fault = false && @writable, @writable will tell the caller
1295 * whether the mapping is writable.
1296 */
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001297static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
1298 bool write_fault, bool *writable)
1299{
1300 struct vm_area_struct *vma;
1301 pfn_t pfn = 0;
1302 int npages;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001303
Gleb Natapovaf585b92010-10-14 11:22:46 +02001304 /* we can do it either atomically or asynchronously, not both */
1305 BUG_ON(atomic && async);
1306
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001307 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1308 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001309
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001310 if (atomic)
1311 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001312
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001313 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1314 if (npages == 1)
1315 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001316
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001317 down_read(&current->mm->mmap_sem);
1318 if (npages == -EHWPOISON ||
1319 (!async && check_user_page_hwpoison(addr))) {
1320 pfn = KVM_PFN_ERR_HWPOISON;
1321 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001322 }
Izik Eidus539cb662007-11-11 22:05:04 +02001323
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001324 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001325
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001326 if (vma == NULL)
1327 pfn = KVM_PFN_ERR_FAULT;
1328 else if ((vma->vm_flags & VM_PFNMAP)) {
1329 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1330 vma->vm_pgoff;
Ard Biesheuveld3fccc72014-11-10 09:33:56 +01001331 BUG_ON(!kvm_is_reserved_pfn(pfn));
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001332 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001333 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001334 *async = true;
1335 pfn = KVM_PFN_ERR_FAULT;
1336 }
1337exit:
1338 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001339 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001340}
1341
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001342static pfn_t
1343__gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
1344 bool *async, bool write_fault, bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001345{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001346 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1347
1348 if (addr == KVM_HVA_ERR_RO_BAD)
1349 return KVM_PFN_ERR_RO_FAULT;
1350
1351 if (kvm_is_error_hva(addr))
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001352 return KVM_PFN_NOSLOT;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001353
1354 /* Do not map writable pfn in the readonly memslot. */
1355 if (writable && memslot_is_readonly(slot)) {
1356 *writable = false;
1357 writable = NULL;
1358 }
1359
1360 return hva_to_pfn(addr, atomic, async, write_fault,
1361 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001362}
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001363
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001364static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1365 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001366{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001367 struct kvm_memory_slot *slot;
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001368
Gleb Natapovaf585b92010-10-14 11:22:46 +02001369 if (async)
1370 *async = false;
1371
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001372 slot = gfn_to_memslot(kvm, gfn);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001373
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001374 return __gfn_to_pfn_memslot(slot, gfn, atomic, async, write_fault,
1375 writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001376}
1377
1378pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1379{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001380 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001381}
1382EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1383
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001384pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1385 bool write_fault, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02001386{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001387 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001388}
1389EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1390
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001391pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1392{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001393 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001394}
Anthony Liguori35149e22008-04-02 14:46:56 -05001395EXPORT_SYMBOL_GPL(gfn_to_pfn);
1396
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001397pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1398 bool *writable)
1399{
1400 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1401}
1402EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1403
Xiao Guangrongd5661042012-07-17 21:56:16 +08001404pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001405{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001406 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001407}
1408
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001409pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
1410{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001411 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001412}
1413EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1414
Xiao Guangrong48987782010-08-22 19:11:43 +08001415int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1416 int nr_pages)
1417{
1418 unsigned long addr;
1419 gfn_t entry;
1420
Gleb Natapov49c77542010-10-18 15:22:23 +02001421 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001422 if (kvm_is_error_hva(addr))
1423 return -1;
1424
1425 if (entry < nr_pages)
1426 return 0;
1427
1428 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1429}
1430EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1431
Xiao Guangronga2766322012-07-26 11:58:59 +08001432static struct page *kvm_pfn_to_page(pfn_t pfn)
1433{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001434 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001435 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001436
Ard Biesheuveld3fccc72014-11-10 09:33:56 +01001437 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001438 WARN_ON(1);
1439 return KVM_ERR_PTR_BAD_PAGE;
1440 }
1441
Xiao Guangronga2766322012-07-26 11:58:59 +08001442 return pfn_to_page(pfn);
1443}
1444
Anthony Liguori35149e22008-04-02 14:46:56 -05001445struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1446{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001447 pfn_t pfn;
1448
1449 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001450
Xiao Guangronga2766322012-07-26 11:58:59 +08001451 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001452}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001453
Avi Kivity954bbbc2007-03-30 14:02:32 +03001454EXPORT_SYMBOL_GPL(gfn_to_page);
1455
Izik Eidusb4231d62007-11-20 11:49:33 +02001456void kvm_release_page_clean(struct page *page)
1457{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001458 WARN_ON(is_error_page(page));
1459
Anthony Liguori35149e22008-04-02 14:46:56 -05001460 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001461}
1462EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1463
Anthony Liguori35149e22008-04-02 14:46:56 -05001464void kvm_release_pfn_clean(pfn_t pfn)
1465{
Ard Biesheuveld3fccc72014-11-10 09:33:56 +01001466 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001467 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001468}
1469EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1470
Izik Eidusb4231d62007-11-20 11:49:33 +02001471void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001472{
Xiao Guangronga2766322012-07-26 11:58:59 +08001473 WARN_ON(is_error_page(page));
1474
Anthony Liguori35149e22008-04-02 14:46:56 -05001475 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001476}
Izik Eidusb4231d62007-11-20 11:49:33 +02001477EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001478
Stephen Hemminger79408762013-12-29 12:12:29 -08001479static void kvm_release_pfn_dirty(pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001480{
1481 kvm_set_pfn_dirty(pfn);
1482 kvm_release_pfn_clean(pfn);
1483}
Anthony Liguori35149e22008-04-02 14:46:56 -05001484
1485void kvm_set_pfn_dirty(pfn_t pfn)
1486{
Ard Biesheuveld3fccc72014-11-10 09:33:56 +01001487 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001488 struct page *page = pfn_to_page(pfn);
1489 if (!PageReserved(page))
1490 SetPageDirty(page);
1491 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001492}
1493EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1494
1495void kvm_set_pfn_accessed(pfn_t pfn)
1496{
Ard Biesheuveld3fccc72014-11-10 09:33:56 +01001497 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001498 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001499}
1500EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1501
1502void kvm_get_pfn(pfn_t pfn)
1503{
Ard Biesheuveld3fccc72014-11-10 09:33:56 +01001504 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001505 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001506}
1507EXPORT_SYMBOL_GPL(kvm_get_pfn);
1508
Izik Eidus195aefd2007-10-01 22:14:18 +02001509static int next_segment(unsigned long len, int offset)
1510{
1511 if (len > PAGE_SIZE - offset)
1512 return PAGE_SIZE - offset;
1513 else
1514 return len;
1515}
1516
1517int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1518 int len)
1519{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001520 int r;
1521 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001522
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001523 addr = gfn_to_hva_prot(kvm, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001524 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001525 return -EFAULT;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001526 r = kvm_read_hva(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001527 if (r)
1528 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001529 return 0;
1530}
1531EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1532
1533int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1534{
1535 gfn_t gfn = gpa >> PAGE_SHIFT;
1536 int seg;
1537 int offset = offset_in_page(gpa);
1538 int ret;
1539
1540 while ((seg = next_segment(len, offset)) != 0) {
1541 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1542 if (ret < 0)
1543 return ret;
1544 offset = 0;
1545 len -= seg;
1546 data += seg;
1547 ++gfn;
1548 }
1549 return 0;
1550}
1551EXPORT_SYMBOL_GPL(kvm_read_guest);
1552
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001553int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1554 unsigned long len)
1555{
1556 int r;
1557 unsigned long addr;
1558 gfn_t gfn = gpa >> PAGE_SHIFT;
1559 int offset = offset_in_page(gpa);
1560
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001561 addr = gfn_to_hva_prot(kvm, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001562 if (kvm_is_error_hva(addr))
1563 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001564 pagefault_disable();
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001565 r = kvm_read_hva_atomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001566 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001567 if (r)
1568 return -EFAULT;
1569 return 0;
1570}
1571EXPORT_SYMBOL(kvm_read_guest_atomic);
1572
Izik Eidus195aefd2007-10-01 22:14:18 +02001573int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1574 int offset, int len)
1575{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001576 int r;
1577 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001578
Izik Eiduse0506bc2007-11-11 22:10:22 +02001579 addr = gfn_to_hva(kvm, gfn);
1580 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001581 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001582 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001583 if (r)
1584 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001585 mark_page_dirty(kvm, gfn);
1586 return 0;
1587}
1588EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1589
1590int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1591 unsigned long len)
1592{
1593 gfn_t gfn = gpa >> PAGE_SHIFT;
1594 int seg;
1595 int offset = offset_in_page(gpa);
1596 int ret;
1597
1598 while ((seg = next_segment(len, offset)) != 0) {
1599 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1600 if (ret < 0)
1601 return ret;
1602 offset = 0;
1603 len -= seg;
1604 data += seg;
1605 ++gfn;
1606 }
1607 return 0;
1608}
1609
Gleb Natapov49c77542010-10-18 15:22:23 +02001610int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Andrew Honig8f964522013-03-29 09:35:21 -07001611 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001612{
1613 struct kvm_memslots *slots = kvm_memslots(kvm);
1614 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001615 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1616 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1617 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1618 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001619
1620 ghc->gpa = gpa;
1621 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001622 ghc->len = len;
1623 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
Radim Krčmář35e13292015-04-08 14:16:48 +02001624 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1625 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001626 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001627 } else {
1628 /*
1629 * If the requested region crosses two memslots, we still
1630 * verify that the entire region is valid here.
1631 */
1632 while (start_gfn <= end_gfn) {
1633 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1634 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1635 &nr_pages_avail);
1636 if (kvm_is_error_hva(ghc->hva))
1637 return -EFAULT;
1638 start_gfn += nr_pages_avail;
1639 }
1640 /* Use the slow path for cross page reads and writes. */
1641 ghc->memslot = NULL;
1642 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001643 return 0;
1644}
1645EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1646
1647int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1648 void *data, unsigned long len)
1649{
1650 struct kvm_memslots *slots = kvm_memslots(kvm);
1651 int r;
1652
Andrew Honig8f964522013-03-29 09:35:21 -07001653 BUG_ON(len > ghc->len);
1654
Gleb Natapov49c77542010-10-18 15:22:23 +02001655 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001656 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1657
1658 if (unlikely(!ghc->memslot))
1659 return kvm_write_guest(kvm, ghc->gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001660
1661 if (kvm_is_error_hva(ghc->hva))
1662 return -EFAULT;
1663
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001664 r = __copy_to_user((void __user *)ghc->hva, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001665 if (r)
1666 return -EFAULT;
1667 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1668
1669 return 0;
1670}
1671EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1672
Gleb Natapove03b6442011-07-11 15:28:11 -04001673int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1674 void *data, unsigned long len)
1675{
1676 struct kvm_memslots *slots = kvm_memslots(kvm);
1677 int r;
1678
Andrew Honig8f964522013-03-29 09:35:21 -07001679 BUG_ON(len > ghc->len);
1680
Gleb Natapove03b6442011-07-11 15:28:11 -04001681 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001682 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1683
1684 if (unlikely(!ghc->memslot))
1685 return kvm_read_guest(kvm, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04001686
1687 if (kvm_is_error_hva(ghc->hva))
1688 return -EFAULT;
1689
1690 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1691 if (r)
1692 return -EFAULT;
1693
1694 return 0;
1695}
1696EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1697
Izik Eidus195aefd2007-10-01 22:14:18 +02001698int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1699{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01001700 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
1701
1702 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001703}
1704EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1705
1706int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1707{
1708 gfn_t gfn = gpa >> PAGE_SHIFT;
1709 int seg;
1710 int offset = offset_in_page(gpa);
1711 int ret;
1712
1713 while ((seg = next_segment(len, offset)) != 0) {
1714 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1715 if (ret < 0)
1716 return ret;
1717 offset = 0;
1718 len -= seg;
1719 ++gfn;
1720 }
1721 return 0;
1722}
1723EXPORT_SYMBOL_GPL(kvm_clear_guest);
1724
Stephen Hemminger79408762013-12-29 12:12:29 -08001725static void mark_page_dirty_in_slot(struct kvm *kvm,
1726 struct kvm_memory_slot *memslot,
1727 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001729 if (memslot && memslot->dirty_bitmap) {
1730 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001731
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07001732 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001733 }
1734}
1735
Gleb Natapov49c77542010-10-18 15:22:23 +02001736void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1737{
1738 struct kvm_memory_slot *memslot;
1739
1740 memslot = gfn_to_memslot(kvm, gfn);
1741 mark_page_dirty_in_slot(kvm, memslot, gfn);
1742}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301743EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02001744
Eddie Dongb6958ce2007-07-18 12:15:21 +03001745/*
1746 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1747 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001748void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001749{
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001750 DEFINE_WAIT(wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001751
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001752 for (;;) {
1753 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001754
Gleb Natapova1b37102009-07-09 15:33:52 +03001755 if (kvm_arch_vcpu_runnable(vcpu)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03001756 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001757 break;
Marcelo Tosattid7690172008-09-08 15:23:48 -03001758 }
Gleb Natapov09cec752009-03-23 15:11:44 +02001759 if (kvm_cpu_has_pending_timer(vcpu))
1760 break;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001761 if (signal_pending(current))
1762 break;
1763
Eddie Dongb6958ce2007-07-18 12:15:21 +03001764 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001765 }
1766
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001767 finish_wait(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001768}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301769EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001770
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001771#ifndef CONFIG_S390
Christoffer Dallb6d33832012-03-08 16:44:24 -05001772/*
1773 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1774 */
1775void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1776{
1777 int me;
1778 int cpu = vcpu->cpu;
1779 wait_queue_head_t *wqp;
1780
1781 wqp = kvm_arch_vcpu_wq(vcpu);
1782 if (waitqueue_active(wqp)) {
1783 wake_up_interruptible(wqp);
1784 ++vcpu->stat.halt_wakeup;
1785 }
1786
1787 me = get_cpu();
1788 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1789 if (kvm_arch_vcpu_should_kick(vcpu))
1790 smp_send_reschedule(cpu);
1791 put_cpu();
1792}
Yang Zhanga20ed542013-04-11 19:25:15 +08001793EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001794#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05001795
Dan Carpenterfa933842014-05-23 13:20:42 +03001796int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02001797{
1798 struct pid *pid;
1799 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03001800 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001801
1802 rcu_read_lock();
1803 pid = rcu_dereference(target->pid);
1804 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10001805 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001806 rcu_read_unlock();
1807 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301808 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001809 if (task->flags & PF_VCPU) {
1810 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301811 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001812 }
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301813 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001814 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301815
1816 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001817}
1818EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
1819
Raghavendra K T06e48c52012-07-19 15:17:52 +05301820/*
1821 * Helper that checks whether a VCPU is eligible for directed yield.
1822 * Most eligible candidate to yield is decided by following heuristics:
1823 *
1824 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
1825 * (preempted lock holder), indicated by @in_spin_loop.
1826 * Set at the beiginning and cleared at the end of interception/PLE handler.
1827 *
1828 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
1829 * chance last time (mostly it has become eligible now since we have probably
1830 * yielded to lockholder in last iteration. This is done by toggling
1831 * @dy_eligible each time a VCPU checked for eligibility.)
1832 *
1833 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
1834 * to preempted lock-holder could result in wrong VCPU selection and CPU
1835 * burning. Giving priority for a potential lock-holder increases lock
1836 * progress.
1837 *
1838 * Since algorithm is based on heuristics, accessing another VCPU data without
1839 * locking does not harm. It may result in trying to yield to same VCPU, fail
1840 * and continue with next VCPU and so on.
1841 */
Stephen Hemminger79408762013-12-29 12:12:29 -08001842static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05301843{
Scott Wood4a55dd72014-01-09 18:43:16 -06001844#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05301845 bool eligible;
1846
1847 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02001848 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301849
1850 if (vcpu->spin_loop.in_spin_loop)
1851 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
1852
1853 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06001854#else
1855 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301856#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06001857}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301858
Rik van Riel217ece62011-02-01 09:53:28 -05001859void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001860{
Rik van Riel217ece62011-02-01 09:53:28 -05001861 struct kvm *kvm = me->kvm;
1862 struct kvm_vcpu *vcpu;
1863 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
1864 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301865 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05001866 int pass;
1867 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001868
Raghavendra K T4c088492012-07-18 19:07:46 +05301869 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05001870 /*
1871 * We boost the priority of a VCPU that is runnable but not
1872 * currently running, because it got preempted by something
1873 * else and called schedule in __vcpu_run. Hopefully that
1874 * VCPU is holding the lock that we need and will release it.
1875 * We approximate round-robin by starting at the last boosted VCPU.
1876 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301877 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05001878 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04001879 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05001880 i = last_boosted_vcpu;
1881 continue;
1882 } else if (pass && i > last_boosted_vcpu)
1883 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05301884 if (!ACCESS_ONCE(vcpu->preempted))
1885 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05001886 if (vcpu == me)
1887 continue;
Michael Mueller98f4a142014-02-26 16:14:18 +01001888 if (waitqueue_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05001889 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301890 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
1891 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301892
1893 yielded = kvm_vcpu_yield_to(vcpu);
1894 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05001895 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05001896 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301897 } else if (yielded < 0) {
1898 try--;
1899 if (!try)
1900 break;
Rik van Riel217ece62011-02-01 09:53:28 -05001901 }
Rik van Riel217ece62011-02-01 09:53:28 -05001902 }
1903 }
Raghavendra K T4c088492012-07-18 19:07:46 +05301904 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05301905
1906 /* Ensure vcpu is not eligible during next spinloop */
1907 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001908}
1909EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1910
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001911static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001912{
1913 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001914 struct page *page;
1915
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001916 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001917 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001918#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001919 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001920 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001921#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001922#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1923 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1924 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1925#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001926 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01001927 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001928 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001929 vmf->page = page;
1930 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001931}
1932
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001933static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001934 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001935};
1936
1937static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1938{
1939 vma->vm_ops = &kvm_vcpu_vm_ops;
1940 return 0;
1941}
1942
Avi Kivitybccf2152007-02-21 18:04:26 +02001943static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1944{
1945 struct kvm_vcpu *vcpu = filp->private_data;
1946
Al Viro66c0b392008-04-19 20:33:56 +01001947 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001948 return 0;
1949}
1950
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001951static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001952 .release = kvm_vcpu_release,
1953 .unlocked_ioctl = kvm_vcpu_ioctl,
Alexander Graf1dda6062011-06-08 02:45:37 +02001954#ifdef CONFIG_COMPAT
1955 .compat_ioctl = kvm_vcpu_compat_ioctl,
1956#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001957 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001958 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001959};
1960
1961/*
1962 * Allocates an inode for the vcpu.
1963 */
1964static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1965{
Yann Droneaud24009b02013-08-24 22:14:07 +02001966 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02001967}
1968
Avi Kivityc5ea7662007-02-20 18:41:05 +02001969/*
1970 * Creates some virtual cpus. Good luck creating more than one.
1971 */
Gleb Natapov73880c82009-06-09 15:56:28 +03001972static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02001973{
1974 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001975 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001976
Andy Honig338c7db2013-11-18 16:09:22 -08001977 if (id >= KVM_MAX_VCPUS)
1978 return -EINVAL;
1979
Gleb Natapov73880c82009-06-09 15:56:28 +03001980 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001981 if (IS_ERR(vcpu))
1982 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001983
Avi Kivity15ad7142007-07-11 18:17:21 +03001984 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1985
Avi Kivity26e52152007-11-20 15:30:24 +02001986 r = kvm_arch_vcpu_setup(vcpu);
1987 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02001988 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02001989
Shaohua Li11ec2802007-07-23 14:51:37 +08001990 mutex_lock(&kvm->lock);
Avi Kivity3e515702012-03-05 14:23:29 +02001991 if (!kvm_vcpu_compatible(vcpu)) {
1992 r = -EINVAL;
1993 goto unlock_vcpu_destroy;
1994 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001995 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1996 r = -EINVAL;
Jan Kiszkad7805922011-05-23 10:33:05 +02001997 goto unlock_vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001998 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001999
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002000 kvm_for_each_vcpu(r, v, kvm)
2001 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03002002 r = -EEXIST;
Jan Kiszkad7805922011-05-23 10:33:05 +02002003 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002004 }
2005
2006 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002007
2008 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002009 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002010 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002011 if (r < 0) {
2012 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002013 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002014 }
2015
2016 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
2017 smp_wmb();
2018 atomic_inc(&kvm->online_vcpus);
2019
Gleb Natapov73880c82009-06-09 15:56:28 +03002020 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002021 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002022 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002023
Jan Kiszkad7805922011-05-23 10:33:05 +02002024unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002025 mutex_unlock(&kvm->lock);
Jan Kiszkad7805922011-05-23 10:33:05 +02002026vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002027 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002028 return r;
2029}
2030
Avi Kivity1961d272007-03-05 19:46:05 +02002031static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2032{
2033 if (sigset) {
2034 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2035 vcpu->sigset_active = 1;
2036 vcpu->sigset = *sigset;
2037 } else
2038 vcpu->sigset_active = 0;
2039 return 0;
2040}
2041
Avi Kivitybccf2152007-02-21 18:04:26 +02002042static long kvm_vcpu_ioctl(struct file *filp,
2043 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002044{
Avi Kivitybccf2152007-02-21 18:04:26 +02002045 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002046 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002047 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002048 struct kvm_fpu *fpu = NULL;
2049 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002050
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002051 if (vcpu->kvm->mm != current->mm)
2052 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002053
David Matlack2ea75be2014-09-19 16:03:25 -07002054 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2055 return -EINVAL;
2056
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002057#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002058 /*
2059 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2060 * so vcpu_load() would break it.
2061 */
2062 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT)
2063 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2064#endif
2065
2066
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002067 r = vcpu_load(vcpu);
2068 if (r)
2069 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002070 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002071 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002072 r = -EINVAL;
2073 if (arg)
2074 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002075 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002076 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002077 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002078 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002079 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002080
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002081 r = -ENOMEM;
2082 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2083 if (!kvm_regs)
2084 goto out;
2085 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002086 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002087 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002088 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002089 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2090 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002091 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002092out_free1:
2093 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002094 break;
2095 }
2096 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002097 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002098
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002099 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002100 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2101 if (IS_ERR(kvm_regs)) {
2102 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002103 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002104 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002105 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002106 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002107 break;
2108 }
2109 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002110 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2111 r = -ENOMEM;
2112 if (!kvm_sregs)
2113 goto out;
2114 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002115 if (r)
2116 goto out;
2117 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002118 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002119 goto out;
2120 r = 0;
2121 break;
2122 }
2123 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002124 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2125 if (IS_ERR(kvm_sregs)) {
2126 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002127 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002128 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002129 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002130 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002131 break;
2132 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002133 case KVM_GET_MP_STATE: {
2134 struct kvm_mp_state mp_state;
2135
2136 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2137 if (r)
2138 goto out;
2139 r = -EFAULT;
2140 if (copy_to_user(argp, &mp_state, sizeof mp_state))
2141 goto out;
2142 r = 0;
2143 break;
2144 }
2145 case KVM_SET_MP_STATE: {
2146 struct kvm_mp_state mp_state;
2147
2148 r = -EFAULT;
2149 if (copy_from_user(&mp_state, argp, sizeof mp_state))
2150 goto out;
2151 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002152 break;
2153 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002154 case KVM_TRANSLATE: {
2155 struct kvm_translation tr;
2156
2157 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002158 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002159 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002160 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002161 if (r)
2162 goto out;
2163 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002164 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002165 goto out;
2166 r = 0;
2167 break;
2168 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002169 case KVM_SET_GUEST_DEBUG: {
2170 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002171
2172 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002173 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002174 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002175 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002176 break;
2177 }
Avi Kivity1961d272007-03-05 19:46:05 +02002178 case KVM_SET_SIGNAL_MASK: {
2179 struct kvm_signal_mask __user *sigmask_arg = argp;
2180 struct kvm_signal_mask kvm_sigmask;
2181 sigset_t sigset, *p;
2182
2183 p = NULL;
2184 if (argp) {
2185 r = -EFAULT;
2186 if (copy_from_user(&kvm_sigmask, argp,
2187 sizeof kvm_sigmask))
2188 goto out;
2189 r = -EINVAL;
2190 if (kvm_sigmask.len != sizeof sigset)
2191 goto out;
2192 r = -EFAULT;
2193 if (copy_from_user(&sigset, sigmask_arg->sigset,
2194 sizeof sigset))
2195 goto out;
2196 p = &sigset;
2197 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002198 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002199 break;
2200 }
Avi Kivityb8836732007-04-01 16:34:31 +03002201 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002202 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2203 r = -ENOMEM;
2204 if (!fpu)
2205 goto out;
2206 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002207 if (r)
2208 goto out;
2209 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002210 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002211 goto out;
2212 r = 0;
2213 break;
2214 }
2215 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002216 fpu = memdup_user(argp, sizeof(*fpu));
2217 if (IS_ERR(fpu)) {
2218 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002219 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002220 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002221 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002222 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002223 break;
2224 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002225 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002226 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002227 }
2228out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002229 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002230 kfree(fpu);
2231 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002232 return r;
2233}
2234
Alexander Graf1dda6062011-06-08 02:45:37 +02002235#ifdef CONFIG_COMPAT
2236static long kvm_vcpu_compat_ioctl(struct file *filp,
2237 unsigned int ioctl, unsigned long arg)
2238{
2239 struct kvm_vcpu *vcpu = filp->private_data;
2240 void __user *argp = compat_ptr(arg);
2241 int r;
2242
2243 if (vcpu->kvm->mm != current->mm)
2244 return -EIO;
2245
2246 switch (ioctl) {
2247 case KVM_SET_SIGNAL_MASK: {
2248 struct kvm_signal_mask __user *sigmask_arg = argp;
2249 struct kvm_signal_mask kvm_sigmask;
2250 compat_sigset_t csigset;
2251 sigset_t sigset;
2252
2253 if (argp) {
2254 r = -EFAULT;
2255 if (copy_from_user(&kvm_sigmask, argp,
2256 sizeof kvm_sigmask))
2257 goto out;
2258 r = -EINVAL;
2259 if (kvm_sigmask.len != sizeof csigset)
2260 goto out;
2261 r = -EFAULT;
2262 if (copy_from_user(&csigset, sigmask_arg->sigset,
2263 sizeof csigset))
2264 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002265 sigset_from_compat(&sigset, &csigset);
2266 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2267 } else
2268 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002269 break;
2270 }
2271 default:
2272 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2273 }
2274
2275out:
2276 return r;
2277}
2278#endif
2279
Scott Wood852b6d52013-04-12 14:08:42 +00002280static int kvm_device_ioctl_attr(struct kvm_device *dev,
2281 int (*accessor)(struct kvm_device *dev,
2282 struct kvm_device_attr *attr),
2283 unsigned long arg)
2284{
2285 struct kvm_device_attr attr;
2286
2287 if (!accessor)
2288 return -EPERM;
2289
2290 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2291 return -EFAULT;
2292
2293 return accessor(dev, &attr);
2294}
2295
2296static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2297 unsigned long arg)
2298{
2299 struct kvm_device *dev = filp->private_data;
2300
2301 switch (ioctl) {
2302 case KVM_SET_DEVICE_ATTR:
2303 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2304 case KVM_GET_DEVICE_ATTR:
2305 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2306 case KVM_HAS_DEVICE_ATTR:
2307 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2308 default:
2309 if (dev->ops->ioctl)
2310 return dev->ops->ioctl(dev, ioctl, arg);
2311
2312 return -ENOTTY;
2313 }
2314}
2315
Scott Wood852b6d52013-04-12 14:08:42 +00002316static int kvm_device_release(struct inode *inode, struct file *filp)
2317{
2318 struct kvm_device *dev = filp->private_data;
2319 struct kvm *kvm = dev->kvm;
2320
Scott Wood852b6d52013-04-12 14:08:42 +00002321 kvm_put_kvm(kvm);
2322 return 0;
2323}
2324
2325static const struct file_operations kvm_device_fops = {
2326 .unlocked_ioctl = kvm_device_ioctl,
Scott Wooddb6ae612013-04-30 20:00:45 -05002327#ifdef CONFIG_COMPAT
2328 .compat_ioctl = kvm_device_ioctl,
2329#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002330 .release = kvm_device_release,
2331};
2332
2333struct kvm_device *kvm_device_from_filp(struct file *filp)
2334{
2335 if (filp->f_op != &kvm_device_fops)
2336 return NULL;
2337
2338 return filp->private_data;
2339}
2340
Will Deacond60eacb2014-09-02 10:27:33 +01002341static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2342#ifdef CONFIG_KVM_MPIC
2343 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2344 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2345#endif
2346
2347#ifdef CONFIG_KVM_XICS
2348 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2349#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002350};
2351
2352int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2353{
2354 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2355 return -ENOSPC;
2356
2357 if (kvm_device_ops_table[type] != NULL)
2358 return -EEXIST;
2359
2360 kvm_device_ops_table[type] = ops;
2361 return 0;
2362}
2363
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002364void kvm_unregister_device_ops(u32 type)
2365{
2366 if (kvm_device_ops_table[type] != NULL)
2367 kvm_device_ops_table[type] = NULL;
2368}
2369
Scott Wood852b6d52013-04-12 14:08:42 +00002370static int kvm_ioctl_create_device(struct kvm *kvm,
2371 struct kvm_create_device *cd)
2372{
2373 struct kvm_device_ops *ops = NULL;
2374 struct kvm_device *dev;
2375 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2376 int ret;
2377
Will Deacond60eacb2014-09-02 10:27:33 +01002378 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002379 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002380
2381 ops = kvm_device_ops_table[cd->type];
2382 if (ops == NULL)
2383 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002384
2385 if (test)
2386 return 0;
2387
2388 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2389 if (!dev)
2390 return -ENOMEM;
2391
2392 dev->ops = ops;
2393 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002394
2395 ret = ops->create(dev, cd->type);
2396 if (ret < 0) {
2397 kfree(dev);
2398 return ret;
2399 }
2400
Yann Droneaud24009b02013-08-24 22:14:07 +02002401 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002402 if (ret < 0) {
2403 ops->destroy(dev);
2404 return ret;
2405 }
2406
Scott Wood07f0a7b2013-04-25 14:11:23 +00002407 list_add(&dev->vm_node, &kvm->devices);
Scott Wood852b6d52013-04-12 14:08:42 +00002408 kvm_get_kvm(kvm);
2409 cd->fd = ret;
2410 return 0;
2411}
2412
Alexander Graf92b591a2014-07-14 18:33:08 +02002413static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2414{
2415 switch (arg) {
2416 case KVM_CAP_USER_MEMORY:
2417 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2418 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
2419#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2420 case KVM_CAP_SET_BOOT_CPU_ID:
2421#endif
2422 case KVM_CAP_INTERNAL_ERROR_DATA:
2423#ifdef CONFIG_HAVE_KVM_MSI
2424 case KVM_CAP_SIGNAL_MSI:
2425#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002426#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzini9ab9ee72015-03-05 11:54:46 +01002427 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002428 case KVM_CAP_IRQFD_RESAMPLE:
2429#endif
2430 case KVM_CAP_CHECK_EXTENSION_VM:
2431 return 1;
2432#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2433 case KVM_CAP_IRQ_ROUTING:
2434 return KVM_MAX_IRQ_ROUTES;
2435#endif
2436 default:
2437 break;
2438 }
2439 return kvm_vm_ioctl_check_extension(kvm, arg);
2440}
2441
Avi Kivitybccf2152007-02-21 18:04:26 +02002442static long kvm_vm_ioctl(struct file *filp,
2443 unsigned int ioctl, unsigned long arg)
2444{
2445 struct kvm *kvm = filp->private_data;
2446 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002447 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002448
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002449 if (kvm->mm != current->mm)
2450 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002451 switch (ioctl) {
2452 case KVM_CREATE_VCPU:
2453 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002454 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002455 case KVM_SET_USER_MEMORY_REGION: {
2456 struct kvm_userspace_memory_region kvm_userspace_mem;
2457
2458 r = -EFAULT;
2459 if (copy_from_user(&kvm_userspace_mem, argp,
2460 sizeof kvm_userspace_mem))
2461 goto out;
2462
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002463 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002464 break;
2465 }
2466 case KVM_GET_DIRTY_LOG: {
2467 struct kvm_dirty_log log;
2468
2469 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002470 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002471 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002472 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002473 break;
2474 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002475#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2476 case KVM_REGISTER_COALESCED_MMIO: {
2477 struct kvm_coalesced_mmio_zone zone;
2478 r = -EFAULT;
2479 if (copy_from_user(&zone, argp, sizeof zone))
2480 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002481 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002482 break;
2483 }
2484 case KVM_UNREGISTER_COALESCED_MMIO: {
2485 struct kvm_coalesced_mmio_zone zone;
2486 r = -EFAULT;
2487 if (copy_from_user(&zone, argp, sizeof zone))
2488 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002489 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002490 break;
2491 }
2492#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002493 case KVM_IRQFD: {
2494 struct kvm_irqfd data;
2495
2496 r = -EFAULT;
2497 if (copy_from_user(&data, argp, sizeof data))
2498 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06002499 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002500 break;
2501 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002502 case KVM_IOEVENTFD: {
2503 struct kvm_ioeventfd data;
2504
2505 r = -EFAULT;
2506 if (copy_from_user(&data, argp, sizeof data))
2507 goto out;
2508 r = kvm_ioeventfd(kvm, &data);
2509 break;
2510 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002511#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2512 case KVM_SET_BOOT_CPU_ID:
2513 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002514 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002515 if (atomic_read(&kvm->online_vcpus) != 0)
2516 r = -EBUSY;
2517 else
2518 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002519 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002520 break;
2521#endif
Jan Kiszka07975ad2012-03-29 21:14:12 +02002522#ifdef CONFIG_HAVE_KVM_MSI
2523 case KVM_SIGNAL_MSI: {
2524 struct kvm_msi msi;
2525
2526 r = -EFAULT;
2527 if (copy_from_user(&msi, argp, sizeof msi))
2528 goto out;
2529 r = kvm_send_userspace_msi(kvm, &msi);
2530 break;
2531 }
2532#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002533#ifdef __KVM_HAVE_IRQ_LINE
2534 case KVM_IRQ_LINE_STATUS:
2535 case KVM_IRQ_LINE: {
2536 struct kvm_irq_level irq_event;
2537
2538 r = -EFAULT;
2539 if (copy_from_user(&irq_event, argp, sizeof irq_event))
2540 goto out;
2541
Yang Zhangaa2fbe62013-04-11 19:21:40 +08002542 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
2543 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002544 if (r)
2545 goto out;
2546
2547 r = -EFAULT;
2548 if (ioctl == KVM_IRQ_LINE_STATUS) {
2549 if (copy_to_user(argp, &irq_event, sizeof irq_event))
2550 goto out;
2551 }
2552
2553 r = 0;
2554 break;
2555 }
2556#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02002557#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2558 case KVM_SET_GSI_ROUTING: {
2559 struct kvm_irq_routing routing;
2560 struct kvm_irq_routing __user *urouting;
2561 struct kvm_irq_routing_entry *entries;
2562
2563 r = -EFAULT;
2564 if (copy_from_user(&routing, argp, sizeof(routing)))
2565 goto out;
2566 r = -EINVAL;
Xiubo Li4929b492016-06-15 18:00:33 +08002567 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02002568 goto out;
2569 if (routing.flags)
2570 goto out;
2571 r = -ENOMEM;
2572 entries = vmalloc(routing.nr * sizeof(*entries));
2573 if (!entries)
2574 goto out;
2575 r = -EFAULT;
2576 urouting = argp;
2577 if (copy_from_user(entries, urouting->entries,
2578 routing.nr * sizeof(*entries)))
2579 goto out_free_irq_routing;
2580 r = kvm_set_irq_routing(kvm, entries, routing.nr,
2581 routing.flags);
2582 out_free_irq_routing:
2583 vfree(entries);
2584 break;
2585 }
2586#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00002587 case KVM_CREATE_DEVICE: {
2588 struct kvm_create_device cd;
2589
2590 r = -EFAULT;
2591 if (copy_from_user(&cd, argp, sizeof(cd)))
2592 goto out;
2593
2594 r = kvm_ioctl_create_device(kvm, &cd);
2595 if (r)
2596 goto out;
2597
2598 r = -EFAULT;
2599 if (copy_to_user(argp, &cd, sizeof(cd)))
2600 goto out;
2601
2602 r = 0;
2603 break;
2604 }
Alexander Graf92b591a2014-07-14 18:33:08 +02002605 case KVM_CHECK_EXTENSION:
2606 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
2607 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02002608 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002609 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivitybfd99ff2009-08-26 14:57:50 +03002610 if (r == -ENOTTY)
2611 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002612 }
2613out:
2614 return r;
2615}
2616
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002617#ifdef CONFIG_COMPAT
2618struct compat_kvm_dirty_log {
2619 __u32 slot;
2620 __u32 padding1;
2621 union {
2622 compat_uptr_t dirty_bitmap; /* one bit per page */
2623 __u64 padding2;
2624 };
2625};
2626
2627static long kvm_vm_compat_ioctl(struct file *filp,
2628 unsigned int ioctl, unsigned long arg)
2629{
2630 struct kvm *kvm = filp->private_data;
2631 int r;
2632
2633 if (kvm->mm != current->mm)
2634 return -EIO;
2635 switch (ioctl) {
2636 case KVM_GET_DIRTY_LOG: {
2637 struct compat_kvm_dirty_log compat_log;
2638 struct kvm_dirty_log log;
2639
2640 r = -EFAULT;
2641 if (copy_from_user(&compat_log, (void __user *)arg,
2642 sizeof(compat_log)))
2643 goto out;
2644 log.slot = compat_log.slot;
2645 log.padding1 = compat_log.padding1;
2646 log.padding2 = compat_log.padding2;
2647 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2648
2649 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002650 break;
2651 }
2652 default:
2653 r = kvm_vm_ioctl(filp, ioctl, arg);
2654 }
2655
2656out:
2657 return r;
2658}
2659#endif
2660
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002661static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002662 .release = kvm_vm_release,
2663 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002664#ifdef CONFIG_COMPAT
2665 .compat_ioctl = kvm_vm_compat_ioctl,
2666#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02002667 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002668};
2669
Carsten Ottee08b9632012-01-04 10:25:20 +01002670static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02002671{
Heiko Carstensaac87632010-10-27 17:22:10 +02002672 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002673 struct kvm *kvm;
2674
Carsten Ottee08b9632012-01-04 10:25:20 +01002675 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04002676 if (IS_ERR(kvm))
2677 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002678#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2679 r = kvm_coalesced_mmio_init(kvm);
2680 if (r < 0) {
2681 kvm_put_kvm(kvm);
2682 return r;
2683 }
2684#endif
Yann Droneaud24009b02013-08-24 22:14:07 +02002685 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR | O_CLOEXEC);
Heiko Carstensaac87632010-10-27 17:22:10 +02002686 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002687 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002688
Heiko Carstensaac87632010-10-27 17:22:10 +02002689 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002690}
2691
2692static long kvm_dev_ioctl(struct file *filp,
2693 unsigned int ioctl, unsigned long arg)
2694{
Avi Kivity07c45a32007-03-07 13:05:38 +02002695 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002696
2697 switch (ioctl) {
2698 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002699 if (arg)
2700 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002701 r = KVM_API_VERSION;
2702 break;
2703 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01002704 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002705 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002706 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02002707 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002708 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002709 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02002710 if (arg)
2711 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002712 r = PAGE_SIZE; /* struct kvm_run */
2713#ifdef CONFIG_X86
2714 r += PAGE_SIZE; /* pio data page */
2715#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002716#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2717 r += PAGE_SIZE; /* coalesced mmio ring page */
2718#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002719 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002720 case KVM_TRACE_ENABLE:
2721 case KVM_TRACE_PAUSE:
2722 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002723 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002724 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002725 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002726 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002727 }
2728out:
2729 return r;
2730}
2731
Avi Kivity6aa8b732006-12-10 02:21:36 -08002732static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002733 .unlocked_ioctl = kvm_dev_ioctl,
2734 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002735 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002736};
2737
2738static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002739 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002740 "kvm",
2741 &kvm_chardev_ops,
2742};
2743
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002744static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002745{
2746 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002747 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002748
Rusty Russell7f59f492008-12-07 21:25:45 +10302749 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002750 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002751
Rusty Russell7f59f492008-12-07 21:25:45 +10302752 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002753
Radim Krčmář13a34e02014-08-28 15:13:03 +02002754 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02002755
2756 if (r) {
2757 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2758 atomic_inc(&hardware_enable_failed);
2759 printk(KERN_INFO "kvm: enabling virtualization on "
2760 "CPU%d failed\n", cpu);
2761 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002762}
2763
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002764static void hardware_enable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002765{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002766 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002767 if (kvm_usage_count)
2768 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002769 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002770}
2771
2772static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002773{
2774 int cpu = raw_smp_processor_id();
2775
Rusty Russell7f59f492008-12-07 21:25:45 +10302776 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002777 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302778 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02002779 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03002780}
2781
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002782static void hardware_disable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002783{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002784 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002785 if (kvm_usage_count)
2786 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002787 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002788}
2789
Alexander Graf10474ae2009-09-15 11:37:46 +02002790static void hardware_disable_all_nolock(void)
2791{
2792 BUG_ON(!kvm_usage_count);
2793
2794 kvm_usage_count--;
2795 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002796 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002797}
2798
2799static void hardware_disable_all(void)
2800{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002801 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002802 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002803 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002804}
2805
2806static int hardware_enable_all(void)
2807{
2808 int r = 0;
2809
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002810 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002811
2812 kvm_usage_count++;
2813 if (kvm_usage_count == 1) {
2814 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002815 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002816
2817 if (atomic_read(&hardware_enable_failed)) {
2818 hardware_disable_all_nolock();
2819 r = -EBUSY;
2820 }
2821 }
2822
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002823 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002824
2825 return r;
2826}
2827
Avi Kivity774c47f2007-02-12 00:54:47 -08002828static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2829 void *v)
2830{
2831 int cpu = (long)v;
2832
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002833 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002834 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002835 case CPU_DYING:
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002836 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2837 cpu);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002838 hardware_disable();
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002839 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002840 case CPU_STARTING:
Jeremy Katz43934a32007-02-19 14:37:46 +02002841 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2842 cpu);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002843 hardware_enable();
Avi Kivity774c47f2007-02-12 00:54:47 -08002844 break;
2845 }
2846 return NOTIFY_OK;
2847}
2848
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002849static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002850 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002851{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002852 /*
2853 * Some (well, at least mine) BIOSes hang on reboot if
2854 * in vmx root mode.
2855 *
2856 * And Intel TXT required VMX off for all cpu when system shutdown.
2857 */
2858 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2859 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002860 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002861 return NOTIFY_OK;
2862}
2863
2864static struct notifier_block kvm_reboot_notifier = {
2865 .notifier_call = kvm_reboot,
2866 .priority = 0,
2867};
2868
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002869static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002870{
2871 int i;
2872
2873 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03002874 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002875
2876 kvm_iodevice_destructor(pos);
2877 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002878 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002879}
2880
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002881static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
2882 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03002883{
Jason Wang7d765ce2015-09-15 14:41:57 +08002884 gpa_t addr1 = r1->addr;
2885 gpa_t addr2 = r2->addr;
2886
2887 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03002888 return -1;
Jason Wang7d765ce2015-09-15 14:41:57 +08002889
2890 /* If r2->len == 0, match the exact address. If r2->len != 0,
2891 * accept any overlapping write. Any order is acceptable for
2892 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
2893 * we process all of them.
2894 */
2895 if (r2->len) {
2896 addr1 += r1->len;
2897 addr2 += r2->len;
2898 }
2899
2900 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03002901 return 1;
Jason Wang7d765ce2015-09-15 14:41:57 +08002902
Sasha Levin743eeb02011-07-27 16:00:48 +03002903 return 0;
2904}
2905
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02002906static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
2907{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002908 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02002909}
2910
Geoff Levand39369f72013-04-05 19:20:30 +00002911static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03002912 gpa_t addr, int len)
2913{
Sasha Levin743eeb02011-07-27 16:00:48 +03002914 bus->range[bus->dev_count++] = (struct kvm_io_range) {
2915 .addr = addr,
2916 .len = len,
2917 .dev = dev,
2918 };
2919
2920 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
2921 kvm_io_bus_sort_cmp, NULL);
2922
2923 return 0;
2924}
2925
Geoff Levand39369f72013-04-05 19:20:30 +00002926static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03002927 gpa_t addr, int len)
2928{
2929 struct kvm_io_range *range, key;
2930 int off;
2931
2932 key = (struct kvm_io_range) {
2933 .addr = addr,
2934 .len = len,
2935 };
2936
2937 range = bsearch(&key, bus->range, bus->dev_count,
2938 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
2939 if (range == NULL)
2940 return -ENOENT;
2941
2942 off = range - bus->range;
2943
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002944 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03002945 off--;
2946
2947 return off;
2948}
2949
Cornelia Huck126a5af2013-07-03 16:30:53 +02002950static int __kvm_io_bus_write(struct kvm_io_bus *bus,
2951 struct kvm_io_range *range, const void *val)
2952{
2953 int idx;
2954
2955 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
2956 if (idx < 0)
2957 return -EOPNOTSUPP;
2958
2959 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002960 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Cornelia Huck126a5af2013-07-03 16:30:53 +02002961 if (!kvm_iodevice_write(bus->range[idx].dev, range->addr,
2962 range->len, val))
2963 return idx;
2964 idx++;
2965 }
2966
2967 return -EOPNOTSUPP;
2968}
2969
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002970/* kvm_io_bus_write - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002971int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002972 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002973{
Cornelia Huck126a5af2013-07-03 16:30:53 +02002974 struct kvm_io_bus *bus;
2975 struct kvm_io_range range;
2976 int r;
2977
2978 range = (struct kvm_io_range) {
2979 .addr = addr,
2980 .len = len,
2981 };
2982
2983 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand07882fe2017-03-23 18:24:19 +01002984 if (!bus)
2985 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02002986 r = __kvm_io_bus_write(bus, &range, val);
2987 return r < 0 ? r : 0;
2988}
2989
2990/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
2991int kvm_io_bus_write_cookie(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2992 int len, const void *val, long cookie)
2993{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002994 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03002995 struct kvm_io_range range;
2996
2997 range = (struct kvm_io_range) {
2998 .addr = addr,
2999 .len = len,
3000 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003001
3002 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand07882fe2017-03-23 18:24:19 +01003003 if (!bus)
3004 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02003005
3006 /* First try the device referenced by cookie. */
3007 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003008 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Cornelia Huck126a5af2013-07-03 16:30:53 +02003009 if (!kvm_iodevice_write(bus->range[cookie].dev, addr, len,
3010 val))
3011 return cookie;
3012
3013 /*
3014 * cookie contained garbage; fall back to search and return the
3015 * correct cookie value.
3016 */
3017 return __kvm_io_bus_write(bus, &range, val);
3018}
3019
3020static int __kvm_io_bus_read(struct kvm_io_bus *bus, struct kvm_io_range *range,
3021 void *val)
3022{
3023 int idx;
3024
3025 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003026 if (idx < 0)
3027 return -EOPNOTSUPP;
3028
3029 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003030 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Cornelia Huck126a5af2013-07-03 16:30:53 +02003031 if (!kvm_iodevice_read(bus->range[idx].dev, range->addr,
3032 range->len, val))
3033 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003034 idx++;
3035 }
3036
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003037 return -EOPNOTSUPP;
3038}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003039EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003040
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003041/* kvm_io_bus_read - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003042int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3043 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003044{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003045 struct kvm_io_bus *bus;
3046 struct kvm_io_range range;
3047 int r;
3048
3049 range = (struct kvm_io_range) {
3050 .addr = addr,
3051 .len = len,
3052 };
3053
3054 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand07882fe2017-03-23 18:24:19 +01003055 if (!bus)
3056 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02003057 r = __kvm_io_bus_read(bus, &range, val);
3058 return r < 0 ? r : 0;
3059}
3060
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003061
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003062/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003063int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3064 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003065{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003066 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003067
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003068 bus = kvm->buses[bus_idx];
David Hildenbrand07882fe2017-03-23 18:24:19 +01003069 if (!bus)
3070 return -ENOMEM;
3071
Amos Kong6ea34c92013-05-25 06:44:15 +08003072 /* exclude ioeventfd which is limited by maximum fd */
3073 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003074 return -ENOSPC;
3075
Amos Konga13007162012-03-09 12:17:32 +08003076 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
3077 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003078 if (!new_bus)
3079 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003080 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3081 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003082 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003083 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3084 synchronize_srcu_expedited(&kvm->srcu);
3085 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003086
3087 return 0;
3088}
3089
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003090/* Caller must hold slots_lock. */
David Hildenbrand07882fe2017-03-23 18:24:19 +01003091void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3092 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003093{
David Hildenbrand07882fe2017-03-23 18:24:19 +01003094 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003095 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003096
Sasha Levincdfca7b2011-12-04 19:36:28 +02003097 bus = kvm->buses[bus_idx];
Peter Xuc6216a02017-03-15 16:01:17 +08003098 if (!bus)
David Hildenbrand07882fe2017-03-23 18:24:19 +01003099 return;
Peter Xuc6216a02017-03-15 16:01:17 +08003100
Amos Konga13007162012-03-09 12:17:32 +08003101 for (i = 0; i < bus->dev_count; i++)
3102 if (bus->range[i].dev == dev) {
Gregory Haskins090b7af2009-07-07 17:08:44 -04003103 break;
3104 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003105
David Hildenbrand07882fe2017-03-23 18:24:19 +01003106 if (i == bus->dev_count)
3107 return;
Amos Konga13007162012-03-09 12:17:32 +08003108
3109 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
3110 sizeof(struct kvm_io_range)), GFP_KERNEL);
David Hildenbrand07882fe2017-03-23 18:24:19 +01003111 if (!new_bus) {
3112 pr_err("kvm: failed to shrink bus, removing it completely\n");
3113 goto broken;
3114 }
Amos Konga13007162012-03-09 12:17:32 +08003115
3116 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3117 new_bus->dev_count--;
3118 memcpy(new_bus->range + i, bus->range + i + 1,
3119 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003120
David Hildenbrand07882fe2017-03-23 18:24:19 +01003121broken:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003122 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3123 synchronize_srcu_expedited(&kvm->srcu);
3124 kfree(bus);
David Hildenbrand07882fe2017-03-23 18:24:19 +01003125 return;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003126}
3127
Avi Kivity774c47f2007-02-12 00:54:47 -08003128static struct notifier_block kvm_cpu_notifier = {
3129 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08003130};
3131
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003132static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003133{
3134 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003135 struct kvm *kvm;
3136
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003137 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003138 spin_lock(&kvm_lock);
Avi Kivityba1389b2007-11-18 16:24:12 +02003139 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003140 *val += *(u32 *)((void *)kvm + offset);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003141 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003142 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003143}
3144
3145DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
3146
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003147static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003148{
3149 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003150 struct kvm *kvm;
3151 struct kvm_vcpu *vcpu;
3152 int i;
3153
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003154 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003155 spin_lock(&kvm_lock);
Avi Kivity1165f5f2007-04-19 17:27:43 +03003156 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03003157 kvm_for_each_vcpu(i, vcpu, kvm)
3158 *val += *(u32 *)((void *)vcpu + offset);
3159
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003160 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003161 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003162}
3163
Avi Kivityba1389b2007-11-18 16:24:12 +02003164DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
3165
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003166static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003167 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3168 [KVM_STAT_VM] = &vm_stat_fops,
3169};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003170
Hamo4f69b682011-12-15 14:23:16 +08003171static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003172{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003173 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003174 struct kvm_stats_debugfs_item *p;
3175
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003176 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003177 if (kvm_debugfs_dir == NULL)
3178 goto out;
3179
3180 for (p = debugfs_entries; p->name; ++p) {
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003181 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03003182 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02003183 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08003184 if (p->dentry == NULL)
3185 goto out_dir;
3186 }
3187
3188 return 0;
3189
3190out_dir:
3191 debugfs_remove_recursive(kvm_debugfs_dir);
3192out:
3193 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003194}
3195
3196static void kvm_exit_debug(void)
3197{
3198 struct kvm_stats_debugfs_item *p;
3199
3200 for (p = debugfs_entries; p->name; ++p)
3201 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003202 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003203}
3204
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003205static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003206{
Alexander Graf10474ae2009-09-15 11:37:46 +02003207 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003208 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003209 return 0;
3210}
3211
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003212static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003213{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003214 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003215 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003216 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003217 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003218}
3219
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003220static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003221 .suspend = kvm_suspend,
3222 .resume = kvm_resume,
3223};
3224
Avi Kivity15ad7142007-07-11 18:17:21 +03003225static inline
3226struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3227{
3228 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3229}
3230
3231static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3232{
3233 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303234 if (vcpu->preempted)
3235 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003236
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003237 kvm_arch_sched_in(vcpu, cpu);
3238
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003239 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003240}
3241
3242static void kvm_sched_out(struct preempt_notifier *pn,
3243 struct task_struct *next)
3244{
3245 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3246
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303247 if (current->state == TASK_RUNNING)
3248 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003249 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003250}
3251
Avi Kivity0ee75be2010-04-28 15:39:01 +03003252int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003253 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003254{
3255 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003256 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003257
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003258 r = kvm_arch_init(opaque);
3259 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003260 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003261
Asias He7dac16c2013-05-08 10:57:29 +08003262 /*
3263 * kvm_arch_init makes sure there's at most one caller
3264 * for architectures that support multiple implementations,
3265 * like intel and amd on x86.
3266 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3267 * conflicts in case kvm is already setup for another implementation.
3268 */
3269 r = kvm_irqfd_init();
3270 if (r)
3271 goto out_irqfd;
3272
Avi Kivity8437a612009-06-06 14:52:35 -07003273 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303274 r = -ENOMEM;
3275 goto out_free_0;
3276 }
3277
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003278 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003279 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303280 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003281
Yang, Sheng002c7f72007-07-31 14:23:01 +03003282 for_each_online_cpu(cpu) {
3283 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003284 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003285 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003286 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003287 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003288 }
3289
Avi Kivity774c47f2007-02-12 00:54:47 -08003290 r = register_cpu_notifier(&kvm_cpu_notifier);
3291 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003292 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003293 register_reboot_notifier(&kvm_reboot_notifier);
3294
Rusty Russellc16f8622007-07-30 21:12:19 +10003295 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003296 if (!vcpu_align)
3297 vcpu_align = __alignof__(struct kvm_vcpu);
3298 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003299 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003300 if (!kvm_vcpu_cache) {
3301 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003302 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003303 }
3304
Gleb Natapovaf585b92010-10-14 11:22:46 +02003305 r = kvm_async_pf_init();
3306 if (r)
3307 goto out_free;
3308
Avi Kivity6aa8b732006-12-10 02:21:36 -08003309 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003310 kvm_vm_fops.owner = module;
3311 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003312
3313 r = misc_register(&kvm_dev);
3314 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04003315 printk(KERN_ERR "kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003316 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003317 }
3318
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003319 register_syscore_ops(&kvm_syscore_ops);
3320
Avi Kivity15ad7142007-07-11 18:17:21 +03003321 kvm_preempt_ops.sched_in = kvm_sched_in;
3322 kvm_preempt_ops.sched_out = kvm_sched_out;
3323
Hamo4f69b682011-12-15 14:23:16 +08003324 r = kvm_init_debug();
3325 if (r) {
3326 printk(KERN_ERR "kvm: create debugfs files failed\n");
3327 goto out_undebugfs;
3328 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003329
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02003330 r = kvm_vfio_ops_init();
3331 WARN_ON(r);
3332
Avi Kivityc7addb92007-09-16 18:58:32 +02003333 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003334
Hamo4f69b682011-12-15 14:23:16 +08003335out_undebugfs:
3336 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08003337 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003338out_unreg:
3339 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003340out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003341 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003342out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003343 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08003344 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003345out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08003346out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003347 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10303348out_free_0a:
3349 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003350out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003351 kvm_irqfd_exit();
3352out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08003353 kvm_arch_exit();
3354out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003355 return r;
3356}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003357EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003358
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003359void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003361 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003362 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10003363 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003364 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003365 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003366 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003367 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003368 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003369 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003370 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003371 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10303372 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08003373 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003374}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003375EXPORT_SYMBOL_GPL(kvm_exit);