blob: 53e66ef8b75e0307a2a05f54558d48837681978a [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
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200443static struct kvm_memslots *kvm_alloc_memslots(void)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800444{
445 int i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200446 struct kvm_memslots *slots;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800447
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200448 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
449 if (!slots)
450 return NULL;
451
452 /*
453 * Init kvm generation close to the maximum to easily test the
454 * code of handling generation number wrap-around.
455 */
456 slots->generation = -150;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800457 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800458 slots->id_to_index[i] = slots->memslots[i].id = i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200459
460 return slots;
461}
462
463static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
464{
465 if (!memslot->dirty_bitmap)
466 return;
467
468 kvfree(memslot->dirty_bitmap);
469 memslot->dirty_bitmap = NULL;
470}
471
472/*
473 * Free any memory in @free but not in @dont.
474 */
475static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
476 struct kvm_memory_slot *dont)
477{
478 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
479 kvm_destroy_dirty_bitmap(free);
480
481 kvm_arch_free_memslot(kvm, free, dont);
482
483 free->npages = 0;
484}
485
486static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
487{
488 struct kvm_memory_slot *memslot;
489
490 if (!slots)
491 return;
492
493 kvm_for_each_memslot(memslot, slots)
494 kvm_free_memslot(kvm, memslot, NULL);
495
496 kvfree(slots);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800497}
498
Carsten Ottee08b9632012-01-04 10:25:20 +0100499static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800500{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100501 int r, i;
502 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800503
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100504 if (!kvm)
505 return ERR_PTR(-ENOMEM);
506
Carsten Ottee08b9632012-01-04 10:25:20 +0100507 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100508 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100509 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200510
511 r = hardware_enable_all();
512 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100513 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200514
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200515#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300516 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200517#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800518
Alex Williamson1e702d92012-12-10 10:33:32 -0700519 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
520
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200521 r = -ENOMEM;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200522 kvm->memslots = kvm_alloc_memslots();
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200523 if (!kvm->memslots)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100524 goto out_err_no_srcu;
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200525
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200526 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100527 goto out_err_no_srcu;
528 if (init_srcu_struct(&kvm->irq_srcu))
529 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200530 for (i = 0; i < KVM_NR_BUSES; i++) {
531 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
532 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100533 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200534 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200535 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700536
OGAWA Hirofumi85722cd2011-05-11 09:28:28 +0900537 spin_lock_init(&kvm->mmu_lock);
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200538 kvm->mm = current->mm;
539 atomic_inc(&kvm->mm->mm_count);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400540 kvm_eventfd_init(kvm);
Shaohua Li11ec2802007-07-23 14:51:37 +0800541 mutex_init(&kvm->lock);
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300542 mutex_init(&kvm->irq_lock);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200543 mutex_init(&kvm->slots_lock);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300544 atomic_set(&kvm->users_count, 1);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000545 INIT_LIST_HEAD(&kvm->devices);
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700546
547 r = kvm_init_mmu_notifier(kvm);
548 if (r)
549 goto out_err;
550
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200551 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000552 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200553 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100554
Avi Kivityf17abe92007-02-21 19:28:04 +0200555 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200556
557out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100558 cleanup_srcu_struct(&kvm->irq_srcu);
559out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100560 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100561out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200562 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100563out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200564 for (i = 0; i < KVM_NR_BUSES; i++)
565 kfree(kvm->buses[i]);
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200566 kvm_free_memslots(kvm, kvm->memslots);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100567 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200568 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200569}
570
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900571/*
572 * Avoid using vmalloc for a small buffer.
573 * Should not be used when the size is statically known.
574 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900575void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900576{
577 if (size > PAGE_SIZE)
578 return vzalloc(size);
579 else
580 return kzalloc(size, GFP_KERNEL);
581}
582
Scott Wood07f0a7b2013-04-25 14:11:23 +0000583static void kvm_destroy_devices(struct kvm *kvm)
584{
585 struct list_head *node, *tmp;
586
587 list_for_each_safe(node, tmp, &kvm->devices) {
588 struct kvm_device *dev =
589 list_entry(node, struct kvm_device, vm_node);
590
591 list_del(node);
592 dev->ops->destroy(dev);
593 }
594}
595
Avi Kivityf17abe92007-02-21 19:28:04 +0200596static void kvm_destroy_vm(struct kvm *kvm)
597{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200598 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200599 struct mm_struct *mm = kvm->mm;
600
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800601 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200602 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800603 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200604 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200605 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200606 for (i = 0; i < KVM_NR_BUSES; i++)
607 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200608 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200609#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
610 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200611#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300612 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200613#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800614 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000615 kvm_destroy_devices(kvm);
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200616 kvm_free_memslots(kvm, kvm->memslots);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200617 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100618 cleanup_srcu_struct(&kvm->srcu);
619 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200620 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200621 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200622}
623
Izik Eidusd39f13b2008-03-30 16:01:25 +0300624void kvm_get_kvm(struct kvm *kvm)
625{
626 atomic_inc(&kvm->users_count);
627}
628EXPORT_SYMBOL_GPL(kvm_get_kvm);
629
630void kvm_put_kvm(struct kvm *kvm)
631{
632 if (atomic_dec_and_test(&kvm->users_count))
633 kvm_destroy_vm(kvm);
634}
635EXPORT_SYMBOL_GPL(kvm_put_kvm);
636
637
Avi Kivityf17abe92007-02-21 19:28:04 +0200638static int kvm_vm_release(struct inode *inode, struct file *filp)
639{
640 struct kvm *kvm = filp->private_data;
641
Gregory Haskins721eecb2009-05-20 10:30:49 -0400642 kvm_irqfd_release(kvm);
643
Izik Eidusd39f13b2008-03-30 16:01:25 +0300644 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800645 return 0;
646}
647
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900648/*
649 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900650 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900651 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900652static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
653{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900654 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900655
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900656 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900657 if (!memslot->dirty_bitmap)
658 return -ENOMEM;
659
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900660 return 0;
661}
662
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800663/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000664 * Insert memslot and re-sort memslots based on their GFN,
665 * so binary search could be used to lookup GFN.
666 * Sorting algorithm takes advantage of having initially
667 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800668 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100669static void update_memslots(struct kvm_memslots *slots,
670 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800671{
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100672 int id = new->id;
673 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000674 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800675
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100676 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000677 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100678 WARN_ON(!mslots[i].npages);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000679 if (mslots[i].npages)
680 slots->used_slots--;
681 } else {
682 if (!mslots[i].npages)
683 slots->used_slots++;
684 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000685
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000686 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000687 new->base_gfn <= mslots[i + 1].base_gfn) {
688 if (!mslots[i + 1].npages)
689 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000690 mslots[i] = mslots[i + 1];
691 slots->id_to_index[mslots[i].id] = i;
692 i++;
693 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100694
695 /*
696 * The ">=" is needed when creating a slot with base_gfn == 0,
697 * so that it moves before all those with base_gfn == npages == 0.
698 *
699 * On the other hand, if new->npages is zero, the above loop has
700 * already left i pointing to the beginning of the empty part of
701 * mslots, and the ">=" would move the hole backwards in this
702 * case---which is wrong. So skip the loop when deleting a slot.
703 */
704 if (new->npages) {
705 while (i > 0 &&
706 new->base_gfn >= mslots[i - 1].base_gfn) {
707 mslots[i] = mslots[i - 1];
708 slots->id_to_index[mslots[i].id] = i;
709 i--;
710 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100711 } else
712 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800713
Paolo Bonzini8593176c2014-11-14 10:22:07 +0100714 mslots[i] = *new;
715 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800716}
717
Paolo Bonzini09170a42015-05-18 13:59:39 +0200718static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800719{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800720 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
721
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200722#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800723 valid_flags |= KVM_MEM_READONLY;
724#endif
725
726 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800727 return -EINVAL;
728
729 return 0;
730}
731
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200732static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100733 struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200734{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200735 struct kvm_memslots *old_memslots = kvm_memslots(kvm);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200736
David Matlackee3d1572014-08-18 15:46:06 -0700737 /*
738 * Set the low bit in the generation, which disables SPTE caching
739 * until the end of synchronize_srcu_expedited.
740 */
741 WARN_ON(old_memslots->generation & 1);
742 slots->generation = old_memslots->generation + 1;
743
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200744 rcu_assign_pointer(kvm->memslots, slots);
745 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900746
David Matlackee3d1572014-08-18 15:46:06 -0700747 /*
748 * Increment the new memslot generation a second time. This prevents
749 * vm exits that race with memslot updates from caching a memslot
750 * generation that will (potentially) be valid forever.
751 */
752 slots->generation++;
753
Paolo Bonzini15f46012015-05-17 21:26:08 +0200754 kvm_arch_memslots_updated(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900755
756 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200757}
758
Avi Kivity6aa8b732006-12-10 02:21:36 -0800759/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800760 * Allocate some memory and give it an address in the guest physical address
761 * space.
762 *
763 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800764 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100765 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800766 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800767int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200768 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800769{
Avi Kivity8234b222010-12-27 12:08:45 +0200770 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800771 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200772 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900773 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800774 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700775 struct kvm_memslots *slots = NULL, *old_memslots;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900776 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800777
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800778 r = check_memory_region_flags(mem);
779 if (r)
780 goto out;
781
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782 r = -EINVAL;
783 /* General sanity checks */
784 if (mem->memory_size & (PAGE_SIZE - 1))
785 goto out;
786 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
787 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900788 /* We can read the guest memory with __xxx_user() later on. */
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900789 if ((mem->slot < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900790 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200791 !access_ok(VERIFY_WRITE,
792 (void __user *)(unsigned long)mem->userspace_addr,
793 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600794 goto out;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800795 if (mem->slot >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800796 goto out;
797 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
798 goto out;
799
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200800 slot = id_to_memslot(kvm_memslots(kvm), mem->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800801 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
802 npages = mem->memory_size >> PAGE_SHIFT;
803
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900804 if (npages > KVM_MEM_MAX_NR_PAGES)
805 goto out;
806
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900807 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800808
Avi Kivitye36d96f2010-06-21 10:56:36 +0300809 new.id = mem->slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800810 new.base_gfn = base_gfn;
811 new.npages = npages;
812 new.flags = mem->flags;
813
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900814 if (npages) {
815 if (!old.npages)
816 change = KVM_MR_CREATE;
817 else { /* Modify an existing slot. */
818 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900819 (npages != old.npages) ||
820 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900821 goto out;
822
823 if (base_gfn != old.base_gfn)
824 change = KVM_MR_MOVE;
825 else if (new.flags != old.flags)
826 change = KVM_MR_FLAGS_ONLY;
827 else { /* Nothing to change. */
828 r = 0;
829 goto out;
830 }
831 }
Paolo Bonzini09170a42015-05-18 13:59:39 +0200832 } else {
833 if (!old.npages)
834 goto out;
835
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900836 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200837 new.base_gfn = 0;
838 new.flags = 0;
839 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800840
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900841 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900842 /* Check for overlaps */
843 r = -EEXIST;
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200844 kvm_for_each_memslot(slot, kvm_memslots(kvm)) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900845 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
846 (slot->id == mem->slot))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900847 continue;
848 if (!((base_gfn + npages <= slot->base_gfn) ||
849 (base_gfn >= slot->base_gfn + slot->npages)))
850 goto out;
851 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800852 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800853
Avi Kivity6aa8b732006-12-10 02:21:36 -0800854 /* Free page dirty bitmap if unneeded */
855 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000856 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800857
858 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900859 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900860 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900861
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530862 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900863 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200865
Avi Kivity6aa8b732006-12-10 02:21:36 -0800866 /* Allocate page dirty bitmap if needed */
867 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900868 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800869 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800870 }
871
Igor Mammedov74496132015-03-20 12:21:37 +0000872 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100873 if (!slots)
874 goto out_free;
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200875 memcpy(slots, kvm_memslots(kvm), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100876
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900877 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Xiao Guangrong28a37542011-11-24 19:04:35 +0800878 slot = id_to_memslot(slots, mem->slot);
879 slot->flags |= KVM_MEMSLOT_INVALID;
880
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100881 old_memslots = install_new_memslots(kvm, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200882
Alex Williamsone40f1932012-12-10 10:32:57 -0700883 /* slot was deleted or moved, clear iommu mapping */
884 kvm_iommu_unmap_pages(kvm, &old);
Marcelo Tosatti12d6e752012-08-24 15:54:58 -0300885 /* From this point no new shadow pages pointing to a deleted,
886 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200887 *
888 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +0800889 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
890 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200891 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300892 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100893
894 /*
895 * We can re-use the old_memslots from above, the only difference
896 * from the currently installed memslots is the invalid flag. This
897 * will get overwritten by update_memslots anyway.
898 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700899 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200900 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300901
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900902 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200903 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700904 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200905
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200906 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900907 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200908 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900909 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200910 }
911
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100912 update_memslots(slots, &new);
913 old_memslots = install_new_memslots(kvm, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200915 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800916
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200917 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +0000918 kvfree(old_memslots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200919
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200920 /*
921 * IOMMU mapping: New slots need to be mapped. Old slots need to be
Avi Kivity6aa8b732006-12-10 02:21:36 -0800922 * un-mapped and re-mapped if their base changes. Since base change
923 * unmapping is handled above with slot deletion, mapping alone is
Sheng Yangf78e0e22007-10-29 09:40:42 +0800924 * needed here. Anything else the iommu might care about for existing
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925 * slots (size changes, userspace addr changes and read-only flag
926 * changes) is disallowed above, so any other attribute changes getting
927 * here can be skipped.
Izik Eidus210c7c42007-10-24 23:52:57 +0200928 */
929 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Sheng Yangf78e0e22007-10-29 09:40:42 +0800930 r = kvm_iommu_map_pages(kvm, &new);
Yang Zhange0230e12013-10-24 09:56:39 +0800931 return r;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800932 }
933
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934 return 0;
935
936out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +0000937 kvfree(slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200939 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800940out:
941 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200942}
943EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800944
945int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200946 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800947{
948 int r;
949
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200950 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900951 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200952 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800953 return r;
954}
Izik Eidus210c7c42007-10-24 23:52:57 +0200955EXPORT_SYMBOL_GPL(kvm_set_memory_region);
956
Stephen Hemminger79408762013-12-29 12:12:29 -0800957static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
958 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +0200959{
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700960 if (mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +0200961 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200962
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900963 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964}
965
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800966int kvm_get_dirty_log(struct kvm *kvm,
967 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200969 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970 struct kvm_memory_slot *memslot;
971 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900972 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973 unsigned long any = 0;
974
Avi Kivity6aa8b732006-12-10 02:21:36 -0800975 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700976 if (log->slot >= KVM_USER_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977 goto out;
978
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200979 slots = kvm_memslots(kvm);
980 memslot = id_to_memslot(slots, log->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800981 r = -ENOENT;
982 if (!memslot->dirty_bitmap)
983 goto out;
984
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900985 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800986
Uri Lublincd1a4a92007-02-22 16:43:09 +0200987 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988 any = memslot->dirty_bitmap[i];
989
990 r = -EFAULT;
991 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
992 goto out;
993
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800994 if (any)
995 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996
997 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 return r;
1000}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301001EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002
Mario Smarduchba0513b2015-01-15 15:58:53 -08001003#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1004/**
1005 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1006 * are dirty write protect them for next write.
1007 * @kvm: pointer to kvm instance
1008 * @log: slot id and address to which we copy the log
1009 * @is_dirty: flag set if any page is dirty
1010 *
1011 * We need to keep it in mind that VCPU threads can write to the bitmap
1012 * concurrently. So, to avoid losing track of dirty pages we keep the
1013 * following order:
1014 *
1015 * 1. Take a snapshot of the bit and clear it if needed.
1016 * 2. Write protect the corresponding page.
1017 * 3. Copy the snapshot to the userspace.
1018 * 4. Upon return caller flushes TLB's if needed.
1019 *
1020 * Between 2 and 4, the guest may write to the page using the remaining TLB
1021 * entry. This is not a problem because the page is reported dirty using
1022 * the snapshot taken before and step 4 ensures that writes done after
1023 * exiting to userspace will be logged for the next call.
1024 *
1025 */
1026int kvm_get_dirty_log_protect(struct kvm *kvm,
1027 struct kvm_dirty_log *log, bool *is_dirty)
1028{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001029 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001030 struct kvm_memory_slot *memslot;
1031 int r, i;
1032 unsigned long n;
1033 unsigned long *dirty_bitmap;
1034 unsigned long *dirty_bitmap_buffer;
1035
1036 r = -EINVAL;
1037 if (log->slot >= KVM_USER_MEM_SLOTS)
1038 goto out;
1039
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001040 slots = kvm_memslots(kvm);
1041 memslot = id_to_memslot(slots, log->slot);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001042
1043 dirty_bitmap = memslot->dirty_bitmap;
1044 r = -ENOENT;
1045 if (!dirty_bitmap)
1046 goto out;
1047
1048 n = kvm_dirty_bitmap_bytes(memslot);
1049
1050 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1051 memset(dirty_bitmap_buffer, 0, n);
1052
1053 spin_lock(&kvm->mmu_lock);
1054 *is_dirty = false;
1055 for (i = 0; i < n / sizeof(long); i++) {
1056 unsigned long mask;
1057 gfn_t offset;
1058
1059 if (!dirty_bitmap[i])
1060 continue;
1061
1062 *is_dirty = true;
1063
1064 mask = xchg(&dirty_bitmap[i], 0);
1065 dirty_bitmap_buffer[i] = mask;
1066
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001067 if (mask) {
1068 offset = i * BITS_PER_LONG;
1069 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1070 offset, mask);
1071 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001072 }
1073
1074 spin_unlock(&kvm->mmu_lock);
1075
1076 r = -EFAULT;
1077 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
1078 goto out;
1079
1080 r = 0;
1081out:
1082 return r;
1083}
1084EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1085#endif
1086
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001087bool kvm_largepages_enabled(void)
1088{
1089 return largepages_enabled;
1090}
1091
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001092void kvm_disable_largepages(void)
1093{
1094 largepages_enabled = false;
1095}
1096EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1097
Gleb Natapov49c77542010-10-18 15:22:23 +02001098struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1099{
1100 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1101}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001102EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103
Izik Eiduse0d62c72007-10-24 23:57:46 +02001104int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1105{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001106 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001107
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001108 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001109 memslot->flags & KVM_MEMSLOT_INVALID)
1110 return 0;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001111
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001112 return 1;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001113}
1114EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1115
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001116unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1117{
1118 struct vm_area_struct *vma;
1119 unsigned long addr, size;
1120
1121 size = PAGE_SIZE;
1122
1123 addr = gfn_to_hva(kvm, gfn);
1124 if (kvm_is_error_hva(addr))
1125 return PAGE_SIZE;
1126
1127 down_read(&current->mm->mmap_sem);
1128 vma = find_vma(current->mm, addr);
1129 if (!vma)
1130 goto out;
1131
1132 size = vma_kernel_pagesize(vma);
1133
1134out:
1135 up_read(&current->mm->mmap_sem);
1136
1137 return size;
1138}
1139
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001140static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1141{
1142 return slot->flags & KVM_MEM_READONLY;
1143}
1144
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001145static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1146 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001147{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001148 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001149 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001150
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001151 if (memslot_is_readonly(slot) && write)
1152 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001153
1154 if (nr_pages)
1155 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1156
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001157 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001158}
Xiao Guangrong48987782010-08-22 19:11:43 +08001159
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001160static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1161 gfn_t *nr_pages)
1162{
1163 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1164}
1165
1166unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001167 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001168{
1169 return gfn_to_hva_many(slot, gfn, NULL);
1170}
1171EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1172
Xiao Guangrong48987782010-08-22 19:11:43 +08001173unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1174{
Gleb Natapov49c77542010-10-18 15:22:23 +02001175 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001176}
Sheng Yang0d150292008-04-25 21:44:50 +08001177EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001178
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001179/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001180 * If writable is set to false, the hva returned by this function is only
1181 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001182 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001183unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1184 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001185{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001186 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1187
1188 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001189 *writable = !memslot_is_readonly(slot);
1190
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001191 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001192}
1193
Christoffer Dall64d83122014-08-19 12:15:00 +02001194unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1195{
1196 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1197
1198 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1199}
1200
Geoff Levand39369f72013-04-05 19:20:30 +00001201static int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001202 unsigned long start, int write, struct page **page)
1203{
1204 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1205
1206 if (write)
1207 flags |= FOLL_WRITE;
1208
1209 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1210}
1211
Huang Yingfafc3db2011-01-30 11:15:49 +08001212static inline int check_user_page_hwpoison(unsigned long addr)
1213{
1214 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1215
1216 rc = __get_user_pages(current, current->mm, addr, 1,
1217 flags, NULL, NULL, NULL);
1218 return rc == -EHWPOISON;
1219}
1220
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001221/*
1222 * The atomic path to get the writable pfn which will be stored in @pfn,
1223 * true indicates success, otherwise false is returned.
1224 */
1225static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
1226 bool write_fault, bool *writable, pfn_t *pfn)
1227{
1228 struct page *page[1];
1229 int npages;
1230
1231 if (!(async || atomic))
1232 return false;
1233
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001234 /*
1235 * Fast pin a writable pfn only if it is a write fault request
1236 * or the caller allows to map a writable pfn for a read fault
1237 * request.
1238 */
1239 if (!(write_fault || writable))
1240 return false;
1241
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001242 npages = __get_user_pages_fast(addr, 1, 1, page);
1243 if (npages == 1) {
1244 *pfn = page_to_pfn(page[0]);
1245
1246 if (writable)
1247 *writable = true;
1248 return true;
1249 }
1250
1251 return false;
1252}
1253
1254/*
1255 * The slow path to get the pfn of the specified host virtual address,
1256 * 1 indicates success, -errno is returned if error is detected.
1257 */
1258static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
1259 bool *writable, pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001260{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001261 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001262 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001263
1264 might_sleep();
1265
1266 if (writable)
1267 *writable = write_fault;
1268
1269 if (async) {
1270 down_read(&current->mm->mmap_sem);
1271 npages = get_user_page_nowait(current, current->mm,
1272 addr, write_fault, page);
1273 up_read(&current->mm->mmap_sem);
Andrea Arcangeli0664e572015-02-11 15:27:28 -08001274 } else
1275 npages = __get_user_pages_unlocked(current, current->mm, addr, 1,
1276 write_fault, 0, page,
1277 FOLL_TOUCH|FOLL_HWPOISON);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001278 if (npages != 1)
1279 return npages;
1280
1281 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001282 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001283 struct page *wpage[1];
1284
1285 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1286 if (npages == 1) {
1287 *writable = true;
1288 put_page(page[0]);
1289 page[0] = wpage[0];
1290 }
1291
1292 npages = 1;
1293 }
1294 *pfn = page_to_pfn(page[0]);
1295 return npages;
1296}
1297
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001298static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1299{
1300 if (unlikely(!(vma->vm_flags & VM_READ)))
1301 return false;
1302
1303 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1304 return false;
1305
1306 return true;
1307}
1308
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001309/*
1310 * Pin guest page in memory and return its pfn.
1311 * @addr: host virtual address which maps memory to the guest
1312 * @atomic: whether this function can sleep
1313 * @async: whether this function need to wait IO complete if the
1314 * host page is not in the memory
1315 * @write_fault: whether we should get a writable host page
1316 * @writable: whether it allows to map a writable host page for !@write_fault
1317 *
1318 * The function will map a writable host page for these two cases:
1319 * 1): @write_fault = true
1320 * 2): @write_fault = false && @writable, @writable will tell the caller
1321 * whether the mapping is writable.
1322 */
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001323static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
1324 bool write_fault, bool *writable)
1325{
1326 struct vm_area_struct *vma;
1327 pfn_t pfn = 0;
1328 int npages;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001329
Gleb Natapovaf585b92010-10-14 11:22:46 +02001330 /* we can do it either atomically or asynchronously, not both */
1331 BUG_ON(atomic && async);
1332
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001333 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1334 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001335
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001336 if (atomic)
1337 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001338
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001339 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1340 if (npages == 1)
1341 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001342
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001343 down_read(&current->mm->mmap_sem);
1344 if (npages == -EHWPOISON ||
1345 (!async && check_user_page_hwpoison(addr))) {
1346 pfn = KVM_PFN_ERR_HWPOISON;
1347 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001348 }
Izik Eidus539cb662007-11-11 22:05:04 +02001349
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001350 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001351
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001352 if (vma == NULL)
1353 pfn = KVM_PFN_ERR_FAULT;
1354 else if ((vma->vm_flags & VM_PFNMAP)) {
1355 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1356 vma->vm_pgoff;
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001357 BUG_ON(!kvm_is_reserved_pfn(pfn));
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001358 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001359 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001360 *async = true;
1361 pfn = KVM_PFN_ERR_FAULT;
1362 }
1363exit:
1364 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001365 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001366}
1367
Paolo Bonzini35204692015-04-02 11:20:48 +02001368pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
1369 bool *async, bool write_fault, bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001370{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001371 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1372
1373 if (addr == KVM_HVA_ERR_RO_BAD)
1374 return KVM_PFN_ERR_RO_FAULT;
1375
1376 if (kvm_is_error_hva(addr))
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001377 return KVM_PFN_NOSLOT;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001378
1379 /* Do not map writable pfn in the readonly memslot. */
1380 if (writable && memslot_is_readonly(slot)) {
1381 *writable = false;
1382 writable = NULL;
1383 }
1384
1385 return hva_to_pfn(addr, atomic, async, write_fault,
1386 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001387}
Paolo Bonzini35204692015-04-02 11:20:48 +02001388EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001389
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001390pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1391 bool *writable)
1392{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001393 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1394 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001395}
1396EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1397
Xiao Guangrongd5661042012-07-17 21:56:16 +08001398pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001399{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001400 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001401}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001402EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001403
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001404pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
1405{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001406 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001407}
1408EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1409
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001410pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1411{
1412 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1413}
1414EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1415
1416pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1417{
1418 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1419}
1420EXPORT_SYMBOL_GPL(gfn_to_pfn);
1421
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001422int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1423 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001424{
1425 unsigned long addr;
1426 gfn_t entry;
1427
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001428 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001429 if (kvm_is_error_hva(addr))
1430 return -1;
1431
1432 if (entry < nr_pages)
1433 return 0;
1434
1435 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1436}
1437EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1438
Xiao Guangronga2766322012-07-26 11:58:59 +08001439static struct page *kvm_pfn_to_page(pfn_t pfn)
1440{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001441 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001442 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001443
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001444 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001445 WARN_ON(1);
1446 return KVM_ERR_PTR_BAD_PAGE;
1447 }
1448
Xiao Guangronga2766322012-07-26 11:58:59 +08001449 return pfn_to_page(pfn);
1450}
1451
Anthony Liguori35149e22008-04-02 14:46:56 -05001452struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1453{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001454 pfn_t pfn;
1455
1456 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001457
Xiao Guangronga2766322012-07-26 11:58:59 +08001458 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001459}
1460EXPORT_SYMBOL_GPL(gfn_to_page);
1461
Izik Eidusb4231d62007-11-20 11:49:33 +02001462void kvm_release_page_clean(struct page *page)
1463{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001464 WARN_ON(is_error_page(page));
1465
Anthony Liguori35149e22008-04-02 14:46:56 -05001466 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001467}
1468EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1469
Anthony Liguori35149e22008-04-02 14:46:56 -05001470void kvm_release_pfn_clean(pfn_t pfn)
1471{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001472 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001473 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001474}
1475EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1476
Izik Eidusb4231d62007-11-20 11:49:33 +02001477void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001478{
Xiao Guangronga2766322012-07-26 11:58:59 +08001479 WARN_ON(is_error_page(page));
1480
Anthony Liguori35149e22008-04-02 14:46:56 -05001481 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001482}
Izik Eidusb4231d62007-11-20 11:49:33 +02001483EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001484
Stephen Hemminger79408762013-12-29 12:12:29 -08001485static void kvm_release_pfn_dirty(pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001486{
1487 kvm_set_pfn_dirty(pfn);
1488 kvm_release_pfn_clean(pfn);
1489}
Anthony Liguori35149e22008-04-02 14:46:56 -05001490
1491void kvm_set_pfn_dirty(pfn_t pfn)
1492{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001493 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001494 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001495
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001496 if (!PageReserved(page))
1497 SetPageDirty(page);
1498 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001499}
1500EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1501
1502void kvm_set_pfn_accessed(pfn_t pfn)
1503{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001504 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001505 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001506}
1507EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1508
1509void kvm_get_pfn(pfn_t pfn)
1510{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001511 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001512 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001513}
1514EXPORT_SYMBOL_GPL(kvm_get_pfn);
1515
Izik Eidus195aefd2007-10-01 22:14:18 +02001516static int next_segment(unsigned long len, int offset)
1517{
1518 if (len > PAGE_SIZE - offset)
1519 return PAGE_SIZE - offset;
1520 else
1521 return len;
1522}
1523
1524int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1525 int len)
1526{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001527 int r;
1528 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001529
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001530 addr = gfn_to_hva_prot(kvm, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001531 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001532 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001533 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001534 if (r)
1535 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001536 return 0;
1537}
1538EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1539
1540int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1541{
1542 gfn_t gfn = gpa >> PAGE_SHIFT;
1543 int seg;
1544 int offset = offset_in_page(gpa);
1545 int ret;
1546
1547 while ((seg = next_segment(len, offset)) != 0) {
1548 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1549 if (ret < 0)
1550 return ret;
1551 offset = 0;
1552 len -= seg;
1553 data += seg;
1554 ++gfn;
1555 }
1556 return 0;
1557}
1558EXPORT_SYMBOL_GPL(kvm_read_guest);
1559
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001560int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1561 unsigned long len)
1562{
1563 int r;
1564 unsigned long addr;
1565 gfn_t gfn = gpa >> PAGE_SHIFT;
1566 int offset = offset_in_page(gpa);
1567
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001568 addr = gfn_to_hva_prot(kvm, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001569 if (kvm_is_error_hva(addr))
1570 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001571 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001572 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001573 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001574 if (r)
1575 return -EFAULT;
1576 return 0;
1577}
1578EXPORT_SYMBOL(kvm_read_guest_atomic);
1579
Izik Eidus195aefd2007-10-01 22:14:18 +02001580int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1581 int offset, int len)
1582{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001583 int r;
Radim Krčmář251eb842015-04-10 21:47:27 +02001584 struct kvm_memory_slot *memslot;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001585 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001586
Radim Krčmář251eb842015-04-10 21:47:27 +02001587 memslot = gfn_to_memslot(kvm, gfn);
1588 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001589 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001590 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001591 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001592 if (r)
1593 return -EFAULT;
Radim Krčmář251eb842015-04-10 21:47:27 +02001594 mark_page_dirty_in_slot(kvm, memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02001595 return 0;
1596}
1597EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1598
1599int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1600 unsigned long len)
1601{
1602 gfn_t gfn = gpa >> PAGE_SHIFT;
1603 int seg;
1604 int offset = offset_in_page(gpa);
1605 int ret;
1606
1607 while ((seg = next_segment(len, offset)) != 0) {
1608 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1609 if (ret < 0)
1610 return ret;
1611 offset = 0;
1612 len -= seg;
1613 data += seg;
1614 ++gfn;
1615 }
1616 return 0;
1617}
Wincy Vanff651cb2014-12-11 08:52:58 +03001618EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001619
Gleb Natapov49c77542010-10-18 15:22:23 +02001620int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Andrew Honig8f964522013-03-29 09:35:21 -07001621 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001622{
1623 struct kvm_memslots *slots = kvm_memslots(kvm);
1624 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001625 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1626 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1627 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1628 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001629
1630 ghc->gpa = gpa;
1631 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001632 ghc->len = len;
1633 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001634 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1635 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001636 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001637 } else {
1638 /*
1639 * If the requested region crosses two memslots, we still
1640 * verify that the entire region is valid here.
1641 */
1642 while (start_gfn <= end_gfn) {
1643 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1644 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1645 &nr_pages_avail);
1646 if (kvm_is_error_hva(ghc->hva))
1647 return -EFAULT;
1648 start_gfn += nr_pages_avail;
1649 }
1650 /* Use the slow path for cross page reads and writes. */
1651 ghc->memslot = NULL;
1652 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001653 return 0;
1654}
1655EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1656
1657int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1658 void *data, unsigned long len)
1659{
1660 struct kvm_memslots *slots = kvm_memslots(kvm);
1661 int r;
1662
Andrew Honig8f964522013-03-29 09:35:21 -07001663 BUG_ON(len > ghc->len);
1664
Gleb Natapov49c77542010-10-18 15:22:23 +02001665 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001666 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1667
1668 if (unlikely(!ghc->memslot))
1669 return kvm_write_guest(kvm, ghc->gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001670
1671 if (kvm_is_error_hva(ghc->hva))
1672 return -EFAULT;
1673
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001674 r = __copy_to_user((void __user *)ghc->hva, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001675 if (r)
1676 return -EFAULT;
1677 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1678
1679 return 0;
1680}
1681EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1682
Gleb Natapove03b6442011-07-11 15:28:11 -04001683int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1684 void *data, unsigned long len)
1685{
1686 struct kvm_memslots *slots = kvm_memslots(kvm);
1687 int r;
1688
Andrew Honig8f964522013-03-29 09:35:21 -07001689 BUG_ON(len > ghc->len);
1690
Gleb Natapove03b6442011-07-11 15:28:11 -04001691 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001692 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1693
1694 if (unlikely(!ghc->memslot))
1695 return kvm_read_guest(kvm, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04001696
1697 if (kvm_is_error_hva(ghc->hva))
1698 return -EFAULT;
1699
1700 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1701 if (r)
1702 return -EFAULT;
1703
1704 return 0;
1705}
1706EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1707
Izik Eidus195aefd2007-10-01 22:14:18 +02001708int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1709{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01001710 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
1711
1712 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001713}
1714EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1715
1716int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1717{
1718 gfn_t gfn = gpa >> PAGE_SHIFT;
1719 int seg;
1720 int offset = offset_in_page(gpa);
1721 int ret;
1722
Kevin Mulveybfda0e82015-02-20 08:21:36 -05001723 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02001724 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1725 if (ret < 0)
1726 return ret;
1727 offset = 0;
1728 len -= seg;
1729 ++gfn;
1730 }
1731 return 0;
1732}
1733EXPORT_SYMBOL_GPL(kvm_clear_guest);
1734
Stephen Hemminger79408762013-12-29 12:12:29 -08001735static void mark_page_dirty_in_slot(struct kvm *kvm,
1736 struct kvm_memory_slot *memslot,
1737 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001738{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001739 if (memslot && memslot->dirty_bitmap) {
1740 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001741
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07001742 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743 }
1744}
1745
Gleb Natapov49c77542010-10-18 15:22:23 +02001746void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1747{
1748 struct kvm_memory_slot *memslot;
1749
1750 memslot = gfn_to_memslot(kvm, gfn);
1751 mark_page_dirty_in_slot(kvm, memslot, gfn);
1752}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301753EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02001754
Paolo Bonzinif7819512015-02-04 18:20:58 +01001755static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
1756{
1757 if (kvm_arch_vcpu_runnable(vcpu)) {
1758 kvm_make_request(KVM_REQ_UNHALT, vcpu);
1759 return -EINTR;
1760 }
1761 if (kvm_cpu_has_pending_timer(vcpu))
1762 return -EINTR;
1763 if (signal_pending(current))
1764 return -EINTR;
1765
1766 return 0;
1767}
1768
Eddie Dongb6958ce2007-07-18 12:15:21 +03001769/*
1770 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1771 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001772void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001773{
Paolo Bonzinif7819512015-02-04 18:20:58 +01001774 ktime_t start, cur;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001775 DEFINE_WAIT(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01001776 bool waited = false;
1777
1778 start = cur = ktime_get();
1779 if (halt_poll_ns) {
1780 ktime_t stop = ktime_add_ns(ktime_get(), halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001781
Paolo Bonzinif7819512015-02-04 18:20:58 +01001782 do {
1783 /*
1784 * This sets KVM_REQ_UNHALT if an interrupt
1785 * arrives.
1786 */
1787 if (kvm_vcpu_check_block(vcpu) < 0) {
1788 ++vcpu->stat.halt_successful_poll;
1789 goto out;
1790 }
1791 cur = ktime_get();
1792 } while (single_task_running() && ktime_before(cur, stop));
1793 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03001794
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001795 for (;;) {
1796 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001797
Paolo Bonzinif7819512015-02-04 18:20:58 +01001798 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001799 break;
1800
Paolo Bonzinif7819512015-02-04 18:20:58 +01001801 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001802 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001803 }
1804
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001805 finish_wait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01001806 cur = ktime_get();
1807
1808out:
1809 trace_kvm_vcpu_wakeup(ktime_to_ns(cur) - ktime_to_ns(start), waited);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001810}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301811EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001812
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001813#ifndef CONFIG_S390
Christoffer Dallb6d33832012-03-08 16:44:24 -05001814/*
1815 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1816 */
1817void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1818{
1819 int me;
1820 int cpu = vcpu->cpu;
1821 wait_queue_head_t *wqp;
1822
1823 wqp = kvm_arch_vcpu_wq(vcpu);
1824 if (waitqueue_active(wqp)) {
1825 wake_up_interruptible(wqp);
1826 ++vcpu->stat.halt_wakeup;
1827 }
1828
1829 me = get_cpu();
1830 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1831 if (kvm_arch_vcpu_should_kick(vcpu))
1832 smp_send_reschedule(cpu);
1833 put_cpu();
1834}
Yang Zhanga20ed542013-04-11 19:25:15 +08001835EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001836#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05001837
Dan Carpenterfa933842014-05-23 13:20:42 +03001838int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02001839{
1840 struct pid *pid;
1841 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03001842 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001843
1844 rcu_read_lock();
1845 pid = rcu_dereference(target->pid);
1846 if (pid)
Sam Bobroff27fbe642014-09-19 09:40:41 +10001847 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001848 rcu_read_unlock();
1849 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301850 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301851 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001852 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301853
1854 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001855}
1856EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
1857
Raghavendra K T06e48c52012-07-19 15:17:52 +05301858/*
1859 * Helper that checks whether a VCPU is eligible for directed yield.
1860 * Most eligible candidate to yield is decided by following heuristics:
1861 *
1862 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
1863 * (preempted lock holder), indicated by @in_spin_loop.
1864 * Set at the beiginning and cleared at the end of interception/PLE handler.
1865 *
1866 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
1867 * chance last time (mostly it has become eligible now since we have probably
1868 * yielded to lockholder in last iteration. This is done by toggling
1869 * @dy_eligible each time a VCPU checked for eligibility.)
1870 *
1871 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
1872 * to preempted lock-holder could result in wrong VCPU selection and CPU
1873 * burning. Giving priority for a potential lock-holder increases lock
1874 * progress.
1875 *
1876 * Since algorithm is based on heuristics, accessing another VCPU data without
1877 * locking does not harm. It may result in trying to yield to same VCPU, fail
1878 * and continue with next VCPU and so on.
1879 */
Stephen Hemminger79408762013-12-29 12:12:29 -08001880static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05301881{
Scott Wood4a55dd72014-01-09 18:43:16 -06001882#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05301883 bool eligible;
1884
1885 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02001886 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301887
1888 if (vcpu->spin_loop.in_spin_loop)
1889 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
1890
1891 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06001892#else
1893 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301894#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06001895}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301896
Rik van Riel217ece62011-02-01 09:53:28 -05001897void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001898{
Rik van Riel217ece62011-02-01 09:53:28 -05001899 struct kvm *kvm = me->kvm;
1900 struct kvm_vcpu *vcpu;
1901 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
1902 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301903 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05001904 int pass;
1905 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001906
Raghavendra K T4c088492012-07-18 19:07:46 +05301907 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05001908 /*
1909 * We boost the priority of a VCPU that is runnable but not
1910 * currently running, because it got preempted by something
1911 * else and called schedule in __vcpu_run. Hopefully that
1912 * VCPU is holding the lock that we need and will release it.
1913 * We approximate round-robin by starting at the last boosted VCPU.
1914 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301915 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05001916 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04001917 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05001918 i = last_boosted_vcpu;
1919 continue;
1920 } else if (pass && i > last_boosted_vcpu)
1921 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05301922 if (!ACCESS_ONCE(vcpu->preempted))
1923 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05001924 if (vcpu == me)
1925 continue;
Michael Mueller98f4a142014-02-26 16:14:18 +01001926 if (waitqueue_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05001927 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05301928 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
1929 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301930
1931 yielded = kvm_vcpu_yield_to(vcpu);
1932 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05001933 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05001934 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05301935 } else if (yielded < 0) {
1936 try--;
1937 if (!try)
1938 break;
Rik van Riel217ece62011-02-01 09:53:28 -05001939 }
Rik van Riel217ece62011-02-01 09:53:28 -05001940 }
1941 }
Raghavendra K T4c088492012-07-18 19:07:46 +05301942 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05301943
1944 /* Ensure vcpu is not eligible during next spinloop */
1945 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001946}
1947EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1948
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001949static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001950{
1951 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001952 struct page *page;
1953
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001954 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001955 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001956#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001957 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001958 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001959#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001960#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1961 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1962 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1963#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001964 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01001965 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001966 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001967 vmf->page = page;
1968 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001969}
1970
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001971static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001972 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001973};
1974
1975static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1976{
1977 vma->vm_ops = &kvm_vcpu_vm_ops;
1978 return 0;
1979}
1980
Avi Kivitybccf2152007-02-21 18:04:26 +02001981static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1982{
1983 struct kvm_vcpu *vcpu = filp->private_data;
1984
Al Viro66c0b392008-04-19 20:33:56 +01001985 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001986 return 0;
1987}
1988
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001989static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001990 .release = kvm_vcpu_release,
1991 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01001992#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02001993 .compat_ioctl = kvm_vcpu_compat_ioctl,
1994#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001995 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001996 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001997};
1998
1999/*
2000 * Allocates an inode for the vcpu.
2001 */
2002static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2003{
Yann Droneaud24009b02013-08-24 22:14:07 +02002004 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002005}
2006
Avi Kivityc5ea7662007-02-20 18:41:05 +02002007/*
2008 * Creates some virtual cpus. Good luck creating more than one.
2009 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002010static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002011{
2012 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002013 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002014
Andy Honig338c7db2013-11-18 16:09:22 -08002015 if (id >= KVM_MAX_VCPUS)
2016 return -EINVAL;
2017
Gleb Natapov73880c82009-06-09 15:56:28 +03002018 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002019 if (IS_ERR(vcpu))
2020 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002021
Avi Kivity15ad7142007-07-11 18:17:21 +03002022 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2023
Avi Kivity26e52152007-11-20 15:30:24 +02002024 r = kvm_arch_vcpu_setup(vcpu);
2025 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002026 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002027
Shaohua Li11ec2802007-07-23 14:51:37 +08002028 mutex_lock(&kvm->lock);
Avi Kivity3e515702012-03-05 14:23:29 +02002029 if (!kvm_vcpu_compatible(vcpu)) {
2030 r = -EINVAL;
2031 goto unlock_vcpu_destroy;
2032 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002033 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
2034 r = -EINVAL;
Jan Kiszkad7805922011-05-23 10:33:05 +02002035 goto unlock_vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002036 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002037
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002038 kvm_for_each_vcpu(r, v, kvm)
2039 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03002040 r = -EEXIST;
Jan Kiszkad7805922011-05-23 10:33:05 +02002041 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002042 }
2043
2044 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002045
2046 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002047 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002048 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002049 if (r < 0) {
2050 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002051 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002052 }
2053
2054 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
2055 smp_wmb();
2056 atomic_inc(&kvm->online_vcpus);
2057
Gleb Natapov73880c82009-06-09 15:56:28 +03002058 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002059 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002060 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002061
Jan Kiszkad7805922011-05-23 10:33:05 +02002062unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002063 mutex_unlock(&kvm->lock);
Jan Kiszkad7805922011-05-23 10:33:05 +02002064vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002065 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002066 return r;
2067}
2068
Avi Kivity1961d272007-03-05 19:46:05 +02002069static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2070{
2071 if (sigset) {
2072 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2073 vcpu->sigset_active = 1;
2074 vcpu->sigset = *sigset;
2075 } else
2076 vcpu->sigset_active = 0;
2077 return 0;
2078}
2079
Avi Kivitybccf2152007-02-21 18:04:26 +02002080static long kvm_vcpu_ioctl(struct file *filp,
2081 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002082{
Avi Kivitybccf2152007-02-21 18:04:26 +02002083 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002084 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002085 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002086 struct kvm_fpu *fpu = NULL;
2087 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002088
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002089 if (vcpu->kvm->mm != current->mm)
2090 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002091
David Matlack2ea75be2014-09-19 16:03:25 -07002092 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2093 return -EINVAL;
2094
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002095#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002096 /*
2097 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2098 * so vcpu_load() would break it.
2099 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002100 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002101 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2102#endif
2103
2104
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002105 r = vcpu_load(vcpu);
2106 if (r)
2107 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002108 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002109 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002110 r = -EINVAL;
2111 if (arg)
2112 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002113 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2114 /* The thread running this VCPU changed. */
2115 struct pid *oldpid = vcpu->pid;
2116 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002117
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002118 rcu_assign_pointer(vcpu->pid, newpid);
2119 if (oldpid)
2120 synchronize_rcu();
2121 put_pid(oldpid);
2122 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002123 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002124 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002125 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002126 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002127 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002128
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002129 r = -ENOMEM;
2130 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2131 if (!kvm_regs)
2132 goto out;
2133 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002134 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002135 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002136 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002137 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2138 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002139 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002140out_free1:
2141 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002142 break;
2143 }
2144 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002145 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002146
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002147 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002148 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2149 if (IS_ERR(kvm_regs)) {
2150 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002151 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002152 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002153 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002154 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002155 break;
2156 }
2157 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002158 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2159 r = -ENOMEM;
2160 if (!kvm_sregs)
2161 goto out;
2162 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002163 if (r)
2164 goto out;
2165 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002166 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002167 goto out;
2168 r = 0;
2169 break;
2170 }
2171 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002172 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2173 if (IS_ERR(kvm_sregs)) {
2174 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002175 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002176 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002177 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002178 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002179 break;
2180 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002181 case KVM_GET_MP_STATE: {
2182 struct kvm_mp_state mp_state;
2183
2184 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2185 if (r)
2186 goto out;
2187 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002188 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002189 goto out;
2190 r = 0;
2191 break;
2192 }
2193 case KVM_SET_MP_STATE: {
2194 struct kvm_mp_state mp_state;
2195
2196 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002197 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002198 goto out;
2199 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002200 break;
2201 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202 case KVM_TRANSLATE: {
2203 struct kvm_translation tr;
2204
2205 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002206 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002207 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002208 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002209 if (r)
2210 goto out;
2211 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002212 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002213 goto out;
2214 r = 0;
2215 break;
2216 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002217 case KVM_SET_GUEST_DEBUG: {
2218 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002219
2220 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002221 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002222 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002223 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002224 break;
2225 }
Avi Kivity1961d272007-03-05 19:46:05 +02002226 case KVM_SET_SIGNAL_MASK: {
2227 struct kvm_signal_mask __user *sigmask_arg = argp;
2228 struct kvm_signal_mask kvm_sigmask;
2229 sigset_t sigset, *p;
2230
2231 p = NULL;
2232 if (argp) {
2233 r = -EFAULT;
2234 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002235 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002236 goto out;
2237 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002238 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002239 goto out;
2240 r = -EFAULT;
2241 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002242 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002243 goto out;
2244 p = &sigset;
2245 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002246 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002247 break;
2248 }
Avi Kivityb8836732007-04-01 16:34:31 +03002249 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002250 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2251 r = -ENOMEM;
2252 if (!fpu)
2253 goto out;
2254 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002255 if (r)
2256 goto out;
2257 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002258 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002259 goto out;
2260 r = 0;
2261 break;
2262 }
2263 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002264 fpu = memdup_user(argp, sizeof(*fpu));
2265 if (IS_ERR(fpu)) {
2266 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002267 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002268 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002269 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002270 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002271 break;
2272 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002273 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002274 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002275 }
2276out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002277 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002278 kfree(fpu);
2279 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002280 return r;
2281}
2282
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002283#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002284static long kvm_vcpu_compat_ioctl(struct file *filp,
2285 unsigned int ioctl, unsigned long arg)
2286{
2287 struct kvm_vcpu *vcpu = filp->private_data;
2288 void __user *argp = compat_ptr(arg);
2289 int r;
2290
2291 if (vcpu->kvm->mm != current->mm)
2292 return -EIO;
2293
2294 switch (ioctl) {
2295 case KVM_SET_SIGNAL_MASK: {
2296 struct kvm_signal_mask __user *sigmask_arg = argp;
2297 struct kvm_signal_mask kvm_sigmask;
2298 compat_sigset_t csigset;
2299 sigset_t sigset;
2300
2301 if (argp) {
2302 r = -EFAULT;
2303 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002304 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002305 goto out;
2306 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002307 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002308 goto out;
2309 r = -EFAULT;
2310 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002311 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002312 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002313 sigset_from_compat(&sigset, &csigset);
2314 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2315 } else
2316 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002317 break;
2318 }
2319 default:
2320 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2321 }
2322
2323out:
2324 return r;
2325}
2326#endif
2327
Scott Wood852b6d52013-04-12 14:08:42 +00002328static int kvm_device_ioctl_attr(struct kvm_device *dev,
2329 int (*accessor)(struct kvm_device *dev,
2330 struct kvm_device_attr *attr),
2331 unsigned long arg)
2332{
2333 struct kvm_device_attr attr;
2334
2335 if (!accessor)
2336 return -EPERM;
2337
2338 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2339 return -EFAULT;
2340
2341 return accessor(dev, &attr);
2342}
2343
2344static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2345 unsigned long arg)
2346{
2347 struct kvm_device *dev = filp->private_data;
2348
2349 switch (ioctl) {
2350 case KVM_SET_DEVICE_ATTR:
2351 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2352 case KVM_GET_DEVICE_ATTR:
2353 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2354 case KVM_HAS_DEVICE_ATTR:
2355 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2356 default:
2357 if (dev->ops->ioctl)
2358 return dev->ops->ioctl(dev, ioctl, arg);
2359
2360 return -ENOTTY;
2361 }
2362}
2363
Scott Wood852b6d52013-04-12 14:08:42 +00002364static int kvm_device_release(struct inode *inode, struct file *filp)
2365{
2366 struct kvm_device *dev = filp->private_data;
2367 struct kvm *kvm = dev->kvm;
2368
Scott Wood852b6d52013-04-12 14:08:42 +00002369 kvm_put_kvm(kvm);
2370 return 0;
2371}
2372
2373static const struct file_operations kvm_device_fops = {
2374 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002375#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002376 .compat_ioctl = kvm_device_ioctl,
2377#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002378 .release = kvm_device_release,
2379};
2380
2381struct kvm_device *kvm_device_from_filp(struct file *filp)
2382{
2383 if (filp->f_op != &kvm_device_fops)
2384 return NULL;
2385
2386 return filp->private_data;
2387}
2388
Will Deacond60eacb2014-09-02 10:27:33 +01002389static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2390#ifdef CONFIG_KVM_MPIC
2391 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2392 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2393#endif
2394
2395#ifdef CONFIG_KVM_XICS
2396 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2397#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002398};
2399
2400int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2401{
2402 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2403 return -ENOSPC;
2404
2405 if (kvm_device_ops_table[type] != NULL)
2406 return -EEXIST;
2407
2408 kvm_device_ops_table[type] = ops;
2409 return 0;
2410}
2411
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002412void kvm_unregister_device_ops(u32 type)
2413{
2414 if (kvm_device_ops_table[type] != NULL)
2415 kvm_device_ops_table[type] = NULL;
2416}
2417
Scott Wood852b6d52013-04-12 14:08:42 +00002418static int kvm_ioctl_create_device(struct kvm *kvm,
2419 struct kvm_create_device *cd)
2420{
2421 struct kvm_device_ops *ops = NULL;
2422 struct kvm_device *dev;
2423 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2424 int ret;
2425
Will Deacond60eacb2014-09-02 10:27:33 +01002426 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002427 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002428
2429 ops = kvm_device_ops_table[cd->type];
2430 if (ops == NULL)
2431 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002432
2433 if (test)
2434 return 0;
2435
2436 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2437 if (!dev)
2438 return -ENOMEM;
2439
2440 dev->ops = ops;
2441 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002442
2443 ret = ops->create(dev, cd->type);
2444 if (ret < 0) {
2445 kfree(dev);
2446 return ret;
2447 }
2448
Yann Droneaud24009b02013-08-24 22:14:07 +02002449 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002450 if (ret < 0) {
2451 ops->destroy(dev);
2452 return ret;
2453 }
2454
Scott Wood07f0a7b2013-04-25 14:11:23 +00002455 list_add(&dev->vm_node, &kvm->devices);
Scott Wood852b6d52013-04-12 14:08:42 +00002456 kvm_get_kvm(kvm);
2457 cd->fd = ret;
2458 return 0;
2459}
2460
Alexander Graf92b591a2014-07-14 18:33:08 +02002461static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2462{
2463 switch (arg) {
2464 case KVM_CAP_USER_MEMORY:
2465 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2466 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
2467#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2468 case KVM_CAP_SET_BOOT_CPU_ID:
2469#endif
2470 case KVM_CAP_INTERNAL_ERROR_DATA:
2471#ifdef CONFIG_HAVE_KVM_MSI
2472 case KVM_CAP_SIGNAL_MSI:
2473#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002474#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002475 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002476 case KVM_CAP_IRQFD_RESAMPLE:
2477#endif
2478 case KVM_CAP_CHECK_EXTENSION_VM:
2479 return 1;
2480#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2481 case KVM_CAP_IRQ_ROUTING:
2482 return KVM_MAX_IRQ_ROUTES;
2483#endif
2484 default:
2485 break;
2486 }
2487 return kvm_vm_ioctl_check_extension(kvm, arg);
2488}
2489
Avi Kivitybccf2152007-02-21 18:04:26 +02002490static long kvm_vm_ioctl(struct file *filp,
2491 unsigned int ioctl, unsigned long arg)
2492{
2493 struct kvm *kvm = filp->private_data;
2494 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002495 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002496
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002497 if (kvm->mm != current->mm)
2498 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002499 switch (ioctl) {
2500 case KVM_CREATE_VCPU:
2501 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002502 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002503 case KVM_SET_USER_MEMORY_REGION: {
2504 struct kvm_userspace_memory_region kvm_userspace_mem;
2505
2506 r = -EFAULT;
2507 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002508 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002509 goto out;
2510
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002511 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002512 break;
2513 }
2514 case KVM_GET_DIRTY_LOG: {
2515 struct kvm_dirty_log log;
2516
2517 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002518 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002519 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002520 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002521 break;
2522 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002523#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2524 case KVM_REGISTER_COALESCED_MMIO: {
2525 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002526
Laurent Vivier5f94c172008-05-30 16:05:54 +02002527 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002528 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002529 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002530 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002531 break;
2532 }
2533 case KVM_UNREGISTER_COALESCED_MMIO: {
2534 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002535
Laurent Vivier5f94c172008-05-30 16:05:54 +02002536 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002537 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002538 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002539 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002540 break;
2541 }
2542#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04002543 case KVM_IRQFD: {
2544 struct kvm_irqfd data;
2545
2546 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002547 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecb2009-05-20 10:30:49 -04002548 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06002549 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecb2009-05-20 10:30:49 -04002550 break;
2551 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002552 case KVM_IOEVENTFD: {
2553 struct kvm_ioeventfd data;
2554
2555 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002556 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002557 goto out;
2558 r = kvm_ioeventfd(kvm, &data);
2559 break;
2560 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002561#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2562 case KVM_SET_BOOT_CPU_ID:
2563 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002564 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002565 if (atomic_read(&kvm->online_vcpus) != 0)
2566 r = -EBUSY;
2567 else
2568 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002569 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002570 break;
2571#endif
Jan Kiszka07975ad2012-03-29 21:14:12 +02002572#ifdef CONFIG_HAVE_KVM_MSI
2573 case KVM_SIGNAL_MSI: {
2574 struct kvm_msi msi;
2575
2576 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002577 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02002578 goto out;
2579 r = kvm_send_userspace_msi(kvm, &msi);
2580 break;
2581 }
2582#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002583#ifdef __KVM_HAVE_IRQ_LINE
2584 case KVM_IRQ_LINE_STATUS:
2585 case KVM_IRQ_LINE: {
2586 struct kvm_irq_level irq_event;
2587
2588 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002589 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002590 goto out;
2591
Yang Zhangaa2fbe62013-04-11 19:21:40 +08002592 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
2593 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002594 if (r)
2595 goto out;
2596
2597 r = -EFAULT;
2598 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08002599 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002600 goto out;
2601 }
2602
2603 r = 0;
2604 break;
2605 }
2606#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02002607#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2608 case KVM_SET_GSI_ROUTING: {
2609 struct kvm_irq_routing routing;
2610 struct kvm_irq_routing __user *urouting;
2611 struct kvm_irq_routing_entry *entries;
2612
2613 r = -EFAULT;
2614 if (copy_from_user(&routing, argp, sizeof(routing)))
2615 goto out;
2616 r = -EINVAL;
2617 if (routing.nr >= KVM_MAX_IRQ_ROUTES)
2618 goto out;
2619 if (routing.flags)
2620 goto out;
2621 r = -ENOMEM;
2622 entries = vmalloc(routing.nr * sizeof(*entries));
2623 if (!entries)
2624 goto out;
2625 r = -EFAULT;
2626 urouting = argp;
2627 if (copy_from_user(entries, urouting->entries,
2628 routing.nr * sizeof(*entries)))
2629 goto out_free_irq_routing;
2630 r = kvm_set_irq_routing(kvm, entries, routing.nr,
2631 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08002632out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02002633 vfree(entries);
2634 break;
2635 }
2636#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00002637 case KVM_CREATE_DEVICE: {
2638 struct kvm_create_device cd;
2639
2640 r = -EFAULT;
2641 if (copy_from_user(&cd, argp, sizeof(cd)))
2642 goto out;
2643
2644 r = kvm_ioctl_create_device(kvm, &cd);
2645 if (r)
2646 goto out;
2647
2648 r = -EFAULT;
2649 if (copy_to_user(argp, &cd, sizeof(cd)))
2650 goto out;
2651
2652 r = 0;
2653 break;
2654 }
Alexander Graf92b591a2014-07-14 18:33:08 +02002655 case KVM_CHECK_EXTENSION:
2656 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
2657 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02002658 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002659 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002660 }
2661out:
2662 return r;
2663}
2664
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002665#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002666struct compat_kvm_dirty_log {
2667 __u32 slot;
2668 __u32 padding1;
2669 union {
2670 compat_uptr_t dirty_bitmap; /* one bit per page */
2671 __u64 padding2;
2672 };
2673};
2674
2675static long kvm_vm_compat_ioctl(struct file *filp,
2676 unsigned int ioctl, unsigned long arg)
2677{
2678 struct kvm *kvm = filp->private_data;
2679 int r;
2680
2681 if (kvm->mm != current->mm)
2682 return -EIO;
2683 switch (ioctl) {
2684 case KVM_GET_DIRTY_LOG: {
2685 struct compat_kvm_dirty_log compat_log;
2686 struct kvm_dirty_log log;
2687
2688 r = -EFAULT;
2689 if (copy_from_user(&compat_log, (void __user *)arg,
2690 sizeof(compat_log)))
2691 goto out;
2692 log.slot = compat_log.slot;
2693 log.padding1 = compat_log.padding1;
2694 log.padding2 = compat_log.padding2;
2695 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2696
2697 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002698 break;
2699 }
2700 default:
2701 r = kvm_vm_ioctl(filp, ioctl, arg);
2702 }
2703
2704out:
2705 return r;
2706}
2707#endif
2708
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002709static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002710 .release = kvm_vm_release,
2711 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002712#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002713 .compat_ioctl = kvm_vm_compat_ioctl,
2714#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02002715 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002716};
2717
Carsten Ottee08b9632012-01-04 10:25:20 +01002718static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02002719{
Heiko Carstensaac87632010-10-27 17:22:10 +02002720 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002721 struct kvm *kvm;
2722
Carsten Ottee08b9632012-01-04 10:25:20 +01002723 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04002724 if (IS_ERR(kvm))
2725 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002726#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2727 r = kvm_coalesced_mmio_init(kvm);
2728 if (r < 0) {
2729 kvm_put_kvm(kvm);
2730 return r;
2731 }
2732#endif
Yann Droneaud24009b02013-08-24 22:14:07 +02002733 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR | O_CLOEXEC);
Heiko Carstensaac87632010-10-27 17:22:10 +02002734 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002735 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002736
Heiko Carstensaac87632010-10-27 17:22:10 +02002737 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002738}
2739
2740static long kvm_dev_ioctl(struct file *filp,
2741 unsigned int ioctl, unsigned long arg)
2742{
Avi Kivity07c45a32007-03-07 13:05:38 +02002743 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002744
2745 switch (ioctl) {
2746 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002747 if (arg)
2748 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002749 r = KVM_API_VERSION;
2750 break;
2751 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01002752 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002753 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002754 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02002755 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002756 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002757 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02002758 if (arg)
2759 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002760 r = PAGE_SIZE; /* struct kvm_run */
2761#ifdef CONFIG_X86
2762 r += PAGE_SIZE; /* pio data page */
2763#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002764#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2765 r += PAGE_SIZE; /* coalesced mmio ring page */
2766#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002767 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002768 case KVM_TRACE_ENABLE:
2769 case KVM_TRACE_PAUSE:
2770 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002771 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002772 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002773 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002774 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002775 }
2776out:
2777 return r;
2778}
2779
Avi Kivity6aa8b732006-12-10 02:21:36 -08002780static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002781 .unlocked_ioctl = kvm_dev_ioctl,
2782 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002783 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002784};
2785
2786static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002787 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002788 "kvm",
2789 &kvm_chardev_ops,
2790};
2791
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002792static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002793{
2794 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002795 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002796
Rusty Russell7f59f492008-12-07 21:25:45 +10302797 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002798 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002799
Rusty Russell7f59f492008-12-07 21:25:45 +10302800 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002801
Radim Krčmář13a34e02014-08-28 15:13:03 +02002802 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02002803
2804 if (r) {
2805 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2806 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08002807 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02002808 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002809}
2810
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002811static void hardware_enable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002812{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002813 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002814 if (kvm_usage_count)
2815 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002816 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002817}
2818
2819static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002820{
2821 int cpu = raw_smp_processor_id();
2822
Rusty Russell7f59f492008-12-07 21:25:45 +10302823 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002824 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302825 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02002826 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03002827}
2828
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002829static void hardware_disable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002830{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002831 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002832 if (kvm_usage_count)
2833 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002834 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002835}
2836
Alexander Graf10474ae2009-09-15 11:37:46 +02002837static void hardware_disable_all_nolock(void)
2838{
2839 BUG_ON(!kvm_usage_count);
2840
2841 kvm_usage_count--;
2842 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002843 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002844}
2845
2846static void hardware_disable_all(void)
2847{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002848 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002849 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002850 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002851}
2852
2853static int hardware_enable_all(void)
2854{
2855 int r = 0;
2856
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002857 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002858
2859 kvm_usage_count++;
2860 if (kvm_usage_count == 1) {
2861 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002862 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002863
2864 if (atomic_read(&hardware_enable_failed)) {
2865 hardware_disable_all_nolock();
2866 r = -EBUSY;
2867 }
2868 }
2869
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002870 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002871
2872 return r;
2873}
2874
Avi Kivity774c47f2007-02-12 00:54:47 -08002875static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2876 void *v)
2877{
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002878 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002879 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002880 case CPU_DYING:
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002881 hardware_disable();
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002882 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002883 case CPU_STARTING:
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002884 hardware_enable();
Avi Kivity774c47f2007-02-12 00:54:47 -08002885 break;
2886 }
2887 return NOTIFY_OK;
2888}
2889
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002890static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002891 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002892{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002893 /*
2894 * Some (well, at least mine) BIOSes hang on reboot if
2895 * in vmx root mode.
2896 *
2897 * And Intel TXT required VMX off for all cpu when system shutdown.
2898 */
Xiubo Li1170adc2015-02-26 14:58:26 +08002899 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08002900 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002901 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002902 return NOTIFY_OK;
2903}
2904
2905static struct notifier_block kvm_reboot_notifier = {
2906 .notifier_call = kvm_reboot,
2907 .priority = 0,
2908};
2909
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002910static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002911{
2912 int i;
2913
2914 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03002915 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002916
2917 kvm_iodevice_destructor(pos);
2918 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002919 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002920}
2921
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002922static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08002923 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03002924{
Sasha Levin743eeb02011-07-27 16:00:48 +03002925 if (r1->addr < r2->addr)
2926 return -1;
2927 if (r1->addr + r1->len > r2->addr + r2->len)
2928 return 1;
2929 return 0;
2930}
2931
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02002932static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
2933{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002934 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02002935}
2936
Geoff Levand39369f72013-04-05 19:20:30 +00002937static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03002938 gpa_t addr, int len)
2939{
Sasha Levin743eeb02011-07-27 16:00:48 +03002940 bus->range[bus->dev_count++] = (struct kvm_io_range) {
2941 .addr = addr,
2942 .len = len,
2943 .dev = dev,
2944 };
2945
2946 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
2947 kvm_io_bus_sort_cmp, NULL);
2948
2949 return 0;
2950}
2951
Geoff Levand39369f72013-04-05 19:20:30 +00002952static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03002953 gpa_t addr, int len)
2954{
2955 struct kvm_io_range *range, key;
2956 int off;
2957
2958 key = (struct kvm_io_range) {
2959 .addr = addr,
2960 .len = len,
2961 };
2962
2963 range = bsearch(&key, bus->range, bus->dev_count,
2964 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
2965 if (range == NULL)
2966 return -ENOENT;
2967
2968 off = range - bus->range;
2969
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002970 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03002971 off--;
2972
2973 return off;
2974}
2975
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002976static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02002977 struct kvm_io_range *range, const void *val)
2978{
2979 int idx;
2980
2981 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
2982 if (idx < 0)
2983 return -EOPNOTSUPP;
2984
2985 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02002986 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002987 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02002988 range->len, val))
2989 return idx;
2990 idx++;
2991 }
2992
2993 return -EOPNOTSUPP;
2994}
2995
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002996/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00002997int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002998 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002999{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003000 struct kvm_io_bus *bus;
3001 struct kvm_io_range range;
3002 int r;
3003
3004 range = (struct kvm_io_range) {
3005 .addr = addr,
3006 .len = len,
3007 };
3008
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003009 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3010 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003011 return r < 0 ? r : 0;
3012}
3013
3014/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003015int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3016 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003017{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003018 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003019 struct kvm_io_range range;
3020
3021 range = (struct kvm_io_range) {
3022 .addr = addr,
3023 .len = len,
3024 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003025
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003026 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003027
3028 /* First try the device referenced by cookie. */
3029 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003030 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003031 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003032 val))
3033 return cookie;
3034
3035 /*
3036 * cookie contained garbage; fall back to search and return the
3037 * correct cookie value.
3038 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003039 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003040}
3041
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003042static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3043 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003044{
3045 int idx;
3046
3047 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003048 if (idx < 0)
3049 return -EOPNOTSUPP;
3050
3051 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003052 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003053 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003054 range->len, val))
3055 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003056 idx++;
3057 }
3058
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003059 return -EOPNOTSUPP;
3060}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003061EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003062
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003063/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003064int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003065 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003066{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003067 struct kvm_io_bus *bus;
3068 struct kvm_io_range range;
3069 int r;
3070
3071 range = (struct kvm_io_range) {
3072 .addr = addr,
3073 .len = len,
3074 };
3075
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003076 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3077 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003078 return r < 0 ? r : 0;
3079}
3080
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003081
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003082/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003083int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3084 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003085{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003086 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003087
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003088 bus = kvm->buses[bus_idx];
Amos Kong6ea34c92013-05-25 06:44:15 +08003089 /* exclude ioeventfd which is limited by maximum fd */
3090 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003091 return -ENOSPC;
3092
Amos Konga13007162012-03-09 12:17:32 +08003093 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
3094 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003095 if (!new_bus)
3096 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003097 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3098 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003099 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003100 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3101 synchronize_srcu_expedited(&kvm->srcu);
3102 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003103
3104 return 0;
3105}
3106
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003107/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003108int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3109 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003110{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003111 int i, r;
3112 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003113
Sasha Levincdfca7b2011-12-04 19:36:28 +02003114 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003115 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08003116 for (i = 0; i < bus->dev_count; i++)
3117 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003118 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003119 break;
3120 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003121
Amos Konga13007162012-03-09 12:17:32 +08003122 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003123 return r;
Amos Konga13007162012-03-09 12:17:32 +08003124
3125 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
3126 sizeof(struct kvm_io_range)), GFP_KERNEL);
3127 if (!new_bus)
3128 return -ENOMEM;
3129
3130 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3131 new_bus->dev_count--;
3132 memcpy(new_bus->range + i, bus->range + i + 1,
3133 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003134
3135 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3136 synchronize_srcu_expedited(&kvm->srcu);
3137 kfree(bus);
3138 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003139}
3140
Avi Kivity774c47f2007-02-12 00:54:47 -08003141static struct notifier_block kvm_cpu_notifier = {
3142 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08003143};
3144
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003145static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003146{
3147 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003148 struct kvm *kvm;
3149
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003150 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003151 spin_lock(&kvm_lock);
Avi Kivityba1389b2007-11-18 16:24:12 +02003152 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003153 *val += *(u32 *)((void *)kvm + offset);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003154 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003155 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003156}
3157
3158DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
3159
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003160static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003161{
3162 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003163 struct kvm *kvm;
3164 struct kvm_vcpu *vcpu;
3165 int i;
3166
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003167 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003168 spin_lock(&kvm_lock);
Avi Kivity1165f5f2007-04-19 17:27:43 +03003169 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03003170 kvm_for_each_vcpu(i, vcpu, kvm)
3171 *val += *(u32 *)((void *)vcpu + offset);
3172
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003173 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003174 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003175}
3176
Avi Kivityba1389b2007-11-18 16:24:12 +02003177DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
3178
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003179static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003180 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3181 [KVM_STAT_VM] = &vm_stat_fops,
3182};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003183
Hamo4f69b682011-12-15 14:23:16 +08003184static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003185{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003186 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003187 struct kvm_stats_debugfs_item *p;
3188
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003189 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003190 if (kvm_debugfs_dir == NULL)
3191 goto out;
3192
3193 for (p = debugfs_entries; p->name; ++p) {
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003194 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03003195 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02003196 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08003197 if (p->dentry == NULL)
3198 goto out_dir;
3199 }
3200
3201 return 0;
3202
3203out_dir:
3204 debugfs_remove_recursive(kvm_debugfs_dir);
3205out:
3206 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003207}
3208
3209static void kvm_exit_debug(void)
3210{
3211 struct kvm_stats_debugfs_item *p;
3212
3213 for (p = debugfs_entries; p->name; ++p)
3214 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003215 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003216}
3217
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003218static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003219{
Alexander Graf10474ae2009-09-15 11:37:46 +02003220 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003221 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003222 return 0;
3223}
3224
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003225static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003226{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003227 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003228 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003229 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003230 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003231}
3232
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003233static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003234 .suspend = kvm_suspend,
3235 .resume = kvm_resume,
3236};
3237
Avi Kivity15ad7142007-07-11 18:17:21 +03003238static inline
3239struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3240{
3241 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3242}
3243
3244static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3245{
3246 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003247
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303248 if (vcpu->preempted)
3249 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003250
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003251 kvm_arch_sched_in(vcpu, cpu);
3252
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003253 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003254}
3255
3256static void kvm_sched_out(struct preempt_notifier *pn,
3257 struct task_struct *next)
3258{
3259 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3260
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303261 if (current->state == TASK_RUNNING)
3262 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003263 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003264}
3265
Avi Kivity0ee75be2010-04-28 15:39:01 +03003266int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003267 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003268{
3269 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003270 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003271
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003272 r = kvm_arch_init(opaque);
3273 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003274 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003275
Asias He7dac16c2013-05-08 10:57:29 +08003276 /*
3277 * kvm_arch_init makes sure there's at most one caller
3278 * for architectures that support multiple implementations,
3279 * like intel and amd on x86.
3280 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3281 * conflicts in case kvm is already setup for another implementation.
3282 */
3283 r = kvm_irqfd_init();
3284 if (r)
3285 goto out_irqfd;
3286
Avi Kivity8437a612009-06-06 14:52:35 -07003287 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303288 r = -ENOMEM;
3289 goto out_free_0;
3290 }
3291
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003292 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003293 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303294 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003295
Yang, Sheng002c7f72007-07-31 14:23:01 +03003296 for_each_online_cpu(cpu) {
3297 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003298 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003299 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003300 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003301 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003302 }
3303
Avi Kivity774c47f2007-02-12 00:54:47 -08003304 r = register_cpu_notifier(&kvm_cpu_notifier);
3305 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003306 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003307 register_reboot_notifier(&kvm_reboot_notifier);
3308
Rusty Russellc16f8622007-07-30 21:12:19 +10003309 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003310 if (!vcpu_align)
3311 vcpu_align = __alignof__(struct kvm_vcpu);
3312 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003313 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003314 if (!kvm_vcpu_cache) {
3315 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003316 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003317 }
3318
Gleb Natapovaf585b92010-10-14 11:22:46 +02003319 r = kvm_async_pf_init();
3320 if (r)
3321 goto out_free;
3322
Avi Kivity6aa8b732006-12-10 02:21:36 -08003323 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003324 kvm_vm_fops.owner = module;
3325 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003326
3327 r = misc_register(&kvm_dev);
3328 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003329 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003330 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003331 }
3332
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003333 register_syscore_ops(&kvm_syscore_ops);
3334
Avi Kivity15ad7142007-07-11 18:17:21 +03003335 kvm_preempt_ops.sched_in = kvm_sched_in;
3336 kvm_preempt_ops.sched_out = kvm_sched_out;
3337
Hamo4f69b682011-12-15 14:23:16 +08003338 r = kvm_init_debug();
3339 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003340 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08003341 goto out_undebugfs;
3342 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003343
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02003344 r = kvm_vfio_ops_init();
3345 WARN_ON(r);
3346
Avi Kivityc7addb92007-09-16 18:58:32 +02003347 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003348
Hamo4f69b682011-12-15 14:23:16 +08003349out_undebugfs:
3350 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08003351 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003352out_unreg:
3353 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003355 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003356out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003357 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08003358 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003359out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08003360out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003361 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10303362out_free_0a:
3363 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003364out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003365 kvm_irqfd_exit();
3366out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08003367 kvm_arch_exit();
3368out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003369 return r;
3370}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003371EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003372
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003373void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003374{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003375 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003376 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10003377 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003378 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003379 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003380 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003381 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003382 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003383 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003384 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003385 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10303386 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08003387 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003388}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003389EXPORT_SYMBOL_GPL(kvm_exit);