blob: f9746f29f870da4a213c9d36f8ddaef4eaba6625 [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
Andre Przywaraaf669ac2015-03-26 14:39:29 +000019#include <kvm/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
Christian Borntraeger0fa97782015-02-27 16:50:10 +010069static unsigned int halt_poll_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +010070module_param(halt_poll_ns, uint, S_IRUGO | S_IWUSR);
71
Marcelo Tosattifa40a822009-06-04 15:08:24 -030072/*
73 * Ordering of locks:
74 *
Xiubo Lib7d409d2015-02-26 14:58:24 +080075 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030076 */
77
Paolo Bonzini2f303b72013-09-25 13:53:07 +020078DEFINE_SPINLOCK(kvm_lock);
Paolo Bonzini4a937f92013-09-10 12:58:35 +020079static DEFINE_RAW_SPINLOCK(kvm_count_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080080LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080081
Rusty Russell7f59f492008-12-07 21:25:45 +103082static cpumask_var_t cpus_hardware_enabled;
Xiubo Lif4fee932015-02-26 14:58:21 +080083static int kvm_usage_count;
Alexander Graf10474ae2009-09-15 11:37:46 +020084static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +030085
Rusty Russellc16f8622007-07-30 21:12:19 +100086struct kmem_cache *kvm_vcpu_cache;
87EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030088
Avi Kivity15ad7142007-07-11 18:17:21 +030089static __read_mostly struct preempt_ops kvm_preempt_ops;
90
Hollis Blanchard76f7c872008-04-15 16:05:42 -050091struct dentry *kvm_debugfs_dir;
Paul Mackerrase23a8082015-03-28 14:21:01 +110092EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -080093
Avi Kivitybccf2152007-02-21 18:04:26 +020094static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
95 unsigned long arg);
Christian Borntraegerde8e5d72015-02-03 09:35:15 +010096#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +020097static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
98 unsigned long arg);
99#endif
Alexander Graf10474ae2009-09-15 11:37:46 +0200100static int hardware_enable_all(void);
101static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +0200102
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200103static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
Stephen Hemminger79408762013-12-29 12:12:29 -0800104
105static void kvm_release_pfn_dirty(pfn_t pfn);
106static void mark_page_dirty_in_slot(struct kvm *kvm,
107 struct kvm_memory_slot *memslot, gfn_t gfn);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200108
Andi Kleen52480132014-02-08 08:51:57 +0100109__visible bool kvm_rebooting;
Avi Kivityb7c41452010-12-02 17:52:50 +0200110EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300111
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300112static bool largepages_enabled = true;
113
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000114bool kvm_is_reserved_pfn(pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300115{
Andrea Arcangeli11feeb42013-07-25 03:04:38 +0200116 if (pfn_valid(pfn))
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000117 return PageReserved(pfn_to_page(pfn));
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300118
119 return true;
120}
121
Avi Kivity6aa8b732006-12-10 02:21:36 -0800122/*
123 * Switches to specified vcpu, until a matching vcpu_put()
124 */
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300125int vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800126{
Avi Kivity15ad7142007-07-11 18:17:21 +0300127 int cpu;
128
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300129 if (mutex_lock_killable(&vcpu->mutex))
130 return -EINTR;
Avi Kivity15ad7142007-07-11 18:17:21 +0300131 cpu = get_cpu();
132 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200133 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300134 put_cpu();
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300135 return 0;
Avi Kivitybccf2152007-02-21 18:04:26 +0200136}
Jim Mattson6c2ca212016-07-08 15:36:06 -0700137EXPORT_SYMBOL_GPL(vcpu_load);
Avi Kivitybccf2152007-02-21 18:04:26 +0200138
Carsten Otte313a3dc2007-10-11 19:16:52 +0200139void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800140{
Avi Kivity15ad7142007-07-11 18:17:21 +0300141 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200142 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300143 preempt_notifier_unregister(&vcpu->preempt_notifier);
144 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800145 mutex_unlock(&vcpu->mutex);
146}
Jim Mattson6c2ca212016-07-08 15:36:06 -0700147EXPORT_SYMBOL_GPL(vcpu_put);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800148
Avi Kivityd9e368d2007-06-07 19:18:30 +0300149static void ack_flush(void *_completed)
150{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300151}
152
Tang Chen445b8232014-09-24 15:57:55 +0800153bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300154{
Avi Kivity597a5f52008-07-20 14:24:22 +0300155 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030156 cpumask_var_t cpus;
157 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300158 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300159
Li Zefan79f55992009-06-15 14:58:26 +0800160 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030161
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800162 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300163 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800164 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300165 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800166
167 /* Set ->requests bit before we read ->mode */
168 smp_mb();
169
170 if (cpus != NULL && cpu != -1 && cpu != me &&
171 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030172 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300173 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030174 if (unlikely(cpus == NULL))
175 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
176 else if (!cpumask_empty(cpus))
177 smp_call_function_many(cpus, ack_flush, NULL, 1);
178 else
179 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800180 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030181 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030182 return called;
183}
184
Mario Smarducha6d51012015-01-15 15:58:52 -0800185#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030186void kvm_flush_remote_tlbs(struct kvm *kvm)
187{
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800188 long dirty_count = kvm->tlbs_dirty;
189
190 smp_mb();
Tang Chen445b8232014-09-24 15:57:55 +0800191 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030192 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800193 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300194}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530195EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800196#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300197
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500198void kvm_reload_remote_mmus(struct kvm *kvm)
199{
Tang Chen445b8232014-09-24 15:57:55 +0800200 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500201}
202
Marcelo Tosattid8281992012-11-27 23:29:01 -0200203void kvm_make_mclock_inprogress_request(struct kvm *kvm)
204{
Tang Chen445b8232014-09-24 15:57:55 +0800205 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
Marcelo Tosattid8281992012-11-27 23:29:01 -0200206}
207
Yang Zhang3d81bc72013-04-11 19:25:13 +0800208void kvm_make_scan_ioapic_request(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800209{
Tang Chen445b8232014-09-24 15:57:55 +0800210 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800211}
212
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000213int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
214{
215 struct page *page;
216 int r;
217
218 mutex_init(&vcpu->mutex);
219 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000220 vcpu->kvm = kvm;
221 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500222 vcpu->pid = NULL;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300223 init_waitqueue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200224 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000225
226 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
227 if (!page) {
228 r = -ENOMEM;
229 goto fail;
230 }
231 vcpu->run = page_address(page);
232
Raghavendra K T4c088492012-07-18 19:07:46 +0530233 kvm_vcpu_set_in_spin_loop(vcpu, false);
234 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530235 vcpu->preempted = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530236
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800237 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000238 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800239 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000240 return 0;
241
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000242fail_free_run:
243 free_page((unsigned long)vcpu->run);
244fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000245 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000246}
247EXPORT_SYMBOL_GPL(kvm_vcpu_init);
248
249void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
250{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500251 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800252 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000253 free_page((unsigned long)vcpu->run);
254}
255EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
256
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200257#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
258static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
259{
260 return container_of(mn, struct kvm, mmu_notifier);
261}
262
263static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
264 struct mm_struct *mm,
265 unsigned long address)
266{
267 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200268 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200269
270 /*
271 * When ->invalidate_page runs, the linux pte has been zapped
272 * already but the page is still allocated until
273 * ->invalidate_page returns. So if we increase the sequence
274 * here the kvm page fault will notice if the spte can't be
275 * established because the page is going to be freed. If
276 * instead the kvm page fault establishes the spte before
277 * ->invalidate_page runs, kvm_unmap_hva will release it
278 * before returning.
279 *
280 * The sequence increase only need to be seen at spin_unlock
281 * time, and not at spin_lock time.
282 *
283 * Increasing the sequence after the spin_unlock would be
284 * unsafe because the kvm page fault could then establish the
285 * pte after kvm_unmap_hva returned, without noticing the page
286 * is going to be freed.
287 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200288 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200289 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900290
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200291 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800292 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200293 /* we've to flush the tlb before the pages can be freed */
294 if (need_tlb_flush)
295 kvm_flush_remote_tlbs(kvm);
296
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900297 spin_unlock(&kvm->mmu_lock);
Tang Chenfe715572014-09-24 15:57:57 +0800298
299 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
300
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900301 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200302}
303
Izik Eidus3da0dd42009-09-23 21:47:18 +0300304static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
305 struct mm_struct *mm,
306 unsigned long address,
307 pte_t pte)
308{
309 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200310 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300311
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200312 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300313 spin_lock(&kvm->mmu_lock);
314 kvm->mmu_notifier_seq++;
315 kvm_set_spte_hva(kvm, address, pte);
316 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200317 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300318}
319
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200320static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
321 struct mm_struct *mm,
322 unsigned long start,
323 unsigned long end)
324{
325 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200326 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200327
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200328 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200329 spin_lock(&kvm->mmu_lock);
330 /*
331 * The count increase must become visible at unlock time as no
332 * spte can be established without taking the mmu_lock and
333 * count is also read inside the mmu_lock critical section.
334 */
335 kvm->mmu_notifier_count++;
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +0900336 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800337 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200338 /* we've to flush the tlb before the pages can be freed */
339 if (need_tlb_flush)
340 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900341
342 spin_unlock(&kvm->mmu_lock);
343 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200344}
345
346static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
347 struct mm_struct *mm,
348 unsigned long start,
349 unsigned long end)
350{
351 struct kvm *kvm = mmu_notifier_to_kvm(mn);
352
353 spin_lock(&kvm->mmu_lock);
354 /*
355 * This sequence increase will notify the kvm page fault that
356 * the page that is going to be mapped in the spte could have
357 * been freed.
358 */
359 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000360 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200361 /*
362 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000363 * below count decrease, which is ensured by the smp_wmb above
364 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200365 */
366 kvm->mmu_notifier_count--;
367 spin_unlock(&kvm->mmu_lock);
368
369 BUG_ON(kvm->mmu_notifier_count < 0);
370}
371
372static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
373 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700374 unsigned long start,
375 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200376{
377 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200378 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200379
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200380 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200381 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200382
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700383 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200384 if (young)
385 kvm_flush_remote_tlbs(kvm);
386
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900387 spin_unlock(&kvm->mmu_lock);
388 srcu_read_unlock(&kvm->srcu, idx);
389
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200390 return young;
391}
392
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800393static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
394 struct mm_struct *mm,
395 unsigned long address)
396{
397 struct kvm *kvm = mmu_notifier_to_kvm(mn);
398 int young, idx;
399
400 idx = srcu_read_lock(&kvm->srcu);
401 spin_lock(&kvm->mmu_lock);
402 young = kvm_test_age_hva(kvm, address);
403 spin_unlock(&kvm->mmu_lock);
404 srcu_read_unlock(&kvm->srcu, idx);
405
406 return young;
407}
408
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100409static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
410 struct mm_struct *mm)
411{
412 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800413 int idx;
414
415 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300416 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800417 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100418}
419
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200420static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
421 .invalidate_page = kvm_mmu_notifier_invalidate_page,
422 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
423 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
424 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800425 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300426 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100427 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200428};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200429
430static int kvm_init_mmu_notifier(struct kvm *kvm)
431{
432 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
433 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
434}
435
436#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
437
438static int kvm_init_mmu_notifier(struct kvm *kvm)
439{
440 return 0;
441}
442
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200443#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
444
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800445static void kvm_init_memslots_id(struct kvm *kvm)
446{
447 int i;
448 struct kvm_memslots *slots = kvm->memslots;
449
450 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800451 slots->id_to_index[i] = slots->memslots[i].id = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800452}
453
Carsten Ottee08b9632012-01-04 10:25:20 +0100454static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800455{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100456 int r, i;
457 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800458
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100459 if (!kvm)
460 return ERR_PTR(-ENOMEM);
461
Paolo Bonzini01954df2016-03-21 10:15:25 +0100462 spin_lock_init(&kvm->mmu_lock);
463 atomic_inc(&current->mm->mm_count);
464 kvm->mm = current->mm;
465 kvm_eventfd_init(kvm);
466 mutex_init(&kvm->lock);
467 mutex_init(&kvm->irq_lock);
468 mutex_init(&kvm->slots_lock);
469 atomic_set(&kvm->users_count, 1);
470 INIT_LIST_HEAD(&kvm->devices);
471
Carsten Ottee08b9632012-01-04 10:25:20 +0100472 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100473 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100474 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200475
476 r = hardware_enable_all();
477 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100478 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200479
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200480#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300481 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200482#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800483
Alex Williamson1e702d92012-12-10 10:33:32 -0700484 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
485
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200486 r = -ENOMEM;
Igor Mammedov74496132015-03-20 12:21:37 +0000487 kvm->memslots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200488 if (!kvm->memslots)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100489 goto out_err_no_srcu;
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200490
491 /*
492 * Init kvm generation close to the maximum to easily test the
493 * code of handling generation number wrap-around.
494 */
495 kvm->memslots->generation = -150;
496
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800497 kvm_init_memslots_id(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200498 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100499 goto out_err_no_srcu;
500 if (init_srcu_struct(&kvm->irq_srcu))
501 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200502 for (i = 0; i < KVM_NR_BUSES; i++) {
503 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
504 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100505 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200506 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200507 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700508
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700509 r = kvm_init_mmu_notifier(kvm);
510 if (r)
511 goto out_err;
512
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200513 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000514 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200515 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100516
Avi Kivityf17abe92007-02-21 19:28:04 +0200517 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200518
519out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100520 cleanup_srcu_struct(&kvm->irq_srcu);
521out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100522 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100523out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200524 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100525out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200526 for (i = 0; i < KVM_NR_BUSES; i++)
527 kfree(kvm->buses[i]);
Igor Mammedov74496132015-03-20 12:21:37 +0000528 kvfree(kvm->memslots);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100529 kvm_arch_free_vm(kvm);
Paolo Bonzini01954df2016-03-21 10:15:25 +0100530 mmdrop(current->mm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200531 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200532}
533
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900534/*
535 * Avoid using vmalloc for a small buffer.
536 * Should not be used when the size is statically known.
537 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900538void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900539{
540 if (size > PAGE_SIZE)
541 return vzalloc(size);
542 else
543 return kzalloc(size, GFP_KERNEL);
544}
545
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900546static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
547{
548 if (!memslot->dirty_bitmap)
549 return;
550
Thomas Huth548ef282015-02-24 21:29:25 +0100551 kvfree(memslot->dirty_bitmap);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900552 memslot->dirty_bitmap = NULL;
553}
554
Avi Kivity6aa8b732006-12-10 02:21:36 -0800555/*
556 * Free any memory in @free but not in @dont.
557 */
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530558static void kvm_free_physmem_slot(struct kvm *kvm, struct kvm_memory_slot *free,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800559 struct kvm_memory_slot *dont)
560{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800561 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900562 kvm_destroy_dirty_bitmap(free);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800563
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530564 kvm_arch_free_memslot(kvm, free, dont);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300565
Avi Kivity6aa8b732006-12-10 02:21:36 -0800566 free->npages = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800567}
568
Stephen Hemminger79408762013-12-29 12:12:29 -0800569static void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800570{
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200571 struct kvm_memslots *slots = kvm->memslots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800572 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800573
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800574 kvm_for_each_memslot(memslot, slots)
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530575 kvm_free_physmem_slot(kvm, memslot, NULL);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200576
Igor Mammedov74496132015-03-20 12:21:37 +0000577 kvfree(kvm->memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800578}
579
Scott Wood07f0a7b2013-04-25 14:11:23 +0000580static void kvm_destroy_devices(struct kvm *kvm)
581{
582 struct list_head *node, *tmp;
583
584 list_for_each_safe(node, tmp, &kvm->devices) {
585 struct kvm_device *dev =
586 list_entry(node, struct kvm_device, vm_node);
587
588 list_del(node);
589 dev->ops->destroy(dev);
590 }
591}
592
Avi Kivityf17abe92007-02-21 19:28:04 +0200593static void kvm_destroy_vm(struct kvm *kvm)
594{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200595 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200596 struct mm_struct *mm = kvm->mm;
597
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800598 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200599 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800600 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200601 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200602 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200603 for (i = 0; i < KVM_NR_BUSES; i++)
604 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200605 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200606#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
607 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200608#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300609 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200610#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800611 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000612 kvm_destroy_devices(kvm);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100613 kvm_free_physmem(kvm);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200614 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100615 cleanup_srcu_struct(&kvm->srcu);
616 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200617 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200618 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200619}
620
Izik Eidusd39f13b2008-03-30 16:01:25 +0300621void kvm_get_kvm(struct kvm *kvm)
622{
623 atomic_inc(&kvm->users_count);
624}
625EXPORT_SYMBOL_GPL(kvm_get_kvm);
626
627void kvm_put_kvm(struct kvm *kvm)
628{
629 if (atomic_dec_and_test(&kvm->users_count))
630 kvm_destroy_vm(kvm);
631}
632EXPORT_SYMBOL_GPL(kvm_put_kvm);
633
634
Avi Kivityf17abe92007-02-21 19:28:04 +0200635static int kvm_vm_release(struct inode *inode, struct file *filp)
636{
637 struct kvm *kvm = filp->private_data;
638
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400639 kvm_irqfd_release(kvm);
640
Izik Eidusd39f13b2008-03-30 16:01:25 +0300641 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800642 return 0;
643}
644
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900645/*
646 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900647 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900648 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900649static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
650{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900651 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900652
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900653 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900654 if (!memslot->dirty_bitmap)
655 return -ENOMEM;
656
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900657 return 0;
658}
659
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800660/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000661 * Insert memslot and re-sort memslots based on their GFN,
662 * so binary search could be used to lookup GFN.
663 * Sorting algorithm takes advantage of having initially
664 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800665 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100666static void update_memslots(struct kvm_memslots *slots,
667 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800668{
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100669 int id = new->id;
670 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000671 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800672
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100673 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000674 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100675 WARN_ON(!mslots[i].npages);
Igor Mammedov0e60b072014-12-01 17:29:26 +0000676 new->base_gfn = 0;
Tiejun Chenb0165f12015-01-09 16:29:14 +0800677 new->flags = 0;
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000678 if (mslots[i].npages)
679 slots->used_slots--;
680 } else {
681 if (!mslots[i].npages)
682 slots->used_slots++;
683 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000684
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000685 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000686 new->base_gfn <= mslots[i + 1].base_gfn) {
687 if (!mslots[i + 1].npages)
688 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000689 mslots[i] = mslots[i + 1];
690 slots->id_to_index[mslots[i].id] = i;
691 i++;
692 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100693
694 /*
695 * The ">=" is needed when creating a slot with base_gfn == 0,
696 * so that it moves before all those with base_gfn == npages == 0.
697 *
698 * On the other hand, if new->npages is zero, the above loop has
699 * already left i pointing to the beginning of the empty part of
700 * mslots, and the ">=" would move the hole backwards in this
701 * case---which is wrong. So skip the loop when deleting a slot.
702 */
703 if (new->npages) {
704 while (i > 0 &&
705 new->base_gfn >= mslots[i - 1].base_gfn) {
706 mslots[i] = mslots[i - 1];
707 slots->id_to_index[mslots[i].id] = i;
708 i--;
709 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100710 } else
711 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800712
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100713 mslots[i] = *new;
714 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800715}
716
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800717static int check_memory_region_flags(struct kvm_userspace_memory_region *mem)
718{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800719 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
720
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200721#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800722 valid_flags |= KVM_MEM_READONLY;
723#endif
724
725 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800726 return -EINVAL;
727
728 return 0;
729}
730
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200731static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100732 struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200733{
734 struct kvm_memslots *old_memslots = kvm->memslots;
735
David Matlackee3d1572014-08-18 15:46:06 -0700736 /*
737 * Set the low bit in the generation, which disables SPTE caching
738 * until the end of synchronize_srcu_expedited.
739 */
740 WARN_ON(old_memslots->generation & 1);
741 slots->generation = old_memslots->generation + 1;
742
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200743 rcu_assign_pointer(kvm->memslots, slots);
744 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900745
David Matlackee3d1572014-08-18 15:46:06 -0700746 /*
747 * Increment the new memslot generation a second time. This prevents
748 * vm exits that race with memslot updates from caching a memslot
749 * generation that will (potentially) be valid forever.
750 */
751 slots->generation++;
752
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900753 kvm_arch_memslots_updated(kvm);
754
755 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200756}
757
Avi Kivity6aa8b732006-12-10 02:21:36 -0800758/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800759 * Allocate some memory and give it an address in the guest physical address
760 * space.
761 *
762 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800763 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100764 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800765 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800766int __kvm_set_memory_region(struct kvm *kvm,
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900767 struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800768{
Avi Kivity8234b222010-12-27 12:08:45 +0200769 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200771 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900772 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700774 struct kvm_memslots *slots = NULL, *old_memslots;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900775 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800776
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800777 r = check_memory_region_flags(mem);
778 if (r)
779 goto out;
780
Avi Kivity6aa8b732006-12-10 02:21:36 -0800781 r = -EINVAL;
782 /* General sanity checks */
783 if (mem->memory_size & (PAGE_SIZE - 1))
784 goto out;
785 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
786 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900787 /* We can read the guest memory with __xxx_user() later on. */
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900788 if ((mem->slot < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900789 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200790 !access_ok(VERIFY_WRITE,
791 (void __user *)(unsigned long)mem->userspace_addr,
792 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600793 goto out;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800794 if (mem->slot >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800795 goto out;
796 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
797 goto out;
798
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900799 slot = id_to_memslot(kvm->memslots, mem->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800800 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
801 npages = mem->memory_size >> PAGE_SHIFT;
802
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900803 if (npages > KVM_MEM_MAX_NR_PAGES)
804 goto out;
805
Avi Kivity6aa8b732006-12-10 02:21:36 -0800806 if (!npages)
807 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
808
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900809 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800810
Avi Kivitye36d96f2010-06-21 10:56:36 +0300811 new.id = mem->slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800812 new.base_gfn = base_gfn;
813 new.npages = npages;
814 new.flags = mem->flags;
815
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900816 if (npages) {
817 if (!old.npages)
818 change = KVM_MR_CREATE;
819 else { /* Modify an existing slot. */
820 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900821 (npages != old.npages) ||
822 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900823 goto out;
824
825 if (base_gfn != old.base_gfn)
826 change = KVM_MR_MOVE;
827 else if (new.flags != old.flags)
828 change = KVM_MR_FLAGS_ONLY;
829 else { /* Nothing to change. */
830 r = 0;
831 goto out;
832 }
833 }
834 } else if (old.npages) {
835 change = KVM_MR_DELETE;
836 } else /* Modify a non-existent slot: disallowed. */
Takuya Yoshikawa0ea75e12013-01-11 18:26:10 +0900837 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800838
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900839 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900840 /* Check for overlaps */
841 r = -EEXIST;
842 kvm_for_each_memslot(slot, kvm->memslots) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900843 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
844 (slot->id == mem->slot))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900845 continue;
846 if (!((base_gfn + npages <= slot->base_gfn) ||
847 (base_gfn >= slot->base_gfn + slot->npages)))
848 goto out;
849 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800850 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800851
Avi Kivity6aa8b732006-12-10 02:21:36 -0800852 /* Free page dirty bitmap if unneeded */
853 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000854 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855
856 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900857 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900858 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900859
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530860 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900861 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800862 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200863
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864 /* Allocate page dirty bitmap if needed */
865 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900866 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800867 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800868 }
869
Igor Mammedov74496132015-03-20 12:21:37 +0000870 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100871 if (!slots)
872 goto out_free;
Igor Mammedov74496132015-03-20 12:21:37 +0000873 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100874
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900875 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Xiao Guangrong28a37542011-11-24 19:04:35 +0800876 slot = id_to_memslot(slots, mem->slot);
877 slot->flags |= KVM_MEMSLOT_INVALID;
878
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100879 old_memslots = install_new_memslots(kvm, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200880
Alex Williamsone40f1932012-12-10 10:32:57 -0700881 /* slot was deleted or moved, clear iommu mapping */
882 kvm_iommu_unmap_pages(kvm, &old);
Marcelo Tosatti12d6e752012-08-24 15:54:58 -0300883 /* From this point no new shadow pages pointing to a deleted,
884 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200885 *
886 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +0800887 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
888 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200889 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300890 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100891
892 /*
893 * We can re-use the old_memslots from above, the only difference
894 * from the currently installed memslots is the invalid flag. This
895 * will get overwritten by update_memslots anyway.
896 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700897 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200898 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300899
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900900 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200901 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700902 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200903
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200904 /* actual memory is freed via old in kvm_free_physmem_slot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900905 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200906 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900907 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200908 }
909
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100910 update_memslots(slots, &new);
911 old_memslots = install_new_memslots(kvm, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900913 kvm_arch_commit_memory_region(kvm, mem, &old, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800914
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530915 kvm_free_physmem_slot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +0000916 kvfree(old_memslots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200917
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200918 /*
919 * IOMMU mapping: New slots need to be mapped. Old slots need to be
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 * un-mapped and re-mapped if their base changes. Since base change
921 * unmapping is handled above with slot deletion, mapping alone is
Sheng Yangf78e0e22007-10-29 09:40:42 +0800922 * needed here. Anything else the iommu might care about for existing
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 * slots (size changes, userspace addr changes and read-only flag
924 * changes) is disallowed above, so any other attribute changes getting
925 * here can be skipped.
Izik Eidus210c7c42007-10-24 23:52:57 +0200926 */
927 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Sheng Yangf78e0e22007-10-29 09:40:42 +0800928 r = kvm_iommu_map_pages(kvm, &new);
Yang Zhange0230e12013-10-24 09:56:39 +0800929 return r;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800930 }
931
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932 return 0;
933
934out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +0000935 kvfree(slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800936out_free:
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530937 kvm_free_physmem_slot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938out:
939 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200940}
941EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800942
943int kvm_set_memory_region(struct kvm *kvm,
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900944 struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800945{
946 int r;
947
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200948 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900949 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200950 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800951 return r;
952}
Izik Eidus210c7c42007-10-24 23:52:57 +0200953EXPORT_SYMBOL_GPL(kvm_set_memory_region);
954
Stephen Hemminger79408762013-12-29 12:12:29 -0800955static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
956 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +0200957{
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700958 if (mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +0200959 return -EINVAL;
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900960 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800961}
962
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800963int kvm_get_dirty_log(struct kvm *kvm,
964 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800965{
966 struct kvm_memory_slot *memslot;
967 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900968 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800969 unsigned long any = 0;
970
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700972 if (log->slot >= KVM_USER_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973 goto out;
974
Xiao Guangrong28a37542011-11-24 19:04:35 +0800975 memslot = id_to_memslot(kvm->memslots, log->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800976 r = -ENOENT;
977 if (!memslot->dirty_bitmap)
978 goto out;
979
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900980 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800981
Uri Lublincd1a4a92007-02-22 16:43:09 +0200982 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983 any = memslot->dirty_bitmap[i];
984
985 r = -EFAULT;
986 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
987 goto out;
988
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800989 if (any)
990 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991
992 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800993out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 return r;
995}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530996EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997
Mario Smarduchba0513b2015-01-15 15:58:53 -0800998#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
999/**
1000 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1001 * are dirty write protect them for next write.
1002 * @kvm: pointer to kvm instance
1003 * @log: slot id and address to which we copy the log
1004 * @is_dirty: flag set if any page is dirty
1005 *
1006 * We need to keep it in mind that VCPU threads can write to the bitmap
1007 * concurrently. So, to avoid losing track of dirty pages we keep the
1008 * following order:
1009 *
1010 * 1. Take a snapshot of the bit and clear it if needed.
1011 * 2. Write protect the corresponding page.
1012 * 3. Copy the snapshot to the userspace.
1013 * 4. Upon return caller flushes TLB's if needed.
1014 *
1015 * Between 2 and 4, the guest may write to the page using the remaining TLB
1016 * entry. This is not a problem because the page is reported dirty using
1017 * the snapshot taken before and step 4 ensures that writes done after
1018 * exiting to userspace will be logged for the next call.
1019 *
1020 */
1021int kvm_get_dirty_log_protect(struct kvm *kvm,
1022 struct kvm_dirty_log *log, bool *is_dirty)
1023{
1024 struct kvm_memory_slot *memslot;
1025 int r, i;
1026 unsigned long n;
1027 unsigned long *dirty_bitmap;
1028 unsigned long *dirty_bitmap_buffer;
1029
1030 r = -EINVAL;
1031 if (log->slot >= KVM_USER_MEM_SLOTS)
1032 goto out;
1033
1034 memslot = id_to_memslot(kvm->memslots, log->slot);
1035
1036 dirty_bitmap = memslot->dirty_bitmap;
1037 r = -ENOENT;
1038 if (!dirty_bitmap)
1039 goto out;
1040
1041 n = kvm_dirty_bitmap_bytes(memslot);
1042
1043 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1044 memset(dirty_bitmap_buffer, 0, n);
1045
1046 spin_lock(&kvm->mmu_lock);
1047 *is_dirty = false;
1048 for (i = 0; i < n / sizeof(long); i++) {
1049 unsigned long mask;
1050 gfn_t offset;
1051
1052 if (!dirty_bitmap[i])
1053 continue;
1054
1055 *is_dirty = true;
1056
1057 mask = xchg(&dirty_bitmap[i], 0);
1058 dirty_bitmap_buffer[i] = mask;
1059
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001060 if (mask) {
1061 offset = i * BITS_PER_LONG;
1062 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1063 offset, mask);
1064 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001065 }
1066
1067 spin_unlock(&kvm->mmu_lock);
1068
1069 r = -EFAULT;
1070 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
1071 goto out;
1072
1073 r = 0;
1074out:
1075 return r;
1076}
1077EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1078#endif
1079
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001080bool kvm_largepages_enabled(void)
1081{
1082 return largepages_enabled;
1083}
1084
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001085void kvm_disable_largepages(void)
1086{
1087 largepages_enabled = false;
1088}
1089EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1090
Gleb Natapov49c77542010-10-18 15:22:23 +02001091struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1092{
1093 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1094}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001095EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001096
Izik Eiduse0d62c72007-10-24 23:57:46 +02001097int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1098{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001099 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001100
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001101 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001102 memslot->flags & KVM_MEMSLOT_INVALID)
1103 return 0;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001104
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001105 return 1;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001106}
1107EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1108
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001109unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1110{
1111 struct vm_area_struct *vma;
1112 unsigned long addr, size;
1113
1114 size = PAGE_SIZE;
1115
1116 addr = gfn_to_hva(kvm, gfn);
1117 if (kvm_is_error_hva(addr))
1118 return PAGE_SIZE;
1119
1120 down_read(&current->mm->mmap_sem);
1121 vma = find_vma(current->mm, addr);
1122 if (!vma)
1123 goto out;
1124
1125 size = vma_kernel_pagesize(vma);
1126
1127out:
1128 up_read(&current->mm->mmap_sem);
1129
1130 return size;
1131}
1132
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001133static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1134{
1135 return slot->flags & KVM_MEM_READONLY;
1136}
1137
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001138static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1139 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001140{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001141 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001142 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001143
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001144 if (memslot_is_readonly(slot) && write)
1145 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001146
1147 if (nr_pages)
1148 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1149
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001150 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001151}
Xiao Guangrong48987782010-08-22 19:11:43 +08001152
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001153static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1154 gfn_t *nr_pages)
1155{
1156 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1157}
1158
1159unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001160 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001161{
1162 return gfn_to_hva_many(slot, gfn, NULL);
1163}
1164EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1165
Xiao Guangrong48987782010-08-22 19:11:43 +08001166unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1167{
Gleb Natapov49c77542010-10-18 15:22:23 +02001168 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001169}
Sheng Yang0d150292008-04-25 21:44:50 +08001170EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001171
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001172/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001173 * If writable is set to false, the hva returned by this function is only
1174 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001175 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001176unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1177 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001178{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001179 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1180
1181 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001182 *writable = !memslot_is_readonly(slot);
1183
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001184 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001185}
1186
Christoffer Dall64d83122014-08-19 12:15:00 +02001187unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1188{
1189 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1190
1191 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1192}
1193
Geoff Levand39369f72013-04-05 19:20:30 +00001194static int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001195 unsigned long start, int write, struct page **page)
1196{
1197 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1198
1199 if (write)
1200 flags |= FOLL_WRITE;
1201
1202 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1203}
1204
Huang Yingfafc3db2011-01-30 11:15:49 +08001205static inline int check_user_page_hwpoison(unsigned long addr)
1206{
1207 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1208
1209 rc = __get_user_pages(current, current->mm, addr, 1,
1210 flags, NULL, NULL, NULL);
1211 return rc == -EHWPOISON;
1212}
1213
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001214/*
1215 * The atomic path to get the writable pfn which will be stored in @pfn,
1216 * true indicates success, otherwise false is returned.
1217 */
1218static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
1219 bool write_fault, bool *writable, pfn_t *pfn)
1220{
1221 struct page *page[1];
1222 int npages;
1223
1224 if (!(async || atomic))
1225 return false;
1226
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001227 /*
1228 * Fast pin a writable pfn only if it is a write fault request
1229 * or the caller allows to map a writable pfn for a read fault
1230 * request.
1231 */
1232 if (!(write_fault || writable))
1233 return false;
1234
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001235 npages = __get_user_pages_fast(addr, 1, 1, page);
1236 if (npages == 1) {
1237 *pfn = page_to_pfn(page[0]);
1238
1239 if (writable)
1240 *writable = true;
1241 return true;
1242 }
1243
1244 return false;
1245}
1246
1247/*
1248 * The slow path to get the pfn of the specified host virtual address,
1249 * 1 indicates success, -errno is returned if error is detected.
1250 */
1251static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
1252 bool *writable, pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001253{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001254 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001255 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001256
1257 might_sleep();
1258
1259 if (writable)
1260 *writable = write_fault;
1261
1262 if (async) {
1263 down_read(&current->mm->mmap_sem);
1264 npages = get_user_page_nowait(current, current->mm,
1265 addr, write_fault, page);
1266 up_read(&current->mm->mmap_sem);
Andrea Arcangeli0664e572015-02-11 15:27:28 -08001267 } else
1268 npages = __get_user_pages_unlocked(current, current->mm, addr, 1,
1269 write_fault, 0, page,
1270 FOLL_TOUCH|FOLL_HWPOISON);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001271 if (npages != 1)
1272 return npages;
1273
1274 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001275 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001276 struct page *wpage[1];
1277
1278 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1279 if (npages == 1) {
1280 *writable = true;
1281 put_page(page[0]);
1282 page[0] = wpage[0];
1283 }
1284
1285 npages = 1;
1286 }
1287 *pfn = page_to_pfn(page[0]);
1288 return npages;
1289}
1290
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001291static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1292{
1293 if (unlikely(!(vma->vm_flags & VM_READ)))
1294 return false;
1295
1296 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1297 return false;
1298
1299 return true;
1300}
1301
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001302/*
1303 * Pin guest page in memory and return its pfn.
1304 * @addr: host virtual address which maps memory to the guest
1305 * @atomic: whether this function can sleep
1306 * @async: whether this function need to wait IO complete if the
1307 * host page is not in the memory
1308 * @write_fault: whether we should get a writable host page
1309 * @writable: whether it allows to map a writable host page for !@write_fault
1310 *
1311 * The function will map a writable host page for these two cases:
1312 * 1): @write_fault = true
1313 * 2): @write_fault = false && @writable, @writable will tell the caller
1314 * whether the mapping is writable.
1315 */
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001316static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
1317 bool write_fault, bool *writable)
1318{
1319 struct vm_area_struct *vma;
1320 pfn_t pfn = 0;
1321 int npages;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001322
Gleb Natapovaf585b92010-10-14 11:22:46 +02001323 /* we can do it either atomically or asynchronously, not both */
1324 BUG_ON(atomic && async);
1325
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001326 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1327 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001328
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001329 if (atomic)
1330 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001331
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001332 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1333 if (npages == 1)
1334 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001335
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001336 down_read(&current->mm->mmap_sem);
1337 if (npages == -EHWPOISON ||
1338 (!async && check_user_page_hwpoison(addr))) {
1339 pfn = KVM_PFN_ERR_HWPOISON;
1340 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001341 }
Izik Eidus539cb662007-11-11 22:05:04 +02001342
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001343 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001344
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001345 if (vma == NULL)
1346 pfn = KVM_PFN_ERR_FAULT;
1347 else if ((vma->vm_flags & VM_PFNMAP)) {
1348 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1349 vma->vm_pgoff;
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001350 BUG_ON(!kvm_is_reserved_pfn(pfn));
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001351 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001352 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001353 *async = true;
1354 pfn = KVM_PFN_ERR_FAULT;
1355 }
1356exit:
1357 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001358 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001359}
1360
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001361static pfn_t
1362__gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
1363 bool *async, bool write_fault, bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001364{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001365 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1366
1367 if (addr == KVM_HVA_ERR_RO_BAD)
1368 return KVM_PFN_ERR_RO_FAULT;
1369
1370 if (kvm_is_error_hva(addr))
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001371 return KVM_PFN_NOSLOT;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001372
1373 /* Do not map writable pfn in the readonly memslot. */
1374 if (writable && memslot_is_readonly(slot)) {
1375 *writable = false;
1376 writable = NULL;
1377 }
1378
1379 return hva_to_pfn(addr, atomic, async, write_fault,
1380 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001381}
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001382
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001383static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1384 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001385{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001386 struct kvm_memory_slot *slot;
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001387
Gleb Natapovaf585b92010-10-14 11:22:46 +02001388 if (async)
1389 *async = false;
1390
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001391 slot = gfn_to_memslot(kvm, gfn);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001392
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001393 return __gfn_to_pfn_memslot(slot, gfn, atomic, async, write_fault,
1394 writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001395}
1396
1397pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1398{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001399 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001400}
1401EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1402
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001403pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1404 bool write_fault, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02001405{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001406 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001407}
1408EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1409
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001410pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1411{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001412 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001413}
Anthony Liguori35149e22008-04-02 14:46:56 -05001414EXPORT_SYMBOL_GPL(gfn_to_pfn);
1415
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001416pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1417 bool *writable)
1418{
1419 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1420}
1421EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1422
Xiao Guangrongd5661042012-07-17 21:56:16 +08001423pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001424{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001425 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001426}
1427
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001428pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
1429{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001430 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001431}
1432EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1433
Xiao Guangrong48987782010-08-22 19:11:43 +08001434int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1435 int nr_pages)
1436{
1437 unsigned long addr;
1438 gfn_t entry;
1439
Gleb Natapov49c77542010-10-18 15:22:23 +02001440 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001441 if (kvm_is_error_hva(addr))
1442 return -1;
1443
1444 if (entry < nr_pages)
1445 return 0;
1446
1447 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1448}
1449EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1450
Xiao Guangronga2766322012-07-26 11:58:59 +08001451static struct page *kvm_pfn_to_page(pfn_t pfn)
1452{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001453 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001454 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001455
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001456 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001457 WARN_ON(1);
1458 return KVM_ERR_PTR_BAD_PAGE;
1459 }
1460
Xiao Guangronga2766322012-07-26 11:58:59 +08001461 return pfn_to_page(pfn);
1462}
1463
Anthony Liguori35149e22008-04-02 14:46:56 -05001464struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1465{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001466 pfn_t pfn;
1467
1468 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001469
Xiao Guangronga2766322012-07-26 11:58:59 +08001470 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001471}
1472EXPORT_SYMBOL_GPL(gfn_to_page);
1473
Izik Eidusb4231d62007-11-20 11:49:33 +02001474void kvm_release_page_clean(struct page *page)
1475{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001476 WARN_ON(is_error_page(page));
1477
Anthony Liguori35149e22008-04-02 14:46:56 -05001478 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001479}
1480EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1481
Anthony Liguori35149e22008-04-02 14:46:56 -05001482void kvm_release_pfn_clean(pfn_t pfn)
1483{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001484 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001485 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001486}
1487EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1488
Izik Eidusb4231d62007-11-20 11:49:33 +02001489void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001490{
Xiao Guangronga2766322012-07-26 11:58:59 +08001491 WARN_ON(is_error_page(page));
1492
Anthony Liguori35149e22008-04-02 14:46:56 -05001493 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001494}
Izik Eidusb4231d62007-11-20 11:49:33 +02001495EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001496
Stephen Hemminger79408762013-12-29 12:12:29 -08001497static void kvm_release_pfn_dirty(pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001498{
1499 kvm_set_pfn_dirty(pfn);
1500 kvm_release_pfn_clean(pfn);
1501}
Anthony Liguori35149e22008-04-02 14:46:56 -05001502
1503void kvm_set_pfn_dirty(pfn_t pfn)
1504{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001505 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001506 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001507
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001508 if (!PageReserved(page))
1509 SetPageDirty(page);
1510 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001511}
1512EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1513
1514void kvm_set_pfn_accessed(pfn_t pfn)
1515{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001516 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001517 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001518}
1519EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1520
1521void kvm_get_pfn(pfn_t pfn)
1522{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001523 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001524 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001525}
1526EXPORT_SYMBOL_GPL(kvm_get_pfn);
1527
Izik Eidus195aefd2007-10-01 22:14:18 +02001528static int next_segment(unsigned long len, int offset)
1529{
1530 if (len > PAGE_SIZE - offset)
1531 return PAGE_SIZE - offset;
1532 else
1533 return len;
1534}
1535
1536int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1537 int len)
1538{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001539 int r;
1540 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001541
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001542 addr = gfn_to_hva_prot(kvm, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001543 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001544 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001545 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001546 if (r)
1547 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001548 return 0;
1549}
1550EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1551
1552int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1553{
1554 gfn_t gfn = gpa >> PAGE_SHIFT;
1555 int seg;
1556 int offset = offset_in_page(gpa);
1557 int ret;
1558
1559 while ((seg = next_segment(len, offset)) != 0) {
1560 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1561 if (ret < 0)
1562 return ret;
1563 offset = 0;
1564 len -= seg;
1565 data += seg;
1566 ++gfn;
1567 }
1568 return 0;
1569}
1570EXPORT_SYMBOL_GPL(kvm_read_guest);
1571
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001572int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1573 unsigned long len)
1574{
1575 int r;
1576 unsigned long addr;
1577 gfn_t gfn = gpa >> PAGE_SHIFT;
1578 int offset = offset_in_page(gpa);
1579
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001580 addr = gfn_to_hva_prot(kvm, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001581 if (kvm_is_error_hva(addr))
1582 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001583 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001584 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001585 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001586 if (r)
1587 return -EFAULT;
1588 return 0;
1589}
1590EXPORT_SYMBOL(kvm_read_guest_atomic);
1591
Izik Eidus195aefd2007-10-01 22:14:18 +02001592int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1593 int offset, int len)
1594{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001595 int r;
1596 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001597
Izik Eiduse0506bc2007-11-11 22:10:22 +02001598 addr = gfn_to_hva(kvm, gfn);
1599 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001600 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001601 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001602 if (r)
1603 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001604 mark_page_dirty(kvm, gfn);
1605 return 0;
1606}
1607EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1608
1609int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1610 unsigned long len)
1611{
1612 gfn_t gfn = gpa >> PAGE_SHIFT;
1613 int seg;
1614 int offset = offset_in_page(gpa);
1615 int ret;
1616
1617 while ((seg = next_segment(len, offset)) != 0) {
1618 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1619 if (ret < 0)
1620 return ret;
1621 offset = 0;
1622 len -= seg;
1623 data += seg;
1624 ++gfn;
1625 }
1626 return 0;
1627}
Wincy Vanff651cb2014-12-11 08:52:58 +03001628EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001629
Gleb Natapov49c77542010-10-18 15:22:23 +02001630int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Andrew Honig8f964522013-03-29 09:35:21 -07001631 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001632{
1633 struct kvm_memslots *slots = kvm_memslots(kvm);
1634 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001635 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1636 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1637 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1638 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001639
1640 ghc->gpa = gpa;
1641 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001642 ghc->len = len;
1643 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001644 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1645 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001646 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001647 } else {
1648 /*
1649 * If the requested region crosses two memslots, we still
1650 * verify that the entire region is valid here.
1651 */
1652 while (start_gfn <= end_gfn) {
1653 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1654 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1655 &nr_pages_avail);
1656 if (kvm_is_error_hva(ghc->hva))
1657 return -EFAULT;
1658 start_gfn += nr_pages_avail;
1659 }
1660 /* Use the slow path for cross page reads and writes. */
1661 ghc->memslot = NULL;
1662 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001663 return 0;
1664}
1665EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1666
1667int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1668 void *data, unsigned long len)
1669{
1670 struct kvm_memslots *slots = kvm_memslots(kvm);
1671 int r;
1672
Andrew Honig8f964522013-03-29 09:35:21 -07001673 BUG_ON(len > ghc->len);
1674
Gleb Natapov49c77542010-10-18 15:22:23 +02001675 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001676 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1677
1678 if (unlikely(!ghc->memslot))
1679 return kvm_write_guest(kvm, ghc->gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001680
1681 if (kvm_is_error_hva(ghc->hva))
1682 return -EFAULT;
1683
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001684 r = __copy_to_user((void __user *)ghc->hva, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001685 if (r)
1686 return -EFAULT;
1687 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1688
1689 return 0;
1690}
1691EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1692
Gleb Natapove03b6442011-07-11 15:28:11 -04001693int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1694 void *data, unsigned long len)
1695{
1696 struct kvm_memslots *slots = kvm_memslots(kvm);
1697 int r;
1698
Andrew Honig8f964522013-03-29 09:35:21 -07001699 BUG_ON(len > ghc->len);
1700
Gleb Natapove03b6442011-07-11 15:28:11 -04001701 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001702 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1703
1704 if (unlikely(!ghc->memslot))
1705 return kvm_read_guest(kvm, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04001706
1707 if (kvm_is_error_hva(ghc->hva))
1708 return -EFAULT;
1709
1710 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1711 if (r)
1712 return -EFAULT;
1713
1714 return 0;
1715}
1716EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1717
Izik Eidus195aefd2007-10-01 22:14:18 +02001718int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1719{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01001720 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
1721
1722 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001723}
1724EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1725
1726int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1727{
1728 gfn_t gfn = gpa >> PAGE_SHIFT;
1729 int seg;
1730 int offset = offset_in_page(gpa);
1731 int ret;
1732
Kevin Mulveybfda0e82015-02-20 08:21:36 -05001733 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02001734 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1735 if (ret < 0)
1736 return ret;
1737 offset = 0;
1738 len -= seg;
1739 ++gfn;
1740 }
1741 return 0;
1742}
1743EXPORT_SYMBOL_GPL(kvm_clear_guest);
1744
Stephen Hemminger79408762013-12-29 12:12:29 -08001745static void mark_page_dirty_in_slot(struct kvm *kvm,
1746 struct kvm_memory_slot *memslot,
1747 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001748{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001749 if (memslot && memslot->dirty_bitmap) {
1750 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001751
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07001752 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001753 }
1754}
1755
Gleb Natapov49c77542010-10-18 15:22:23 +02001756void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1757{
1758 struct kvm_memory_slot *memslot;
1759
1760 memslot = gfn_to_memslot(kvm, gfn);
1761 mark_page_dirty_in_slot(kvm, memslot, gfn);
1762}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301763EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02001764
Paolo Bonzinif7819512015-02-04 18:20:58 +01001765static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
1766{
1767 if (kvm_arch_vcpu_runnable(vcpu)) {
1768 kvm_make_request(KVM_REQ_UNHALT, vcpu);
1769 return -EINTR;
1770 }
1771 if (kvm_cpu_has_pending_timer(vcpu))
1772 return -EINTR;
1773 if (signal_pending(current))
1774 return -EINTR;
1775
1776 return 0;
1777}
1778
Eddie Dongb6958ce2007-07-18 12:15:21 +03001779/*
1780 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1781 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001782void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001783{
Paolo Bonzinif7819512015-02-04 18:20:58 +01001784 ktime_t start, cur;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001785 DEFINE_WAIT(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01001786 bool waited = false;
1787
1788 start = cur = ktime_get();
1789 if (halt_poll_ns) {
1790 ktime_t stop = ktime_add_ns(ktime_get(), halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001791
Paolo Bonzinif7819512015-02-04 18:20:58 +01001792 do {
1793 /*
1794 * This sets KVM_REQ_UNHALT if an interrupt
1795 * arrives.
1796 */
1797 if (kvm_vcpu_check_block(vcpu) < 0) {
1798 ++vcpu->stat.halt_successful_poll;
1799 goto out;
1800 }
1801 cur = ktime_get();
1802 } while (single_task_running() && ktime_before(cur, stop));
1803 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03001804
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001805 for (;;) {
1806 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001807
Paolo Bonzinif7819512015-02-04 18:20:58 +01001808 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001809 break;
1810
Paolo Bonzinif7819512015-02-04 18:20:58 +01001811 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001812 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001813 }
1814
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001815 finish_wait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01001816 cur = ktime_get();
1817
1818out:
1819 trace_kvm_vcpu_wakeup(ktime_to_ns(cur) - ktime_to_ns(start), waited);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001820}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301821EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001822
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001823#ifndef CONFIG_S390
Christoffer Dallb6d33832012-03-08 16:44:24 -05001824/*
1825 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1826 */
1827void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1828{
1829 int me;
1830 int cpu = vcpu->cpu;
1831 wait_queue_head_t *wqp;
1832
1833 wqp = kvm_arch_vcpu_wq(vcpu);
1834 if (waitqueue_active(wqp)) {
1835 wake_up_interruptible(wqp);
1836 ++vcpu->stat.halt_wakeup;
1837 }
1838
1839 me = get_cpu();
1840 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1841 if (kvm_arch_vcpu_should_kick(vcpu))
1842 smp_send_reschedule(cpu);
1843 put_cpu();
1844}
Yang Zhanga20ed542013-04-11 19:25:15 +08001845EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001846#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05001847
Dan Carpenterfa933842014-05-23 13:20:42 +03001848int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02001849{
1850 struct pid *pid;
1851 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03001852 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001853
1854 rcu_read_lock();
1855 pid = rcu_dereference(target->pid);
1856 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10001857 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001858 rcu_read_unlock();
1859 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301860 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301861 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001862 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301863
1864 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001865}
1866EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
1867
Raghavendra K T06e48c52012-07-19 15:17:52 +05301868/*
1869 * Helper that checks whether a VCPU is eligible for directed yield.
1870 * Most eligible candidate to yield is decided by following heuristics:
1871 *
1872 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
1873 * (preempted lock holder), indicated by @in_spin_loop.
1874 * Set at the beiginning and cleared at the end of interception/PLE handler.
1875 *
1876 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
1877 * chance last time (mostly it has become eligible now since we have probably
1878 * yielded to lockholder in last iteration. This is done by toggling
1879 * @dy_eligible each time a VCPU checked for eligibility.)
1880 *
1881 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
1882 * to preempted lock-holder could result in wrong VCPU selection and CPU
1883 * burning. Giving priority for a potential lock-holder increases lock
1884 * progress.
1885 *
1886 * Since algorithm is based on heuristics, accessing another VCPU data without
1887 * locking does not harm. It may result in trying to yield to same VCPU, fail
1888 * and continue with next VCPU and so on.
1889 */
Stephen Hemminger79408762013-12-29 12:12:29 -08001890static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05301891{
Scott Wood4a55dd72014-01-09 18:43:16 -06001892#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05301893 bool eligible;
1894
1895 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02001896 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301897
1898 if (vcpu->spin_loop.in_spin_loop)
1899 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
1900
1901 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06001902#else
1903 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301904#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06001905}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301906
Rik van Riel217ece62011-02-01 09:53:28 -05001907void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001908{
Rik van Riel217ece62011-02-01 09:53:28 -05001909 struct kvm *kvm = me->kvm;
1910 struct kvm_vcpu *vcpu;
1911 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
1912 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301913 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05001914 int pass;
1915 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001916
Raghavendra K T4c088492012-07-18 19:07:46 +05301917 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05001918 /*
1919 * We boost the priority of a VCPU that is runnable but not
1920 * currently running, because it got preempted by something
1921 * else and called schedule in __vcpu_run. Hopefully that
1922 * VCPU is holding the lock that we need and will release it.
1923 * We approximate round-robin by starting at the last boosted VCPU.
1924 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301925 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05001926 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04001927 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05001928 i = last_boosted_vcpu;
1929 continue;
1930 } else if (pass && i > last_boosted_vcpu)
1931 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05301932 if (!ACCESS_ONCE(vcpu->preempted))
1933 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05001934 if (vcpu == me)
1935 continue;
Michael Mueller98f4a142014-02-26 16:14:18 +01001936 if (waitqueue_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05001937 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301938 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
1939 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301940
1941 yielded = kvm_vcpu_yield_to(vcpu);
1942 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05001943 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05001944 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301945 } else if (yielded < 0) {
1946 try--;
1947 if (!try)
1948 break;
Rik van Riel217ece62011-02-01 09:53:28 -05001949 }
Rik van Riel217ece62011-02-01 09:53:28 -05001950 }
1951 }
Raghavendra K T4c088492012-07-18 19:07:46 +05301952 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05301953
1954 /* Ensure vcpu is not eligible during next spinloop */
1955 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001956}
1957EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1958
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001959static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001960{
1961 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001962 struct page *page;
1963
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001964 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001965 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001966#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001967 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001968 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001969#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001970#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1971 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1972 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1973#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001974 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01001975 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001976 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001977 vmf->page = page;
1978 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001979}
1980
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001981static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001982 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001983};
1984
1985static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1986{
1987 vma->vm_ops = &kvm_vcpu_vm_ops;
1988 return 0;
1989}
1990
Avi Kivitybccf2152007-02-21 18:04:26 +02001991static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1992{
1993 struct kvm_vcpu *vcpu = filp->private_data;
1994
Al Viro66c0b392008-04-19 20:33:56 +01001995 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001996 return 0;
1997}
1998
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001999static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002000 .release = kvm_vcpu_release,
2001 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002002#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002003 .compat_ioctl = kvm_vcpu_compat_ioctl,
2004#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002005 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002006 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02002007};
2008
2009/*
2010 * Allocates an inode for the vcpu.
2011 */
2012static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2013{
Yann Droneaud24009b02013-08-24 22:14:07 +02002014 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002015}
2016
Avi Kivityc5ea7662007-02-20 18:41:05 +02002017/*
2018 * Creates some virtual cpus. Good luck creating more than one.
2019 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002020static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002021{
2022 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002023 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002024
Andy Honig338c7db2013-11-18 16:09:22 -08002025 if (id >= KVM_MAX_VCPUS)
2026 return -EINVAL;
2027
Gleb Natapov73880c82009-06-09 15:56:28 +03002028 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002029 if (IS_ERR(vcpu))
2030 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002031
Avi Kivity15ad7142007-07-11 18:17:21 +03002032 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2033
Avi Kivity26e52152007-11-20 15:30:24 +02002034 r = kvm_arch_vcpu_setup(vcpu);
2035 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002036 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002037
Shaohua Li11ec2802007-07-23 14:51:37 +08002038 mutex_lock(&kvm->lock);
Avi Kivity3e515702012-03-05 14:23:29 +02002039 if (!kvm_vcpu_compatible(vcpu)) {
2040 r = -EINVAL;
2041 goto unlock_vcpu_destroy;
2042 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002043 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
2044 r = -EINVAL;
Jan Kiszkad7805922011-05-23 10:33:05 +02002045 goto unlock_vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002046 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002047
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002048 kvm_for_each_vcpu(r, v, kvm)
2049 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03002050 r = -EEXIST;
Jan Kiszkad7805922011-05-23 10:33:05 +02002051 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002052 }
2053
2054 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002055
2056 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002057 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002058 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002059 if (r < 0) {
2060 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002061 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002062 }
2063
2064 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
2065 smp_wmb();
2066 atomic_inc(&kvm->online_vcpus);
2067
Gleb Natapov73880c82009-06-09 15:56:28 +03002068 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002069 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002070 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002071
Jan Kiszkad7805922011-05-23 10:33:05 +02002072unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002073 mutex_unlock(&kvm->lock);
Jan Kiszkad7805922011-05-23 10:33:05 +02002074vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002075 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002076 return r;
2077}
2078
Avi Kivity1961d272007-03-05 19:46:05 +02002079static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2080{
2081 if (sigset) {
2082 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2083 vcpu->sigset_active = 1;
2084 vcpu->sigset = *sigset;
2085 } else
2086 vcpu->sigset_active = 0;
2087 return 0;
2088}
2089
Avi Kivitybccf2152007-02-21 18:04:26 +02002090static long kvm_vcpu_ioctl(struct file *filp,
2091 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002092{
Avi Kivitybccf2152007-02-21 18:04:26 +02002093 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002094 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002095 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002096 struct kvm_fpu *fpu = NULL;
2097 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002098
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002099 if (vcpu->kvm->mm != current->mm)
2100 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002101
David Matlack2ea75be2014-09-19 16:03:25 -07002102 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2103 return -EINVAL;
2104
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002105#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002106 /*
2107 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2108 * so vcpu_load() would break it.
2109 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002110 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002111 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2112#endif
2113
2114
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002115 r = vcpu_load(vcpu);
2116 if (r)
2117 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002119 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002120 r = -EINVAL;
2121 if (arg)
2122 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002123 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2124 /* The thread running this VCPU changed. */
2125 struct pid *oldpid = vcpu->pid;
2126 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002127
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002128 rcu_assign_pointer(vcpu->pid, newpid);
2129 if (oldpid)
2130 synchronize_rcu();
2131 put_pid(oldpid);
2132 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002133 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002134 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002135 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002136 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002137 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002138
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002139 r = -ENOMEM;
2140 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2141 if (!kvm_regs)
2142 goto out;
2143 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002144 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002145 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002146 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002147 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2148 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002149 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002150out_free1:
2151 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002152 break;
2153 }
2154 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002155 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002156
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002157 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002158 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2159 if (IS_ERR(kvm_regs)) {
2160 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002161 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002162 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002163 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002164 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002165 break;
2166 }
2167 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002168 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2169 r = -ENOMEM;
2170 if (!kvm_sregs)
2171 goto out;
2172 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002173 if (r)
2174 goto out;
2175 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002176 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002177 goto out;
2178 r = 0;
2179 break;
2180 }
2181 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002182 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2183 if (IS_ERR(kvm_sregs)) {
2184 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002185 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002186 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002187 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002188 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002189 break;
2190 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002191 case KVM_GET_MP_STATE: {
2192 struct kvm_mp_state mp_state;
2193
2194 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2195 if (r)
2196 goto out;
2197 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002198 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002199 goto out;
2200 r = 0;
2201 break;
2202 }
2203 case KVM_SET_MP_STATE: {
2204 struct kvm_mp_state mp_state;
2205
2206 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002207 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002208 goto out;
2209 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002210 break;
2211 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002212 case KVM_TRANSLATE: {
2213 struct kvm_translation tr;
2214
2215 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002216 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002217 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002218 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002219 if (r)
2220 goto out;
2221 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002222 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002223 goto out;
2224 r = 0;
2225 break;
2226 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002227 case KVM_SET_GUEST_DEBUG: {
2228 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002229
2230 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002231 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002232 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002233 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002234 break;
2235 }
Avi Kivity1961d272007-03-05 19:46:05 +02002236 case KVM_SET_SIGNAL_MASK: {
2237 struct kvm_signal_mask __user *sigmask_arg = argp;
2238 struct kvm_signal_mask kvm_sigmask;
2239 sigset_t sigset, *p;
2240
2241 p = NULL;
2242 if (argp) {
2243 r = -EFAULT;
2244 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002245 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002246 goto out;
2247 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002248 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002249 goto out;
2250 r = -EFAULT;
2251 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002252 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002253 goto out;
2254 p = &sigset;
2255 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002256 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002257 break;
2258 }
Avi Kivityb8836732007-04-01 16:34:31 +03002259 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002260 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2261 r = -ENOMEM;
2262 if (!fpu)
2263 goto out;
2264 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002265 if (r)
2266 goto out;
2267 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002268 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002269 goto out;
2270 r = 0;
2271 break;
2272 }
2273 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002274 fpu = memdup_user(argp, sizeof(*fpu));
2275 if (IS_ERR(fpu)) {
2276 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002277 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002278 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002279 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002280 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002281 break;
2282 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002283 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002284 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002285 }
2286out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002287 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002288 kfree(fpu);
2289 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002290 return r;
2291}
2292
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002293#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002294static long kvm_vcpu_compat_ioctl(struct file *filp,
2295 unsigned int ioctl, unsigned long arg)
2296{
2297 struct kvm_vcpu *vcpu = filp->private_data;
2298 void __user *argp = compat_ptr(arg);
2299 int r;
2300
2301 if (vcpu->kvm->mm != current->mm)
2302 return -EIO;
2303
2304 switch (ioctl) {
2305 case KVM_SET_SIGNAL_MASK: {
2306 struct kvm_signal_mask __user *sigmask_arg = argp;
2307 struct kvm_signal_mask kvm_sigmask;
2308 compat_sigset_t csigset;
2309 sigset_t sigset;
2310
2311 if (argp) {
2312 r = -EFAULT;
2313 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002314 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002315 goto out;
2316 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002317 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002318 goto out;
2319 r = -EFAULT;
2320 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002321 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002322 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002323 sigset_from_compat(&sigset, &csigset);
2324 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2325 } else
2326 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002327 break;
2328 }
2329 default:
2330 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2331 }
2332
2333out:
2334 return r;
2335}
2336#endif
2337
Scott Wood852b6d52013-04-12 14:08:42 +00002338static int kvm_device_ioctl_attr(struct kvm_device *dev,
2339 int (*accessor)(struct kvm_device *dev,
2340 struct kvm_device_attr *attr),
2341 unsigned long arg)
2342{
2343 struct kvm_device_attr attr;
2344
2345 if (!accessor)
2346 return -EPERM;
2347
2348 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2349 return -EFAULT;
2350
2351 return accessor(dev, &attr);
2352}
2353
2354static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2355 unsigned long arg)
2356{
2357 struct kvm_device *dev = filp->private_data;
2358
2359 switch (ioctl) {
2360 case KVM_SET_DEVICE_ATTR:
2361 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2362 case KVM_GET_DEVICE_ATTR:
2363 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2364 case KVM_HAS_DEVICE_ATTR:
2365 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2366 default:
2367 if (dev->ops->ioctl)
2368 return dev->ops->ioctl(dev, ioctl, arg);
2369
2370 return -ENOTTY;
2371 }
2372}
2373
Scott Wood852b6d52013-04-12 14:08:42 +00002374static int kvm_device_release(struct inode *inode, struct file *filp)
2375{
2376 struct kvm_device *dev = filp->private_data;
2377 struct kvm *kvm = dev->kvm;
2378
Scott Wood852b6d52013-04-12 14:08:42 +00002379 kvm_put_kvm(kvm);
2380 return 0;
2381}
2382
2383static const struct file_operations kvm_device_fops = {
2384 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002385#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002386 .compat_ioctl = kvm_device_ioctl,
2387#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002388 .release = kvm_device_release,
2389};
2390
2391struct kvm_device *kvm_device_from_filp(struct file *filp)
2392{
2393 if (filp->f_op != &kvm_device_fops)
2394 return NULL;
2395
2396 return filp->private_data;
2397}
2398
Will Deacond60eacb2014-09-02 10:27:33 +01002399static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2400#ifdef CONFIG_KVM_MPIC
2401 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2402 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2403#endif
2404
2405#ifdef CONFIG_KVM_XICS
2406 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2407#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002408};
2409
2410int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2411{
2412 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2413 return -ENOSPC;
2414
2415 if (kvm_device_ops_table[type] != NULL)
2416 return -EEXIST;
2417
2418 kvm_device_ops_table[type] = ops;
2419 return 0;
2420}
2421
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002422void kvm_unregister_device_ops(u32 type)
2423{
2424 if (kvm_device_ops_table[type] != NULL)
2425 kvm_device_ops_table[type] = NULL;
2426}
2427
Scott Wood852b6d52013-04-12 14:08:42 +00002428static int kvm_ioctl_create_device(struct kvm *kvm,
2429 struct kvm_create_device *cd)
2430{
2431 struct kvm_device_ops *ops = NULL;
2432 struct kvm_device *dev;
2433 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2434 int ret;
2435
Will Deacond60eacb2014-09-02 10:27:33 +01002436 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002437 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002438
2439 ops = kvm_device_ops_table[cd->type];
2440 if (ops == NULL)
2441 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002442
2443 if (test)
2444 return 0;
2445
2446 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2447 if (!dev)
2448 return -ENOMEM;
2449
2450 dev->ops = ops;
2451 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002452
2453 ret = ops->create(dev, cd->type);
2454 if (ret < 0) {
2455 kfree(dev);
2456 return ret;
2457 }
2458
Yann Droneaud24009b02013-08-24 22:14:07 +02002459 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002460 if (ret < 0) {
2461 ops->destroy(dev);
2462 return ret;
2463 }
2464
Scott Wood07f0a7b2013-04-25 14:11:23 +00002465 list_add(&dev->vm_node, &kvm->devices);
Scott Wood852b6d52013-04-12 14:08:42 +00002466 kvm_get_kvm(kvm);
2467 cd->fd = ret;
2468 return 0;
2469}
2470
Alexander Graf92b591a2014-07-14 18:33:08 +02002471static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2472{
2473 switch (arg) {
2474 case KVM_CAP_USER_MEMORY:
2475 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2476 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
2477#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2478 case KVM_CAP_SET_BOOT_CPU_ID:
2479#endif
2480 case KVM_CAP_INTERNAL_ERROR_DATA:
2481#ifdef CONFIG_HAVE_KVM_MSI
2482 case KVM_CAP_SIGNAL_MSI:
2483#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002484#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002485 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002486 case KVM_CAP_IRQFD_RESAMPLE:
2487#endif
2488 case KVM_CAP_CHECK_EXTENSION_VM:
2489 return 1;
2490#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2491 case KVM_CAP_IRQ_ROUTING:
2492 return KVM_MAX_IRQ_ROUTES;
2493#endif
2494 default:
2495 break;
2496 }
2497 return kvm_vm_ioctl_check_extension(kvm, arg);
2498}
2499
Avi Kivitybccf2152007-02-21 18:04:26 +02002500static long kvm_vm_ioctl(struct file *filp,
2501 unsigned int ioctl, unsigned long arg)
2502{
2503 struct kvm *kvm = filp->private_data;
2504 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002505 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002506
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002507 if (kvm->mm != current->mm)
2508 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002509 switch (ioctl) {
2510 case KVM_CREATE_VCPU:
2511 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002512 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002513 case KVM_SET_USER_MEMORY_REGION: {
2514 struct kvm_userspace_memory_region kvm_userspace_mem;
2515
2516 r = -EFAULT;
2517 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002518 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002519 goto out;
2520
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002521 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522 break;
2523 }
2524 case KVM_GET_DIRTY_LOG: {
2525 struct kvm_dirty_log log;
2526
2527 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002528 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002530 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002531 break;
2532 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002533#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2534 case KVM_REGISTER_COALESCED_MMIO: {
2535 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002536
Laurent Vivier5f94c172008-05-30 16:05:54 +02002537 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002538 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002539 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002540 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002541 break;
2542 }
2543 case KVM_UNREGISTER_COALESCED_MMIO: {
2544 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002545
Laurent Vivier5f94c172008-05-30 16:05:54 +02002546 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002547 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002548 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002549 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002550 break;
2551 }
2552#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002553 case KVM_IRQFD: {
2554 struct kvm_irqfd data;
2555
2556 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002557 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002558 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06002559 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002560 break;
2561 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002562 case KVM_IOEVENTFD: {
2563 struct kvm_ioeventfd data;
2564
2565 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002566 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002567 goto out;
2568 r = kvm_ioeventfd(kvm, &data);
2569 break;
2570 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002571#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2572 case KVM_SET_BOOT_CPU_ID:
2573 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002574 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002575 if (atomic_read(&kvm->online_vcpus) != 0)
2576 r = -EBUSY;
2577 else
2578 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002579 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002580 break;
2581#endif
Jan Kiszka07975ad2012-03-29 21:14:12 +02002582#ifdef CONFIG_HAVE_KVM_MSI
2583 case KVM_SIGNAL_MSI: {
2584 struct kvm_msi msi;
2585
2586 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002587 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02002588 goto out;
2589 r = kvm_send_userspace_msi(kvm, &msi);
2590 break;
2591 }
2592#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002593#ifdef __KVM_HAVE_IRQ_LINE
2594 case KVM_IRQ_LINE_STATUS:
2595 case KVM_IRQ_LINE: {
2596 struct kvm_irq_level irq_event;
2597
2598 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002599 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002600 goto out;
2601
Yang Zhangaa2fbe62013-04-11 19:21:40 +08002602 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
2603 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002604 if (r)
2605 goto out;
2606
2607 r = -EFAULT;
2608 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08002609 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002610 goto out;
2611 }
2612
2613 r = 0;
2614 break;
2615 }
2616#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02002617#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2618 case KVM_SET_GSI_ROUTING: {
2619 struct kvm_irq_routing routing;
2620 struct kvm_irq_routing __user *urouting;
2621 struct kvm_irq_routing_entry *entries;
2622
2623 r = -EFAULT;
2624 if (copy_from_user(&routing, argp, sizeof(routing)))
2625 goto out;
2626 r = -EINVAL;
Xiubo Li31651592016-06-15 18:00:33 +08002627 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02002628 goto out;
2629 if (routing.flags)
2630 goto out;
2631 r = -ENOMEM;
2632 entries = vmalloc(routing.nr * sizeof(*entries));
2633 if (!entries)
2634 goto out;
2635 r = -EFAULT;
2636 urouting = argp;
2637 if (copy_from_user(entries, urouting->entries,
2638 routing.nr * sizeof(*entries)))
2639 goto out_free_irq_routing;
2640 r = kvm_set_irq_routing(kvm, entries, routing.nr,
2641 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08002642out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02002643 vfree(entries);
2644 break;
2645 }
2646#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00002647 case KVM_CREATE_DEVICE: {
2648 struct kvm_create_device cd;
2649
2650 r = -EFAULT;
2651 if (copy_from_user(&cd, argp, sizeof(cd)))
2652 goto out;
2653
2654 r = kvm_ioctl_create_device(kvm, &cd);
2655 if (r)
2656 goto out;
2657
2658 r = -EFAULT;
2659 if (copy_to_user(argp, &cd, sizeof(cd)))
2660 goto out;
2661
2662 r = 0;
2663 break;
2664 }
Alexander Graf92b591a2014-07-14 18:33:08 +02002665 case KVM_CHECK_EXTENSION:
2666 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
2667 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02002668 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002669 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002670 }
2671out:
2672 return r;
2673}
2674
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002675#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002676struct compat_kvm_dirty_log {
2677 __u32 slot;
2678 __u32 padding1;
2679 union {
2680 compat_uptr_t dirty_bitmap; /* one bit per page */
2681 __u64 padding2;
2682 };
2683};
2684
2685static long kvm_vm_compat_ioctl(struct file *filp,
2686 unsigned int ioctl, unsigned long arg)
2687{
2688 struct kvm *kvm = filp->private_data;
2689 int r;
2690
2691 if (kvm->mm != current->mm)
2692 return -EIO;
2693 switch (ioctl) {
2694 case KVM_GET_DIRTY_LOG: {
2695 struct compat_kvm_dirty_log compat_log;
2696 struct kvm_dirty_log log;
2697
2698 r = -EFAULT;
2699 if (copy_from_user(&compat_log, (void __user *)arg,
2700 sizeof(compat_log)))
2701 goto out;
2702 log.slot = compat_log.slot;
2703 log.padding1 = compat_log.padding1;
2704 log.padding2 = compat_log.padding2;
2705 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2706
2707 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002708 break;
2709 }
2710 default:
2711 r = kvm_vm_ioctl(filp, ioctl, arg);
2712 }
2713
2714out:
2715 return r;
2716}
2717#endif
2718
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002719static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002720 .release = kvm_vm_release,
2721 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002722#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002723 .compat_ioctl = kvm_vm_compat_ioctl,
2724#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02002725 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002726};
2727
Carsten Ottee08b9632012-01-04 10:25:20 +01002728static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02002729{
Heiko Carstensaac87632010-10-27 17:22:10 +02002730 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002731 struct kvm *kvm;
2732
Carsten Ottee08b9632012-01-04 10:25:20 +01002733 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04002734 if (IS_ERR(kvm))
2735 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002736#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2737 r = kvm_coalesced_mmio_init(kvm);
2738 if (r < 0) {
2739 kvm_put_kvm(kvm);
2740 return r;
2741 }
2742#endif
Yann Droneaud24009b02013-08-24 22:14:07 +02002743 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR | O_CLOEXEC);
Heiko Carstensaac87632010-10-27 17:22:10 +02002744 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002745 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002746
Heiko Carstensaac87632010-10-27 17:22:10 +02002747 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002748}
2749
2750static long kvm_dev_ioctl(struct file *filp,
2751 unsigned int ioctl, unsigned long arg)
2752{
Avi Kivity07c45a32007-03-07 13:05:38 +02002753 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002754
2755 switch (ioctl) {
2756 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002757 if (arg)
2758 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002759 r = KVM_API_VERSION;
2760 break;
2761 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01002762 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002763 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002764 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02002765 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002766 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002767 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02002768 if (arg)
2769 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002770 r = PAGE_SIZE; /* struct kvm_run */
2771#ifdef CONFIG_X86
2772 r += PAGE_SIZE; /* pio data page */
2773#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002774#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2775 r += PAGE_SIZE; /* coalesced mmio ring page */
2776#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002777 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002778 case KVM_TRACE_ENABLE:
2779 case KVM_TRACE_PAUSE:
2780 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002781 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002782 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002783 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002784 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002785 }
2786out:
2787 return r;
2788}
2789
Avi Kivity6aa8b732006-12-10 02:21:36 -08002790static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002791 .unlocked_ioctl = kvm_dev_ioctl,
2792 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002793 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002794};
2795
2796static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002797 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002798 "kvm",
2799 &kvm_chardev_ops,
2800};
2801
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002802static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002803{
2804 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002805 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002806
Rusty Russell7f59f492008-12-07 21:25:45 +10302807 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002808 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002809
Rusty Russell7f59f492008-12-07 21:25:45 +10302810 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002811
Radim Krčmář13a34e02014-08-28 15:13:03 +02002812 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02002813
2814 if (r) {
2815 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2816 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08002817 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02002818 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002819}
2820
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002821static void hardware_enable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002822{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002823 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002824 if (kvm_usage_count)
2825 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002826 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002827}
2828
2829static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002830{
2831 int cpu = raw_smp_processor_id();
2832
Rusty Russell7f59f492008-12-07 21:25:45 +10302833 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002834 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302835 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02002836 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03002837}
2838
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002839static void hardware_disable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002840{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002841 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002842 if (kvm_usage_count)
2843 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002844 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002845}
2846
Alexander Graf10474ae2009-09-15 11:37:46 +02002847static void hardware_disable_all_nolock(void)
2848{
2849 BUG_ON(!kvm_usage_count);
2850
2851 kvm_usage_count--;
2852 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002853 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002854}
2855
2856static void hardware_disable_all(void)
2857{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002858 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002859 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002860 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002861}
2862
2863static int hardware_enable_all(void)
2864{
2865 int r = 0;
2866
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002867 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002868
2869 kvm_usage_count++;
2870 if (kvm_usage_count == 1) {
2871 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002872 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002873
2874 if (atomic_read(&hardware_enable_failed)) {
2875 hardware_disable_all_nolock();
2876 r = -EBUSY;
2877 }
2878 }
2879
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002880 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002881
2882 return r;
2883}
2884
Avi Kivity774c47f2007-02-12 00:54:47 -08002885static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2886 void *v)
2887{
2888 int cpu = (long)v;
2889
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002890 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002891 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002892 case CPU_DYING:
Xiubo Li1170adc2015-02-26 14:58:26 +08002893 pr_info("kvm: disabling virtualization on CPU%d\n",
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002894 cpu);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002895 hardware_disable();
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002896 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002897 case CPU_STARTING:
Xiubo Li1170adc2015-02-26 14:58:26 +08002898 pr_info("kvm: enabling virtualization on CPU%d\n",
Jeremy Katz43934a32007-02-19 14:37:46 +02002899 cpu);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002900 hardware_enable();
Avi Kivity774c47f2007-02-12 00:54:47 -08002901 break;
2902 }
2903 return NOTIFY_OK;
2904}
2905
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002906static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002907 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002908{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002909 /*
2910 * Some (well, at least mine) BIOSes hang on reboot if
2911 * in vmx root mode.
2912 *
2913 * And Intel TXT required VMX off for all cpu when system shutdown.
2914 */
Xiubo Li1170adc2015-02-26 14:58:26 +08002915 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08002916 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002917 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002918 return NOTIFY_OK;
2919}
2920
2921static struct notifier_block kvm_reboot_notifier = {
2922 .notifier_call = kvm_reboot,
2923 .priority = 0,
2924};
2925
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002926static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002927{
2928 int i;
2929
2930 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03002931 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002932
2933 kvm_iodevice_destructor(pos);
2934 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002935 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002936}
2937
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002938static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08002939 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03002940{
Jason Wang989bbb32015-09-15 14:41:57 +08002941 gpa_t addr1 = r1->addr;
2942 gpa_t addr2 = r2->addr;
2943
2944 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03002945 return -1;
Jason Wang989bbb32015-09-15 14:41:57 +08002946
2947 /* If r2->len == 0, match the exact address. If r2->len != 0,
2948 * accept any overlapping write. Any order is acceptable for
2949 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
2950 * we process all of them.
2951 */
2952 if (r2->len) {
2953 addr1 += r1->len;
2954 addr2 += r2->len;
2955 }
2956
2957 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03002958 return 1;
Jason Wang989bbb32015-09-15 14:41:57 +08002959
Sasha Levin743eeb02011-07-27 16:00:48 +03002960 return 0;
2961}
2962
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02002963static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
2964{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002965 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02002966}
2967
Geoff Levand39369f72013-04-05 19:20:30 +00002968static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03002969 gpa_t addr, int len)
2970{
Sasha Levin743eeb02011-07-27 16:00:48 +03002971 bus->range[bus->dev_count++] = (struct kvm_io_range) {
2972 .addr = addr,
2973 .len = len,
2974 .dev = dev,
2975 };
2976
2977 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
2978 kvm_io_bus_sort_cmp, NULL);
2979
2980 return 0;
2981}
2982
Geoff Levand39369f72013-04-05 19:20:30 +00002983static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03002984 gpa_t addr, int len)
2985{
2986 struct kvm_io_range *range, key;
2987 int off;
2988
2989 key = (struct kvm_io_range) {
2990 .addr = addr,
2991 .len = len,
2992 };
2993
2994 range = bsearch(&key, bus->range, bus->dev_count,
2995 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
2996 if (range == NULL)
2997 return -ENOENT;
2998
2999 off = range - bus->range;
3000
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003001 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003002 off--;
3003
3004 return off;
3005}
3006
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003007static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003008 struct kvm_io_range *range, const void *val)
3009{
3010 int idx;
3011
3012 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3013 if (idx < 0)
3014 return -EOPNOTSUPP;
3015
3016 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003017 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003018 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003019 range->len, val))
3020 return idx;
3021 idx++;
3022 }
3023
3024 return -EOPNOTSUPP;
3025}
3026
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003027/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003028int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003029 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003030{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003031 struct kvm_io_bus *bus;
3032 struct kvm_io_range range;
3033 int r;
3034
3035 range = (struct kvm_io_range) {
3036 .addr = addr,
3037 .len = len,
3038 };
3039
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003040 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3041 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003042 return r < 0 ? r : 0;
3043}
3044
3045/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003046int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3047 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003048{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003049 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003050 struct kvm_io_range range;
3051
3052 range = (struct kvm_io_range) {
3053 .addr = addr,
3054 .len = len,
3055 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003056
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003057 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003058
3059 /* First try the device referenced by cookie. */
3060 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003061 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003062 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003063 val))
3064 return cookie;
3065
3066 /*
3067 * cookie contained garbage; fall back to search and return the
3068 * correct cookie value.
3069 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003070 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003071}
3072
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003073static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3074 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003075{
3076 int idx;
3077
3078 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003079 if (idx < 0)
3080 return -EOPNOTSUPP;
3081
3082 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003083 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003084 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003085 range->len, val))
3086 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003087 idx++;
3088 }
3089
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003090 return -EOPNOTSUPP;
3091}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003092EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003093
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003094/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003095int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003096 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003097{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003098 struct kvm_io_bus *bus;
3099 struct kvm_io_range range;
3100 int r;
3101
3102 range = (struct kvm_io_range) {
3103 .addr = addr,
3104 .len = len,
3105 };
3106
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003107 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3108 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003109 return r < 0 ? r : 0;
3110}
3111
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003112
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003113/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003114int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3115 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003116{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003117 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003118
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003119 bus = kvm->buses[bus_idx];
Amos Kong6ea34c92013-05-25 06:44:15 +08003120 /* exclude ioeventfd which is limited by maximum fd */
3121 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003122 return -ENOSPC;
3123
Amos Konga13007162012-03-09 12:17:32 +08003124 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
3125 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003126 if (!new_bus)
3127 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003128 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3129 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003130 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003131 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3132 synchronize_srcu_expedited(&kvm->srcu);
3133 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003134
3135 return 0;
3136}
3137
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003138/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003139int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3140 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003141{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003142 int i, r;
3143 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003144
Sasha Levincdfca7b2011-12-04 19:36:28 +02003145 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003146 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08003147 for (i = 0; i < bus->dev_count; i++)
3148 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003149 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003150 break;
3151 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003152
Amos Konga13007162012-03-09 12:17:32 +08003153 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003154 return r;
Amos Konga13007162012-03-09 12:17:32 +08003155
3156 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
3157 sizeof(struct kvm_io_range)), GFP_KERNEL);
3158 if (!new_bus)
3159 return -ENOMEM;
3160
3161 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3162 new_bus->dev_count--;
3163 memcpy(new_bus->range + i, bus->range + i + 1,
3164 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003165
3166 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3167 synchronize_srcu_expedited(&kvm->srcu);
3168 kfree(bus);
3169 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003170}
3171
Avi Kivity774c47f2007-02-12 00:54:47 -08003172static struct notifier_block kvm_cpu_notifier = {
3173 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08003174};
3175
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003176static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003177{
3178 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003179 struct kvm *kvm;
3180
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003181 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003182 spin_lock(&kvm_lock);
Avi Kivityba1389b2007-11-18 16:24:12 +02003183 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003184 *val += *(u32 *)((void *)kvm + offset);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003185 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003186 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003187}
3188
3189DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
3190
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003191static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003192{
3193 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003194 struct kvm *kvm;
3195 struct kvm_vcpu *vcpu;
3196 int i;
3197
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003198 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003199 spin_lock(&kvm_lock);
Avi Kivity1165f5f2007-04-19 17:27:43 +03003200 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03003201 kvm_for_each_vcpu(i, vcpu, kvm)
3202 *val += *(u32 *)((void *)vcpu + offset);
3203
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003204 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003205 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003206}
3207
Avi Kivityba1389b2007-11-18 16:24:12 +02003208DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
3209
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003210static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003211 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3212 [KVM_STAT_VM] = &vm_stat_fops,
3213};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003214
Hamo4f69b682011-12-15 14:23:16 +08003215static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003216{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003217 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003218 struct kvm_stats_debugfs_item *p;
3219
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003220 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003221 if (kvm_debugfs_dir == NULL)
3222 goto out;
3223
3224 for (p = debugfs_entries; p->name; ++p) {
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003225 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03003226 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02003227 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08003228 if (p->dentry == NULL)
3229 goto out_dir;
3230 }
3231
3232 return 0;
3233
3234out_dir:
3235 debugfs_remove_recursive(kvm_debugfs_dir);
3236out:
3237 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003238}
3239
3240static void kvm_exit_debug(void)
3241{
3242 struct kvm_stats_debugfs_item *p;
3243
3244 for (p = debugfs_entries; p->name; ++p)
3245 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003246 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003247}
3248
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003249static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003250{
Alexander Graf10474ae2009-09-15 11:37:46 +02003251 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003252 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003253 return 0;
3254}
3255
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003256static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003257{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003258 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003259 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003260 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003261 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003262}
3263
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003264static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003265 .suspend = kvm_suspend,
3266 .resume = kvm_resume,
3267};
3268
Avi Kivity15ad7142007-07-11 18:17:21 +03003269static inline
3270struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3271{
3272 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3273}
3274
3275static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3276{
3277 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003278
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303279 if (vcpu->preempted)
3280 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003281
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003282 kvm_arch_sched_in(vcpu, cpu);
3283
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003284 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003285}
3286
3287static void kvm_sched_out(struct preempt_notifier *pn,
3288 struct task_struct *next)
3289{
3290 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3291
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303292 if (current->state == TASK_RUNNING)
3293 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003294 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003295}
3296
Avi Kivity0ee75be2010-04-28 15:39:01 +03003297int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003298 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003299{
3300 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003301 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003302
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003303 r = kvm_arch_init(opaque);
3304 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003305 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003306
Asias He7dac16c2013-05-08 10:57:29 +08003307 /*
3308 * kvm_arch_init makes sure there's at most one caller
3309 * for architectures that support multiple implementations,
3310 * like intel and amd on x86.
3311 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3312 * conflicts in case kvm is already setup for another implementation.
3313 */
3314 r = kvm_irqfd_init();
3315 if (r)
3316 goto out_irqfd;
3317
Avi Kivity8437a612009-06-06 14:52:35 -07003318 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303319 r = -ENOMEM;
3320 goto out_free_0;
3321 }
3322
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003323 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003324 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303325 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003326
Yang, Sheng002c7f72007-07-31 14:23:01 +03003327 for_each_online_cpu(cpu) {
3328 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003329 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003330 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003331 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003332 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003333 }
3334
Avi Kivity774c47f2007-02-12 00:54:47 -08003335 r = register_cpu_notifier(&kvm_cpu_notifier);
3336 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003337 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003338 register_reboot_notifier(&kvm_reboot_notifier);
3339
Rusty Russellc16f8622007-07-30 21:12:19 +10003340 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003341 if (!vcpu_align)
3342 vcpu_align = __alignof__(struct kvm_vcpu);
3343 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003344 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003345 if (!kvm_vcpu_cache) {
3346 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003347 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003348 }
3349
Gleb Natapovaf585b92010-10-14 11:22:46 +02003350 r = kvm_async_pf_init();
3351 if (r)
3352 goto out_free;
3353
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003355 kvm_vm_fops.owner = module;
3356 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003357
3358 r = misc_register(&kvm_dev);
3359 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003360 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003361 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003362 }
3363
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003364 register_syscore_ops(&kvm_syscore_ops);
3365
Avi Kivity15ad7142007-07-11 18:17:21 +03003366 kvm_preempt_ops.sched_in = kvm_sched_in;
3367 kvm_preempt_ops.sched_out = kvm_sched_out;
3368
Hamo4f69b682011-12-15 14:23:16 +08003369 r = kvm_init_debug();
3370 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003371 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08003372 goto out_undebugfs;
3373 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003374
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02003375 r = kvm_vfio_ops_init();
3376 WARN_ON(r);
3377
Avi Kivityc7addb92007-09-16 18:58:32 +02003378 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003379
Hamo4f69b682011-12-15 14:23:16 +08003380out_undebugfs:
3381 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08003382 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003383out_unreg:
3384 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003385out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003386 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003387out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003388 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08003389 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003390out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08003391out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003392 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10303393out_free_0a:
3394 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003395out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003396 kvm_irqfd_exit();
3397out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08003398 kvm_arch_exit();
3399out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003400 return r;
3401}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003402EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003403
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003404void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003405{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003406 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003407 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10003408 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003409 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003410 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003411 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003412 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003413 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003414 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003415 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003416 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10303417 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08003418 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003419}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003420EXPORT_SYMBOL_GPL(kvm_exit);