blob: bd3c08a7c6c27176d1451ff0fa110893a65d9a9b [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}
137
Carsten Otte313a3dc2007-10-11 19:16:52 +0200138void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800139{
Avi Kivity15ad7142007-07-11 18:17:21 +0300140 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200141 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300142 preempt_notifier_unregister(&vcpu->preempt_notifier);
143 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800144 mutex_unlock(&vcpu->mutex);
145}
146
Avi Kivityd9e368d2007-06-07 19:18:30 +0300147static void ack_flush(void *_completed)
148{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300149}
150
Tang Chen445b8232014-09-24 15:57:55 +0800151bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300152{
Avi Kivity597a5f52008-07-20 14:24:22 +0300153 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030154 cpumask_var_t cpus;
155 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300156 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300157
Li Zefan79f55992009-06-15 14:58:26 +0800158 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030159
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800160 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300161 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800162 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300163 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800164
165 /* Set ->requests bit before we read ->mode */
166 smp_mb();
167
168 if (cpus != NULL && cpu != -1 && cpu != me &&
169 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030170 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300171 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030172 if (unlikely(cpus == NULL))
173 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
174 else if (!cpumask_empty(cpus))
175 smp_call_function_many(cpus, ack_flush, NULL, 1);
176 else
177 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800178 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030179 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030180 return called;
181}
182
Mario Smarducha6d51012015-01-15 15:58:52 -0800183#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030184void kvm_flush_remote_tlbs(struct kvm *kvm)
185{
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800186 long dirty_count = kvm->tlbs_dirty;
187
188 smp_mb();
Tang Chen445b8232014-09-24 15:57:55 +0800189 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030190 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800191 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300192}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530193EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800194#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300195
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500196void kvm_reload_remote_mmus(struct kvm *kvm)
197{
Tang Chen445b8232014-09-24 15:57:55 +0800198 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500199}
200
Marcelo Tosattid8281992012-11-27 23:29:01 -0200201void kvm_make_mclock_inprogress_request(struct kvm *kvm)
202{
Tang Chen445b8232014-09-24 15:57:55 +0800203 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
Marcelo Tosattid8281992012-11-27 23:29:01 -0200204}
205
Yang Zhang3d81bc72013-04-11 19:25:13 +0800206void kvm_make_scan_ioapic_request(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800207{
Tang Chen445b8232014-09-24 15:57:55 +0800208 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800209}
210
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000211int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
212{
213 struct page *page;
214 int r;
215
216 mutex_init(&vcpu->mutex);
217 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000218 vcpu->kvm = kvm;
219 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500220 vcpu->pid = NULL;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300221 init_waitqueue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200222 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000223
224 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
225 if (!page) {
226 r = -ENOMEM;
227 goto fail;
228 }
229 vcpu->run = page_address(page);
230
Raghavendra K T4c088492012-07-18 19:07:46 +0530231 kvm_vcpu_set_in_spin_loop(vcpu, false);
232 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530233 vcpu->preempted = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530234
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800235 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000236 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800237 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000238 return 0;
239
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000240fail_free_run:
241 free_page((unsigned long)vcpu->run);
242fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000243 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000244}
245EXPORT_SYMBOL_GPL(kvm_vcpu_init);
246
247void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
248{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500249 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800250 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000251 free_page((unsigned long)vcpu->run);
252}
253EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
254
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200255#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
256static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
257{
258 return container_of(mn, struct kvm, mmu_notifier);
259}
260
261static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
262 struct mm_struct *mm,
263 unsigned long address)
264{
265 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200266 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200267
268 /*
269 * When ->invalidate_page runs, the linux pte has been zapped
270 * already but the page is still allocated until
271 * ->invalidate_page returns. So if we increase the sequence
272 * here the kvm page fault will notice if the spte can't be
273 * established because the page is going to be freed. If
274 * instead the kvm page fault establishes the spte before
275 * ->invalidate_page runs, kvm_unmap_hva will release it
276 * before returning.
277 *
278 * The sequence increase only need to be seen at spin_unlock
279 * time, and not at spin_lock time.
280 *
281 * Increasing the sequence after the spin_unlock would be
282 * unsafe because the kvm page fault could then establish the
283 * pte after kvm_unmap_hva returned, without noticing the page
284 * is going to be freed.
285 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200286 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200287 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900288
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200289 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800290 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200291 /* we've to flush the tlb before the pages can be freed */
292 if (need_tlb_flush)
293 kvm_flush_remote_tlbs(kvm);
294
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900295 spin_unlock(&kvm->mmu_lock);
Tang Chenfe715572014-09-24 15:57:57 +0800296
297 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
298
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900299 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200300}
301
Izik Eidus3da0dd42009-09-23 21:47:18 +0300302static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
303 struct mm_struct *mm,
304 unsigned long address,
305 pte_t pte)
306{
307 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200308 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300309
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200310 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300311 spin_lock(&kvm->mmu_lock);
312 kvm->mmu_notifier_seq++;
313 kvm_set_spte_hva(kvm, address, pte);
314 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200315 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300316}
317
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200318static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
319 struct mm_struct *mm,
320 unsigned long start,
321 unsigned long end)
322{
323 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200324 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200325
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200326 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200327 spin_lock(&kvm->mmu_lock);
328 /*
329 * The count increase must become visible at unlock time as no
330 * spte can be established without taking the mmu_lock and
331 * count is also read inside the mmu_lock critical section.
332 */
333 kvm->mmu_notifier_count++;
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +0900334 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800335 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200336 /* we've to flush the tlb before the pages can be freed */
337 if (need_tlb_flush)
338 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900339
340 spin_unlock(&kvm->mmu_lock);
341 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200342}
343
344static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
345 struct mm_struct *mm,
346 unsigned long start,
347 unsigned long end)
348{
349 struct kvm *kvm = mmu_notifier_to_kvm(mn);
350
351 spin_lock(&kvm->mmu_lock);
352 /*
353 * This sequence increase will notify the kvm page fault that
354 * the page that is going to be mapped in the spte could have
355 * been freed.
356 */
357 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000358 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200359 /*
360 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000361 * below count decrease, which is ensured by the smp_wmb above
362 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200363 */
364 kvm->mmu_notifier_count--;
365 spin_unlock(&kvm->mmu_lock);
366
367 BUG_ON(kvm->mmu_notifier_count < 0);
368}
369
370static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
371 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700372 unsigned long start,
373 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200374{
375 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200376 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200377
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200378 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200379 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200380
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700381 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200382 if (young)
383 kvm_flush_remote_tlbs(kvm);
384
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900385 spin_unlock(&kvm->mmu_lock);
386 srcu_read_unlock(&kvm->srcu, idx);
387
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200388 return young;
389}
390
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800391static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
392 struct mm_struct *mm,
393 unsigned long address)
394{
395 struct kvm *kvm = mmu_notifier_to_kvm(mn);
396 int young, idx;
397
398 idx = srcu_read_lock(&kvm->srcu);
399 spin_lock(&kvm->mmu_lock);
400 young = kvm_test_age_hva(kvm, address);
401 spin_unlock(&kvm->mmu_lock);
402 srcu_read_unlock(&kvm->srcu, idx);
403
404 return young;
405}
406
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100407static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
408 struct mm_struct *mm)
409{
410 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800411 int idx;
412
413 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300414 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800415 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100416}
417
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200418static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
419 .invalidate_page = kvm_mmu_notifier_invalidate_page,
420 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
421 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
422 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800423 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300424 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100425 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200426};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200427
428static int kvm_init_mmu_notifier(struct kvm *kvm)
429{
430 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
431 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
432}
433
434#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
435
436static int kvm_init_mmu_notifier(struct kvm *kvm)
437{
438 return 0;
439}
440
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200441#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
442
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800443static void kvm_init_memslots_id(struct kvm *kvm)
444{
445 int i;
446 struct kvm_memslots *slots = kvm->memslots;
447
448 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800449 slots->id_to_index[i] = slots->memslots[i].id = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800450}
451
Carsten Ottee08b9632012-01-04 10:25:20 +0100452static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800453{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100454 int r, i;
455 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800456
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100457 if (!kvm)
458 return ERR_PTR(-ENOMEM);
459
Carsten Ottee08b9632012-01-04 10:25:20 +0100460 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100461 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100462 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200463
464 r = hardware_enable_all();
465 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100466 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200467
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200468#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300469 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200470#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800471
Alex Williamson1e702d92012-12-10 10:33:32 -0700472 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
473
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200474 r = -ENOMEM;
Igor Mammedov74496132015-03-20 12:21:37 +0000475 kvm->memslots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200476 if (!kvm->memslots)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100477 goto out_err_no_srcu;
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200478
479 /*
480 * Init kvm generation close to the maximum to easily test the
481 * code of handling generation number wrap-around.
482 */
483 kvm->memslots->generation = -150;
484
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800485 kvm_init_memslots_id(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200486 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100487 goto out_err_no_srcu;
488 if (init_srcu_struct(&kvm->irq_srcu))
489 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200490 for (i = 0; i < KVM_NR_BUSES; i++) {
491 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
492 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100493 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200494 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200495 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700496
OGAWA Hirofumi85722cd2011-05-11 09:28:28 +0900497 spin_lock_init(&kvm->mmu_lock);
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200498 kvm->mm = current->mm;
499 atomic_inc(&kvm->mm->mm_count);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400500 kvm_eventfd_init(kvm);
Shaohua Li11ec2802007-07-23 14:51:37 +0800501 mutex_init(&kvm->lock);
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300502 mutex_init(&kvm->irq_lock);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200503 mutex_init(&kvm->slots_lock);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300504 atomic_set(&kvm->users_count, 1);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000505 INIT_LIST_HEAD(&kvm->devices);
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700506
507 r = kvm_init_mmu_notifier(kvm);
508 if (r)
509 goto out_err;
510
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200511 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000512 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200513 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100514
Avi Kivityf17abe92007-02-21 19:28:04 +0200515 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200516
517out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100518 cleanup_srcu_struct(&kvm->irq_srcu);
519out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100520 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100521out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200522 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100523out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200524 for (i = 0; i < KVM_NR_BUSES; i++)
525 kfree(kvm->buses[i]);
Igor Mammedov74496132015-03-20 12:21:37 +0000526 kvfree(kvm->memslots);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100527 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200528 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200529}
530
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900531/*
532 * Avoid using vmalloc for a small buffer.
533 * Should not be used when the size is statically known.
534 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900535void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900536{
537 if (size > PAGE_SIZE)
538 return vzalloc(size);
539 else
540 return kzalloc(size, GFP_KERNEL);
541}
542
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900543static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
544{
545 if (!memslot->dirty_bitmap)
546 return;
547
Thomas Huth548ef282015-02-24 21:29:25 +0100548 kvfree(memslot->dirty_bitmap);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900549 memslot->dirty_bitmap = NULL;
550}
551
Avi Kivity6aa8b732006-12-10 02:21:36 -0800552/*
553 * Free any memory in @free but not in @dont.
554 */
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530555static void kvm_free_physmem_slot(struct kvm *kvm, struct kvm_memory_slot *free,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800556 struct kvm_memory_slot *dont)
557{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800558 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900559 kvm_destroy_dirty_bitmap(free);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800560
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530561 kvm_arch_free_memslot(kvm, free, dont);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300562
Avi Kivity6aa8b732006-12-10 02:21:36 -0800563 free->npages = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800564}
565
Stephen Hemminger79408762013-12-29 12:12:29 -0800566static void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800567{
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200568 struct kvm_memslots *slots = kvm->memslots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800569 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800570
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800571 kvm_for_each_memslot(memslot, slots)
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530572 kvm_free_physmem_slot(kvm, memslot, NULL);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200573
Igor Mammedov74496132015-03-20 12:21:37 +0000574 kvfree(kvm->memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800575}
576
Scott Wood07f0a7b2013-04-25 14:11:23 +0000577static void kvm_destroy_devices(struct kvm *kvm)
578{
579 struct list_head *node, *tmp;
580
581 list_for_each_safe(node, tmp, &kvm->devices) {
582 struct kvm_device *dev =
583 list_entry(node, struct kvm_device, vm_node);
584
585 list_del(node);
586 dev->ops->destroy(dev);
587 }
588}
589
Avi Kivityf17abe92007-02-21 19:28:04 +0200590static void kvm_destroy_vm(struct kvm *kvm)
591{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200592 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200593 struct mm_struct *mm = kvm->mm;
594
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800595 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200596 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800597 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200598 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200599 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200600 for (i = 0; i < KVM_NR_BUSES; i++)
601 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200602 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200603#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
604 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200605#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300606 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200607#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800608 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000609 kvm_destroy_devices(kvm);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100610 kvm_free_physmem(kvm);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200611 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100612 cleanup_srcu_struct(&kvm->srcu);
613 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200614 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200615 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200616}
617
Izik Eidusd39f13b2008-03-30 16:01:25 +0300618void kvm_get_kvm(struct kvm *kvm)
619{
620 atomic_inc(&kvm->users_count);
621}
622EXPORT_SYMBOL_GPL(kvm_get_kvm);
623
624void kvm_put_kvm(struct kvm *kvm)
625{
626 if (atomic_dec_and_test(&kvm->users_count))
627 kvm_destroy_vm(kvm);
628}
629EXPORT_SYMBOL_GPL(kvm_put_kvm);
630
631
Avi Kivityf17abe92007-02-21 19:28:04 +0200632static int kvm_vm_release(struct inode *inode, struct file *filp)
633{
634 struct kvm *kvm = filp->private_data;
635
Gregory Haskins721eecb2009-05-20 10:30:49 -0400636 kvm_irqfd_release(kvm);
637
Izik Eidusd39f13b2008-03-30 16:01:25 +0300638 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800639 return 0;
640}
641
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900642/*
643 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900644 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900645 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900646static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
647{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900648 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900649
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900650 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900651 if (!memslot->dirty_bitmap)
652 return -ENOMEM;
653
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900654 return 0;
655}
656
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800657/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000658 * Insert memslot and re-sort memslots based on their GFN,
659 * so binary search could be used to lookup GFN.
660 * Sorting algorithm takes advantage of having initially
661 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800662 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100663static void update_memslots(struct kvm_memslots *slots,
664 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800665{
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100666 int id = new->id;
667 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000668 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800669
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100670 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000671 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100672 WARN_ON(!mslots[i].npages);
Igor Mammedov0e60b072014-12-01 17:29:26 +0000673 new->base_gfn = 0;
Tiejun Chenb0165f12015-01-09 16:29:14 +0800674 new->flags = 0;
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000675 if (mslots[i].npages)
676 slots->used_slots--;
677 } else {
678 if (!mslots[i].npages)
679 slots->used_slots++;
680 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000681
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000682 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000683 new->base_gfn <= mslots[i + 1].base_gfn) {
684 if (!mslots[i + 1].npages)
685 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000686 mslots[i] = mslots[i + 1];
687 slots->id_to_index[mslots[i].id] = i;
688 i++;
689 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100690
691 /*
692 * The ">=" is needed when creating a slot with base_gfn == 0,
693 * so that it moves before all those with base_gfn == npages == 0.
694 *
695 * On the other hand, if new->npages is zero, the above loop has
696 * already left i pointing to the beginning of the empty part of
697 * mslots, and the ">=" would move the hole backwards in this
698 * case---which is wrong. So skip the loop when deleting a slot.
699 */
700 if (new->npages) {
701 while (i > 0 &&
702 new->base_gfn >= mslots[i - 1].base_gfn) {
703 mslots[i] = mslots[i - 1];
704 slots->id_to_index[mslots[i].id] = i;
705 i--;
706 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100707 } else
708 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800709
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100710 mslots[i] = *new;
711 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800712}
713
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800714static int check_memory_region_flags(struct kvm_userspace_memory_region *mem)
715{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800716 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
717
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200718#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800719 valid_flags |= KVM_MEM_READONLY;
720#endif
721
722 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800723 return -EINVAL;
724
725 return 0;
726}
727
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200728static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100729 struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200730{
731 struct kvm_memslots *old_memslots = kvm->memslots;
732
David Matlackee3d1572014-08-18 15:46:06 -0700733 /*
734 * Set the low bit in the generation, which disables SPTE caching
735 * until the end of synchronize_srcu_expedited.
736 */
737 WARN_ON(old_memslots->generation & 1);
738 slots->generation = old_memslots->generation + 1;
739
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200740 rcu_assign_pointer(kvm->memslots, slots);
741 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900742
David Matlackee3d1572014-08-18 15:46:06 -0700743 /*
744 * Increment the new memslot generation a second time. This prevents
745 * vm exits that race with memslot updates from caching a memslot
746 * generation that will (potentially) be valid forever.
747 */
748 slots->generation++;
749
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900750 kvm_arch_memslots_updated(kvm);
751
752 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200753}
754
Avi Kivity6aa8b732006-12-10 02:21:36 -0800755/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800756 * Allocate some memory and give it an address in the guest physical address
757 * space.
758 *
759 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800760 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100761 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800762 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800763int __kvm_set_memory_region(struct kvm *kvm,
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900764 struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800765{
Avi Kivity8234b222010-12-27 12:08:45 +0200766 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800767 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200768 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900769 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700771 struct kvm_memslots *slots = NULL, *old_memslots;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900772 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800774 r = check_memory_region_flags(mem);
775 if (r)
776 goto out;
777
Avi Kivity6aa8b732006-12-10 02:21:36 -0800778 r = -EINVAL;
779 /* General sanity checks */
780 if (mem->memory_size & (PAGE_SIZE - 1))
781 goto out;
782 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
783 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900784 /* We can read the guest memory with __xxx_user() later on. */
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900785 if ((mem->slot < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900786 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200787 !access_ok(VERIFY_WRITE,
788 (void __user *)(unsigned long)mem->userspace_addr,
789 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600790 goto out;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800791 if (mem->slot >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792 goto out;
793 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
794 goto out;
795
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900796 slot = id_to_memslot(kvm->memslots, mem->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800797 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
798 npages = mem->memory_size >> PAGE_SHIFT;
799
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900800 if (npages > KVM_MEM_MAX_NR_PAGES)
801 goto out;
802
Avi Kivity6aa8b732006-12-10 02:21:36 -0800803 if (!npages)
804 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
805
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900806 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800807
Avi Kivitye36d96f2010-06-21 10:56:36 +0300808 new.id = mem->slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800809 new.base_gfn = base_gfn;
810 new.npages = npages;
811 new.flags = mem->flags;
812
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900813 if (npages) {
814 if (!old.npages)
815 change = KVM_MR_CREATE;
816 else { /* Modify an existing slot. */
817 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900818 (npages != old.npages) ||
819 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900820 goto out;
821
822 if (base_gfn != old.base_gfn)
823 change = KVM_MR_MOVE;
824 else if (new.flags != old.flags)
825 change = KVM_MR_FLAGS_ONLY;
826 else { /* Nothing to change. */
827 r = 0;
828 goto out;
829 }
830 }
831 } else if (old.npages) {
832 change = KVM_MR_DELETE;
833 } else /* Modify a non-existent slot: disallowed. */
Takuya Yoshikawa0ea75e12013-01-11 18:26:10 +0900834 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800835
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900836 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900837 /* Check for overlaps */
838 r = -EEXIST;
839 kvm_for_each_memslot(slot, kvm->memslots) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900840 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
841 (slot->id == mem->slot))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900842 continue;
843 if (!((base_gfn + npages <= slot->base_gfn) ||
844 (base_gfn >= slot->base_gfn + slot->npages)))
845 goto out;
846 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800847 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800848
Avi Kivity6aa8b732006-12-10 02:21:36 -0800849 /* Free page dirty bitmap if unneeded */
850 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000851 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800852
853 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900854 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900855 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900856
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530857 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900858 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800859 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200860
Avi Kivity6aa8b732006-12-10 02:21:36 -0800861 /* Allocate page dirty bitmap if needed */
862 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900863 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800864 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800865 }
866
Igor Mammedov74496132015-03-20 12:21:37 +0000867 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100868 if (!slots)
869 goto out_free;
Igor Mammedov74496132015-03-20 12:21:37 +0000870 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100871
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900872 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Xiao Guangrong28a37542011-11-24 19:04:35 +0800873 slot = id_to_memslot(slots, mem->slot);
874 slot->flags |= KVM_MEMSLOT_INVALID;
875
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100876 old_memslots = install_new_memslots(kvm, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200877
Alex Williamsone40f1932012-12-10 10:32:57 -0700878 /* slot was deleted or moved, clear iommu mapping */
879 kvm_iommu_unmap_pages(kvm, &old);
Marcelo Tosatti12d6e752012-08-24 15:54:58 -0300880 /* From this point no new shadow pages pointing to a deleted,
881 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200882 *
883 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +0800884 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
885 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200886 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300887 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100888
889 /*
890 * We can re-use the old_memslots from above, the only difference
891 * from the currently installed memslots is the invalid flag. This
892 * will get overwritten by update_memslots anyway.
893 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700894 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200895 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300896
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900897 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200898 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700899 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200900
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200901 /* actual memory is freed via old in kvm_free_physmem_slot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900902 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200903 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900904 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200905 }
906
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100907 update_memslots(slots, &new);
908 old_memslots = install_new_memslots(kvm, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900910 kvm_arch_commit_memory_region(kvm, mem, &old, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800911
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530912 kvm_free_physmem_slot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +0000913 kvfree(old_memslots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200914
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200915 /*
916 * IOMMU mapping: New slots need to be mapped. Old slots need to be
Avi Kivity6aa8b732006-12-10 02:21:36 -0800917 * un-mapped and re-mapped if their base changes. Since base change
918 * unmapping is handled above with slot deletion, mapping alone is
Sheng Yangf78e0e22007-10-29 09:40:42 +0800919 * needed here. Anything else the iommu might care about for existing
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 * slots (size changes, userspace addr changes and read-only flag
921 * changes) is disallowed above, so any other attribute changes getting
922 * here can be skipped.
Izik Eidus210c7c42007-10-24 23:52:57 +0200923 */
924 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Sheng Yangf78e0e22007-10-29 09:40:42 +0800925 r = kvm_iommu_map_pages(kvm, &new);
Yang Zhange0230e12013-10-24 09:56:39 +0800926 return r;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800927 }
928
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929 return 0;
930
931out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +0000932 kvfree(slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800933out_free:
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530934 kvm_free_physmem_slot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800935out:
936 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200937}
938EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800939
940int kvm_set_memory_region(struct kvm *kvm,
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900941 struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800942{
943 int r;
944
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200945 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900946 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200947 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800948 return r;
949}
Izik Eidus210c7c42007-10-24 23:52:57 +0200950EXPORT_SYMBOL_GPL(kvm_set_memory_region);
951
Stephen Hemminger79408762013-12-29 12:12:29 -0800952static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
953 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +0200954{
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700955 if (mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +0200956 return -EINVAL;
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900957 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800958}
959
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800960int kvm_get_dirty_log(struct kvm *kvm,
961 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800962{
963 struct kvm_memory_slot *memslot;
964 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900965 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800966 unsigned long any = 0;
967
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700969 if (log->slot >= KVM_USER_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970 goto out;
971
Xiao Guangrong28a37542011-11-24 19:04:35 +0800972 memslot = id_to_memslot(kvm->memslots, log->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973 r = -ENOENT;
974 if (!memslot->dirty_bitmap)
975 goto out;
976
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900977 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800978
Uri Lublincd1a4a92007-02-22 16:43:09 +0200979 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800980 any = memslot->dirty_bitmap[i];
981
982 r = -EFAULT;
983 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
984 goto out;
985
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800986 if (any)
987 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988
989 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 return r;
992}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530993EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994
Mario Smarduchba0513b2015-01-15 15:58:53 -0800995#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
996/**
997 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
998 * are dirty write protect them for next write.
999 * @kvm: pointer to kvm instance
1000 * @log: slot id and address to which we copy the log
1001 * @is_dirty: flag set if any page is dirty
1002 *
1003 * We need to keep it in mind that VCPU threads can write to the bitmap
1004 * concurrently. So, to avoid losing track of dirty pages we keep the
1005 * following order:
1006 *
1007 * 1. Take a snapshot of the bit and clear it if needed.
1008 * 2. Write protect the corresponding page.
1009 * 3. Copy the snapshot to the userspace.
1010 * 4. Upon return caller flushes TLB's if needed.
1011 *
1012 * Between 2 and 4, the guest may write to the page using the remaining TLB
1013 * entry. This is not a problem because the page is reported dirty using
1014 * the snapshot taken before and step 4 ensures that writes done after
1015 * exiting to userspace will be logged for the next call.
1016 *
1017 */
1018int kvm_get_dirty_log_protect(struct kvm *kvm,
1019 struct kvm_dirty_log *log, bool *is_dirty)
1020{
1021 struct kvm_memory_slot *memslot;
1022 int r, i;
1023 unsigned long n;
1024 unsigned long *dirty_bitmap;
1025 unsigned long *dirty_bitmap_buffer;
1026
1027 r = -EINVAL;
1028 if (log->slot >= KVM_USER_MEM_SLOTS)
1029 goto out;
1030
1031 memslot = id_to_memslot(kvm->memslots, log->slot);
1032
1033 dirty_bitmap = memslot->dirty_bitmap;
1034 r = -ENOENT;
1035 if (!dirty_bitmap)
1036 goto out;
1037
1038 n = kvm_dirty_bitmap_bytes(memslot);
1039
1040 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1041 memset(dirty_bitmap_buffer, 0, n);
1042
1043 spin_lock(&kvm->mmu_lock);
1044 *is_dirty = false;
1045 for (i = 0; i < n / sizeof(long); i++) {
1046 unsigned long mask;
1047 gfn_t offset;
1048
1049 if (!dirty_bitmap[i])
1050 continue;
1051
1052 *is_dirty = true;
1053
1054 mask = xchg(&dirty_bitmap[i], 0);
1055 dirty_bitmap_buffer[i] = mask;
1056
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001057 if (mask) {
1058 offset = i * BITS_PER_LONG;
1059 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1060 offset, mask);
1061 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001062 }
1063
1064 spin_unlock(&kvm->mmu_lock);
1065
1066 r = -EFAULT;
1067 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
1068 goto out;
1069
1070 r = 0;
1071out:
1072 return r;
1073}
1074EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1075#endif
1076
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001077bool kvm_largepages_enabled(void)
1078{
1079 return largepages_enabled;
1080}
1081
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001082void kvm_disable_largepages(void)
1083{
1084 largepages_enabled = false;
1085}
1086EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1087
Gleb Natapov49c77542010-10-18 15:22:23 +02001088struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1089{
1090 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1091}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001092EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001093
Izik Eiduse0d62c72007-10-24 23:57:46 +02001094int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1095{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001096 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001097
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001098 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001099 memslot->flags & KVM_MEMSLOT_INVALID)
1100 return 0;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001101
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001102 return 1;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001103}
1104EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1105
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001106unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1107{
1108 struct vm_area_struct *vma;
1109 unsigned long addr, size;
1110
1111 size = PAGE_SIZE;
1112
1113 addr = gfn_to_hva(kvm, gfn);
1114 if (kvm_is_error_hva(addr))
1115 return PAGE_SIZE;
1116
1117 down_read(&current->mm->mmap_sem);
1118 vma = find_vma(current->mm, addr);
1119 if (!vma)
1120 goto out;
1121
1122 size = vma_kernel_pagesize(vma);
1123
1124out:
1125 up_read(&current->mm->mmap_sem);
1126
1127 return size;
1128}
1129
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001130static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1131{
1132 return slot->flags & KVM_MEM_READONLY;
1133}
1134
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001135static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1136 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001137{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001138 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001139 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001140
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001141 if (memslot_is_readonly(slot) && write)
1142 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001143
1144 if (nr_pages)
1145 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1146
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001147 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001148}
Xiao Guangrong48987782010-08-22 19:11:43 +08001149
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001150static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1151 gfn_t *nr_pages)
1152{
1153 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1154}
1155
1156unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001157 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001158{
1159 return gfn_to_hva_many(slot, gfn, NULL);
1160}
1161EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1162
Xiao Guangrong48987782010-08-22 19:11:43 +08001163unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1164{
Gleb Natapov49c77542010-10-18 15:22:23 +02001165 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001166}
Sheng Yang0d150292008-04-25 21:44:50 +08001167EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001168
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001169/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001170 * If writable is set to false, the hva returned by this function is only
1171 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001172 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001173unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1174 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001175{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001176 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1177
1178 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001179 *writable = !memslot_is_readonly(slot);
1180
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001181 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001182}
1183
Christoffer Dall64d83122014-08-19 12:15:00 +02001184unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1185{
1186 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1187
1188 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1189}
1190
Geoff Levand39369f72013-04-05 19:20:30 +00001191static int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001192 unsigned long start, int write, struct page **page)
1193{
1194 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1195
1196 if (write)
1197 flags |= FOLL_WRITE;
1198
1199 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1200}
1201
Huang Yingfafc3db2011-01-30 11:15:49 +08001202static inline int check_user_page_hwpoison(unsigned long addr)
1203{
1204 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1205
1206 rc = __get_user_pages(current, current->mm, addr, 1,
1207 flags, NULL, NULL, NULL);
1208 return rc == -EHWPOISON;
1209}
1210
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001211/*
1212 * The atomic path to get the writable pfn which will be stored in @pfn,
1213 * true indicates success, otherwise false is returned.
1214 */
1215static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
1216 bool write_fault, bool *writable, pfn_t *pfn)
1217{
1218 struct page *page[1];
1219 int npages;
1220
1221 if (!(async || atomic))
1222 return false;
1223
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001224 /*
1225 * Fast pin a writable pfn only if it is a write fault request
1226 * or the caller allows to map a writable pfn for a read fault
1227 * request.
1228 */
1229 if (!(write_fault || writable))
1230 return false;
1231
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001232 npages = __get_user_pages_fast(addr, 1, 1, page);
1233 if (npages == 1) {
1234 *pfn = page_to_pfn(page[0]);
1235
1236 if (writable)
1237 *writable = true;
1238 return true;
1239 }
1240
1241 return false;
1242}
1243
1244/*
1245 * The slow path to get the pfn of the specified host virtual address,
1246 * 1 indicates success, -errno is returned if error is detected.
1247 */
1248static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
1249 bool *writable, pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001250{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001251 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001252 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001253
1254 might_sleep();
1255
1256 if (writable)
1257 *writable = write_fault;
1258
1259 if (async) {
1260 down_read(&current->mm->mmap_sem);
1261 npages = get_user_page_nowait(current, current->mm,
1262 addr, write_fault, page);
1263 up_read(&current->mm->mmap_sem);
Andrea Arcangeli0664e572015-02-11 15:27:28 -08001264 } else
1265 npages = __get_user_pages_unlocked(current, current->mm, addr, 1,
1266 write_fault, 0, page,
1267 FOLL_TOUCH|FOLL_HWPOISON);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001268 if (npages != 1)
1269 return npages;
1270
1271 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001272 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001273 struct page *wpage[1];
1274
1275 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1276 if (npages == 1) {
1277 *writable = true;
1278 put_page(page[0]);
1279 page[0] = wpage[0];
1280 }
1281
1282 npages = 1;
1283 }
1284 *pfn = page_to_pfn(page[0]);
1285 return npages;
1286}
1287
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001288static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1289{
1290 if (unlikely(!(vma->vm_flags & VM_READ)))
1291 return false;
1292
1293 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1294 return false;
1295
1296 return true;
1297}
1298
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001299/*
1300 * Pin guest page in memory and return its pfn.
1301 * @addr: host virtual address which maps memory to the guest
1302 * @atomic: whether this function can sleep
1303 * @async: whether this function need to wait IO complete if the
1304 * host page is not in the memory
1305 * @write_fault: whether we should get a writable host page
1306 * @writable: whether it allows to map a writable host page for !@write_fault
1307 *
1308 * The function will map a writable host page for these two cases:
1309 * 1): @write_fault = true
1310 * 2): @write_fault = false && @writable, @writable will tell the caller
1311 * whether the mapping is writable.
1312 */
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001313static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
1314 bool write_fault, bool *writable)
1315{
1316 struct vm_area_struct *vma;
1317 pfn_t pfn = 0;
1318 int npages;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001319
Gleb Natapovaf585b92010-10-14 11:22:46 +02001320 /* we can do it either atomically or asynchronously, not both */
1321 BUG_ON(atomic && async);
1322
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001323 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1324 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001325
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001326 if (atomic)
1327 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001328
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001329 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1330 if (npages == 1)
1331 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001332
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001333 down_read(&current->mm->mmap_sem);
1334 if (npages == -EHWPOISON ||
1335 (!async && check_user_page_hwpoison(addr))) {
1336 pfn = KVM_PFN_ERR_HWPOISON;
1337 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001338 }
Izik Eidus539cb662007-11-11 22:05:04 +02001339
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001340 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001341
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001342 if (vma == NULL)
1343 pfn = KVM_PFN_ERR_FAULT;
1344 else if ((vma->vm_flags & VM_PFNMAP)) {
1345 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1346 vma->vm_pgoff;
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001347 BUG_ON(!kvm_is_reserved_pfn(pfn));
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001348 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001349 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001350 *async = true;
1351 pfn = KVM_PFN_ERR_FAULT;
1352 }
1353exit:
1354 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001355 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001356}
1357
Paolo Bonzini35204692015-04-02 11:20:48 +02001358pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
1359 bool *async, bool write_fault, bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001360{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001361 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1362
1363 if (addr == KVM_HVA_ERR_RO_BAD)
1364 return KVM_PFN_ERR_RO_FAULT;
1365
1366 if (kvm_is_error_hva(addr))
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001367 return KVM_PFN_NOSLOT;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001368
1369 /* Do not map writable pfn in the readonly memslot. */
1370 if (writable && memslot_is_readonly(slot)) {
1371 *writable = false;
1372 writable = NULL;
1373 }
1374
1375 return hva_to_pfn(addr, atomic, async, write_fault,
1376 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001377}
Paolo Bonzini35204692015-04-02 11:20:48 +02001378EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001379
Paolo Bonzini35204692015-04-02 11:20:48 +02001380static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001381 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001382{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001383 struct kvm_memory_slot *slot;
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001384
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001385 slot = gfn_to_memslot(kvm, gfn);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001386
Paolo Bonzini35204692015-04-02 11:20:48 +02001387 return __gfn_to_pfn_memslot(slot, gfn, atomic, NULL, write_fault,
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001388 writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001389}
1390
1391pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1392{
Paolo Bonzini35204692015-04-02 11:20:48 +02001393 return __gfn_to_pfn(kvm, gfn, true, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001394}
1395EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1396
1397pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1398{
Paolo Bonzini35204692015-04-02 11:20:48 +02001399 return __gfn_to_pfn(kvm, gfn, false, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001400}
Anthony Liguori35149e22008-04-02 14:46:56 -05001401EXPORT_SYMBOL_GPL(gfn_to_pfn);
1402
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001403pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1404 bool *writable)
1405{
Paolo Bonzini35204692015-04-02 11:20:48 +02001406 return __gfn_to_pfn(kvm, gfn, false, write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001407}
1408EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1409
Xiao Guangrongd5661042012-07-17 21:56:16 +08001410pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001411{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001412 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001413}
1414
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001415pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
1416{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001417 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001418}
1419EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1420
Xiao Guangrong48987782010-08-22 19:11:43 +08001421int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1422 int nr_pages)
1423{
1424 unsigned long addr;
1425 gfn_t entry;
1426
Gleb Natapov49c77542010-10-18 15:22:23 +02001427 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001428 if (kvm_is_error_hva(addr))
1429 return -1;
1430
1431 if (entry < nr_pages)
1432 return 0;
1433
1434 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1435}
1436EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1437
Xiao Guangronga2766322012-07-26 11:58:59 +08001438static struct page *kvm_pfn_to_page(pfn_t pfn)
1439{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001440 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001441 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001442
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001443 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001444 WARN_ON(1);
1445 return KVM_ERR_PTR_BAD_PAGE;
1446 }
1447
Xiao Guangronga2766322012-07-26 11:58:59 +08001448 return pfn_to_page(pfn);
1449}
1450
Anthony Liguori35149e22008-04-02 14:46:56 -05001451struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1452{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001453 pfn_t pfn;
1454
1455 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001456
Xiao Guangronga2766322012-07-26 11:58:59 +08001457 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001458}
1459EXPORT_SYMBOL_GPL(gfn_to_page);
1460
Izik Eidusb4231d62007-11-20 11:49:33 +02001461void kvm_release_page_clean(struct page *page)
1462{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001463 WARN_ON(is_error_page(page));
1464
Anthony Liguori35149e22008-04-02 14:46:56 -05001465 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001466}
1467EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1468
Anthony Liguori35149e22008-04-02 14:46:56 -05001469void kvm_release_pfn_clean(pfn_t pfn)
1470{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001471 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001472 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001473}
1474EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1475
Izik Eidusb4231d62007-11-20 11:49:33 +02001476void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001477{
Xiao Guangronga2766322012-07-26 11:58:59 +08001478 WARN_ON(is_error_page(page));
1479
Anthony Liguori35149e22008-04-02 14:46:56 -05001480 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001481}
Izik Eidusb4231d62007-11-20 11:49:33 +02001482EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001483
Stephen Hemminger79408762013-12-29 12:12:29 -08001484static void kvm_release_pfn_dirty(pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001485{
1486 kvm_set_pfn_dirty(pfn);
1487 kvm_release_pfn_clean(pfn);
1488}
Anthony Liguori35149e22008-04-02 14:46:56 -05001489
1490void kvm_set_pfn_dirty(pfn_t pfn)
1491{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001492 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001493 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001494
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001495 if (!PageReserved(page))
1496 SetPageDirty(page);
1497 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001498}
1499EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1500
1501void kvm_set_pfn_accessed(pfn_t pfn)
1502{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001503 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001504 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001505}
1506EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1507
1508void kvm_get_pfn(pfn_t pfn)
1509{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001510 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001511 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001512}
1513EXPORT_SYMBOL_GPL(kvm_get_pfn);
1514
Izik Eidus195aefd2007-10-01 22:14:18 +02001515static int next_segment(unsigned long len, int offset)
1516{
1517 if (len > PAGE_SIZE - offset)
1518 return PAGE_SIZE - offset;
1519 else
1520 return len;
1521}
1522
1523int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1524 int len)
1525{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001526 int r;
1527 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001528
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001529 addr = gfn_to_hva_prot(kvm, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001530 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001531 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001532 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001533 if (r)
1534 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001535 return 0;
1536}
1537EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1538
1539int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1540{
1541 gfn_t gfn = gpa >> PAGE_SHIFT;
1542 int seg;
1543 int offset = offset_in_page(gpa);
1544 int ret;
1545
1546 while ((seg = next_segment(len, offset)) != 0) {
1547 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1548 if (ret < 0)
1549 return ret;
1550 offset = 0;
1551 len -= seg;
1552 data += seg;
1553 ++gfn;
1554 }
1555 return 0;
1556}
1557EXPORT_SYMBOL_GPL(kvm_read_guest);
1558
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001559int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1560 unsigned long len)
1561{
1562 int r;
1563 unsigned long addr;
1564 gfn_t gfn = gpa >> PAGE_SHIFT;
1565 int offset = offset_in_page(gpa);
1566
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001567 addr = gfn_to_hva_prot(kvm, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001568 if (kvm_is_error_hva(addr))
1569 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001570 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001571 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001572 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001573 if (r)
1574 return -EFAULT;
1575 return 0;
1576}
1577EXPORT_SYMBOL(kvm_read_guest_atomic);
1578
Izik Eidus195aefd2007-10-01 22:14:18 +02001579int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1580 int offset, int len)
1581{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001582 int r;
Radim Krčmář251eb842015-04-10 21:47:27 +02001583 struct kvm_memory_slot *memslot;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001584 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001585
Radim Krčmář251eb842015-04-10 21:47:27 +02001586 memslot = gfn_to_memslot(kvm, gfn);
1587 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001588 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001589 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001590 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001591 if (r)
1592 return -EFAULT;
Radim Krčmář251eb842015-04-10 21:47:27 +02001593 mark_page_dirty_in_slot(kvm, memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02001594 return 0;
1595}
1596EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1597
1598int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1599 unsigned long len)
1600{
1601 gfn_t gfn = gpa >> PAGE_SHIFT;
1602 int seg;
1603 int offset = offset_in_page(gpa);
1604 int ret;
1605
1606 while ((seg = next_segment(len, offset)) != 0) {
1607 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1608 if (ret < 0)
1609 return ret;
1610 offset = 0;
1611 len -= seg;
1612 data += seg;
1613 ++gfn;
1614 }
1615 return 0;
1616}
Wincy Vanff651cb2014-12-11 08:52:58 +03001617EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001618
Gleb Natapov49c77542010-10-18 15:22:23 +02001619int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Andrew Honig8f964522013-03-29 09:35:21 -07001620 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001621{
1622 struct kvm_memslots *slots = kvm_memslots(kvm);
1623 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001624 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1625 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1626 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1627 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001628
1629 ghc->gpa = gpa;
1630 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001631 ghc->len = len;
1632 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001633 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1634 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001635 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001636 } else {
1637 /*
1638 * If the requested region crosses two memslots, we still
1639 * verify that the entire region is valid here.
1640 */
1641 while (start_gfn <= end_gfn) {
1642 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1643 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1644 &nr_pages_avail);
1645 if (kvm_is_error_hva(ghc->hva))
1646 return -EFAULT;
1647 start_gfn += nr_pages_avail;
1648 }
1649 /* Use the slow path for cross page reads and writes. */
1650 ghc->memslot = NULL;
1651 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001652 return 0;
1653}
1654EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1655
1656int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1657 void *data, unsigned long len)
1658{
1659 struct kvm_memslots *slots = kvm_memslots(kvm);
1660 int r;
1661
Andrew Honig8f964522013-03-29 09:35:21 -07001662 BUG_ON(len > ghc->len);
1663
Gleb Natapov49c77542010-10-18 15:22:23 +02001664 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001665 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1666
1667 if (unlikely(!ghc->memslot))
1668 return kvm_write_guest(kvm, ghc->gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001669
1670 if (kvm_is_error_hva(ghc->hva))
1671 return -EFAULT;
1672
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001673 r = __copy_to_user((void __user *)ghc->hva, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001674 if (r)
1675 return -EFAULT;
1676 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1677
1678 return 0;
1679}
1680EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1681
Gleb Natapove03b6442011-07-11 15:28:11 -04001682int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1683 void *data, unsigned long len)
1684{
1685 struct kvm_memslots *slots = kvm_memslots(kvm);
1686 int r;
1687
Andrew Honig8f964522013-03-29 09:35:21 -07001688 BUG_ON(len > ghc->len);
1689
Gleb Natapove03b6442011-07-11 15:28:11 -04001690 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001691 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1692
1693 if (unlikely(!ghc->memslot))
1694 return kvm_read_guest(kvm, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04001695
1696 if (kvm_is_error_hva(ghc->hva))
1697 return -EFAULT;
1698
1699 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1700 if (r)
1701 return -EFAULT;
1702
1703 return 0;
1704}
1705EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1706
Izik Eidus195aefd2007-10-01 22:14:18 +02001707int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1708{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01001709 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
1710
1711 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001712}
1713EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1714
1715int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1716{
1717 gfn_t gfn = gpa >> PAGE_SHIFT;
1718 int seg;
1719 int offset = offset_in_page(gpa);
1720 int ret;
1721
Kevin Mulveybfda0e82015-02-20 08:21:36 -05001722 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02001723 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1724 if (ret < 0)
1725 return ret;
1726 offset = 0;
1727 len -= seg;
1728 ++gfn;
1729 }
1730 return 0;
1731}
1732EXPORT_SYMBOL_GPL(kvm_clear_guest);
1733
Stephen Hemminger79408762013-12-29 12:12:29 -08001734static void mark_page_dirty_in_slot(struct kvm *kvm,
1735 struct kvm_memory_slot *memslot,
1736 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001737{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001738 if (memslot && memslot->dirty_bitmap) {
1739 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001740
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07001741 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001742 }
1743}
1744
Gleb Natapov49c77542010-10-18 15:22:23 +02001745void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1746{
1747 struct kvm_memory_slot *memslot;
1748
1749 memslot = gfn_to_memslot(kvm, gfn);
1750 mark_page_dirty_in_slot(kvm, memslot, gfn);
1751}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301752EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02001753
Paolo Bonzinif7819512015-02-04 18:20:58 +01001754static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
1755{
1756 if (kvm_arch_vcpu_runnable(vcpu)) {
1757 kvm_make_request(KVM_REQ_UNHALT, vcpu);
1758 return -EINTR;
1759 }
1760 if (kvm_cpu_has_pending_timer(vcpu))
1761 return -EINTR;
1762 if (signal_pending(current))
1763 return -EINTR;
1764
1765 return 0;
1766}
1767
Eddie Dongb6958ce2007-07-18 12:15:21 +03001768/*
1769 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1770 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001771void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001772{
Paolo Bonzinif7819512015-02-04 18:20:58 +01001773 ktime_t start, cur;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001774 DEFINE_WAIT(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01001775 bool waited = false;
1776
1777 start = cur = ktime_get();
1778 if (halt_poll_ns) {
1779 ktime_t stop = ktime_add_ns(ktime_get(), halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001780
Paolo Bonzinif7819512015-02-04 18:20:58 +01001781 do {
1782 /*
1783 * This sets KVM_REQ_UNHALT if an interrupt
1784 * arrives.
1785 */
1786 if (kvm_vcpu_check_block(vcpu) < 0) {
1787 ++vcpu->stat.halt_successful_poll;
1788 goto out;
1789 }
1790 cur = ktime_get();
1791 } while (single_task_running() && ktime_before(cur, stop));
1792 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03001793
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001794 for (;;) {
1795 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001796
Paolo Bonzinif7819512015-02-04 18:20:58 +01001797 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001798 break;
1799
Paolo Bonzinif7819512015-02-04 18:20:58 +01001800 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001801 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001802 }
1803
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001804 finish_wait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01001805 cur = ktime_get();
1806
1807out:
1808 trace_kvm_vcpu_wakeup(ktime_to_ns(cur) - ktime_to_ns(start), waited);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001809}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301810EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001811
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001812#ifndef CONFIG_S390
Christoffer Dallb6d33832012-03-08 16:44:24 -05001813/*
1814 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1815 */
1816void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1817{
1818 int me;
1819 int cpu = vcpu->cpu;
1820 wait_queue_head_t *wqp;
1821
1822 wqp = kvm_arch_vcpu_wq(vcpu);
1823 if (waitqueue_active(wqp)) {
1824 wake_up_interruptible(wqp);
1825 ++vcpu->stat.halt_wakeup;
1826 }
1827
1828 me = get_cpu();
1829 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1830 if (kvm_arch_vcpu_should_kick(vcpu))
1831 smp_send_reschedule(cpu);
1832 put_cpu();
1833}
Yang Zhanga20ed542013-04-11 19:25:15 +08001834EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001835#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05001836
Dan Carpenterfa933842014-05-23 13:20:42 +03001837int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02001838{
1839 struct pid *pid;
1840 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03001841 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001842
1843 rcu_read_lock();
1844 pid = rcu_dereference(target->pid);
1845 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10001846 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001847 rcu_read_unlock();
1848 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301849 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301850 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001851 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301852
1853 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001854}
1855EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
1856
Raghavendra K T06e48c52012-07-19 15:17:52 +05301857/*
1858 * Helper that checks whether a VCPU is eligible for directed yield.
1859 * Most eligible candidate to yield is decided by following heuristics:
1860 *
1861 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
1862 * (preempted lock holder), indicated by @in_spin_loop.
1863 * Set at the beiginning and cleared at the end of interception/PLE handler.
1864 *
1865 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
1866 * chance last time (mostly it has become eligible now since we have probably
1867 * yielded to lockholder in last iteration. This is done by toggling
1868 * @dy_eligible each time a VCPU checked for eligibility.)
1869 *
1870 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
1871 * to preempted lock-holder could result in wrong VCPU selection and CPU
1872 * burning. Giving priority for a potential lock-holder increases lock
1873 * progress.
1874 *
1875 * Since algorithm is based on heuristics, accessing another VCPU data without
1876 * locking does not harm. It may result in trying to yield to same VCPU, fail
1877 * and continue with next VCPU and so on.
1878 */
Stephen Hemminger79408762013-12-29 12:12:29 -08001879static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05301880{
Scott Wood4a55dd72014-01-09 18:43:16 -06001881#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05301882 bool eligible;
1883
1884 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02001885 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301886
1887 if (vcpu->spin_loop.in_spin_loop)
1888 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
1889
1890 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06001891#else
1892 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301893#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06001894}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301895
Rik van Riel217ece62011-02-01 09:53:28 -05001896void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001897{
Rik van Riel217ece62011-02-01 09:53:28 -05001898 struct kvm *kvm = me->kvm;
1899 struct kvm_vcpu *vcpu;
1900 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
1901 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301902 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05001903 int pass;
1904 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001905
Raghavendra K T4c088492012-07-18 19:07:46 +05301906 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05001907 /*
1908 * We boost the priority of a VCPU that is runnable but not
1909 * currently running, because it got preempted by something
1910 * else and called schedule in __vcpu_run. Hopefully that
1911 * VCPU is holding the lock that we need and will release it.
1912 * We approximate round-robin by starting at the last boosted VCPU.
1913 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301914 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05001915 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04001916 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05001917 i = last_boosted_vcpu;
1918 continue;
1919 } else if (pass && i > last_boosted_vcpu)
1920 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05301921 if (!ACCESS_ONCE(vcpu->preempted))
1922 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05001923 if (vcpu == me)
1924 continue;
Michael Mueller98f4a142014-02-26 16:14:18 +01001925 if (waitqueue_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05001926 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301927 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
1928 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301929
1930 yielded = kvm_vcpu_yield_to(vcpu);
1931 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05001932 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05001933 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301934 } else if (yielded < 0) {
1935 try--;
1936 if (!try)
1937 break;
Rik van Riel217ece62011-02-01 09:53:28 -05001938 }
Rik van Riel217ece62011-02-01 09:53:28 -05001939 }
1940 }
Raghavendra K T4c088492012-07-18 19:07:46 +05301941 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05301942
1943 /* Ensure vcpu is not eligible during next spinloop */
1944 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001945}
1946EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1947
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001948static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001949{
1950 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001951 struct page *page;
1952
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001953 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001954 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001955#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001956 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001957 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001958#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001959#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1960 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1961 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1962#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001963 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01001964 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001965 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001966 vmf->page = page;
1967 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001968}
1969
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001970static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001971 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001972};
1973
1974static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1975{
1976 vma->vm_ops = &kvm_vcpu_vm_ops;
1977 return 0;
1978}
1979
Avi Kivitybccf2152007-02-21 18:04:26 +02001980static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1981{
1982 struct kvm_vcpu *vcpu = filp->private_data;
1983
Al Viro66c0b392008-04-19 20:33:56 +01001984 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001985 return 0;
1986}
1987
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001988static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001989 .release = kvm_vcpu_release,
1990 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01001991#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02001992 .compat_ioctl = kvm_vcpu_compat_ioctl,
1993#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001994 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001995 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001996};
1997
1998/*
1999 * Allocates an inode for the vcpu.
2000 */
2001static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2002{
Yann Droneaud24009b02013-08-24 22:14:07 +02002003 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002004}
2005
Avi Kivityc5ea7662007-02-20 18:41:05 +02002006/*
2007 * Creates some virtual cpus. Good luck creating more than one.
2008 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002009static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002010{
2011 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002012 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002013
Andy Honig338c7db2013-11-18 16:09:22 -08002014 if (id >= KVM_MAX_VCPUS)
2015 return -EINVAL;
2016
Gleb Natapov73880c82009-06-09 15:56:28 +03002017 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002018 if (IS_ERR(vcpu))
2019 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002020
Avi Kivity15ad7142007-07-11 18:17:21 +03002021 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2022
Avi Kivity26e52152007-11-20 15:30:24 +02002023 r = kvm_arch_vcpu_setup(vcpu);
2024 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002025 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002026
Shaohua Li11ec2802007-07-23 14:51:37 +08002027 mutex_lock(&kvm->lock);
Avi Kivity3e515702012-03-05 14:23:29 +02002028 if (!kvm_vcpu_compatible(vcpu)) {
2029 r = -EINVAL;
2030 goto unlock_vcpu_destroy;
2031 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002032 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
2033 r = -EINVAL;
Jan Kiszkad7805922011-05-23 10:33:05 +02002034 goto unlock_vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002035 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002036
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002037 kvm_for_each_vcpu(r, v, kvm)
2038 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03002039 r = -EEXIST;
Jan Kiszkad7805922011-05-23 10:33:05 +02002040 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002041 }
2042
2043 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002044
2045 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002046 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002047 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002048 if (r < 0) {
2049 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002050 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002051 }
2052
2053 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
2054 smp_wmb();
2055 atomic_inc(&kvm->online_vcpus);
2056
Gleb Natapov73880c82009-06-09 15:56:28 +03002057 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002058 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002059 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002060
Jan Kiszkad7805922011-05-23 10:33:05 +02002061unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002062 mutex_unlock(&kvm->lock);
Jan Kiszkad7805922011-05-23 10:33:05 +02002063vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002064 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002065 return r;
2066}
2067
Avi Kivity1961d272007-03-05 19:46:05 +02002068static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2069{
2070 if (sigset) {
2071 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2072 vcpu->sigset_active = 1;
2073 vcpu->sigset = *sigset;
2074 } else
2075 vcpu->sigset_active = 0;
2076 return 0;
2077}
2078
Avi Kivitybccf2152007-02-21 18:04:26 +02002079static long kvm_vcpu_ioctl(struct file *filp,
2080 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002081{
Avi Kivitybccf2152007-02-21 18:04:26 +02002082 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002083 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002084 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002085 struct kvm_fpu *fpu = NULL;
2086 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002087
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002088 if (vcpu->kvm->mm != current->mm)
2089 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002090
David Matlack2ea75be2014-09-19 16:03:25 -07002091 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2092 return -EINVAL;
2093
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002094#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002095 /*
2096 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2097 * so vcpu_load() would break it.
2098 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002099 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002100 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2101#endif
2102
2103
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002104 r = vcpu_load(vcpu);
2105 if (r)
2106 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002107 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002108 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002109 r = -EINVAL;
2110 if (arg)
2111 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002112 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2113 /* The thread running this VCPU changed. */
2114 struct pid *oldpid = vcpu->pid;
2115 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002116
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002117 rcu_assign_pointer(vcpu->pid, newpid);
2118 if (oldpid)
2119 synchronize_rcu();
2120 put_pid(oldpid);
2121 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002122 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002123 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002124 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002125 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002126 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002127
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002128 r = -ENOMEM;
2129 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2130 if (!kvm_regs)
2131 goto out;
2132 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002133 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002134 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002135 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002136 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2137 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002138 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002139out_free1:
2140 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002141 break;
2142 }
2143 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002144 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002145
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002146 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002147 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2148 if (IS_ERR(kvm_regs)) {
2149 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002150 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002151 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002152 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002153 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002154 break;
2155 }
2156 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002157 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2158 r = -ENOMEM;
2159 if (!kvm_sregs)
2160 goto out;
2161 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002162 if (r)
2163 goto out;
2164 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002165 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002166 goto out;
2167 r = 0;
2168 break;
2169 }
2170 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002171 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2172 if (IS_ERR(kvm_sregs)) {
2173 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002174 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002175 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002176 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002177 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002178 break;
2179 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002180 case KVM_GET_MP_STATE: {
2181 struct kvm_mp_state mp_state;
2182
2183 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2184 if (r)
2185 goto out;
2186 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002187 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002188 goto out;
2189 r = 0;
2190 break;
2191 }
2192 case KVM_SET_MP_STATE: {
2193 struct kvm_mp_state mp_state;
2194
2195 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002196 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002197 goto out;
2198 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002199 break;
2200 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002201 case KVM_TRANSLATE: {
2202 struct kvm_translation tr;
2203
2204 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002205 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002206 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002207 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002208 if (r)
2209 goto out;
2210 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002211 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002212 goto out;
2213 r = 0;
2214 break;
2215 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002216 case KVM_SET_GUEST_DEBUG: {
2217 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002218
2219 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002220 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002222 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002223 break;
2224 }
Avi Kivity1961d272007-03-05 19:46:05 +02002225 case KVM_SET_SIGNAL_MASK: {
2226 struct kvm_signal_mask __user *sigmask_arg = argp;
2227 struct kvm_signal_mask kvm_sigmask;
2228 sigset_t sigset, *p;
2229
2230 p = NULL;
2231 if (argp) {
2232 r = -EFAULT;
2233 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002234 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002235 goto out;
2236 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002237 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002238 goto out;
2239 r = -EFAULT;
2240 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002241 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002242 goto out;
2243 p = &sigset;
2244 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002245 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002246 break;
2247 }
Avi Kivityb8836732007-04-01 16:34:31 +03002248 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002249 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2250 r = -ENOMEM;
2251 if (!fpu)
2252 goto out;
2253 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002254 if (r)
2255 goto out;
2256 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002257 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002258 goto out;
2259 r = 0;
2260 break;
2261 }
2262 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002263 fpu = memdup_user(argp, sizeof(*fpu));
2264 if (IS_ERR(fpu)) {
2265 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002266 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002267 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002268 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002269 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002270 break;
2271 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002272 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002273 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002274 }
2275out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002276 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002277 kfree(fpu);
2278 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002279 return r;
2280}
2281
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002282#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002283static long kvm_vcpu_compat_ioctl(struct file *filp,
2284 unsigned int ioctl, unsigned long arg)
2285{
2286 struct kvm_vcpu *vcpu = filp->private_data;
2287 void __user *argp = compat_ptr(arg);
2288 int r;
2289
2290 if (vcpu->kvm->mm != current->mm)
2291 return -EIO;
2292
2293 switch (ioctl) {
2294 case KVM_SET_SIGNAL_MASK: {
2295 struct kvm_signal_mask __user *sigmask_arg = argp;
2296 struct kvm_signal_mask kvm_sigmask;
2297 compat_sigset_t csigset;
2298 sigset_t sigset;
2299
2300 if (argp) {
2301 r = -EFAULT;
2302 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002303 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002304 goto out;
2305 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002306 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002307 goto out;
2308 r = -EFAULT;
2309 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002310 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002311 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002312 sigset_from_compat(&sigset, &csigset);
2313 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2314 } else
2315 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002316 break;
2317 }
2318 default:
2319 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2320 }
2321
2322out:
2323 return r;
2324}
2325#endif
2326
Scott Wood852b6d52013-04-12 14:08:42 +00002327static int kvm_device_ioctl_attr(struct kvm_device *dev,
2328 int (*accessor)(struct kvm_device *dev,
2329 struct kvm_device_attr *attr),
2330 unsigned long arg)
2331{
2332 struct kvm_device_attr attr;
2333
2334 if (!accessor)
2335 return -EPERM;
2336
2337 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2338 return -EFAULT;
2339
2340 return accessor(dev, &attr);
2341}
2342
2343static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2344 unsigned long arg)
2345{
2346 struct kvm_device *dev = filp->private_data;
2347
2348 switch (ioctl) {
2349 case KVM_SET_DEVICE_ATTR:
2350 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2351 case KVM_GET_DEVICE_ATTR:
2352 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2353 case KVM_HAS_DEVICE_ATTR:
2354 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2355 default:
2356 if (dev->ops->ioctl)
2357 return dev->ops->ioctl(dev, ioctl, arg);
2358
2359 return -ENOTTY;
2360 }
2361}
2362
Scott Wood852b6d52013-04-12 14:08:42 +00002363static int kvm_device_release(struct inode *inode, struct file *filp)
2364{
2365 struct kvm_device *dev = filp->private_data;
2366 struct kvm *kvm = dev->kvm;
2367
Scott Wood852b6d52013-04-12 14:08:42 +00002368 kvm_put_kvm(kvm);
2369 return 0;
2370}
2371
2372static const struct file_operations kvm_device_fops = {
2373 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002374#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002375 .compat_ioctl = kvm_device_ioctl,
2376#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002377 .release = kvm_device_release,
2378};
2379
2380struct kvm_device *kvm_device_from_filp(struct file *filp)
2381{
2382 if (filp->f_op != &kvm_device_fops)
2383 return NULL;
2384
2385 return filp->private_data;
2386}
2387
Will Deacond60eacb2014-09-02 10:27:33 +01002388static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2389#ifdef CONFIG_KVM_MPIC
2390 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2391 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2392#endif
2393
2394#ifdef CONFIG_KVM_XICS
2395 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2396#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002397};
2398
2399int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2400{
2401 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2402 return -ENOSPC;
2403
2404 if (kvm_device_ops_table[type] != NULL)
2405 return -EEXIST;
2406
2407 kvm_device_ops_table[type] = ops;
2408 return 0;
2409}
2410
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002411void kvm_unregister_device_ops(u32 type)
2412{
2413 if (kvm_device_ops_table[type] != NULL)
2414 kvm_device_ops_table[type] = NULL;
2415}
2416
Scott Wood852b6d52013-04-12 14:08:42 +00002417static int kvm_ioctl_create_device(struct kvm *kvm,
2418 struct kvm_create_device *cd)
2419{
2420 struct kvm_device_ops *ops = NULL;
2421 struct kvm_device *dev;
2422 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2423 int ret;
2424
Will Deacond60eacb2014-09-02 10:27:33 +01002425 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002426 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002427
2428 ops = kvm_device_ops_table[cd->type];
2429 if (ops == NULL)
2430 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002431
2432 if (test)
2433 return 0;
2434
2435 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2436 if (!dev)
2437 return -ENOMEM;
2438
2439 dev->ops = ops;
2440 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002441
2442 ret = ops->create(dev, cd->type);
2443 if (ret < 0) {
2444 kfree(dev);
2445 return ret;
2446 }
2447
Yann Droneaud24009b02013-08-24 22:14:07 +02002448 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002449 if (ret < 0) {
2450 ops->destroy(dev);
2451 return ret;
2452 }
2453
Scott Wood07f0a7b2013-04-25 14:11:23 +00002454 list_add(&dev->vm_node, &kvm->devices);
Scott Wood852b6d52013-04-12 14:08:42 +00002455 kvm_get_kvm(kvm);
2456 cd->fd = ret;
2457 return 0;
2458}
2459
Alexander Graf92b591a2014-07-14 18:33:08 +02002460static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2461{
2462 switch (arg) {
2463 case KVM_CAP_USER_MEMORY:
2464 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2465 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
2466#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2467 case KVM_CAP_SET_BOOT_CPU_ID:
2468#endif
2469 case KVM_CAP_INTERNAL_ERROR_DATA:
2470#ifdef CONFIG_HAVE_KVM_MSI
2471 case KVM_CAP_SIGNAL_MSI:
2472#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002473#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002474 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002475 case KVM_CAP_IRQFD_RESAMPLE:
2476#endif
2477 case KVM_CAP_CHECK_EXTENSION_VM:
2478 return 1;
2479#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2480 case KVM_CAP_IRQ_ROUTING:
2481 return KVM_MAX_IRQ_ROUTES;
2482#endif
2483 default:
2484 break;
2485 }
2486 return kvm_vm_ioctl_check_extension(kvm, arg);
2487}
2488
Avi Kivitybccf2152007-02-21 18:04:26 +02002489static long kvm_vm_ioctl(struct file *filp,
2490 unsigned int ioctl, unsigned long arg)
2491{
2492 struct kvm *kvm = filp->private_data;
2493 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002494 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002495
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002496 if (kvm->mm != current->mm)
2497 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002498 switch (ioctl) {
2499 case KVM_CREATE_VCPU:
2500 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002501 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002502 case KVM_SET_USER_MEMORY_REGION: {
2503 struct kvm_userspace_memory_region kvm_userspace_mem;
2504
2505 r = -EFAULT;
2506 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002507 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002508 goto out;
2509
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002510 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002511 break;
2512 }
2513 case KVM_GET_DIRTY_LOG: {
2514 struct kvm_dirty_log log;
2515
2516 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002517 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002518 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002519 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002520 break;
2521 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002522#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2523 case KVM_REGISTER_COALESCED_MMIO: {
2524 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002525
Laurent Vivier5f94c172008-05-30 16:05:54 +02002526 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002527 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002528 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002529 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002530 break;
2531 }
2532 case KVM_UNREGISTER_COALESCED_MMIO: {
2533 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002534
Laurent Vivier5f94c172008-05-30 16:05:54 +02002535 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002536 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002537 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002538 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002539 break;
2540 }
2541#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04002542 case KVM_IRQFD: {
2543 struct kvm_irqfd data;
2544
2545 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002546 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecb2009-05-20 10:30:49 -04002547 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06002548 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecb2009-05-20 10:30:49 -04002549 break;
2550 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002551 case KVM_IOEVENTFD: {
2552 struct kvm_ioeventfd data;
2553
2554 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002555 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002556 goto out;
2557 r = kvm_ioeventfd(kvm, &data);
2558 break;
2559 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002560#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2561 case KVM_SET_BOOT_CPU_ID:
2562 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002563 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002564 if (atomic_read(&kvm->online_vcpus) != 0)
2565 r = -EBUSY;
2566 else
2567 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002568 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002569 break;
2570#endif
Jan Kiszka07975ad2012-03-29 21:14:12 +02002571#ifdef CONFIG_HAVE_KVM_MSI
2572 case KVM_SIGNAL_MSI: {
2573 struct kvm_msi msi;
2574
2575 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002576 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02002577 goto out;
2578 r = kvm_send_userspace_msi(kvm, &msi);
2579 break;
2580 }
2581#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002582#ifdef __KVM_HAVE_IRQ_LINE
2583 case KVM_IRQ_LINE_STATUS:
2584 case KVM_IRQ_LINE: {
2585 struct kvm_irq_level irq_event;
2586
2587 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002588 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002589 goto out;
2590
Yang Zhangaa2fbe62013-04-11 19:21:40 +08002591 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
2592 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002593 if (r)
2594 goto out;
2595
2596 r = -EFAULT;
2597 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08002598 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002599 goto out;
2600 }
2601
2602 r = 0;
2603 break;
2604 }
2605#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02002606#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2607 case KVM_SET_GSI_ROUTING: {
2608 struct kvm_irq_routing routing;
2609 struct kvm_irq_routing __user *urouting;
2610 struct kvm_irq_routing_entry *entries;
2611
2612 r = -EFAULT;
2613 if (copy_from_user(&routing, argp, sizeof(routing)))
2614 goto out;
2615 r = -EINVAL;
2616 if (routing.nr >= KVM_MAX_IRQ_ROUTES)
2617 goto out;
2618 if (routing.flags)
2619 goto out;
2620 r = -ENOMEM;
2621 entries = vmalloc(routing.nr * sizeof(*entries));
2622 if (!entries)
2623 goto out;
2624 r = -EFAULT;
2625 urouting = argp;
2626 if (copy_from_user(entries, urouting->entries,
2627 routing.nr * sizeof(*entries)))
2628 goto out_free_irq_routing;
2629 r = kvm_set_irq_routing(kvm, entries, routing.nr,
2630 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08002631out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02002632 vfree(entries);
2633 break;
2634 }
2635#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00002636 case KVM_CREATE_DEVICE: {
2637 struct kvm_create_device cd;
2638
2639 r = -EFAULT;
2640 if (copy_from_user(&cd, argp, sizeof(cd)))
2641 goto out;
2642
2643 r = kvm_ioctl_create_device(kvm, &cd);
2644 if (r)
2645 goto out;
2646
2647 r = -EFAULT;
2648 if (copy_to_user(argp, &cd, sizeof(cd)))
2649 goto out;
2650
2651 r = 0;
2652 break;
2653 }
Alexander Graf92b591a2014-07-14 18:33:08 +02002654 case KVM_CHECK_EXTENSION:
2655 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
2656 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02002657 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002658 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002659 }
2660out:
2661 return r;
2662}
2663
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002664#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002665struct compat_kvm_dirty_log {
2666 __u32 slot;
2667 __u32 padding1;
2668 union {
2669 compat_uptr_t dirty_bitmap; /* one bit per page */
2670 __u64 padding2;
2671 };
2672};
2673
2674static long kvm_vm_compat_ioctl(struct file *filp,
2675 unsigned int ioctl, unsigned long arg)
2676{
2677 struct kvm *kvm = filp->private_data;
2678 int r;
2679
2680 if (kvm->mm != current->mm)
2681 return -EIO;
2682 switch (ioctl) {
2683 case KVM_GET_DIRTY_LOG: {
2684 struct compat_kvm_dirty_log compat_log;
2685 struct kvm_dirty_log log;
2686
2687 r = -EFAULT;
2688 if (copy_from_user(&compat_log, (void __user *)arg,
2689 sizeof(compat_log)))
2690 goto out;
2691 log.slot = compat_log.slot;
2692 log.padding1 = compat_log.padding1;
2693 log.padding2 = compat_log.padding2;
2694 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2695
2696 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002697 break;
2698 }
2699 default:
2700 r = kvm_vm_ioctl(filp, ioctl, arg);
2701 }
2702
2703out:
2704 return r;
2705}
2706#endif
2707
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002708static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002709 .release = kvm_vm_release,
2710 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002711#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002712 .compat_ioctl = kvm_vm_compat_ioctl,
2713#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02002714 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002715};
2716
Carsten Ottee08b9632012-01-04 10:25:20 +01002717static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02002718{
Heiko Carstensaac87632010-10-27 17:22:10 +02002719 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002720 struct kvm *kvm;
2721
Carsten Ottee08b9632012-01-04 10:25:20 +01002722 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04002723 if (IS_ERR(kvm))
2724 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002725#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2726 r = kvm_coalesced_mmio_init(kvm);
2727 if (r < 0) {
2728 kvm_put_kvm(kvm);
2729 return r;
2730 }
2731#endif
Yann Droneaud24009b02013-08-24 22:14:07 +02002732 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR | O_CLOEXEC);
Heiko Carstensaac87632010-10-27 17:22:10 +02002733 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002734 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002735
Heiko Carstensaac87632010-10-27 17:22:10 +02002736 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002737}
2738
2739static long kvm_dev_ioctl(struct file *filp,
2740 unsigned int ioctl, unsigned long arg)
2741{
Avi Kivity07c45a32007-03-07 13:05:38 +02002742 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002743
2744 switch (ioctl) {
2745 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002746 if (arg)
2747 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002748 r = KVM_API_VERSION;
2749 break;
2750 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01002751 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002752 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002753 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02002754 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002755 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002756 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02002757 if (arg)
2758 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002759 r = PAGE_SIZE; /* struct kvm_run */
2760#ifdef CONFIG_X86
2761 r += PAGE_SIZE; /* pio data page */
2762#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002763#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2764 r += PAGE_SIZE; /* coalesced mmio ring page */
2765#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002766 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002767 case KVM_TRACE_ENABLE:
2768 case KVM_TRACE_PAUSE:
2769 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002770 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002771 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002772 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002773 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774 }
2775out:
2776 return r;
2777}
2778
Avi Kivity6aa8b732006-12-10 02:21:36 -08002779static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002780 .unlocked_ioctl = kvm_dev_ioctl,
2781 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002782 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002783};
2784
2785static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002786 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002787 "kvm",
2788 &kvm_chardev_ops,
2789};
2790
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002791static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002792{
2793 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002794 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002795
Rusty Russell7f59f492008-12-07 21:25:45 +10302796 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002797 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002798
Rusty Russell7f59f492008-12-07 21:25:45 +10302799 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002800
Radim Krčmář13a34e02014-08-28 15:13:03 +02002801 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02002802
2803 if (r) {
2804 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2805 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08002806 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02002807 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002808}
2809
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002810static void hardware_enable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002811{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002812 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002813 if (kvm_usage_count)
2814 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002815 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002816}
2817
2818static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002819{
2820 int cpu = raw_smp_processor_id();
2821
Rusty Russell7f59f492008-12-07 21:25:45 +10302822 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002823 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302824 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02002825 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03002826}
2827
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002828static void hardware_disable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002829{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002830 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002831 if (kvm_usage_count)
2832 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002833 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002834}
2835
Alexander Graf10474ae2009-09-15 11:37:46 +02002836static void hardware_disable_all_nolock(void)
2837{
2838 BUG_ON(!kvm_usage_count);
2839
2840 kvm_usage_count--;
2841 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002842 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002843}
2844
2845static void hardware_disable_all(void)
2846{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002847 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002848 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002849 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002850}
2851
2852static int hardware_enable_all(void)
2853{
2854 int r = 0;
2855
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002856 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002857
2858 kvm_usage_count++;
2859 if (kvm_usage_count == 1) {
2860 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002861 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002862
2863 if (atomic_read(&hardware_enable_failed)) {
2864 hardware_disable_all_nolock();
2865 r = -EBUSY;
2866 }
2867 }
2868
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002869 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002870
2871 return r;
2872}
2873
Avi Kivity774c47f2007-02-12 00:54:47 -08002874static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2875 void *v)
2876{
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002877 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002878 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002879 case CPU_DYING:
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002880 hardware_disable();
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002881 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002882 case CPU_STARTING:
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002883 hardware_enable();
Avi Kivity774c47f2007-02-12 00:54:47 -08002884 break;
2885 }
2886 return NOTIFY_OK;
2887}
2888
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002889static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002890 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002891{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002892 /*
2893 * Some (well, at least mine) BIOSes hang on reboot if
2894 * in vmx root mode.
2895 *
2896 * And Intel TXT required VMX off for all cpu when system shutdown.
2897 */
Xiubo Li1170adc2015-02-26 14:58:26 +08002898 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08002899 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002900 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002901 return NOTIFY_OK;
2902}
2903
2904static struct notifier_block kvm_reboot_notifier = {
2905 .notifier_call = kvm_reboot,
2906 .priority = 0,
2907};
2908
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002909static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002910{
2911 int i;
2912
2913 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03002914 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002915
2916 kvm_iodevice_destructor(pos);
2917 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002918 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002919}
2920
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002921static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08002922 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03002923{
Sasha Levin743eeb02011-07-27 16:00:48 +03002924 if (r1->addr < r2->addr)
2925 return -1;
2926 if (r1->addr + r1->len > r2->addr + r2->len)
2927 return 1;
2928 return 0;
2929}
2930
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02002931static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
2932{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002933 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02002934}
2935
Geoff Levand39369f72013-04-05 19:20:30 +00002936static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03002937 gpa_t addr, int len)
2938{
Sasha Levin743eeb02011-07-27 16:00:48 +03002939 bus->range[bus->dev_count++] = (struct kvm_io_range) {
2940 .addr = addr,
2941 .len = len,
2942 .dev = dev,
2943 };
2944
2945 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
2946 kvm_io_bus_sort_cmp, NULL);
2947
2948 return 0;
2949}
2950
Geoff Levand39369f72013-04-05 19:20:30 +00002951static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03002952 gpa_t addr, int len)
2953{
2954 struct kvm_io_range *range, key;
2955 int off;
2956
2957 key = (struct kvm_io_range) {
2958 .addr = addr,
2959 .len = len,
2960 };
2961
2962 range = bsearch(&key, bus->range, bus->dev_count,
2963 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
2964 if (range == NULL)
2965 return -ENOENT;
2966
2967 off = range - bus->range;
2968
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002969 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03002970 off--;
2971
2972 return off;
2973}
2974
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002975static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02002976 struct kvm_io_range *range, const void *val)
2977{
2978 int idx;
2979
2980 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
2981 if (idx < 0)
2982 return -EOPNOTSUPP;
2983
2984 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002985 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002986 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02002987 range->len, val))
2988 return idx;
2989 idx++;
2990 }
2991
2992 return -EOPNOTSUPP;
2993}
2994
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002995/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002996int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002997 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002998{
Cornelia Huck126a5af2013-07-03 16:30:53 +02002999 struct kvm_io_bus *bus;
3000 struct kvm_io_range range;
3001 int r;
3002
3003 range = (struct kvm_io_range) {
3004 .addr = addr,
3005 .len = len,
3006 };
3007
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003008 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3009 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003010 return r < 0 ? r : 0;
3011}
3012
3013/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003014int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3015 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003016{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003017 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003018 struct kvm_io_range range;
3019
3020 range = (struct kvm_io_range) {
3021 .addr = addr,
3022 .len = len,
3023 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003024
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003025 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003026
3027 /* First try the device referenced by cookie. */
3028 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003029 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003030 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003031 val))
3032 return cookie;
3033
3034 /*
3035 * cookie contained garbage; fall back to search and return the
3036 * correct cookie value.
3037 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003038 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003039}
3040
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003041static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3042 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003043{
3044 int idx;
3045
3046 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003047 if (idx < 0)
3048 return -EOPNOTSUPP;
3049
3050 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003051 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003052 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003053 range->len, val))
3054 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003055 idx++;
3056 }
3057
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003058 return -EOPNOTSUPP;
3059}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003060EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003061
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003062/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003063int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003064 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003065{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003066 struct kvm_io_bus *bus;
3067 struct kvm_io_range range;
3068 int r;
3069
3070 range = (struct kvm_io_range) {
3071 .addr = addr,
3072 .len = len,
3073 };
3074
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003075 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3076 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003077 return r < 0 ? r : 0;
3078}
3079
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003080
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003081/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003082int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3083 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003084{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003085 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003086
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003087 bus = kvm->buses[bus_idx];
Amos Kong6ea34c92013-05-25 06:44:15 +08003088 /* exclude ioeventfd which is limited by maximum fd */
3089 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003090 return -ENOSPC;
3091
Amos Konga13007162012-03-09 12:17:32 +08003092 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
3093 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003094 if (!new_bus)
3095 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003096 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3097 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003098 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003099 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3100 synchronize_srcu_expedited(&kvm->srcu);
3101 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003102
3103 return 0;
3104}
3105
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003106/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003107int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3108 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003109{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003110 int i, r;
3111 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003112
Sasha Levincdfca7b2011-12-04 19:36:28 +02003113 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003114 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08003115 for (i = 0; i < bus->dev_count; i++)
3116 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003117 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003118 break;
3119 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003120
Amos Konga13007162012-03-09 12:17:32 +08003121 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003122 return r;
Amos Konga13007162012-03-09 12:17:32 +08003123
3124 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
3125 sizeof(struct kvm_io_range)), GFP_KERNEL);
3126 if (!new_bus)
3127 return -ENOMEM;
3128
3129 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3130 new_bus->dev_count--;
3131 memcpy(new_bus->range + i, bus->range + i + 1,
3132 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003133
3134 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3135 synchronize_srcu_expedited(&kvm->srcu);
3136 kfree(bus);
3137 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003138}
3139
Avi Kivity774c47f2007-02-12 00:54:47 -08003140static struct notifier_block kvm_cpu_notifier = {
3141 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08003142};
3143
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003144static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003145{
3146 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003147 struct kvm *kvm;
3148
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003149 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003150 spin_lock(&kvm_lock);
Avi Kivityba1389b2007-11-18 16:24:12 +02003151 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003152 *val += *(u32 *)((void *)kvm + offset);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003153 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003154 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003155}
3156
3157DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
3158
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003159static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003160{
3161 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003162 struct kvm *kvm;
3163 struct kvm_vcpu *vcpu;
3164 int i;
3165
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003166 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003167 spin_lock(&kvm_lock);
Avi Kivity1165f5f2007-04-19 17:27:43 +03003168 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03003169 kvm_for_each_vcpu(i, vcpu, kvm)
3170 *val += *(u32 *)((void *)vcpu + offset);
3171
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003172 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003173 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003174}
3175
Avi Kivityba1389b2007-11-18 16:24:12 +02003176DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
3177
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003178static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003179 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3180 [KVM_STAT_VM] = &vm_stat_fops,
3181};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003182
Hamo4f69b682011-12-15 14:23:16 +08003183static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003184{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003185 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003186 struct kvm_stats_debugfs_item *p;
3187
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003188 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003189 if (kvm_debugfs_dir == NULL)
3190 goto out;
3191
3192 for (p = debugfs_entries; p->name; ++p) {
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003193 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03003194 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02003195 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08003196 if (p->dentry == NULL)
3197 goto out_dir;
3198 }
3199
3200 return 0;
3201
3202out_dir:
3203 debugfs_remove_recursive(kvm_debugfs_dir);
3204out:
3205 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003206}
3207
3208static void kvm_exit_debug(void)
3209{
3210 struct kvm_stats_debugfs_item *p;
3211
3212 for (p = debugfs_entries; p->name; ++p)
3213 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003214 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003215}
3216
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003217static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003218{
Alexander Graf10474ae2009-09-15 11:37:46 +02003219 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003220 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003221 return 0;
3222}
3223
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003224static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003225{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003226 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003227 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003228 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003229 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003230}
3231
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003232static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003233 .suspend = kvm_suspend,
3234 .resume = kvm_resume,
3235};
3236
Avi Kivity15ad7142007-07-11 18:17:21 +03003237static inline
3238struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3239{
3240 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3241}
3242
3243static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3244{
3245 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003246
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303247 if (vcpu->preempted)
3248 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003249
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003250 kvm_arch_sched_in(vcpu, cpu);
3251
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003252 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003253}
3254
3255static void kvm_sched_out(struct preempt_notifier *pn,
3256 struct task_struct *next)
3257{
3258 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3259
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303260 if (current->state == TASK_RUNNING)
3261 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003262 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003263}
3264
Avi Kivity0ee75be2010-04-28 15:39:01 +03003265int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003266 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003267{
3268 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003269 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003270
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003271 r = kvm_arch_init(opaque);
3272 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003273 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003274
Asias He7dac16c2013-05-08 10:57:29 +08003275 /*
3276 * kvm_arch_init makes sure there's at most one caller
3277 * for architectures that support multiple implementations,
3278 * like intel and amd on x86.
3279 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3280 * conflicts in case kvm is already setup for another implementation.
3281 */
3282 r = kvm_irqfd_init();
3283 if (r)
3284 goto out_irqfd;
3285
Avi Kivity8437a612009-06-06 14:52:35 -07003286 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303287 r = -ENOMEM;
3288 goto out_free_0;
3289 }
3290
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003291 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003292 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303293 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003294
Yang, Sheng002c7f72007-07-31 14:23:01 +03003295 for_each_online_cpu(cpu) {
3296 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003297 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003298 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003299 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003300 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003301 }
3302
Avi Kivity774c47f2007-02-12 00:54:47 -08003303 r = register_cpu_notifier(&kvm_cpu_notifier);
3304 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003305 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003306 register_reboot_notifier(&kvm_reboot_notifier);
3307
Rusty Russellc16f8622007-07-30 21:12:19 +10003308 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003309 if (!vcpu_align)
3310 vcpu_align = __alignof__(struct kvm_vcpu);
3311 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003312 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003313 if (!kvm_vcpu_cache) {
3314 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003315 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003316 }
3317
Gleb Natapovaf585b92010-10-14 11:22:46 +02003318 r = kvm_async_pf_init();
3319 if (r)
3320 goto out_free;
3321
Avi Kivity6aa8b732006-12-10 02:21:36 -08003322 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003323 kvm_vm_fops.owner = module;
3324 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003325
3326 r = misc_register(&kvm_dev);
3327 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003328 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003329 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003330 }
3331
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003332 register_syscore_ops(&kvm_syscore_ops);
3333
Avi Kivity15ad7142007-07-11 18:17:21 +03003334 kvm_preempt_ops.sched_in = kvm_sched_in;
3335 kvm_preempt_ops.sched_out = kvm_sched_out;
3336
Hamo4f69b682011-12-15 14:23:16 +08003337 r = kvm_init_debug();
3338 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003339 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08003340 goto out_undebugfs;
3341 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003342
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02003343 r = kvm_vfio_ops_init();
3344 WARN_ON(r);
3345
Avi Kivityc7addb92007-09-16 18:58:32 +02003346 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003347
Hamo4f69b682011-12-15 14:23:16 +08003348out_undebugfs:
3349 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08003350 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003351out_unreg:
3352 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003353out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003354 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003355out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003356 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08003357 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003358out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08003359out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003360 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10303361out_free_0a:
3362 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003363out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003364 kvm_irqfd_exit();
3365out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08003366 kvm_arch_exit();
3367out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003368 return r;
3369}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003370EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003371
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003372void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003373{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003374 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003375 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10003376 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003377 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003378 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003379 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003380 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003381 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003382 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003383 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003384 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10303385 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08003386 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003387}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003388EXPORT_SYMBOL_GPL(kvm_exit);