blob: dd5de09bf36251417a579be4f5c0cce2d1927c3b [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Andre Przywaraaf669ac2015-03-26 14:39:29 +000019#include <kvm/iodev.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080020
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include <linux/kvm.h>
23#include <linux/module.h>
24#include <linux/errno.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/percpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080026#include <linux/mm.h>
27#include <linux/miscdevice.h>
28#include <linux/vmalloc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/reboot.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080030#include <linux/debugfs.h>
31#include <linux/highmem.h>
32#include <linux/file.h>
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +010033#include <linux/syscore_ops.h>
Avi Kivity774c47f2007-02-12 00:54:47 -080034#include <linux/cpu.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040035#include <linux/sched.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010036#include <linux/sched/mm.h>
Avi Kivityd9e368d2007-06-07 19:18:30 +030037#include <linux/cpumask.h>
38#include <linux/smp.h>
Avi Kivityd6d28162007-06-28 08:38:16 -040039#include <linux/anon_inodes.h>
Avi Kivity04d2cc72007-09-10 18:10:54 +030040#include <linux/profile.h>
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050041#include <linux/kvm_para.h>
Izik Eidus6fc138d2007-10-09 19:20:39 +020042#include <linux/pagemap.h>
Anthony Liguori8d4e1282007-10-18 09:59:34 -050043#include <linux/mman.h>
Anthony Liguori35149e22008-04-02 14:46:56 -050044#include <linux/swap.h>
Sheng Yange56d5322009-03-12 21:45:39 +080045#include <linux/bitops.h>
Marcelo Tosatti547de292009-05-07 17:55:13 -030046#include <linux/spinlock.h>
Arnd Bergmann6ff58942009-10-22 14:19:27 +020047#include <linux/compat.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020048#include <linux/srcu.h>
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +010049#include <linux/hugetlb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Sasha Levin743eeb02011-07-27 16:00:48 +030051#include <linux/sort.h>
52#include <linux/bsearch.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080053
Avi Kivitye4956062007-06-28 14:15:57 -040054#include <asm/processor.h>
Avi Kivitye4956062007-06-28 14:15:57 -040055#include <asm/io.h>
David Matlack2ea75be2014-09-19 16:03:25 -070056#include <asm/ioctl.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080057#include <linux/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020058#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080059
Laurent Vivier5f94c172008-05-30 16:05:54 +020060#include "coalesced_mmio.h"
Gleb Natapovaf585b92010-10-14 11:22:46 +020061#include "async_pf.h"
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +020062#include "vfio.h"
Laurent Vivier5f94c172008-05-30 16:05:54 +020063
Marcelo Tosatti229456f2009-06-17 09:22:14 -030064#define CREATE_TRACE_POINTS
65#include <trace/events/kvm.h>
66
Janosch Frank536a6f82016-05-18 13:26:23 +020067/* Worst case buffer size needed for holding an integer. */
68#define ITOA_MAX_LEN 12
69
Avi Kivity6aa8b732006-12-10 02:21:36 -080070MODULE_AUTHOR("Qumranet");
71MODULE_LICENSE("GPL");
72
David Hildenbrand920552b2015-09-18 12:34:53 +020073/* Architectures should define their poll value according to the halt latency */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110074unsigned int halt_poll_ns = KVM_HALT_POLL_NS_DEFAULT;
Paolo Bonzinif7819512015-02-04 18:20:58 +010075module_param(halt_poll_ns, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110076EXPORT_SYMBOL_GPL(halt_poll_ns);
Paolo Bonzinif7819512015-02-04 18:20:58 +010077
Wanpeng Liaca6ff22015-09-03 22:07:38 +080078/* Default doubles per-vcpu halt_poll_ns. */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110079unsigned int halt_poll_ns_grow = 2;
Christian Borntraeger6b6de682016-02-09 13:47:55 +010080module_param(halt_poll_ns_grow, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110081EXPORT_SYMBOL_GPL(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +080082
83/* Default resets per-vcpu halt_poll_ns . */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110084unsigned int halt_poll_ns_shrink;
Christian Borntraeger6b6de682016-02-09 13:47:55 +010085module_param(halt_poll_ns_shrink, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110086EXPORT_SYMBOL_GPL(halt_poll_ns_shrink);
Wanpeng Liaca6ff22015-09-03 22:07:38 +080087
Marcelo Tosattifa40a822009-06-04 15:08:24 -030088/*
89 * Ordering of locks:
90 *
Xiubo Lib7d409d2015-02-26 14:58:24 +080091 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030092 */
93
Paolo Bonzini2f303b72013-09-25 13:53:07 +020094DEFINE_SPINLOCK(kvm_lock);
Paolo Bonzini4a937f92013-09-10 12:58:35 +020095static DEFINE_RAW_SPINLOCK(kvm_count_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080096LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080097
Rusty Russell7f59f492008-12-07 21:25:45 +103098static cpumask_var_t cpus_hardware_enabled;
Xiubo Lif4fee932015-02-26 14:58:21 +080099static int kvm_usage_count;
Alexander Graf10474ae2009-09-15 11:37:46 +0200100static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +0300101
Rusty Russellc16f8622007-07-30 21:12:19 +1000102struct kmem_cache *kvm_vcpu_cache;
103EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +0300104
Avi Kivity15ad7142007-07-11 18:17:21 +0300105static __read_mostly struct preempt_ops kvm_preempt_ops;
106
Hollis Blanchard76f7c872008-04-15 16:05:42 -0500107struct dentry *kvm_debugfs_dir;
Paul Mackerrase23a8082015-03-28 14:21:01 +1100108EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800109
Janosch Frank536a6f82016-05-18 13:26:23 +0200110static int kvm_debugfs_num_entries;
111static const struct file_operations *stat_fops_per_vm[];
112
Avi Kivitybccf2152007-02-21 18:04:26 +0200113static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
114 unsigned long arg);
Christian Borntraegerde8e5d72015-02-03 09:35:15 +0100115#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +0200116static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
117 unsigned long arg);
118#endif
Alexander Graf10474ae2009-09-15 11:37:46 +0200119static int hardware_enable_all(void);
120static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +0200121
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200122static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
Stephen Hemminger79408762013-12-29 12:12:29 -0800123
Dan Williamsba049e92016-01-15 16:56:11 -0800124static void kvm_release_pfn_dirty(kvm_pfn_t pfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +0200125static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot, gfn_t gfn);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200126
Andi Kleen52480132014-02-08 08:51:57 +0100127__visible bool kvm_rebooting;
Avi Kivityb7c41452010-12-02 17:52:50 +0200128EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300129
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300130static bool largepages_enabled = true;
131
Dan Williamsba049e92016-01-15 16:56:11 -0800132bool kvm_is_reserved_pfn(kvm_pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300133{
Andrea Arcangeli11feeb42013-07-25 03:04:38 +0200134 if (pfn_valid(pfn))
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000135 return PageReserved(pfn_to_page(pfn));
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300136
137 return true;
138}
139
Avi Kivity6aa8b732006-12-10 02:21:36 -0800140/*
141 * Switches to specified vcpu, until a matching vcpu_put()
142 */
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300143int vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800144{
Avi Kivity15ad7142007-07-11 18:17:21 +0300145 int cpu;
146
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300147 if (mutex_lock_killable(&vcpu->mutex))
148 return -EINTR;
Avi Kivity15ad7142007-07-11 18:17:21 +0300149 cpu = get_cpu();
150 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200151 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300152 put_cpu();
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300153 return 0;
Avi Kivitybccf2152007-02-21 18:04:26 +0200154}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700155EXPORT_SYMBOL_GPL(vcpu_load);
Avi Kivitybccf2152007-02-21 18:04:26 +0200156
Carsten Otte313a3dc2007-10-11 19:16:52 +0200157void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800158{
Avi Kivity15ad7142007-07-11 18:17:21 +0300159 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200160 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300161 preempt_notifier_unregister(&vcpu->preempt_notifier);
162 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800163 mutex_unlock(&vcpu->mutex);
164}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700165EXPORT_SYMBOL_GPL(vcpu_put);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800166
Avi Kivityd9e368d2007-06-07 19:18:30 +0300167static void ack_flush(void *_completed)
168{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300169}
170
Tang Chen445b8232014-09-24 15:57:55 +0800171bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300172{
Avi Kivity597a5f52008-07-20 14:24:22 +0300173 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030174 cpumask_var_t cpus;
175 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300176 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300177
Li Zefan79f55992009-06-15 14:58:26 +0800178 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030179
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800180 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300181 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800182 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300183 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800184
Lan Tianyua30a0502016-03-13 11:10:26 +0800185 /* Set ->requests bit before we read ->mode. */
186 smp_mb__after_atomic();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800187
188 if (cpus != NULL && cpu != -1 && cpu != me &&
189 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030190 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300191 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030192 if (unlikely(cpus == NULL))
193 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
194 else if (!cpumask_empty(cpus))
195 smp_call_function_many(cpus, ack_flush, NULL, 1);
196 else
197 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800198 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030199 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030200 return called;
201}
202
Mario Smarducha6d51012015-01-15 15:58:52 -0800203#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030204void kvm_flush_remote_tlbs(struct kvm *kvm)
205{
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800206 /*
207 * Read tlbs_dirty before setting KVM_REQ_TLB_FLUSH in
208 * kvm_make_all_cpus_request.
209 */
210 long dirty_count = smp_load_acquire(&kvm->tlbs_dirty);
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800211
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800212 /*
213 * We want to publish modifications to the page tables before reading
214 * mode. Pairs with a memory barrier in arch-specific code.
215 * - x86: smp_mb__after_srcu_read_unlock in vcpu_enter_guest
216 * and smp_mb in walk_shadow_page_lockless_begin/end.
217 * - powerpc: smp_mb in kvmppc_prepare_to_enter.
218 *
219 * There is already an smp_mb__after_atomic() before
220 * kvm_make_all_cpus_request() reads vcpu->mode. We reuse that
221 * barrier here.
222 */
Tang Chen445b8232014-09-24 15:57:55 +0800223 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030224 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800225 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300226}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530227EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800228#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300229
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500230void kvm_reload_remote_mmus(struct kvm *kvm)
231{
Tang Chen445b8232014-09-24 15:57:55 +0800232 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500233}
234
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000235int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
236{
237 struct page *page;
238 int r;
239
240 mutex_init(&vcpu->mutex);
241 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000242 vcpu->kvm = kvm;
243 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500244 vcpu->pid = NULL;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100245 init_swait_queue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200246 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000247
Feng Wubf9f6ac2015-09-18 22:29:55 +0800248 vcpu->pre_pcpu = -1;
249 INIT_LIST_HEAD(&vcpu->blocked_vcpu_list);
250
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000251 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
252 if (!page) {
253 r = -ENOMEM;
254 goto fail;
255 }
256 vcpu->run = page_address(page);
257
Raghavendra K T4c088492012-07-18 19:07:46 +0530258 kvm_vcpu_set_in_spin_loop(vcpu, false);
259 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530260 vcpu->preempted = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530261
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800262 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000263 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800264 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000265 return 0;
266
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000267fail_free_run:
268 free_page((unsigned long)vcpu->run);
269fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000270 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000271}
272EXPORT_SYMBOL_GPL(kvm_vcpu_init);
273
274void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
275{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500276 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800277 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000278 free_page((unsigned long)vcpu->run);
279}
280EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
281
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200282#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
283static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
284{
285 return container_of(mn, struct kvm, mmu_notifier);
286}
287
288static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
289 struct mm_struct *mm,
290 unsigned long address)
291{
292 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200293 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200294
295 /*
296 * When ->invalidate_page runs, the linux pte has been zapped
297 * already but the page is still allocated until
298 * ->invalidate_page returns. So if we increase the sequence
299 * here the kvm page fault will notice if the spte can't be
300 * established because the page is going to be freed. If
301 * instead the kvm page fault establishes the spte before
302 * ->invalidate_page runs, kvm_unmap_hva will release it
303 * before returning.
304 *
305 * The sequence increase only need to be seen at spin_unlock
306 * time, and not at spin_lock time.
307 *
308 * Increasing the sequence after the spin_unlock would be
309 * unsafe because the kvm page fault could then establish the
310 * pte after kvm_unmap_hva returned, without noticing the page
311 * is going to be freed.
312 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200313 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200314 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900315
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200316 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800317 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200318 /* we've to flush the tlb before the pages can be freed */
319 if (need_tlb_flush)
320 kvm_flush_remote_tlbs(kvm);
321
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900322 spin_unlock(&kvm->mmu_lock);
Tang Chenfe71557a2014-09-24 15:57:57 +0800323
324 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
325
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900326 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200327}
328
Izik Eidus3da0dd42009-09-23 21:47:18 +0300329static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
330 struct mm_struct *mm,
331 unsigned long address,
332 pte_t pte)
333{
334 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200335 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300336
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200337 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300338 spin_lock(&kvm->mmu_lock);
339 kvm->mmu_notifier_seq++;
340 kvm_set_spte_hva(kvm, address, pte);
341 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200342 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300343}
344
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200345static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
346 struct mm_struct *mm,
347 unsigned long start,
348 unsigned long end)
349{
350 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200351 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200352
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200353 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200354 spin_lock(&kvm->mmu_lock);
355 /*
356 * The count increase must become visible at unlock time as no
357 * spte can be established without taking the mmu_lock and
358 * count is also read inside the mmu_lock critical section.
359 */
360 kvm->mmu_notifier_count++;
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +0900361 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800362 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200363 /* we've to flush the tlb before the pages can be freed */
364 if (need_tlb_flush)
365 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900366
367 spin_unlock(&kvm->mmu_lock);
368 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200369}
370
371static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
372 struct mm_struct *mm,
373 unsigned long start,
374 unsigned long end)
375{
376 struct kvm *kvm = mmu_notifier_to_kvm(mn);
377
378 spin_lock(&kvm->mmu_lock);
379 /*
380 * This sequence increase will notify the kvm page fault that
381 * the page that is going to be mapped in the spte could have
382 * been freed.
383 */
384 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000385 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200386 /*
387 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000388 * below count decrease, which is ensured by the smp_wmb above
389 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200390 */
391 kvm->mmu_notifier_count--;
392 spin_unlock(&kvm->mmu_lock);
393
394 BUG_ON(kvm->mmu_notifier_count < 0);
395}
396
397static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
398 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700399 unsigned long start,
400 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200401{
402 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200403 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200404
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200405 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200406 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200407
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700408 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200409 if (young)
410 kvm_flush_remote_tlbs(kvm);
411
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900412 spin_unlock(&kvm->mmu_lock);
413 srcu_read_unlock(&kvm->srcu, idx);
414
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200415 return young;
416}
417
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700418static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn,
419 struct mm_struct *mm,
420 unsigned long start,
421 unsigned long end)
422{
423 struct kvm *kvm = mmu_notifier_to_kvm(mn);
424 int young, idx;
425
426 idx = srcu_read_lock(&kvm->srcu);
427 spin_lock(&kvm->mmu_lock);
428 /*
429 * Even though we do not flush TLB, this will still adversely
430 * affect performance on pre-Haswell Intel EPT, where there is
431 * no EPT Access Bit to clear so that we have to tear down EPT
432 * tables instead. If we find this unacceptable, we can always
433 * add a parameter to kvm_age_hva so that it effectively doesn't
434 * do anything on clear_young.
435 *
436 * Also note that currently we never issue secondary TLB flushes
437 * from clear_young, leaving this job up to the regular system
438 * cadence. If we find this inaccurate, we might come up with a
439 * more sophisticated heuristic later.
440 */
441 young = kvm_age_hva(kvm, start, end);
442 spin_unlock(&kvm->mmu_lock);
443 srcu_read_unlock(&kvm->srcu, idx);
444
445 return young;
446}
447
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800448static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
449 struct mm_struct *mm,
450 unsigned long address)
451{
452 struct kvm *kvm = mmu_notifier_to_kvm(mn);
453 int young, idx;
454
455 idx = srcu_read_lock(&kvm->srcu);
456 spin_lock(&kvm->mmu_lock);
457 young = kvm_test_age_hva(kvm, address);
458 spin_unlock(&kvm->mmu_lock);
459 srcu_read_unlock(&kvm->srcu, idx);
460
461 return young;
462}
463
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100464static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
465 struct mm_struct *mm)
466{
467 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800468 int idx;
469
470 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300471 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800472 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100473}
474
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200475static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
476 .invalidate_page = kvm_mmu_notifier_invalidate_page,
477 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
478 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
479 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700480 .clear_young = kvm_mmu_notifier_clear_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800481 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300482 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100483 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200484};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200485
486static int kvm_init_mmu_notifier(struct kvm *kvm)
487{
488 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
489 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
490}
491
492#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
493
494static int kvm_init_mmu_notifier(struct kvm *kvm)
495{
496 return 0;
497}
498
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200499#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
500
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200501static struct kvm_memslots *kvm_alloc_memslots(void)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800502{
503 int i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200504 struct kvm_memslots *slots;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800505
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200506 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
507 if (!slots)
508 return NULL;
509
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800510 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800511 slots->id_to_index[i] = slots->memslots[i].id = i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200512
513 return slots;
514}
515
516static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
517{
518 if (!memslot->dirty_bitmap)
519 return;
520
521 kvfree(memslot->dirty_bitmap);
522 memslot->dirty_bitmap = NULL;
523}
524
525/*
526 * Free any memory in @free but not in @dont.
527 */
528static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
529 struct kvm_memory_slot *dont)
530{
531 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
532 kvm_destroy_dirty_bitmap(free);
533
534 kvm_arch_free_memslot(kvm, free, dont);
535
536 free->npages = 0;
537}
538
539static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
540{
541 struct kvm_memory_slot *memslot;
542
543 if (!slots)
544 return;
545
546 kvm_for_each_memslot(memslot, slots)
547 kvm_free_memslot(kvm, memslot, NULL);
548
549 kvfree(slots);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800550}
551
Janosch Frank536a6f82016-05-18 13:26:23 +0200552static void kvm_destroy_vm_debugfs(struct kvm *kvm)
553{
554 int i;
555
556 if (!kvm->debugfs_dentry)
557 return;
558
559 debugfs_remove_recursive(kvm->debugfs_dentry);
560
Luiz Capitulino9d5a1dc2016-09-07 14:47:21 -0400561 if (kvm->debugfs_stat_data) {
562 for (i = 0; i < kvm_debugfs_num_entries; i++)
563 kfree(kvm->debugfs_stat_data[i]);
564 kfree(kvm->debugfs_stat_data);
565 }
Janosch Frank536a6f82016-05-18 13:26:23 +0200566}
567
568static int kvm_create_vm_debugfs(struct kvm *kvm, int fd)
569{
570 char dir_name[ITOA_MAX_LEN * 2];
571 struct kvm_stat_data *stat_data;
572 struct kvm_stats_debugfs_item *p;
573
574 if (!debugfs_initialized())
575 return 0;
576
577 snprintf(dir_name, sizeof(dir_name), "%d-%d", task_pid_nr(current), fd);
578 kvm->debugfs_dentry = debugfs_create_dir(dir_name,
579 kvm_debugfs_dir);
580 if (!kvm->debugfs_dentry)
581 return -ENOMEM;
582
583 kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries,
584 sizeof(*kvm->debugfs_stat_data),
585 GFP_KERNEL);
586 if (!kvm->debugfs_stat_data)
587 return -ENOMEM;
588
589 for (p = debugfs_entries; p->name; p++) {
590 stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL);
591 if (!stat_data)
592 return -ENOMEM;
593
594 stat_data->kvm = kvm;
595 stat_data->offset = p->offset;
596 kvm->debugfs_stat_data[p - debugfs_entries] = stat_data;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +1100597 if (!debugfs_create_file(p->name, 0644,
Janosch Frank536a6f82016-05-18 13:26:23 +0200598 kvm->debugfs_dentry,
599 stat_data,
600 stat_fops_per_vm[p->kind]))
601 return -ENOMEM;
602 }
603 return 0;
604}
605
Carsten Ottee08b9632012-01-04 10:25:20 +0100606static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800607{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100608 int r, i;
609 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800610
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100611 if (!kvm)
612 return ERR_PTR(-ENOMEM);
613
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100614 spin_lock_init(&kvm->mmu_lock);
Vegard Nossumf1f10072017-02-27 14:30:07 -0800615 mmgrab(current->mm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100616 kvm->mm = current->mm;
617 kvm_eventfd_init(kvm);
618 mutex_init(&kvm->lock);
619 mutex_init(&kvm->irq_lock);
620 mutex_init(&kvm->slots_lock);
621 atomic_set(&kvm->users_count, 1);
622 INIT_LIST_HEAD(&kvm->devices);
623
Carsten Ottee08b9632012-01-04 10:25:20 +0100624 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100625 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100626 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200627
628 r = hardware_enable_all();
629 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100630 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200631
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200632#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300633 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200634#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800635
Alex Williamson1e702d92012-12-10 10:33:32 -0700636 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
637
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200638 r = -ENOMEM;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200639 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800640 struct kvm_memslots *slots = kvm_alloc_memslots();
641 if (!slots)
Paolo Bonzinif481b062015-05-17 17:30:37 +0200642 goto out_err_no_srcu;
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800643 /*
644 * Generations must be different for each address space.
645 * Init kvm generation close to the maximum to easily test the
646 * code of handling generation number wrap-around.
647 */
648 slots->generation = i * 2 - 150;
649 rcu_assign_pointer(kvm->memslots[i], slots);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200650 }
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200651
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200652 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100653 goto out_err_no_srcu;
654 if (init_srcu_struct(&kvm->irq_srcu))
655 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200656 for (i = 0; i < KVM_NR_BUSES; i++) {
657 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
658 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100659 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200660 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200661 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700662
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700663 r = kvm_init_mmu_notifier(kvm);
664 if (r)
665 goto out_err;
666
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200667 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000668 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200669 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100670
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200671 preempt_notifier_inc();
672
Avi Kivityf17abe92007-02-21 19:28:04 +0200673 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200674
675out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100676 cleanup_srcu_struct(&kvm->irq_srcu);
677out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100678 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100679out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200680 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100681out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200682 for (i = 0; i < KVM_NR_BUSES; i++)
683 kfree(kvm->buses[i]);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200684 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
685 kvm_free_memslots(kvm, kvm->memslots[i]);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100686 kvm_arch_free_vm(kvm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100687 mmdrop(current->mm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200688 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200689}
690
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900691/*
692 * Avoid using vmalloc for a small buffer.
693 * Should not be used when the size is statically known.
694 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900695void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900696{
697 if (size > PAGE_SIZE)
698 return vzalloc(size);
699 else
700 return kzalloc(size, GFP_KERNEL);
701}
702
Scott Wood07f0a7b2013-04-25 14:11:23 +0000703static void kvm_destroy_devices(struct kvm *kvm)
704{
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800705 struct kvm_device *dev, *tmp;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000706
Christoffer Dalla28ebea2016-08-09 19:13:01 +0200707 /*
708 * We do not need to take the kvm->lock here, because nobody else
709 * has a reference to the struct kvm at this point and therefore
710 * cannot access the devices list anyhow.
711 */
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800712 list_for_each_entry_safe(dev, tmp, &kvm->devices, vm_node) {
713 list_del(&dev->vm_node);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000714 dev->ops->destroy(dev);
715 }
716}
717
Avi Kivityf17abe92007-02-21 19:28:04 +0200718static void kvm_destroy_vm(struct kvm *kvm)
719{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200720 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200721 struct mm_struct *mm = kvm->mm;
722
Janosch Frank536a6f82016-05-18 13:26:23 +0200723 kvm_destroy_vm_debugfs(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800724 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200725 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800726 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200727 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200728 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200729 for (i = 0; i < KVM_NR_BUSES; i++)
730 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200731 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200732#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
733 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200734#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300735 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200736#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800737 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000738 kvm_destroy_devices(kvm);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200739 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
740 kvm_free_memslots(kvm, kvm->memslots[i]);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200741 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100742 cleanup_srcu_struct(&kvm->srcu);
743 kvm_arch_free_vm(kvm);
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200744 preempt_notifier_dec();
Alexander Graf10474ae2009-09-15 11:37:46 +0200745 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200746 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200747}
748
Izik Eidusd39f13b2008-03-30 16:01:25 +0300749void kvm_get_kvm(struct kvm *kvm)
750{
751 atomic_inc(&kvm->users_count);
752}
753EXPORT_SYMBOL_GPL(kvm_get_kvm);
754
755void kvm_put_kvm(struct kvm *kvm)
756{
757 if (atomic_dec_and_test(&kvm->users_count))
758 kvm_destroy_vm(kvm);
759}
760EXPORT_SYMBOL_GPL(kvm_put_kvm);
761
762
Avi Kivityf17abe92007-02-21 19:28:04 +0200763static int kvm_vm_release(struct inode *inode, struct file *filp)
764{
765 struct kvm *kvm = filp->private_data;
766
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400767 kvm_irqfd_release(kvm);
768
Izik Eidusd39f13b2008-03-30 16:01:25 +0300769 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770 return 0;
771}
772
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900773/*
774 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900775 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900776 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900777static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
778{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900779 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900780
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900781 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900782 if (!memslot->dirty_bitmap)
783 return -ENOMEM;
784
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900785 return 0;
786}
787
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800788/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000789 * Insert memslot and re-sort memslots based on their GFN,
790 * so binary search could be used to lookup GFN.
791 * Sorting algorithm takes advantage of having initially
792 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800793 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100794static void update_memslots(struct kvm_memslots *slots,
795 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800796{
Paolo Bonzini85931762014-11-14 10:22:07 +0100797 int id = new->id;
798 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000799 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800800
Paolo Bonzini85931762014-11-14 10:22:07 +0100801 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000802 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100803 WARN_ON(!mslots[i].npages);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000804 if (mslots[i].npages)
805 slots->used_slots--;
806 } else {
807 if (!mslots[i].npages)
808 slots->used_slots++;
809 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000810
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000811 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000812 new->base_gfn <= mslots[i + 1].base_gfn) {
813 if (!mslots[i + 1].npages)
814 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000815 mslots[i] = mslots[i + 1];
816 slots->id_to_index[mslots[i].id] = i;
817 i++;
818 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100819
820 /*
821 * The ">=" is needed when creating a slot with base_gfn == 0,
822 * so that it moves before all those with base_gfn == npages == 0.
823 *
824 * On the other hand, if new->npages is zero, the above loop has
825 * already left i pointing to the beginning of the empty part of
826 * mslots, and the ">=" would move the hole backwards in this
827 * case---which is wrong. So skip the loop when deleting a slot.
828 */
829 if (new->npages) {
830 while (i > 0 &&
831 new->base_gfn >= mslots[i - 1].base_gfn) {
832 mslots[i] = mslots[i - 1];
833 slots->id_to_index[mslots[i].id] = i;
834 i--;
835 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100836 } else
837 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800838
Paolo Bonzini85931762014-11-14 10:22:07 +0100839 mslots[i] = *new;
840 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800841}
842
Paolo Bonzini09170a42015-05-18 13:59:39 +0200843static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800844{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800845 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
846
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200847#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800848 valid_flags |= KVM_MEM_READONLY;
849#endif
850
851 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800852 return -EINVAL;
853
854 return 0;
855}
856
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200857static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzinif481b062015-05-17 17:30:37 +0200858 int as_id, struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200859{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200860 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200861
David Matlackee3d1572014-08-18 15:46:06 -0700862 /*
863 * Set the low bit in the generation, which disables SPTE caching
864 * until the end of synchronize_srcu_expedited.
865 */
866 WARN_ON(old_memslots->generation & 1);
867 slots->generation = old_memslots->generation + 1;
868
Paolo Bonzinif481b062015-05-17 17:30:37 +0200869 rcu_assign_pointer(kvm->memslots[as_id], slots);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200870 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900871
David Matlackee3d1572014-08-18 15:46:06 -0700872 /*
873 * Increment the new memslot generation a second time. This prevents
874 * vm exits that race with memslot updates from caching a memslot
875 * generation that will (potentially) be valid forever.
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800876 *
877 * Generations must be unique even across address spaces. We do not need
878 * a global counter for that, instead the generation space is evenly split
879 * across address spaces. For example, with two address spaces, address
880 * space 0 will use generations 0, 4, 8, ... while * address space 1 will
881 * use generations 2, 6, 10, 14, ...
David Matlackee3d1572014-08-18 15:46:06 -0700882 */
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800883 slots->generation += KVM_ADDRESS_SPACE_NUM * 2 - 1;
David Matlackee3d1572014-08-18 15:46:06 -0700884
Paolo Bonzini15f46012015-05-17 21:26:08 +0200885 kvm_arch_memslots_updated(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900886
887 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200888}
889
Avi Kivity6aa8b732006-12-10 02:21:36 -0800890/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891 * Allocate some memory and give it an address in the guest physical address
892 * space.
893 *
894 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800895 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100896 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800898int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200899 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800900{
Avi Kivity8234b222010-12-27 12:08:45 +0200901 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800902 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200903 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900904 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700906 struct kvm_memslots *slots = NULL, *old_memslots;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200907 int as_id, id;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900908 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800910 r = check_memory_region_flags(mem);
911 if (r)
912 goto out;
913
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200915 as_id = mem->slot >> 16;
916 id = (u16)mem->slot;
917
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918 /* General sanity checks */
919 if (mem->memory_size & (PAGE_SIZE - 1))
920 goto out;
921 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
922 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900923 /* We can read the guest memory with __xxx_user() later on. */
Paolo Bonzinif481b062015-05-17 17:30:37 +0200924 if ((id < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900925 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200926 !access_ok(VERIFY_WRITE,
927 (void __user *)(unsigned long)mem->userspace_addr,
928 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600929 goto out;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200930 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931 goto out;
932 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
933 goto out;
934
Paolo Bonzinif481b062015-05-17 17:30:37 +0200935 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800936 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
937 npages = mem->memory_size >> PAGE_SHIFT;
938
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900939 if (npages > KVM_MEM_MAX_NR_PAGES)
940 goto out;
941
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900942 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943
Paolo Bonzinif481b062015-05-17 17:30:37 +0200944 new.id = id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800945 new.base_gfn = base_gfn;
946 new.npages = npages;
947 new.flags = mem->flags;
948
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900949 if (npages) {
950 if (!old.npages)
951 change = KVM_MR_CREATE;
952 else { /* Modify an existing slot. */
953 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900954 (npages != old.npages) ||
955 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900956 goto out;
957
958 if (base_gfn != old.base_gfn)
959 change = KVM_MR_MOVE;
960 else if (new.flags != old.flags)
961 change = KVM_MR_FLAGS_ONLY;
962 else { /* Nothing to change. */
963 r = 0;
964 goto out;
965 }
966 }
Paolo Bonzini09170a42015-05-18 13:59:39 +0200967 } else {
968 if (!old.npages)
969 goto out;
970
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900971 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200972 new.base_gfn = 0;
973 new.flags = 0;
974 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800975
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900976 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900977 /* Check for overlaps */
978 r = -EEXIST;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200979 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900980 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
Paolo Bonzinif481b062015-05-17 17:30:37 +0200981 (slot->id == id))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900982 continue;
983 if (!((base_gfn + npages <= slot->base_gfn) ||
984 (base_gfn >= slot->base_gfn + slot->npages)))
985 goto out;
986 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989 /* Free page dirty bitmap if unneeded */
990 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000991 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992
993 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900994 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900995 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900996
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530997 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900998 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 }
Joerg Roedelec04b262009-06-19 15:16:23 +02001000
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 /* Allocate page dirty bitmap if needed */
1002 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +09001003 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001004 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005 }
1006
Igor Mammedov74496132015-03-20 12:21:37 +00001007 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001008 if (!slots)
1009 goto out_free;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001010 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001011
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001012 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Paolo Bonzinif481b062015-05-17 17:30:37 +02001013 slot = id_to_memslot(slots, id);
Xiao Guangrong28a37542011-11-24 19:04:35 +08001014 slot->flags |= KVM_MEMSLOT_INVALID;
1015
Paolo Bonzinif481b062015-05-17 17:30:37 +02001016 old_memslots = install_new_memslots(kvm, as_id, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001017
Alex Williamsone40f1932012-12-10 10:32:57 -07001018 /* slot was deleted or moved, clear iommu mapping */
1019 kvm_iommu_unmap_pages(kvm, &old);
Marcelo Tosatti12d6e752012-08-24 15:54:58 -03001020 /* From this point no new shadow pages pointing to a deleted,
1021 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001022 *
1023 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +08001024 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
1025 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001026 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03001027 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001028
1029 /*
1030 * We can re-use the old_memslots from above, the only difference
1031 * from the currently installed memslots is the invalid flag. This
1032 * will get overwritten by update_memslots anyway.
1033 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001034 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001035 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001036
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09001037 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001038 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001039 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001040
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001041 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001042 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001043 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001044 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001045 }
1046
Paolo Bonzini5cc15022014-11-14 10:55:31 +01001047 update_memslots(slots, &new);
Paolo Bonzinif481b062015-05-17 17:30:37 +02001048 old_memslots = install_new_memslots(kvm, as_id, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001049
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001050 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08001051
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001052 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +00001053 kvfree(old_memslots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001054
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001055 /*
1056 * IOMMU mapping: New slots need to be mapped. Old slots need to be
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057 * un-mapped and re-mapped if their base changes. Since base change
1058 * unmapping is handled above with slot deletion, mapping alone is
Sheng Yangf78e0e22007-10-29 09:40:42 +08001059 * needed here. Anything else the iommu might care about for existing
Avi Kivity6aa8b732006-12-10 02:21:36 -08001060 * slots (size changes, userspace addr changes and read-only flag
1061 * changes) is disallowed above, so any other attribute changes getting
1062 * here can be skipped.
Izik Eidus210c7c42007-10-24 23:52:57 +02001063 */
1064 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08001065 r = kvm_iommu_map_pages(kvm, &new);
Yang Zhange0230e12013-10-24 09:56:39 +08001066 return r;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001067 }
1068
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069 return 0;
1070
1071out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +00001072 kvfree(slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001074 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075out:
1076 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +02001077}
1078EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001079
1080int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001081 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001082{
1083 int r;
1084
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001085 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001086 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001087 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001088 return r;
1089}
Izik Eidus210c7c42007-10-24 23:52:57 +02001090EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1091
Stephen Hemminger79408762013-12-29 12:12:29 -08001092static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1093 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +02001094{
Paolo Bonzinif481b062015-05-17 17:30:37 +02001095 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001096 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001097
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001098 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001099}
1100
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001101int kvm_get_dirty_log(struct kvm *kvm,
1102 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001104 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001105 struct kvm_memory_slot *memslot;
Markus Elfring843574a2017-01-22 17:41:07 +01001106 int i, as_id, id;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001107 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001108 unsigned long any = 0;
1109
Paolo Bonzinif481b062015-05-17 17:30:37 +02001110 as_id = log->slot >> 16;
1111 id = (u16)log->slot;
1112 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring843574a2017-01-22 17:41:07 +01001113 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001114
Paolo Bonzinif481b062015-05-17 17:30:37 +02001115 slots = __kvm_memslots(kvm, as_id);
1116 memslot = id_to_memslot(slots, id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001117 if (!memslot->dirty_bitmap)
Markus Elfring843574a2017-01-22 17:41:07 +01001118 return -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001119
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001120 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121
Uri Lublincd1a4a92007-02-22 16:43:09 +02001122 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001123 any = memslot->dirty_bitmap[i];
1124
Avi Kivity6aa8b732006-12-10 02:21:36 -08001125 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
Markus Elfring843574a2017-01-22 17:41:07 +01001126 return -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001127
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001128 if (any)
1129 *is_dirty = 1;
Markus Elfring843574a2017-01-22 17:41:07 +01001130 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001131}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301132EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001133
Mario Smarduchba0513b2015-01-15 15:58:53 -08001134#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1135/**
1136 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1137 * are dirty write protect them for next write.
1138 * @kvm: pointer to kvm instance
1139 * @log: slot id and address to which we copy the log
1140 * @is_dirty: flag set if any page is dirty
1141 *
1142 * We need to keep it in mind that VCPU threads can write to the bitmap
1143 * concurrently. So, to avoid losing track of dirty pages we keep the
1144 * following order:
1145 *
1146 * 1. Take a snapshot of the bit and clear it if needed.
1147 * 2. Write protect the corresponding page.
1148 * 3. Copy the snapshot to the userspace.
1149 * 4. Upon return caller flushes TLB's if needed.
1150 *
1151 * Between 2 and 4, the guest may write to the page using the remaining TLB
1152 * entry. This is not a problem because the page is reported dirty using
1153 * the snapshot taken before and step 4 ensures that writes done after
1154 * exiting to userspace will be logged for the next call.
1155 *
1156 */
1157int kvm_get_dirty_log_protect(struct kvm *kvm,
1158 struct kvm_dirty_log *log, bool *is_dirty)
1159{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001160 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001161 struct kvm_memory_slot *memslot;
Markus Elfring58d6db32017-01-22 17:30:16 +01001162 int i, as_id, id;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001163 unsigned long n;
1164 unsigned long *dirty_bitmap;
1165 unsigned long *dirty_bitmap_buffer;
1166
Paolo Bonzinif481b062015-05-17 17:30:37 +02001167 as_id = log->slot >> 16;
1168 id = (u16)log->slot;
1169 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring58d6db32017-01-22 17:30:16 +01001170 return -EINVAL;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001171
Paolo Bonzinif481b062015-05-17 17:30:37 +02001172 slots = __kvm_memslots(kvm, as_id);
1173 memslot = id_to_memslot(slots, id);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001174
1175 dirty_bitmap = memslot->dirty_bitmap;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001176 if (!dirty_bitmap)
Markus Elfring58d6db32017-01-22 17:30:16 +01001177 return -ENOENT;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001178
1179 n = kvm_dirty_bitmap_bytes(memslot);
1180
1181 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1182 memset(dirty_bitmap_buffer, 0, n);
1183
1184 spin_lock(&kvm->mmu_lock);
1185 *is_dirty = false;
1186 for (i = 0; i < n / sizeof(long); i++) {
1187 unsigned long mask;
1188 gfn_t offset;
1189
1190 if (!dirty_bitmap[i])
1191 continue;
1192
1193 *is_dirty = true;
1194
1195 mask = xchg(&dirty_bitmap[i], 0);
1196 dirty_bitmap_buffer[i] = mask;
1197
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001198 if (mask) {
1199 offset = i * BITS_PER_LONG;
1200 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1201 offset, mask);
1202 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001203 }
1204
1205 spin_unlock(&kvm->mmu_lock);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001206 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
Markus Elfring58d6db32017-01-22 17:30:16 +01001207 return -EFAULT;
1208 return 0;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001209}
1210EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1211#endif
1212
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001213bool kvm_largepages_enabled(void)
1214{
1215 return largepages_enabled;
1216}
1217
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001218void kvm_disable_largepages(void)
1219{
1220 largepages_enabled = false;
1221}
1222EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1223
Gleb Natapov49c77542010-10-18 15:22:23 +02001224struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1225{
1226 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1227}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001228EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001229
Paolo Bonzini8e734852015-05-17 13:58:53 +02001230struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1231{
1232 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1233}
1234
Yaowei Bai33e94152015-11-14 11:21:06 +08001235bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001236{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001237 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001238
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001239 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001240 memslot->flags & KVM_MEMSLOT_INVALID)
Yaowei Bai33e94152015-11-14 11:21:06 +08001241 return false;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001242
Yaowei Bai33e94152015-11-14 11:21:06 +08001243 return true;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001244}
1245EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1246
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001247unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1248{
1249 struct vm_area_struct *vma;
1250 unsigned long addr, size;
1251
1252 size = PAGE_SIZE;
1253
1254 addr = gfn_to_hva(kvm, gfn);
1255 if (kvm_is_error_hva(addr))
1256 return PAGE_SIZE;
1257
1258 down_read(&current->mm->mmap_sem);
1259 vma = find_vma(current->mm, addr);
1260 if (!vma)
1261 goto out;
1262
1263 size = vma_kernel_pagesize(vma);
1264
1265out:
1266 up_read(&current->mm->mmap_sem);
1267
1268 return size;
1269}
1270
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001271static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1272{
1273 return slot->flags & KVM_MEM_READONLY;
1274}
1275
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001276static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1277 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001278{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001279 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001280 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001281
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001282 if (memslot_is_readonly(slot) && write)
1283 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001284
1285 if (nr_pages)
1286 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1287
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001288 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001289}
Xiao Guangrong48987782010-08-22 19:11:43 +08001290
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001291static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1292 gfn_t *nr_pages)
1293{
1294 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1295}
1296
1297unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001298 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001299{
1300 return gfn_to_hva_many(slot, gfn, NULL);
1301}
1302EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1303
Xiao Guangrong48987782010-08-22 19:11:43 +08001304unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1305{
Gleb Natapov49c77542010-10-18 15:22:23 +02001306 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001307}
Sheng Yang0d150292008-04-25 21:44:50 +08001308EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001309
Paolo Bonzini8e734852015-05-17 13:58:53 +02001310unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1311{
1312 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1313}
1314EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1315
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001316/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001317 * If writable is set to false, the hva returned by this function is only
1318 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001319 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001320unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1321 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001322{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001323 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1324
1325 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001326 *writable = !memslot_is_readonly(slot);
1327
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001328 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001329}
1330
Christoffer Dall64d83122014-08-19 12:15:00 +02001331unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1332{
1333 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1334
1335 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1336}
1337
Paolo Bonzini8e734852015-05-17 13:58:53 +02001338unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1339{
1340 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1341
1342 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1343}
1344
Dave Hansend4edcf02016-02-12 13:01:56 -08001345static int get_user_page_nowait(unsigned long start, int write,
1346 struct page **page)
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001347{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001348 int flags = FOLL_NOWAIT | FOLL_HWPOISON;
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001349
1350 if (write)
1351 flags |= FOLL_WRITE;
1352
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001353 return get_user_pages(start, 1, flags, page, NULL);
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001354}
1355
Huang Yingfafc3db2011-01-30 11:15:49 +08001356static inline int check_user_page_hwpoison(unsigned long addr)
1357{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001358 int rc, flags = FOLL_HWPOISON | FOLL_WRITE;
Huang Yingfafc3db2011-01-30 11:15:49 +08001359
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001360 rc = get_user_pages(addr, 1, flags, NULL, NULL);
Huang Yingfafc3db2011-01-30 11:15:49 +08001361 return rc == -EHWPOISON;
1362}
1363
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001364/*
1365 * The atomic path to get the writable pfn which will be stored in @pfn,
1366 * true indicates success, otherwise false is returned.
1367 */
1368static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
Dan Williamsba049e92016-01-15 16:56:11 -08001369 bool write_fault, bool *writable, kvm_pfn_t *pfn)
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001370{
1371 struct page *page[1];
1372 int npages;
1373
1374 if (!(async || atomic))
1375 return false;
1376
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001377 /*
1378 * Fast pin a writable pfn only if it is a write fault request
1379 * or the caller allows to map a writable pfn for a read fault
1380 * request.
1381 */
1382 if (!(write_fault || writable))
1383 return false;
1384
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001385 npages = __get_user_pages_fast(addr, 1, 1, page);
1386 if (npages == 1) {
1387 *pfn = page_to_pfn(page[0]);
1388
1389 if (writable)
1390 *writable = true;
1391 return true;
1392 }
1393
1394 return false;
1395}
1396
1397/*
1398 * The slow path to get the pfn of the specified host virtual address,
1399 * 1 indicates success, -errno is returned if error is detected.
1400 */
1401static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
Dan Williamsba049e92016-01-15 16:56:11 -08001402 bool *writable, kvm_pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001403{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001404 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001405 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001406
1407 might_sleep();
1408
1409 if (writable)
1410 *writable = write_fault;
1411
1412 if (async) {
1413 down_read(&current->mm->mmap_sem);
Dave Hansend4edcf02016-02-12 13:01:56 -08001414 npages = get_user_page_nowait(addr, write_fault, page);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001415 up_read(&current->mm->mmap_sem);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001416 } else {
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001417 unsigned int flags = FOLL_HWPOISON;
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001418
1419 if (write_fault)
1420 flags |= FOLL_WRITE;
1421
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001422 npages = get_user_pages_unlocked(addr, 1, page, flags);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001423 }
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001424 if (npages != 1)
1425 return npages;
1426
1427 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001428 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001429 struct page *wpage[1];
1430
1431 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1432 if (npages == 1) {
1433 *writable = true;
1434 put_page(page[0]);
1435 page[0] = wpage[0];
1436 }
1437
1438 npages = 1;
1439 }
1440 *pfn = page_to_pfn(page[0]);
1441 return npages;
1442}
1443
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001444static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1445{
1446 if (unlikely(!(vma->vm_flags & VM_READ)))
1447 return false;
1448
1449 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1450 return false;
1451
1452 return true;
1453}
1454
Paolo Bonzini92176a82016-06-07 16:22:47 +02001455static int hva_to_pfn_remapped(struct vm_area_struct *vma,
1456 unsigned long addr, bool *async,
1457 bool write_fault, kvm_pfn_t *p_pfn)
1458{
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001459 unsigned long pfn;
1460 int r;
1461
1462 r = follow_pfn(vma, addr, &pfn);
1463 if (r) {
1464 /*
1465 * get_user_pages fails for VM_IO and VM_PFNMAP vmas and does
1466 * not call the fault handler, so do it here.
1467 */
1468 bool unlocked = false;
1469 r = fixup_user_fault(current, current->mm, addr,
1470 (write_fault ? FAULT_FLAG_WRITE : 0),
1471 &unlocked);
1472 if (unlocked)
1473 return -EAGAIN;
1474 if (r)
1475 return r;
1476
1477 r = follow_pfn(vma, addr, &pfn);
1478 if (r)
1479 return r;
1480
1481 }
1482
1483
1484 /*
1485 * Get a reference here because callers of *hva_to_pfn* and
1486 * *gfn_to_pfn* ultimately call kvm_release_pfn_clean on the
1487 * returned pfn. This is only needed if the VMA has VM_MIXEDMAP
1488 * set, but the kvm_get_pfn/kvm_release_pfn_clean pair will
1489 * simply do nothing for reserved pfns.
1490 *
1491 * Whoever called remap_pfn_range is also going to call e.g.
1492 * unmap_mapping_range before the underlying pages are freed,
1493 * causing a call to our MMU notifier.
1494 */
1495 kvm_get_pfn(pfn);
1496
1497 *p_pfn = pfn;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001498 return 0;
1499}
1500
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001501/*
1502 * Pin guest page in memory and return its pfn.
1503 * @addr: host virtual address which maps memory to the guest
1504 * @atomic: whether this function can sleep
1505 * @async: whether this function need to wait IO complete if the
1506 * host page is not in the memory
1507 * @write_fault: whether we should get a writable host page
1508 * @writable: whether it allows to map a writable host page for !@write_fault
1509 *
1510 * The function will map a writable host page for these two cases:
1511 * 1): @write_fault = true
1512 * 2): @write_fault = false && @writable, @writable will tell the caller
1513 * whether the mapping is writable.
1514 */
Dan Williamsba049e92016-01-15 16:56:11 -08001515static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001516 bool write_fault, bool *writable)
1517{
1518 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001519 kvm_pfn_t pfn = 0;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001520 int npages, r;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001521
Gleb Natapovaf585b92010-10-14 11:22:46 +02001522 /* we can do it either atomically or asynchronously, not both */
1523 BUG_ON(atomic && async);
1524
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001525 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1526 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001527
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001528 if (atomic)
1529 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001530
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001531 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1532 if (npages == 1)
1533 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001534
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001535 down_read(&current->mm->mmap_sem);
1536 if (npages == -EHWPOISON ||
1537 (!async && check_user_page_hwpoison(addr))) {
1538 pfn = KVM_PFN_ERR_HWPOISON;
1539 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001540 }
Izik Eidus539cb662007-11-11 22:05:04 +02001541
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001542retry:
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001543 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001544
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001545 if (vma == NULL)
1546 pfn = KVM_PFN_ERR_FAULT;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001547 else if (vma->vm_flags & (VM_IO | VM_PFNMAP)) {
1548 r = hva_to_pfn_remapped(vma, addr, async, write_fault, &pfn);
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001549 if (r == -EAGAIN)
1550 goto retry;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001551 if (r < 0)
1552 pfn = KVM_PFN_ERR_FAULT;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001553 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001554 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001555 *async = true;
1556 pfn = KVM_PFN_ERR_FAULT;
1557 }
1558exit:
1559 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001560 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001561}
1562
Dan Williamsba049e92016-01-15 16:56:11 -08001563kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
1564 bool atomic, bool *async, bool write_fault,
1565 bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001566{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001567 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1568
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001569 if (addr == KVM_HVA_ERR_RO_BAD) {
1570 if (writable)
1571 *writable = false;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001572 return KVM_PFN_ERR_RO_FAULT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001573 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001574
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001575 if (kvm_is_error_hva(addr)) {
1576 if (writable)
1577 *writable = false;
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001578 return KVM_PFN_NOSLOT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001579 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001580
1581 /* Do not map writable pfn in the readonly memslot. */
1582 if (writable && memslot_is_readonly(slot)) {
1583 *writable = false;
1584 writable = NULL;
1585 }
1586
1587 return hva_to_pfn(addr, atomic, async, write_fault,
1588 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001589}
Paolo Bonzini35204692015-04-02 11:20:48 +02001590EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001591
Dan Williamsba049e92016-01-15 16:56:11 -08001592kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001593 bool *writable)
1594{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001595 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1596 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001597}
1598EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1599
Dan Williamsba049e92016-01-15 16:56:11 -08001600kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001601{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001602 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001603}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001604EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001605
Dan Williamsba049e92016-01-15 16:56:11 -08001606kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001607{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001608 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001609}
1610EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1611
Dan Williamsba049e92016-01-15 16:56:11 -08001612kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001613{
1614 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1615}
1616EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1617
Dan Williamsba049e92016-01-15 16:56:11 -08001618kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001619{
1620 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1621}
1622EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1623
Dan Williamsba049e92016-01-15 16:56:11 -08001624kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001625{
1626 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1627}
1628EXPORT_SYMBOL_GPL(gfn_to_pfn);
1629
Dan Williamsba049e92016-01-15 16:56:11 -08001630kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001631{
1632 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1633}
1634EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1635
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001636int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1637 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001638{
1639 unsigned long addr;
1640 gfn_t entry;
1641
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001642 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001643 if (kvm_is_error_hva(addr))
1644 return -1;
1645
1646 if (entry < nr_pages)
1647 return 0;
1648
1649 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1650}
1651EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1652
Dan Williamsba049e92016-01-15 16:56:11 -08001653static struct page *kvm_pfn_to_page(kvm_pfn_t pfn)
Xiao Guangronga2766322012-07-26 11:58:59 +08001654{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001655 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001656 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001657
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001658 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001659 WARN_ON(1);
1660 return KVM_ERR_PTR_BAD_PAGE;
1661 }
1662
Xiao Guangronga2766322012-07-26 11:58:59 +08001663 return pfn_to_page(pfn);
1664}
1665
Anthony Liguori35149e22008-04-02 14:46:56 -05001666struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1667{
Dan Williamsba049e92016-01-15 16:56:11 -08001668 kvm_pfn_t pfn;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001669
1670 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001671
Xiao Guangronga2766322012-07-26 11:58:59 +08001672 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001673}
1674EXPORT_SYMBOL_GPL(gfn_to_page);
1675
Paolo Bonzini8e734852015-05-17 13:58:53 +02001676struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1677{
Dan Williamsba049e92016-01-15 16:56:11 -08001678 kvm_pfn_t pfn;
Paolo Bonzini8e734852015-05-17 13:58:53 +02001679
1680 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1681
1682 return kvm_pfn_to_page(pfn);
1683}
1684EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1685
Izik Eidusb4231d62007-11-20 11:49:33 +02001686void kvm_release_page_clean(struct page *page)
1687{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001688 WARN_ON(is_error_page(page));
1689
Anthony Liguori35149e22008-04-02 14:46:56 -05001690 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001691}
1692EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1693
Dan Williamsba049e92016-01-15 16:56:11 -08001694void kvm_release_pfn_clean(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001695{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001696 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001697 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001698}
1699EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1700
Izik Eidusb4231d62007-11-20 11:49:33 +02001701void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001702{
Xiao Guangronga2766322012-07-26 11:58:59 +08001703 WARN_ON(is_error_page(page));
1704
Anthony Liguori35149e22008-04-02 14:46:56 -05001705 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001706}
Izik Eidusb4231d62007-11-20 11:49:33 +02001707EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001708
Dan Williamsba049e92016-01-15 16:56:11 -08001709static void kvm_release_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001710{
1711 kvm_set_pfn_dirty(pfn);
1712 kvm_release_pfn_clean(pfn);
1713}
Anthony Liguori35149e22008-04-02 14:46:56 -05001714
Dan Williamsba049e92016-01-15 16:56:11 -08001715void kvm_set_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001716{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001717 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001718 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08001719
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001720 if (!PageReserved(page))
1721 SetPageDirty(page);
1722 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001723}
1724EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1725
Dan Williamsba049e92016-01-15 16:56:11 -08001726void kvm_set_pfn_accessed(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001727{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001728 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001729 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001730}
1731EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1732
Dan Williamsba049e92016-01-15 16:56:11 -08001733void kvm_get_pfn(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001734{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001735 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001736 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001737}
1738EXPORT_SYMBOL_GPL(kvm_get_pfn);
1739
Izik Eidus195aefd2007-10-01 22:14:18 +02001740static int next_segment(unsigned long len, int offset)
1741{
1742 if (len > PAGE_SIZE - offset)
1743 return PAGE_SIZE - offset;
1744 else
1745 return len;
1746}
1747
Paolo Bonzini8e734852015-05-17 13:58:53 +02001748static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
1749 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001750{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001751 int r;
1752 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001753
Paolo Bonzini8e734852015-05-17 13:58:53 +02001754 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001755 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001756 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001757 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001758 if (r)
1759 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001760 return 0;
1761}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001762
1763int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1764 int len)
1765{
1766 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1767
1768 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1769}
Izik Eidus195aefd2007-10-01 22:14:18 +02001770EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1771
Paolo Bonzini8e734852015-05-17 13:58:53 +02001772int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
1773 int offset, int len)
1774{
1775 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1776
1777 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1778}
1779EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
1780
Izik Eidus195aefd2007-10-01 22:14:18 +02001781int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1782{
1783 gfn_t gfn = gpa >> PAGE_SHIFT;
1784 int seg;
1785 int offset = offset_in_page(gpa);
1786 int ret;
1787
1788 while ((seg = next_segment(len, offset)) != 0) {
1789 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1790 if (ret < 0)
1791 return ret;
1792 offset = 0;
1793 len -= seg;
1794 data += seg;
1795 ++gfn;
1796 }
1797 return 0;
1798}
1799EXPORT_SYMBOL_GPL(kvm_read_guest);
1800
Paolo Bonzini8e734852015-05-17 13:58:53 +02001801int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
1802{
1803 gfn_t gfn = gpa >> PAGE_SHIFT;
1804 int seg;
1805 int offset = offset_in_page(gpa);
1806 int ret;
1807
1808 while ((seg = next_segment(len, offset)) != 0) {
1809 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
1810 if (ret < 0)
1811 return ret;
1812 offset = 0;
1813 len -= seg;
1814 data += seg;
1815 ++gfn;
1816 }
1817 return 0;
1818}
1819EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
1820
1821static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1822 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001823{
1824 int r;
1825 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001826
Paolo Bonzini8e734852015-05-17 13:58:53 +02001827 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001828 if (kvm_is_error_hva(addr))
1829 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001830 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001831 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001832 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001833 if (r)
1834 return -EFAULT;
1835 return 0;
1836}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001837
Paolo Bonzini8e734852015-05-17 13:58:53 +02001838int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1839 unsigned long len)
1840{
1841 gfn_t gfn = gpa >> PAGE_SHIFT;
1842 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1843 int offset = offset_in_page(gpa);
1844
1845 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1846}
1847EXPORT_SYMBOL_GPL(kvm_read_guest_atomic);
1848
1849int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
1850 void *data, unsigned long len)
1851{
1852 gfn_t gfn = gpa >> PAGE_SHIFT;
1853 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1854 int offset = offset_in_page(gpa);
1855
1856 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1857}
1858EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
1859
1860static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
1861 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001862{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001863 int r;
1864 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001865
Radim Krčmář251eb842015-04-10 21:47:27 +02001866 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001867 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001868 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001869 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001870 if (r)
1871 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001872 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02001873 return 0;
1874}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001875
1876int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
1877 const void *data, int offset, int len)
1878{
1879 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1880
1881 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1882}
Izik Eidus195aefd2007-10-01 22:14:18 +02001883EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1884
Paolo Bonzini8e734852015-05-17 13:58:53 +02001885int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
1886 const void *data, int offset, int len)
1887{
1888 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1889
1890 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1891}
1892EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
1893
Izik Eidus195aefd2007-10-01 22:14:18 +02001894int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1895 unsigned long len)
1896{
1897 gfn_t gfn = gpa >> PAGE_SHIFT;
1898 int seg;
1899 int offset = offset_in_page(gpa);
1900 int ret;
1901
1902 while ((seg = next_segment(len, offset)) != 0) {
1903 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1904 if (ret < 0)
1905 return ret;
1906 offset = 0;
1907 len -= seg;
1908 data += seg;
1909 ++gfn;
1910 }
1911 return 0;
1912}
Wincy Vanff651cb2014-12-11 08:52:58 +03001913EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001914
Paolo Bonzini8e734852015-05-17 13:58:53 +02001915int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
1916 unsigned long len)
1917{
1918 gfn_t gfn = gpa >> PAGE_SHIFT;
1919 int seg;
1920 int offset = offset_in_page(gpa);
1921 int ret;
1922
1923 while ((seg = next_segment(len, offset)) != 0) {
1924 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
1925 if (ret < 0)
1926 return ret;
1927 offset = 0;
1928 len -= seg;
1929 data += seg;
1930 ++gfn;
1931 }
1932 return 0;
1933}
1934EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
1935
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001936static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
1937 struct gfn_to_hva_cache *ghc,
1938 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001939{
Gleb Natapov49c77542010-10-18 15:22:23 +02001940 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001941 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1942 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1943 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1944 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001945
1946 ghc->gpa = gpa;
1947 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001948 ghc->len = len;
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001949 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001950 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1951 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001952 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001953 } else {
1954 /*
1955 * If the requested region crosses two memslots, we still
1956 * verify that the entire region is valid here.
1957 */
1958 while (start_gfn <= end_gfn) {
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001959 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Andrew Honig8f964522013-03-29 09:35:21 -07001960 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1961 &nr_pages_avail);
1962 if (kvm_is_error_hva(ghc->hva))
1963 return -EFAULT;
1964 start_gfn += nr_pages_avail;
1965 }
1966 /* Use the slow path for cross page reads and writes. */
1967 ghc->memslot = NULL;
1968 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001969 return 0;
1970}
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001971
Cao, Leibbd64112017-02-03 20:04:35 +00001972int kvm_vcpu_gfn_to_hva_cache_init(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001973 gpa_t gpa, unsigned long len)
1974{
Cao, Leibbd64112017-02-03 20:04:35 +00001975 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001976 return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
1977}
Cao, Leibbd64112017-02-03 20:04:35 +00001978EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva_cache_init);
Gleb Natapov49c77542010-10-18 15:22:23 +02001979
Cao, Leibbd64112017-02-03 20:04:35 +00001980int kvm_vcpu_write_guest_offset_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
1981 void *data, int offset, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001982{
Cao, Leibbd64112017-02-03 20:04:35 +00001983 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapov49c77542010-10-18 15:22:23 +02001984 int r;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001985 gpa_t gpa = ghc->gpa + offset;
Gleb Natapov49c77542010-10-18 15:22:23 +02001986
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001987 BUG_ON(len + offset > ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001988
Gleb Natapov49c77542010-10-18 15:22:23 +02001989 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001990 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001991
1992 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00001993 return kvm_vcpu_write_guest(vcpu, gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001994
1995 if (kvm_is_error_hva(ghc->hva))
1996 return -EFAULT;
1997
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001998 r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001999 if (r)
2000 return -EFAULT;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002001 mark_page_dirty_in_slot(ghc->memslot, gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02002002
2003 return 0;
2004}
Cao, Leibbd64112017-02-03 20:04:35 +00002005EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_offset_cached);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002006
Cao, Leibbd64112017-02-03 20:04:35 +00002007int kvm_vcpu_write_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2008 void *data, unsigned long len)
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002009{
Cao, Leibbd64112017-02-03 20:04:35 +00002010 return kvm_vcpu_write_guest_offset_cached(vcpu, ghc, data, 0, len);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002011}
Cao, Leibbd64112017-02-03 20:04:35 +00002012EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_cached);
Gleb Natapov49c77542010-10-18 15:22:23 +02002013
Cao, Leibbd64112017-02-03 20:04:35 +00002014int kvm_vcpu_read_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2015 void *data, unsigned long len)
Gleb Natapove03b6442011-07-11 15:28:11 -04002016{
Cao, Leibbd64112017-02-03 20:04:35 +00002017 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapove03b6442011-07-11 15:28:11 -04002018 int r;
2019
Andrew Honig8f964522013-03-29 09:35:21 -07002020 BUG_ON(len > ghc->len);
2021
Gleb Natapove03b6442011-07-11 15:28:11 -04002022 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002023 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002024
2025 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00002026 return kvm_vcpu_read_guest(vcpu, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04002027
2028 if (kvm_is_error_hva(ghc->hva))
2029 return -EFAULT;
2030
2031 r = __copy_from_user(data, (void __user *)ghc->hva, len);
2032 if (r)
2033 return -EFAULT;
2034
2035 return 0;
2036}
Cao, Leibbd64112017-02-03 20:04:35 +00002037EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_cached);
Gleb Natapove03b6442011-07-11 15:28:11 -04002038
Izik Eidus195aefd2007-10-01 22:14:18 +02002039int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
2040{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01002041 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
2042
2043 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02002044}
2045EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
2046
2047int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
2048{
2049 gfn_t gfn = gpa >> PAGE_SHIFT;
2050 int seg;
2051 int offset = offset_in_page(gpa);
2052 int ret;
2053
Kevin Mulveybfda0e82015-02-20 08:21:36 -05002054 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02002055 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
2056 if (ret < 0)
2057 return ret;
2058 offset = 0;
2059 len -= seg;
2060 ++gfn;
2061 }
2062 return 0;
2063}
2064EXPORT_SYMBOL_GPL(kvm_clear_guest);
2065
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002066static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08002067 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002068{
Rusty Russell7e9d6192007-07-31 20:41:14 +10002069 if (memslot && memslot->dirty_bitmap) {
2070 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002071
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07002072 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002073 }
2074}
2075
Gleb Natapov49c77542010-10-18 15:22:23 +02002076void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
2077{
2078 struct kvm_memory_slot *memslot;
2079
2080 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002081 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02002082}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302083EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02002084
Paolo Bonzini8e734852015-05-17 13:58:53 +02002085void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
2086{
2087 struct kvm_memory_slot *memslot;
2088
2089 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2090 mark_page_dirty_in_slot(memslot, gfn);
2091}
2092EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
2093
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002094static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
2095{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002096 unsigned int old, val, grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002097
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002098 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002099 grow = READ_ONCE(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002100 /* 10us base */
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002101 if (val == 0 && grow)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002102 val = 10000;
2103 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002104 val *= grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002105
David Matlack313f6362016-03-08 16:19:44 -08002106 if (val > halt_poll_ns)
2107 val = halt_poll_ns;
2108
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002109 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002110 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002111}
2112
2113static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
2114{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002115 unsigned int old, val, shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002116
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002117 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002118 shrink = READ_ONCE(halt_poll_ns_shrink);
2119 if (shrink == 0)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002120 val = 0;
2121 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002122 val /= shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002123
2124 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002125 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002126}
2127
Paolo Bonzinif7819512015-02-04 18:20:58 +01002128static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
2129{
2130 if (kvm_arch_vcpu_runnable(vcpu)) {
2131 kvm_make_request(KVM_REQ_UNHALT, vcpu);
2132 return -EINTR;
2133 }
2134 if (kvm_cpu_has_pending_timer(vcpu))
2135 return -EINTR;
2136 if (signal_pending(current))
2137 return -EINTR;
2138
2139 return 0;
2140}
2141
Eddie Dongb6958ce2007-07-18 12:15:21 +03002142/*
2143 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2144 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05002145void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03002146{
Paolo Bonzinif7819512015-02-04 18:20:58 +01002147 ktime_t start, cur;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002148 DECLARE_SWAITQUEUE(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002149 bool waited = false;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002150 u64 block_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002151
2152 start = cur = ktime_get();
Wanpeng Li19020f82015-09-03 22:07:37 +08002153 if (vcpu->halt_poll_ns) {
2154 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002155
Paolo Bonzini62bea5b2015-09-15 18:27:57 +02002156 ++vcpu->stat.halt_attempted_poll;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002157 do {
2158 /*
2159 * This sets KVM_REQ_UNHALT if an interrupt
2160 * arrives.
2161 */
2162 if (kvm_vcpu_check_block(vcpu) < 0) {
2163 ++vcpu->stat.halt_successful_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002164 if (!vcpu_valid_wakeup(vcpu))
2165 ++vcpu->stat.halt_poll_invalid;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002166 goto out;
2167 }
2168 cur = ktime_get();
2169 } while (single_task_running() && ktime_before(cur, stop));
2170 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03002171
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002172 kvm_arch_vcpu_blocking(vcpu);
2173
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002174 for (;;) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01002175 prepare_to_swait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002176
Paolo Bonzinif7819512015-02-04 18:20:58 +01002177 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002178 break;
2179
Paolo Bonzinif7819512015-02-04 18:20:58 +01002180 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03002181 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03002182 }
2183
Marcelo Tosatti85773702016-02-19 09:46:39 +01002184 finish_swait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002185 cur = ktime_get();
2186
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002187 kvm_arch_vcpu_unblocking(vcpu);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002188out:
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002189 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2190
Christian Borntraeger2086d322016-05-17 10:49:22 +02002191 if (!vcpu_valid_wakeup(vcpu))
2192 shrink_halt_poll_ns(vcpu);
2193 else if (halt_poll_ns) {
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002194 if (block_ns <= vcpu->halt_poll_ns)
2195 ;
2196 /* we had a long block, shrink polling */
Christian Borntraeger2086d322016-05-17 10:49:22 +02002197 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002198 shrink_halt_poll_ns(vcpu);
2199 /* we had a short halt and our poll time is too small */
2200 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2201 block_ns < halt_poll_ns)
2202 grow_halt_poll_ns(vcpu);
Wanpeng Liedb92722015-09-14 17:38:51 +08002203 } else
2204 vcpu->halt_poll_ns = 0;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002205
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002206 trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu));
2207 kvm_arch_vcpu_block_finish(vcpu);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002208}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302209EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002210
Marcelo Tosatti8c847802012-03-14 17:58:48 -03002211#ifndef CONFIG_S390
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002212void kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -05002213{
Marcelo Tosatti85773702016-02-19 09:46:39 +01002214 struct swait_queue_head *wqp;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002215
2216 wqp = kvm_arch_vcpu_wq(vcpu);
Marcelo Tosatti85773702016-02-19 09:46:39 +01002217 if (swait_active(wqp)) {
2218 swake_up(wqp);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002219 ++vcpu->stat.halt_wakeup;
2220 }
2221
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002222}
2223EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2224
2225/*
2226 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2227 */
2228void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2229{
2230 int me;
2231 int cpu = vcpu->cpu;
2232
2233 kvm_vcpu_wake_up(vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002234 me = get_cpu();
2235 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2236 if (kvm_arch_vcpu_should_kick(vcpu))
2237 smp_send_reschedule(cpu);
2238 put_cpu();
2239}
Yang Zhanga20ed542013-04-11 19:25:15 +08002240EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Marcelo Tosatti8c847802012-03-14 17:58:48 -03002241#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05002242
Dan Carpenterfa933842014-05-23 13:20:42 +03002243int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02002244{
2245 struct pid *pid;
2246 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03002247 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002248
2249 rcu_read_lock();
2250 pid = rcu_dereference(target->pid);
2251 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10002252 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002253 rcu_read_unlock();
2254 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302255 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302256 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002257 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302258
2259 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002260}
2261EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2262
Raghavendra K T06e48c52012-07-19 15:17:52 +05302263/*
2264 * Helper that checks whether a VCPU is eligible for directed yield.
2265 * Most eligible candidate to yield is decided by following heuristics:
2266 *
2267 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2268 * (preempted lock holder), indicated by @in_spin_loop.
2269 * Set at the beiginning and cleared at the end of interception/PLE handler.
2270 *
2271 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2272 * chance last time (mostly it has become eligible now since we have probably
2273 * yielded to lockholder in last iteration. This is done by toggling
2274 * @dy_eligible each time a VCPU checked for eligibility.)
2275 *
2276 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2277 * to preempted lock-holder could result in wrong VCPU selection and CPU
2278 * burning. Giving priority for a potential lock-holder increases lock
2279 * progress.
2280 *
2281 * Since algorithm is based on heuristics, accessing another VCPU data without
2282 * locking does not harm. It may result in trying to yield to same VCPU, fail
2283 * and continue with next VCPU and so on.
2284 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002285static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302286{
Scott Wood4a55dd72014-01-09 18:43:16 -06002287#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302288 bool eligible;
2289
2290 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002291 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302292
2293 if (vcpu->spin_loop.in_spin_loop)
2294 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2295
2296 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002297#else
2298 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302299#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002300}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302301
Rik van Riel217ece62011-02-01 09:53:28 -05002302void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002303{
Rik van Riel217ece62011-02-01 09:53:28 -05002304 struct kvm *kvm = me->kvm;
2305 struct kvm_vcpu *vcpu;
2306 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2307 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302308 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002309 int pass;
2310 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002311
Raghavendra K T4c088492012-07-18 19:07:46 +05302312 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002313 /*
2314 * We boost the priority of a VCPU that is runnable but not
2315 * currently running, because it got preempted by something
2316 * else and called schedule in __vcpu_run. Hopefully that
2317 * VCPU is holding the lock that we need and will release it.
2318 * We approximate round-robin by starting at the last boosted VCPU.
2319 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302320 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002321 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002322 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002323 i = last_boosted_vcpu;
2324 continue;
2325 } else if (pass && i > last_boosted_vcpu)
2326 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302327 if (!ACCESS_ONCE(vcpu->preempted))
2328 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002329 if (vcpu == me)
2330 continue;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002331 if (swait_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002332 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302333 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2334 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302335
2336 yielded = kvm_vcpu_yield_to(vcpu);
2337 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002338 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002339 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302340 } else if (yielded < 0) {
2341 try--;
2342 if (!try)
2343 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002344 }
Rik van Riel217ece62011-02-01 09:53:28 -05002345 }
2346 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302347 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302348
2349 /* Ensure vcpu is not eligible during next spinloop */
2350 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002351}
2352EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2353
Dave Jiang11bac802017-02-24 14:56:41 -08002354static int kvm_vcpu_fault(struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002355{
Dave Jiang11bac802017-02-24 14:56:41 -08002356 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002357 struct page *page;
2358
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002359 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002360 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002361#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002362 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002363 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002364#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002365#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2366 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2367 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2368#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002369 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002370 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002371 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002372 vmf->page = page;
2373 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002374}
2375
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002376static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002377 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002378};
2379
2380static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2381{
2382 vma->vm_ops = &kvm_vcpu_vm_ops;
2383 return 0;
2384}
2385
Avi Kivitybccf2152007-02-21 18:04:26 +02002386static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2387{
2388 struct kvm_vcpu *vcpu = filp->private_data;
2389
Luiz Capitulino45b59392016-09-16 10:27:35 -04002390 debugfs_remove_recursive(vcpu->debugfs_dentry);
Al Viro66c0b392008-04-19 20:33:56 +01002391 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002392 return 0;
2393}
2394
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002395static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002396 .release = kvm_vcpu_release,
2397 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002398#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002399 .compat_ioctl = kvm_vcpu_compat_ioctl,
2400#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002401 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002402 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02002403};
2404
2405/*
2406 * Allocates an inode for the vcpu.
2407 */
2408static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2409{
Yann Droneaud24009b02013-08-24 22:14:07 +02002410 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002411}
2412
Luiz Capitulino45b59392016-09-16 10:27:35 -04002413static int kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
2414{
2415 char dir_name[ITOA_MAX_LEN * 2];
2416 int ret;
2417
2418 if (!kvm_arch_has_vcpu_debugfs())
2419 return 0;
2420
2421 if (!debugfs_initialized())
2422 return 0;
2423
2424 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2425 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
2426 vcpu->kvm->debugfs_dentry);
2427 if (!vcpu->debugfs_dentry)
2428 return -ENOMEM;
2429
2430 ret = kvm_arch_create_vcpu_debugfs(vcpu);
2431 if (ret < 0) {
2432 debugfs_remove_recursive(vcpu->debugfs_dentry);
2433 return ret;
2434 }
2435
2436 return 0;
2437}
2438
Avi Kivityc5ea7662007-02-20 18:41:05 +02002439/*
2440 * Creates some virtual cpus. Good luck creating more than one.
2441 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002442static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002443{
2444 int r;
David Hildenbrande09fefd2015-11-05 09:03:50 +01002445 struct kvm_vcpu *vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002446
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002447 if (id >= KVM_MAX_VCPU_ID)
Andy Honig338c7db2013-11-18 16:09:22 -08002448 return -EINVAL;
2449
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002450 mutex_lock(&kvm->lock);
2451 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2452 mutex_unlock(&kvm->lock);
2453 return -EINVAL;
2454 }
2455
2456 kvm->created_vcpus++;
2457 mutex_unlock(&kvm->lock);
2458
Gleb Natapov73880c82009-06-09 15:56:28 +03002459 vcpu = kvm_arch_vcpu_create(kvm, id);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002460 if (IS_ERR(vcpu)) {
2461 r = PTR_ERR(vcpu);
2462 goto vcpu_decrement;
2463 }
Avi Kivityc5ea7662007-02-20 18:41:05 +02002464
Avi Kivity15ad7142007-07-11 18:17:21 +03002465 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2466
Avi Kivity26e52152007-11-20 15:30:24 +02002467 r = kvm_arch_vcpu_setup(vcpu);
2468 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002469 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002470
Luiz Capitulino45b59392016-09-16 10:27:35 -04002471 r = kvm_create_vcpu_debugfs(vcpu);
2472 if (r)
2473 goto vcpu_destroy;
2474
Shaohua Li11ec2802007-07-23 14:51:37 +08002475 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +01002476 if (kvm_get_vcpu_by_id(kvm, id)) {
2477 r = -EEXIST;
2478 goto unlock_vcpu_destroy;
2479 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002480
2481 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002482
2483 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002484 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002485 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002486 if (r < 0) {
2487 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002488 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002489 }
2490
2491 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
Paolo Bonzinidd489242015-07-29 11:32:20 +02002492
2493 /*
2494 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2495 * before kvm->online_vcpu's incremented value.
2496 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002497 smp_wmb();
2498 atomic_inc(&kvm->online_vcpus);
2499
Gleb Natapov73880c82009-06-09 15:56:28 +03002500 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002501 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002502 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002503
Jan Kiszkad7805922011-05-23 10:33:05 +02002504unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002505 mutex_unlock(&kvm->lock);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002506 debugfs_remove_recursive(vcpu->debugfs_dentry);
Jan Kiszkad7805922011-05-23 10:33:05 +02002507vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002508 kvm_arch_vcpu_destroy(vcpu);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002509vcpu_decrement:
2510 mutex_lock(&kvm->lock);
2511 kvm->created_vcpus--;
2512 mutex_unlock(&kvm->lock);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002513 return r;
2514}
2515
Avi Kivity1961d272007-03-05 19:46:05 +02002516static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2517{
2518 if (sigset) {
2519 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2520 vcpu->sigset_active = 1;
2521 vcpu->sigset = *sigset;
2522 } else
2523 vcpu->sigset_active = 0;
2524 return 0;
2525}
2526
Avi Kivitybccf2152007-02-21 18:04:26 +02002527static long kvm_vcpu_ioctl(struct file *filp,
2528 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529{
Avi Kivitybccf2152007-02-21 18:04:26 +02002530 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002531 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002532 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002533 struct kvm_fpu *fpu = NULL;
2534 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002535
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002536 if (vcpu->kvm->mm != current->mm)
2537 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002538
David Matlack2ea75be2014-09-19 16:03:25 -07002539 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2540 return -EINVAL;
2541
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002542#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002543 /*
2544 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2545 * so vcpu_load() would break it.
2546 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002547 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002548 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2549#endif
2550
2551
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002552 r = vcpu_load(vcpu);
2553 if (r)
2554 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002556 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002557 r = -EINVAL;
2558 if (arg)
2559 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002560 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2561 /* The thread running this VCPU changed. */
2562 struct pid *oldpid = vcpu->pid;
2563 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002564
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002565 rcu_assign_pointer(vcpu->pid, newpid);
2566 if (oldpid)
2567 synchronize_rcu();
2568 put_pid(oldpid);
2569 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002570 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002571 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002572 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002573 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002574 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002575
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002576 r = -ENOMEM;
2577 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2578 if (!kvm_regs)
2579 goto out;
2580 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002581 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002582 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002583 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002584 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2585 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002586 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002587out_free1:
2588 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589 break;
2590 }
2591 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002592 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002593
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002594 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002595 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2596 if (IS_ERR(kvm_regs)) {
2597 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002598 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002599 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002600 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002601 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602 break;
2603 }
2604 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002605 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2606 r = -ENOMEM;
2607 if (!kvm_sregs)
2608 goto out;
2609 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002610 if (r)
2611 goto out;
2612 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002613 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614 goto out;
2615 r = 0;
2616 break;
2617 }
2618 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002619 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2620 if (IS_ERR(kvm_sregs)) {
2621 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002622 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002623 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002624 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002625 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626 break;
2627 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002628 case KVM_GET_MP_STATE: {
2629 struct kvm_mp_state mp_state;
2630
2631 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2632 if (r)
2633 goto out;
2634 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002635 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002636 goto out;
2637 r = 0;
2638 break;
2639 }
2640 case KVM_SET_MP_STATE: {
2641 struct kvm_mp_state mp_state;
2642
2643 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002644 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002645 goto out;
2646 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002647 break;
2648 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002649 case KVM_TRANSLATE: {
2650 struct kvm_translation tr;
2651
2652 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002653 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002654 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002655 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002656 if (r)
2657 goto out;
2658 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002659 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002660 goto out;
2661 r = 0;
2662 break;
2663 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002664 case KVM_SET_GUEST_DEBUG: {
2665 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002666
2667 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002668 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002669 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002670 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002671 break;
2672 }
Avi Kivity1961d272007-03-05 19:46:05 +02002673 case KVM_SET_SIGNAL_MASK: {
2674 struct kvm_signal_mask __user *sigmask_arg = argp;
2675 struct kvm_signal_mask kvm_sigmask;
2676 sigset_t sigset, *p;
2677
2678 p = NULL;
2679 if (argp) {
2680 r = -EFAULT;
2681 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002682 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002683 goto out;
2684 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002685 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002686 goto out;
2687 r = -EFAULT;
2688 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002689 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002690 goto out;
2691 p = &sigset;
2692 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002693 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002694 break;
2695 }
Avi Kivityb8836732007-04-01 16:34:31 +03002696 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002697 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2698 r = -ENOMEM;
2699 if (!fpu)
2700 goto out;
2701 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002702 if (r)
2703 goto out;
2704 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002705 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002706 goto out;
2707 r = 0;
2708 break;
2709 }
2710 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002711 fpu = memdup_user(argp, sizeof(*fpu));
2712 if (IS_ERR(fpu)) {
2713 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002714 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002715 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002716 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002717 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002718 break;
2719 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002720 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002721 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002722 }
2723out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002724 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002725 kfree(fpu);
2726 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002727 return r;
2728}
2729
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002730#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002731static long kvm_vcpu_compat_ioctl(struct file *filp,
2732 unsigned int ioctl, unsigned long arg)
2733{
2734 struct kvm_vcpu *vcpu = filp->private_data;
2735 void __user *argp = compat_ptr(arg);
2736 int r;
2737
2738 if (vcpu->kvm->mm != current->mm)
2739 return -EIO;
2740
2741 switch (ioctl) {
2742 case KVM_SET_SIGNAL_MASK: {
2743 struct kvm_signal_mask __user *sigmask_arg = argp;
2744 struct kvm_signal_mask kvm_sigmask;
2745 compat_sigset_t csigset;
2746 sigset_t sigset;
2747
2748 if (argp) {
2749 r = -EFAULT;
2750 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002751 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002752 goto out;
2753 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002754 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002755 goto out;
2756 r = -EFAULT;
2757 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002758 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002759 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002760 sigset_from_compat(&sigset, &csigset);
2761 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2762 } else
2763 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002764 break;
2765 }
2766 default:
2767 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2768 }
2769
2770out:
2771 return r;
2772}
2773#endif
2774
Scott Wood852b6d52013-04-12 14:08:42 +00002775static int kvm_device_ioctl_attr(struct kvm_device *dev,
2776 int (*accessor)(struct kvm_device *dev,
2777 struct kvm_device_attr *attr),
2778 unsigned long arg)
2779{
2780 struct kvm_device_attr attr;
2781
2782 if (!accessor)
2783 return -EPERM;
2784
2785 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2786 return -EFAULT;
2787
2788 return accessor(dev, &attr);
2789}
2790
2791static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2792 unsigned long arg)
2793{
2794 struct kvm_device *dev = filp->private_data;
2795
2796 switch (ioctl) {
2797 case KVM_SET_DEVICE_ATTR:
2798 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2799 case KVM_GET_DEVICE_ATTR:
2800 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2801 case KVM_HAS_DEVICE_ATTR:
2802 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2803 default:
2804 if (dev->ops->ioctl)
2805 return dev->ops->ioctl(dev, ioctl, arg);
2806
2807 return -ENOTTY;
2808 }
2809}
2810
Scott Wood852b6d52013-04-12 14:08:42 +00002811static int kvm_device_release(struct inode *inode, struct file *filp)
2812{
2813 struct kvm_device *dev = filp->private_data;
2814 struct kvm *kvm = dev->kvm;
2815
Scott Wood852b6d52013-04-12 14:08:42 +00002816 kvm_put_kvm(kvm);
2817 return 0;
2818}
2819
2820static const struct file_operations kvm_device_fops = {
2821 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002822#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002823 .compat_ioctl = kvm_device_ioctl,
2824#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002825 .release = kvm_device_release,
2826};
2827
2828struct kvm_device *kvm_device_from_filp(struct file *filp)
2829{
2830 if (filp->f_op != &kvm_device_fops)
2831 return NULL;
2832
2833 return filp->private_data;
2834}
2835
Will Deacond60eacb2014-09-02 10:27:33 +01002836static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2837#ifdef CONFIG_KVM_MPIC
2838 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2839 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2840#endif
2841
2842#ifdef CONFIG_KVM_XICS
2843 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2844#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002845};
2846
2847int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2848{
2849 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2850 return -ENOSPC;
2851
2852 if (kvm_device_ops_table[type] != NULL)
2853 return -EEXIST;
2854
2855 kvm_device_ops_table[type] = ops;
2856 return 0;
2857}
2858
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002859void kvm_unregister_device_ops(u32 type)
2860{
2861 if (kvm_device_ops_table[type] != NULL)
2862 kvm_device_ops_table[type] = NULL;
2863}
2864
Scott Wood852b6d52013-04-12 14:08:42 +00002865static int kvm_ioctl_create_device(struct kvm *kvm,
2866 struct kvm_create_device *cd)
2867{
2868 struct kvm_device_ops *ops = NULL;
2869 struct kvm_device *dev;
2870 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2871 int ret;
2872
Will Deacond60eacb2014-09-02 10:27:33 +01002873 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002874 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002875
2876 ops = kvm_device_ops_table[cd->type];
2877 if (ops == NULL)
2878 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002879
2880 if (test)
2881 return 0;
2882
2883 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2884 if (!dev)
2885 return -ENOMEM;
2886
2887 dev->ops = ops;
2888 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002889
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002890 mutex_lock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002891 ret = ops->create(dev, cd->type);
2892 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002893 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002894 kfree(dev);
2895 return ret;
2896 }
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002897 list_add(&dev->vm_node, &kvm->devices);
2898 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002899
Christoffer Dall023e9fd2016-08-09 19:13:00 +02002900 if (ops->init)
2901 ops->init(dev);
2902
Yann Droneaud24009b02013-08-24 22:14:07 +02002903 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002904 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002905 mutex_lock(&kvm->lock);
2906 list_del(&dev->vm_node);
2907 mutex_unlock(&kvm->lock);
Dan Carpentera0f1d212016-11-30 22:21:05 +03002908 ops->destroy(dev);
Scott Wood852b6d52013-04-12 14:08:42 +00002909 return ret;
2910 }
2911
2912 kvm_get_kvm(kvm);
2913 cd->fd = ret;
2914 return 0;
2915}
2916
Alexander Graf92b591a2014-07-14 18:33:08 +02002917static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2918{
2919 switch (arg) {
2920 case KVM_CAP_USER_MEMORY:
2921 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2922 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Alexander Graf92b591a2014-07-14 18:33:08 +02002923 case KVM_CAP_INTERNAL_ERROR_DATA:
2924#ifdef CONFIG_HAVE_KVM_MSI
2925 case KVM_CAP_SIGNAL_MSI:
2926#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002927#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002928 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002929 case KVM_CAP_IRQFD_RESAMPLE:
2930#endif
Jason Wange9ea5062015-09-15 14:41:59 +08002931 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
Alexander Graf92b591a2014-07-14 18:33:08 +02002932 case KVM_CAP_CHECK_EXTENSION_VM:
2933 return 1;
2934#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2935 case KVM_CAP_IRQ_ROUTING:
2936 return KVM_MAX_IRQ_ROUTES;
2937#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02002938#if KVM_ADDRESS_SPACE_NUM > 1
2939 case KVM_CAP_MULTI_ADDRESS_SPACE:
2940 return KVM_ADDRESS_SPACE_NUM;
2941#endif
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002942 case KVM_CAP_MAX_VCPU_ID:
2943 return KVM_MAX_VCPU_ID;
Alexander Graf92b591a2014-07-14 18:33:08 +02002944 default:
2945 break;
2946 }
2947 return kvm_vm_ioctl_check_extension(kvm, arg);
2948}
2949
Avi Kivitybccf2152007-02-21 18:04:26 +02002950static long kvm_vm_ioctl(struct file *filp,
2951 unsigned int ioctl, unsigned long arg)
2952{
2953 struct kvm *kvm = filp->private_data;
2954 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002955 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002956
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002957 if (kvm->mm != current->mm)
2958 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002959 switch (ioctl) {
2960 case KVM_CREATE_VCPU:
2961 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002962 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002963 case KVM_SET_USER_MEMORY_REGION: {
2964 struct kvm_userspace_memory_region kvm_userspace_mem;
2965
2966 r = -EFAULT;
2967 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002968 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002969 goto out;
2970
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002971 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002972 break;
2973 }
2974 case KVM_GET_DIRTY_LOG: {
2975 struct kvm_dirty_log log;
2976
2977 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002978 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002979 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002980 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002981 break;
2982 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002983#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2984 case KVM_REGISTER_COALESCED_MMIO: {
2985 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002986
Laurent Vivier5f94c172008-05-30 16:05:54 +02002987 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002988 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002989 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002990 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002991 break;
2992 }
2993 case KVM_UNREGISTER_COALESCED_MMIO: {
2994 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002995
Laurent Vivier5f94c172008-05-30 16:05:54 +02002996 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002997 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002998 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002999 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003000 break;
3001 }
3002#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003003 case KVM_IRQFD: {
3004 struct kvm_irqfd data;
3005
3006 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003007 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003008 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06003009 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003010 break;
3011 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003012 case KVM_IOEVENTFD: {
3013 struct kvm_ioeventfd data;
3014
3015 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003016 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003017 goto out;
3018 r = kvm_ioeventfd(kvm, &data);
3019 break;
3020 }
Jan Kiszka07975ad2012-03-29 21:14:12 +02003021#ifdef CONFIG_HAVE_KVM_MSI
3022 case KVM_SIGNAL_MSI: {
3023 struct kvm_msi msi;
3024
3025 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003026 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02003027 goto out;
3028 r = kvm_send_userspace_msi(kvm, &msi);
3029 break;
3030 }
3031#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003032#ifdef __KVM_HAVE_IRQ_LINE
3033 case KVM_IRQ_LINE_STATUS:
3034 case KVM_IRQ_LINE: {
3035 struct kvm_irq_level irq_event;
3036
3037 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003038 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003039 goto out;
3040
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003041 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3042 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003043 if (r)
3044 goto out;
3045
3046 r = -EFAULT;
3047 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08003048 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003049 goto out;
3050 }
3051
3052 r = 0;
3053 break;
3054 }
3055#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02003056#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3057 case KVM_SET_GSI_ROUTING: {
3058 struct kvm_irq_routing routing;
3059 struct kvm_irq_routing __user *urouting;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003060 struct kvm_irq_routing_entry *entries = NULL;
Alexander Grafaa8d5942013-04-15 21:12:53 +02003061
3062 r = -EFAULT;
3063 if (copy_from_user(&routing, argp, sizeof(routing)))
3064 goto out;
3065 r = -EINVAL;
Xiubo Licaf1ff22016-06-15 18:00:33 +08003066 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02003067 goto out;
3068 if (routing.flags)
3069 goto out;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003070 if (routing.nr) {
3071 r = -ENOMEM;
3072 entries = vmalloc(routing.nr * sizeof(*entries));
3073 if (!entries)
3074 goto out;
3075 r = -EFAULT;
3076 urouting = argp;
3077 if (copy_from_user(entries, urouting->entries,
3078 routing.nr * sizeof(*entries)))
3079 goto out_free_irq_routing;
3080 }
Alexander Grafaa8d5942013-04-15 21:12:53 +02003081 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3082 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08003083out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02003084 vfree(entries);
3085 break;
3086 }
3087#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00003088 case KVM_CREATE_DEVICE: {
3089 struct kvm_create_device cd;
3090
3091 r = -EFAULT;
3092 if (copy_from_user(&cd, argp, sizeof(cd)))
3093 goto out;
3094
3095 r = kvm_ioctl_create_device(kvm, &cd);
3096 if (r)
3097 goto out;
3098
3099 r = -EFAULT;
3100 if (copy_to_user(argp, &cd, sizeof(cd)))
3101 goto out;
3102
3103 r = 0;
3104 break;
3105 }
Alexander Graf92b591a2014-07-14 18:33:08 +02003106 case KVM_CHECK_EXTENSION:
3107 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3108 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02003109 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003110 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003111 }
3112out:
3113 return r;
3114}
3115
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003116#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003117struct compat_kvm_dirty_log {
3118 __u32 slot;
3119 __u32 padding1;
3120 union {
3121 compat_uptr_t dirty_bitmap; /* one bit per page */
3122 __u64 padding2;
3123 };
3124};
3125
3126static long kvm_vm_compat_ioctl(struct file *filp,
3127 unsigned int ioctl, unsigned long arg)
3128{
3129 struct kvm *kvm = filp->private_data;
3130 int r;
3131
3132 if (kvm->mm != current->mm)
3133 return -EIO;
3134 switch (ioctl) {
3135 case KVM_GET_DIRTY_LOG: {
3136 struct compat_kvm_dirty_log compat_log;
3137 struct kvm_dirty_log log;
3138
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003139 if (copy_from_user(&compat_log, (void __user *)arg,
3140 sizeof(compat_log)))
Markus Elfringf6a3b162017-01-22 11:30:21 +01003141 return -EFAULT;
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003142 log.slot = compat_log.slot;
3143 log.padding1 = compat_log.padding1;
3144 log.padding2 = compat_log.padding2;
3145 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3146
3147 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003148 break;
3149 }
3150 default:
3151 r = kvm_vm_ioctl(filp, ioctl, arg);
3152 }
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003153 return r;
3154}
3155#endif
3156
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003157static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02003158 .release = kvm_vm_release,
3159 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003160#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003161 .compat_ioctl = kvm_vm_compat_ioctl,
3162#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02003163 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02003164};
3165
Carsten Ottee08b9632012-01-04 10:25:20 +01003166static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02003167{
Heiko Carstensaac87632010-10-27 17:22:10 +02003168 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003169 struct kvm *kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003170 struct file *file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003171
Carsten Ottee08b9632012-01-04 10:25:20 +01003172 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04003173 if (IS_ERR(kvm))
3174 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003175#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
3176 r = kvm_coalesced_mmio_init(kvm);
3177 if (r < 0) {
3178 kvm_put_kvm(kvm);
3179 return r;
3180 }
3181#endif
Al Viro506cfba2016-07-14 18:54:17 +02003182 r = get_unused_fd_flags(O_CLOEXEC);
Janosch Frank536a6f82016-05-18 13:26:23 +02003183 if (r < 0) {
Al Viro66c0b392008-04-19 20:33:56 +01003184 kvm_put_kvm(kvm);
Janosch Frank536a6f82016-05-18 13:26:23 +02003185 return r;
3186 }
Al Viro506cfba2016-07-14 18:54:17 +02003187 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3188 if (IS_ERR(file)) {
3189 put_unused_fd(r);
3190 kvm_put_kvm(kvm);
3191 return PTR_ERR(file);
3192 }
Janosch Frank536a6f82016-05-18 13:26:23 +02003193
3194 if (kvm_create_vm_debugfs(kvm, r) < 0) {
Al Viro506cfba2016-07-14 18:54:17 +02003195 put_unused_fd(r);
3196 fput(file);
Janosch Frank536a6f82016-05-18 13:26:23 +02003197 return -ENOMEM;
3198 }
Avi Kivityf17abe92007-02-21 19:28:04 +02003199
Al Viro506cfba2016-07-14 18:54:17 +02003200 fd_install(r, file);
Heiko Carstensaac87632010-10-27 17:22:10 +02003201 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003202}
3203
3204static long kvm_dev_ioctl(struct file *filp,
3205 unsigned int ioctl, unsigned long arg)
3206{
Avi Kivity07c45a32007-03-07 13:05:38 +02003207 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003208
3209 switch (ioctl) {
3210 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003211 if (arg)
3212 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003213 r = KVM_API_VERSION;
3214 break;
3215 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01003216 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003217 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003218 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02003219 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02003220 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02003221 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02003222 if (arg)
3223 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02003224 r = PAGE_SIZE; /* struct kvm_run */
3225#ifdef CONFIG_X86
3226 r += PAGE_SIZE; /* pio data page */
3227#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02003228#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
3229 r += PAGE_SIZE; /* coalesced mmio ring page */
3230#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02003231 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003232 case KVM_TRACE_ENABLE:
3233 case KVM_TRACE_PAUSE:
3234 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03003235 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003236 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003237 default:
Carsten Otte043405e2007-10-10 17:16:19 +02003238 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003239 }
3240out:
3241 return r;
3242}
3243
Avi Kivity6aa8b732006-12-10 02:21:36 -08003244static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003245 .unlocked_ioctl = kvm_dev_ioctl,
3246 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003247 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003248};
3249
3250static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003251 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003252 "kvm",
3253 &kvm_chardev_ops,
3254};
3255
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003256static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003257{
3258 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02003259 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03003260
Rusty Russell7f59f492008-12-07 21:25:45 +10303261 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003262 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02003263
Rusty Russell7f59f492008-12-07 21:25:45 +10303264 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02003265
Radim Krčmář13a34e02014-08-28 15:13:03 +02003266 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02003267
3268 if (r) {
3269 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3270 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08003271 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02003272 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03003273}
3274
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003275static int kvm_starting_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003276{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003277 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003278 if (kvm_usage_count)
3279 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003280 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003281 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003282}
3283
3284static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003285{
3286 int cpu = raw_smp_processor_id();
3287
Rusty Russell7f59f492008-12-07 21:25:45 +10303288 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003289 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10303290 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02003291 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03003292}
3293
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003294static int kvm_dying_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003295{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003296 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003297 if (kvm_usage_count)
3298 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003299 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003300 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003301}
3302
Alexander Graf10474ae2009-09-15 11:37:46 +02003303static void hardware_disable_all_nolock(void)
3304{
3305 BUG_ON(!kvm_usage_count);
3306
3307 kvm_usage_count--;
3308 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003309 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003310}
3311
3312static void hardware_disable_all(void)
3313{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003314 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003315 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003316 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003317}
3318
3319static int hardware_enable_all(void)
3320{
3321 int r = 0;
3322
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003323 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003324
3325 kvm_usage_count++;
3326 if (kvm_usage_count == 1) {
3327 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003328 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003329
3330 if (atomic_read(&hardware_enable_failed)) {
3331 hardware_disable_all_nolock();
3332 r = -EBUSY;
3333 }
3334 }
3335
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003336 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003337
3338 return r;
3339}
3340
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003341static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003342 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003343{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003344 /*
3345 * Some (well, at least mine) BIOSes hang on reboot if
3346 * in vmx root mode.
3347 *
3348 * And Intel TXT required VMX off for all cpu when system shutdown.
3349 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003350 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003351 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003352 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003353 return NOTIFY_OK;
3354}
3355
3356static struct notifier_block kvm_reboot_notifier = {
3357 .notifier_call = kvm_reboot,
3358 .priority = 0,
3359};
3360
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003361static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003362{
3363 int i;
3364
3365 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003366 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003367
3368 kvm_iodevice_destructor(pos);
3369 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003370 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003371}
3372
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003373static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003374 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003375{
Jason Wang8f4216c72015-09-15 14:41:57 +08003376 gpa_t addr1 = r1->addr;
3377 gpa_t addr2 = r2->addr;
3378
3379 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003380 return -1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003381
3382 /* If r2->len == 0, match the exact address. If r2->len != 0,
3383 * accept any overlapping write. Any order is acceptable for
3384 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3385 * we process all of them.
3386 */
3387 if (r2->len) {
3388 addr1 += r1->len;
3389 addr2 += r2->len;
3390 }
3391
3392 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003393 return 1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003394
Sasha Levin743eeb02011-07-27 16:00:48 +03003395 return 0;
3396}
3397
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003398static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3399{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003400 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003401}
3402
Geoff Levand39369f72013-04-05 19:20:30 +00003403static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03003404 gpa_t addr, int len)
3405{
Sasha Levin743eeb02011-07-27 16:00:48 +03003406 bus->range[bus->dev_count++] = (struct kvm_io_range) {
3407 .addr = addr,
3408 .len = len,
3409 .dev = dev,
3410 };
3411
3412 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
3413 kvm_io_bus_sort_cmp, NULL);
3414
3415 return 0;
3416}
3417
Geoff Levand39369f72013-04-05 19:20:30 +00003418static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003419 gpa_t addr, int len)
3420{
3421 struct kvm_io_range *range, key;
3422 int off;
3423
3424 key = (struct kvm_io_range) {
3425 .addr = addr,
3426 .len = len,
3427 };
3428
3429 range = bsearch(&key, bus->range, bus->dev_count,
3430 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3431 if (range == NULL)
3432 return -ENOENT;
3433
3434 off = range - bus->range;
3435
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003436 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003437 off--;
3438
3439 return off;
3440}
3441
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003442static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003443 struct kvm_io_range *range, const void *val)
3444{
3445 int idx;
3446
3447 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3448 if (idx < 0)
3449 return -EOPNOTSUPP;
3450
3451 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003452 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003453 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003454 range->len, val))
3455 return idx;
3456 idx++;
3457 }
3458
3459 return -EOPNOTSUPP;
3460}
3461
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003462/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003463int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003464 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003465{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003466 struct kvm_io_bus *bus;
3467 struct kvm_io_range range;
3468 int r;
3469
3470 range = (struct kvm_io_range) {
3471 .addr = addr,
3472 .len = len,
3473 };
3474
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003475 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3476 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003477 return r < 0 ? r : 0;
3478}
3479
3480/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003481int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3482 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003483{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003484 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003485 struct kvm_io_range range;
3486
3487 range = (struct kvm_io_range) {
3488 .addr = addr,
3489 .len = len,
3490 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003491
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003492 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003493
3494 /* First try the device referenced by cookie. */
3495 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003496 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003497 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003498 val))
3499 return cookie;
3500
3501 /*
3502 * cookie contained garbage; fall back to search and return the
3503 * correct cookie value.
3504 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003505 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003506}
3507
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003508static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3509 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003510{
3511 int idx;
3512
3513 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003514 if (idx < 0)
3515 return -EOPNOTSUPP;
3516
3517 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003518 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003519 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003520 range->len, val))
3521 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003522 idx++;
3523 }
3524
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003525 return -EOPNOTSUPP;
3526}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003527EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003528
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003529/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003530int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003531 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003532{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003533 struct kvm_io_bus *bus;
3534 struct kvm_io_range range;
3535 int r;
3536
3537 range = (struct kvm_io_range) {
3538 .addr = addr,
3539 .len = len,
3540 };
3541
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003542 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3543 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003544 return r < 0 ? r : 0;
3545}
3546
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003547
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003548/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003549int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3550 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003551{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003552 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003553
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003554 bus = kvm->buses[bus_idx];
Amos Kong6ea34c92013-05-25 06:44:15 +08003555 /* exclude ioeventfd which is limited by maximum fd */
3556 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003557 return -ENOSPC;
3558
Jason Wangd3febdd2015-08-25 17:05:46 +08003559 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count + 1) *
Amos Konga13007162012-03-09 12:17:32 +08003560 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003561 if (!new_bus)
3562 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003563 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3564 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003565 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003566 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3567 synchronize_srcu_expedited(&kvm->srcu);
3568 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003569
3570 return 0;
3571}
3572
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003573/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003574int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3575 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003576{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003577 int i, r;
3578 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003579
Sasha Levincdfca7b2011-12-04 19:36:28 +02003580 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003581 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08003582 for (i = 0; i < bus->dev_count; i++)
3583 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003584 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003585 break;
3586 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003587
Amos Konga13007162012-03-09 12:17:32 +08003588 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003589 return r;
Amos Konga13007162012-03-09 12:17:32 +08003590
Jason Wangd3febdd2015-08-25 17:05:46 +08003591 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count - 1) *
Amos Konga13007162012-03-09 12:17:32 +08003592 sizeof(struct kvm_io_range)), GFP_KERNEL);
3593 if (!new_bus)
3594 return -ENOMEM;
3595
3596 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3597 new_bus->dev_count--;
3598 memcpy(new_bus->range + i, bus->range + i + 1,
3599 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003600
3601 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3602 synchronize_srcu_expedited(&kvm->srcu);
3603 kfree(bus);
3604 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003605}
3606
Andre Przywara8a39d002016-07-15 12:43:26 +01003607struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3608 gpa_t addr)
3609{
3610 struct kvm_io_bus *bus;
3611 int dev_idx, srcu_idx;
3612 struct kvm_io_device *iodev = NULL;
3613
3614 srcu_idx = srcu_read_lock(&kvm->srcu);
3615
3616 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
3617
3618 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
3619 if (dev_idx < 0)
3620 goto out_unlock;
3621
3622 iodev = bus->range[dev_idx].dev;
3623
3624out_unlock:
3625 srcu_read_unlock(&kvm->srcu, srcu_idx);
3626
3627 return iodev;
3628}
3629EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
3630
Janosch Frank536a6f82016-05-18 13:26:23 +02003631static int kvm_debugfs_open(struct inode *inode, struct file *file,
3632 int (*get)(void *, u64 *), int (*set)(void *, u64),
3633 const char *fmt)
3634{
3635 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3636 inode->i_private;
3637
3638 /* The debugfs files are a reference to the kvm struct which
3639 * is still valid when kvm_destroy_vm is called.
3640 * To avoid the race between open and the removal of the debugfs
3641 * directory we test against the users count.
3642 */
3643 if (!atomic_add_unless(&stat_data->kvm->users_count, 1, 0))
3644 return -ENOENT;
3645
3646 if (simple_attr_open(inode, file, get, set, fmt)) {
3647 kvm_put_kvm(stat_data->kvm);
3648 return -ENOMEM;
3649 }
3650
3651 return 0;
3652}
3653
3654static int kvm_debugfs_release(struct inode *inode, struct file *file)
3655{
3656 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3657 inode->i_private;
3658
3659 simple_attr_release(inode, file);
3660 kvm_put_kvm(stat_data->kvm);
3661
3662 return 0;
3663}
3664
3665static int vm_stat_get_per_vm(void *data, u64 *val)
3666{
3667 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3668
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003669 *val = *(ulong *)((void *)stat_data->kvm + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003670
3671 return 0;
3672}
3673
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003674static int vm_stat_clear_per_vm(void *data, u64 val)
3675{
3676 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3677
3678 if (val)
3679 return -EINVAL;
3680
3681 *(ulong *)((void *)stat_data->kvm + stat_data->offset) = 0;
3682
3683 return 0;
3684}
3685
Janosch Frank536a6f82016-05-18 13:26:23 +02003686static int vm_stat_get_per_vm_open(struct inode *inode, struct file *file)
3687{
3688 __simple_attr_check_format("%llu\n", 0ull);
3689 return kvm_debugfs_open(inode, file, vm_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003690 vm_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003691}
3692
3693static const struct file_operations vm_stat_get_per_vm_fops = {
3694 .owner = THIS_MODULE,
3695 .open = vm_stat_get_per_vm_open,
3696 .release = kvm_debugfs_release,
3697 .read = simple_attr_read,
3698 .write = simple_attr_write,
3699 .llseek = generic_file_llseek,
3700};
3701
3702static int vcpu_stat_get_per_vm(void *data, u64 *val)
3703{
3704 int i;
3705 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3706 struct kvm_vcpu *vcpu;
3707
3708 *val = 0;
3709
3710 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003711 *val += *(u64 *)((void *)vcpu + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003712
3713 return 0;
3714}
3715
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003716static int vcpu_stat_clear_per_vm(void *data, u64 val)
3717{
3718 int i;
3719 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3720 struct kvm_vcpu *vcpu;
3721
3722 if (val)
3723 return -EINVAL;
3724
3725 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
3726 *(u64 *)((void *)vcpu + stat_data->offset) = 0;
3727
3728 return 0;
3729}
3730
Janosch Frank536a6f82016-05-18 13:26:23 +02003731static int vcpu_stat_get_per_vm_open(struct inode *inode, struct file *file)
3732{
3733 __simple_attr_check_format("%llu\n", 0ull);
3734 return kvm_debugfs_open(inode, file, vcpu_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003735 vcpu_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003736}
3737
3738static const struct file_operations vcpu_stat_get_per_vm_fops = {
3739 .owner = THIS_MODULE,
3740 .open = vcpu_stat_get_per_vm_open,
3741 .release = kvm_debugfs_release,
3742 .read = simple_attr_read,
3743 .write = simple_attr_write,
3744 .llseek = generic_file_llseek,
3745};
3746
3747static const struct file_operations *stat_fops_per_vm[] = {
3748 [KVM_STAT_VCPU] = &vcpu_stat_get_per_vm_fops,
3749 [KVM_STAT_VM] = &vm_stat_get_per_vm_fops,
3750};
3751
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003752static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003753{
3754 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003755 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003756 struct kvm_stat_data stat_tmp = {.offset = offset};
3757 u64 tmp_val;
Avi Kivityba1389b2007-11-18 16:24:12 +02003758
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003759 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003760 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003761 list_for_each_entry(kvm, &vm_list, vm_list) {
3762 stat_tmp.kvm = kvm;
3763 vm_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3764 *val += tmp_val;
3765 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003766 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003767 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003768}
3769
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003770static int vm_stat_clear(void *_offset, u64 val)
3771{
3772 unsigned offset = (long)_offset;
3773 struct kvm *kvm;
3774 struct kvm_stat_data stat_tmp = {.offset = offset};
3775
3776 if (val)
3777 return -EINVAL;
3778
3779 spin_lock(&kvm_lock);
3780 list_for_each_entry(kvm, &vm_list, vm_list) {
3781 stat_tmp.kvm = kvm;
3782 vm_stat_clear_per_vm((void *)&stat_tmp, 0);
3783 }
3784 spin_unlock(&kvm_lock);
3785
3786 return 0;
3787}
3788
3789DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003790
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003791static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003792{
3793 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003794 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003795 struct kvm_stat_data stat_tmp = {.offset = offset};
3796 u64 tmp_val;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003797
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003798 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003799 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003800 list_for_each_entry(kvm, &vm_list, vm_list) {
3801 stat_tmp.kvm = kvm;
3802 vcpu_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3803 *val += tmp_val;
3804 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003805 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003806 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003807}
3808
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003809static int vcpu_stat_clear(void *_offset, u64 val)
3810{
3811 unsigned offset = (long)_offset;
3812 struct kvm *kvm;
3813 struct kvm_stat_data stat_tmp = {.offset = offset};
3814
3815 if (val)
3816 return -EINVAL;
3817
3818 spin_lock(&kvm_lock);
3819 list_for_each_entry(kvm, &vm_list, vm_list) {
3820 stat_tmp.kvm = kvm;
3821 vcpu_stat_clear_per_vm((void *)&stat_tmp, 0);
3822 }
3823 spin_unlock(&kvm_lock);
3824
3825 return 0;
3826}
3827
3828DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
3829 "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003830
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003831static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003832 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3833 [KVM_STAT_VM] = &vm_stat_fops,
3834};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003835
Hamo4f69b682011-12-15 14:23:16 +08003836static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003837{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003838 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003839 struct kvm_stats_debugfs_item *p;
3840
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003841 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003842 if (kvm_debugfs_dir == NULL)
3843 goto out;
3844
Janosch Frank536a6f82016-05-18 13:26:23 +02003845 kvm_debugfs_num_entries = 0;
3846 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003847 if (!debugfs_create_file(p->name, 0644, kvm_debugfs_dir,
Janosch Frank4bd33b52015-10-14 12:37:35 +02003848 (void *)(long)p->offset,
3849 stat_fops[p->kind]))
Hamo4f69b682011-12-15 14:23:16 +08003850 goto out_dir;
3851 }
3852
3853 return 0;
3854
3855out_dir:
3856 debugfs_remove_recursive(kvm_debugfs_dir);
3857out:
3858 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003859}
3860
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003861static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003862{
Alexander Graf10474ae2009-09-15 11:37:46 +02003863 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003864 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003865 return 0;
3866}
3867
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003868static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003869{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003870 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003871 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003872 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003873 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003874}
3875
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003876static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003877 .suspend = kvm_suspend,
3878 .resume = kvm_resume,
3879};
3880
Avi Kivity15ad7142007-07-11 18:17:21 +03003881static inline
3882struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3883{
3884 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3885}
3886
3887static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3888{
3889 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08003890
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303891 if (vcpu->preempted)
3892 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003893
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003894 kvm_arch_sched_in(vcpu, cpu);
3895
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003896 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003897}
3898
3899static void kvm_sched_out(struct preempt_notifier *pn,
3900 struct task_struct *next)
3901{
3902 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3903
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303904 if (current->state == TASK_RUNNING)
3905 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003906 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003907}
3908
Avi Kivity0ee75be2010-04-28 15:39:01 +03003909int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003910 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003911{
3912 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003913 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003914
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003915 r = kvm_arch_init(opaque);
3916 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003917 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003918
Asias He7dac16c2013-05-08 10:57:29 +08003919 /*
3920 * kvm_arch_init makes sure there's at most one caller
3921 * for architectures that support multiple implementations,
3922 * like intel and amd on x86.
Paolo Bonzini36343f62016-10-26 13:35:56 +02003923 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3924 * conflicts in case kvm is already setup for another implementation.
Asias He7dac16c2013-05-08 10:57:29 +08003925 */
Paolo Bonzini36343f62016-10-26 13:35:56 +02003926 r = kvm_irqfd_init();
3927 if (r)
3928 goto out_irqfd;
Asias He7dac16c2013-05-08 10:57:29 +08003929
Avi Kivity8437a6172009-06-06 14:52:35 -07003930 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303931 r = -ENOMEM;
3932 goto out_free_0;
3933 }
3934
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003935 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003936 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303937 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938
Yang, Sheng002c7f72007-07-31 14:23:01 +03003939 for_each_online_cpu(cpu) {
3940 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003941 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003942 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003943 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003944 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003945 }
3946
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003947 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003948 kvm_starting_cpu, kvm_dying_cpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08003949 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003950 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003951 register_reboot_notifier(&kvm_reboot_notifier);
3952
Rusty Russellc16f8622007-07-30 21:12:19 +10003953 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003954 if (!vcpu_align)
3955 vcpu_align = __alignof__(struct kvm_vcpu);
3956 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003957 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003958 if (!kvm_vcpu_cache) {
3959 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003960 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003961 }
3962
Gleb Natapovaf585b92010-10-14 11:22:46 +02003963 r = kvm_async_pf_init();
3964 if (r)
3965 goto out_free;
3966
Avi Kivity6aa8b732006-12-10 02:21:36 -08003967 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003968 kvm_vm_fops.owner = module;
3969 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003970
3971 r = misc_register(&kvm_dev);
3972 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003973 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003974 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003975 }
3976
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003977 register_syscore_ops(&kvm_syscore_ops);
3978
Avi Kivity15ad7142007-07-11 18:17:21 +03003979 kvm_preempt_ops.sched_in = kvm_sched_in;
3980 kvm_preempt_ops.sched_out = kvm_sched_out;
3981
Hamo4f69b682011-12-15 14:23:16 +08003982 r = kvm_init_debug();
3983 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003984 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08003985 goto out_undebugfs;
3986 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003987
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02003988 r = kvm_vfio_ops_init();
3989 WARN_ON(r);
3990
Avi Kivityc7addb92007-09-16 18:58:32 +02003991 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003992
Hamo4f69b682011-12-15 14:23:16 +08003993out_undebugfs:
3994 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08003995 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003996out_unreg:
3997 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003998out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003999 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004000out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004001 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004002 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004003out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08004004out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004005 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10304006out_free_0a:
4007 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004008out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004009 kvm_irqfd_exit();
Paolo Bonzini36343f62016-10-26 13:35:56 +02004010out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08004011 kvm_arch_exit();
4012out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004013 return r;
4014}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004015EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004016
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004017void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004018{
Janosch Frank4bd33b52015-10-14 12:37:35 +02004019 debugfs_remove_recursive(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004020 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10004021 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004022 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004023 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004024 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004025 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004026 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004027 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004028 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004029 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10304030 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08004031 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004032}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004033EXPORT_SYMBOL_GPL(kvm_exit);