blob: 3772f7dcc72d3f725b19c4abef5cbe980506f89f [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010035#include <linux/sched/signal.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010036#include <linux/sched/mm.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010037#include <linux/sched/stat.h>
Avi Kivityd9e368d2007-06-07 19:18:30 +030038#include <linux/cpumask.h>
39#include <linux/smp.h>
Avi Kivityd6d28162007-06-28 08:38:16 -040040#include <linux/anon_inodes.h>
Avi Kivity04d2cc72007-09-10 18:10:54 +030041#include <linux/profile.h>
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050042#include <linux/kvm_para.h>
Izik Eidus6fc138d2007-10-09 19:20:39 +020043#include <linux/pagemap.h>
Anthony Liguori8d4e1282007-10-18 09:59:34 -050044#include <linux/mman.h>
Anthony Liguori35149e22008-04-02 14:46:56 -050045#include <linux/swap.h>
Sheng Yange56d5322009-03-12 21:45:39 +080046#include <linux/bitops.h>
Marcelo Tosatti547de292009-05-07 17:55:13 -030047#include <linux/spinlock.h>
Arnd Bergmann6ff58942009-10-22 14:19:27 +020048#include <linux/compat.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020049#include <linux/srcu.h>
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +010050#include <linux/hugetlb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Sasha Levin743eeb02011-07-27 16:00:48 +030052#include <linux/sort.h>
53#include <linux/bsearch.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080054
Avi Kivitye4956062007-06-28 14:15:57 -040055#include <asm/processor.h>
Avi Kivitye4956062007-06-28 14:15:57 -040056#include <asm/io.h>
David Matlack2ea75be2014-09-19 16:03:25 -070057#include <asm/ioctl.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080058#include <linux/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020059#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080060
Laurent Vivier5f94c172008-05-30 16:05:54 +020061#include "coalesced_mmio.h"
Gleb Natapovaf585b92010-10-14 11:22:46 +020062#include "async_pf.h"
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +020063#include "vfio.h"
Laurent Vivier5f94c172008-05-30 16:05:54 +020064
Marcelo Tosatti229456f2009-06-17 09:22:14 -030065#define CREATE_TRACE_POINTS
66#include <trace/events/kvm.h>
67
Janosch Frank536a6f82016-05-18 13:26:23 +020068/* Worst case buffer size needed for holding an integer. */
69#define ITOA_MAX_LEN 12
70
Avi Kivity6aa8b732006-12-10 02:21:36 -080071MODULE_AUTHOR("Qumranet");
72MODULE_LICENSE("GPL");
73
David Hildenbrand920552b2015-09-18 12:34:53 +020074/* Architectures should define their poll value according to the halt latency */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110075unsigned int halt_poll_ns = KVM_HALT_POLL_NS_DEFAULT;
Paolo Bonzinif7819512015-02-04 18:20:58 +010076module_param(halt_poll_ns, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110077EXPORT_SYMBOL_GPL(halt_poll_ns);
Paolo Bonzinif7819512015-02-04 18:20:58 +010078
Wanpeng Liaca6ff22015-09-03 22:07:38 +080079/* Default doubles per-vcpu halt_poll_ns. */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110080unsigned int halt_poll_ns_grow = 2;
Christian Borntraeger6b6de682016-02-09 13:47:55 +010081module_param(halt_poll_ns_grow, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110082EXPORT_SYMBOL_GPL(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +080083
84/* Default resets per-vcpu halt_poll_ns . */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110085unsigned int halt_poll_ns_shrink;
Christian Borntraeger6b6de682016-02-09 13:47:55 +010086module_param(halt_poll_ns_shrink, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110087EXPORT_SYMBOL_GPL(halt_poll_ns_shrink);
Wanpeng Liaca6ff22015-09-03 22:07:38 +080088
Marcelo Tosattifa40a822009-06-04 15:08:24 -030089/*
90 * Ordering of locks:
91 *
Xiubo Lib7d409d2015-02-26 14:58:24 +080092 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030093 */
94
Paolo Bonzini2f303b72013-09-25 13:53:07 +020095DEFINE_SPINLOCK(kvm_lock);
Paolo Bonzini4a937f92013-09-10 12:58:35 +020096static DEFINE_RAW_SPINLOCK(kvm_count_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080097LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080098
Rusty Russell7f59f492008-12-07 21:25:45 +103099static cpumask_var_t cpus_hardware_enabled;
Xiubo Lif4fee932015-02-26 14:58:21 +0800100static int kvm_usage_count;
Alexander Graf10474ae2009-09-15 11:37:46 +0200101static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +0300102
Rusty Russellc16f8622007-07-30 21:12:19 +1000103struct kmem_cache *kvm_vcpu_cache;
104EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +0300105
Avi Kivity15ad7142007-07-11 18:17:21 +0300106static __read_mostly struct preempt_ops kvm_preempt_ops;
107
Hollis Blanchard76f7c872008-04-15 16:05:42 -0500108struct dentry *kvm_debugfs_dir;
Paul Mackerrase23a8082015-03-28 14:21:01 +1100109EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110
Janosch Frank536a6f82016-05-18 13:26:23 +0200111static int kvm_debugfs_num_entries;
112static const struct file_operations *stat_fops_per_vm[];
113
Avi Kivitybccf2152007-02-21 18:04:26 +0200114static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
115 unsigned long arg);
Christian Borntraegerde8e5d72015-02-03 09:35:15 +0100116#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +0200117static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
118 unsigned long arg);
119#endif
Alexander Graf10474ae2009-09-15 11:37:46 +0200120static int hardware_enable_all(void);
121static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +0200122
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200123static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
Stephen Hemminger79408762013-12-29 12:12:29 -0800124
Dan Williamsba049e92016-01-15 16:56:11 -0800125static void kvm_release_pfn_dirty(kvm_pfn_t pfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +0200126static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot, gfn_t gfn);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200127
Andi Kleen52480132014-02-08 08:51:57 +0100128__visible bool kvm_rebooting;
Avi Kivityb7c41452010-12-02 17:52:50 +0200129EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300130
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300131static bool largepages_enabled = true;
132
Dan Williamsba049e92016-01-15 16:56:11 -0800133bool kvm_is_reserved_pfn(kvm_pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300134{
Andrea Arcangeli11feeb42013-07-25 03:04:38 +0200135 if (pfn_valid(pfn))
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000136 return PageReserved(pfn_to_page(pfn));
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300137
138 return true;
139}
140
Avi Kivity6aa8b732006-12-10 02:21:36 -0800141/*
142 * Switches to specified vcpu, until a matching vcpu_put()
143 */
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300144int vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800145{
Avi Kivity15ad7142007-07-11 18:17:21 +0300146 int cpu;
147
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300148 if (mutex_lock_killable(&vcpu->mutex))
149 return -EINTR;
Avi Kivity15ad7142007-07-11 18:17:21 +0300150 cpu = get_cpu();
151 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200152 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300153 put_cpu();
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300154 return 0;
Avi Kivitybccf2152007-02-21 18:04:26 +0200155}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700156EXPORT_SYMBOL_GPL(vcpu_load);
Avi Kivitybccf2152007-02-21 18:04:26 +0200157
Carsten Otte313a3dc2007-10-11 19:16:52 +0200158void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800159{
Avi Kivity15ad7142007-07-11 18:17:21 +0300160 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200161 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300162 preempt_notifier_unregister(&vcpu->preempt_notifier);
163 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800164 mutex_unlock(&vcpu->mutex);
165}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700166EXPORT_SYMBOL_GPL(vcpu_put);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800167
Avi Kivityd9e368d2007-06-07 19:18:30 +0300168static void ack_flush(void *_completed)
169{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300170}
171
Tang Chen445b8232014-09-24 15:57:55 +0800172bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300173{
Avi Kivity597a5f52008-07-20 14:24:22 +0300174 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030175 cpumask_var_t cpus;
176 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300177 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300178
Li Zefan79f55992009-06-15 14:58:26 +0800179 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030180
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800181 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300182 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800183 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300184 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800185
Lan Tianyua30a0502016-03-13 11:10:26 +0800186 /* Set ->requests bit before we read ->mode. */
187 smp_mb__after_atomic();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800188
Radim Krčmář6c6e8362017-04-26 22:32:23 +0200189 if (!(req & KVM_REQUEST_NO_WAKEUP))
190 kvm_vcpu_wake_up(vcpu);
191
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800192 if (cpus != NULL && cpu != -1 && cpu != me &&
193 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030194 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300195 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030196 if (unlikely(cpus == NULL))
197 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
198 else if (!cpumask_empty(cpus))
199 smp_call_function_many(cpus, ack_flush, NULL, 1);
200 else
201 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800202 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030203 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030204 return called;
205}
206
Mario Smarducha6d51012015-01-15 15:58:52 -0800207#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030208void kvm_flush_remote_tlbs(struct kvm *kvm)
209{
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800210 /*
211 * Read tlbs_dirty before setting KVM_REQ_TLB_FLUSH in
212 * kvm_make_all_cpus_request.
213 */
214 long dirty_count = smp_load_acquire(&kvm->tlbs_dirty);
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800215
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800216 /*
217 * We want to publish modifications to the page tables before reading
218 * mode. Pairs with a memory barrier in arch-specific code.
219 * - x86: smp_mb__after_srcu_read_unlock in vcpu_enter_guest
220 * and smp_mb in walk_shadow_page_lockless_begin/end.
221 * - powerpc: smp_mb in kvmppc_prepare_to_enter.
222 *
223 * There is already an smp_mb__after_atomic() before
224 * kvm_make_all_cpus_request() reads vcpu->mode. We reuse that
225 * barrier here.
226 */
Tang Chen445b8232014-09-24 15:57:55 +0800227 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030228 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800229 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300230}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530231EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800232#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300233
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500234void kvm_reload_remote_mmus(struct kvm *kvm)
235{
Tang Chen445b8232014-09-24 15:57:55 +0800236 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500237}
238
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000239int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
240{
241 struct page *page;
242 int r;
243
244 mutex_init(&vcpu->mutex);
245 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000246 vcpu->kvm = kvm;
247 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500248 vcpu->pid = NULL;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100249 init_swait_queue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200250 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000251
Feng Wubf9f6ac2015-09-18 22:29:55 +0800252 vcpu->pre_pcpu = -1;
253 INIT_LIST_HEAD(&vcpu->blocked_vcpu_list);
254
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000255 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
256 if (!page) {
257 r = -ENOMEM;
258 goto fail;
259 }
260 vcpu->run = page_address(page);
261
Raghavendra K T4c088492012-07-18 19:07:46 +0530262 kvm_vcpu_set_in_spin_loop(vcpu, false);
263 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530264 vcpu->preempted = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530265
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800266 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000267 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800268 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000269 return 0;
270
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000271fail_free_run:
272 free_page((unsigned long)vcpu->run);
273fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000274 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000275}
276EXPORT_SYMBOL_GPL(kvm_vcpu_init);
277
278void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
279{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500280 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800281 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000282 free_page((unsigned long)vcpu->run);
283}
284EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
285
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200286#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
287static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
288{
289 return container_of(mn, struct kvm, mmu_notifier);
290}
291
292static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
293 struct mm_struct *mm,
294 unsigned long address)
295{
296 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200297 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200298
299 /*
300 * When ->invalidate_page runs, the linux pte has been zapped
301 * already but the page is still allocated until
302 * ->invalidate_page returns. So if we increase the sequence
303 * here the kvm page fault will notice if the spte can't be
304 * established because the page is going to be freed. If
305 * instead the kvm page fault establishes the spte before
306 * ->invalidate_page runs, kvm_unmap_hva will release it
307 * before returning.
308 *
309 * The sequence increase only need to be seen at spin_unlock
310 * time, and not at spin_lock time.
311 *
312 * Increasing the sequence after the spin_unlock would be
313 * unsafe because the kvm page fault could then establish the
314 * pte after kvm_unmap_hva returned, without noticing the page
315 * is going to be freed.
316 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200317 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200318 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900319
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200320 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800321 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200322 /* we've to flush the tlb before the pages can be freed */
323 if (need_tlb_flush)
324 kvm_flush_remote_tlbs(kvm);
325
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900326 spin_unlock(&kvm->mmu_lock);
Tang Chenfe71557a2014-09-24 15:57:57 +0800327
328 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
329
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900330 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200331}
332
Izik Eidus3da0dd42009-09-23 21:47:18 +0300333static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
334 struct mm_struct *mm,
335 unsigned long address,
336 pte_t pte)
337{
338 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200339 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300340
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200341 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300342 spin_lock(&kvm->mmu_lock);
343 kvm->mmu_notifier_seq++;
344 kvm_set_spte_hva(kvm, address, pte);
345 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200346 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300347}
348
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200349static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
350 struct mm_struct *mm,
351 unsigned long start,
352 unsigned long end)
353{
354 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200355 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200356
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200357 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200358 spin_lock(&kvm->mmu_lock);
359 /*
360 * The count increase must become visible at unlock time as no
361 * spte can be established without taking the mmu_lock and
362 * count is also read inside the mmu_lock critical section.
363 */
364 kvm->mmu_notifier_count++;
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +0900365 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800366 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200367 /* we've to flush the tlb before the pages can be freed */
368 if (need_tlb_flush)
369 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900370
371 spin_unlock(&kvm->mmu_lock);
372 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200373}
374
375static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
376 struct mm_struct *mm,
377 unsigned long start,
378 unsigned long end)
379{
380 struct kvm *kvm = mmu_notifier_to_kvm(mn);
381
382 spin_lock(&kvm->mmu_lock);
383 /*
384 * This sequence increase will notify the kvm page fault that
385 * the page that is going to be mapped in the spte could have
386 * been freed.
387 */
388 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000389 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200390 /*
391 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000392 * below count decrease, which is ensured by the smp_wmb above
393 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200394 */
395 kvm->mmu_notifier_count--;
396 spin_unlock(&kvm->mmu_lock);
397
398 BUG_ON(kvm->mmu_notifier_count < 0);
399}
400
401static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
402 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700403 unsigned long start,
404 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200405{
406 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200407 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200408
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200409 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200410 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200411
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700412 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200413 if (young)
414 kvm_flush_remote_tlbs(kvm);
415
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900416 spin_unlock(&kvm->mmu_lock);
417 srcu_read_unlock(&kvm->srcu, idx);
418
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200419 return young;
420}
421
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700422static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn,
423 struct mm_struct *mm,
424 unsigned long start,
425 unsigned long end)
426{
427 struct kvm *kvm = mmu_notifier_to_kvm(mn);
428 int young, idx;
429
430 idx = srcu_read_lock(&kvm->srcu);
431 spin_lock(&kvm->mmu_lock);
432 /*
433 * Even though we do not flush TLB, this will still adversely
434 * affect performance on pre-Haswell Intel EPT, where there is
435 * no EPT Access Bit to clear so that we have to tear down EPT
436 * tables instead. If we find this unacceptable, we can always
437 * add a parameter to kvm_age_hva so that it effectively doesn't
438 * do anything on clear_young.
439 *
440 * Also note that currently we never issue secondary TLB flushes
441 * from clear_young, leaving this job up to the regular system
442 * cadence. If we find this inaccurate, we might come up with a
443 * more sophisticated heuristic later.
444 */
445 young = kvm_age_hva(kvm, start, end);
446 spin_unlock(&kvm->mmu_lock);
447 srcu_read_unlock(&kvm->srcu, idx);
448
449 return young;
450}
451
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800452static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
453 struct mm_struct *mm,
454 unsigned long address)
455{
456 struct kvm *kvm = mmu_notifier_to_kvm(mn);
457 int young, idx;
458
459 idx = srcu_read_lock(&kvm->srcu);
460 spin_lock(&kvm->mmu_lock);
461 young = kvm_test_age_hva(kvm, address);
462 spin_unlock(&kvm->mmu_lock);
463 srcu_read_unlock(&kvm->srcu, idx);
464
465 return young;
466}
467
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100468static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
469 struct mm_struct *mm)
470{
471 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800472 int idx;
473
474 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300475 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800476 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100477}
478
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200479static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
480 .invalidate_page = kvm_mmu_notifier_invalidate_page,
481 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
482 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
483 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700484 .clear_young = kvm_mmu_notifier_clear_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800485 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300486 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100487 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200488};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200489
490static int kvm_init_mmu_notifier(struct kvm *kvm)
491{
492 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
493 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
494}
495
496#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
497
498static int kvm_init_mmu_notifier(struct kvm *kvm)
499{
500 return 0;
501}
502
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200503#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
504
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200505static struct kvm_memslots *kvm_alloc_memslots(void)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800506{
507 int i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200508 struct kvm_memslots *slots;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800509
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200510 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
511 if (!slots)
512 return NULL;
513
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800514 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800515 slots->id_to_index[i] = slots->memslots[i].id = i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200516
517 return slots;
518}
519
520static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
521{
522 if (!memslot->dirty_bitmap)
523 return;
524
525 kvfree(memslot->dirty_bitmap);
526 memslot->dirty_bitmap = NULL;
527}
528
529/*
530 * Free any memory in @free but not in @dont.
531 */
532static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
533 struct kvm_memory_slot *dont)
534{
535 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
536 kvm_destroy_dirty_bitmap(free);
537
538 kvm_arch_free_memslot(kvm, free, dont);
539
540 free->npages = 0;
541}
542
543static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
544{
545 struct kvm_memory_slot *memslot;
546
547 if (!slots)
548 return;
549
550 kvm_for_each_memslot(memslot, slots)
551 kvm_free_memslot(kvm, memslot, NULL);
552
553 kvfree(slots);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800554}
555
Janosch Frank536a6f82016-05-18 13:26:23 +0200556static void kvm_destroy_vm_debugfs(struct kvm *kvm)
557{
558 int i;
559
560 if (!kvm->debugfs_dentry)
561 return;
562
563 debugfs_remove_recursive(kvm->debugfs_dentry);
564
Luiz Capitulino9d5a1dc2016-09-07 14:47:21 -0400565 if (kvm->debugfs_stat_data) {
566 for (i = 0; i < kvm_debugfs_num_entries; i++)
567 kfree(kvm->debugfs_stat_data[i]);
568 kfree(kvm->debugfs_stat_data);
569 }
Janosch Frank536a6f82016-05-18 13:26:23 +0200570}
571
572static int kvm_create_vm_debugfs(struct kvm *kvm, int fd)
573{
574 char dir_name[ITOA_MAX_LEN * 2];
575 struct kvm_stat_data *stat_data;
576 struct kvm_stats_debugfs_item *p;
577
578 if (!debugfs_initialized())
579 return 0;
580
581 snprintf(dir_name, sizeof(dir_name), "%d-%d", task_pid_nr(current), fd);
582 kvm->debugfs_dentry = debugfs_create_dir(dir_name,
583 kvm_debugfs_dir);
584 if (!kvm->debugfs_dentry)
585 return -ENOMEM;
586
587 kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries,
588 sizeof(*kvm->debugfs_stat_data),
589 GFP_KERNEL);
590 if (!kvm->debugfs_stat_data)
591 return -ENOMEM;
592
593 for (p = debugfs_entries; p->name; p++) {
594 stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL);
595 if (!stat_data)
596 return -ENOMEM;
597
598 stat_data->kvm = kvm;
599 stat_data->offset = p->offset;
600 kvm->debugfs_stat_data[p - debugfs_entries] = stat_data;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +1100601 if (!debugfs_create_file(p->name, 0644,
Janosch Frank536a6f82016-05-18 13:26:23 +0200602 kvm->debugfs_dentry,
603 stat_data,
604 stat_fops_per_vm[p->kind]))
605 return -ENOMEM;
606 }
607 return 0;
608}
609
Carsten Ottee08b9632012-01-04 10:25:20 +0100610static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800611{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100612 int r, i;
613 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800614
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100615 if (!kvm)
616 return ERR_PTR(-ENOMEM);
617
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100618 spin_lock_init(&kvm->mmu_lock);
Vegard Nossumf1f10072017-02-27 14:30:07 -0800619 mmgrab(current->mm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100620 kvm->mm = current->mm;
621 kvm_eventfd_init(kvm);
622 mutex_init(&kvm->lock);
623 mutex_init(&kvm->irq_lock);
624 mutex_init(&kvm->slots_lock);
Elena Reshetovae3736c32017-02-20 13:06:21 +0200625 refcount_set(&kvm->users_count, 1);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100626 INIT_LIST_HEAD(&kvm->devices);
627
Carsten Ottee08b9632012-01-04 10:25:20 +0100628 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100629 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100630 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200631
632 r = hardware_enable_all();
633 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100634 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200635
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200636#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300637 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200638#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800639
Alex Williamson1e702d92012-12-10 10:33:32 -0700640 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
641
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200642 r = -ENOMEM;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200643 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800644 struct kvm_memslots *slots = kvm_alloc_memslots();
645 if (!slots)
Paolo Bonzinif481b062015-05-17 17:30:37 +0200646 goto out_err_no_srcu;
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800647 /*
648 * Generations must be different for each address space.
649 * Init kvm generation close to the maximum to easily test the
650 * code of handling generation number wrap-around.
651 */
652 slots->generation = i * 2 - 150;
653 rcu_assign_pointer(kvm->memslots[i], slots);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200654 }
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200655
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200656 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100657 goto out_err_no_srcu;
658 if (init_srcu_struct(&kvm->irq_srcu))
659 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200660 for (i = 0; i < KVM_NR_BUSES; i++) {
661 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
662 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100663 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200664 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200665 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700666
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700667 r = kvm_init_mmu_notifier(kvm);
668 if (r)
669 goto out_err;
670
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200671 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000672 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200673 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100674
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200675 preempt_notifier_inc();
676
Avi Kivityf17abe92007-02-21 19:28:04 +0200677 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200678
679out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100680 cleanup_srcu_struct(&kvm->irq_srcu);
681out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100682 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100683out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200684 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100685out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200686 for (i = 0; i < KVM_NR_BUSES; i++)
687 kfree(kvm->buses[i]);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200688 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
689 kvm_free_memslots(kvm, kvm->memslots[i]);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100690 kvm_arch_free_vm(kvm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100691 mmdrop(current->mm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200692 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200693}
694
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900695/*
696 * Avoid using vmalloc for a small buffer.
697 * Should not be used when the size is statically known.
698 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900699void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900700{
701 if (size > PAGE_SIZE)
702 return vzalloc(size);
703 else
704 return kzalloc(size, GFP_KERNEL);
705}
706
Scott Wood07f0a7b2013-04-25 14:11:23 +0000707static void kvm_destroy_devices(struct kvm *kvm)
708{
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800709 struct kvm_device *dev, *tmp;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000710
Christoffer Dalla28ebea2016-08-09 19:13:01 +0200711 /*
712 * We do not need to take the kvm->lock here, because nobody else
713 * has a reference to the struct kvm at this point and therefore
714 * cannot access the devices list anyhow.
715 */
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800716 list_for_each_entry_safe(dev, tmp, &kvm->devices, vm_node) {
717 list_del(&dev->vm_node);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000718 dev->ops->destroy(dev);
719 }
720}
721
Avi Kivityf17abe92007-02-21 19:28:04 +0200722static void kvm_destroy_vm(struct kvm *kvm)
723{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200724 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200725 struct mm_struct *mm = kvm->mm;
726
Janosch Frank536a6f82016-05-18 13:26:23 +0200727 kvm_destroy_vm_debugfs(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800728 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200729 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800730 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200731 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200732 kvm_free_irq_routing(kvm);
Peter Xudf630b82017-03-15 16:01:17 +0800733 for (i = 0; i < KVM_NR_BUSES; i++) {
David Hildenbrand90db1042017-03-23 18:24:19 +0100734 if (kvm->buses[i])
735 kvm_io_bus_destroy(kvm->buses[i]);
Peter Xudf630b82017-03-15 16:01:17 +0800736 kvm->buses[i] = NULL;
737 }
Avi Kivity980da6c2009-12-20 15:13:43 +0200738 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200739#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
740 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200741#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300742 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200743#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800744 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000745 kvm_destroy_devices(kvm);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200746 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
747 kvm_free_memslots(kvm, kvm->memslots[i]);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200748 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100749 cleanup_srcu_struct(&kvm->srcu);
750 kvm_arch_free_vm(kvm);
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200751 preempt_notifier_dec();
Alexander Graf10474ae2009-09-15 11:37:46 +0200752 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200753 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200754}
755
Izik Eidusd39f13b2008-03-30 16:01:25 +0300756void kvm_get_kvm(struct kvm *kvm)
757{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200758 refcount_inc(&kvm->users_count);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300759}
760EXPORT_SYMBOL_GPL(kvm_get_kvm);
761
762void kvm_put_kvm(struct kvm *kvm)
763{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200764 if (refcount_dec_and_test(&kvm->users_count))
Izik Eidusd39f13b2008-03-30 16:01:25 +0300765 kvm_destroy_vm(kvm);
766}
767EXPORT_SYMBOL_GPL(kvm_put_kvm);
768
769
Avi Kivityf17abe92007-02-21 19:28:04 +0200770static int kvm_vm_release(struct inode *inode, struct file *filp)
771{
772 struct kvm *kvm = filp->private_data;
773
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400774 kvm_irqfd_release(kvm);
775
Izik Eidusd39f13b2008-03-30 16:01:25 +0300776 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800777 return 0;
778}
779
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900780/*
781 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900782 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900783 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900784static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
785{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900786 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900787
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900788 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900789 if (!memslot->dirty_bitmap)
790 return -ENOMEM;
791
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900792 return 0;
793}
794
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800795/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000796 * Insert memslot and re-sort memslots based on their GFN,
797 * so binary search could be used to lookup GFN.
798 * Sorting algorithm takes advantage of having initially
799 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800800 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100801static void update_memslots(struct kvm_memslots *slots,
802 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800803{
Paolo Bonzini85931762014-11-14 10:22:07 +0100804 int id = new->id;
805 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000806 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800807
Paolo Bonzini85931762014-11-14 10:22:07 +0100808 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000809 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100810 WARN_ON(!mslots[i].npages);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000811 if (mslots[i].npages)
812 slots->used_slots--;
813 } else {
814 if (!mslots[i].npages)
815 slots->used_slots++;
816 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000817
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000818 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000819 new->base_gfn <= mslots[i + 1].base_gfn) {
820 if (!mslots[i + 1].npages)
821 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000822 mslots[i] = mslots[i + 1];
823 slots->id_to_index[mslots[i].id] = i;
824 i++;
825 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100826
827 /*
828 * The ">=" is needed when creating a slot with base_gfn == 0,
829 * so that it moves before all those with base_gfn == npages == 0.
830 *
831 * On the other hand, if new->npages is zero, the above loop has
832 * already left i pointing to the beginning of the empty part of
833 * mslots, and the ">=" would move the hole backwards in this
834 * case---which is wrong. So skip the loop when deleting a slot.
835 */
836 if (new->npages) {
837 while (i > 0 &&
838 new->base_gfn >= mslots[i - 1].base_gfn) {
839 mslots[i] = mslots[i - 1];
840 slots->id_to_index[mslots[i].id] = i;
841 i--;
842 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100843 } else
844 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800845
Paolo Bonzini85931762014-11-14 10:22:07 +0100846 mslots[i] = *new;
847 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800848}
849
Paolo Bonzini09170a42015-05-18 13:59:39 +0200850static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800851{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800852 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
853
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200854#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800855 valid_flags |= KVM_MEM_READONLY;
856#endif
857
858 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800859 return -EINVAL;
860
861 return 0;
862}
863
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200864static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzinif481b062015-05-17 17:30:37 +0200865 int as_id, struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200866{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200867 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200868
David Matlackee3d1572014-08-18 15:46:06 -0700869 /*
870 * Set the low bit in the generation, which disables SPTE caching
871 * until the end of synchronize_srcu_expedited.
872 */
873 WARN_ON(old_memslots->generation & 1);
874 slots->generation = old_memslots->generation + 1;
875
Paolo Bonzinif481b062015-05-17 17:30:37 +0200876 rcu_assign_pointer(kvm->memslots[as_id], slots);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200877 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900878
David Matlackee3d1572014-08-18 15:46:06 -0700879 /*
880 * Increment the new memslot generation a second time. This prevents
881 * vm exits that race with memslot updates from caching a memslot
882 * generation that will (potentially) be valid forever.
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800883 *
884 * Generations must be unique even across address spaces. We do not need
885 * a global counter for that, instead the generation space is evenly split
886 * across address spaces. For example, with two address spaces, address
887 * space 0 will use generations 0, 4, 8, ... while * address space 1 will
888 * use generations 2, 6, 10, 14, ...
David Matlackee3d1572014-08-18 15:46:06 -0700889 */
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800890 slots->generation += KVM_ADDRESS_SPACE_NUM * 2 - 1;
David Matlackee3d1572014-08-18 15:46:06 -0700891
Paolo Bonzini15f46012015-05-17 21:26:08 +0200892 kvm_arch_memslots_updated(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900893
894 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200895}
896
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800898 * Allocate some memory and give it an address in the guest physical address
899 * space.
900 *
901 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800902 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100903 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800905int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200906 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907{
Avi Kivity8234b222010-12-27 12:08:45 +0200908 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200910 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900911 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700913 struct kvm_memslots *slots = NULL, *old_memslots;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200914 int as_id, id;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900915 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800916
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800917 r = check_memory_region_flags(mem);
918 if (r)
919 goto out;
920
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200922 as_id = mem->slot >> 16;
923 id = (u16)mem->slot;
924
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925 /* General sanity checks */
926 if (mem->memory_size & (PAGE_SIZE - 1))
927 goto out;
928 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
929 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900930 /* We can read the guest memory with __xxx_user() later on. */
Paolo Bonzinif481b062015-05-17 17:30:37 +0200931 if ((id < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900932 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200933 !access_ok(VERIFY_WRITE,
934 (void __user *)(unsigned long)mem->userspace_addr,
935 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600936 goto out;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200937 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938 goto out;
939 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
940 goto out;
941
Paolo Bonzinif481b062015-05-17 17:30:37 +0200942 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
944 npages = mem->memory_size >> PAGE_SHIFT;
945
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900946 if (npages > KVM_MEM_MAX_NR_PAGES)
947 goto out;
948
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900949 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800950
Paolo Bonzinif481b062015-05-17 17:30:37 +0200951 new.id = id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800952 new.base_gfn = base_gfn;
953 new.npages = npages;
954 new.flags = mem->flags;
955
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900956 if (npages) {
957 if (!old.npages)
958 change = KVM_MR_CREATE;
959 else { /* Modify an existing slot. */
960 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900961 (npages != old.npages) ||
962 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900963 goto out;
964
965 if (base_gfn != old.base_gfn)
966 change = KVM_MR_MOVE;
967 else if (new.flags != old.flags)
968 change = KVM_MR_FLAGS_ONLY;
969 else { /* Nothing to change. */
970 r = 0;
971 goto out;
972 }
973 }
Paolo Bonzini09170a42015-05-18 13:59:39 +0200974 } else {
975 if (!old.npages)
976 goto out;
977
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900978 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200979 new.base_gfn = 0;
980 new.flags = 0;
981 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900983 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900984 /* Check for overlaps */
985 r = -EEXIST;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200986 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900987 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
Paolo Bonzinif481b062015-05-17 17:30:37 +0200988 (slot->id == id))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900989 continue;
990 if (!((base_gfn + npages <= slot->base_gfn) ||
991 (base_gfn >= slot->base_gfn + slot->npages)))
992 goto out;
993 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996 /* Free page dirty bitmap if unneeded */
997 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000998 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999
1000 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001001 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +09001002 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001003
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301004 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001005 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 }
Joerg Roedelec04b262009-06-19 15:16:23 +02001007
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008 /* Allocate page dirty bitmap if needed */
1009 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +09001010 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001011 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012 }
1013
Igor Mammedov74496132015-03-20 12:21:37 +00001014 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001015 if (!slots)
1016 goto out_free;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001017 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001018
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001019 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Paolo Bonzinif481b062015-05-17 17:30:37 +02001020 slot = id_to_memslot(slots, id);
Xiao Guangrong28a37542011-11-24 19:04:35 +08001021 slot->flags |= KVM_MEMSLOT_INVALID;
1022
Paolo Bonzinif481b062015-05-17 17:30:37 +02001023 old_memslots = install_new_memslots(kvm, as_id, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001024
Marcelo Tosatti12d6e752012-08-24 15:54:58 -03001025 /* From this point no new shadow pages pointing to a deleted,
1026 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001027 *
1028 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +08001029 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
1030 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001031 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03001032 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001033
1034 /*
1035 * We can re-use the old_memslots from above, the only difference
1036 * from the currently installed memslots is the invalid flag. This
1037 * will get overwritten by update_memslots anyway.
1038 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001039 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001040 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001041
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09001042 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001043 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001044 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001045
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001046 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001047 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001048 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001049 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001050 }
1051
Paolo Bonzini5cc15022014-11-14 10:55:31 +01001052 update_memslots(slots, &new);
Paolo Bonzinif481b062015-05-17 17:30:37 +02001053 old_memslots = install_new_memslots(kvm, as_id, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001054
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001055 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08001056
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001057 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +00001058 kvfree(old_memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059 return 0;
1060
Alex Williamsone40f1932012-12-10 10:32:57 -07001061out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +00001062 kvfree(slots);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001063out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001064 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001065out:
1066 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +02001067}
Sheng Yangf78e0e22007-10-29 09:40:42 +08001068EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
1069
1070int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001071 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001072{
1073 int r;
1074
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001075 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001076 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001077 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001078 return r;
1079}
Izik Eidus210c7c42007-10-24 23:52:57 +02001080EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1081
Stephen Hemminger79408762013-12-29 12:12:29 -08001082static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1083 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +02001084{
Paolo Bonzinif481b062015-05-17 17:30:37 +02001085 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001086 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001087
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001088 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001089}
1090
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001091int kvm_get_dirty_log(struct kvm *kvm,
1092 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001093{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001094 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001095 struct kvm_memory_slot *memslot;
Markus Elfring843574a2017-01-22 17:41:07 +01001096 int i, as_id, id;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001097 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001098 unsigned long any = 0;
1099
Paolo Bonzinif481b062015-05-17 17:30:37 +02001100 as_id = log->slot >> 16;
1101 id = (u16)log->slot;
1102 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring843574a2017-01-22 17:41:07 +01001103 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001104
Paolo Bonzinif481b062015-05-17 17:30:37 +02001105 slots = __kvm_memslots(kvm, as_id);
1106 memslot = id_to_memslot(slots, id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107 if (!memslot->dirty_bitmap)
Markus Elfring843574a2017-01-22 17:41:07 +01001108 return -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001109
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001110 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001111
Uri Lublincd1a4a92007-02-22 16:43:09 +02001112 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001113 any = memslot->dirty_bitmap[i];
1114
Avi Kivity6aa8b732006-12-10 02:21:36 -08001115 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
Markus Elfring843574a2017-01-22 17:41:07 +01001116 return -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001117
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001118 if (any)
1119 *is_dirty = 1;
Markus Elfring843574a2017-01-22 17:41:07 +01001120 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301122EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001123
Mario Smarduchba0513b2015-01-15 15:58:53 -08001124#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1125/**
1126 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1127 * are dirty write protect them for next write.
1128 * @kvm: pointer to kvm instance
1129 * @log: slot id and address to which we copy the log
1130 * @is_dirty: flag set if any page is dirty
1131 *
1132 * We need to keep it in mind that VCPU threads can write to the bitmap
1133 * concurrently. So, to avoid losing track of dirty pages we keep the
1134 * following order:
1135 *
1136 * 1. Take a snapshot of the bit and clear it if needed.
1137 * 2. Write protect the corresponding page.
1138 * 3. Copy the snapshot to the userspace.
1139 * 4. Upon return caller flushes TLB's if needed.
1140 *
1141 * Between 2 and 4, the guest may write to the page using the remaining TLB
1142 * entry. This is not a problem because the page is reported dirty using
1143 * the snapshot taken before and step 4 ensures that writes done after
1144 * exiting to userspace will be logged for the next call.
1145 *
1146 */
1147int kvm_get_dirty_log_protect(struct kvm *kvm,
1148 struct kvm_dirty_log *log, bool *is_dirty)
1149{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001150 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001151 struct kvm_memory_slot *memslot;
Markus Elfring58d6db32017-01-22 17:30:16 +01001152 int i, as_id, id;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001153 unsigned long n;
1154 unsigned long *dirty_bitmap;
1155 unsigned long *dirty_bitmap_buffer;
1156
Paolo Bonzinif481b062015-05-17 17:30:37 +02001157 as_id = log->slot >> 16;
1158 id = (u16)log->slot;
1159 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring58d6db32017-01-22 17:30:16 +01001160 return -EINVAL;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001161
Paolo Bonzinif481b062015-05-17 17:30:37 +02001162 slots = __kvm_memslots(kvm, as_id);
1163 memslot = id_to_memslot(slots, id);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001164
1165 dirty_bitmap = memslot->dirty_bitmap;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001166 if (!dirty_bitmap)
Markus Elfring58d6db32017-01-22 17:30:16 +01001167 return -ENOENT;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001168
1169 n = kvm_dirty_bitmap_bytes(memslot);
1170
1171 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1172 memset(dirty_bitmap_buffer, 0, n);
1173
1174 spin_lock(&kvm->mmu_lock);
1175 *is_dirty = false;
1176 for (i = 0; i < n / sizeof(long); i++) {
1177 unsigned long mask;
1178 gfn_t offset;
1179
1180 if (!dirty_bitmap[i])
1181 continue;
1182
1183 *is_dirty = true;
1184
1185 mask = xchg(&dirty_bitmap[i], 0);
1186 dirty_bitmap_buffer[i] = mask;
1187
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001188 if (mask) {
1189 offset = i * BITS_PER_LONG;
1190 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1191 offset, mask);
1192 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001193 }
1194
1195 spin_unlock(&kvm->mmu_lock);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001196 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
Markus Elfring58d6db32017-01-22 17:30:16 +01001197 return -EFAULT;
1198 return 0;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001199}
1200EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1201#endif
1202
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001203bool kvm_largepages_enabled(void)
1204{
1205 return largepages_enabled;
1206}
1207
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001208void kvm_disable_largepages(void)
1209{
1210 largepages_enabled = false;
1211}
1212EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1213
Gleb Natapov49c77542010-10-18 15:22:23 +02001214struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1215{
1216 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1217}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001218EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001219
Paolo Bonzini8e734852015-05-17 13:58:53 +02001220struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1221{
1222 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1223}
1224
Yaowei Bai33e94152015-11-14 11:21:06 +08001225bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001226{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001227 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001228
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001229 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001230 memslot->flags & KVM_MEMSLOT_INVALID)
Yaowei Bai33e94152015-11-14 11:21:06 +08001231 return false;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001232
Yaowei Bai33e94152015-11-14 11:21:06 +08001233 return true;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001234}
1235EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1236
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001237unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1238{
1239 struct vm_area_struct *vma;
1240 unsigned long addr, size;
1241
1242 size = PAGE_SIZE;
1243
1244 addr = gfn_to_hva(kvm, gfn);
1245 if (kvm_is_error_hva(addr))
1246 return PAGE_SIZE;
1247
1248 down_read(&current->mm->mmap_sem);
1249 vma = find_vma(current->mm, addr);
1250 if (!vma)
1251 goto out;
1252
1253 size = vma_kernel_pagesize(vma);
1254
1255out:
1256 up_read(&current->mm->mmap_sem);
1257
1258 return size;
1259}
1260
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001261static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1262{
1263 return slot->flags & KVM_MEM_READONLY;
1264}
1265
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001266static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1267 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001268{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001269 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001270 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001271
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001272 if (memslot_is_readonly(slot) && write)
1273 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001274
1275 if (nr_pages)
1276 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1277
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001278 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001279}
Xiao Guangrong48987782010-08-22 19:11:43 +08001280
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001281static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1282 gfn_t *nr_pages)
1283{
1284 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1285}
1286
1287unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001288 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001289{
1290 return gfn_to_hva_many(slot, gfn, NULL);
1291}
1292EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1293
Xiao Guangrong48987782010-08-22 19:11:43 +08001294unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1295{
Gleb Natapov49c77542010-10-18 15:22:23 +02001296 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001297}
Sheng Yang0d150292008-04-25 21:44:50 +08001298EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001299
Paolo Bonzini8e734852015-05-17 13:58:53 +02001300unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1301{
1302 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1303}
1304EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1305
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001306/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001307 * If writable is set to false, the hva returned by this function is only
1308 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001309 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001310unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1311 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001312{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001313 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1314
1315 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001316 *writable = !memslot_is_readonly(slot);
1317
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001318 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001319}
1320
Christoffer Dall64d83122014-08-19 12:15:00 +02001321unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1322{
1323 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1324
1325 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1326}
1327
Paolo Bonzini8e734852015-05-17 13:58:53 +02001328unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1329{
1330 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1331
1332 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1333}
1334
Dave Hansend4edcf02016-02-12 13:01:56 -08001335static int get_user_page_nowait(unsigned long start, int write,
1336 struct page **page)
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001337{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001338 int flags = FOLL_NOWAIT | FOLL_HWPOISON;
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001339
1340 if (write)
1341 flags |= FOLL_WRITE;
1342
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001343 return get_user_pages(start, 1, flags, page, NULL);
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001344}
1345
Huang Yingfafc3db2011-01-30 11:15:49 +08001346static inline int check_user_page_hwpoison(unsigned long addr)
1347{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001348 int rc, flags = FOLL_HWPOISON | FOLL_WRITE;
Huang Yingfafc3db2011-01-30 11:15:49 +08001349
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001350 rc = get_user_pages(addr, 1, flags, NULL, NULL);
Huang Yingfafc3db2011-01-30 11:15:49 +08001351 return rc == -EHWPOISON;
1352}
1353
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001354/*
1355 * The atomic path to get the writable pfn which will be stored in @pfn,
1356 * true indicates success, otherwise false is returned.
1357 */
1358static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
Dan Williamsba049e92016-01-15 16:56:11 -08001359 bool write_fault, bool *writable, kvm_pfn_t *pfn)
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001360{
1361 struct page *page[1];
1362 int npages;
1363
1364 if (!(async || atomic))
1365 return false;
1366
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001367 /*
1368 * Fast pin a writable pfn only if it is a write fault request
1369 * or the caller allows to map a writable pfn for a read fault
1370 * request.
1371 */
1372 if (!(write_fault || writable))
1373 return false;
1374
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001375 npages = __get_user_pages_fast(addr, 1, 1, page);
1376 if (npages == 1) {
1377 *pfn = page_to_pfn(page[0]);
1378
1379 if (writable)
1380 *writable = true;
1381 return true;
1382 }
1383
1384 return false;
1385}
1386
1387/*
1388 * The slow path to get the pfn of the specified host virtual address,
1389 * 1 indicates success, -errno is returned if error is detected.
1390 */
1391static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
Dan Williamsba049e92016-01-15 16:56:11 -08001392 bool *writable, kvm_pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001393{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001394 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001395 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001396
1397 might_sleep();
1398
1399 if (writable)
1400 *writable = write_fault;
1401
1402 if (async) {
1403 down_read(&current->mm->mmap_sem);
Dave Hansend4edcf02016-02-12 13:01:56 -08001404 npages = get_user_page_nowait(addr, write_fault, page);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001405 up_read(&current->mm->mmap_sem);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001406 } else {
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001407 unsigned int flags = FOLL_HWPOISON;
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001408
1409 if (write_fault)
1410 flags |= FOLL_WRITE;
1411
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001412 npages = get_user_pages_unlocked(addr, 1, page, flags);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001413 }
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001414 if (npages != 1)
1415 return npages;
1416
1417 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001418 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001419 struct page *wpage[1];
1420
1421 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1422 if (npages == 1) {
1423 *writable = true;
1424 put_page(page[0]);
1425 page[0] = wpage[0];
1426 }
1427
1428 npages = 1;
1429 }
1430 *pfn = page_to_pfn(page[0]);
1431 return npages;
1432}
1433
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001434static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1435{
1436 if (unlikely(!(vma->vm_flags & VM_READ)))
1437 return false;
1438
1439 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1440 return false;
1441
1442 return true;
1443}
1444
Paolo Bonzini92176a82016-06-07 16:22:47 +02001445static int hva_to_pfn_remapped(struct vm_area_struct *vma,
1446 unsigned long addr, bool *async,
1447 bool write_fault, kvm_pfn_t *p_pfn)
1448{
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001449 unsigned long pfn;
1450 int r;
1451
1452 r = follow_pfn(vma, addr, &pfn);
1453 if (r) {
1454 /*
1455 * get_user_pages fails for VM_IO and VM_PFNMAP vmas and does
1456 * not call the fault handler, so do it here.
1457 */
1458 bool unlocked = false;
1459 r = fixup_user_fault(current, current->mm, addr,
1460 (write_fault ? FAULT_FLAG_WRITE : 0),
1461 &unlocked);
1462 if (unlocked)
1463 return -EAGAIN;
1464 if (r)
1465 return r;
1466
1467 r = follow_pfn(vma, addr, &pfn);
1468 if (r)
1469 return r;
1470
1471 }
1472
1473
1474 /*
1475 * Get a reference here because callers of *hva_to_pfn* and
1476 * *gfn_to_pfn* ultimately call kvm_release_pfn_clean on the
1477 * returned pfn. This is only needed if the VMA has VM_MIXEDMAP
1478 * set, but the kvm_get_pfn/kvm_release_pfn_clean pair will
1479 * simply do nothing for reserved pfns.
1480 *
1481 * Whoever called remap_pfn_range is also going to call e.g.
1482 * unmap_mapping_range before the underlying pages are freed,
1483 * causing a call to our MMU notifier.
1484 */
1485 kvm_get_pfn(pfn);
1486
1487 *p_pfn = pfn;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001488 return 0;
1489}
1490
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001491/*
1492 * Pin guest page in memory and return its pfn.
1493 * @addr: host virtual address which maps memory to the guest
1494 * @atomic: whether this function can sleep
1495 * @async: whether this function need to wait IO complete if the
1496 * host page is not in the memory
1497 * @write_fault: whether we should get a writable host page
1498 * @writable: whether it allows to map a writable host page for !@write_fault
1499 *
1500 * The function will map a writable host page for these two cases:
1501 * 1): @write_fault = true
1502 * 2): @write_fault = false && @writable, @writable will tell the caller
1503 * whether the mapping is writable.
1504 */
Dan Williamsba049e92016-01-15 16:56:11 -08001505static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001506 bool write_fault, bool *writable)
1507{
1508 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001509 kvm_pfn_t pfn = 0;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001510 int npages, r;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001511
Gleb Natapovaf585b92010-10-14 11:22:46 +02001512 /* we can do it either atomically or asynchronously, not both */
1513 BUG_ON(atomic && async);
1514
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001515 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1516 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001517
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001518 if (atomic)
1519 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001520
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001521 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1522 if (npages == 1)
1523 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001524
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001525 down_read(&current->mm->mmap_sem);
1526 if (npages == -EHWPOISON ||
1527 (!async && check_user_page_hwpoison(addr))) {
1528 pfn = KVM_PFN_ERR_HWPOISON;
1529 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001530 }
Izik Eidus539cb662007-11-11 22:05:04 +02001531
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001532retry:
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001533 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001534
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001535 if (vma == NULL)
1536 pfn = KVM_PFN_ERR_FAULT;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001537 else if (vma->vm_flags & (VM_IO | VM_PFNMAP)) {
1538 r = hva_to_pfn_remapped(vma, addr, async, write_fault, &pfn);
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001539 if (r == -EAGAIN)
1540 goto retry;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001541 if (r < 0)
1542 pfn = KVM_PFN_ERR_FAULT;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001543 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001544 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001545 *async = true;
1546 pfn = KVM_PFN_ERR_FAULT;
1547 }
1548exit:
1549 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001550 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001551}
1552
Dan Williamsba049e92016-01-15 16:56:11 -08001553kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
1554 bool atomic, bool *async, bool write_fault,
1555 bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001556{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001557 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1558
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001559 if (addr == KVM_HVA_ERR_RO_BAD) {
1560 if (writable)
1561 *writable = false;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001562 return KVM_PFN_ERR_RO_FAULT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001563 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001564
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001565 if (kvm_is_error_hva(addr)) {
1566 if (writable)
1567 *writable = false;
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001568 return KVM_PFN_NOSLOT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001569 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001570
1571 /* Do not map writable pfn in the readonly memslot. */
1572 if (writable && memslot_is_readonly(slot)) {
1573 *writable = false;
1574 writable = NULL;
1575 }
1576
1577 return hva_to_pfn(addr, atomic, async, write_fault,
1578 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001579}
Paolo Bonzini35204692015-04-02 11:20:48 +02001580EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001581
Dan Williamsba049e92016-01-15 16:56:11 -08001582kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001583 bool *writable)
1584{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001585 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1586 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001587}
1588EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1589
Dan Williamsba049e92016-01-15 16:56:11 -08001590kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001591{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001592 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001593}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001594EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001595
Dan Williamsba049e92016-01-15 16:56:11 -08001596kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001597{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001598 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001599}
1600EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1601
Dan Williamsba049e92016-01-15 16:56:11 -08001602kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001603{
1604 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1605}
1606EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1607
Dan Williamsba049e92016-01-15 16:56:11 -08001608kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001609{
1610 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1611}
1612EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1613
Dan Williamsba049e92016-01-15 16:56:11 -08001614kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001615{
1616 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1617}
1618EXPORT_SYMBOL_GPL(gfn_to_pfn);
1619
Dan Williamsba049e92016-01-15 16:56:11 -08001620kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001621{
1622 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1623}
1624EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1625
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001626int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1627 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001628{
1629 unsigned long addr;
1630 gfn_t entry;
1631
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001632 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001633 if (kvm_is_error_hva(addr))
1634 return -1;
1635
1636 if (entry < nr_pages)
1637 return 0;
1638
1639 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1640}
1641EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1642
Dan Williamsba049e92016-01-15 16:56:11 -08001643static struct page *kvm_pfn_to_page(kvm_pfn_t pfn)
Xiao Guangronga2766322012-07-26 11:58:59 +08001644{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001645 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001646 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001647
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001648 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001649 WARN_ON(1);
1650 return KVM_ERR_PTR_BAD_PAGE;
1651 }
1652
Xiao Guangronga2766322012-07-26 11:58:59 +08001653 return pfn_to_page(pfn);
1654}
1655
Anthony Liguori35149e22008-04-02 14:46:56 -05001656struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1657{
Dan Williamsba049e92016-01-15 16:56:11 -08001658 kvm_pfn_t pfn;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001659
1660 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001661
Xiao Guangronga2766322012-07-26 11:58:59 +08001662 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001663}
1664EXPORT_SYMBOL_GPL(gfn_to_page);
1665
Paolo Bonzini8e734852015-05-17 13:58:53 +02001666struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1667{
Dan Williamsba049e92016-01-15 16:56:11 -08001668 kvm_pfn_t pfn;
Paolo Bonzini8e734852015-05-17 13:58:53 +02001669
1670 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1671
1672 return kvm_pfn_to_page(pfn);
1673}
1674EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1675
Izik Eidusb4231d62007-11-20 11:49:33 +02001676void kvm_release_page_clean(struct page *page)
1677{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001678 WARN_ON(is_error_page(page));
1679
Anthony Liguori35149e22008-04-02 14:46:56 -05001680 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001681}
1682EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1683
Dan Williamsba049e92016-01-15 16:56:11 -08001684void kvm_release_pfn_clean(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001685{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001686 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001687 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001688}
1689EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1690
Izik Eidusb4231d62007-11-20 11:49:33 +02001691void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001692{
Xiao Guangronga2766322012-07-26 11:58:59 +08001693 WARN_ON(is_error_page(page));
1694
Anthony Liguori35149e22008-04-02 14:46:56 -05001695 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001696}
Izik Eidusb4231d62007-11-20 11:49:33 +02001697EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001698
Dan Williamsba049e92016-01-15 16:56:11 -08001699static void kvm_release_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001700{
1701 kvm_set_pfn_dirty(pfn);
1702 kvm_release_pfn_clean(pfn);
1703}
Anthony Liguori35149e22008-04-02 14:46:56 -05001704
Dan Williamsba049e92016-01-15 16:56:11 -08001705void kvm_set_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001706{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001707 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001708 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08001709
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001710 if (!PageReserved(page))
1711 SetPageDirty(page);
1712 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001713}
1714EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1715
Dan Williamsba049e92016-01-15 16:56:11 -08001716void kvm_set_pfn_accessed(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001717{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001718 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001719 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001720}
1721EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1722
Dan Williamsba049e92016-01-15 16:56:11 -08001723void kvm_get_pfn(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001724{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001725 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001726 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001727}
1728EXPORT_SYMBOL_GPL(kvm_get_pfn);
1729
Izik Eidus195aefd2007-10-01 22:14:18 +02001730static int next_segment(unsigned long len, int offset)
1731{
1732 if (len > PAGE_SIZE - offset)
1733 return PAGE_SIZE - offset;
1734 else
1735 return len;
1736}
1737
Paolo Bonzini8e734852015-05-17 13:58:53 +02001738static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
1739 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001740{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001741 int r;
1742 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001743
Paolo Bonzini8e734852015-05-17 13:58:53 +02001744 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001745 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001746 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001747 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001748 if (r)
1749 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001750 return 0;
1751}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001752
1753int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1754 int len)
1755{
1756 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1757
1758 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1759}
Izik Eidus195aefd2007-10-01 22:14:18 +02001760EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1761
Paolo Bonzini8e734852015-05-17 13:58:53 +02001762int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
1763 int offset, int len)
1764{
1765 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1766
1767 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1768}
1769EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
1770
Izik Eidus195aefd2007-10-01 22:14:18 +02001771int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1772{
1773 gfn_t gfn = gpa >> PAGE_SHIFT;
1774 int seg;
1775 int offset = offset_in_page(gpa);
1776 int ret;
1777
1778 while ((seg = next_segment(len, offset)) != 0) {
1779 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1780 if (ret < 0)
1781 return ret;
1782 offset = 0;
1783 len -= seg;
1784 data += seg;
1785 ++gfn;
1786 }
1787 return 0;
1788}
1789EXPORT_SYMBOL_GPL(kvm_read_guest);
1790
Paolo Bonzini8e734852015-05-17 13:58:53 +02001791int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
1792{
1793 gfn_t gfn = gpa >> PAGE_SHIFT;
1794 int seg;
1795 int offset = offset_in_page(gpa);
1796 int ret;
1797
1798 while ((seg = next_segment(len, offset)) != 0) {
1799 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
1800 if (ret < 0)
1801 return ret;
1802 offset = 0;
1803 len -= seg;
1804 data += seg;
1805 ++gfn;
1806 }
1807 return 0;
1808}
1809EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
1810
1811static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1812 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001813{
1814 int r;
1815 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001816
Paolo Bonzini8e734852015-05-17 13:58:53 +02001817 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001818 if (kvm_is_error_hva(addr))
1819 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001820 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001821 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001822 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001823 if (r)
1824 return -EFAULT;
1825 return 0;
1826}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001827
Paolo Bonzini8e734852015-05-17 13:58:53 +02001828int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1829 unsigned long len)
1830{
1831 gfn_t gfn = gpa >> PAGE_SHIFT;
1832 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1833 int offset = offset_in_page(gpa);
1834
1835 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1836}
1837EXPORT_SYMBOL_GPL(kvm_read_guest_atomic);
1838
1839int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
1840 void *data, unsigned long len)
1841{
1842 gfn_t gfn = gpa >> PAGE_SHIFT;
1843 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1844 int offset = offset_in_page(gpa);
1845
1846 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1847}
1848EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
1849
1850static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
1851 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001852{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001853 int r;
1854 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001855
Radim Krčmář251eb842015-04-10 21:47:27 +02001856 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001857 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001858 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001859 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001860 if (r)
1861 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001862 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02001863 return 0;
1864}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001865
1866int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
1867 const void *data, int offset, int len)
1868{
1869 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1870
1871 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1872}
Izik Eidus195aefd2007-10-01 22:14:18 +02001873EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1874
Paolo Bonzini8e734852015-05-17 13:58:53 +02001875int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
1876 const void *data, int offset, int len)
1877{
1878 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1879
1880 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1881}
1882EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
1883
Izik Eidus195aefd2007-10-01 22:14:18 +02001884int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1885 unsigned long len)
1886{
1887 gfn_t gfn = gpa >> PAGE_SHIFT;
1888 int seg;
1889 int offset = offset_in_page(gpa);
1890 int ret;
1891
1892 while ((seg = next_segment(len, offset)) != 0) {
1893 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1894 if (ret < 0)
1895 return ret;
1896 offset = 0;
1897 len -= seg;
1898 data += seg;
1899 ++gfn;
1900 }
1901 return 0;
1902}
Wincy Vanff651cb2014-12-11 08:52:58 +03001903EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001904
Paolo Bonzini8e734852015-05-17 13:58:53 +02001905int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
1906 unsigned long len)
1907{
1908 gfn_t gfn = gpa >> PAGE_SHIFT;
1909 int seg;
1910 int offset = offset_in_page(gpa);
1911 int ret;
1912
1913 while ((seg = next_segment(len, offset)) != 0) {
1914 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
1915 if (ret < 0)
1916 return ret;
1917 offset = 0;
1918 len -= seg;
1919 data += seg;
1920 ++gfn;
1921 }
1922 return 0;
1923}
1924EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
1925
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001926static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
1927 struct gfn_to_hva_cache *ghc,
1928 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001929{
Gleb Natapov49c77542010-10-18 15:22:23 +02001930 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001931 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1932 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1933 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1934 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001935
1936 ghc->gpa = gpa;
1937 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001938 ghc->len = len;
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001939 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001940 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1941 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001942 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001943 } else {
1944 /*
1945 * If the requested region crosses two memslots, we still
1946 * verify that the entire region is valid here.
1947 */
1948 while (start_gfn <= end_gfn) {
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001949 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Andrew Honig8f964522013-03-29 09:35:21 -07001950 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1951 &nr_pages_avail);
1952 if (kvm_is_error_hva(ghc->hva))
1953 return -EFAULT;
1954 start_gfn += nr_pages_avail;
1955 }
1956 /* Use the slow path for cross page reads and writes. */
1957 ghc->memslot = NULL;
1958 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001959 return 0;
1960}
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001961
Cao, Leibbd64112017-02-03 20:04:35 +00001962int kvm_vcpu_gfn_to_hva_cache_init(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001963 gpa_t gpa, unsigned long len)
1964{
Cao, Leibbd64112017-02-03 20:04:35 +00001965 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001966 return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
1967}
Cao, Leibbd64112017-02-03 20:04:35 +00001968EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva_cache_init);
Gleb Natapov49c77542010-10-18 15:22:23 +02001969
Cao, Leibbd64112017-02-03 20:04:35 +00001970int kvm_vcpu_write_guest_offset_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
1971 void *data, int offset, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001972{
Cao, Leibbd64112017-02-03 20:04:35 +00001973 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapov49c77542010-10-18 15:22:23 +02001974 int r;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001975 gpa_t gpa = ghc->gpa + offset;
Gleb Natapov49c77542010-10-18 15:22:23 +02001976
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001977 BUG_ON(len + offset > ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001978
Gleb Natapov49c77542010-10-18 15:22:23 +02001979 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001980 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001981
1982 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00001983 return kvm_vcpu_write_guest(vcpu, gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001984
1985 if (kvm_is_error_hva(ghc->hva))
1986 return -EFAULT;
1987
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001988 r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001989 if (r)
1990 return -EFAULT;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001991 mark_page_dirty_in_slot(ghc->memslot, gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02001992
1993 return 0;
1994}
Cao, Leibbd64112017-02-03 20:04:35 +00001995EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_offset_cached);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001996
Cao, Leibbd64112017-02-03 20:04:35 +00001997int kvm_vcpu_write_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
1998 void *data, unsigned long len)
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001999{
Cao, Leibbd64112017-02-03 20:04:35 +00002000 return kvm_vcpu_write_guest_offset_cached(vcpu, ghc, data, 0, len);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002001}
Cao, Leibbd64112017-02-03 20:04:35 +00002002EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_cached);
Gleb Natapov49c77542010-10-18 15:22:23 +02002003
Cao, Leibbd64112017-02-03 20:04:35 +00002004int kvm_vcpu_read_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2005 void *data, unsigned long len)
Gleb Natapove03b6442011-07-11 15:28:11 -04002006{
Cao, Leibbd64112017-02-03 20:04:35 +00002007 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapove03b6442011-07-11 15:28:11 -04002008 int r;
2009
Andrew Honig8f964522013-03-29 09:35:21 -07002010 BUG_ON(len > ghc->len);
2011
Gleb Natapove03b6442011-07-11 15:28:11 -04002012 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002013 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002014
2015 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00002016 return kvm_vcpu_read_guest(vcpu, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04002017
2018 if (kvm_is_error_hva(ghc->hva))
2019 return -EFAULT;
2020
2021 r = __copy_from_user(data, (void __user *)ghc->hva, len);
2022 if (r)
2023 return -EFAULT;
2024
2025 return 0;
2026}
Cao, Leibbd64112017-02-03 20:04:35 +00002027EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_cached);
Gleb Natapove03b6442011-07-11 15:28:11 -04002028
Izik Eidus195aefd2007-10-01 22:14:18 +02002029int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
2030{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01002031 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
2032
2033 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02002034}
2035EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
2036
2037int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
2038{
2039 gfn_t gfn = gpa >> PAGE_SHIFT;
2040 int seg;
2041 int offset = offset_in_page(gpa);
2042 int ret;
2043
Kevin Mulveybfda0e82015-02-20 08:21:36 -05002044 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02002045 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
2046 if (ret < 0)
2047 return ret;
2048 offset = 0;
2049 len -= seg;
2050 ++gfn;
2051 }
2052 return 0;
2053}
2054EXPORT_SYMBOL_GPL(kvm_clear_guest);
2055
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002056static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08002057 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002058{
Rusty Russell7e9d6192007-07-31 20:41:14 +10002059 if (memslot && memslot->dirty_bitmap) {
2060 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002061
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07002062 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002063 }
2064}
2065
Gleb Natapov49c77542010-10-18 15:22:23 +02002066void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
2067{
2068 struct kvm_memory_slot *memslot;
2069
2070 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002071 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02002072}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302073EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02002074
Paolo Bonzini8e734852015-05-17 13:58:53 +02002075void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
2076{
2077 struct kvm_memory_slot *memslot;
2078
2079 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2080 mark_page_dirty_in_slot(memslot, gfn);
2081}
2082EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
2083
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002084static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
2085{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002086 unsigned int old, val, grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002087
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002088 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002089 grow = READ_ONCE(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002090 /* 10us base */
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002091 if (val == 0 && grow)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002092 val = 10000;
2093 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002094 val *= grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002095
David Matlack313f6362016-03-08 16:19:44 -08002096 if (val > halt_poll_ns)
2097 val = halt_poll_ns;
2098
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002099 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002100 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002101}
2102
2103static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
2104{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002105 unsigned int old, val, shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002106
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002107 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002108 shrink = READ_ONCE(halt_poll_ns_shrink);
2109 if (shrink == 0)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002110 val = 0;
2111 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002112 val /= shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002113
2114 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002115 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002116}
2117
Paolo Bonzinif7819512015-02-04 18:20:58 +01002118static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
2119{
2120 if (kvm_arch_vcpu_runnable(vcpu)) {
2121 kvm_make_request(KVM_REQ_UNHALT, vcpu);
2122 return -EINTR;
2123 }
2124 if (kvm_cpu_has_pending_timer(vcpu))
2125 return -EINTR;
2126 if (signal_pending(current))
2127 return -EINTR;
2128
2129 return 0;
2130}
2131
Eddie Dongb6958ce2007-07-18 12:15:21 +03002132/*
2133 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2134 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05002135void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03002136{
Paolo Bonzinif7819512015-02-04 18:20:58 +01002137 ktime_t start, cur;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002138 DECLARE_SWAITQUEUE(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002139 bool waited = false;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002140 u64 block_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002141
2142 start = cur = ktime_get();
Wanpeng Li19020f82015-09-03 22:07:37 +08002143 if (vcpu->halt_poll_ns) {
2144 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002145
Paolo Bonzini62bea5b2015-09-15 18:27:57 +02002146 ++vcpu->stat.halt_attempted_poll;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002147 do {
2148 /*
2149 * This sets KVM_REQ_UNHALT if an interrupt
2150 * arrives.
2151 */
2152 if (kvm_vcpu_check_block(vcpu) < 0) {
2153 ++vcpu->stat.halt_successful_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002154 if (!vcpu_valid_wakeup(vcpu))
2155 ++vcpu->stat.halt_poll_invalid;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002156 goto out;
2157 }
2158 cur = ktime_get();
2159 } while (single_task_running() && ktime_before(cur, stop));
2160 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03002161
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002162 kvm_arch_vcpu_blocking(vcpu);
2163
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002164 for (;;) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01002165 prepare_to_swait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002166
Paolo Bonzinif7819512015-02-04 18:20:58 +01002167 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002168 break;
2169
Paolo Bonzinif7819512015-02-04 18:20:58 +01002170 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03002171 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03002172 }
2173
Marcelo Tosatti85773702016-02-19 09:46:39 +01002174 finish_swait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002175 cur = ktime_get();
2176
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002177 kvm_arch_vcpu_unblocking(vcpu);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002178out:
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002179 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2180
Christian Borntraeger2086d322016-05-17 10:49:22 +02002181 if (!vcpu_valid_wakeup(vcpu))
2182 shrink_halt_poll_ns(vcpu);
2183 else if (halt_poll_ns) {
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002184 if (block_ns <= vcpu->halt_poll_ns)
2185 ;
2186 /* we had a long block, shrink polling */
Christian Borntraeger2086d322016-05-17 10:49:22 +02002187 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002188 shrink_halt_poll_ns(vcpu);
2189 /* we had a short halt and our poll time is too small */
2190 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2191 block_ns < halt_poll_ns)
2192 grow_halt_poll_ns(vcpu);
Wanpeng Liedb92722015-09-14 17:38:51 +08002193 } else
2194 vcpu->halt_poll_ns = 0;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002195
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002196 trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu));
2197 kvm_arch_vcpu_block_finish(vcpu);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002198}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302199EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002200
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002201void kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -05002202{
Marcelo Tosatti85773702016-02-19 09:46:39 +01002203 struct swait_queue_head *wqp;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002204
2205 wqp = kvm_arch_vcpu_wq(vcpu);
Marcelo Tosatti85773702016-02-19 09:46:39 +01002206 if (swait_active(wqp)) {
2207 swake_up(wqp);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002208 ++vcpu->stat.halt_wakeup;
2209 }
2210
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002211}
2212EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2213
2214/*
2215 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2216 */
2217void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2218{
2219 int me;
2220 int cpu = vcpu->cpu;
2221
2222 kvm_vcpu_wake_up(vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002223 me = get_cpu();
2224 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2225 if (kvm_arch_vcpu_should_kick(vcpu))
2226 smp_send_reschedule(cpu);
2227 put_cpu();
2228}
Yang Zhanga20ed542013-04-11 19:25:15 +08002229EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002230
Dan Carpenterfa933842014-05-23 13:20:42 +03002231int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02002232{
2233 struct pid *pid;
2234 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03002235 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002236
2237 rcu_read_lock();
2238 pid = rcu_dereference(target->pid);
2239 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10002240 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002241 rcu_read_unlock();
2242 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302243 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302244 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002245 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302246
2247 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002248}
2249EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2250
Raghavendra K T06e48c52012-07-19 15:17:52 +05302251/*
2252 * Helper that checks whether a VCPU is eligible for directed yield.
2253 * Most eligible candidate to yield is decided by following heuristics:
2254 *
2255 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2256 * (preempted lock holder), indicated by @in_spin_loop.
2257 * Set at the beiginning and cleared at the end of interception/PLE handler.
2258 *
2259 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2260 * chance last time (mostly it has become eligible now since we have probably
2261 * yielded to lockholder in last iteration. This is done by toggling
2262 * @dy_eligible each time a VCPU checked for eligibility.)
2263 *
2264 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2265 * to preempted lock-holder could result in wrong VCPU selection and CPU
2266 * burning. Giving priority for a potential lock-holder increases lock
2267 * progress.
2268 *
2269 * Since algorithm is based on heuristics, accessing another VCPU data without
2270 * locking does not harm. It may result in trying to yield to same VCPU, fail
2271 * and continue with next VCPU and so on.
2272 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002273static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302274{
Scott Wood4a55dd72014-01-09 18:43:16 -06002275#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302276 bool eligible;
2277
2278 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002279 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302280
2281 if (vcpu->spin_loop.in_spin_loop)
2282 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2283
2284 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002285#else
2286 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302287#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002288}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302289
Rik van Riel217ece62011-02-01 09:53:28 -05002290void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002291{
Rik van Riel217ece62011-02-01 09:53:28 -05002292 struct kvm *kvm = me->kvm;
2293 struct kvm_vcpu *vcpu;
2294 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2295 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302296 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002297 int pass;
2298 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002299
Raghavendra K T4c088492012-07-18 19:07:46 +05302300 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002301 /*
2302 * We boost the priority of a VCPU that is runnable but not
2303 * currently running, because it got preempted by something
2304 * else and called schedule in __vcpu_run. Hopefully that
2305 * VCPU is holding the lock that we need and will release it.
2306 * We approximate round-robin by starting at the last boosted VCPU.
2307 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302308 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002309 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002310 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002311 i = last_boosted_vcpu;
2312 continue;
2313 } else if (pass && i > last_boosted_vcpu)
2314 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302315 if (!ACCESS_ONCE(vcpu->preempted))
2316 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002317 if (vcpu == me)
2318 continue;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002319 if (swait_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002320 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302321 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2322 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302323
2324 yielded = kvm_vcpu_yield_to(vcpu);
2325 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002326 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002327 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302328 } else if (yielded < 0) {
2329 try--;
2330 if (!try)
2331 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002332 }
Rik van Riel217ece62011-02-01 09:53:28 -05002333 }
2334 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302335 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302336
2337 /* Ensure vcpu is not eligible during next spinloop */
2338 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002339}
2340EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2341
Dave Jiang11bac802017-02-24 14:56:41 -08002342static int kvm_vcpu_fault(struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002343{
Dave Jiang11bac802017-02-24 14:56:41 -08002344 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002345 struct page *page;
2346
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002347 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002348 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002349#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002350 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002351 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002352#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002353#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02002354 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2355 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2356#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002357 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002358 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002359 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002360 vmf->page = page;
2361 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002362}
2363
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002364static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002365 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002366};
2367
2368static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2369{
2370 vma->vm_ops = &kvm_vcpu_vm_ops;
2371 return 0;
2372}
2373
Avi Kivitybccf2152007-02-21 18:04:26 +02002374static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2375{
2376 struct kvm_vcpu *vcpu = filp->private_data;
2377
Luiz Capitulino45b59392016-09-16 10:27:35 -04002378 debugfs_remove_recursive(vcpu->debugfs_dentry);
Al Viro66c0b392008-04-19 20:33:56 +01002379 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002380 return 0;
2381}
2382
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002383static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002384 .release = kvm_vcpu_release,
2385 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002386#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002387 .compat_ioctl = kvm_vcpu_compat_ioctl,
2388#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002389 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002390 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02002391};
2392
2393/*
2394 * Allocates an inode for the vcpu.
2395 */
2396static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2397{
Yann Droneaud24009b02013-08-24 22:14:07 +02002398 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002399}
2400
Luiz Capitulino45b59392016-09-16 10:27:35 -04002401static int kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
2402{
2403 char dir_name[ITOA_MAX_LEN * 2];
2404 int ret;
2405
2406 if (!kvm_arch_has_vcpu_debugfs())
2407 return 0;
2408
2409 if (!debugfs_initialized())
2410 return 0;
2411
2412 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2413 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
2414 vcpu->kvm->debugfs_dentry);
2415 if (!vcpu->debugfs_dentry)
2416 return -ENOMEM;
2417
2418 ret = kvm_arch_create_vcpu_debugfs(vcpu);
2419 if (ret < 0) {
2420 debugfs_remove_recursive(vcpu->debugfs_dentry);
2421 return ret;
2422 }
2423
2424 return 0;
2425}
2426
Avi Kivityc5ea7662007-02-20 18:41:05 +02002427/*
2428 * Creates some virtual cpus. Good luck creating more than one.
2429 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002430static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002431{
2432 int r;
David Hildenbrande09fefd2015-11-05 09:03:50 +01002433 struct kvm_vcpu *vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002434
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002435 if (id >= KVM_MAX_VCPU_ID)
Andy Honig338c7db2013-11-18 16:09:22 -08002436 return -EINVAL;
2437
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002438 mutex_lock(&kvm->lock);
2439 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2440 mutex_unlock(&kvm->lock);
2441 return -EINVAL;
2442 }
2443
2444 kvm->created_vcpus++;
2445 mutex_unlock(&kvm->lock);
2446
Gleb Natapov73880c82009-06-09 15:56:28 +03002447 vcpu = kvm_arch_vcpu_create(kvm, id);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002448 if (IS_ERR(vcpu)) {
2449 r = PTR_ERR(vcpu);
2450 goto vcpu_decrement;
2451 }
Avi Kivityc5ea7662007-02-20 18:41:05 +02002452
Avi Kivity15ad7142007-07-11 18:17:21 +03002453 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2454
Avi Kivity26e52152007-11-20 15:30:24 +02002455 r = kvm_arch_vcpu_setup(vcpu);
2456 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002457 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002458
Luiz Capitulino45b59392016-09-16 10:27:35 -04002459 r = kvm_create_vcpu_debugfs(vcpu);
2460 if (r)
2461 goto vcpu_destroy;
2462
Shaohua Li11ec2802007-07-23 14:51:37 +08002463 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +01002464 if (kvm_get_vcpu_by_id(kvm, id)) {
2465 r = -EEXIST;
2466 goto unlock_vcpu_destroy;
2467 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002468
2469 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002470
2471 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002472 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002473 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002474 if (r < 0) {
2475 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002476 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002477 }
2478
2479 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
Paolo Bonzinidd489242015-07-29 11:32:20 +02002480
2481 /*
2482 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2483 * before kvm->online_vcpu's incremented value.
2484 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002485 smp_wmb();
2486 atomic_inc(&kvm->online_vcpus);
2487
Gleb Natapov73880c82009-06-09 15:56:28 +03002488 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002489 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002490 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002491
Jan Kiszkad7805922011-05-23 10:33:05 +02002492unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002493 mutex_unlock(&kvm->lock);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002494 debugfs_remove_recursive(vcpu->debugfs_dentry);
Jan Kiszkad7805922011-05-23 10:33:05 +02002495vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002496 kvm_arch_vcpu_destroy(vcpu);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002497vcpu_decrement:
2498 mutex_lock(&kvm->lock);
2499 kvm->created_vcpus--;
2500 mutex_unlock(&kvm->lock);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002501 return r;
2502}
2503
Avi Kivity1961d272007-03-05 19:46:05 +02002504static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2505{
2506 if (sigset) {
2507 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2508 vcpu->sigset_active = 1;
2509 vcpu->sigset = *sigset;
2510 } else
2511 vcpu->sigset_active = 0;
2512 return 0;
2513}
2514
Avi Kivitybccf2152007-02-21 18:04:26 +02002515static long kvm_vcpu_ioctl(struct file *filp,
2516 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002517{
Avi Kivitybccf2152007-02-21 18:04:26 +02002518 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002519 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002520 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002521 struct kvm_fpu *fpu = NULL;
2522 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002524 if (vcpu->kvm->mm != current->mm)
2525 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002526
David Matlack2ea75be2014-09-19 16:03:25 -07002527 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2528 return -EINVAL;
2529
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002530#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002531 /*
2532 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2533 * so vcpu_load() would break it.
2534 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002535 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002536 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2537#endif
2538
2539
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002540 r = vcpu_load(vcpu);
2541 if (r)
2542 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002544 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002545 r = -EINVAL;
2546 if (arg)
2547 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002548 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2549 /* The thread running this VCPU changed. */
2550 struct pid *oldpid = vcpu->pid;
2551 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002552
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002553 rcu_assign_pointer(vcpu->pid, newpid);
2554 if (oldpid)
2555 synchronize_rcu();
2556 put_pid(oldpid);
2557 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002558 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002559 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002560 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002561 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002562 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002563
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002564 r = -ENOMEM;
2565 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2566 if (!kvm_regs)
2567 goto out;
2568 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002569 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002570 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002571 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002572 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2573 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002574 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002575out_free1:
2576 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002577 break;
2578 }
2579 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002580 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002581
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002582 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002583 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2584 if (IS_ERR(kvm_regs)) {
2585 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002586 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002587 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002588 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002589 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002590 break;
2591 }
2592 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002593 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2594 r = -ENOMEM;
2595 if (!kvm_sregs)
2596 goto out;
2597 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002598 if (r)
2599 goto out;
2600 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002601 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602 goto out;
2603 r = 0;
2604 break;
2605 }
2606 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002607 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2608 if (IS_ERR(kvm_sregs)) {
2609 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002610 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002611 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002612 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002613 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614 break;
2615 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002616 case KVM_GET_MP_STATE: {
2617 struct kvm_mp_state mp_state;
2618
2619 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2620 if (r)
2621 goto out;
2622 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002623 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002624 goto out;
2625 r = 0;
2626 break;
2627 }
2628 case KVM_SET_MP_STATE: {
2629 struct kvm_mp_state mp_state;
2630
2631 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002632 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002633 goto out;
2634 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002635 break;
2636 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637 case KVM_TRANSLATE: {
2638 struct kvm_translation tr;
2639
2640 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002641 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002643 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002644 if (r)
2645 goto out;
2646 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002647 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002648 goto out;
2649 r = 0;
2650 break;
2651 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002652 case KVM_SET_GUEST_DEBUG: {
2653 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002654
2655 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002656 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002658 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002659 break;
2660 }
Avi Kivity1961d272007-03-05 19:46:05 +02002661 case KVM_SET_SIGNAL_MASK: {
2662 struct kvm_signal_mask __user *sigmask_arg = argp;
2663 struct kvm_signal_mask kvm_sigmask;
2664 sigset_t sigset, *p;
2665
2666 p = NULL;
2667 if (argp) {
2668 r = -EFAULT;
2669 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002670 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002671 goto out;
2672 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002673 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002674 goto out;
2675 r = -EFAULT;
2676 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002677 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002678 goto out;
2679 p = &sigset;
2680 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002681 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002682 break;
2683 }
Avi Kivityb8836732007-04-01 16:34:31 +03002684 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002685 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2686 r = -ENOMEM;
2687 if (!fpu)
2688 goto out;
2689 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002690 if (r)
2691 goto out;
2692 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002693 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002694 goto out;
2695 r = 0;
2696 break;
2697 }
2698 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002699 fpu = memdup_user(argp, sizeof(*fpu));
2700 if (IS_ERR(fpu)) {
2701 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002702 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002703 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002704 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002705 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002706 break;
2707 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002708 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002709 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002710 }
2711out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002712 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002713 kfree(fpu);
2714 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002715 return r;
2716}
2717
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002718#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002719static long kvm_vcpu_compat_ioctl(struct file *filp,
2720 unsigned int ioctl, unsigned long arg)
2721{
2722 struct kvm_vcpu *vcpu = filp->private_data;
2723 void __user *argp = compat_ptr(arg);
2724 int r;
2725
2726 if (vcpu->kvm->mm != current->mm)
2727 return -EIO;
2728
2729 switch (ioctl) {
2730 case KVM_SET_SIGNAL_MASK: {
2731 struct kvm_signal_mask __user *sigmask_arg = argp;
2732 struct kvm_signal_mask kvm_sigmask;
2733 compat_sigset_t csigset;
2734 sigset_t sigset;
2735
2736 if (argp) {
2737 r = -EFAULT;
2738 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002739 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002740 goto out;
2741 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002742 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002743 goto out;
2744 r = -EFAULT;
2745 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002746 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002747 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002748 sigset_from_compat(&sigset, &csigset);
2749 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2750 } else
2751 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002752 break;
2753 }
2754 default:
2755 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2756 }
2757
2758out:
2759 return r;
2760}
2761#endif
2762
Scott Wood852b6d52013-04-12 14:08:42 +00002763static int kvm_device_ioctl_attr(struct kvm_device *dev,
2764 int (*accessor)(struct kvm_device *dev,
2765 struct kvm_device_attr *attr),
2766 unsigned long arg)
2767{
2768 struct kvm_device_attr attr;
2769
2770 if (!accessor)
2771 return -EPERM;
2772
2773 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2774 return -EFAULT;
2775
2776 return accessor(dev, &attr);
2777}
2778
2779static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2780 unsigned long arg)
2781{
2782 struct kvm_device *dev = filp->private_data;
2783
2784 switch (ioctl) {
2785 case KVM_SET_DEVICE_ATTR:
2786 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2787 case KVM_GET_DEVICE_ATTR:
2788 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2789 case KVM_HAS_DEVICE_ATTR:
2790 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2791 default:
2792 if (dev->ops->ioctl)
2793 return dev->ops->ioctl(dev, ioctl, arg);
2794
2795 return -ENOTTY;
2796 }
2797}
2798
Scott Wood852b6d52013-04-12 14:08:42 +00002799static int kvm_device_release(struct inode *inode, struct file *filp)
2800{
2801 struct kvm_device *dev = filp->private_data;
2802 struct kvm *kvm = dev->kvm;
2803
Scott Wood852b6d52013-04-12 14:08:42 +00002804 kvm_put_kvm(kvm);
2805 return 0;
2806}
2807
2808static const struct file_operations kvm_device_fops = {
2809 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002810#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002811 .compat_ioctl = kvm_device_ioctl,
2812#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002813 .release = kvm_device_release,
2814};
2815
2816struct kvm_device *kvm_device_from_filp(struct file *filp)
2817{
2818 if (filp->f_op != &kvm_device_fops)
2819 return NULL;
2820
2821 return filp->private_data;
2822}
2823
Will Deacond60eacb2014-09-02 10:27:33 +01002824static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2825#ifdef CONFIG_KVM_MPIC
2826 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2827 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2828#endif
2829
2830#ifdef CONFIG_KVM_XICS
2831 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2832#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002833};
2834
2835int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2836{
2837 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2838 return -ENOSPC;
2839
2840 if (kvm_device_ops_table[type] != NULL)
2841 return -EEXIST;
2842
2843 kvm_device_ops_table[type] = ops;
2844 return 0;
2845}
2846
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002847void kvm_unregister_device_ops(u32 type)
2848{
2849 if (kvm_device_ops_table[type] != NULL)
2850 kvm_device_ops_table[type] = NULL;
2851}
2852
Scott Wood852b6d52013-04-12 14:08:42 +00002853static int kvm_ioctl_create_device(struct kvm *kvm,
2854 struct kvm_create_device *cd)
2855{
2856 struct kvm_device_ops *ops = NULL;
2857 struct kvm_device *dev;
2858 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2859 int ret;
2860
Will Deacond60eacb2014-09-02 10:27:33 +01002861 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002862 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002863
2864 ops = kvm_device_ops_table[cd->type];
2865 if (ops == NULL)
2866 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002867
2868 if (test)
2869 return 0;
2870
2871 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2872 if (!dev)
2873 return -ENOMEM;
2874
2875 dev->ops = ops;
2876 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002877
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002878 mutex_lock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002879 ret = ops->create(dev, cd->type);
2880 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002881 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002882 kfree(dev);
2883 return ret;
2884 }
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002885 list_add(&dev->vm_node, &kvm->devices);
2886 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002887
Christoffer Dall023e9fd2016-08-09 19:13:00 +02002888 if (ops->init)
2889 ops->init(dev);
2890
Yann Droneaud24009b02013-08-24 22:14:07 +02002891 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002892 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002893 mutex_lock(&kvm->lock);
2894 list_del(&dev->vm_node);
2895 mutex_unlock(&kvm->lock);
Dan Carpentera0f1d212016-11-30 22:21:05 +03002896 ops->destroy(dev);
Scott Wood852b6d52013-04-12 14:08:42 +00002897 return ret;
2898 }
2899
2900 kvm_get_kvm(kvm);
2901 cd->fd = ret;
2902 return 0;
2903}
2904
Alexander Graf92b591a2014-07-14 18:33:08 +02002905static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2906{
2907 switch (arg) {
2908 case KVM_CAP_USER_MEMORY:
2909 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2910 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Alexander Graf92b591a2014-07-14 18:33:08 +02002911 case KVM_CAP_INTERNAL_ERROR_DATA:
2912#ifdef CONFIG_HAVE_KVM_MSI
2913 case KVM_CAP_SIGNAL_MSI:
2914#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002915#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002916 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002917 case KVM_CAP_IRQFD_RESAMPLE:
2918#endif
Jason Wange9ea5062015-09-15 14:41:59 +08002919 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
Alexander Graf92b591a2014-07-14 18:33:08 +02002920 case KVM_CAP_CHECK_EXTENSION_VM:
2921 return 1;
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002922#ifdef CONFIG_KVM_MMIO
Paolo Bonzini30422552017-03-31 13:53:22 +02002923 case KVM_CAP_COALESCED_MMIO:
2924 return KVM_COALESCED_MMIO_PAGE_OFFSET;
2925#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02002926#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2927 case KVM_CAP_IRQ_ROUTING:
2928 return KVM_MAX_IRQ_ROUTES;
2929#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02002930#if KVM_ADDRESS_SPACE_NUM > 1
2931 case KVM_CAP_MULTI_ADDRESS_SPACE:
2932 return KVM_ADDRESS_SPACE_NUM;
2933#endif
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002934 case KVM_CAP_MAX_VCPU_ID:
2935 return KVM_MAX_VCPU_ID;
Alexander Graf92b591a2014-07-14 18:33:08 +02002936 default:
2937 break;
2938 }
2939 return kvm_vm_ioctl_check_extension(kvm, arg);
2940}
2941
Avi Kivitybccf2152007-02-21 18:04:26 +02002942static long kvm_vm_ioctl(struct file *filp,
2943 unsigned int ioctl, unsigned long arg)
2944{
2945 struct kvm *kvm = filp->private_data;
2946 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002947 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002948
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002949 if (kvm->mm != current->mm)
2950 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002951 switch (ioctl) {
2952 case KVM_CREATE_VCPU:
2953 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002954 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002955 case KVM_SET_USER_MEMORY_REGION: {
2956 struct kvm_userspace_memory_region kvm_userspace_mem;
2957
2958 r = -EFAULT;
2959 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002960 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002961 goto out;
2962
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002963 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002964 break;
2965 }
2966 case KVM_GET_DIRTY_LOG: {
2967 struct kvm_dirty_log log;
2968
2969 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002970 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002971 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002972 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973 break;
2974 }
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002975#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02002976 case KVM_REGISTER_COALESCED_MMIO: {
2977 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002978
Laurent Vivier5f94c172008-05-30 16:05:54 +02002979 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002980 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002981 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002982 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002983 break;
2984 }
2985 case KVM_UNREGISTER_COALESCED_MMIO: {
2986 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002987
Laurent Vivier5f94c172008-05-30 16:05:54 +02002988 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002989 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002990 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002991 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002992 break;
2993 }
2994#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002995 case KVM_IRQFD: {
2996 struct kvm_irqfd data;
2997
2998 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002999 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003000 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06003001 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003002 break;
3003 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003004 case KVM_IOEVENTFD: {
3005 struct kvm_ioeventfd data;
3006
3007 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003008 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003009 goto out;
3010 r = kvm_ioeventfd(kvm, &data);
3011 break;
3012 }
Jan Kiszka07975ad2012-03-29 21:14:12 +02003013#ifdef CONFIG_HAVE_KVM_MSI
3014 case KVM_SIGNAL_MSI: {
3015 struct kvm_msi msi;
3016
3017 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003018 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02003019 goto out;
3020 r = kvm_send_userspace_msi(kvm, &msi);
3021 break;
3022 }
3023#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003024#ifdef __KVM_HAVE_IRQ_LINE
3025 case KVM_IRQ_LINE_STATUS:
3026 case KVM_IRQ_LINE: {
3027 struct kvm_irq_level irq_event;
3028
3029 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003030 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003031 goto out;
3032
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003033 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3034 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003035 if (r)
3036 goto out;
3037
3038 r = -EFAULT;
3039 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08003040 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003041 goto out;
3042 }
3043
3044 r = 0;
3045 break;
3046 }
3047#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02003048#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3049 case KVM_SET_GSI_ROUTING: {
3050 struct kvm_irq_routing routing;
3051 struct kvm_irq_routing __user *urouting;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003052 struct kvm_irq_routing_entry *entries = NULL;
Alexander Grafaa8d5942013-04-15 21:12:53 +02003053
3054 r = -EFAULT;
3055 if (copy_from_user(&routing, argp, sizeof(routing)))
3056 goto out;
3057 r = -EINVAL;
Xiubo Licaf1ff22016-06-15 18:00:33 +08003058 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02003059 goto out;
3060 if (routing.flags)
3061 goto out;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003062 if (routing.nr) {
3063 r = -ENOMEM;
3064 entries = vmalloc(routing.nr * sizeof(*entries));
3065 if (!entries)
3066 goto out;
3067 r = -EFAULT;
3068 urouting = argp;
3069 if (copy_from_user(entries, urouting->entries,
3070 routing.nr * sizeof(*entries)))
3071 goto out_free_irq_routing;
3072 }
David Hildenbrand1df6dde2017-04-07 10:50:18 +02003073 /* avoid races with KVM_CREATE_IRQCHIP on x86 */
3074 mutex_lock(&kvm->lock);
Alexander Grafaa8d5942013-04-15 21:12:53 +02003075 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3076 routing.flags);
David Hildenbrand1df6dde2017-04-07 10:50:18 +02003077 mutex_unlock(&kvm->lock);
Xiubo Lia642a172015-02-26 14:58:20 +08003078out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02003079 vfree(entries);
3080 break;
3081 }
3082#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00003083 case KVM_CREATE_DEVICE: {
3084 struct kvm_create_device cd;
3085
3086 r = -EFAULT;
3087 if (copy_from_user(&cd, argp, sizeof(cd)))
3088 goto out;
3089
3090 r = kvm_ioctl_create_device(kvm, &cd);
3091 if (r)
3092 goto out;
3093
3094 r = -EFAULT;
3095 if (copy_to_user(argp, &cd, sizeof(cd)))
3096 goto out;
3097
3098 r = 0;
3099 break;
3100 }
Alexander Graf92b591a2014-07-14 18:33:08 +02003101 case KVM_CHECK_EXTENSION:
3102 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3103 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02003104 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003105 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003106 }
3107out:
3108 return r;
3109}
3110
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003111#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003112struct compat_kvm_dirty_log {
3113 __u32 slot;
3114 __u32 padding1;
3115 union {
3116 compat_uptr_t dirty_bitmap; /* one bit per page */
3117 __u64 padding2;
3118 };
3119};
3120
3121static long kvm_vm_compat_ioctl(struct file *filp,
3122 unsigned int ioctl, unsigned long arg)
3123{
3124 struct kvm *kvm = filp->private_data;
3125 int r;
3126
3127 if (kvm->mm != current->mm)
3128 return -EIO;
3129 switch (ioctl) {
3130 case KVM_GET_DIRTY_LOG: {
3131 struct compat_kvm_dirty_log compat_log;
3132 struct kvm_dirty_log log;
3133
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003134 if (copy_from_user(&compat_log, (void __user *)arg,
3135 sizeof(compat_log)))
Markus Elfringf6a3b162017-01-22 11:30:21 +01003136 return -EFAULT;
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003137 log.slot = compat_log.slot;
3138 log.padding1 = compat_log.padding1;
3139 log.padding2 = compat_log.padding2;
3140 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3141
3142 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003143 break;
3144 }
3145 default:
3146 r = kvm_vm_ioctl(filp, ioctl, arg);
3147 }
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003148 return r;
3149}
3150#endif
3151
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003152static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02003153 .release = kvm_vm_release,
3154 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003155#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003156 .compat_ioctl = kvm_vm_compat_ioctl,
3157#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02003158 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02003159};
3160
Carsten Ottee08b9632012-01-04 10:25:20 +01003161static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02003162{
Heiko Carstensaac87632010-10-27 17:22:10 +02003163 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003164 struct kvm *kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003165 struct file *file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003166
Carsten Ottee08b9632012-01-04 10:25:20 +01003167 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04003168 if (IS_ERR(kvm))
3169 return PTR_ERR(kvm);
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003170#ifdef CONFIG_KVM_MMIO
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003171 r = kvm_coalesced_mmio_init(kvm);
3172 if (r < 0) {
3173 kvm_put_kvm(kvm);
3174 return r;
3175 }
3176#endif
Al Viro506cfba2016-07-14 18:54:17 +02003177 r = get_unused_fd_flags(O_CLOEXEC);
Janosch Frank536a6f82016-05-18 13:26:23 +02003178 if (r < 0) {
Al Viro66c0b392008-04-19 20:33:56 +01003179 kvm_put_kvm(kvm);
Janosch Frank536a6f82016-05-18 13:26:23 +02003180 return r;
3181 }
Al Viro506cfba2016-07-14 18:54:17 +02003182 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3183 if (IS_ERR(file)) {
3184 put_unused_fd(r);
3185 kvm_put_kvm(kvm);
3186 return PTR_ERR(file);
3187 }
Janosch Frank536a6f82016-05-18 13:26:23 +02003188
3189 if (kvm_create_vm_debugfs(kvm, r) < 0) {
Al Viro506cfba2016-07-14 18:54:17 +02003190 put_unused_fd(r);
3191 fput(file);
Janosch Frank536a6f82016-05-18 13:26:23 +02003192 return -ENOMEM;
3193 }
Avi Kivityf17abe92007-02-21 19:28:04 +02003194
Al Viro506cfba2016-07-14 18:54:17 +02003195 fd_install(r, file);
Heiko Carstensaac87632010-10-27 17:22:10 +02003196 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003197}
3198
3199static long kvm_dev_ioctl(struct file *filp,
3200 unsigned int ioctl, unsigned long arg)
3201{
Avi Kivity07c45a32007-03-07 13:05:38 +02003202 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003203
3204 switch (ioctl) {
3205 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003206 if (arg)
3207 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003208 r = KVM_API_VERSION;
3209 break;
3210 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01003211 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003212 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003213 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02003214 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02003215 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02003216 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02003217 if (arg)
3218 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02003219 r = PAGE_SIZE; /* struct kvm_run */
3220#ifdef CONFIG_X86
3221 r += PAGE_SIZE; /* pio data page */
3222#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003223#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02003224 r += PAGE_SIZE; /* coalesced mmio ring page */
3225#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02003226 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003227 case KVM_TRACE_ENABLE:
3228 case KVM_TRACE_PAUSE:
3229 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03003230 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003231 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003232 default:
Carsten Otte043405e2007-10-10 17:16:19 +02003233 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003234 }
3235out:
3236 return r;
3237}
3238
Avi Kivity6aa8b732006-12-10 02:21:36 -08003239static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240 .unlocked_ioctl = kvm_dev_ioctl,
3241 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003242 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003243};
3244
3245static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003246 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003247 "kvm",
3248 &kvm_chardev_ops,
3249};
3250
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003251static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003252{
3253 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02003254 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03003255
Rusty Russell7f59f492008-12-07 21:25:45 +10303256 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003257 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02003258
Rusty Russell7f59f492008-12-07 21:25:45 +10303259 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02003260
Radim Krčmář13a34e02014-08-28 15:13:03 +02003261 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02003262
3263 if (r) {
3264 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3265 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08003266 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02003267 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03003268}
3269
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003270static int kvm_starting_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003271{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003272 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003273 if (kvm_usage_count)
3274 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003275 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003276 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003277}
3278
3279static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003280{
3281 int cpu = raw_smp_processor_id();
3282
Rusty Russell7f59f492008-12-07 21:25:45 +10303283 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003284 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10303285 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02003286 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03003287}
3288
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003289static int kvm_dying_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003290{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003291 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003292 if (kvm_usage_count)
3293 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003294 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003295 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003296}
3297
Alexander Graf10474ae2009-09-15 11:37:46 +02003298static void hardware_disable_all_nolock(void)
3299{
3300 BUG_ON(!kvm_usage_count);
3301
3302 kvm_usage_count--;
3303 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003304 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003305}
3306
3307static void hardware_disable_all(void)
3308{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003309 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003310 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003311 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003312}
3313
3314static int hardware_enable_all(void)
3315{
3316 int r = 0;
3317
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003318 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003319
3320 kvm_usage_count++;
3321 if (kvm_usage_count == 1) {
3322 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003323 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003324
3325 if (atomic_read(&hardware_enable_failed)) {
3326 hardware_disable_all_nolock();
3327 r = -EBUSY;
3328 }
3329 }
3330
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003331 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003332
3333 return r;
3334}
3335
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003336static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003337 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003338{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003339 /*
3340 * Some (well, at least mine) BIOSes hang on reboot if
3341 * in vmx root mode.
3342 *
3343 * And Intel TXT required VMX off for all cpu when system shutdown.
3344 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003345 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003346 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003347 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003348 return NOTIFY_OK;
3349}
3350
3351static struct notifier_block kvm_reboot_notifier = {
3352 .notifier_call = kvm_reboot,
3353 .priority = 0,
3354};
3355
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003356static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003357{
3358 int i;
3359
3360 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003361 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003362
3363 kvm_iodevice_destructor(pos);
3364 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003365 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003366}
3367
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003368static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003369 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003370{
Jason Wang8f4216c72015-09-15 14:41:57 +08003371 gpa_t addr1 = r1->addr;
3372 gpa_t addr2 = r2->addr;
3373
3374 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003375 return -1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003376
3377 /* If r2->len == 0, match the exact address. If r2->len != 0,
3378 * accept any overlapping write. Any order is acceptable for
3379 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3380 * we process all of them.
3381 */
3382 if (r2->len) {
3383 addr1 += r1->len;
3384 addr2 += r2->len;
3385 }
3386
3387 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003388 return 1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003389
Sasha Levin743eeb02011-07-27 16:00:48 +03003390 return 0;
3391}
3392
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003393static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3394{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003395 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003396}
3397
Geoff Levand39369f72013-04-05 19:20:30 +00003398static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03003399 gpa_t addr, int len)
3400{
Sasha Levin743eeb02011-07-27 16:00:48 +03003401 bus->range[bus->dev_count++] = (struct kvm_io_range) {
3402 .addr = addr,
3403 .len = len,
3404 .dev = dev,
3405 };
3406
3407 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
3408 kvm_io_bus_sort_cmp, NULL);
3409
3410 return 0;
3411}
3412
Geoff Levand39369f72013-04-05 19:20:30 +00003413static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003414 gpa_t addr, int len)
3415{
3416 struct kvm_io_range *range, key;
3417 int off;
3418
3419 key = (struct kvm_io_range) {
3420 .addr = addr,
3421 .len = len,
3422 };
3423
3424 range = bsearch(&key, bus->range, bus->dev_count,
3425 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3426 if (range == NULL)
3427 return -ENOENT;
3428
3429 off = range - bus->range;
3430
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003431 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003432 off--;
3433
3434 return off;
3435}
3436
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003437static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003438 struct kvm_io_range *range, const void *val)
3439{
3440 int idx;
3441
3442 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3443 if (idx < 0)
3444 return -EOPNOTSUPP;
3445
3446 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003447 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003448 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003449 range->len, val))
3450 return idx;
3451 idx++;
3452 }
3453
3454 return -EOPNOTSUPP;
3455}
3456
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003457/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003458int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003459 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003460{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003461 struct kvm_io_bus *bus;
3462 struct kvm_io_range range;
3463 int r;
3464
3465 range = (struct kvm_io_range) {
3466 .addr = addr,
3467 .len = len,
3468 };
3469
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003470 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003471 if (!bus)
3472 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003473 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003474 return r < 0 ? r : 0;
3475}
3476
3477/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003478int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3479 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003480{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003481 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003482 struct kvm_io_range range;
3483
3484 range = (struct kvm_io_range) {
3485 .addr = addr,
3486 .len = len,
3487 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003488
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003489 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003490 if (!bus)
3491 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02003492
3493 /* First try the device referenced by cookie. */
3494 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003495 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003496 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003497 val))
3498 return cookie;
3499
3500 /*
3501 * cookie contained garbage; fall back to search and return the
3502 * correct cookie value.
3503 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003504 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003505}
3506
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003507static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3508 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003509{
3510 int idx;
3511
3512 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003513 if (idx < 0)
3514 return -EOPNOTSUPP;
3515
3516 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003517 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003518 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003519 range->len, val))
3520 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003521 idx++;
3522 }
3523
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003524 return -EOPNOTSUPP;
3525}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003526EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003527
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003528/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003529int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003530 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003531{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003532 struct kvm_io_bus *bus;
3533 struct kvm_io_range range;
3534 int r;
3535
3536 range = (struct kvm_io_range) {
3537 .addr = addr,
3538 .len = len,
3539 };
3540
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003541 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003542 if (!bus)
3543 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003544 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003545 return r < 0 ? r : 0;
3546}
3547
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003548
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003549/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003550int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3551 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003552{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003553 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003554
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003555 bus = kvm->buses[bus_idx];
David Hildenbrand90db1042017-03-23 18:24:19 +01003556 if (!bus)
3557 return -ENOMEM;
3558
Amos Kong6ea34c92013-05-25 06:44:15 +08003559 /* exclude ioeventfd which is limited by maximum fd */
3560 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003561 return -ENOSPC;
3562
Jason Wangd3febdd2015-08-25 17:05:46 +08003563 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count + 1) *
Amos Konga13007162012-03-09 12:17:32 +08003564 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003565 if (!new_bus)
3566 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003567 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3568 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003569 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003570 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3571 synchronize_srcu_expedited(&kvm->srcu);
3572 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003573
3574 return 0;
3575}
3576
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003577/* Caller must hold slots_lock. */
David Hildenbrand90db1042017-03-23 18:24:19 +01003578void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3579 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003580{
David Hildenbrand90db1042017-03-23 18:24:19 +01003581 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003582 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003583
Sasha Levincdfca7b2011-12-04 19:36:28 +02003584 bus = kvm->buses[bus_idx];
Peter Xudf630b82017-03-15 16:01:17 +08003585 if (!bus)
David Hildenbrand90db1042017-03-23 18:24:19 +01003586 return;
Peter Xudf630b82017-03-15 16:01:17 +08003587
Amos Konga13007162012-03-09 12:17:32 +08003588 for (i = 0; i < bus->dev_count; i++)
3589 if (bus->range[i].dev == dev) {
Gregory Haskins090b7af2009-07-07 17:08:44 -04003590 break;
3591 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003592
David Hildenbrand90db1042017-03-23 18:24:19 +01003593 if (i == bus->dev_count)
3594 return;
Amos Konga13007162012-03-09 12:17:32 +08003595
Jason Wangd3febdd2015-08-25 17:05:46 +08003596 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count - 1) *
Amos Konga13007162012-03-09 12:17:32 +08003597 sizeof(struct kvm_io_range)), GFP_KERNEL);
David Hildenbrand90db1042017-03-23 18:24:19 +01003598 if (!new_bus) {
3599 pr_err("kvm: failed to shrink bus, removing it completely\n");
3600 goto broken;
3601 }
Amos Konga13007162012-03-09 12:17:32 +08003602
3603 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3604 new_bus->dev_count--;
3605 memcpy(new_bus->range + i, bus->range + i + 1,
3606 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003607
David Hildenbrand90db1042017-03-23 18:24:19 +01003608broken:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003609 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3610 synchronize_srcu_expedited(&kvm->srcu);
3611 kfree(bus);
David Hildenbrand90db1042017-03-23 18:24:19 +01003612 return;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003613}
3614
Andre Przywara8a39d002016-07-15 12:43:26 +01003615struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3616 gpa_t addr)
3617{
3618 struct kvm_io_bus *bus;
3619 int dev_idx, srcu_idx;
3620 struct kvm_io_device *iodev = NULL;
3621
3622 srcu_idx = srcu_read_lock(&kvm->srcu);
3623
3624 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003625 if (!bus)
3626 goto out_unlock;
Andre Przywara8a39d002016-07-15 12:43:26 +01003627
3628 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
3629 if (dev_idx < 0)
3630 goto out_unlock;
3631
3632 iodev = bus->range[dev_idx].dev;
3633
3634out_unlock:
3635 srcu_read_unlock(&kvm->srcu, srcu_idx);
3636
3637 return iodev;
3638}
3639EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
3640
Janosch Frank536a6f82016-05-18 13:26:23 +02003641static int kvm_debugfs_open(struct inode *inode, struct file *file,
3642 int (*get)(void *, u64 *), int (*set)(void *, u64),
3643 const char *fmt)
3644{
3645 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3646 inode->i_private;
3647
3648 /* The debugfs files are a reference to the kvm struct which
3649 * is still valid when kvm_destroy_vm is called.
3650 * To avoid the race between open and the removal of the debugfs
3651 * directory we test against the users count.
3652 */
Elena Reshetovae3736c32017-02-20 13:06:21 +02003653 if (!refcount_inc_not_zero(&stat_data->kvm->users_count))
Janosch Frank536a6f82016-05-18 13:26:23 +02003654 return -ENOENT;
3655
3656 if (simple_attr_open(inode, file, get, set, fmt)) {
3657 kvm_put_kvm(stat_data->kvm);
3658 return -ENOMEM;
3659 }
3660
3661 return 0;
3662}
3663
3664static int kvm_debugfs_release(struct inode *inode, struct file *file)
3665{
3666 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3667 inode->i_private;
3668
3669 simple_attr_release(inode, file);
3670 kvm_put_kvm(stat_data->kvm);
3671
3672 return 0;
3673}
3674
3675static int vm_stat_get_per_vm(void *data, u64 *val)
3676{
3677 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3678
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003679 *val = *(ulong *)((void *)stat_data->kvm + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003680
3681 return 0;
3682}
3683
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003684static int vm_stat_clear_per_vm(void *data, u64 val)
3685{
3686 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3687
3688 if (val)
3689 return -EINVAL;
3690
3691 *(ulong *)((void *)stat_data->kvm + stat_data->offset) = 0;
3692
3693 return 0;
3694}
3695
Janosch Frank536a6f82016-05-18 13:26:23 +02003696static int vm_stat_get_per_vm_open(struct inode *inode, struct file *file)
3697{
3698 __simple_attr_check_format("%llu\n", 0ull);
3699 return kvm_debugfs_open(inode, file, vm_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003700 vm_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003701}
3702
3703static const struct file_operations vm_stat_get_per_vm_fops = {
3704 .owner = THIS_MODULE,
3705 .open = vm_stat_get_per_vm_open,
3706 .release = kvm_debugfs_release,
3707 .read = simple_attr_read,
3708 .write = simple_attr_write,
3709 .llseek = generic_file_llseek,
3710};
3711
3712static int vcpu_stat_get_per_vm(void *data, u64 *val)
3713{
3714 int i;
3715 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3716 struct kvm_vcpu *vcpu;
3717
3718 *val = 0;
3719
3720 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003721 *val += *(u64 *)((void *)vcpu + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003722
3723 return 0;
3724}
3725
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003726static int vcpu_stat_clear_per_vm(void *data, u64 val)
3727{
3728 int i;
3729 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3730 struct kvm_vcpu *vcpu;
3731
3732 if (val)
3733 return -EINVAL;
3734
3735 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
3736 *(u64 *)((void *)vcpu + stat_data->offset) = 0;
3737
3738 return 0;
3739}
3740
Janosch Frank536a6f82016-05-18 13:26:23 +02003741static int vcpu_stat_get_per_vm_open(struct inode *inode, struct file *file)
3742{
3743 __simple_attr_check_format("%llu\n", 0ull);
3744 return kvm_debugfs_open(inode, file, vcpu_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003745 vcpu_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003746}
3747
3748static const struct file_operations vcpu_stat_get_per_vm_fops = {
3749 .owner = THIS_MODULE,
3750 .open = vcpu_stat_get_per_vm_open,
3751 .release = kvm_debugfs_release,
3752 .read = simple_attr_read,
3753 .write = simple_attr_write,
3754 .llseek = generic_file_llseek,
3755};
3756
3757static const struct file_operations *stat_fops_per_vm[] = {
3758 [KVM_STAT_VCPU] = &vcpu_stat_get_per_vm_fops,
3759 [KVM_STAT_VM] = &vm_stat_get_per_vm_fops,
3760};
3761
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003762static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003763{
3764 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003765 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003766 struct kvm_stat_data stat_tmp = {.offset = offset};
3767 u64 tmp_val;
Avi Kivityba1389b2007-11-18 16:24:12 +02003768
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003769 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003770 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003771 list_for_each_entry(kvm, &vm_list, vm_list) {
3772 stat_tmp.kvm = kvm;
3773 vm_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3774 *val += tmp_val;
3775 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003776 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003777 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003778}
3779
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003780static int vm_stat_clear(void *_offset, u64 val)
3781{
3782 unsigned offset = (long)_offset;
3783 struct kvm *kvm;
3784 struct kvm_stat_data stat_tmp = {.offset = offset};
3785
3786 if (val)
3787 return -EINVAL;
3788
3789 spin_lock(&kvm_lock);
3790 list_for_each_entry(kvm, &vm_list, vm_list) {
3791 stat_tmp.kvm = kvm;
3792 vm_stat_clear_per_vm((void *)&stat_tmp, 0);
3793 }
3794 spin_unlock(&kvm_lock);
3795
3796 return 0;
3797}
3798
3799DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003800
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003801static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003802{
3803 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003804 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003805 struct kvm_stat_data stat_tmp = {.offset = offset};
3806 u64 tmp_val;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003807
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003808 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003809 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003810 list_for_each_entry(kvm, &vm_list, vm_list) {
3811 stat_tmp.kvm = kvm;
3812 vcpu_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3813 *val += tmp_val;
3814 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003815 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003816 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003817}
3818
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003819static int vcpu_stat_clear(void *_offset, u64 val)
3820{
3821 unsigned offset = (long)_offset;
3822 struct kvm *kvm;
3823 struct kvm_stat_data stat_tmp = {.offset = offset};
3824
3825 if (val)
3826 return -EINVAL;
3827
3828 spin_lock(&kvm_lock);
3829 list_for_each_entry(kvm, &vm_list, vm_list) {
3830 stat_tmp.kvm = kvm;
3831 vcpu_stat_clear_per_vm((void *)&stat_tmp, 0);
3832 }
3833 spin_unlock(&kvm_lock);
3834
3835 return 0;
3836}
3837
3838DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
3839 "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003840
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003841static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003842 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3843 [KVM_STAT_VM] = &vm_stat_fops,
3844};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003845
Hamo4f69b682011-12-15 14:23:16 +08003846static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003847{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003848 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003849 struct kvm_stats_debugfs_item *p;
3850
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003851 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003852 if (kvm_debugfs_dir == NULL)
3853 goto out;
3854
Janosch Frank536a6f82016-05-18 13:26:23 +02003855 kvm_debugfs_num_entries = 0;
3856 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003857 if (!debugfs_create_file(p->name, 0644, kvm_debugfs_dir,
Janosch Frank4bd33b52015-10-14 12:37:35 +02003858 (void *)(long)p->offset,
3859 stat_fops[p->kind]))
Hamo4f69b682011-12-15 14:23:16 +08003860 goto out_dir;
3861 }
3862
3863 return 0;
3864
3865out_dir:
3866 debugfs_remove_recursive(kvm_debugfs_dir);
3867out:
3868 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003869}
3870
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003871static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003872{
Alexander Graf10474ae2009-09-15 11:37:46 +02003873 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003874 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003875 return 0;
3876}
3877
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003878static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003879{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003880 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003881 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003882 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003883 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003884}
3885
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003886static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003887 .suspend = kvm_suspend,
3888 .resume = kvm_resume,
3889};
3890
Avi Kivity15ad7142007-07-11 18:17:21 +03003891static inline
3892struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3893{
3894 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3895}
3896
3897static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3898{
3899 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08003900
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303901 if (vcpu->preempted)
3902 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003903
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003904 kvm_arch_sched_in(vcpu, cpu);
3905
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003906 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003907}
3908
3909static void kvm_sched_out(struct preempt_notifier *pn,
3910 struct task_struct *next)
3911{
3912 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3913
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303914 if (current->state == TASK_RUNNING)
3915 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003916 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003917}
3918
Avi Kivity0ee75be2010-04-28 15:39:01 +03003919int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003920 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003921{
3922 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003923 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003924
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003925 r = kvm_arch_init(opaque);
3926 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003927 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003928
Asias He7dac16c2013-05-08 10:57:29 +08003929 /*
3930 * kvm_arch_init makes sure there's at most one caller
3931 * for architectures that support multiple implementations,
3932 * like intel and amd on x86.
Paolo Bonzini36343f62016-10-26 13:35:56 +02003933 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3934 * conflicts in case kvm is already setup for another implementation.
Asias He7dac16c2013-05-08 10:57:29 +08003935 */
Paolo Bonzini36343f62016-10-26 13:35:56 +02003936 r = kvm_irqfd_init();
3937 if (r)
3938 goto out_irqfd;
Asias He7dac16c2013-05-08 10:57:29 +08003939
Avi Kivity8437a6172009-06-06 14:52:35 -07003940 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303941 r = -ENOMEM;
3942 goto out_free_0;
3943 }
3944
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003945 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003946 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303947 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003948
Yang, Sheng002c7f72007-07-31 14:23:01 +03003949 for_each_online_cpu(cpu) {
3950 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003951 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003952 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003953 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003954 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003955 }
3956
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003957 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003958 kvm_starting_cpu, kvm_dying_cpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08003959 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003960 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003961 register_reboot_notifier(&kvm_reboot_notifier);
3962
Rusty Russellc16f8622007-07-30 21:12:19 +10003963 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003964 if (!vcpu_align)
3965 vcpu_align = __alignof__(struct kvm_vcpu);
3966 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003967 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003968 if (!kvm_vcpu_cache) {
3969 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003970 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003971 }
3972
Gleb Natapovaf585b92010-10-14 11:22:46 +02003973 r = kvm_async_pf_init();
3974 if (r)
3975 goto out_free;
3976
Avi Kivity6aa8b732006-12-10 02:21:36 -08003977 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003978 kvm_vm_fops.owner = module;
3979 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003980
3981 r = misc_register(&kvm_dev);
3982 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003983 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003984 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003985 }
3986
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003987 register_syscore_ops(&kvm_syscore_ops);
3988
Avi Kivity15ad7142007-07-11 18:17:21 +03003989 kvm_preempt_ops.sched_in = kvm_sched_in;
3990 kvm_preempt_ops.sched_out = kvm_sched_out;
3991
Hamo4f69b682011-12-15 14:23:16 +08003992 r = kvm_init_debug();
3993 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003994 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08003995 goto out_undebugfs;
3996 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003997
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02003998 r = kvm_vfio_ops_init();
3999 WARN_ON(r);
4000
Avi Kivityc7addb92007-09-16 18:58:32 +02004001 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004002
Hamo4f69b682011-12-15 14:23:16 +08004003out_undebugfs:
4004 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08004005 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004006out_unreg:
4007 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004008out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10004009 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004010out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004011 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004012 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004013out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08004014out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004015 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10304016out_free_0a:
4017 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004018out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004019 kvm_irqfd_exit();
Paolo Bonzini36343f62016-10-26 13:35:56 +02004020out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08004021 kvm_arch_exit();
4022out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004023 return r;
4024}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004025EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004026
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004027void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004028{
Janosch Frank4bd33b52015-10-14 12:37:35 +02004029 debugfs_remove_recursive(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004030 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10004031 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004032 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004033 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004034 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004035 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004036 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004037 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004038 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004039 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10304040 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08004041 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004042}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004043EXPORT_SYMBOL_GPL(kvm_exit);