blob: 6281cc2446d59c109df694757231199b9f4f8649 [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
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200168/* TODO: merge with kvm_arch_vcpu_should_kick */
169static bool kvm_request_needs_ipi(struct kvm_vcpu *vcpu, unsigned req)
170{
171 int mode = kvm_vcpu_exiting_guest_mode(vcpu);
172
173 /*
174 * We need to wait for the VCPU to reenable interrupts and get out of
175 * READING_SHADOW_PAGE_TABLES mode.
176 */
177 if (req & KVM_REQUEST_WAIT)
178 return mode != OUTSIDE_GUEST_MODE;
179
180 /*
181 * Need to kick a running VCPU, but otherwise there is nothing to do.
182 */
183 return mode == IN_GUEST_MODE;
184}
185
Avi Kivityd9e368d2007-06-07 19:18:30 +0300186static void ack_flush(void *_completed)
187{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300188}
189
Tang Chen445b8232014-09-24 15:57:55 +0800190bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300191{
Avi Kivity597a5f52008-07-20 14:24:22 +0300192 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030193 cpumask_var_t cpus;
194 bool called = true;
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200195 bool wait = req & KVM_REQUEST_WAIT;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300196 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300197
Li Zefan79f55992009-06-15 14:58:26 +0800198 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030199
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800200 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300201 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800202 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300203 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800204
Radim Krčmář178f02f2017-04-26 22:32:26 +0200205 if (!(req & KVM_REQUEST_NO_WAKEUP) && kvm_vcpu_wake_up(vcpu))
206 continue;
Radim Krčmář6c6e8362017-04-26 22:32:23 +0200207
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800208 if (cpus != NULL && cpu != -1 && cpu != me &&
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200209 kvm_request_needs_ipi(vcpu, req))
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030210 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300211 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030212 if (unlikely(cpus == NULL))
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200213 smp_call_function_many(cpu_online_mask, ack_flush, NULL, wait);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030214 else if (!cpumask_empty(cpus))
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200215 smp_call_function_many(cpus, ack_flush, NULL, wait);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030216 else
217 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800218 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030219 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030220 return called;
221}
222
Mario Smarducha6d51012015-01-15 15:58:52 -0800223#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030224void kvm_flush_remote_tlbs(struct kvm *kvm)
225{
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800226 /*
227 * Read tlbs_dirty before setting KVM_REQ_TLB_FLUSH in
228 * kvm_make_all_cpus_request.
229 */
230 long dirty_count = smp_load_acquire(&kvm->tlbs_dirty);
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800231
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800232 /*
233 * We want to publish modifications to the page tables before reading
234 * mode. Pairs with a memory barrier in arch-specific code.
235 * - x86: smp_mb__after_srcu_read_unlock in vcpu_enter_guest
236 * and smp_mb in walk_shadow_page_lockless_begin/end.
237 * - powerpc: smp_mb in kvmppc_prepare_to_enter.
238 *
239 * There is already an smp_mb__after_atomic() before
240 * kvm_make_all_cpus_request() reads vcpu->mode. We reuse that
241 * barrier here.
242 */
Tang Chen445b8232014-09-24 15:57:55 +0800243 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030244 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800245 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300246}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530247EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800248#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300249
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500250void kvm_reload_remote_mmus(struct kvm *kvm)
251{
Tang Chen445b8232014-09-24 15:57:55 +0800252 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500253}
254
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000255int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
256{
257 struct page *page;
258 int r;
259
260 mutex_init(&vcpu->mutex);
261 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000262 vcpu->kvm = kvm;
263 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500264 vcpu->pid = NULL;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100265 init_swait_queue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200266 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000267
Feng Wubf9f6ac2015-09-18 22:29:55 +0800268 vcpu->pre_pcpu = -1;
269 INIT_LIST_HEAD(&vcpu->blocked_vcpu_list);
270
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000271 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
272 if (!page) {
273 r = -ENOMEM;
274 goto fail;
275 }
276 vcpu->run = page_address(page);
277
Raghavendra K T4c088492012-07-18 19:07:46 +0530278 kvm_vcpu_set_in_spin_loop(vcpu, false);
279 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530280 vcpu->preempted = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530281
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800282 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000283 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800284 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000285 return 0;
286
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000287fail_free_run:
288 free_page((unsigned long)vcpu->run);
289fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000290 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000291}
292EXPORT_SYMBOL_GPL(kvm_vcpu_init);
293
294void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
295{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500296 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800297 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000298 free_page((unsigned long)vcpu->run);
299}
300EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
301
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200302#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
303static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
304{
305 return container_of(mn, struct kvm, mmu_notifier);
306}
307
308static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
309 struct mm_struct *mm,
310 unsigned long address)
311{
312 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200313 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200314
315 /*
316 * When ->invalidate_page runs, the linux pte has been zapped
317 * already but the page is still allocated until
318 * ->invalidate_page returns. So if we increase the sequence
319 * here the kvm page fault will notice if the spte can't be
320 * established because the page is going to be freed. If
321 * instead the kvm page fault establishes the spte before
322 * ->invalidate_page runs, kvm_unmap_hva will release it
323 * before returning.
324 *
325 * The sequence increase only need to be seen at spin_unlock
326 * time, and not at spin_lock time.
327 *
328 * Increasing the sequence after the spin_unlock would be
329 * unsafe because the kvm page fault could then establish the
330 * pte after kvm_unmap_hva returned, without noticing the page
331 * is going to be freed.
332 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200333 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200334 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900335
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200336 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800337 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200338 /* we've to flush the tlb before the pages can be freed */
339 if (need_tlb_flush)
340 kvm_flush_remote_tlbs(kvm);
341
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900342 spin_unlock(&kvm->mmu_lock);
Tang Chenfe715572014-09-24 15:57:57 +0800343
344 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
345
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900346 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200347}
348
Izik Eidus3da0dd42009-09-23 21:47:18 +0300349static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
350 struct mm_struct *mm,
351 unsigned long address,
352 pte_t pte)
353{
354 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200355 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300356
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200357 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300358 spin_lock(&kvm->mmu_lock);
359 kvm->mmu_notifier_seq++;
360 kvm_set_spte_hva(kvm, address, pte);
361 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200362 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300363}
364
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200365static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
366 struct mm_struct *mm,
367 unsigned long start,
368 unsigned long end)
369{
370 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200371 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200372
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200373 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200374 spin_lock(&kvm->mmu_lock);
375 /*
376 * The count increase must become visible at unlock time as no
377 * spte can be established without taking the mmu_lock and
378 * count is also read inside the mmu_lock critical section.
379 */
380 kvm->mmu_notifier_count++;
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +0900381 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800382 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200383 /* we've to flush the tlb before the pages can be freed */
384 if (need_tlb_flush)
385 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900386
387 spin_unlock(&kvm->mmu_lock);
388 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200389}
390
391static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
392 struct mm_struct *mm,
393 unsigned long start,
394 unsigned long end)
395{
396 struct kvm *kvm = mmu_notifier_to_kvm(mn);
397
398 spin_lock(&kvm->mmu_lock);
399 /*
400 * This sequence increase will notify the kvm page fault that
401 * the page that is going to be mapped in the spte could have
402 * been freed.
403 */
404 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000405 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200406 /*
407 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000408 * below count decrease, which is ensured by the smp_wmb above
409 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200410 */
411 kvm->mmu_notifier_count--;
412 spin_unlock(&kvm->mmu_lock);
413
414 BUG_ON(kvm->mmu_notifier_count < 0);
415}
416
417static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
418 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700419 unsigned long start,
420 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200421{
422 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200423 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200424
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200425 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200426 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200427
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700428 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200429 if (young)
430 kvm_flush_remote_tlbs(kvm);
431
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900432 spin_unlock(&kvm->mmu_lock);
433 srcu_read_unlock(&kvm->srcu, idx);
434
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200435 return young;
436}
437
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700438static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn,
439 struct mm_struct *mm,
440 unsigned long start,
441 unsigned long end)
442{
443 struct kvm *kvm = mmu_notifier_to_kvm(mn);
444 int young, idx;
445
446 idx = srcu_read_lock(&kvm->srcu);
447 spin_lock(&kvm->mmu_lock);
448 /*
449 * Even though we do not flush TLB, this will still adversely
450 * affect performance on pre-Haswell Intel EPT, where there is
451 * no EPT Access Bit to clear so that we have to tear down EPT
452 * tables instead. If we find this unacceptable, we can always
453 * add a parameter to kvm_age_hva so that it effectively doesn't
454 * do anything on clear_young.
455 *
456 * Also note that currently we never issue secondary TLB flushes
457 * from clear_young, leaving this job up to the regular system
458 * cadence. If we find this inaccurate, we might come up with a
459 * more sophisticated heuristic later.
460 */
461 young = kvm_age_hva(kvm, start, end);
462 spin_unlock(&kvm->mmu_lock);
463 srcu_read_unlock(&kvm->srcu, idx);
464
465 return young;
466}
467
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800468static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
469 struct mm_struct *mm,
470 unsigned long address)
471{
472 struct kvm *kvm = mmu_notifier_to_kvm(mn);
473 int young, idx;
474
475 idx = srcu_read_lock(&kvm->srcu);
476 spin_lock(&kvm->mmu_lock);
477 young = kvm_test_age_hva(kvm, address);
478 spin_unlock(&kvm->mmu_lock);
479 srcu_read_unlock(&kvm->srcu, idx);
480
481 return young;
482}
483
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100484static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
485 struct mm_struct *mm)
486{
487 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800488 int idx;
489
490 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300491 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800492 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100493}
494
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200495static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
496 .invalidate_page = kvm_mmu_notifier_invalidate_page,
497 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
498 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
499 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700500 .clear_young = kvm_mmu_notifier_clear_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800501 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300502 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100503 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200504};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200505
506static int kvm_init_mmu_notifier(struct kvm *kvm)
507{
508 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
509 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
510}
511
512#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
513
514static int kvm_init_mmu_notifier(struct kvm *kvm)
515{
516 return 0;
517}
518
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200519#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
520
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200521static struct kvm_memslots *kvm_alloc_memslots(void)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800522{
523 int i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200524 struct kvm_memslots *slots;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800525
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200526 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
527 if (!slots)
528 return NULL;
529
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800530 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800531 slots->id_to_index[i] = slots->memslots[i].id = i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200532
533 return slots;
534}
535
536static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
537{
538 if (!memslot->dirty_bitmap)
539 return;
540
541 kvfree(memslot->dirty_bitmap);
542 memslot->dirty_bitmap = NULL;
543}
544
545/*
546 * Free any memory in @free but not in @dont.
547 */
548static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
549 struct kvm_memory_slot *dont)
550{
551 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
552 kvm_destroy_dirty_bitmap(free);
553
554 kvm_arch_free_memslot(kvm, free, dont);
555
556 free->npages = 0;
557}
558
559static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
560{
561 struct kvm_memory_slot *memslot;
562
563 if (!slots)
564 return;
565
566 kvm_for_each_memslot(memslot, slots)
567 kvm_free_memslot(kvm, memslot, NULL);
568
569 kvfree(slots);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800570}
571
Janosch Frank536a6f82016-05-18 13:26:23 +0200572static void kvm_destroy_vm_debugfs(struct kvm *kvm)
573{
574 int i;
575
576 if (!kvm->debugfs_dentry)
577 return;
578
579 debugfs_remove_recursive(kvm->debugfs_dentry);
580
Luiz Capitulino9d5a1dc2016-09-07 14:47:21 -0400581 if (kvm->debugfs_stat_data) {
582 for (i = 0; i < kvm_debugfs_num_entries; i++)
583 kfree(kvm->debugfs_stat_data[i]);
584 kfree(kvm->debugfs_stat_data);
585 }
Janosch Frank536a6f82016-05-18 13:26:23 +0200586}
587
588static int kvm_create_vm_debugfs(struct kvm *kvm, int fd)
589{
590 char dir_name[ITOA_MAX_LEN * 2];
591 struct kvm_stat_data *stat_data;
592 struct kvm_stats_debugfs_item *p;
593
594 if (!debugfs_initialized())
595 return 0;
596
597 snprintf(dir_name, sizeof(dir_name), "%d-%d", task_pid_nr(current), fd);
598 kvm->debugfs_dentry = debugfs_create_dir(dir_name,
599 kvm_debugfs_dir);
600 if (!kvm->debugfs_dentry)
601 return -ENOMEM;
602
603 kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries,
604 sizeof(*kvm->debugfs_stat_data),
605 GFP_KERNEL);
606 if (!kvm->debugfs_stat_data)
607 return -ENOMEM;
608
609 for (p = debugfs_entries; p->name; p++) {
610 stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL);
611 if (!stat_data)
612 return -ENOMEM;
613
614 stat_data->kvm = kvm;
615 stat_data->offset = p->offset;
616 kvm->debugfs_stat_data[p - debugfs_entries] = stat_data;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +1100617 if (!debugfs_create_file(p->name, 0644,
Janosch Frank536a6f82016-05-18 13:26:23 +0200618 kvm->debugfs_dentry,
619 stat_data,
620 stat_fops_per_vm[p->kind]))
621 return -ENOMEM;
622 }
623 return 0;
624}
625
Carsten Ottee08b9632012-01-04 10:25:20 +0100626static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800627{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100628 int r, i;
629 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800630
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100631 if (!kvm)
632 return ERR_PTR(-ENOMEM);
633
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100634 spin_lock_init(&kvm->mmu_lock);
Vegard Nossumf1f10072017-02-27 14:30:07 -0800635 mmgrab(current->mm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100636 kvm->mm = current->mm;
637 kvm_eventfd_init(kvm);
638 mutex_init(&kvm->lock);
639 mutex_init(&kvm->irq_lock);
640 mutex_init(&kvm->slots_lock);
Elena Reshetovae3736c32017-02-20 13:06:21 +0200641 refcount_set(&kvm->users_count, 1);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100642 INIT_LIST_HEAD(&kvm->devices);
643
Carsten Ottee08b9632012-01-04 10:25:20 +0100644 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100645 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100646 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200647
648 r = hardware_enable_all();
649 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100650 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200651
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200652#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300653 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200654#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800655
Alex Williamson1e702d92012-12-10 10:33:32 -0700656 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
657
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200658 r = -ENOMEM;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200659 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800660 struct kvm_memslots *slots = kvm_alloc_memslots();
661 if (!slots)
Paolo Bonzinif481b062015-05-17 17:30:37 +0200662 goto out_err_no_srcu;
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800663 /*
664 * Generations must be different for each address space.
665 * Init kvm generation close to the maximum to easily test the
666 * code of handling generation number wrap-around.
667 */
668 slots->generation = i * 2 - 150;
669 rcu_assign_pointer(kvm->memslots[i], slots);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200670 }
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200671
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200672 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100673 goto out_err_no_srcu;
674 if (init_srcu_struct(&kvm->irq_srcu))
675 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200676 for (i = 0; i < KVM_NR_BUSES; i++) {
677 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
678 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100679 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200680 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200681 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700682
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700683 r = kvm_init_mmu_notifier(kvm);
684 if (r)
685 goto out_err;
686
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200687 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000688 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200689 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100690
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200691 preempt_notifier_inc();
692
Avi Kivityf17abe92007-02-21 19:28:04 +0200693 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200694
695out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100696 cleanup_srcu_struct(&kvm->irq_srcu);
697out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100698 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100699out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200700 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100701out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200702 for (i = 0; i < KVM_NR_BUSES; i++)
703 kfree(kvm->buses[i]);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200704 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
705 kvm_free_memslots(kvm, kvm->memslots[i]);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100706 kvm_arch_free_vm(kvm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100707 mmdrop(current->mm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200708 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200709}
710
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900711/*
712 * Avoid using vmalloc for a small buffer.
713 * Should not be used when the size is statically known.
714 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900715void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900716{
717 if (size > PAGE_SIZE)
718 return vzalloc(size);
719 else
720 return kzalloc(size, GFP_KERNEL);
721}
722
Scott Wood07f0a7b2013-04-25 14:11:23 +0000723static void kvm_destroy_devices(struct kvm *kvm)
724{
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800725 struct kvm_device *dev, *tmp;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000726
Christoffer Dalla28ebea2016-08-09 19:13:01 +0200727 /*
728 * We do not need to take the kvm->lock here, because nobody else
729 * has a reference to the struct kvm at this point and therefore
730 * cannot access the devices list anyhow.
731 */
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800732 list_for_each_entry_safe(dev, tmp, &kvm->devices, vm_node) {
733 list_del(&dev->vm_node);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000734 dev->ops->destroy(dev);
735 }
736}
737
Avi Kivityf17abe92007-02-21 19:28:04 +0200738static void kvm_destroy_vm(struct kvm *kvm)
739{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200740 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200741 struct mm_struct *mm = kvm->mm;
742
Janosch Frank536a6f82016-05-18 13:26:23 +0200743 kvm_destroy_vm_debugfs(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800744 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200745 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800746 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200747 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200748 kvm_free_irq_routing(kvm);
Peter Xudf630b82017-03-15 16:01:17 +0800749 for (i = 0; i < KVM_NR_BUSES; i++) {
David Hildenbrand90db1042017-03-23 18:24:19 +0100750 if (kvm->buses[i])
751 kvm_io_bus_destroy(kvm->buses[i]);
Peter Xudf630b82017-03-15 16:01:17 +0800752 kvm->buses[i] = NULL;
753 }
Avi Kivity980da6c2009-12-20 15:13:43 +0200754 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200755#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
756 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200757#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300758 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200759#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800760 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000761 kvm_destroy_devices(kvm);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200762 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
763 kvm_free_memslots(kvm, kvm->memslots[i]);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200764 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100765 cleanup_srcu_struct(&kvm->srcu);
766 kvm_arch_free_vm(kvm);
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200767 preempt_notifier_dec();
Alexander Graf10474ae2009-09-15 11:37:46 +0200768 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200769 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200770}
771
Izik Eidusd39f13b2008-03-30 16:01:25 +0300772void kvm_get_kvm(struct kvm *kvm)
773{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200774 refcount_inc(&kvm->users_count);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300775}
776EXPORT_SYMBOL_GPL(kvm_get_kvm);
777
778void kvm_put_kvm(struct kvm *kvm)
779{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200780 if (refcount_dec_and_test(&kvm->users_count))
Izik Eidusd39f13b2008-03-30 16:01:25 +0300781 kvm_destroy_vm(kvm);
782}
783EXPORT_SYMBOL_GPL(kvm_put_kvm);
784
785
Avi Kivityf17abe92007-02-21 19:28:04 +0200786static int kvm_vm_release(struct inode *inode, struct file *filp)
787{
788 struct kvm *kvm = filp->private_data;
789
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400790 kvm_irqfd_release(kvm);
791
Izik Eidusd39f13b2008-03-30 16:01:25 +0300792 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800793 return 0;
794}
795
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900796/*
797 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900798 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900799 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900800static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
801{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900802 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900803
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900804 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900805 if (!memslot->dirty_bitmap)
806 return -ENOMEM;
807
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900808 return 0;
809}
810
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800811/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000812 * Insert memslot and re-sort memslots based on their GFN,
813 * so binary search could be used to lookup GFN.
814 * Sorting algorithm takes advantage of having initially
815 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800816 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100817static void update_memslots(struct kvm_memslots *slots,
818 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800819{
Paolo Bonzini85931762014-11-14 10:22:07 +0100820 int id = new->id;
821 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000822 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800823
Paolo Bonzini85931762014-11-14 10:22:07 +0100824 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000825 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100826 WARN_ON(!mslots[i].npages);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000827 if (mslots[i].npages)
828 slots->used_slots--;
829 } else {
830 if (!mslots[i].npages)
831 slots->used_slots++;
832 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000833
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000834 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000835 new->base_gfn <= mslots[i + 1].base_gfn) {
836 if (!mslots[i + 1].npages)
837 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000838 mslots[i] = mslots[i + 1];
839 slots->id_to_index[mslots[i].id] = i;
840 i++;
841 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100842
843 /*
844 * The ">=" is needed when creating a slot with base_gfn == 0,
845 * so that it moves before all those with base_gfn == npages == 0.
846 *
847 * On the other hand, if new->npages is zero, the above loop has
848 * already left i pointing to the beginning of the empty part of
849 * mslots, and the ">=" would move the hole backwards in this
850 * case---which is wrong. So skip the loop when deleting a slot.
851 */
852 if (new->npages) {
853 while (i > 0 &&
854 new->base_gfn >= mslots[i - 1].base_gfn) {
855 mslots[i] = mslots[i - 1];
856 slots->id_to_index[mslots[i].id] = i;
857 i--;
858 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100859 } else
860 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800861
Paolo Bonzini85931762014-11-14 10:22:07 +0100862 mslots[i] = *new;
863 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800864}
865
Paolo Bonzini09170a42015-05-18 13:59:39 +0200866static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800867{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800868 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
869
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200870#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800871 valid_flags |= KVM_MEM_READONLY;
872#endif
873
874 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800875 return -EINVAL;
876
877 return 0;
878}
879
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200880static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzinif481b062015-05-17 17:30:37 +0200881 int as_id, struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200882{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200883 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200884
David Matlackee3d1572014-08-18 15:46:06 -0700885 /*
886 * Set the low bit in the generation, which disables SPTE caching
887 * until the end of synchronize_srcu_expedited.
888 */
889 WARN_ON(old_memslots->generation & 1);
890 slots->generation = old_memslots->generation + 1;
891
Paolo Bonzinif481b062015-05-17 17:30:37 +0200892 rcu_assign_pointer(kvm->memslots[as_id], slots);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200893 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900894
David Matlackee3d1572014-08-18 15:46:06 -0700895 /*
896 * Increment the new memslot generation a second time. This prevents
897 * vm exits that race with memslot updates from caching a memslot
898 * generation that will (potentially) be valid forever.
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800899 *
900 * Generations must be unique even across address spaces. We do not need
901 * a global counter for that, instead the generation space is evenly split
902 * across address spaces. For example, with two address spaces, address
903 * space 0 will use generations 0, 4, 8, ... while * address space 1 will
904 * use generations 2, 6, 10, 14, ...
David Matlackee3d1572014-08-18 15:46:06 -0700905 */
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800906 slots->generation += KVM_ADDRESS_SPACE_NUM * 2 - 1;
David Matlackee3d1572014-08-18 15:46:06 -0700907
Paolo Bonzini15f46012015-05-17 21:26:08 +0200908 kvm_arch_memslots_updated(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900909
910 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200911}
912
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 * Allocate some memory and give it an address in the guest physical address
915 * space.
916 *
917 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800918 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100919 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800921int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200922 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923{
Avi Kivity8234b222010-12-27 12:08:45 +0200924 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200926 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900927 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800928 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700929 struct kvm_memslots *slots = NULL, *old_memslots;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200930 int as_id, id;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900931 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800933 r = check_memory_region_flags(mem);
934 if (r)
935 goto out;
936
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200938 as_id = mem->slot >> 16;
939 id = (u16)mem->slot;
940
Avi Kivity6aa8b732006-12-10 02:21:36 -0800941 /* General sanity checks */
942 if (mem->memory_size & (PAGE_SIZE - 1))
943 goto out;
944 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
945 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900946 /* We can read the guest memory with __xxx_user() later on. */
Paolo Bonzinif481b062015-05-17 17:30:37 +0200947 if ((id < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900948 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200949 !access_ok(VERIFY_WRITE,
950 (void __user *)(unsigned long)mem->userspace_addr,
951 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600952 goto out;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200953 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800954 goto out;
955 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
956 goto out;
957
Paolo Bonzinif481b062015-05-17 17:30:37 +0200958 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800959 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
960 npages = mem->memory_size >> PAGE_SHIFT;
961
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900962 if (npages > KVM_MEM_MAX_NR_PAGES)
963 goto out;
964
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900965 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800966
Paolo Bonzinif481b062015-05-17 17:30:37 +0200967 new.id = id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968 new.base_gfn = base_gfn;
969 new.npages = npages;
970 new.flags = mem->flags;
971
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900972 if (npages) {
973 if (!old.npages)
974 change = KVM_MR_CREATE;
975 else { /* Modify an existing slot. */
976 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900977 (npages != old.npages) ||
978 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900979 goto out;
980
981 if (base_gfn != old.base_gfn)
982 change = KVM_MR_MOVE;
983 else if (new.flags != old.flags)
984 change = KVM_MR_FLAGS_ONLY;
985 else { /* Nothing to change. */
986 r = 0;
987 goto out;
988 }
989 }
Paolo Bonzini09170a42015-05-18 13:59:39 +0200990 } else {
991 if (!old.npages)
992 goto out;
993
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900994 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200995 new.base_gfn = 0;
996 new.flags = 0;
997 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900999 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +09001000 /* Check for overlaps */
1001 r = -EEXIST;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001002 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +09001003 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
Paolo Bonzinif481b062015-05-17 17:30:37 +02001004 (slot->id == id))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +09001005 continue;
1006 if (!((base_gfn + npages <= slot->base_gfn) ||
1007 (base_gfn >= slot->base_gfn + slot->npages)))
1008 goto out;
1009 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001011
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012 /* Free page dirty bitmap if unneeded */
1013 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +00001014 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015
1016 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001017 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +09001018 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001019
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301020 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001021 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022 }
Joerg Roedelec04b262009-06-19 15:16:23 +02001023
Avi Kivity6aa8b732006-12-10 02:21:36 -08001024 /* Allocate page dirty bitmap if needed */
1025 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +09001026 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001027 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028 }
1029
Igor Mammedov74496132015-03-20 12:21:37 +00001030 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001031 if (!slots)
1032 goto out_free;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001033 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001034
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001035 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Paolo Bonzinif481b062015-05-17 17:30:37 +02001036 slot = id_to_memslot(slots, id);
Xiao Guangrong28a37542011-11-24 19:04:35 +08001037 slot->flags |= KVM_MEMSLOT_INVALID;
1038
Paolo Bonzinif481b062015-05-17 17:30:37 +02001039 old_memslots = install_new_memslots(kvm, as_id, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001040
Marcelo Tosatti12d6e752012-08-24 15:54:58 -03001041 /* From this point no new shadow pages pointing to a deleted,
1042 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001043 *
1044 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +08001045 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
1046 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001047 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03001048 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001049
1050 /*
1051 * We can re-use the old_memslots from above, the only difference
1052 * from the currently installed memslots is the invalid flag. This
1053 * will get overwritten by update_memslots anyway.
1054 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001055 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001056 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001057
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09001058 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001059 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001060 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001061
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001062 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001063 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001064 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001065 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001066 }
1067
Paolo Bonzini5cc15022014-11-14 10:55:31 +01001068 update_memslots(slots, &new);
Paolo Bonzinif481b062015-05-17 17:30:37 +02001069 old_memslots = install_new_memslots(kvm, as_id, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001070
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001071 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08001072
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001073 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +00001074 kvfree(old_memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075 return 0;
1076
Alex Williamsone40f1932012-12-10 10:32:57 -07001077out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +00001078 kvfree(slots);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001079out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001080 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001081out:
1082 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +02001083}
Sheng Yangf78e0e22007-10-29 09:40:42 +08001084EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
1085
1086int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001087 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001088{
1089 int r;
1090
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001091 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001092 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001093 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001094 return r;
1095}
Izik Eidus210c7c42007-10-24 23:52:57 +02001096EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1097
Stephen Hemminger79408762013-12-29 12:12:29 -08001098static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1099 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +02001100{
Paolo Bonzinif481b062015-05-17 17:30:37 +02001101 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001102 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001103
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001104 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001105}
1106
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001107int kvm_get_dirty_log(struct kvm *kvm,
1108 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001109{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001110 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001111 struct kvm_memory_slot *memslot;
Markus Elfring843574a2017-01-22 17:41:07 +01001112 int i, as_id, id;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001113 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001114 unsigned long any = 0;
1115
Paolo Bonzinif481b062015-05-17 17:30:37 +02001116 as_id = log->slot >> 16;
1117 id = (u16)log->slot;
1118 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring843574a2017-01-22 17:41:07 +01001119 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001120
Paolo Bonzinif481b062015-05-17 17:30:37 +02001121 slots = __kvm_memslots(kvm, as_id);
1122 memslot = id_to_memslot(slots, id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001123 if (!memslot->dirty_bitmap)
Markus Elfring843574a2017-01-22 17:41:07 +01001124 return -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001125
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001126 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001127
Uri Lublincd1a4a92007-02-22 16:43:09 +02001128 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001129 any = memslot->dirty_bitmap[i];
1130
Avi Kivity6aa8b732006-12-10 02:21:36 -08001131 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
Markus Elfring843574a2017-01-22 17:41:07 +01001132 return -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001133
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001134 if (any)
1135 *is_dirty = 1;
Markus Elfring843574a2017-01-22 17:41:07 +01001136 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001137}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301138EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001139
Mario Smarduchba0513b2015-01-15 15:58:53 -08001140#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1141/**
1142 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1143 * are dirty write protect them for next write.
1144 * @kvm: pointer to kvm instance
1145 * @log: slot id and address to which we copy the log
1146 * @is_dirty: flag set if any page is dirty
1147 *
1148 * We need to keep it in mind that VCPU threads can write to the bitmap
1149 * concurrently. So, to avoid losing track of dirty pages we keep the
1150 * following order:
1151 *
1152 * 1. Take a snapshot of the bit and clear it if needed.
1153 * 2. Write protect the corresponding page.
1154 * 3. Copy the snapshot to the userspace.
1155 * 4. Upon return caller flushes TLB's if needed.
1156 *
1157 * Between 2 and 4, the guest may write to the page using the remaining TLB
1158 * entry. This is not a problem because the page is reported dirty using
1159 * the snapshot taken before and step 4 ensures that writes done after
1160 * exiting to userspace will be logged for the next call.
1161 *
1162 */
1163int kvm_get_dirty_log_protect(struct kvm *kvm,
1164 struct kvm_dirty_log *log, bool *is_dirty)
1165{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001166 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001167 struct kvm_memory_slot *memslot;
Markus Elfring58d6db32017-01-22 17:30:16 +01001168 int i, as_id, id;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001169 unsigned long n;
1170 unsigned long *dirty_bitmap;
1171 unsigned long *dirty_bitmap_buffer;
1172
Paolo Bonzinif481b062015-05-17 17:30:37 +02001173 as_id = log->slot >> 16;
1174 id = (u16)log->slot;
1175 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring58d6db32017-01-22 17:30:16 +01001176 return -EINVAL;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001177
Paolo Bonzinif481b062015-05-17 17:30:37 +02001178 slots = __kvm_memslots(kvm, as_id);
1179 memslot = id_to_memslot(slots, id);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001180
1181 dirty_bitmap = memslot->dirty_bitmap;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001182 if (!dirty_bitmap)
Markus Elfring58d6db32017-01-22 17:30:16 +01001183 return -ENOENT;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001184
1185 n = kvm_dirty_bitmap_bytes(memslot);
1186
1187 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1188 memset(dirty_bitmap_buffer, 0, n);
1189
1190 spin_lock(&kvm->mmu_lock);
1191 *is_dirty = false;
1192 for (i = 0; i < n / sizeof(long); i++) {
1193 unsigned long mask;
1194 gfn_t offset;
1195
1196 if (!dirty_bitmap[i])
1197 continue;
1198
1199 *is_dirty = true;
1200
1201 mask = xchg(&dirty_bitmap[i], 0);
1202 dirty_bitmap_buffer[i] = mask;
1203
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001204 if (mask) {
1205 offset = i * BITS_PER_LONG;
1206 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1207 offset, mask);
1208 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001209 }
1210
1211 spin_unlock(&kvm->mmu_lock);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001212 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
Markus Elfring58d6db32017-01-22 17:30:16 +01001213 return -EFAULT;
1214 return 0;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001215}
1216EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1217#endif
1218
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001219bool kvm_largepages_enabled(void)
1220{
1221 return largepages_enabled;
1222}
1223
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001224void kvm_disable_largepages(void)
1225{
1226 largepages_enabled = false;
1227}
1228EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1229
Gleb Natapov49c77542010-10-18 15:22:23 +02001230struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1231{
1232 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1233}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001234EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001235
Paolo Bonzini8e734852015-05-17 13:58:53 +02001236struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1237{
1238 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1239}
1240
Yaowei Bai33e94152015-11-14 11:21:06 +08001241bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001242{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001243 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001244
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001245 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001246 memslot->flags & KVM_MEMSLOT_INVALID)
Yaowei Bai33e94152015-11-14 11:21:06 +08001247 return false;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001248
Yaowei Bai33e94152015-11-14 11:21:06 +08001249 return true;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001250}
1251EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1252
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001253unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1254{
1255 struct vm_area_struct *vma;
1256 unsigned long addr, size;
1257
1258 size = PAGE_SIZE;
1259
1260 addr = gfn_to_hva(kvm, gfn);
1261 if (kvm_is_error_hva(addr))
1262 return PAGE_SIZE;
1263
1264 down_read(&current->mm->mmap_sem);
1265 vma = find_vma(current->mm, addr);
1266 if (!vma)
1267 goto out;
1268
1269 size = vma_kernel_pagesize(vma);
1270
1271out:
1272 up_read(&current->mm->mmap_sem);
1273
1274 return size;
1275}
1276
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001277static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1278{
1279 return slot->flags & KVM_MEM_READONLY;
1280}
1281
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001282static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1283 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001284{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001285 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001286 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001287
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001288 if (memslot_is_readonly(slot) && write)
1289 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001290
1291 if (nr_pages)
1292 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1293
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001294 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001295}
Xiao Guangrong48987782010-08-22 19:11:43 +08001296
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001297static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1298 gfn_t *nr_pages)
1299{
1300 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1301}
1302
1303unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001304 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001305{
1306 return gfn_to_hva_many(slot, gfn, NULL);
1307}
1308EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1309
Xiao Guangrong48987782010-08-22 19:11:43 +08001310unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1311{
Gleb Natapov49c77542010-10-18 15:22:23 +02001312 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001313}
Sheng Yang0d150292008-04-25 21:44:50 +08001314EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001315
Paolo Bonzini8e734852015-05-17 13:58:53 +02001316unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1317{
1318 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1319}
1320EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1321
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001322/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001323 * If writable is set to false, the hva returned by this function is only
1324 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001325 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001326unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1327 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001328{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001329 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1330
1331 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001332 *writable = !memslot_is_readonly(slot);
1333
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001334 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001335}
1336
Christoffer Dall64d83122014-08-19 12:15:00 +02001337unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1338{
1339 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1340
1341 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1342}
1343
Paolo Bonzini8e734852015-05-17 13:58:53 +02001344unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1345{
1346 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1347
1348 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1349}
1350
Dave Hansend4edcf02016-02-12 13:01:56 -08001351static int get_user_page_nowait(unsigned long start, int write,
1352 struct page **page)
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001353{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001354 int flags = FOLL_NOWAIT | FOLL_HWPOISON;
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001355
1356 if (write)
1357 flags |= FOLL_WRITE;
1358
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001359 return get_user_pages(start, 1, flags, page, NULL);
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001360}
1361
Huang Yingfafc3db2011-01-30 11:15:49 +08001362static inline int check_user_page_hwpoison(unsigned long addr)
1363{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001364 int rc, flags = FOLL_HWPOISON | FOLL_WRITE;
Huang Yingfafc3db2011-01-30 11:15:49 +08001365
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001366 rc = get_user_pages(addr, 1, flags, NULL, NULL);
Huang Yingfafc3db2011-01-30 11:15:49 +08001367 return rc == -EHWPOISON;
1368}
1369
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001370/*
1371 * The atomic path to get the writable pfn which will be stored in @pfn,
1372 * true indicates success, otherwise false is returned.
1373 */
1374static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
Dan Williamsba049e92016-01-15 16:56:11 -08001375 bool write_fault, bool *writable, kvm_pfn_t *pfn)
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001376{
1377 struct page *page[1];
1378 int npages;
1379
1380 if (!(async || atomic))
1381 return false;
1382
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001383 /*
1384 * Fast pin a writable pfn only if it is a write fault request
1385 * or the caller allows to map a writable pfn for a read fault
1386 * request.
1387 */
1388 if (!(write_fault || writable))
1389 return false;
1390
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001391 npages = __get_user_pages_fast(addr, 1, 1, page);
1392 if (npages == 1) {
1393 *pfn = page_to_pfn(page[0]);
1394
1395 if (writable)
1396 *writable = true;
1397 return true;
1398 }
1399
1400 return false;
1401}
1402
1403/*
1404 * The slow path to get the pfn of the specified host virtual address,
1405 * 1 indicates success, -errno is returned if error is detected.
1406 */
1407static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
Dan Williamsba049e92016-01-15 16:56:11 -08001408 bool *writable, kvm_pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001409{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001410 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001411 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001412
1413 might_sleep();
1414
1415 if (writable)
1416 *writable = write_fault;
1417
1418 if (async) {
1419 down_read(&current->mm->mmap_sem);
Dave Hansend4edcf02016-02-12 13:01:56 -08001420 npages = get_user_page_nowait(addr, write_fault, page);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001421 up_read(&current->mm->mmap_sem);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001422 } else {
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001423 unsigned int flags = FOLL_HWPOISON;
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001424
1425 if (write_fault)
1426 flags |= FOLL_WRITE;
1427
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001428 npages = get_user_pages_unlocked(addr, 1, page, flags);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001429 }
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001430 if (npages != 1)
1431 return npages;
1432
1433 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001434 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001435 struct page *wpage[1];
1436
1437 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1438 if (npages == 1) {
1439 *writable = true;
1440 put_page(page[0]);
1441 page[0] = wpage[0];
1442 }
1443
1444 npages = 1;
1445 }
1446 *pfn = page_to_pfn(page[0]);
1447 return npages;
1448}
1449
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001450static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1451{
1452 if (unlikely(!(vma->vm_flags & VM_READ)))
1453 return false;
1454
1455 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1456 return false;
1457
1458 return true;
1459}
1460
Paolo Bonzini92176a82016-06-07 16:22:47 +02001461static int hva_to_pfn_remapped(struct vm_area_struct *vma,
1462 unsigned long addr, bool *async,
1463 bool write_fault, kvm_pfn_t *p_pfn)
1464{
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001465 unsigned long pfn;
1466 int r;
1467
1468 r = follow_pfn(vma, addr, &pfn);
1469 if (r) {
1470 /*
1471 * get_user_pages fails for VM_IO and VM_PFNMAP vmas and does
1472 * not call the fault handler, so do it here.
1473 */
1474 bool unlocked = false;
1475 r = fixup_user_fault(current, current->mm, addr,
1476 (write_fault ? FAULT_FLAG_WRITE : 0),
1477 &unlocked);
1478 if (unlocked)
1479 return -EAGAIN;
1480 if (r)
1481 return r;
1482
1483 r = follow_pfn(vma, addr, &pfn);
1484 if (r)
1485 return r;
1486
1487 }
1488
1489
1490 /*
1491 * Get a reference here because callers of *hva_to_pfn* and
1492 * *gfn_to_pfn* ultimately call kvm_release_pfn_clean on the
1493 * returned pfn. This is only needed if the VMA has VM_MIXEDMAP
1494 * set, but the kvm_get_pfn/kvm_release_pfn_clean pair will
1495 * simply do nothing for reserved pfns.
1496 *
1497 * Whoever called remap_pfn_range is also going to call e.g.
1498 * unmap_mapping_range before the underlying pages are freed,
1499 * causing a call to our MMU notifier.
1500 */
1501 kvm_get_pfn(pfn);
1502
1503 *p_pfn = pfn;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001504 return 0;
1505}
1506
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001507/*
1508 * Pin guest page in memory and return its pfn.
1509 * @addr: host virtual address which maps memory to the guest
1510 * @atomic: whether this function can sleep
1511 * @async: whether this function need to wait IO complete if the
1512 * host page is not in the memory
1513 * @write_fault: whether we should get a writable host page
1514 * @writable: whether it allows to map a writable host page for !@write_fault
1515 *
1516 * The function will map a writable host page for these two cases:
1517 * 1): @write_fault = true
1518 * 2): @write_fault = false && @writable, @writable will tell the caller
1519 * whether the mapping is writable.
1520 */
Dan Williamsba049e92016-01-15 16:56:11 -08001521static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001522 bool write_fault, bool *writable)
1523{
1524 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001525 kvm_pfn_t pfn = 0;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001526 int npages, r;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001527
Gleb Natapovaf585b92010-10-14 11:22:46 +02001528 /* we can do it either atomically or asynchronously, not both */
1529 BUG_ON(atomic && async);
1530
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001531 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1532 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001533
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001534 if (atomic)
1535 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001536
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001537 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1538 if (npages == 1)
1539 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001540
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001541 down_read(&current->mm->mmap_sem);
1542 if (npages == -EHWPOISON ||
1543 (!async && check_user_page_hwpoison(addr))) {
1544 pfn = KVM_PFN_ERR_HWPOISON;
1545 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001546 }
Izik Eidus539cb662007-11-11 22:05:04 +02001547
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001548retry:
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001549 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001550
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001551 if (vma == NULL)
1552 pfn = KVM_PFN_ERR_FAULT;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001553 else if (vma->vm_flags & (VM_IO | VM_PFNMAP)) {
1554 r = hva_to_pfn_remapped(vma, addr, async, write_fault, &pfn);
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001555 if (r == -EAGAIN)
1556 goto retry;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001557 if (r < 0)
1558 pfn = KVM_PFN_ERR_FAULT;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001559 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001560 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001561 *async = true;
1562 pfn = KVM_PFN_ERR_FAULT;
1563 }
1564exit:
1565 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001566 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001567}
1568
Dan Williamsba049e92016-01-15 16:56:11 -08001569kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
1570 bool atomic, bool *async, bool write_fault,
1571 bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001572{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001573 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1574
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001575 if (addr == KVM_HVA_ERR_RO_BAD) {
1576 if (writable)
1577 *writable = false;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001578 return KVM_PFN_ERR_RO_FAULT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001579 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001580
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001581 if (kvm_is_error_hva(addr)) {
1582 if (writable)
1583 *writable = false;
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001584 return KVM_PFN_NOSLOT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001585 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001586
1587 /* Do not map writable pfn in the readonly memslot. */
1588 if (writable && memslot_is_readonly(slot)) {
1589 *writable = false;
1590 writable = NULL;
1591 }
1592
1593 return hva_to_pfn(addr, atomic, async, write_fault,
1594 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001595}
Paolo Bonzini35204692015-04-02 11:20:48 +02001596EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001597
Dan Williamsba049e92016-01-15 16:56:11 -08001598kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001599 bool *writable)
1600{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001601 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1602 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001603}
1604EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1605
Dan Williamsba049e92016-01-15 16:56:11 -08001606kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001607{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001608 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001609}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001610EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001611
Dan Williamsba049e92016-01-15 16:56:11 -08001612kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001613{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001614 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001615}
1616EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1617
Dan Williamsba049e92016-01-15 16:56:11 -08001618kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001619{
1620 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1621}
1622EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1623
Dan Williamsba049e92016-01-15 16:56:11 -08001624kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001625{
1626 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1627}
1628EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1629
Dan Williamsba049e92016-01-15 16:56:11 -08001630kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001631{
1632 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1633}
1634EXPORT_SYMBOL_GPL(gfn_to_pfn);
1635
Dan Williamsba049e92016-01-15 16:56:11 -08001636kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001637{
1638 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1639}
1640EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1641
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001642int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1643 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001644{
1645 unsigned long addr;
1646 gfn_t entry;
1647
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001648 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001649 if (kvm_is_error_hva(addr))
1650 return -1;
1651
1652 if (entry < nr_pages)
1653 return 0;
1654
1655 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1656}
1657EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1658
Dan Williamsba049e92016-01-15 16:56:11 -08001659static struct page *kvm_pfn_to_page(kvm_pfn_t pfn)
Xiao Guangronga2766322012-07-26 11:58:59 +08001660{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001661 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001662 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001663
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001664 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001665 WARN_ON(1);
1666 return KVM_ERR_PTR_BAD_PAGE;
1667 }
1668
Xiao Guangronga2766322012-07-26 11:58:59 +08001669 return pfn_to_page(pfn);
1670}
1671
Anthony Liguori35149e22008-04-02 14:46:56 -05001672struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1673{
Dan Williamsba049e92016-01-15 16:56:11 -08001674 kvm_pfn_t pfn;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001675
1676 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001677
Xiao Guangronga2766322012-07-26 11:58:59 +08001678 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001679}
1680EXPORT_SYMBOL_GPL(gfn_to_page);
1681
Paolo Bonzini8e734852015-05-17 13:58:53 +02001682struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1683{
Dan Williamsba049e92016-01-15 16:56:11 -08001684 kvm_pfn_t pfn;
Paolo Bonzini8e734852015-05-17 13:58:53 +02001685
1686 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1687
1688 return kvm_pfn_to_page(pfn);
1689}
1690EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1691
Izik Eidusb4231d62007-11-20 11:49:33 +02001692void kvm_release_page_clean(struct page *page)
1693{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001694 WARN_ON(is_error_page(page));
1695
Anthony Liguori35149e22008-04-02 14:46:56 -05001696 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001697}
1698EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1699
Dan Williamsba049e92016-01-15 16:56:11 -08001700void kvm_release_pfn_clean(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001701{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001702 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001703 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001704}
1705EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1706
Izik Eidusb4231d62007-11-20 11:49:33 +02001707void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001708{
Xiao Guangronga2766322012-07-26 11:58:59 +08001709 WARN_ON(is_error_page(page));
1710
Anthony Liguori35149e22008-04-02 14:46:56 -05001711 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001712}
Izik Eidusb4231d62007-11-20 11:49:33 +02001713EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001714
Dan Williamsba049e92016-01-15 16:56:11 -08001715static void kvm_release_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001716{
1717 kvm_set_pfn_dirty(pfn);
1718 kvm_release_pfn_clean(pfn);
1719}
Anthony Liguori35149e22008-04-02 14:46:56 -05001720
Dan Williamsba049e92016-01-15 16:56:11 -08001721void kvm_set_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001722{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001723 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001724 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001725
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001726 if (!PageReserved(page))
1727 SetPageDirty(page);
1728 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001729}
1730EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1731
Dan Williamsba049e92016-01-15 16:56:11 -08001732void kvm_set_pfn_accessed(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001733{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001734 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001735 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001736}
1737EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1738
Dan Williamsba049e92016-01-15 16:56:11 -08001739void kvm_get_pfn(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001740{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001741 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001742 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001743}
1744EXPORT_SYMBOL_GPL(kvm_get_pfn);
1745
Izik Eidus195aefd2007-10-01 22:14:18 +02001746static int next_segment(unsigned long len, int offset)
1747{
1748 if (len > PAGE_SIZE - offset)
1749 return PAGE_SIZE - offset;
1750 else
1751 return len;
1752}
1753
Paolo Bonzini8e734852015-05-17 13:58:53 +02001754static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
1755 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001756{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001757 int r;
1758 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001759
Paolo Bonzini8e734852015-05-17 13:58:53 +02001760 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001761 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001762 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001763 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001764 if (r)
1765 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001766 return 0;
1767}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001768
1769int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1770 int len)
1771{
1772 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1773
1774 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1775}
Izik Eidus195aefd2007-10-01 22:14:18 +02001776EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1777
Paolo Bonzini8e734852015-05-17 13:58:53 +02001778int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
1779 int offset, int len)
1780{
1781 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1782
1783 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1784}
1785EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
1786
Izik Eidus195aefd2007-10-01 22:14:18 +02001787int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1788{
1789 gfn_t gfn = gpa >> PAGE_SHIFT;
1790 int seg;
1791 int offset = offset_in_page(gpa);
1792 int ret;
1793
1794 while ((seg = next_segment(len, offset)) != 0) {
1795 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1796 if (ret < 0)
1797 return ret;
1798 offset = 0;
1799 len -= seg;
1800 data += seg;
1801 ++gfn;
1802 }
1803 return 0;
1804}
1805EXPORT_SYMBOL_GPL(kvm_read_guest);
1806
Paolo Bonzini8e734852015-05-17 13:58:53 +02001807int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
1808{
1809 gfn_t gfn = gpa >> PAGE_SHIFT;
1810 int seg;
1811 int offset = offset_in_page(gpa);
1812 int ret;
1813
1814 while ((seg = next_segment(len, offset)) != 0) {
1815 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
1816 if (ret < 0)
1817 return ret;
1818 offset = 0;
1819 len -= seg;
1820 data += seg;
1821 ++gfn;
1822 }
1823 return 0;
1824}
1825EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
1826
1827static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1828 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001829{
1830 int r;
1831 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001832
Paolo Bonzini8e734852015-05-17 13:58:53 +02001833 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001834 if (kvm_is_error_hva(addr))
1835 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001836 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001837 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001838 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001839 if (r)
1840 return -EFAULT;
1841 return 0;
1842}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001843
Paolo Bonzini8e734852015-05-17 13:58:53 +02001844int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1845 unsigned long len)
1846{
1847 gfn_t gfn = gpa >> PAGE_SHIFT;
1848 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1849 int offset = offset_in_page(gpa);
1850
1851 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1852}
1853EXPORT_SYMBOL_GPL(kvm_read_guest_atomic);
1854
1855int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
1856 void *data, unsigned long len)
1857{
1858 gfn_t gfn = gpa >> PAGE_SHIFT;
1859 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1860 int offset = offset_in_page(gpa);
1861
1862 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1863}
1864EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
1865
1866static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
1867 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001868{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001869 int r;
1870 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001871
Radim Krčmář251eb842015-04-10 21:47:27 +02001872 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001873 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001874 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001875 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001876 if (r)
1877 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001878 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02001879 return 0;
1880}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001881
1882int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
1883 const void *data, int offset, int len)
1884{
1885 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1886
1887 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1888}
Izik Eidus195aefd2007-10-01 22:14:18 +02001889EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1890
Paolo Bonzini8e734852015-05-17 13:58:53 +02001891int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
1892 const void *data, int offset, int len)
1893{
1894 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1895
1896 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1897}
1898EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
1899
Izik Eidus195aefd2007-10-01 22:14:18 +02001900int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1901 unsigned long len)
1902{
1903 gfn_t gfn = gpa >> PAGE_SHIFT;
1904 int seg;
1905 int offset = offset_in_page(gpa);
1906 int ret;
1907
1908 while ((seg = next_segment(len, offset)) != 0) {
1909 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1910 if (ret < 0)
1911 return ret;
1912 offset = 0;
1913 len -= seg;
1914 data += seg;
1915 ++gfn;
1916 }
1917 return 0;
1918}
Wincy Vanff651cb2014-12-11 08:52:58 +03001919EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001920
Paolo Bonzini8e734852015-05-17 13:58:53 +02001921int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
1922 unsigned long len)
1923{
1924 gfn_t gfn = gpa >> PAGE_SHIFT;
1925 int seg;
1926 int offset = offset_in_page(gpa);
1927 int ret;
1928
1929 while ((seg = next_segment(len, offset)) != 0) {
1930 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
1931 if (ret < 0)
1932 return ret;
1933 offset = 0;
1934 len -= seg;
1935 data += seg;
1936 ++gfn;
1937 }
1938 return 0;
1939}
1940EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
1941
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001942static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
1943 struct gfn_to_hva_cache *ghc,
1944 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001945{
Gleb Natapov49c77542010-10-18 15:22:23 +02001946 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001947 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1948 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1949 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1950 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001951
1952 ghc->gpa = gpa;
1953 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001954 ghc->len = len;
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001955 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001956 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1957 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001958 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001959 } else {
1960 /*
1961 * If the requested region crosses two memslots, we still
1962 * verify that the entire region is valid here.
1963 */
1964 while (start_gfn <= end_gfn) {
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001965 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Andrew Honig8f964522013-03-29 09:35:21 -07001966 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1967 &nr_pages_avail);
1968 if (kvm_is_error_hva(ghc->hva))
1969 return -EFAULT;
1970 start_gfn += nr_pages_avail;
1971 }
1972 /* Use the slow path for cross page reads and writes. */
1973 ghc->memslot = NULL;
1974 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001975 return 0;
1976}
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001977
Cao, Leibbd64112017-02-03 20:04:35 +00001978int kvm_vcpu_gfn_to_hva_cache_init(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001979 gpa_t gpa, unsigned long len)
1980{
Cao, Leibbd64112017-02-03 20:04:35 +00001981 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001982 return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
1983}
Cao, Leibbd64112017-02-03 20:04:35 +00001984EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva_cache_init);
Gleb Natapov49c77542010-10-18 15:22:23 +02001985
Cao, Leibbd64112017-02-03 20:04:35 +00001986int kvm_vcpu_write_guest_offset_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
1987 void *data, int offset, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001988{
Cao, Leibbd64112017-02-03 20:04:35 +00001989 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapov49c77542010-10-18 15:22:23 +02001990 int r;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001991 gpa_t gpa = ghc->gpa + offset;
Gleb Natapov49c77542010-10-18 15:22:23 +02001992
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001993 BUG_ON(len + offset > ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001994
Gleb Natapov49c77542010-10-18 15:22:23 +02001995 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001996 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001997
1998 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00001999 return kvm_vcpu_write_guest(vcpu, gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02002000
2001 if (kvm_is_error_hva(ghc->hva))
2002 return -EFAULT;
2003
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002004 r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02002005 if (r)
2006 return -EFAULT;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002007 mark_page_dirty_in_slot(ghc->memslot, gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02002008
2009 return 0;
2010}
Cao, Leibbd64112017-02-03 20:04:35 +00002011EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_offset_cached);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002012
Cao, Leibbd64112017-02-03 20:04:35 +00002013int kvm_vcpu_write_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2014 void *data, unsigned long len)
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002015{
Cao, Leibbd64112017-02-03 20:04:35 +00002016 return kvm_vcpu_write_guest_offset_cached(vcpu, ghc, data, 0, len);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002017}
Cao, Leibbd64112017-02-03 20:04:35 +00002018EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_cached);
Gleb Natapov49c77542010-10-18 15:22:23 +02002019
Cao, Leibbd64112017-02-03 20:04:35 +00002020int kvm_vcpu_read_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2021 void *data, unsigned long len)
Gleb Natapove03b6442011-07-11 15:28:11 -04002022{
Cao, Leibbd64112017-02-03 20:04:35 +00002023 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapove03b6442011-07-11 15:28:11 -04002024 int r;
2025
Andrew Honig8f964522013-03-29 09:35:21 -07002026 BUG_ON(len > ghc->len);
2027
Gleb Natapove03b6442011-07-11 15:28:11 -04002028 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002029 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002030
2031 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00002032 return kvm_vcpu_read_guest(vcpu, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04002033
2034 if (kvm_is_error_hva(ghc->hva))
2035 return -EFAULT;
2036
2037 r = __copy_from_user(data, (void __user *)ghc->hva, len);
2038 if (r)
2039 return -EFAULT;
2040
2041 return 0;
2042}
Cao, Leibbd64112017-02-03 20:04:35 +00002043EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_cached);
Gleb Natapove03b6442011-07-11 15:28:11 -04002044
Izik Eidus195aefd2007-10-01 22:14:18 +02002045int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
2046{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01002047 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
2048
2049 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02002050}
2051EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
2052
2053int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
2054{
2055 gfn_t gfn = gpa >> PAGE_SHIFT;
2056 int seg;
2057 int offset = offset_in_page(gpa);
2058 int ret;
2059
Kevin Mulveybfda0e82015-02-20 08:21:36 -05002060 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02002061 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
2062 if (ret < 0)
2063 return ret;
2064 offset = 0;
2065 len -= seg;
2066 ++gfn;
2067 }
2068 return 0;
2069}
2070EXPORT_SYMBOL_GPL(kvm_clear_guest);
2071
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002072static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08002073 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074{
Rusty Russell7e9d6192007-07-31 20:41:14 +10002075 if (memslot && memslot->dirty_bitmap) {
2076 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002077
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07002078 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002079 }
2080}
2081
Gleb Natapov49c77542010-10-18 15:22:23 +02002082void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
2083{
2084 struct kvm_memory_slot *memslot;
2085
2086 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002087 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02002088}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302089EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02002090
Paolo Bonzini8e734852015-05-17 13:58:53 +02002091void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
2092{
2093 struct kvm_memory_slot *memslot;
2094
2095 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2096 mark_page_dirty_in_slot(memslot, gfn);
2097}
2098EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
2099
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002100static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
2101{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002102 unsigned int old, val, grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002103
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002104 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002105 grow = READ_ONCE(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002106 /* 10us base */
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002107 if (val == 0 && grow)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002108 val = 10000;
2109 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002110 val *= grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002111
David Matlack313f6362016-03-08 16:19:44 -08002112 if (val > halt_poll_ns)
2113 val = halt_poll_ns;
2114
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002115 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002116 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002117}
2118
2119static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
2120{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002121 unsigned int old, val, shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002122
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002123 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002124 shrink = READ_ONCE(halt_poll_ns_shrink);
2125 if (shrink == 0)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002126 val = 0;
2127 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002128 val /= shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002129
2130 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002131 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002132}
2133
Paolo Bonzinif7819512015-02-04 18:20:58 +01002134static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
2135{
2136 if (kvm_arch_vcpu_runnable(vcpu)) {
2137 kvm_make_request(KVM_REQ_UNHALT, vcpu);
2138 return -EINTR;
2139 }
2140 if (kvm_cpu_has_pending_timer(vcpu))
2141 return -EINTR;
2142 if (signal_pending(current))
2143 return -EINTR;
2144
2145 return 0;
2146}
2147
Eddie Dongb6958ce2007-07-18 12:15:21 +03002148/*
2149 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2150 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05002151void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03002152{
Paolo Bonzinif7819512015-02-04 18:20:58 +01002153 ktime_t start, cur;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002154 DECLARE_SWAITQUEUE(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002155 bool waited = false;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002156 u64 block_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002157
2158 start = cur = ktime_get();
Wanpeng Li19020f82015-09-03 22:07:37 +08002159 if (vcpu->halt_poll_ns) {
2160 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002161
Paolo Bonzini62bea5b2015-09-15 18:27:57 +02002162 ++vcpu->stat.halt_attempted_poll;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002163 do {
2164 /*
2165 * This sets KVM_REQ_UNHALT if an interrupt
2166 * arrives.
2167 */
2168 if (kvm_vcpu_check_block(vcpu) < 0) {
2169 ++vcpu->stat.halt_successful_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002170 if (!vcpu_valid_wakeup(vcpu))
2171 ++vcpu->stat.halt_poll_invalid;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002172 goto out;
2173 }
2174 cur = ktime_get();
2175 } while (single_task_running() && ktime_before(cur, stop));
2176 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03002177
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002178 kvm_arch_vcpu_blocking(vcpu);
2179
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002180 for (;;) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01002181 prepare_to_swait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002182
Paolo Bonzinif7819512015-02-04 18:20:58 +01002183 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002184 break;
2185
Paolo Bonzinif7819512015-02-04 18:20:58 +01002186 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03002187 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03002188 }
2189
Marcelo Tosatti85773702016-02-19 09:46:39 +01002190 finish_swait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002191 cur = ktime_get();
2192
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002193 kvm_arch_vcpu_unblocking(vcpu);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002194out:
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002195 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2196
Christian Borntraeger2086d322016-05-17 10:49:22 +02002197 if (!vcpu_valid_wakeup(vcpu))
2198 shrink_halt_poll_ns(vcpu);
2199 else if (halt_poll_ns) {
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002200 if (block_ns <= vcpu->halt_poll_ns)
2201 ;
2202 /* we had a long block, shrink polling */
Christian Borntraeger2086d322016-05-17 10:49:22 +02002203 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002204 shrink_halt_poll_ns(vcpu);
2205 /* we had a short halt and our poll time is too small */
2206 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2207 block_ns < halt_poll_ns)
2208 grow_halt_poll_ns(vcpu);
Wanpeng Liedb92722015-09-14 17:38:51 +08002209 } else
2210 vcpu->halt_poll_ns = 0;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002211
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002212 trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu));
2213 kvm_arch_vcpu_block_finish(vcpu);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002214}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302215EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002216
Radim Krčmář178f02f2017-04-26 22:32:26 +02002217bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -05002218{
Marcelo Tosatti85773702016-02-19 09:46:39 +01002219 struct swait_queue_head *wqp;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002220
2221 wqp = kvm_arch_vcpu_wq(vcpu);
Marcelo Tosatti85773702016-02-19 09:46:39 +01002222 if (swait_active(wqp)) {
2223 swake_up(wqp);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002224 ++vcpu->stat.halt_wakeup;
Radim Krčmář178f02f2017-04-26 22:32:26 +02002225 return true;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002226 }
2227
Radim Krčmář178f02f2017-04-26 22:32:26 +02002228 return false;
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002229}
2230EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2231
2232/*
2233 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2234 */
2235void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2236{
2237 int me;
2238 int cpu = vcpu->cpu;
2239
Radim Krčmář178f02f2017-04-26 22:32:26 +02002240 if (kvm_vcpu_wake_up(vcpu))
2241 return;
2242
Christoffer Dallb6d33832012-03-08 16:44:24 -05002243 me = get_cpu();
2244 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2245 if (kvm_arch_vcpu_should_kick(vcpu))
2246 smp_send_reschedule(cpu);
2247 put_cpu();
2248}
Yang Zhanga20ed542013-04-11 19:25:15 +08002249EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002250
Dan Carpenterfa933842014-05-23 13:20:42 +03002251int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02002252{
2253 struct pid *pid;
2254 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03002255 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002256
2257 rcu_read_lock();
2258 pid = rcu_dereference(target->pid);
2259 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10002260 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002261 rcu_read_unlock();
2262 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302263 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302264 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002265 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302266
2267 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002268}
2269EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2270
Raghavendra K T06e48c52012-07-19 15:17:52 +05302271/*
2272 * Helper that checks whether a VCPU is eligible for directed yield.
2273 * Most eligible candidate to yield is decided by following heuristics:
2274 *
2275 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2276 * (preempted lock holder), indicated by @in_spin_loop.
2277 * Set at the beiginning and cleared at the end of interception/PLE handler.
2278 *
2279 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2280 * chance last time (mostly it has become eligible now since we have probably
2281 * yielded to lockholder in last iteration. This is done by toggling
2282 * @dy_eligible each time a VCPU checked for eligibility.)
2283 *
2284 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2285 * to preempted lock-holder could result in wrong VCPU selection and CPU
2286 * burning. Giving priority for a potential lock-holder increases lock
2287 * progress.
2288 *
2289 * Since algorithm is based on heuristics, accessing another VCPU data without
2290 * locking does not harm. It may result in trying to yield to same VCPU, fail
2291 * and continue with next VCPU and so on.
2292 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002293static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302294{
Scott Wood4a55dd72014-01-09 18:43:16 -06002295#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302296 bool eligible;
2297
2298 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002299 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302300
2301 if (vcpu->spin_loop.in_spin_loop)
2302 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2303
2304 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002305#else
2306 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302307#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002308}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302309
Rik van Riel217ece62011-02-01 09:53:28 -05002310void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002311{
Rik van Riel217ece62011-02-01 09:53:28 -05002312 struct kvm *kvm = me->kvm;
2313 struct kvm_vcpu *vcpu;
2314 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2315 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302316 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002317 int pass;
2318 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002319
Raghavendra K T4c088492012-07-18 19:07:46 +05302320 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002321 /*
2322 * We boost the priority of a VCPU that is runnable but not
2323 * currently running, because it got preempted by something
2324 * else and called schedule in __vcpu_run. Hopefully that
2325 * VCPU is holding the lock that we need and will release it.
2326 * We approximate round-robin by starting at the last boosted VCPU.
2327 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302328 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002329 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002330 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002331 i = last_boosted_vcpu;
2332 continue;
2333 } else if (pass && i > last_boosted_vcpu)
2334 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302335 if (!ACCESS_ONCE(vcpu->preempted))
2336 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002337 if (vcpu == me)
2338 continue;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002339 if (swait_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002340 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302341 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2342 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302343
2344 yielded = kvm_vcpu_yield_to(vcpu);
2345 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002346 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002347 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302348 } else if (yielded < 0) {
2349 try--;
2350 if (!try)
2351 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002352 }
Rik van Riel217ece62011-02-01 09:53:28 -05002353 }
2354 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302355 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302356
2357 /* Ensure vcpu is not eligible during next spinloop */
2358 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002359}
2360EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2361
Dave Jiang11bac802017-02-24 14:56:41 -08002362static int kvm_vcpu_fault(struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002363{
Dave Jiang11bac802017-02-24 14:56:41 -08002364 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002365 struct page *page;
2366
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002367 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002368 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002369#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002370 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002371 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002372#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002373#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02002374 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2375 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2376#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002377 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002378 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002379 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002380 vmf->page = page;
2381 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002382}
2383
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002384static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002385 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002386};
2387
2388static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2389{
2390 vma->vm_ops = &kvm_vcpu_vm_ops;
2391 return 0;
2392}
2393
Avi Kivitybccf2152007-02-21 18:04:26 +02002394static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2395{
2396 struct kvm_vcpu *vcpu = filp->private_data;
2397
Luiz Capitulino45b59392016-09-16 10:27:35 -04002398 debugfs_remove_recursive(vcpu->debugfs_dentry);
Al Viro66c0b392008-04-19 20:33:56 +01002399 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002400 return 0;
2401}
2402
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002403static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002404 .release = kvm_vcpu_release,
2405 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002406#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002407 .compat_ioctl = kvm_vcpu_compat_ioctl,
2408#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002409 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002410 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02002411};
2412
2413/*
2414 * Allocates an inode for the vcpu.
2415 */
2416static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2417{
Yann Droneaud24009b02013-08-24 22:14:07 +02002418 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002419}
2420
Luiz Capitulino45b59392016-09-16 10:27:35 -04002421static int kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
2422{
2423 char dir_name[ITOA_MAX_LEN * 2];
2424 int ret;
2425
2426 if (!kvm_arch_has_vcpu_debugfs())
2427 return 0;
2428
2429 if (!debugfs_initialized())
2430 return 0;
2431
2432 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2433 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
2434 vcpu->kvm->debugfs_dentry);
2435 if (!vcpu->debugfs_dentry)
2436 return -ENOMEM;
2437
2438 ret = kvm_arch_create_vcpu_debugfs(vcpu);
2439 if (ret < 0) {
2440 debugfs_remove_recursive(vcpu->debugfs_dentry);
2441 return ret;
2442 }
2443
2444 return 0;
2445}
2446
Avi Kivityc5ea7662007-02-20 18:41:05 +02002447/*
2448 * Creates some virtual cpus. Good luck creating more than one.
2449 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002450static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002451{
2452 int r;
David Hildenbrande09fefd2015-11-05 09:03:50 +01002453 struct kvm_vcpu *vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002454
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002455 if (id >= KVM_MAX_VCPU_ID)
Andy Honig338c7db2013-11-18 16:09:22 -08002456 return -EINVAL;
2457
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002458 mutex_lock(&kvm->lock);
2459 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2460 mutex_unlock(&kvm->lock);
2461 return -EINVAL;
2462 }
2463
2464 kvm->created_vcpus++;
2465 mutex_unlock(&kvm->lock);
2466
Gleb Natapov73880c82009-06-09 15:56:28 +03002467 vcpu = kvm_arch_vcpu_create(kvm, id);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002468 if (IS_ERR(vcpu)) {
2469 r = PTR_ERR(vcpu);
2470 goto vcpu_decrement;
2471 }
Avi Kivityc5ea7662007-02-20 18:41:05 +02002472
Avi Kivity15ad7142007-07-11 18:17:21 +03002473 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2474
Avi Kivity26e52152007-11-20 15:30:24 +02002475 r = kvm_arch_vcpu_setup(vcpu);
2476 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002477 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002478
Luiz Capitulino45b59392016-09-16 10:27:35 -04002479 r = kvm_create_vcpu_debugfs(vcpu);
2480 if (r)
2481 goto vcpu_destroy;
2482
Shaohua Li11ec2802007-07-23 14:51:37 +08002483 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +01002484 if (kvm_get_vcpu_by_id(kvm, id)) {
2485 r = -EEXIST;
2486 goto unlock_vcpu_destroy;
2487 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002488
2489 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002490
2491 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002492 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002493 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002494 if (r < 0) {
2495 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002496 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002497 }
2498
2499 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
Paolo Bonzinidd489242015-07-29 11:32:20 +02002500
2501 /*
2502 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2503 * before kvm->online_vcpu's incremented value.
2504 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002505 smp_wmb();
2506 atomic_inc(&kvm->online_vcpus);
2507
Gleb Natapov73880c82009-06-09 15:56:28 +03002508 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002509 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002510 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002511
Jan Kiszkad7805922011-05-23 10:33:05 +02002512unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002513 mutex_unlock(&kvm->lock);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002514 debugfs_remove_recursive(vcpu->debugfs_dentry);
Jan Kiszkad7805922011-05-23 10:33:05 +02002515vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002516 kvm_arch_vcpu_destroy(vcpu);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002517vcpu_decrement:
2518 mutex_lock(&kvm->lock);
2519 kvm->created_vcpus--;
2520 mutex_unlock(&kvm->lock);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002521 return r;
2522}
2523
Avi Kivity1961d272007-03-05 19:46:05 +02002524static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2525{
2526 if (sigset) {
2527 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2528 vcpu->sigset_active = 1;
2529 vcpu->sigset = *sigset;
2530 } else
2531 vcpu->sigset_active = 0;
2532 return 0;
2533}
2534
Avi Kivitybccf2152007-02-21 18:04:26 +02002535static long kvm_vcpu_ioctl(struct file *filp,
2536 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002537{
Avi Kivitybccf2152007-02-21 18:04:26 +02002538 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002539 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002540 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002541 struct kvm_fpu *fpu = NULL;
2542 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002544 if (vcpu->kvm->mm != current->mm)
2545 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002546
David Matlack2ea75be2014-09-19 16:03:25 -07002547 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2548 return -EINVAL;
2549
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002550#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002551 /*
2552 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2553 * so vcpu_load() would break it.
2554 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002555 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002556 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2557#endif
2558
2559
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002560 r = vcpu_load(vcpu);
2561 if (r)
2562 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002563 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002564 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002565 r = -EINVAL;
2566 if (arg)
2567 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002568 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2569 /* The thread running this VCPU changed. */
2570 struct pid *oldpid = vcpu->pid;
2571 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002572
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002573 rcu_assign_pointer(vcpu->pid, newpid);
2574 if (oldpid)
2575 synchronize_rcu();
2576 put_pid(oldpid);
2577 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002578 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002579 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002580 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002581 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002582 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002583
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002584 r = -ENOMEM;
2585 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2586 if (!kvm_regs)
2587 goto out;
2588 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002590 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002591 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002592 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2593 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002594 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002595out_free1:
2596 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597 break;
2598 }
2599 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002600 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002602 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002603 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2604 if (IS_ERR(kvm_regs)) {
2605 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002606 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002607 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002608 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002609 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002610 break;
2611 }
2612 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002613 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2614 r = -ENOMEM;
2615 if (!kvm_sregs)
2616 goto out;
2617 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002618 if (r)
2619 goto out;
2620 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002621 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002622 goto out;
2623 r = 0;
2624 break;
2625 }
2626 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002627 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2628 if (IS_ERR(kvm_sregs)) {
2629 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002630 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002631 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002632 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002633 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002634 break;
2635 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002636 case KVM_GET_MP_STATE: {
2637 struct kvm_mp_state mp_state;
2638
2639 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2640 if (r)
2641 goto out;
2642 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002643 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002644 goto out;
2645 r = 0;
2646 break;
2647 }
2648 case KVM_SET_MP_STATE: {
2649 struct kvm_mp_state mp_state;
2650
2651 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002652 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002653 goto out;
2654 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002655 break;
2656 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657 case KVM_TRANSLATE: {
2658 struct kvm_translation tr;
2659
2660 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002661 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002662 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002663 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664 if (r)
2665 goto out;
2666 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002667 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002668 goto out;
2669 r = 0;
2670 break;
2671 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002672 case KVM_SET_GUEST_DEBUG: {
2673 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674
2675 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002676 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002677 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002678 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002679 break;
2680 }
Avi Kivity1961d272007-03-05 19:46:05 +02002681 case KVM_SET_SIGNAL_MASK: {
2682 struct kvm_signal_mask __user *sigmask_arg = argp;
2683 struct kvm_signal_mask kvm_sigmask;
2684 sigset_t sigset, *p;
2685
2686 p = NULL;
2687 if (argp) {
2688 r = -EFAULT;
2689 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002690 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002691 goto out;
2692 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002693 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002694 goto out;
2695 r = -EFAULT;
2696 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002697 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002698 goto out;
2699 p = &sigset;
2700 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002701 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002702 break;
2703 }
Avi Kivityb8836732007-04-01 16:34:31 +03002704 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002705 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2706 r = -ENOMEM;
2707 if (!fpu)
2708 goto out;
2709 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002710 if (r)
2711 goto out;
2712 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002713 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002714 goto out;
2715 r = 0;
2716 break;
2717 }
2718 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002719 fpu = memdup_user(argp, sizeof(*fpu));
2720 if (IS_ERR(fpu)) {
2721 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002722 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002723 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002724 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002725 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002726 break;
2727 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002728 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002729 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002730 }
2731out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002732 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002733 kfree(fpu);
2734 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002735 return r;
2736}
2737
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002738#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002739static long kvm_vcpu_compat_ioctl(struct file *filp,
2740 unsigned int ioctl, unsigned long arg)
2741{
2742 struct kvm_vcpu *vcpu = filp->private_data;
2743 void __user *argp = compat_ptr(arg);
2744 int r;
2745
2746 if (vcpu->kvm->mm != current->mm)
2747 return -EIO;
2748
2749 switch (ioctl) {
2750 case KVM_SET_SIGNAL_MASK: {
2751 struct kvm_signal_mask __user *sigmask_arg = argp;
2752 struct kvm_signal_mask kvm_sigmask;
2753 compat_sigset_t csigset;
2754 sigset_t sigset;
2755
2756 if (argp) {
2757 r = -EFAULT;
2758 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002759 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002760 goto out;
2761 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002762 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002763 goto out;
2764 r = -EFAULT;
2765 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002766 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002767 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002768 sigset_from_compat(&sigset, &csigset);
2769 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2770 } else
2771 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002772 break;
2773 }
2774 default:
2775 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2776 }
2777
2778out:
2779 return r;
2780}
2781#endif
2782
Scott Wood852b6d52013-04-12 14:08:42 +00002783static int kvm_device_ioctl_attr(struct kvm_device *dev,
2784 int (*accessor)(struct kvm_device *dev,
2785 struct kvm_device_attr *attr),
2786 unsigned long arg)
2787{
2788 struct kvm_device_attr attr;
2789
2790 if (!accessor)
2791 return -EPERM;
2792
2793 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2794 return -EFAULT;
2795
2796 return accessor(dev, &attr);
2797}
2798
2799static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2800 unsigned long arg)
2801{
2802 struct kvm_device *dev = filp->private_data;
2803
2804 switch (ioctl) {
2805 case KVM_SET_DEVICE_ATTR:
2806 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2807 case KVM_GET_DEVICE_ATTR:
2808 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2809 case KVM_HAS_DEVICE_ATTR:
2810 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2811 default:
2812 if (dev->ops->ioctl)
2813 return dev->ops->ioctl(dev, ioctl, arg);
2814
2815 return -ENOTTY;
2816 }
2817}
2818
Scott Wood852b6d52013-04-12 14:08:42 +00002819static int kvm_device_release(struct inode *inode, struct file *filp)
2820{
2821 struct kvm_device *dev = filp->private_data;
2822 struct kvm *kvm = dev->kvm;
2823
Scott Wood852b6d52013-04-12 14:08:42 +00002824 kvm_put_kvm(kvm);
2825 return 0;
2826}
2827
2828static const struct file_operations kvm_device_fops = {
2829 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002830#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002831 .compat_ioctl = kvm_device_ioctl,
2832#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002833 .release = kvm_device_release,
2834};
2835
2836struct kvm_device *kvm_device_from_filp(struct file *filp)
2837{
2838 if (filp->f_op != &kvm_device_fops)
2839 return NULL;
2840
2841 return filp->private_data;
2842}
2843
Will Deacond60eacb2014-09-02 10:27:33 +01002844static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2845#ifdef CONFIG_KVM_MPIC
2846 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2847 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2848#endif
2849
2850#ifdef CONFIG_KVM_XICS
2851 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2852#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002853};
2854
2855int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2856{
2857 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2858 return -ENOSPC;
2859
2860 if (kvm_device_ops_table[type] != NULL)
2861 return -EEXIST;
2862
2863 kvm_device_ops_table[type] = ops;
2864 return 0;
2865}
2866
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002867void kvm_unregister_device_ops(u32 type)
2868{
2869 if (kvm_device_ops_table[type] != NULL)
2870 kvm_device_ops_table[type] = NULL;
2871}
2872
Scott Wood852b6d52013-04-12 14:08:42 +00002873static int kvm_ioctl_create_device(struct kvm *kvm,
2874 struct kvm_create_device *cd)
2875{
2876 struct kvm_device_ops *ops = NULL;
2877 struct kvm_device *dev;
2878 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2879 int ret;
2880
Will Deacond60eacb2014-09-02 10:27:33 +01002881 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002882 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002883
2884 ops = kvm_device_ops_table[cd->type];
2885 if (ops == NULL)
2886 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002887
2888 if (test)
2889 return 0;
2890
2891 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2892 if (!dev)
2893 return -ENOMEM;
2894
2895 dev->ops = ops;
2896 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002897
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002898 mutex_lock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002899 ret = ops->create(dev, cd->type);
2900 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002901 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002902 kfree(dev);
2903 return ret;
2904 }
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002905 list_add(&dev->vm_node, &kvm->devices);
2906 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002907
Christoffer Dall023e9fd2016-08-09 19:13:00 +02002908 if (ops->init)
2909 ops->init(dev);
2910
Yann Droneaud24009b02013-08-24 22:14:07 +02002911 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002912 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002913 mutex_lock(&kvm->lock);
2914 list_del(&dev->vm_node);
2915 mutex_unlock(&kvm->lock);
Dan Carpentera0f1d212016-11-30 22:21:05 +03002916 ops->destroy(dev);
Scott Wood852b6d52013-04-12 14:08:42 +00002917 return ret;
2918 }
2919
2920 kvm_get_kvm(kvm);
2921 cd->fd = ret;
2922 return 0;
2923}
2924
Alexander Graf92b591a2014-07-14 18:33:08 +02002925static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2926{
2927 switch (arg) {
2928 case KVM_CAP_USER_MEMORY:
2929 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2930 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Alexander Graf92b591a2014-07-14 18:33:08 +02002931 case KVM_CAP_INTERNAL_ERROR_DATA:
2932#ifdef CONFIG_HAVE_KVM_MSI
2933 case KVM_CAP_SIGNAL_MSI:
2934#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002935#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002936 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002937 case KVM_CAP_IRQFD_RESAMPLE:
2938#endif
Jason Wange9ea5062015-09-15 14:41:59 +08002939 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
Alexander Graf92b591a2014-07-14 18:33:08 +02002940 case KVM_CAP_CHECK_EXTENSION_VM:
2941 return 1;
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002942#ifdef CONFIG_KVM_MMIO
Paolo Bonzini30422552017-03-31 13:53:22 +02002943 case KVM_CAP_COALESCED_MMIO:
2944 return KVM_COALESCED_MMIO_PAGE_OFFSET;
2945#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02002946#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2947 case KVM_CAP_IRQ_ROUTING:
2948 return KVM_MAX_IRQ_ROUTES;
2949#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02002950#if KVM_ADDRESS_SPACE_NUM > 1
2951 case KVM_CAP_MULTI_ADDRESS_SPACE:
2952 return KVM_ADDRESS_SPACE_NUM;
2953#endif
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002954 case KVM_CAP_MAX_VCPU_ID:
2955 return KVM_MAX_VCPU_ID;
Alexander Graf92b591a2014-07-14 18:33:08 +02002956 default:
2957 break;
2958 }
2959 return kvm_vm_ioctl_check_extension(kvm, arg);
2960}
2961
Avi Kivitybccf2152007-02-21 18:04:26 +02002962static long kvm_vm_ioctl(struct file *filp,
2963 unsigned int ioctl, unsigned long arg)
2964{
2965 struct kvm *kvm = filp->private_data;
2966 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002967 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002968
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002969 if (kvm->mm != current->mm)
2970 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002971 switch (ioctl) {
2972 case KVM_CREATE_VCPU:
2973 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002974 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002975 case KVM_SET_USER_MEMORY_REGION: {
2976 struct kvm_userspace_memory_region kvm_userspace_mem;
2977
2978 r = -EFAULT;
2979 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002980 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002981 goto out;
2982
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002983 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002984 break;
2985 }
2986 case KVM_GET_DIRTY_LOG: {
2987 struct kvm_dirty_log log;
2988
2989 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002990 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002991 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002992 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002993 break;
2994 }
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002995#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02002996 case KVM_REGISTER_COALESCED_MMIO: {
2997 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002998
Laurent Vivier5f94c172008-05-30 16:05:54 +02002999 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003000 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003001 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003002 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003003 break;
3004 }
3005 case KVM_UNREGISTER_COALESCED_MMIO: {
3006 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003007
Laurent Vivier5f94c172008-05-30 16:05:54 +02003008 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003009 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003010 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003011 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003012 break;
3013 }
3014#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003015 case KVM_IRQFD: {
3016 struct kvm_irqfd data;
3017
3018 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003019 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003020 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06003021 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003022 break;
3023 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003024 case KVM_IOEVENTFD: {
3025 struct kvm_ioeventfd data;
3026
3027 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003028 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003029 goto out;
3030 r = kvm_ioeventfd(kvm, &data);
3031 break;
3032 }
Jan Kiszka07975ad2012-03-29 21:14:12 +02003033#ifdef CONFIG_HAVE_KVM_MSI
3034 case KVM_SIGNAL_MSI: {
3035 struct kvm_msi msi;
3036
3037 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003038 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02003039 goto out;
3040 r = kvm_send_userspace_msi(kvm, &msi);
3041 break;
3042 }
3043#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003044#ifdef __KVM_HAVE_IRQ_LINE
3045 case KVM_IRQ_LINE_STATUS:
3046 case KVM_IRQ_LINE: {
3047 struct kvm_irq_level irq_event;
3048
3049 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003050 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003051 goto out;
3052
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003053 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3054 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003055 if (r)
3056 goto out;
3057
3058 r = -EFAULT;
3059 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08003060 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003061 goto out;
3062 }
3063
3064 r = 0;
3065 break;
3066 }
3067#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02003068#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3069 case KVM_SET_GSI_ROUTING: {
3070 struct kvm_irq_routing routing;
3071 struct kvm_irq_routing __user *urouting;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003072 struct kvm_irq_routing_entry *entries = NULL;
Alexander Grafaa8d5942013-04-15 21:12:53 +02003073
3074 r = -EFAULT;
3075 if (copy_from_user(&routing, argp, sizeof(routing)))
3076 goto out;
3077 r = -EINVAL;
David Hildenbrand5c0aea02017-04-28 17:06:20 +02003078 if (!kvm_arch_can_set_irq_routing(kvm))
3079 goto out;
Xiubo Licaf1ff22016-06-15 18:00:33 +08003080 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02003081 goto out;
3082 if (routing.flags)
3083 goto out;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003084 if (routing.nr) {
3085 r = -ENOMEM;
3086 entries = vmalloc(routing.nr * sizeof(*entries));
3087 if (!entries)
3088 goto out;
3089 r = -EFAULT;
3090 urouting = argp;
3091 if (copy_from_user(entries, urouting->entries,
3092 routing.nr * sizeof(*entries)))
3093 goto out_free_irq_routing;
3094 }
Alexander Grafaa8d5942013-04-15 21:12:53 +02003095 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3096 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08003097out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02003098 vfree(entries);
3099 break;
3100 }
3101#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00003102 case KVM_CREATE_DEVICE: {
3103 struct kvm_create_device cd;
3104
3105 r = -EFAULT;
3106 if (copy_from_user(&cd, argp, sizeof(cd)))
3107 goto out;
3108
3109 r = kvm_ioctl_create_device(kvm, &cd);
3110 if (r)
3111 goto out;
3112
3113 r = -EFAULT;
3114 if (copy_to_user(argp, &cd, sizeof(cd)))
3115 goto out;
3116
3117 r = 0;
3118 break;
3119 }
Alexander Graf92b591a2014-07-14 18:33:08 +02003120 case KVM_CHECK_EXTENSION:
3121 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3122 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02003123 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003124 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003125 }
3126out:
3127 return r;
3128}
3129
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003130#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003131struct compat_kvm_dirty_log {
3132 __u32 slot;
3133 __u32 padding1;
3134 union {
3135 compat_uptr_t dirty_bitmap; /* one bit per page */
3136 __u64 padding2;
3137 };
3138};
3139
3140static long kvm_vm_compat_ioctl(struct file *filp,
3141 unsigned int ioctl, unsigned long arg)
3142{
3143 struct kvm *kvm = filp->private_data;
3144 int r;
3145
3146 if (kvm->mm != current->mm)
3147 return -EIO;
3148 switch (ioctl) {
3149 case KVM_GET_DIRTY_LOG: {
3150 struct compat_kvm_dirty_log compat_log;
3151 struct kvm_dirty_log log;
3152
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003153 if (copy_from_user(&compat_log, (void __user *)arg,
3154 sizeof(compat_log)))
Markus Elfringf6a3b162017-01-22 11:30:21 +01003155 return -EFAULT;
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003156 log.slot = compat_log.slot;
3157 log.padding1 = compat_log.padding1;
3158 log.padding2 = compat_log.padding2;
3159 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3160
3161 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003162 break;
3163 }
3164 default:
3165 r = kvm_vm_ioctl(filp, ioctl, arg);
3166 }
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003167 return r;
3168}
3169#endif
3170
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003171static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02003172 .release = kvm_vm_release,
3173 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003174#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003175 .compat_ioctl = kvm_vm_compat_ioctl,
3176#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02003177 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02003178};
3179
Carsten Ottee08b9632012-01-04 10:25:20 +01003180static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02003181{
Heiko Carstensaac87632010-10-27 17:22:10 +02003182 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003183 struct kvm *kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003184 struct file *file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003185
Carsten Ottee08b9632012-01-04 10:25:20 +01003186 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04003187 if (IS_ERR(kvm))
3188 return PTR_ERR(kvm);
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003189#ifdef CONFIG_KVM_MMIO
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003190 r = kvm_coalesced_mmio_init(kvm);
3191 if (r < 0) {
3192 kvm_put_kvm(kvm);
3193 return r;
3194 }
3195#endif
Al Viro506cfba2016-07-14 18:54:17 +02003196 r = get_unused_fd_flags(O_CLOEXEC);
Janosch Frank536a6f82016-05-18 13:26:23 +02003197 if (r < 0) {
Al Viro66c0b392008-04-19 20:33:56 +01003198 kvm_put_kvm(kvm);
Janosch Frank536a6f82016-05-18 13:26:23 +02003199 return r;
3200 }
Al Viro506cfba2016-07-14 18:54:17 +02003201 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3202 if (IS_ERR(file)) {
3203 put_unused_fd(r);
3204 kvm_put_kvm(kvm);
3205 return PTR_ERR(file);
3206 }
Janosch Frank536a6f82016-05-18 13:26:23 +02003207
3208 if (kvm_create_vm_debugfs(kvm, r) < 0) {
Al Viro506cfba2016-07-14 18:54:17 +02003209 put_unused_fd(r);
3210 fput(file);
Janosch Frank536a6f82016-05-18 13:26:23 +02003211 return -ENOMEM;
3212 }
Avi Kivityf17abe92007-02-21 19:28:04 +02003213
Al Viro506cfba2016-07-14 18:54:17 +02003214 fd_install(r, file);
Heiko Carstensaac87632010-10-27 17:22:10 +02003215 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003216}
3217
3218static long kvm_dev_ioctl(struct file *filp,
3219 unsigned int ioctl, unsigned long arg)
3220{
Avi Kivity07c45a32007-03-07 13:05:38 +02003221 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003222
3223 switch (ioctl) {
3224 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003225 if (arg)
3226 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003227 r = KVM_API_VERSION;
3228 break;
3229 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01003230 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003231 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003232 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02003233 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02003234 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02003235 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02003236 if (arg)
3237 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02003238 r = PAGE_SIZE; /* struct kvm_run */
3239#ifdef CONFIG_X86
3240 r += PAGE_SIZE; /* pio data page */
3241#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003242#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02003243 r += PAGE_SIZE; /* coalesced mmio ring page */
3244#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02003245 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003246 case KVM_TRACE_ENABLE:
3247 case KVM_TRACE_PAUSE:
3248 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03003249 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003250 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003251 default:
Carsten Otte043405e2007-10-10 17:16:19 +02003252 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003253 }
3254out:
3255 return r;
3256}
3257
Avi Kivity6aa8b732006-12-10 02:21:36 -08003258static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003259 .unlocked_ioctl = kvm_dev_ioctl,
3260 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003261 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003262};
3263
3264static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003265 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003266 "kvm",
3267 &kvm_chardev_ops,
3268};
3269
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003270static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003271{
3272 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02003273 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03003274
Rusty Russell7f59f492008-12-07 21:25:45 +10303275 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003276 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02003277
Rusty Russell7f59f492008-12-07 21:25:45 +10303278 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02003279
Radim Krčmář13a34e02014-08-28 15:13:03 +02003280 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02003281
3282 if (r) {
3283 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3284 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08003285 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02003286 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03003287}
3288
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003289static int kvm_starting_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_enable_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
3298static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003299{
3300 int cpu = raw_smp_processor_id();
3301
Rusty Russell7f59f492008-12-07 21:25:45 +10303302 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003303 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10303304 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02003305 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03003306}
3307
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003308static int kvm_dying_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003309{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003310 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003311 if (kvm_usage_count)
3312 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003313 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003314 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003315}
3316
Alexander Graf10474ae2009-09-15 11:37:46 +02003317static void hardware_disable_all_nolock(void)
3318{
3319 BUG_ON(!kvm_usage_count);
3320
3321 kvm_usage_count--;
3322 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003323 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003324}
3325
3326static void hardware_disable_all(void)
3327{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003328 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003329 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003330 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003331}
3332
3333static int hardware_enable_all(void)
3334{
3335 int r = 0;
3336
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003337 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003338
3339 kvm_usage_count++;
3340 if (kvm_usage_count == 1) {
3341 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003342 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003343
3344 if (atomic_read(&hardware_enable_failed)) {
3345 hardware_disable_all_nolock();
3346 r = -EBUSY;
3347 }
3348 }
3349
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003350 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003351
3352 return r;
3353}
3354
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003355static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003356 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003357{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003358 /*
3359 * Some (well, at least mine) BIOSes hang on reboot if
3360 * in vmx root mode.
3361 *
3362 * And Intel TXT required VMX off for all cpu when system shutdown.
3363 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003364 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003365 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003366 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003367 return NOTIFY_OK;
3368}
3369
3370static struct notifier_block kvm_reboot_notifier = {
3371 .notifier_call = kvm_reboot,
3372 .priority = 0,
3373};
3374
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003375static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003376{
3377 int i;
3378
3379 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003380 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003381
3382 kvm_iodevice_destructor(pos);
3383 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003384 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003385}
3386
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003387static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003388 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003389{
Jason Wang8f4216c72015-09-15 14:41:57 +08003390 gpa_t addr1 = r1->addr;
3391 gpa_t addr2 = r2->addr;
3392
3393 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003394 return -1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003395
3396 /* If r2->len == 0, match the exact address. If r2->len != 0,
3397 * accept any overlapping write. Any order is acceptable for
3398 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3399 * we process all of them.
3400 */
3401 if (r2->len) {
3402 addr1 += r1->len;
3403 addr2 += r2->len;
3404 }
3405
3406 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003407 return 1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003408
Sasha Levin743eeb02011-07-27 16:00:48 +03003409 return 0;
3410}
3411
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003412static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3413{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003414 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003415}
3416
Geoff Levand39369f72013-04-05 19:20:30 +00003417static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03003418 gpa_t addr, int len)
3419{
Sasha Levin743eeb02011-07-27 16:00:48 +03003420 bus->range[bus->dev_count++] = (struct kvm_io_range) {
3421 .addr = addr,
3422 .len = len,
3423 .dev = dev,
3424 };
3425
3426 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
3427 kvm_io_bus_sort_cmp, NULL);
3428
3429 return 0;
3430}
3431
Geoff Levand39369f72013-04-05 19:20:30 +00003432static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003433 gpa_t addr, int len)
3434{
3435 struct kvm_io_range *range, key;
3436 int off;
3437
3438 key = (struct kvm_io_range) {
3439 .addr = addr,
3440 .len = len,
3441 };
3442
3443 range = bsearch(&key, bus->range, bus->dev_count,
3444 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3445 if (range == NULL)
3446 return -ENOENT;
3447
3448 off = range - bus->range;
3449
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003450 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003451 off--;
3452
3453 return off;
3454}
3455
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003456static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003457 struct kvm_io_range *range, const void *val)
3458{
3459 int idx;
3460
3461 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3462 if (idx < 0)
3463 return -EOPNOTSUPP;
3464
3465 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003466 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003467 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003468 range->len, val))
3469 return idx;
3470 idx++;
3471 }
3472
3473 return -EOPNOTSUPP;
3474}
3475
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003476/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003477int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003478 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003479{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003480 struct kvm_io_bus *bus;
3481 struct kvm_io_range range;
3482 int r;
3483
3484 range = (struct kvm_io_range) {
3485 .addr = addr,
3486 .len = len,
3487 };
3488
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;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003492 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003493 return r < 0 ? r : 0;
3494}
3495
3496/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003497int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3498 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003499{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003500 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003501 struct kvm_io_range range;
3502
3503 range = (struct kvm_io_range) {
3504 .addr = addr,
3505 .len = len,
3506 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003507
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003508 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003509 if (!bus)
3510 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02003511
3512 /* First try the device referenced by cookie. */
3513 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003514 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003515 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003516 val))
3517 return cookie;
3518
3519 /*
3520 * cookie contained garbage; fall back to search and return the
3521 * correct cookie value.
3522 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003523 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003524}
3525
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003526static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3527 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003528{
3529 int idx;
3530
3531 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003532 if (idx < 0)
3533 return -EOPNOTSUPP;
3534
3535 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003536 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003537 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003538 range->len, val))
3539 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003540 idx++;
3541 }
3542
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003543 return -EOPNOTSUPP;
3544}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003545EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003546
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003547/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003548int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003549 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003550{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003551 struct kvm_io_bus *bus;
3552 struct kvm_io_range range;
3553 int r;
3554
3555 range = (struct kvm_io_range) {
3556 .addr = addr,
3557 .len = len,
3558 };
3559
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003560 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003561 if (!bus)
3562 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003563 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003564 return r < 0 ? r : 0;
3565}
3566
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003567
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003568/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003569int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3570 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003571{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003572 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003573
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003574 bus = kvm->buses[bus_idx];
David Hildenbrand90db1042017-03-23 18:24:19 +01003575 if (!bus)
3576 return -ENOMEM;
3577
Amos Kong6ea34c92013-05-25 06:44:15 +08003578 /* exclude ioeventfd which is limited by maximum fd */
3579 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003580 return -ENOSPC;
3581
Jason Wangd3febdd2015-08-25 17:05:46 +08003582 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count + 1) *
Amos Konga13007162012-03-09 12:17:32 +08003583 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003584 if (!new_bus)
3585 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003586 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3587 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003588 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003589 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3590 synchronize_srcu_expedited(&kvm->srcu);
3591 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003592
3593 return 0;
3594}
3595
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003596/* Caller must hold slots_lock. */
David Hildenbrand90db1042017-03-23 18:24:19 +01003597void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3598 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003599{
David Hildenbrand90db1042017-03-23 18:24:19 +01003600 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003601 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003602
Sasha Levincdfca7b2011-12-04 19:36:28 +02003603 bus = kvm->buses[bus_idx];
Peter Xudf630b82017-03-15 16:01:17 +08003604 if (!bus)
David Hildenbrand90db1042017-03-23 18:24:19 +01003605 return;
Peter Xudf630b82017-03-15 16:01:17 +08003606
Amos Konga13007162012-03-09 12:17:32 +08003607 for (i = 0; i < bus->dev_count; i++)
3608 if (bus->range[i].dev == dev) {
Gregory Haskins090b7af2009-07-07 17:08:44 -04003609 break;
3610 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003611
David Hildenbrand90db1042017-03-23 18:24:19 +01003612 if (i == bus->dev_count)
3613 return;
Amos Konga13007162012-03-09 12:17:32 +08003614
Jason Wangd3febdd2015-08-25 17:05:46 +08003615 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count - 1) *
Amos Konga13007162012-03-09 12:17:32 +08003616 sizeof(struct kvm_io_range)), GFP_KERNEL);
David Hildenbrand90db1042017-03-23 18:24:19 +01003617 if (!new_bus) {
3618 pr_err("kvm: failed to shrink bus, removing it completely\n");
3619 goto broken;
3620 }
Amos Konga13007162012-03-09 12:17:32 +08003621
3622 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3623 new_bus->dev_count--;
3624 memcpy(new_bus->range + i, bus->range + i + 1,
3625 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003626
David Hildenbrand90db1042017-03-23 18:24:19 +01003627broken:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003628 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3629 synchronize_srcu_expedited(&kvm->srcu);
3630 kfree(bus);
David Hildenbrand90db1042017-03-23 18:24:19 +01003631 return;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003632}
3633
Andre Przywara8a39d002016-07-15 12:43:26 +01003634struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3635 gpa_t addr)
3636{
3637 struct kvm_io_bus *bus;
3638 int dev_idx, srcu_idx;
3639 struct kvm_io_device *iodev = NULL;
3640
3641 srcu_idx = srcu_read_lock(&kvm->srcu);
3642
3643 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003644 if (!bus)
3645 goto out_unlock;
Andre Przywara8a39d002016-07-15 12:43:26 +01003646
3647 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
3648 if (dev_idx < 0)
3649 goto out_unlock;
3650
3651 iodev = bus->range[dev_idx].dev;
3652
3653out_unlock:
3654 srcu_read_unlock(&kvm->srcu, srcu_idx);
3655
3656 return iodev;
3657}
3658EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
3659
Janosch Frank536a6f82016-05-18 13:26:23 +02003660static int kvm_debugfs_open(struct inode *inode, struct file *file,
3661 int (*get)(void *, u64 *), int (*set)(void *, u64),
3662 const char *fmt)
3663{
3664 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3665 inode->i_private;
3666
3667 /* The debugfs files are a reference to the kvm struct which
3668 * is still valid when kvm_destroy_vm is called.
3669 * To avoid the race between open and the removal of the debugfs
3670 * directory we test against the users count.
3671 */
Elena Reshetovae3736c32017-02-20 13:06:21 +02003672 if (!refcount_inc_not_zero(&stat_data->kvm->users_count))
Janosch Frank536a6f82016-05-18 13:26:23 +02003673 return -ENOENT;
3674
3675 if (simple_attr_open(inode, file, get, set, fmt)) {
3676 kvm_put_kvm(stat_data->kvm);
3677 return -ENOMEM;
3678 }
3679
3680 return 0;
3681}
3682
3683static int kvm_debugfs_release(struct inode *inode, struct file *file)
3684{
3685 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3686 inode->i_private;
3687
3688 simple_attr_release(inode, file);
3689 kvm_put_kvm(stat_data->kvm);
3690
3691 return 0;
3692}
3693
3694static int vm_stat_get_per_vm(void *data, u64 *val)
3695{
3696 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3697
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003698 *val = *(ulong *)((void *)stat_data->kvm + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003699
3700 return 0;
3701}
3702
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003703static int vm_stat_clear_per_vm(void *data, u64 val)
3704{
3705 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3706
3707 if (val)
3708 return -EINVAL;
3709
3710 *(ulong *)((void *)stat_data->kvm + stat_data->offset) = 0;
3711
3712 return 0;
3713}
3714
Janosch Frank536a6f82016-05-18 13:26:23 +02003715static int vm_stat_get_per_vm_open(struct inode *inode, struct file *file)
3716{
3717 __simple_attr_check_format("%llu\n", 0ull);
3718 return kvm_debugfs_open(inode, file, vm_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003719 vm_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003720}
3721
3722static const struct file_operations vm_stat_get_per_vm_fops = {
3723 .owner = THIS_MODULE,
3724 .open = vm_stat_get_per_vm_open,
3725 .release = kvm_debugfs_release,
3726 .read = simple_attr_read,
3727 .write = simple_attr_write,
3728 .llseek = generic_file_llseek,
3729};
3730
3731static int vcpu_stat_get_per_vm(void *data, u64 *val)
3732{
3733 int i;
3734 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3735 struct kvm_vcpu *vcpu;
3736
3737 *val = 0;
3738
3739 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003740 *val += *(u64 *)((void *)vcpu + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003741
3742 return 0;
3743}
3744
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003745static int vcpu_stat_clear_per_vm(void *data, u64 val)
3746{
3747 int i;
3748 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3749 struct kvm_vcpu *vcpu;
3750
3751 if (val)
3752 return -EINVAL;
3753
3754 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
3755 *(u64 *)((void *)vcpu + stat_data->offset) = 0;
3756
3757 return 0;
3758}
3759
Janosch Frank536a6f82016-05-18 13:26:23 +02003760static int vcpu_stat_get_per_vm_open(struct inode *inode, struct file *file)
3761{
3762 __simple_attr_check_format("%llu\n", 0ull);
3763 return kvm_debugfs_open(inode, file, vcpu_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003764 vcpu_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003765}
3766
3767static const struct file_operations vcpu_stat_get_per_vm_fops = {
3768 .owner = THIS_MODULE,
3769 .open = vcpu_stat_get_per_vm_open,
3770 .release = kvm_debugfs_release,
3771 .read = simple_attr_read,
3772 .write = simple_attr_write,
3773 .llseek = generic_file_llseek,
3774};
3775
3776static const struct file_operations *stat_fops_per_vm[] = {
3777 [KVM_STAT_VCPU] = &vcpu_stat_get_per_vm_fops,
3778 [KVM_STAT_VM] = &vm_stat_get_per_vm_fops,
3779};
3780
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003781static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003782{
3783 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003784 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003785 struct kvm_stat_data stat_tmp = {.offset = offset};
3786 u64 tmp_val;
Avi Kivityba1389b2007-11-18 16:24:12 +02003787
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003788 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003789 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003790 list_for_each_entry(kvm, &vm_list, vm_list) {
3791 stat_tmp.kvm = kvm;
3792 vm_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3793 *val += tmp_val;
3794 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003795 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003796 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003797}
3798
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003799static int vm_stat_clear(void *_offset, u64 val)
3800{
3801 unsigned offset = (long)_offset;
3802 struct kvm *kvm;
3803 struct kvm_stat_data stat_tmp = {.offset = offset};
3804
3805 if (val)
3806 return -EINVAL;
3807
3808 spin_lock(&kvm_lock);
3809 list_for_each_entry(kvm, &vm_list, vm_list) {
3810 stat_tmp.kvm = kvm;
3811 vm_stat_clear_per_vm((void *)&stat_tmp, 0);
3812 }
3813 spin_unlock(&kvm_lock);
3814
3815 return 0;
3816}
3817
3818DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003819
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003820static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003821{
3822 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003823 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003824 struct kvm_stat_data stat_tmp = {.offset = offset};
3825 u64 tmp_val;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003826
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003827 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003828 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003829 list_for_each_entry(kvm, &vm_list, vm_list) {
3830 stat_tmp.kvm = kvm;
3831 vcpu_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3832 *val += tmp_val;
3833 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003834 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003835 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003836}
3837
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003838static int vcpu_stat_clear(void *_offset, u64 val)
3839{
3840 unsigned offset = (long)_offset;
3841 struct kvm *kvm;
3842 struct kvm_stat_data stat_tmp = {.offset = offset};
3843
3844 if (val)
3845 return -EINVAL;
3846
3847 spin_lock(&kvm_lock);
3848 list_for_each_entry(kvm, &vm_list, vm_list) {
3849 stat_tmp.kvm = kvm;
3850 vcpu_stat_clear_per_vm((void *)&stat_tmp, 0);
3851 }
3852 spin_unlock(&kvm_lock);
3853
3854 return 0;
3855}
3856
3857DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
3858 "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003859
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003860static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003861 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3862 [KVM_STAT_VM] = &vm_stat_fops,
3863};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003864
Hamo4f69b682011-12-15 14:23:16 +08003865static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003866{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003867 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003868 struct kvm_stats_debugfs_item *p;
3869
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003870 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003871 if (kvm_debugfs_dir == NULL)
3872 goto out;
3873
Janosch Frank536a6f82016-05-18 13:26:23 +02003874 kvm_debugfs_num_entries = 0;
3875 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003876 if (!debugfs_create_file(p->name, 0644, kvm_debugfs_dir,
Janosch Frank4bd33b52015-10-14 12:37:35 +02003877 (void *)(long)p->offset,
3878 stat_fops[p->kind]))
Hamo4f69b682011-12-15 14:23:16 +08003879 goto out_dir;
3880 }
3881
3882 return 0;
3883
3884out_dir:
3885 debugfs_remove_recursive(kvm_debugfs_dir);
3886out:
3887 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003888}
3889
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003890static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003891{
Alexander Graf10474ae2009-09-15 11:37:46 +02003892 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003893 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003894 return 0;
3895}
3896
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003897static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003898{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003899 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003900 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003901 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003902 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003903}
3904
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003905static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003906 .suspend = kvm_suspend,
3907 .resume = kvm_resume,
3908};
3909
Avi Kivity15ad7142007-07-11 18:17:21 +03003910static inline
3911struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3912{
3913 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3914}
3915
3916static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3917{
3918 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003919
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303920 if (vcpu->preempted)
3921 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003922
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003923 kvm_arch_sched_in(vcpu, cpu);
3924
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003925 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003926}
3927
3928static void kvm_sched_out(struct preempt_notifier *pn,
3929 struct task_struct *next)
3930{
3931 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3932
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303933 if (current->state == TASK_RUNNING)
3934 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003935 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003936}
3937
Avi Kivity0ee75be2010-04-28 15:39:01 +03003938int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003939 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003940{
3941 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003942 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003944 r = kvm_arch_init(opaque);
3945 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003946 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003947
Asias He7dac16c2013-05-08 10:57:29 +08003948 /*
3949 * kvm_arch_init makes sure there's at most one caller
3950 * for architectures that support multiple implementations,
3951 * like intel and amd on x86.
Paolo Bonzini36343f62016-10-26 13:35:56 +02003952 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3953 * conflicts in case kvm is already setup for another implementation.
Asias He7dac16c2013-05-08 10:57:29 +08003954 */
Paolo Bonzini36343f62016-10-26 13:35:56 +02003955 r = kvm_irqfd_init();
3956 if (r)
3957 goto out_irqfd;
Asias He7dac16c2013-05-08 10:57:29 +08003958
Avi Kivity8437a6172009-06-06 14:52:35 -07003959 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303960 r = -ENOMEM;
3961 goto out_free_0;
3962 }
3963
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003964 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003965 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303966 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003967
Yang, Sheng002c7f72007-07-31 14:23:01 +03003968 for_each_online_cpu(cpu) {
3969 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003970 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003971 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003972 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003973 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003974 }
3975
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003976 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003977 kvm_starting_cpu, kvm_dying_cpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08003978 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003979 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003980 register_reboot_notifier(&kvm_reboot_notifier);
3981
Rusty Russellc16f8622007-07-30 21:12:19 +10003982 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003983 if (!vcpu_align)
3984 vcpu_align = __alignof__(struct kvm_vcpu);
3985 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003986 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003987 if (!kvm_vcpu_cache) {
3988 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003989 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003990 }
3991
Gleb Natapovaf585b92010-10-14 11:22:46 +02003992 r = kvm_async_pf_init();
3993 if (r)
3994 goto out_free;
3995
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003997 kvm_vm_fops.owner = module;
3998 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003999
4000 r = misc_register(&kvm_dev);
4001 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08004002 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02004003 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004004 }
4005
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004006 register_syscore_ops(&kvm_syscore_ops);
4007
Avi Kivity15ad7142007-07-11 18:17:21 +03004008 kvm_preempt_ops.sched_in = kvm_sched_in;
4009 kvm_preempt_ops.sched_out = kvm_sched_out;
4010
Hamo4f69b682011-12-15 14:23:16 +08004011 r = kvm_init_debug();
4012 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08004013 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08004014 goto out_undebugfs;
4015 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07004016
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02004017 r = kvm_vfio_ops_init();
4018 WARN_ON(r);
4019
Avi Kivityc7addb92007-09-16 18:58:32 +02004020 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004021
Hamo4f69b682011-12-15 14:23:16 +08004022out_undebugfs:
4023 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08004024 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004025out_unreg:
4026 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004027out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10004028 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004029out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004030 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004031 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004032out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08004033out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004034 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10304035out_free_0a:
4036 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004037out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004038 kvm_irqfd_exit();
Paolo Bonzini36343f62016-10-26 13:35:56 +02004039out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08004040 kvm_arch_exit();
4041out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004042 return r;
4043}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004044EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004045
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004046void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004047{
Janosch Frank4bd33b52015-10-14 12:37:35 +02004048 debugfs_remove_recursive(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004049 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10004050 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004051 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004052 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004053 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004054 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004055 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004056 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004057 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004058 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10304059 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08004060 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004061}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004062EXPORT_SYMBOL_GPL(kvm_exit);