blob: 67eb302a7240ac90fc4e07748e1ac4e6d53731cf [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Avi Kivity6aa8b732006-12-10 02:21:36 -08002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * This module enables machines with Intel VT-x extensions to run virtual
6 * machines without emulation or binary translation.
7 *
8 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -080010 *
11 * Authors:
12 * Avi Kivity <avi@qumranet.com>
13 * Yaniv Kamay <yaniv@qumranet.com>
Avi Kivity6aa8b732006-12-10 02:21:36 -080014 */
15
Andre Przywaraaf669ac2015-03-26 14:39:29 +000016#include <kvm/iodev.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080017
Avi Kivityedf88412007-12-16 11:02:48 +020018#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080019#include <linux/kvm.h>
20#include <linux/module.h>
21#include <linux/errno.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include <linux/percpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080023#include <linux/mm.h>
24#include <linux/miscdevice.h>
25#include <linux/vmalloc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080026#include <linux/reboot.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/debugfs.h>
28#include <linux/highmem.h>
29#include <linux/file.h>
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +010030#include <linux/syscore_ops.h>
Avi Kivity774c47f2007-02-12 00:54:47 -080031#include <linux/cpu.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010032#include <linux/sched/signal.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010033#include <linux/sched/mm.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010034#include <linux/sched/stat.h>
Avi Kivityd9e368d2007-06-07 19:18:30 +030035#include <linux/cpumask.h>
36#include <linux/smp.h>
Avi Kivityd6d28162007-06-28 08:38:16 -040037#include <linux/anon_inodes.h>
Avi Kivity04d2cc72007-09-10 18:10:54 +030038#include <linux/profile.h>
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050039#include <linux/kvm_para.h>
Izik Eidus6fc138d2007-10-09 19:20:39 +020040#include <linux/pagemap.h>
Anthony Liguori8d4e1282007-10-18 09:59:34 -050041#include <linux/mman.h>
Anthony Liguori35149e22008-04-02 14:46:56 -050042#include <linux/swap.h>
Sheng Yange56d5322009-03-12 21:45:39 +080043#include <linux/bitops.h>
Marcelo Tosatti547de292009-05-07 17:55:13 -030044#include <linux/spinlock.h>
Arnd Bergmann6ff58942009-10-22 14:19:27 +020045#include <linux/compat.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020046#include <linux/srcu.h>
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +010047#include <linux/hugetlb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Sasha Levin743eeb02011-07-27 16:00:48 +030049#include <linux/sort.h>
50#include <linux/bsearch.h>
Paolo Bonzinic011d232019-05-17 14:08:53 +020051#include <linux/io.h>
Wanpeng Li2eb06c32019-05-17 16:49:49 +080052#include <linux/lockdep.h>
Junaid Shahidc57c8042019-11-04 12:22:02 +010053#include <linux/kthread.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080054
Avi Kivitye4956062007-06-28 14:15:57 -040055#include <asm/processor.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;
Roman Storozhenko039c5d12017-06-27 12:51:18 +030075module_param(halt_poll_ns, uint, 0644);
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;
Roman Storozhenko039c5d12017-06-27 12:51:18 +030080module_param(halt_poll_ns_grow, uint, 0644);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110081EXPORT_SYMBOL_GPL(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +080082
Nir Weiner49113d32019-01-27 12:17:15 +020083/* The start value to grow halt_poll_ns from */
84unsigned int halt_poll_ns_grow_start = 10000; /* 10us */
85module_param(halt_poll_ns_grow_start, uint, 0644);
86EXPORT_SYMBOL_GPL(halt_poll_ns_grow_start);
87
Wanpeng Liaca6ff22015-09-03 22:07:38 +080088/* Default resets per-vcpu halt_poll_ns . */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110089unsigned int halt_poll_ns_shrink;
Roman Storozhenko039c5d12017-06-27 12:51:18 +030090module_param(halt_poll_ns_shrink, uint, 0644);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110091EXPORT_SYMBOL_GPL(halt_poll_ns_shrink);
Wanpeng Liaca6ff22015-09-03 22:07:38 +080092
Marcelo Tosattifa40a822009-06-04 15:08:24 -030093/*
94 * Ordering of locks:
95 *
Xiubo Lib7d409d2015-02-26 14:58:24 +080096 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030097 */
98
Junaid Shahid0d9ce162019-01-03 17:14:28 -080099DEFINE_MUTEX(kvm_lock);
Paolo Bonzini4a937f92013-09-10 12:58:35 +0200100static DEFINE_RAW_SPINLOCK(kvm_count_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800101LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -0800102
Rusty Russell7f59f492008-12-07 21:25:45 +1030103static cpumask_var_t cpus_hardware_enabled;
Xiubo Lif4fee932015-02-26 14:58:21 +0800104static int kvm_usage_count;
Alexander Graf10474ae2009-09-15 11:37:46 +0200105static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +0300106
Rusty Russellc16f8622007-07-30 21:12:19 +1000107struct kmem_cache *kvm_vcpu_cache;
108EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +0300109
Avi Kivity15ad7142007-07-11 18:17:21 +0300110static __read_mostly struct preempt_ops kvm_preempt_ops;
111
Hollis Blanchard76f7c872008-04-15 16:05:42 -0500112struct dentry *kvm_debugfs_dir;
Paul Mackerrase23a8082015-03-28 14:21:01 +1100113EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800114
Janosch Frank536a6f82016-05-18 13:26:23 +0200115static int kvm_debugfs_num_entries;
116static const struct file_operations *stat_fops_per_vm[];
117
Avi Kivitybccf2152007-02-21 18:04:26 +0200118static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
119 unsigned long arg);
Christian Borntraegerde8e5d72015-02-03 09:35:15 +0100120#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +0200121static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
122 unsigned long arg);
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +0100123#define KVM_COMPAT(c) .compat_ioctl = (c)
124#else
Marc Zyngier9cb09e72019-11-14 13:17:39 +0000125/*
126 * For architectures that don't implement a compat infrastructure,
127 * adopt a double line of defense:
128 * - Prevent a compat task from opening /dev/kvm
129 * - If the open has been done by a 64bit task, and the KVM fd
130 * passed to a compat task, let the ioctls fail.
131 */
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +0100132static long kvm_no_compat_ioctl(struct file *file, unsigned int ioctl,
133 unsigned long arg) { return -EINVAL; }
Marc Zyngierb9876e62019-11-13 16:05:23 +0000134
135static int kvm_no_compat_open(struct inode *inode, struct file *file)
136{
137 return is_compat_task() ? -ENODEV : 0;
138}
139#define KVM_COMPAT(c) .compat_ioctl = kvm_no_compat_ioctl, \
140 .open = kvm_no_compat_open
Alexander Graf1dda6062011-06-08 02:45:37 +0200141#endif
Alexander Graf10474ae2009-09-15 11:37:46 +0200142static int hardware_enable_all(void);
143static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +0200144
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200145static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
Stephen Hemminger79408762013-12-29 12:12:29 -0800146
Paolo Bonzinibc009e42015-05-26 12:43:41 +0200147static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot, gfn_t gfn);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200148
Andi Kleen52480132014-02-08 08:51:57 +0100149__visible bool kvm_rebooting;
Avi Kivityb7c41452010-12-02 17:52:50 +0200150EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300151
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300152static bool largepages_enabled = true;
153
Claudio Imbrenda286de8f2017-07-12 17:56:44 +0200154#define KVM_EVENT_CREATE_VM 0
155#define KVM_EVENT_DESTROY_VM 1
156static void kvm_uevent_notify_change(unsigned int type, struct kvm *kvm);
157static unsigned long long kvm_createvm_count;
158static unsigned long long kvm_active_vms;
159
Michal Hocko93065ac2018-08-21 21:52:33 -0700160__weak int kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
161 unsigned long start, unsigned long end, bool blockable)
Radim Krčmářb1394e72017-11-30 19:05:45 +0100162{
Michal Hocko93065ac2018-08-21 21:52:33 -0700163 return 0;
Radim Krčmářb1394e72017-11-30 19:05:45 +0100164}
165
Sean Christophersona78986a2019-11-11 14:12:27 -0800166bool kvm_is_zone_device_pfn(kvm_pfn_t pfn)
167{
168 /*
169 * The metadata used by is_zone_device_page() to determine whether or
170 * not a page is ZONE_DEVICE is guaranteed to be valid if and only if
171 * the device has been pinned, e.g. by get_user_pages(). WARN if the
172 * page_count() is zero to help detect bad usage of this helper.
173 */
174 if (!pfn_valid(pfn) || WARN_ON_ONCE(!page_count(pfn_to_page(pfn))))
175 return false;
176
177 return is_zone_device_page(pfn_to_page(pfn));
178}
179
Dan Williamsba049e92016-01-15 16:56:11 -0800180bool kvm_is_reserved_pfn(kvm_pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300181{
Sean Christophersona78986a2019-11-11 14:12:27 -0800182 /*
183 * ZONE_DEVICE pages currently set PG_reserved, but from a refcounting
184 * perspective they are "normal" pages, albeit with slightly different
185 * usage rules.
186 */
Andrea Arcangeli11feeb42013-07-25 03:04:38 +0200187 if (pfn_valid(pfn))
Sean Christophersona78986a2019-11-11 14:12:27 -0800188 return PageReserved(pfn_to_page(pfn)) &&
189 !kvm_is_zone_device_pfn(pfn);
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300190
191 return true;
192}
193
Avi Kivity6aa8b732006-12-10 02:21:36 -0800194/*
195 * Switches to specified vcpu, until a matching vcpu_put()
196 */
Christoffer Dallec7660c2017-12-04 21:35:23 +0100197void vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800198{
Christoffer Dallec7660c2017-12-04 21:35:23 +0100199 int cpu = get_cpu();
Avi Kivity15ad7142007-07-11 18:17:21 +0300200 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200201 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300202 put_cpu();
Avi Kivitybccf2152007-02-21 18:04:26 +0200203}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700204EXPORT_SYMBOL_GPL(vcpu_load);
Avi Kivitybccf2152007-02-21 18:04:26 +0200205
Carsten Otte313a3dc2007-10-11 19:16:52 +0200206void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800207{
Avi Kivity15ad7142007-07-11 18:17:21 +0300208 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200209 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300210 preempt_notifier_unregister(&vcpu->preempt_notifier);
211 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800212}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700213EXPORT_SYMBOL_GPL(vcpu_put);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800214
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200215/* TODO: merge with kvm_arch_vcpu_should_kick */
216static bool kvm_request_needs_ipi(struct kvm_vcpu *vcpu, unsigned req)
217{
218 int mode = kvm_vcpu_exiting_guest_mode(vcpu);
219
220 /*
221 * We need to wait for the VCPU to reenable interrupts and get out of
222 * READING_SHADOW_PAGE_TABLES mode.
223 */
224 if (req & KVM_REQUEST_WAIT)
225 return mode != OUTSIDE_GUEST_MODE;
226
227 /*
228 * Need to kick a running VCPU, but otherwise there is nothing to do.
229 */
230 return mode == IN_GUEST_MODE;
231}
232
Avi Kivityd9e368d2007-06-07 19:18:30 +0300233static void ack_flush(void *_completed)
234{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300235}
236
Paolo Bonzinib49defe2017-06-30 13:25:45 +0200237static inline bool kvm_kick_many_cpus(const struct cpumask *cpus, bool wait)
238{
239 if (unlikely(!cpus))
240 cpus = cpu_online_mask;
241
242 if (cpumask_empty(cpus))
243 return false;
244
245 smp_call_function_many(cpus, ack_flush, NULL, wait);
246 return true;
247}
248
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200249bool kvm_make_vcpus_request_mask(struct kvm *kvm, unsigned int req,
250 unsigned long *vcpu_bitmap, cpumask_var_t tmp)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300251{
Avi Kivity597a5f52008-07-20 14:24:22 +0300252 int i, cpu, me;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300253 struct kvm_vcpu *vcpu;
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200254 bool called;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030255
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800256 me = get_cpu();
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200257
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300258 kvm_for_each_vcpu(i, vcpu, kvm) {
Vitaly Kuznetsova8122972018-08-22 12:18:29 +0200259 if (vcpu_bitmap && !test_bit(i, vcpu_bitmap))
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200260 continue;
261
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800262 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300263 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800264
Radim Krčmář178f02f2017-04-26 22:32:26 +0200265 if (!(req & KVM_REQUEST_NO_WAKEUP) && kvm_vcpu_wake_up(vcpu))
266 continue;
Radim Krčmář6c6e8362017-04-26 22:32:23 +0200267
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200268 if (tmp != NULL && cpu != -1 && cpu != me &&
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200269 kvm_request_needs_ipi(vcpu, req))
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200270 __cpumask_set_cpu(cpu, tmp);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300271 }
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200272
273 called = kvm_kick_many_cpus(tmp, !!(req & KVM_REQUEST_WAIT));
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800274 put_cpu();
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200275
276 return called;
277}
278
279bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
280{
281 cpumask_var_t cpus;
282 bool called;
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200283
284 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
285
Vitaly Kuznetsova8122972018-08-22 12:18:29 +0200286 called = kvm_make_vcpus_request_mask(kvm, req, NULL, cpus);
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200287
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030288 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030289 return called;
290}
291
Mario Smarducha6d51012015-01-15 15:58:52 -0800292#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030293void kvm_flush_remote_tlbs(struct kvm *kvm)
294{
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800295 /*
296 * Read tlbs_dirty before setting KVM_REQ_TLB_FLUSH in
297 * kvm_make_all_cpus_request.
298 */
299 long dirty_count = smp_load_acquire(&kvm->tlbs_dirty);
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800300
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800301 /*
302 * We want to publish modifications to the page tables before reading
303 * mode. Pairs with a memory barrier in arch-specific code.
304 * - x86: smp_mb__after_srcu_read_unlock in vcpu_enter_guest
305 * and smp_mb in walk_shadow_page_lockless_begin/end.
306 * - powerpc: smp_mb in kvmppc_prepare_to_enter.
307 *
308 * There is already an smp_mb__after_atomic() before
309 * kvm_make_all_cpus_request() reads vcpu->mode. We reuse that
310 * barrier here.
311 */
Tianyu Lanb08660e2018-07-19 08:40:17 +0000312 if (!kvm_arch_flush_remote_tlb(kvm)
313 || kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030314 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800315 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300316}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530317EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800318#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300319
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500320void kvm_reload_remote_mmus(struct kvm *kvm)
321{
Tang Chen445b8232014-09-24 15:57:55 +0800322 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500323}
324
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000325int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
326{
327 struct page *page;
328 int r;
329
330 mutex_init(&vcpu->mutex);
331 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000332 vcpu->kvm = kvm;
333 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500334 vcpu->pid = NULL;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100335 init_swait_queue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200336 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000337
Feng Wubf9f6ac2015-09-18 22:29:55 +0800338 vcpu->pre_pcpu = -1;
339 INIT_LIST_HEAD(&vcpu->blocked_vcpu_list);
340
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000341 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
342 if (!page) {
343 r = -ENOMEM;
344 goto fail;
345 }
346 vcpu->run = page_address(page);
347
Raghavendra K T4c088492012-07-18 19:07:46 +0530348 kvm_vcpu_set_in_spin_loop(vcpu, false);
349 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530350 vcpu->preempted = false;
Wanpeng Lid73eb572019-07-18 19:39:06 +0800351 vcpu->ready = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530352
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800353 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000354 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800355 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000356 return 0;
357
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000358fail_free_run:
359 free_page((unsigned long)vcpu->run);
360fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000361 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000362}
363EXPORT_SYMBOL_GPL(kvm_vcpu_init);
364
365void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
366{
Christian Borntraeger0e4524a2017-07-06 14:44:28 +0200367 /*
368 * no need for rcu_read_lock as VCPU_RUN is the only place that
369 * will change the vcpu->pid pointer and on uninit all file
370 * descriptors are already gone.
371 */
372 put_pid(rcu_dereference_protected(vcpu->pid, 1));
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800373 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000374 free_page((unsigned long)vcpu->run);
375}
376EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
377
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200378#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
379static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
380{
381 return container_of(mn, struct kvm, mmu_notifier);
382}
383
Izik Eidus3da0dd42009-09-23 21:47:18 +0300384static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
385 struct mm_struct *mm,
386 unsigned long address,
387 pte_t pte)
388{
389 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200390 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300391
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200392 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300393 spin_lock(&kvm->mmu_lock);
394 kvm->mmu_notifier_seq++;
Lan Tianyu0cf853c2018-12-06 21:21:11 +0800395
396 if (kvm_set_spte_hva(kvm, address, pte))
397 kvm_flush_remote_tlbs(kvm);
398
Izik Eidus3da0dd42009-09-23 21:47:18 +0300399 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200400 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300401}
402
Michal Hocko93065ac2018-08-21 21:52:33 -0700403static int kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
Jérôme Glisse5d6527a2018-12-28 00:38:05 -0800404 const struct mmu_notifier_range *range)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200405{
406 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200407 int need_tlb_flush = 0, idx;
Michal Hocko93065ac2018-08-21 21:52:33 -0700408 int ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200409
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200410 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200411 spin_lock(&kvm->mmu_lock);
412 /*
413 * The count increase must become visible at unlock time as no
414 * spte can be established without taking the mmu_lock and
415 * count is also read inside the mmu_lock critical section.
416 */
417 kvm->mmu_notifier_count++;
Jérôme Glisse5d6527a2018-12-28 00:38:05 -0800418 need_tlb_flush = kvm_unmap_hva_range(kvm, range->start, range->end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800419 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200420 /* we've to flush the tlb before the pages can be freed */
421 if (need_tlb_flush)
422 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900423
424 spin_unlock(&kvm->mmu_lock);
Radim Krčmářb1394e72017-11-30 19:05:45 +0100425
Jérôme Glisse5d6527a2018-12-28 00:38:05 -0800426 ret = kvm_arch_mmu_notifier_invalidate_range(kvm, range->start,
Jérôme Glissedfcd6662019-05-13 17:20:38 -0700427 range->end,
428 mmu_notifier_range_blockable(range));
Radim Krčmářb1394e72017-11-30 19:05:45 +0100429
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900430 srcu_read_unlock(&kvm->srcu, idx);
Michal Hocko93065ac2018-08-21 21:52:33 -0700431
432 return ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200433}
434
435static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
Jérôme Glisse5d6527a2018-12-28 00:38:05 -0800436 const struct mmu_notifier_range *range)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200437{
438 struct kvm *kvm = mmu_notifier_to_kvm(mn);
439
440 spin_lock(&kvm->mmu_lock);
441 /*
442 * This sequence increase will notify the kvm page fault that
443 * the page that is going to be mapped in the spte could have
444 * been freed.
445 */
446 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000447 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200448 /*
449 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000450 * below count decrease, which is ensured by the smp_wmb above
451 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200452 */
453 kvm->mmu_notifier_count--;
454 spin_unlock(&kvm->mmu_lock);
455
456 BUG_ON(kvm->mmu_notifier_count < 0);
457}
458
459static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
460 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700461 unsigned long start,
462 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200463{
464 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200465 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200466
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200467 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200468 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200469
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700470 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200471 if (young)
472 kvm_flush_remote_tlbs(kvm);
473
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900474 spin_unlock(&kvm->mmu_lock);
475 srcu_read_unlock(&kvm->srcu, idx);
476
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200477 return young;
478}
479
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700480static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn,
481 struct mm_struct *mm,
482 unsigned long start,
483 unsigned long end)
484{
485 struct kvm *kvm = mmu_notifier_to_kvm(mn);
486 int young, idx;
487
488 idx = srcu_read_lock(&kvm->srcu);
489 spin_lock(&kvm->mmu_lock);
490 /*
491 * Even though we do not flush TLB, this will still adversely
492 * affect performance on pre-Haswell Intel EPT, where there is
493 * no EPT Access Bit to clear so that we have to tear down EPT
494 * tables instead. If we find this unacceptable, we can always
495 * add a parameter to kvm_age_hva so that it effectively doesn't
496 * do anything on clear_young.
497 *
498 * Also note that currently we never issue secondary TLB flushes
499 * from clear_young, leaving this job up to the regular system
500 * cadence. If we find this inaccurate, we might come up with a
501 * more sophisticated heuristic later.
502 */
503 young = kvm_age_hva(kvm, start, end);
504 spin_unlock(&kvm->mmu_lock);
505 srcu_read_unlock(&kvm->srcu, idx);
506
507 return young;
508}
509
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800510static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
511 struct mm_struct *mm,
512 unsigned long address)
513{
514 struct kvm *kvm = mmu_notifier_to_kvm(mn);
515 int young, idx;
516
517 idx = srcu_read_lock(&kvm->srcu);
518 spin_lock(&kvm->mmu_lock);
519 young = kvm_test_age_hva(kvm, address);
520 spin_unlock(&kvm->mmu_lock);
521 srcu_read_unlock(&kvm->srcu, idx);
522
523 return young;
524}
525
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100526static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
527 struct mm_struct *mm)
528{
529 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800530 int idx;
531
532 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300533 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800534 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100535}
536
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200537static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200538 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
539 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
540 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700541 .clear_young = kvm_mmu_notifier_clear_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800542 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300543 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100544 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200545};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200546
547static int kvm_init_mmu_notifier(struct kvm *kvm)
548{
549 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
550 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
551}
552
553#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
554
555static int kvm_init_mmu_notifier(struct kvm *kvm)
556{
557 return 0;
558}
559
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200560#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
561
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200562static struct kvm_memslots *kvm_alloc_memslots(void)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800563{
564 int i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200565 struct kvm_memslots *slots;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800566
Ben Gardonb12ce362019-02-11 11:02:49 -0800567 slots = kvzalloc(sizeof(struct kvm_memslots), GFP_KERNEL_ACCOUNT);
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200568 if (!slots)
569 return NULL;
570
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800571 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800572 slots->id_to_index[i] = slots->memslots[i].id = i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200573
574 return slots;
575}
576
577static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
578{
579 if (!memslot->dirty_bitmap)
580 return;
581
582 kvfree(memslot->dirty_bitmap);
583 memslot->dirty_bitmap = NULL;
584}
585
586/*
587 * Free any memory in @free but not in @dont.
588 */
589static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
590 struct kvm_memory_slot *dont)
591{
592 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
593 kvm_destroy_dirty_bitmap(free);
594
595 kvm_arch_free_memslot(kvm, free, dont);
596
597 free->npages = 0;
598}
599
600static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
601{
602 struct kvm_memory_slot *memslot;
603
604 if (!slots)
605 return;
606
607 kvm_for_each_memslot(memslot, slots)
608 kvm_free_memslot(kvm, memslot, NULL);
609
610 kvfree(slots);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800611}
612
Janosch Frank536a6f82016-05-18 13:26:23 +0200613static void kvm_destroy_vm_debugfs(struct kvm *kvm)
614{
615 int i;
616
617 if (!kvm->debugfs_dentry)
618 return;
619
620 debugfs_remove_recursive(kvm->debugfs_dentry);
621
Luiz Capitulino9d5a1dc2016-09-07 14:47:21 -0400622 if (kvm->debugfs_stat_data) {
623 for (i = 0; i < kvm_debugfs_num_entries; i++)
624 kfree(kvm->debugfs_stat_data[i]);
625 kfree(kvm->debugfs_stat_data);
626 }
Janosch Frank536a6f82016-05-18 13:26:23 +0200627}
628
629static int kvm_create_vm_debugfs(struct kvm *kvm, int fd)
630{
631 char dir_name[ITOA_MAX_LEN * 2];
632 struct kvm_stat_data *stat_data;
633 struct kvm_stats_debugfs_item *p;
634
635 if (!debugfs_initialized())
636 return 0;
637
638 snprintf(dir_name, sizeof(dir_name), "%d-%d", task_pid_nr(current), fd);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +0200639 kvm->debugfs_dentry = debugfs_create_dir(dir_name, kvm_debugfs_dir);
Janosch Frank536a6f82016-05-18 13:26:23 +0200640
641 kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries,
642 sizeof(*kvm->debugfs_stat_data),
Ben Gardonb12ce362019-02-11 11:02:49 -0800643 GFP_KERNEL_ACCOUNT);
Janosch Frank536a6f82016-05-18 13:26:23 +0200644 if (!kvm->debugfs_stat_data)
645 return -ENOMEM;
646
647 for (p = debugfs_entries; p->name; p++) {
Ben Gardonb12ce362019-02-11 11:02:49 -0800648 stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL_ACCOUNT);
Janosch Frank536a6f82016-05-18 13:26:23 +0200649 if (!stat_data)
650 return -ENOMEM;
651
652 stat_data->kvm = kvm;
653 stat_data->offset = p->offset;
Paolo Bonzini833b45d2019-09-30 18:48:44 +0200654 stat_data->mode = p->mode ? p->mode : 0644;
Janosch Frank536a6f82016-05-18 13:26:23 +0200655 kvm->debugfs_stat_data[p - debugfs_entries] = stat_data;
Paolo Bonzini833b45d2019-09-30 18:48:44 +0200656 debugfs_create_file(p->name, stat_data->mode, kvm->debugfs_dentry,
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +0200657 stat_data, stat_fops_per_vm[p->kind]);
Janosch Frank536a6f82016-05-18 13:26:23 +0200658 }
659 return 0;
660}
661
Junaid Shahid1aa9b952019-11-04 20:26:00 +0100662/*
663 * Called after the VM is otherwise initialized, but just before adding it to
664 * the vm_list.
665 */
666int __weak kvm_arch_post_init_vm(struct kvm *kvm)
667{
668 return 0;
669}
670
671/*
672 * Called just after removing the VM from the vm_list, but before doing any
673 * other destruction.
674 */
675void __weak kvm_arch_pre_destroy_vm(struct kvm *kvm)
676{
677}
678
Carsten Ottee08b9632012-01-04 10:25:20 +0100679static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100681 struct kvm *kvm = kvm_arch_alloc_vm();
Jim Mattson91219232019-10-24 16:03:26 -0700682 int r = -ENOMEM;
683 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100685 if (!kvm)
686 return ERR_PTR(-ENOMEM);
687
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100688 spin_lock_init(&kvm->mmu_lock);
Vegard Nossumf1f10072017-02-27 14:30:07 -0800689 mmgrab(current->mm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100690 kvm->mm = current->mm;
691 kvm_eventfd_init(kvm);
692 mutex_init(&kvm->lock);
693 mutex_init(&kvm->irq_lock);
694 mutex_init(&kvm->slots_lock);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100695 INIT_LIST_HEAD(&kvm->devices);
696
Jim Mattson91219232019-10-24 16:03:26 -0700697 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
698
Paolo Bonzini8a441192019-11-04 12:16:49 +0100699 if (init_srcu_struct(&kvm->srcu))
700 goto out_err_no_srcu;
701 if (init_srcu_struct(&kvm->irq_srcu))
702 goto out_err_no_irq_srcu;
703
Paolo Bonzinie2d3fca2019-11-04 13:23:53 +0100704 refcount_set(&kvm->users_count, 1);
Jim Mattson91219232019-10-24 16:03:26 -0700705 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
706 struct kvm_memslots *slots = kvm_alloc_memslots();
707
708 if (!slots)
Jim Mattsona97b0e72019-10-25 13:34:58 +0200709 goto out_err_no_arch_destroy_vm;
Jim Mattson91219232019-10-24 16:03:26 -0700710 /* Generations must be different for each address space. */
711 slots->generation = i;
712 rcu_assign_pointer(kvm->memslots[i], slots);
713 }
714
715 for (i = 0; i < KVM_NR_BUSES; i++) {
716 rcu_assign_pointer(kvm->buses[i],
717 kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL_ACCOUNT));
718 if (!kvm->buses[i])
Jim Mattsona97b0e72019-10-25 13:34:58 +0200719 goto out_err_no_arch_destroy_vm;
Jim Mattson91219232019-10-24 16:03:26 -0700720 }
721
Carsten Ottee08b9632012-01-04 10:25:20 +0100722 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100723 if (r)
Jim Mattsona97b0e72019-10-25 13:34:58 +0200724 goto out_err_no_arch_destroy_vm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200725
726 r = hardware_enable_all();
727 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100728 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200729
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200730#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300731 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200732#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800733
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700734 r = kvm_init_mmu_notifier(kvm);
735 if (r)
Junaid Shahid1aa9b952019-11-04 20:26:00 +0100736 goto out_err_no_mmu_notifier;
737
738 r = kvm_arch_post_init_vm(kvm);
739 if (r)
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700740 goto out_err;
741
Junaid Shahid0d9ce162019-01-03 17:14:28 -0800742 mutex_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000743 list_add(&kvm->vm_list, &vm_list);
Junaid Shahid0d9ce162019-01-03 17:14:28 -0800744 mutex_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100745
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200746 preempt_notifier_inc();
747
Avi Kivityf17abe92007-02-21 19:28:04 +0200748 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200749
750out_err:
Junaid Shahid1aa9b952019-11-04 20:26:00 +0100751#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
752 if (kvm->mmu_notifier.ops)
753 mmu_notifier_unregister(&kvm->mmu_notifier, current->mm);
754#endif
755out_err_no_mmu_notifier:
Alexander Graf10474ae2009-09-15 11:37:46 +0200756 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100757out_err_no_disable:
Jim Mattsona97b0e72019-10-25 13:34:58 +0200758 kvm_arch_destroy_vm(kvm);
Jim Mattsona97b0e72019-10-25 13:34:58 +0200759out_err_no_arch_destroy_vm:
Paolo Bonzinie2d3fca2019-11-04 13:23:53 +0100760 WARN_ON_ONCE(!refcount_dec_and_test(&kvm->users_count));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200761 for (i = 0; i < KVM_NR_BUSES; i++)
Paolo Bonzini3898da92017-08-02 17:55:54 +0200762 kfree(kvm_get_bus(kvm, i));
Paolo Bonzinif481b062015-05-17 17:30:37 +0200763 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
Paolo Bonzini3898da92017-08-02 17:55:54 +0200764 kvm_free_memslots(kvm, __kvm_memslots(kvm, i));
Paolo Bonzini8a441192019-11-04 12:16:49 +0100765 cleanup_srcu_struct(&kvm->irq_srcu);
766out_err_no_irq_srcu:
767 cleanup_srcu_struct(&kvm->srcu);
768out_err_no_srcu:
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100769 kvm_arch_free_vm(kvm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100770 mmdrop(current->mm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200771 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200772}
773
Scott Wood07f0a7b2013-04-25 14:11:23 +0000774static void kvm_destroy_devices(struct kvm *kvm)
775{
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800776 struct kvm_device *dev, *tmp;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000777
Christoffer Dalla28ebea2016-08-09 19:13:01 +0200778 /*
779 * We do not need to take the kvm->lock here, because nobody else
780 * has a reference to the struct kvm at this point and therefore
781 * cannot access the devices list anyhow.
782 */
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800783 list_for_each_entry_safe(dev, tmp, &kvm->devices, vm_node) {
784 list_del(&dev->vm_node);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000785 dev->ops->destroy(dev);
786 }
787}
788
Avi Kivityf17abe92007-02-21 19:28:04 +0200789static void kvm_destroy_vm(struct kvm *kvm)
790{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200791 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200792 struct mm_struct *mm = kvm->mm;
793
Claudio Imbrenda286de8f2017-07-12 17:56:44 +0200794 kvm_uevent_notify_change(KVM_EVENT_DESTROY_VM, kvm);
Janosch Frank536a6f82016-05-18 13:26:23 +0200795 kvm_destroy_vm_debugfs(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800796 kvm_arch_sync_events(kvm);
Junaid Shahid0d9ce162019-01-03 17:14:28 -0800797 mutex_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800798 list_del(&kvm->vm_list);
Junaid Shahid0d9ce162019-01-03 17:14:28 -0800799 mutex_unlock(&kvm_lock);
Junaid Shahid1aa9b952019-11-04 20:26:00 +0100800 kvm_arch_pre_destroy_vm(kvm);
801
Avi Kivity399ec802008-11-19 13:58:46 +0200802 kvm_free_irq_routing(kvm);
Peter Xudf630b82017-03-15 16:01:17 +0800803 for (i = 0; i < KVM_NR_BUSES; i++) {
Paolo Bonzini3898da92017-08-02 17:55:54 +0200804 struct kvm_io_bus *bus = kvm_get_bus(kvm, i);
Christian Borntraeger4a12f952017-07-07 10:51:38 +0200805
Christian Borntraeger4a12f952017-07-07 10:51:38 +0200806 if (bus)
807 kvm_io_bus_destroy(bus);
Peter Xudf630b82017-03-15 16:01:17 +0800808 kvm->buses[i] = NULL;
809 }
Avi Kivity980da6c2009-12-20 15:13:43 +0200810 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200811#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
812 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200813#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300814 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200815#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800816 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000817 kvm_destroy_devices(kvm);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200818 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
Paolo Bonzini3898da92017-08-02 17:55:54 +0200819 kvm_free_memslots(kvm, __kvm_memslots(kvm, i));
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200820 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100821 cleanup_srcu_struct(&kvm->srcu);
822 kvm_arch_free_vm(kvm);
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200823 preempt_notifier_dec();
Alexander Graf10474ae2009-09-15 11:37:46 +0200824 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200825 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200826}
827
Izik Eidusd39f13b2008-03-30 16:01:25 +0300828void kvm_get_kvm(struct kvm *kvm)
829{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200830 refcount_inc(&kvm->users_count);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300831}
832EXPORT_SYMBOL_GPL(kvm_get_kvm);
833
834void kvm_put_kvm(struct kvm *kvm)
835{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200836 if (refcount_dec_and_test(&kvm->users_count))
Izik Eidusd39f13b2008-03-30 16:01:25 +0300837 kvm_destroy_vm(kvm);
838}
839EXPORT_SYMBOL_GPL(kvm_put_kvm);
840
Sean Christopherson149487b2019-10-21 15:58:42 -0700841/*
842 * Used to put a reference that was taken on behalf of an object associated
843 * with a user-visible file descriptor, e.g. a vcpu or device, if installation
844 * of the new file descriptor fails and the reference cannot be transferred to
845 * its final owner. In such cases, the caller is still actively using @kvm and
846 * will fail miserably if the refcount unexpectedly hits zero.
847 */
848void kvm_put_kvm_no_destroy(struct kvm *kvm)
849{
850 WARN_ON(refcount_dec_and_test(&kvm->users_count));
851}
852EXPORT_SYMBOL_GPL(kvm_put_kvm_no_destroy);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300853
Avi Kivityf17abe92007-02-21 19:28:04 +0200854static int kvm_vm_release(struct inode *inode, struct file *filp)
855{
856 struct kvm *kvm = filp->private_data;
857
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400858 kvm_irqfd_release(kvm);
859
Izik Eidusd39f13b2008-03-30 16:01:25 +0300860 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800861 return 0;
862}
863
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900864/*
865 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900866 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900867 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900868static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
869{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900870 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900871
Ben Gardonb12ce362019-02-11 11:02:49 -0800872 memslot->dirty_bitmap = kvzalloc(dirty_bytes, GFP_KERNEL_ACCOUNT);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900873 if (!memslot->dirty_bitmap)
874 return -ENOMEM;
875
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900876 return 0;
877}
878
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800879/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000880 * Insert memslot and re-sort memslots based on their GFN,
881 * so binary search could be used to lookup GFN.
882 * Sorting algorithm takes advantage of having initially
883 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800884 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100885static void update_memslots(struct kvm_memslots *slots,
Wei Yang31fc4f92018-08-22 21:57:11 +0800886 struct kvm_memory_slot *new,
887 enum kvm_mr_change change)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800888{
Paolo Bonzini85931762014-11-14 10:22:07 +0100889 int id = new->id;
890 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000891 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800892
Paolo Bonzini85931762014-11-14 10:22:07 +0100893 WARN_ON(mslots[i].id != id);
Wei Yang31fc4f92018-08-22 21:57:11 +0800894 switch (change) {
895 case KVM_MR_CREATE:
896 slots->used_slots++;
897 WARN_ON(mslots[i].npages || !new->npages);
898 break;
899 case KVM_MR_DELETE:
900 slots->used_slots--;
901 WARN_ON(new->npages || !mslots[i].npages);
902 break;
903 default:
904 break;
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000905 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000906
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000907 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000908 new->base_gfn <= mslots[i + 1].base_gfn) {
909 if (!mslots[i + 1].npages)
910 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000911 mslots[i] = mslots[i + 1];
912 slots->id_to_index[mslots[i].id] = i;
913 i++;
914 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100915
916 /*
917 * The ">=" is needed when creating a slot with base_gfn == 0,
918 * so that it moves before all those with base_gfn == npages == 0.
919 *
920 * On the other hand, if new->npages is zero, the above loop has
921 * already left i pointing to the beginning of the empty part of
922 * mslots, and the ">=" would move the hole backwards in this
923 * case---which is wrong. So skip the loop when deleting a slot.
924 */
925 if (new->npages) {
926 while (i > 0 &&
927 new->base_gfn >= mslots[i - 1].base_gfn) {
928 mslots[i] = mslots[i - 1];
929 slots->id_to_index[mslots[i].id] = i;
930 i--;
931 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100932 } else
933 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800934
Paolo Bonzini85931762014-11-14 10:22:07 +0100935 mslots[i] = *new;
936 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800937}
938
Paolo Bonzini09170a42015-05-18 13:59:39 +0200939static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800940{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800941 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
942
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200943#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800944 valid_flags |= KVM_MEM_READONLY;
945#endif
946
947 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800948 return -EINVAL;
949
950 return 0;
951}
952
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200953static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzinif481b062015-05-17 17:30:37 +0200954 int as_id, struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200955{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200956 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
Sean Christopherson361209e2019-02-05 13:01:14 -0800957 u64 gen = old_memslots->generation;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200958
Sean Christopherson361209e2019-02-05 13:01:14 -0800959 WARN_ON(gen & KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS);
960 slots->generation = gen | KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS;
David Matlackee3d1572014-08-18 15:46:06 -0700961
Paolo Bonzinif481b062015-05-17 17:30:37 +0200962 rcu_assign_pointer(kvm->memslots[as_id], slots);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200963 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900964
David Matlackee3d1572014-08-18 15:46:06 -0700965 /*
Sean Christopherson361209e2019-02-05 13:01:14 -0800966 * Increment the new memslot generation a second time, dropping the
967 * update in-progress flag and incrementing then generation based on
968 * the number of address spaces. This provides a unique and easily
969 * identifiable generation number while the memslots are in flux.
970 */
971 gen = slots->generation & ~KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS;
972
973 /*
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800974 * Generations must be unique even across address spaces. We do not need
975 * a global counter for that, instead the generation space is evenly split
976 * across address spaces. For example, with two address spaces, address
Sean Christopherson164bf7e2019-02-05 13:01:18 -0800977 * space 0 will use generations 0, 2, 4, ... while address space 1 will
978 * use generations 1, 3, 5, ...
David Matlackee3d1572014-08-18 15:46:06 -0700979 */
Sean Christopherson164bf7e2019-02-05 13:01:18 -0800980 gen += KVM_ADDRESS_SPACE_NUM;
David Matlackee3d1572014-08-18 15:46:06 -0700981
Sean Christopherson15248252019-02-05 12:54:17 -0800982 kvm_arch_memslots_updated(kvm, gen);
983
984 slots->generation = gen;
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900985
986 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200987}
988
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990 * Allocate some memory and give it an address in the guest physical address
991 * space.
992 *
993 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800994 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100995 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800997int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200998 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999{
Avi Kivity8234b222010-12-27 12:08:45 +02001000 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +02001002 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +09001003 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001005 struct kvm_memslots *slots = NULL, *old_memslots;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001006 int as_id, id;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001007 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008
Xiao Guangronga50d64d2012-08-21 10:58:13 +08001009 r = check_memory_region_flags(mem);
1010 if (r)
1011 goto out;
1012
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001014 as_id = mem->slot >> 16;
1015 id = (u16)mem->slot;
1016
Avi Kivity6aa8b732006-12-10 02:21:36 -08001017 /* General sanity checks */
1018 if (mem->memory_size & (PAGE_SIZE - 1))
1019 goto out;
1020 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
1021 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +09001022 /* We can read the guest memory with __xxx_user() later on. */
Paolo Bonzinif481b062015-05-17 17:30:37 +02001023 if ((id < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +09001024 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Linus Torvalds96d4f262019-01-03 18:57:57 -08001025 !access_ok((void __user *)(unsigned long)mem->userspace_addr,
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +02001026 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -06001027 goto out;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001028 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029 goto out;
1030 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
1031 goto out;
1032
Paolo Bonzinif481b062015-05-17 17:30:37 +02001033 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
1035 npages = mem->memory_size >> PAGE_SHIFT;
1036
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +09001037 if (npages > KVM_MEM_MAX_NR_PAGES)
1038 goto out;
1039
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +09001040 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001041
Paolo Bonzinif481b062015-05-17 17:30:37 +02001042 new.id = id;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043 new.base_gfn = base_gfn;
1044 new.npages = npages;
1045 new.flags = mem->flags;
1046
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001047 if (npages) {
1048 if (!old.npages)
1049 change = KVM_MR_CREATE;
1050 else { /* Modify an existing slot. */
1051 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +09001052 (npages != old.npages) ||
1053 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001054 goto out;
1055
1056 if (base_gfn != old.base_gfn)
1057 change = KVM_MR_MOVE;
1058 else if (new.flags != old.flags)
1059 change = KVM_MR_FLAGS_ONLY;
1060 else { /* Nothing to change. */
1061 r = 0;
1062 goto out;
1063 }
1064 }
Paolo Bonzini09170a42015-05-18 13:59:39 +02001065 } else {
1066 if (!old.npages)
1067 goto out;
1068
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001069 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001070 new.base_gfn = 0;
1071 new.flags = 0;
1072 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001074 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +09001075 /* Check for overlaps */
1076 r = -EEXIST;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001077 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
Wanpeng Lib28676b2018-02-13 15:36:00 +01001078 if (slot->id == id)
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +09001079 continue;
1080 if (!((base_gfn + npages <= slot->base_gfn) ||
1081 (base_gfn >= slot->base_gfn + slot->npages)))
1082 goto out;
1083 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001085
Avi Kivity6aa8b732006-12-10 02:21:36 -08001086 /* Free page dirty bitmap if unneeded */
1087 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +00001088 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001089
1090 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001091 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +09001092 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001093
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301094 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001095 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001096 }
Joerg Roedelec04b262009-06-19 15:16:23 +02001097
Avi Kivity6aa8b732006-12-10 02:21:36 -08001098 /* Allocate page dirty bitmap if needed */
1099 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +09001100 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001101 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001102 }
1103
Ben Gardonb12ce362019-02-11 11:02:49 -08001104 slots = kvzalloc(sizeof(struct kvm_memslots), GFP_KERNEL_ACCOUNT);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001105 if (!slots)
1106 goto out_free;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001107 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001108
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001109 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Paolo Bonzinif481b062015-05-17 17:30:37 +02001110 slot = id_to_memslot(slots, id);
Xiao Guangrong28a37542011-11-24 19:04:35 +08001111 slot->flags |= KVM_MEMSLOT_INVALID;
1112
Paolo Bonzinif481b062015-05-17 17:30:37 +02001113 old_memslots = install_new_memslots(kvm, as_id, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001114
Marcelo Tosatti12d6e752012-08-24 15:54:58 -03001115 /* From this point no new shadow pages pointing to a deleted,
1116 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001117 *
1118 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +08001119 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
1120 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001121 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03001122 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001123
1124 /*
1125 * We can re-use the old_memslots from above, the only difference
1126 * from the currently installed memslots is the invalid flag. This
1127 * will get overwritten by update_memslots anyway.
1128 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001129 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001130 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001131
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09001132 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001133 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001134 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001135
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001136 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001137 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001138 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001139 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001140 }
1141
Wei Yang31fc4f92018-08-22 21:57:11 +08001142 update_memslots(slots, &new, change);
Paolo Bonzinif481b062015-05-17 17:30:37 +02001143 old_memslots = install_new_memslots(kvm, as_id, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001144
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001145 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08001146
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001147 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +00001148 kvfree(old_memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001149 return 0;
1150
Alex Williamsone40f1932012-12-10 10:32:57 -07001151out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +00001152 kvfree(slots);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001153out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001154 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001155out:
1156 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +02001157}
Sheng Yangf78e0e22007-10-29 09:40:42 +08001158EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
1159
1160int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001161 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001162{
1163 int r;
1164
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001165 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001166 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001167 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001168 return r;
1169}
Izik Eidus210c7c42007-10-24 23:52:57 +02001170EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1171
Stephen Hemminger79408762013-12-29 12:12:29 -08001172static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1173 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +02001174{
Paolo Bonzinif481b062015-05-17 17:30:37 +02001175 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001176 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001177
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001178 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001179}
1180
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001181int kvm_get_dirty_log(struct kvm *kvm,
1182 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001183{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001184 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001185 struct kvm_memory_slot *memslot;
Markus Elfring843574a2017-01-22 17:41:07 +01001186 int i, as_id, id;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001187 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001188 unsigned long any = 0;
1189
Paolo Bonzinif481b062015-05-17 17:30:37 +02001190 as_id = log->slot >> 16;
1191 id = (u16)log->slot;
1192 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring843574a2017-01-22 17:41:07 +01001193 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001194
Paolo Bonzinif481b062015-05-17 17:30:37 +02001195 slots = __kvm_memslots(kvm, as_id);
1196 memslot = id_to_memslot(slots, id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001197 if (!memslot->dirty_bitmap)
Markus Elfring843574a2017-01-22 17:41:07 +01001198 return -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001199
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001200 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001201
Uri Lublincd1a4a92007-02-22 16:43:09 +02001202 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001203 any = memslot->dirty_bitmap[i];
1204
Avi Kivity6aa8b732006-12-10 02:21:36 -08001205 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
Markus Elfring843574a2017-01-22 17:41:07 +01001206 return -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001207
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001208 if (any)
1209 *is_dirty = 1;
Markus Elfring843574a2017-01-22 17:41:07 +01001210 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001211}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301212EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001213
Mario Smarduchba0513b2015-01-15 15:58:53 -08001214#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1215/**
Jiang Biaob8b00222019-04-23 19:40:30 +08001216 * kvm_get_dirty_log_protect - get a snapshot of dirty pages
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001217 * and reenable dirty page tracking for the corresponding pages.
Mario Smarduchba0513b2015-01-15 15:58:53 -08001218 * @kvm: pointer to kvm instance
1219 * @log: slot id and address to which we copy the log
Jiang Biaob8b00222019-04-23 19:40:30 +08001220 * @flush: true if TLB flush is needed by caller
Mario Smarduchba0513b2015-01-15 15:58:53 -08001221 *
1222 * We need to keep it in mind that VCPU threads can write to the bitmap
1223 * concurrently. So, to avoid losing track of dirty pages we keep the
1224 * following order:
1225 *
1226 * 1. Take a snapshot of the bit and clear it if needed.
1227 * 2. Write protect the corresponding page.
1228 * 3. Copy the snapshot to the userspace.
1229 * 4. Upon return caller flushes TLB's if needed.
1230 *
1231 * Between 2 and 4, the guest may write to the page using the remaining TLB
1232 * entry. This is not a problem because the page is reported dirty using
1233 * the snapshot taken before and step 4 ensures that writes done after
1234 * exiting to userspace will be logged for the next call.
1235 *
1236 */
1237int kvm_get_dirty_log_protect(struct kvm *kvm,
Paolo Bonzini8fe65a82018-10-23 02:18:42 +02001238 struct kvm_dirty_log *log, bool *flush)
Mario Smarduchba0513b2015-01-15 15:58:53 -08001239{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001240 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001241 struct kvm_memory_slot *memslot;
Markus Elfring58d6db32017-01-22 17:30:16 +01001242 int i, as_id, id;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001243 unsigned long n;
1244 unsigned long *dirty_bitmap;
1245 unsigned long *dirty_bitmap_buffer;
1246
Paolo Bonzinif481b062015-05-17 17:30:37 +02001247 as_id = log->slot >> 16;
1248 id = (u16)log->slot;
1249 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring58d6db32017-01-22 17:30:16 +01001250 return -EINVAL;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001251
Paolo Bonzinif481b062015-05-17 17:30:37 +02001252 slots = __kvm_memslots(kvm, as_id);
1253 memslot = id_to_memslot(slots, id);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001254
1255 dirty_bitmap = memslot->dirty_bitmap;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001256 if (!dirty_bitmap)
Markus Elfring58d6db32017-01-22 17:30:16 +01001257 return -ENOENT;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001258
1259 n = kvm_dirty_bitmap_bytes(memslot);
Paolo Bonzini8fe65a82018-10-23 02:18:42 +02001260 *flush = false;
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001261 if (kvm->manual_dirty_log_protect) {
1262 /*
1263 * Unlike kvm_get_dirty_log, we always return false in *flush,
1264 * because no flush is needed until KVM_CLEAR_DIRTY_LOG. There
1265 * is some code duplication between this function and
1266 * kvm_get_dirty_log, but hopefully all architecture
1267 * transition to kvm_get_dirty_log_protect and kvm_get_dirty_log
1268 * can be eliminated.
1269 */
1270 dirty_bitmap_buffer = dirty_bitmap;
1271 } else {
1272 dirty_bitmap_buffer = kvm_second_dirty_bitmap(memslot);
1273 memset(dirty_bitmap_buffer, 0, n);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001274
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001275 spin_lock(&kvm->mmu_lock);
1276 for (i = 0; i < n / sizeof(long); i++) {
1277 unsigned long mask;
1278 gfn_t offset;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001279
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001280 if (!dirty_bitmap[i])
1281 continue;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001282
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001283 *flush = true;
1284 mask = xchg(&dirty_bitmap[i], 0);
1285 dirty_bitmap_buffer[i] = mask;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001286
Lan Tianyua67794c2019-02-02 17:20:27 +08001287 offset = i * BITS_PER_LONG;
1288 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1289 offset, mask);
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001290 }
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001291 spin_unlock(&kvm->mmu_lock);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001292 }
1293
Mario Smarduchba0513b2015-01-15 15:58:53 -08001294 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
Markus Elfring58d6db32017-01-22 17:30:16 +01001295 return -EFAULT;
1296 return 0;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001297}
1298EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001299
1300/**
1301 * kvm_clear_dirty_log_protect - clear dirty bits in the bitmap
1302 * and reenable dirty page tracking for the corresponding pages.
1303 * @kvm: pointer to kvm instance
1304 * @log: slot id and address from which to fetch the bitmap of dirty pages
Jiang Biaob8b00222019-04-23 19:40:30 +08001305 * @flush: true if TLB flush is needed by caller
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001306 */
1307int kvm_clear_dirty_log_protect(struct kvm *kvm,
1308 struct kvm_clear_dirty_log *log, bool *flush)
1309{
1310 struct kvm_memslots *slots;
1311 struct kvm_memory_slot *memslot;
Tomas Bortoli98938aa2019-01-02 18:29:37 +01001312 int as_id, id;
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001313 gfn_t offset;
Tomas Bortoli98938aa2019-01-02 18:29:37 +01001314 unsigned long i, n;
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001315 unsigned long *dirty_bitmap;
1316 unsigned long *dirty_bitmap_buffer;
1317
1318 as_id = log->slot >> 16;
1319 id = (u16)log->slot;
1320 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
1321 return -EINVAL;
1322
Paolo Bonzini76d58e02019-04-17 15:28:44 +02001323 if (log->first_page & 63)
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001324 return -EINVAL;
1325
1326 slots = __kvm_memslots(kvm, as_id);
1327 memslot = id_to_memslot(slots, id);
1328
1329 dirty_bitmap = memslot->dirty_bitmap;
1330 if (!dirty_bitmap)
1331 return -ENOENT;
1332
Peter Xu4ddc9202019-05-08 17:15:45 +08001333 n = ALIGN(log->num_pages, BITS_PER_LONG) / 8;
Tomas Bortoli98938aa2019-01-02 18:29:37 +01001334
1335 if (log->first_page > memslot->npages ||
Paolo Bonzini76d58e02019-04-17 15:28:44 +02001336 log->num_pages > memslot->npages - log->first_page ||
1337 (log->num_pages < memslot->npages - log->first_page && (log->num_pages & 63)))
1338 return -EINVAL;
Tomas Bortoli98938aa2019-01-02 18:29:37 +01001339
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001340 *flush = false;
1341 dirty_bitmap_buffer = kvm_second_dirty_bitmap(memslot);
1342 if (copy_from_user(dirty_bitmap_buffer, log->dirty_bitmap, n))
1343 return -EFAULT;
1344
1345 spin_lock(&kvm->mmu_lock);
Peter Xu53eac7a2019-05-08 17:15:46 +08001346 for (offset = log->first_page, i = offset / BITS_PER_LONG,
1347 n = DIV_ROUND_UP(log->num_pages, BITS_PER_LONG); n--;
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001348 i++, offset += BITS_PER_LONG) {
1349 unsigned long mask = *dirty_bitmap_buffer++;
1350 atomic_long_t *p = (atomic_long_t *) &dirty_bitmap[i];
1351 if (!mask)
1352 continue;
1353
1354 mask &= atomic_long_fetch_andnot(mask, p);
1355
1356 /*
1357 * mask contains the bits that really have been cleared. This
1358 * never includes any bits beyond the length of the memslot (if
1359 * the length is not aligned to 64 pages), therefore it is not
1360 * a problem if userspace sets them in log->dirty_bitmap.
1361 */
1362 if (mask) {
1363 *flush = true;
1364 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1365 offset, mask);
1366 }
1367 }
1368 spin_unlock(&kvm->mmu_lock);
1369
1370 return 0;
1371}
1372EXPORT_SYMBOL_GPL(kvm_clear_dirty_log_protect);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001373#endif
1374
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001375bool kvm_largepages_enabled(void)
1376{
1377 return largepages_enabled;
1378}
1379
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001380void kvm_disable_largepages(void)
1381{
1382 largepages_enabled = false;
1383}
1384EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1385
Gleb Natapov49c77542010-10-18 15:22:23 +02001386struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1387{
1388 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1389}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001390EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001391
Paolo Bonzini8e734852015-05-17 13:58:53 +02001392struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1393{
1394 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1395}
1396
Yaowei Bai33e94152015-11-14 11:21:06 +08001397bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001398{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001399 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001400
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001401 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001402 memslot->flags & KVM_MEMSLOT_INVALID)
Yaowei Bai33e94152015-11-14 11:21:06 +08001403 return false;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001404
Yaowei Bai33e94152015-11-14 11:21:06 +08001405 return true;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001406}
1407EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1408
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001409unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1410{
1411 struct vm_area_struct *vma;
1412 unsigned long addr, size;
1413
1414 size = PAGE_SIZE;
1415
1416 addr = gfn_to_hva(kvm, gfn);
1417 if (kvm_is_error_hva(addr))
1418 return PAGE_SIZE;
1419
1420 down_read(&current->mm->mmap_sem);
1421 vma = find_vma(current->mm, addr);
1422 if (!vma)
1423 goto out;
1424
1425 size = vma_kernel_pagesize(vma);
1426
1427out:
1428 up_read(&current->mm->mmap_sem);
1429
1430 return size;
1431}
1432
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001433static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1434{
1435 return slot->flags & KVM_MEM_READONLY;
1436}
1437
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001438static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1439 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001440{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001441 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001442 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001443
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001444 if (memslot_is_readonly(slot) && write)
1445 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001446
1447 if (nr_pages)
1448 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1449
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001450 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001451}
Xiao Guangrong48987782010-08-22 19:11:43 +08001452
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001453static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1454 gfn_t *nr_pages)
1455{
1456 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1457}
1458
1459unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001460 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001461{
1462 return gfn_to_hva_many(slot, gfn, NULL);
1463}
1464EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1465
Xiao Guangrong48987782010-08-22 19:11:43 +08001466unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1467{
Gleb Natapov49c77542010-10-18 15:22:23 +02001468 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001469}
Sheng Yang0d150292008-04-25 21:44:50 +08001470EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001471
Paolo Bonzini8e734852015-05-17 13:58:53 +02001472unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1473{
1474 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1475}
1476EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1477
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001478/*
Wei Yang970c0d42018-10-09 10:41:15 +08001479 * Return the hva of a @gfn and the R/W attribute if possible.
1480 *
1481 * @slot: the kvm_memory_slot which contains @gfn
1482 * @gfn: the gfn to be translated
1483 * @writable: used to return the read/write attribute of the @slot if the hva
1484 * is valid and @writable is not NULL
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001485 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001486unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1487 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001488{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001489 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1490
1491 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001492 *writable = !memslot_is_readonly(slot);
1493
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001494 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001495}
1496
Christoffer Dall64d83122014-08-19 12:15:00 +02001497unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1498{
1499 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1500
1501 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1502}
1503
Paolo Bonzini8e734852015-05-17 13:58:53 +02001504unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1505{
1506 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1507
1508 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1509}
1510
Huang Yingfafc3db2011-01-30 11:15:49 +08001511static inline int check_user_page_hwpoison(unsigned long addr)
1512{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001513 int rc, flags = FOLL_HWPOISON | FOLL_WRITE;
Huang Yingfafc3db2011-01-30 11:15:49 +08001514
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001515 rc = get_user_pages(addr, 1, flags, NULL, NULL);
Huang Yingfafc3db2011-01-30 11:15:49 +08001516 return rc == -EHWPOISON;
1517}
1518
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001519/*
Paolo Bonzinib9b33da2018-07-27 17:44:41 +02001520 * The fast path to get the writable pfn which will be stored in @pfn,
1521 * true indicates success, otherwise false is returned. It's also the
1522 * only part that runs if we can are in atomic context.
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001523 */
Paolo Bonzinib9b33da2018-07-27 17:44:41 +02001524static bool hva_to_pfn_fast(unsigned long addr, bool write_fault,
1525 bool *writable, kvm_pfn_t *pfn)
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001526{
1527 struct page *page[1];
1528 int npages;
1529
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001530 /*
1531 * Fast pin a writable pfn only if it is a write fault request
1532 * or the caller allows to map a writable pfn for a read fault
1533 * request.
1534 */
1535 if (!(write_fault || writable))
1536 return false;
1537
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001538 npages = __get_user_pages_fast(addr, 1, 1, page);
1539 if (npages == 1) {
1540 *pfn = page_to_pfn(page[0]);
1541
1542 if (writable)
1543 *writable = true;
1544 return true;
1545 }
1546
1547 return false;
1548}
1549
1550/*
1551 * The slow path to get the pfn of the specified host virtual address,
1552 * 1 indicates success, -errno is returned if error is detected.
1553 */
1554static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
Dan Williamsba049e92016-01-15 16:56:11 -08001555 bool *writable, kvm_pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001556{
Al Viroce530532017-11-19 17:47:33 -05001557 unsigned int flags = FOLL_HWPOISON;
1558 struct page *page;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001559 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001560
1561 might_sleep();
1562
1563 if (writable)
1564 *writable = write_fault;
1565
Al Viroce530532017-11-19 17:47:33 -05001566 if (write_fault)
1567 flags |= FOLL_WRITE;
1568 if (async)
1569 flags |= FOLL_NOWAIT;
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001570
Al Viroce530532017-11-19 17:47:33 -05001571 npages = get_user_pages_unlocked(addr, 1, &page, flags);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001572 if (npages != 1)
1573 return npages;
1574
1575 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001576 if (unlikely(!write_fault) && writable) {
Al Viroce530532017-11-19 17:47:33 -05001577 struct page *wpage;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001578
Al Viroce530532017-11-19 17:47:33 -05001579 if (__get_user_pages_fast(addr, 1, 1, &wpage) == 1) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001580 *writable = true;
Al Viroce530532017-11-19 17:47:33 -05001581 put_page(page);
1582 page = wpage;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001583 }
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001584 }
Al Viroce530532017-11-19 17:47:33 -05001585 *pfn = page_to_pfn(page);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001586 return npages;
1587}
1588
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001589static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1590{
1591 if (unlikely(!(vma->vm_flags & VM_READ)))
1592 return false;
1593
1594 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1595 return false;
1596
1597 return true;
1598}
1599
Paolo Bonzini92176a82016-06-07 16:22:47 +02001600static int hva_to_pfn_remapped(struct vm_area_struct *vma,
1601 unsigned long addr, bool *async,
KarimAllah Ahmeda340b3e2018-01-17 19:18:56 +01001602 bool write_fault, bool *writable,
1603 kvm_pfn_t *p_pfn)
Paolo Bonzini92176a82016-06-07 16:22:47 +02001604{
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001605 unsigned long pfn;
1606 int r;
1607
1608 r = follow_pfn(vma, addr, &pfn);
1609 if (r) {
1610 /*
1611 * get_user_pages fails for VM_IO and VM_PFNMAP vmas and does
1612 * not call the fault handler, so do it here.
1613 */
1614 bool unlocked = false;
1615 r = fixup_user_fault(current, current->mm, addr,
1616 (write_fault ? FAULT_FLAG_WRITE : 0),
1617 &unlocked);
1618 if (unlocked)
1619 return -EAGAIN;
1620 if (r)
1621 return r;
1622
1623 r = follow_pfn(vma, addr, &pfn);
1624 if (r)
1625 return r;
1626
1627 }
1628
KarimAllah Ahmeda340b3e2018-01-17 19:18:56 +01001629 if (writable)
1630 *writable = true;
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001631
1632 /*
1633 * Get a reference here because callers of *hva_to_pfn* and
1634 * *gfn_to_pfn* ultimately call kvm_release_pfn_clean on the
1635 * returned pfn. This is only needed if the VMA has VM_MIXEDMAP
1636 * set, but the kvm_get_pfn/kvm_release_pfn_clean pair will
1637 * simply do nothing for reserved pfns.
1638 *
1639 * Whoever called remap_pfn_range is also going to call e.g.
1640 * unmap_mapping_range before the underlying pages are freed,
1641 * causing a call to our MMU notifier.
1642 */
1643 kvm_get_pfn(pfn);
1644
1645 *p_pfn = pfn;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001646 return 0;
1647}
1648
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001649/*
1650 * Pin guest page in memory and return its pfn.
1651 * @addr: host virtual address which maps memory to the guest
1652 * @atomic: whether this function can sleep
1653 * @async: whether this function need to wait IO complete if the
1654 * host page is not in the memory
1655 * @write_fault: whether we should get a writable host page
1656 * @writable: whether it allows to map a writable host page for !@write_fault
1657 *
1658 * The function will map a writable host page for these two cases:
1659 * 1): @write_fault = true
1660 * 2): @write_fault = false && @writable, @writable will tell the caller
1661 * whether the mapping is writable.
1662 */
Dan Williamsba049e92016-01-15 16:56:11 -08001663static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001664 bool write_fault, bool *writable)
1665{
1666 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001667 kvm_pfn_t pfn = 0;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001668 int npages, r;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001669
Gleb Natapovaf585b92010-10-14 11:22:46 +02001670 /* we can do it either atomically or asynchronously, not both */
1671 BUG_ON(atomic && async);
1672
Paolo Bonzinib9b33da2018-07-27 17:44:41 +02001673 if (hva_to_pfn_fast(addr, write_fault, writable, &pfn))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001674 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001675
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001676 if (atomic)
1677 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001678
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001679 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1680 if (npages == 1)
1681 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001682
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001683 down_read(&current->mm->mmap_sem);
1684 if (npages == -EHWPOISON ||
1685 (!async && check_user_page_hwpoison(addr))) {
1686 pfn = KVM_PFN_ERR_HWPOISON;
1687 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001688 }
Izik Eidus539cb662007-11-11 22:05:04 +02001689
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001690retry:
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001691 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001692
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001693 if (vma == NULL)
1694 pfn = KVM_PFN_ERR_FAULT;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001695 else if (vma->vm_flags & (VM_IO | VM_PFNMAP)) {
KarimAllah Ahmeda340b3e2018-01-17 19:18:56 +01001696 r = hva_to_pfn_remapped(vma, addr, async, write_fault, writable, &pfn);
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001697 if (r == -EAGAIN)
1698 goto retry;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001699 if (r < 0)
1700 pfn = KVM_PFN_ERR_FAULT;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001701 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001702 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001703 *async = true;
1704 pfn = KVM_PFN_ERR_FAULT;
1705 }
1706exit:
1707 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001708 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001709}
1710
Dan Williamsba049e92016-01-15 16:56:11 -08001711kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
1712 bool atomic, bool *async, bool write_fault,
1713 bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001714{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001715 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1716
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001717 if (addr == KVM_HVA_ERR_RO_BAD) {
1718 if (writable)
1719 *writable = false;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001720 return KVM_PFN_ERR_RO_FAULT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001721 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001722
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001723 if (kvm_is_error_hva(addr)) {
1724 if (writable)
1725 *writable = false;
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001726 return KVM_PFN_NOSLOT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001727 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001728
1729 /* Do not map writable pfn in the readonly memslot. */
1730 if (writable && memslot_is_readonly(slot)) {
1731 *writable = false;
1732 writable = NULL;
1733 }
1734
1735 return hva_to_pfn(addr, atomic, async, write_fault,
1736 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001737}
Paolo Bonzini35204692015-04-02 11:20:48 +02001738EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001739
Dan Williamsba049e92016-01-15 16:56:11 -08001740kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001741 bool *writable)
1742{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001743 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1744 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001745}
1746EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1747
Dan Williamsba049e92016-01-15 16:56:11 -08001748kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001749{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001750 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001751}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001752EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001753
Dan Williamsba049e92016-01-15 16:56:11 -08001754kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001755{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001756 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001757}
1758EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1759
Dan Williamsba049e92016-01-15 16:56:11 -08001760kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001761{
1762 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1763}
1764EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1765
Dan Williamsba049e92016-01-15 16:56:11 -08001766kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001767{
1768 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1769}
1770EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1771
Dan Williamsba049e92016-01-15 16:56:11 -08001772kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001773{
1774 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1775}
1776EXPORT_SYMBOL_GPL(gfn_to_pfn);
1777
Dan Williamsba049e92016-01-15 16:56:11 -08001778kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001779{
1780 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1781}
1782EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1783
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001784int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1785 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001786{
1787 unsigned long addr;
Arnd Bergmann076b9252017-08-10 14:14:39 +02001788 gfn_t entry = 0;
Xiao Guangrong48987782010-08-22 19:11:43 +08001789
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001790 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001791 if (kvm_is_error_hva(addr))
1792 return -1;
1793
1794 if (entry < nr_pages)
1795 return 0;
1796
1797 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1798}
1799EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1800
Dan Williamsba049e92016-01-15 16:56:11 -08001801static struct page *kvm_pfn_to_page(kvm_pfn_t pfn)
Xiao Guangronga2766322012-07-26 11:58:59 +08001802{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001803 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001804 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001805
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001806 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001807 WARN_ON(1);
1808 return KVM_ERR_PTR_BAD_PAGE;
1809 }
1810
Xiao Guangronga2766322012-07-26 11:58:59 +08001811 return pfn_to_page(pfn);
1812}
1813
Anthony Liguori35149e22008-04-02 14:46:56 -05001814struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1815{
Dan Williamsba049e92016-01-15 16:56:11 -08001816 kvm_pfn_t pfn;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001817
1818 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001819
Xiao Guangronga2766322012-07-26 11:58:59 +08001820 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001821}
1822EXPORT_SYMBOL_GPL(gfn_to_page);
1823
Boris Ostrovsky91724812019-12-05 01:30:51 +00001824void kvm_release_pfn(kvm_pfn_t pfn, bool dirty, struct gfn_to_pfn_cache *cache)
1825{
1826 if (pfn == 0)
1827 return;
1828
1829 if (cache)
1830 cache->pfn = cache->gfn = 0;
1831
1832 if (dirty)
1833 kvm_release_pfn_dirty(pfn);
1834 else
1835 kvm_release_pfn_clean(pfn);
1836}
1837
1838static void kvm_cache_gfn_to_pfn(struct kvm_memory_slot *slot, gfn_t gfn,
1839 struct gfn_to_pfn_cache *cache, u64 gen)
1840{
1841 kvm_release_pfn(cache->pfn, cache->dirty, cache);
1842
1843 cache->pfn = gfn_to_pfn_memslot(slot, gfn);
1844 cache->gfn = gfn;
1845 cache->dirty = false;
1846 cache->generation = gen;
1847}
1848
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001849static int __kvm_map_gfn(struct kvm_memslots *slots, gfn_t gfn,
Boris Ostrovsky91724812019-12-05 01:30:51 +00001850 struct kvm_host_map *map,
1851 struct gfn_to_pfn_cache *cache,
1852 bool atomic)
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001853{
1854 kvm_pfn_t pfn;
1855 void *hva = NULL;
1856 struct page *page = KVM_UNMAPPED_PAGE;
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001857 struct kvm_memory_slot *slot = __gfn_to_memslot(slots, gfn);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001858 u64 gen = slots->generation;
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001859
1860 if (!map)
1861 return -EINVAL;
1862
Boris Ostrovsky91724812019-12-05 01:30:51 +00001863 if (cache) {
1864 if (!cache->pfn || cache->gfn != gfn ||
1865 cache->generation != gen) {
1866 if (atomic)
1867 return -EAGAIN;
1868 kvm_cache_gfn_to_pfn(slot, gfn, cache, gen);
1869 }
1870 pfn = cache->pfn;
1871 } else {
1872 if (atomic)
1873 return -EAGAIN;
1874 pfn = gfn_to_pfn_memslot(slot, gfn);
1875 }
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001876 if (is_error_noslot_pfn(pfn))
1877 return -EINVAL;
1878
1879 if (pfn_valid(pfn)) {
1880 page = pfn_to_page(pfn);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001881 if (atomic)
1882 hva = kmap_atomic(page);
1883 else
1884 hva = kmap(page);
Paolo Bonzinid30b2142019-05-20 12:06:36 +02001885#ifdef CONFIG_HAS_IOMEM
Boris Ostrovsky91724812019-12-05 01:30:51 +00001886 } else if (!atomic) {
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001887 hva = memremap(pfn_to_hpa(pfn), PAGE_SIZE, MEMREMAP_WB);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001888 } else {
1889 return -EINVAL;
Paolo Bonzinid30b2142019-05-20 12:06:36 +02001890#endif
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001891 }
1892
1893 if (!hva)
1894 return -EFAULT;
1895
1896 map->page = page;
1897 map->hva = hva;
1898 map->pfn = pfn;
1899 map->gfn = gfn;
1900
1901 return 0;
1902}
1903
Boris Ostrovsky91724812019-12-05 01:30:51 +00001904int kvm_map_gfn(struct kvm_vcpu *vcpu, gfn_t gfn, struct kvm_host_map *map,
1905 struct gfn_to_pfn_cache *cache, bool atomic)
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001906{
Boris Ostrovsky91724812019-12-05 01:30:51 +00001907 return __kvm_map_gfn(kvm_memslots(vcpu->kvm), gfn, map,
1908 cache, atomic);
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001909}
1910EXPORT_SYMBOL_GPL(kvm_map_gfn);
1911
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001912int kvm_vcpu_map(struct kvm_vcpu *vcpu, gfn_t gfn, struct kvm_host_map *map)
1913{
Boris Ostrovsky91724812019-12-05 01:30:51 +00001914 return __kvm_map_gfn(kvm_vcpu_memslots(vcpu), gfn, map,
1915 NULL, false);
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001916}
1917EXPORT_SYMBOL_GPL(kvm_vcpu_map);
1918
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001919static void __kvm_unmap_gfn(struct kvm_memory_slot *memslot,
Boris Ostrovsky91724812019-12-05 01:30:51 +00001920 struct kvm_host_map *map,
1921 struct gfn_to_pfn_cache *cache,
1922 bool dirty, bool atomic)
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001923{
1924 if (!map)
1925 return;
1926
1927 if (!map->hva)
1928 return;
1929
Boris Ostrovsky91724812019-12-05 01:30:51 +00001930 if (map->page != KVM_UNMAPPED_PAGE) {
1931 if (atomic)
1932 kunmap_atomic(map->hva);
1933 else
1934 kunmap(map->page);
1935 }
Christian Borntraegereb1f2f32019-05-27 10:28:25 +02001936#ifdef CONFIG_HAS_IOMEM
Boris Ostrovsky91724812019-12-05 01:30:51 +00001937 else if (!atomic)
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001938 memunmap(map->hva);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001939 else
1940 WARN_ONCE(1, "Unexpected unmapping in atomic context");
Christian Borntraegereb1f2f32019-05-27 10:28:25 +02001941#endif
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001942
Boris Ostrovsky91724812019-12-05 01:30:51 +00001943 if (dirty)
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001944 mark_page_dirty_in_slot(memslot, map->gfn);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001945
1946 if (cache)
1947 cache->dirty |= dirty;
1948 else
1949 kvm_release_pfn(map->pfn, dirty, NULL);
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001950
1951 map->hva = NULL;
1952 map->page = NULL;
1953}
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001954
Boris Ostrovsky91724812019-12-05 01:30:51 +00001955int kvm_unmap_gfn(struct kvm_vcpu *vcpu, struct kvm_host_map *map,
1956 struct gfn_to_pfn_cache *cache, bool dirty, bool atomic)
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001957{
Boris Ostrovsky91724812019-12-05 01:30:51 +00001958 __kvm_unmap_gfn(gfn_to_memslot(vcpu->kvm, map->gfn), map,
1959 cache, dirty, atomic);
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001960 return 0;
1961}
1962EXPORT_SYMBOL_GPL(kvm_unmap_gfn);
1963
1964void kvm_vcpu_unmap(struct kvm_vcpu *vcpu, struct kvm_host_map *map, bool dirty)
1965{
Boris Ostrovsky91724812019-12-05 01:30:51 +00001966 __kvm_unmap_gfn(kvm_vcpu_gfn_to_memslot(vcpu, map->gfn), map, NULL,
1967 dirty, false);
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001968}
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001969EXPORT_SYMBOL_GPL(kvm_vcpu_unmap);
1970
Paolo Bonzini8e734852015-05-17 13:58:53 +02001971struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1972{
Dan Williamsba049e92016-01-15 16:56:11 -08001973 kvm_pfn_t pfn;
Paolo Bonzini8e734852015-05-17 13:58:53 +02001974
1975 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1976
1977 return kvm_pfn_to_page(pfn);
1978}
1979EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1980
Izik Eidusb4231d62007-11-20 11:49:33 +02001981void kvm_release_page_clean(struct page *page)
1982{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001983 WARN_ON(is_error_page(page));
1984
Anthony Liguori35149e22008-04-02 14:46:56 -05001985 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001986}
1987EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1988
Dan Williamsba049e92016-01-15 16:56:11 -08001989void kvm_release_pfn_clean(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001990{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001991 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001992 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001993}
1994EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1995
Izik Eidusb4231d62007-11-20 11:49:33 +02001996void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001997{
Xiao Guangronga2766322012-07-26 11:58:59 +08001998 WARN_ON(is_error_page(page));
1999
Anthony Liguori35149e22008-04-02 14:46:56 -05002000 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02002001}
Izik Eidusb4231d62007-11-20 11:49:33 +02002002EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02002003
David Hildenbrandf7a65092017-09-01 17:11:43 +02002004void kvm_release_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05002005{
2006 kvm_set_pfn_dirty(pfn);
2007 kvm_release_pfn_clean(pfn);
2008}
David Hildenbrandf7a65092017-09-01 17:11:43 +02002009EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
Anthony Liguori35149e22008-04-02 14:46:56 -05002010
Dan Williamsba049e92016-01-15 16:56:11 -08002011void kvm_set_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05002012{
Sean Christophersona78986a2019-11-11 14:12:27 -08002013 if (!kvm_is_reserved_pfn(pfn) && !kvm_is_zone_device_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05002014 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002015
Paolo Bonzini8f946da2019-08-05 11:11:08 +02002016 SetPageDirty(page);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05002017 }
Anthony Liguori35149e22008-04-02 14:46:56 -05002018}
2019EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
2020
Dan Williamsba049e92016-01-15 16:56:11 -08002021void kvm_set_pfn_accessed(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05002022{
Sean Christophersona78986a2019-11-11 14:12:27 -08002023 if (!kvm_is_reserved_pfn(pfn) && !kvm_is_zone_device_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05002024 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05002025}
2026EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
2027
Dan Williamsba049e92016-01-15 16:56:11 -08002028void kvm_get_pfn(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05002029{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00002030 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05002031 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05002032}
2033EXPORT_SYMBOL_GPL(kvm_get_pfn);
2034
Izik Eidus195aefd2007-10-01 22:14:18 +02002035static int next_segment(unsigned long len, int offset)
2036{
2037 if (len > PAGE_SIZE - offset)
2038 return PAGE_SIZE - offset;
2039 else
2040 return len;
2041}
2042
Paolo Bonzini8e734852015-05-17 13:58:53 +02002043static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
2044 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02002045{
Izik Eiduse0506bc2007-11-11 22:10:22 +02002046 int r;
2047 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02002048
Paolo Bonzini8e734852015-05-17 13:58:53 +02002049 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002050 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02002051 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02002052 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002053 if (r)
2054 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002055 return 0;
2056}
Paolo Bonzini8e734852015-05-17 13:58:53 +02002057
2058int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
2059 int len)
2060{
2061 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
2062
2063 return __kvm_read_guest_page(slot, gfn, data, offset, len);
2064}
Izik Eidus195aefd2007-10-01 22:14:18 +02002065EXPORT_SYMBOL_GPL(kvm_read_guest_page);
2066
Paolo Bonzini8e734852015-05-17 13:58:53 +02002067int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
2068 int offset, int len)
2069{
2070 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2071
2072 return __kvm_read_guest_page(slot, gfn, data, offset, len);
2073}
2074EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
2075
Izik Eidus195aefd2007-10-01 22:14:18 +02002076int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
2077{
2078 gfn_t gfn = gpa >> PAGE_SHIFT;
2079 int seg;
2080 int offset = offset_in_page(gpa);
2081 int ret;
2082
2083 while ((seg = next_segment(len, offset)) != 0) {
2084 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
2085 if (ret < 0)
2086 return ret;
2087 offset = 0;
2088 len -= seg;
2089 data += seg;
2090 ++gfn;
2091 }
2092 return 0;
2093}
2094EXPORT_SYMBOL_GPL(kvm_read_guest);
2095
Paolo Bonzini8e734852015-05-17 13:58:53 +02002096int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
2097{
2098 gfn_t gfn = gpa >> PAGE_SHIFT;
2099 int seg;
2100 int offset = offset_in_page(gpa);
2101 int ret;
2102
2103 while ((seg = next_segment(len, offset)) != 0) {
2104 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
2105 if (ret < 0)
2106 return ret;
2107 offset = 0;
2108 len -= seg;
2109 data += seg;
2110 ++gfn;
2111 }
2112 return 0;
2113}
2114EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
2115
2116static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
2117 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002118{
2119 int r;
2120 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002121
Paolo Bonzini8e734852015-05-17 13:58:53 +02002122 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002123 if (kvm_is_error_hva(addr))
2124 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01002125 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02002126 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01002127 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002128 if (r)
2129 return -EFAULT;
2130 return 0;
2131}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002132
Paolo Bonzini8e734852015-05-17 13:58:53 +02002133int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
2134 unsigned long len)
2135{
2136 gfn_t gfn = gpa >> PAGE_SHIFT;
2137 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
2138 int offset = offset_in_page(gpa);
2139
2140 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
2141}
2142EXPORT_SYMBOL_GPL(kvm_read_guest_atomic);
2143
2144int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
2145 void *data, unsigned long len)
2146{
2147 gfn_t gfn = gpa >> PAGE_SHIFT;
2148 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2149 int offset = offset_in_page(gpa);
2150
2151 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
2152}
2153EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
2154
2155static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
2156 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02002157{
Izik Eiduse0506bc2007-11-11 22:10:22 +02002158 int r;
2159 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02002160
Radim Krčmář251eb842015-04-10 21:47:27 +02002161 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002162 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02002163 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08002164 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002165 if (r)
2166 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002167 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02002168 return 0;
2169}
Paolo Bonzini8e734852015-05-17 13:58:53 +02002170
2171int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
2172 const void *data, int offset, int len)
2173{
2174 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
2175
2176 return __kvm_write_guest_page(slot, gfn, data, offset, len);
2177}
Izik Eidus195aefd2007-10-01 22:14:18 +02002178EXPORT_SYMBOL_GPL(kvm_write_guest_page);
2179
Paolo Bonzini8e734852015-05-17 13:58:53 +02002180int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
2181 const void *data, int offset, int len)
2182{
2183 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2184
2185 return __kvm_write_guest_page(slot, gfn, data, offset, len);
2186}
2187EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
2188
Izik Eidus195aefd2007-10-01 22:14:18 +02002189int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
2190 unsigned long len)
2191{
2192 gfn_t gfn = gpa >> PAGE_SHIFT;
2193 int seg;
2194 int offset = offset_in_page(gpa);
2195 int ret;
2196
2197 while ((seg = next_segment(len, offset)) != 0) {
2198 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
2199 if (ret < 0)
2200 return ret;
2201 offset = 0;
2202 len -= seg;
2203 data += seg;
2204 ++gfn;
2205 }
2206 return 0;
2207}
Wincy Vanff651cb2014-12-11 08:52:58 +03002208EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02002209
Paolo Bonzini8e734852015-05-17 13:58:53 +02002210int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
2211 unsigned long len)
2212{
2213 gfn_t gfn = gpa >> PAGE_SHIFT;
2214 int seg;
2215 int offset = offset_in_page(gpa);
2216 int ret;
2217
2218 while ((seg = next_segment(len, offset)) != 0) {
2219 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
2220 if (ret < 0)
2221 return ret;
2222 offset = 0;
2223 len -= seg;
2224 data += seg;
2225 ++gfn;
2226 }
2227 return 0;
2228}
2229EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
2230
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002231static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
2232 struct gfn_to_hva_cache *ghc,
2233 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02002234{
Gleb Natapov49c77542010-10-18 15:22:23 +02002235 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07002236 gfn_t start_gfn = gpa >> PAGE_SHIFT;
2237 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
2238 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
2239 gfn_t nr_pages_avail;
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002240 int r = start_gfn <= end_gfn ? 0 : -EINVAL;
Gleb Natapov49c77542010-10-18 15:22:23 +02002241
2242 ghc->gpa = gpa;
2243 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07002244 ghc->len = len;
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002245 ghc->hva = KVM_HVA_ERR_BAD;
2246
2247 /*
2248 * If the requested region crosses two memslots, we still
2249 * verify that the entire region is valid here.
2250 */
2251 while (!r && start_gfn <= end_gfn) {
2252 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
2253 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
2254 &nr_pages_avail);
2255 if (kvm_is_error_hva(ghc->hva))
2256 r = -EFAULT;
2257 start_gfn += nr_pages_avail;
Andrew Honig8f964522013-03-29 09:35:21 -07002258 }
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002259
2260 /* Use the slow path for cross page reads and writes. */
2261 if (!r && nr_pages_needed == 1)
2262 ghc->hva += offset;
2263 else
2264 ghc->memslot = NULL;
2265
2266 return r;
Gleb Natapov49c77542010-10-18 15:22:23 +02002267}
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002268
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002269int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002270 gpa_t gpa, unsigned long len)
2271{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002272 struct kvm_memslots *slots = kvm_memslots(kvm);
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002273 return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
2274}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002275EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
Gleb Natapov49c77542010-10-18 15:22:23 +02002276
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002277int kvm_write_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Jim Mattson7a86dab2018-12-14 14:34:43 -08002278 void *data, unsigned int offset,
2279 unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02002280{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002281 struct kvm_memslots *slots = kvm_memslots(kvm);
Gleb Natapov49c77542010-10-18 15:22:23 +02002282 int r;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002283 gpa_t gpa = ghc->gpa + offset;
Gleb Natapov49c77542010-10-18 15:22:23 +02002284
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002285 BUG_ON(len + offset > ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002286
Gleb Natapov49c77542010-10-18 15:22:23 +02002287 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002288 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002289
2290 if (unlikely(!ghc->memslot))
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002291 return kvm_write_guest(kvm, gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02002292
2293 if (kvm_is_error_hva(ghc->hva))
2294 return -EFAULT;
2295
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002296 r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02002297 if (r)
2298 return -EFAULT;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002299 mark_page_dirty_in_slot(ghc->memslot, gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02002300
2301 return 0;
2302}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002303EXPORT_SYMBOL_GPL(kvm_write_guest_offset_cached);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002304
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002305int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
2306 void *data, unsigned long len)
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002307{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002308 return kvm_write_guest_offset_cached(kvm, ghc, data, 0, len);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002309}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002310EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
Gleb Natapov49c77542010-10-18 15:22:23 +02002311
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002312int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
2313 void *data, unsigned long len)
Gleb Natapove03b6442011-07-11 15:28:11 -04002314{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002315 struct kvm_memslots *slots = kvm_memslots(kvm);
Gleb Natapove03b6442011-07-11 15:28:11 -04002316 int r;
2317
Andrew Honig8f964522013-03-29 09:35:21 -07002318 BUG_ON(len > ghc->len);
2319
Gleb Natapove03b6442011-07-11 15:28:11 -04002320 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002321 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002322
2323 if (unlikely(!ghc->memslot))
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002324 return kvm_read_guest(kvm, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04002325
2326 if (kvm_is_error_hva(ghc->hva))
2327 return -EFAULT;
2328
2329 r = __copy_from_user(data, (void __user *)ghc->hva, len);
2330 if (r)
2331 return -EFAULT;
2332
2333 return 0;
2334}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002335EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
Gleb Natapove03b6442011-07-11 15:28:11 -04002336
Izik Eidus195aefd2007-10-01 22:14:18 +02002337int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
2338{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01002339 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
2340
2341 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02002342}
2343EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
2344
2345int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
2346{
2347 gfn_t gfn = gpa >> PAGE_SHIFT;
2348 int seg;
2349 int offset = offset_in_page(gpa);
2350 int ret;
2351
Kevin Mulveybfda0e82015-02-20 08:21:36 -05002352 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02002353 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
2354 if (ret < 0)
2355 return ret;
2356 offset = 0;
2357 len -= seg;
2358 ++gfn;
2359 }
2360 return 0;
2361}
2362EXPORT_SYMBOL_GPL(kvm_clear_guest);
2363
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002364static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08002365 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002366{
Rusty Russell7e9d6192007-07-31 20:41:14 +10002367 if (memslot && memslot->dirty_bitmap) {
2368 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002369
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07002370 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371 }
2372}
2373
Gleb Natapov49c77542010-10-18 15:22:23 +02002374void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
2375{
2376 struct kvm_memory_slot *memslot;
2377
2378 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002379 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02002380}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302381EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02002382
Paolo Bonzini8e734852015-05-17 13:58:53 +02002383void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
2384{
2385 struct kvm_memory_slot *memslot;
2386
2387 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2388 mark_page_dirty_in_slot(memslot, gfn);
2389}
2390EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
2391
Jan H. Schönherr20b70352017-11-24 22:39:01 +01002392void kvm_sigset_activate(struct kvm_vcpu *vcpu)
2393{
2394 if (!vcpu->sigset_active)
2395 return;
2396
2397 /*
2398 * This does a lockless modification of ->real_blocked, which is fine
2399 * because, only current can change ->real_blocked and all readers of
2400 * ->real_blocked don't care as long ->real_blocked is always a subset
2401 * of ->blocked.
2402 */
2403 sigprocmask(SIG_SETMASK, &vcpu->sigset, &current->real_blocked);
2404}
2405
2406void kvm_sigset_deactivate(struct kvm_vcpu *vcpu)
2407{
2408 if (!vcpu->sigset_active)
2409 return;
2410
2411 sigprocmask(SIG_SETMASK, &current->real_blocked, NULL);
2412 sigemptyset(&current->real_blocked);
2413}
2414
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002415static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
2416{
Nir Weinerdee339b2019-01-27 12:17:16 +02002417 unsigned int old, val, grow, grow_start;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002418
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002419 old = val = vcpu->halt_poll_ns;
Nir Weinerdee339b2019-01-27 12:17:16 +02002420 grow_start = READ_ONCE(halt_poll_ns_grow_start);
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002421 grow = READ_ONCE(halt_poll_ns_grow);
Nir Weiner7fa08e72019-01-27 12:17:14 +02002422 if (!grow)
2423 goto out;
2424
Nir Weinerdee339b2019-01-27 12:17:16 +02002425 val *= grow;
2426 if (val < grow_start)
2427 val = grow_start;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002428
David Matlack313f6362016-03-08 16:19:44 -08002429 if (val > halt_poll_ns)
2430 val = halt_poll_ns;
2431
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002432 vcpu->halt_poll_ns = val;
Nir Weiner7fa08e72019-01-27 12:17:14 +02002433out:
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002434 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002435}
2436
2437static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
2438{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002439 unsigned int old, val, shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002440
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002441 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002442 shrink = READ_ONCE(halt_poll_ns_shrink);
2443 if (shrink == 0)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002444 val = 0;
2445 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002446 val /= shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002447
2448 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002449 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002450}
2451
Paolo Bonzinif7819512015-02-04 18:20:58 +01002452static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
2453{
Junaid Shahid50c28f22018-06-27 14:59:11 -07002454 int ret = -EINTR;
2455 int idx = srcu_read_lock(&vcpu->kvm->srcu);
2456
Paolo Bonzinif7819512015-02-04 18:20:58 +01002457 if (kvm_arch_vcpu_runnable(vcpu)) {
2458 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Junaid Shahid50c28f22018-06-27 14:59:11 -07002459 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002460 }
2461 if (kvm_cpu_has_pending_timer(vcpu))
Junaid Shahid50c28f22018-06-27 14:59:11 -07002462 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002463 if (signal_pending(current))
Junaid Shahid50c28f22018-06-27 14:59:11 -07002464 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002465
Junaid Shahid50c28f22018-06-27 14:59:11 -07002466 ret = 0;
2467out:
2468 srcu_read_unlock(&vcpu->kvm->srcu, idx);
2469 return ret;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002470}
2471
Eddie Dongb6958ce2007-07-18 12:15:21 +03002472/*
2473 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2474 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05002475void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03002476{
Paolo Bonzinif7819512015-02-04 18:20:58 +01002477 ktime_t start, cur;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002478 DECLARE_SWAITQUEUE(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002479 bool waited = false;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002480 u64 block_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002481
Marc Zyngier07ab0f82019-08-02 11:37:09 +01002482 kvm_arch_vcpu_blocking(vcpu);
2483
Paolo Bonzinif7819512015-02-04 18:20:58 +01002484 start = cur = ktime_get();
Christian Borntraegercdd6ad32019-03-05 05:30:01 -05002485 if (vcpu->halt_poll_ns && !kvm_arch_no_poll(vcpu)) {
Wanpeng Li19020f82015-09-03 22:07:37 +08002486 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002487
Paolo Bonzini62bea5b2015-09-15 18:27:57 +02002488 ++vcpu->stat.halt_attempted_poll;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002489 do {
2490 /*
2491 * This sets KVM_REQ_UNHALT if an interrupt
2492 * arrives.
2493 */
2494 if (kvm_vcpu_check_block(vcpu) < 0) {
2495 ++vcpu->stat.halt_successful_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002496 if (!vcpu_valid_wakeup(vcpu))
2497 ++vcpu->stat.halt_poll_invalid;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002498 goto out;
2499 }
2500 cur = ktime_get();
2501 } while (single_task_running() && ktime_before(cur, stop));
2502 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03002503
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002504 for (;;) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02002505 prepare_to_swait_exclusive(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002506
Paolo Bonzinif7819512015-02-04 18:20:58 +01002507 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002508 break;
2509
Paolo Bonzinif7819512015-02-04 18:20:58 +01002510 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03002511 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03002512 }
2513
Marcelo Tosatti85773702016-02-19 09:46:39 +01002514 finish_swait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002515 cur = ktime_get();
Paolo Bonzinif7819512015-02-04 18:20:58 +01002516out:
Marc Zyngier07ab0f82019-08-02 11:37:09 +01002517 kvm_arch_vcpu_unblocking(vcpu);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002518 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2519
Wanpeng Li44551b22019-09-29 09:06:56 +08002520 if (!kvm_arch_no_poll(vcpu)) {
2521 if (!vcpu_valid_wakeup(vcpu)) {
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002522 shrink_halt_poll_ns(vcpu);
Wanpeng Li44551b22019-09-29 09:06:56 +08002523 } else if (halt_poll_ns) {
2524 if (block_ns <= vcpu->halt_poll_ns)
2525 ;
2526 /* we had a long block, shrink polling */
2527 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
2528 shrink_halt_poll_ns(vcpu);
2529 /* we had a short halt and our poll time is too small */
2530 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2531 block_ns < halt_poll_ns)
2532 grow_halt_poll_ns(vcpu);
2533 } else {
2534 vcpu->halt_poll_ns = 0;
2535 }
2536 }
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002537
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002538 trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu));
2539 kvm_arch_vcpu_block_finish(vcpu);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002540}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302541EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002542
Radim Krčmář178f02f2017-04-26 22:32:26 +02002543bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -05002544{
Marcelo Tosatti85773702016-02-19 09:46:39 +01002545 struct swait_queue_head *wqp;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002546
2547 wqp = kvm_arch_vcpu_wq(vcpu);
Davidlohr Bueso5e0018b2017-09-13 13:08:22 -07002548 if (swq_has_sleeper(wqp)) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02002549 swake_up_one(wqp);
Wanpeng Lid73eb572019-07-18 19:39:06 +08002550 WRITE_ONCE(vcpu->ready, true);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002551 ++vcpu->stat.halt_wakeup;
Radim Krčmář178f02f2017-04-26 22:32:26 +02002552 return true;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002553 }
2554
Radim Krčmář178f02f2017-04-26 22:32:26 +02002555 return false;
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002556}
2557EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2558
Paolo Bonzini0266c892017-05-04 15:14:13 +02002559#ifndef CONFIG_S390
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002560/*
2561 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2562 */
2563void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2564{
2565 int me;
2566 int cpu = vcpu->cpu;
2567
Radim Krčmář178f02f2017-04-26 22:32:26 +02002568 if (kvm_vcpu_wake_up(vcpu))
2569 return;
2570
Christoffer Dallb6d33832012-03-08 16:44:24 -05002571 me = get_cpu();
2572 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2573 if (kvm_arch_vcpu_should_kick(vcpu))
2574 smp_send_reschedule(cpu);
2575 put_cpu();
2576}
Yang Zhanga20ed542013-04-11 19:25:15 +08002577EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Paolo Bonzini0266c892017-05-04 15:14:13 +02002578#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05002579
Dan Carpenterfa933842014-05-23 13:20:42 +03002580int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02002581{
2582 struct pid *pid;
2583 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03002584 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002585
2586 rcu_read_lock();
2587 pid = rcu_dereference(target->pid);
2588 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10002589 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002590 rcu_read_unlock();
2591 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302592 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302593 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002594 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302595
2596 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002597}
2598EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2599
Raghavendra K T06e48c52012-07-19 15:17:52 +05302600/*
2601 * Helper that checks whether a VCPU is eligible for directed yield.
2602 * Most eligible candidate to yield is decided by following heuristics:
2603 *
2604 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2605 * (preempted lock holder), indicated by @in_spin_loop.
2606 * Set at the beiginning and cleared at the end of interception/PLE handler.
2607 *
2608 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2609 * chance last time (mostly it has become eligible now since we have probably
2610 * yielded to lockholder in last iteration. This is done by toggling
2611 * @dy_eligible each time a VCPU checked for eligibility.)
2612 *
2613 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2614 * to preempted lock-holder could result in wrong VCPU selection and CPU
2615 * burning. Giving priority for a potential lock-holder increases lock
2616 * progress.
2617 *
2618 * Since algorithm is based on heuristics, accessing another VCPU data without
2619 * locking does not harm. It may result in trying to yield to same VCPU, fail
2620 * and continue with next VCPU and so on.
2621 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002622static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302623{
Scott Wood4a55dd72014-01-09 18:43:16 -06002624#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302625 bool eligible;
2626
2627 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002628 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302629
2630 if (vcpu->spin_loop.in_spin_loop)
2631 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2632
2633 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002634#else
2635 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302636#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002637}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302638
Wanpeng Li17e433b2019-08-05 10:03:19 +08002639/*
2640 * Unlike kvm_arch_vcpu_runnable, this function is called outside
2641 * a vcpu_load/vcpu_put pair. However, for most architectures
2642 * kvm_arch_vcpu_runnable does not require vcpu_load.
2643 */
2644bool __weak kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
2645{
2646 return kvm_arch_vcpu_runnable(vcpu);
2647}
2648
2649static bool vcpu_dy_runnable(struct kvm_vcpu *vcpu)
2650{
2651 if (kvm_arch_dy_runnable(vcpu))
2652 return true;
2653
2654#ifdef CONFIG_KVM_ASYNC_PF
2655 if (!list_empty_careful(&vcpu->async_pf.done))
2656 return true;
2657#endif
2658
2659 return false;
2660}
2661
Longpeng(Mike)199b5762017-08-08 12:05:32 +08002662void kvm_vcpu_on_spin(struct kvm_vcpu *me, bool yield_to_kernel_mode)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002663{
Rik van Riel217ece62011-02-01 09:53:28 -05002664 struct kvm *kvm = me->kvm;
2665 struct kvm_vcpu *vcpu;
2666 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2667 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302668 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002669 int pass;
2670 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002671
Raghavendra K T4c088492012-07-18 19:07:46 +05302672 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002673 /*
2674 * We boost the priority of a VCPU that is runnable but not
2675 * currently running, because it got preempted by something
2676 * else and called schedule in __vcpu_run. Hopefully that
2677 * VCPU is holding the lock that we need and will release it.
2678 * We approximate round-robin by starting at the last boosted VCPU.
2679 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302680 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002681 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002682 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002683 i = last_boosted_vcpu;
2684 continue;
2685 } else if (pass && i > last_boosted_vcpu)
2686 break;
Wanpeng Lid73eb572019-07-18 19:39:06 +08002687 if (!READ_ONCE(vcpu->ready))
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302688 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002689 if (vcpu == me)
2690 continue;
Wanpeng Li17e433b2019-08-05 10:03:19 +08002691 if (swait_active(&vcpu->wq) && !vcpu_dy_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002692 continue;
Wanpeng Li046ddee2019-08-01 11:30:14 +08002693 if (READ_ONCE(vcpu->preempted) && yield_to_kernel_mode &&
2694 !kvm_arch_vcpu_in_kernel(vcpu))
Longpeng(Mike)199b5762017-08-08 12:05:32 +08002695 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302696 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2697 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302698
2699 yielded = kvm_vcpu_yield_to(vcpu);
2700 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002701 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002702 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302703 } else if (yielded < 0) {
2704 try--;
2705 if (!try)
2706 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002707 }
Rik van Riel217ece62011-02-01 09:53:28 -05002708 }
2709 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302710 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302711
2712 /* Ensure vcpu is not eligible during next spinloop */
2713 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002714}
2715EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2716
Souptick Joarder1499fa82018-04-19 00:49:58 +05302717static vm_fault_t kvm_vcpu_fault(struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002718{
Dave Jiang11bac802017-02-24 14:56:41 -08002719 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002720 struct page *page;
2721
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002722 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002723 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002724#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002725 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002726 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002727#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002728#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02002729 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2730 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2731#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002732 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002733 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002734 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002735 vmf->page = page;
2736 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002737}
2738
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002739static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002740 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002741};
2742
2743static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2744{
2745 vma->vm_ops = &kvm_vcpu_vm_ops;
2746 return 0;
2747}
2748
Avi Kivitybccf2152007-02-21 18:04:26 +02002749static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2750{
2751 struct kvm_vcpu *vcpu = filp->private_data;
2752
Luiz Capitulino45b59392016-09-16 10:27:35 -04002753 debugfs_remove_recursive(vcpu->debugfs_dentry);
Al Viro66c0b392008-04-19 20:33:56 +01002754 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002755 return 0;
2756}
2757
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002758static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002759 .release = kvm_vcpu_release,
2760 .unlocked_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002761 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002762 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01002763 KVM_COMPAT(kvm_vcpu_compat_ioctl),
Avi Kivitybccf2152007-02-21 18:04:26 +02002764};
2765
2766/*
2767 * Allocates an inode for the vcpu.
2768 */
2769static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2770{
Masatake YAMATOe46b4692018-01-20 04:04:22 +09002771 char name[8 + 1 + ITOA_MAX_LEN + 1];
2772
2773 snprintf(name, sizeof(name), "kvm-vcpu:%d", vcpu->vcpu_id);
2774 return anon_inode_getfd(name, &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002775}
2776
Greg KH3e7093d2019-07-31 20:56:20 +02002777static void kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
Luiz Capitulino45b59392016-09-16 10:27:35 -04002778{
Paolo Bonzini741cbba2019-08-03 08:14:25 +02002779#ifdef __KVM_HAVE_ARCH_VCPU_DEBUGFS
Luiz Capitulino45b59392016-09-16 10:27:35 -04002780 char dir_name[ITOA_MAX_LEN * 2];
Luiz Capitulino45b59392016-09-16 10:27:35 -04002781
Luiz Capitulino45b59392016-09-16 10:27:35 -04002782 if (!debugfs_initialized())
Greg KH3e7093d2019-07-31 20:56:20 +02002783 return;
Luiz Capitulino45b59392016-09-16 10:27:35 -04002784
2785 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2786 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
Greg KH3e7093d2019-07-31 20:56:20 +02002787 vcpu->kvm->debugfs_dentry);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002788
Greg KH3e7093d2019-07-31 20:56:20 +02002789 kvm_arch_create_vcpu_debugfs(vcpu);
Paolo Bonzini741cbba2019-08-03 08:14:25 +02002790#endif
Luiz Capitulino45b59392016-09-16 10:27:35 -04002791}
2792
Avi Kivityc5ea7662007-02-20 18:41:05 +02002793/*
2794 * Creates some virtual cpus. Good luck creating more than one.
2795 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002796static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002797{
2798 int r;
David Hildenbrande09fefd2015-11-05 09:03:50 +01002799 struct kvm_vcpu *vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002800
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002801 if (id >= KVM_MAX_VCPU_ID)
Andy Honig338c7db2013-11-18 16:09:22 -08002802 return -EINVAL;
2803
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002804 mutex_lock(&kvm->lock);
2805 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2806 mutex_unlock(&kvm->lock);
2807 return -EINVAL;
2808 }
2809
2810 kvm->created_vcpus++;
2811 mutex_unlock(&kvm->lock);
2812
Gleb Natapov73880c82009-06-09 15:56:28 +03002813 vcpu = kvm_arch_vcpu_create(kvm, id);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002814 if (IS_ERR(vcpu)) {
2815 r = PTR_ERR(vcpu);
2816 goto vcpu_decrement;
2817 }
Avi Kivityc5ea7662007-02-20 18:41:05 +02002818
Avi Kivity15ad7142007-07-11 18:17:21 +03002819 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2820
Avi Kivity26e52152007-11-20 15:30:24 +02002821 r = kvm_arch_vcpu_setup(vcpu);
2822 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002823 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002824
Greg KH3e7093d2019-07-31 20:56:20 +02002825 kvm_create_vcpu_debugfs(vcpu);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002826
Shaohua Li11ec2802007-07-23 14:51:37 +08002827 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +01002828 if (kvm_get_vcpu_by_id(kvm, id)) {
2829 r = -EEXIST;
2830 goto unlock_vcpu_destroy;
2831 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002832
Radim Krčmář8750e722019-11-07 07:53:42 -05002833 vcpu->vcpu_idx = atomic_read(&kvm->online_vcpus);
2834 BUG_ON(kvm->vcpus[vcpu->vcpu_idx]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002835
2836 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002837 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002838 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002839 if (r < 0) {
Sean Christopherson149487b2019-10-21 15:58:42 -07002840 kvm_put_kvm_no_destroy(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002841 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002842 }
2843
Radim Krčmář8750e722019-11-07 07:53:42 -05002844 kvm->vcpus[vcpu->vcpu_idx] = vcpu;
Paolo Bonzinidd489242015-07-29 11:32:20 +02002845
2846 /*
2847 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2848 * before kvm->online_vcpu's incremented value.
2849 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002850 smp_wmb();
2851 atomic_inc(&kvm->online_vcpus);
2852
Gleb Natapov73880c82009-06-09 15:56:28 +03002853 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002854 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002855 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002856
Jan Kiszkad7805922011-05-23 10:33:05 +02002857unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002858 mutex_unlock(&kvm->lock);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002859 debugfs_remove_recursive(vcpu->debugfs_dentry);
Jan Kiszkad7805922011-05-23 10:33:05 +02002860vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002861 kvm_arch_vcpu_destroy(vcpu);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002862vcpu_decrement:
2863 mutex_lock(&kvm->lock);
2864 kvm->created_vcpus--;
2865 mutex_unlock(&kvm->lock);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002866 return r;
2867}
2868
Avi Kivity1961d272007-03-05 19:46:05 +02002869static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2870{
2871 if (sigset) {
2872 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2873 vcpu->sigset_active = 1;
2874 vcpu->sigset = *sigset;
2875 } else
2876 vcpu->sigset_active = 0;
2877 return 0;
2878}
2879
Avi Kivitybccf2152007-02-21 18:04:26 +02002880static long kvm_vcpu_ioctl(struct file *filp,
2881 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002882{
Avi Kivitybccf2152007-02-21 18:04:26 +02002883 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002884 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002885 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002886 struct kvm_fpu *fpu = NULL;
2887 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002888
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002889 if (vcpu->kvm->mm != current->mm)
2890 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002891
David Matlack2ea75be2014-09-19 16:03:25 -07002892 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2893 return -EINVAL;
2894
Avi Kivity2122ff52010-05-13 11:25:04 +03002895 /*
Paolo Bonzini5cb09442017-12-12 17:41:34 +01002896 * Some architectures have vcpu ioctls that are asynchronous to vcpu
2897 * execution; mutex_lock() would break them.
Avi Kivity2122ff52010-05-13 11:25:04 +03002898 */
Paolo Bonzini5cb09442017-12-12 17:41:34 +01002899 r = kvm_arch_vcpu_async_ioctl(filp, ioctl, arg);
2900 if (r != -ENOIOCTLCMD)
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002901 return r;
Avi Kivity2122ff52010-05-13 11:25:04 +03002902
Christoffer Dallec7660c2017-12-04 21:35:23 +01002903 if (mutex_lock_killable(&vcpu->mutex))
2904 return -EINTR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002905 switch (ioctl) {
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002906 case KVM_RUN: {
2907 struct pid *oldpid;
Avi Kivityf0fe5102007-03-07 13:11:17 +02002908 r = -EINVAL;
2909 if (arg)
2910 goto out;
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002911 oldpid = rcu_access_pointer(vcpu->pid);
Eric W. Biederman71dbc8a2017-07-16 21:39:32 -05002912 if (unlikely(oldpid != task_pid(current))) {
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002913 /* The thread running this VCPU changed. */
Christoffer Dallbd2a6392018-02-23 17:23:57 +01002914 struct pid *newpid;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002915
Christoffer Dallbd2a6392018-02-23 17:23:57 +01002916 r = kvm_arch_vcpu_run_pid_change(vcpu);
2917 if (r)
2918 break;
2919
2920 newpid = get_task_pid(current, PIDTYPE_PID);
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002921 rcu_assign_pointer(vcpu->pid, newpid);
2922 if (oldpid)
2923 synchronize_rcu();
2924 put_pid(oldpid);
2925 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002926 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002927 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928 break;
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002929 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002931 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002932
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002933 r = -ENOMEM;
Ben Gardonb12ce362019-02-11 11:02:49 -08002934 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL_ACCOUNT);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002935 if (!kvm_regs)
2936 goto out;
2937 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002938 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002939 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002940 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002941 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2942 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002943 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002944out_free1:
2945 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946 break;
2947 }
2948 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002949 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002950
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002951 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002952 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2953 if (IS_ERR(kvm_regs)) {
2954 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002955 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002956 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002957 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002958 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002959 break;
2960 }
2961 case KVM_GET_SREGS: {
Ben Gardonb12ce362019-02-11 11:02:49 -08002962 kvm_sregs = kzalloc(sizeof(struct kvm_sregs),
2963 GFP_KERNEL_ACCOUNT);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002964 r = -ENOMEM;
2965 if (!kvm_sregs)
2966 goto out;
2967 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 if (r)
2969 goto out;
2970 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002971 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002972 goto out;
2973 r = 0;
2974 break;
2975 }
2976 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002977 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2978 if (IS_ERR(kvm_sregs)) {
2979 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002980 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002981 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002982 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002983 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002984 break;
2985 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002986 case KVM_GET_MP_STATE: {
2987 struct kvm_mp_state mp_state;
2988
2989 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2990 if (r)
2991 goto out;
2992 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002993 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002994 goto out;
2995 r = 0;
2996 break;
2997 }
2998 case KVM_SET_MP_STATE: {
2999 struct kvm_mp_state mp_state;
3000
3001 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003002 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003003 goto out;
3004 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003005 break;
3006 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003007 case KVM_TRANSLATE: {
3008 struct kvm_translation tr;
3009
3010 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003011 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003012 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08003013 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003014 if (r)
3015 goto out;
3016 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003017 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003018 goto out;
3019 r = 0;
3020 break;
3021 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003022 case KVM_SET_GUEST_DEBUG: {
3023 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003024
3025 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003026 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003027 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003028 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003029 break;
3030 }
Avi Kivity1961d272007-03-05 19:46:05 +02003031 case KVM_SET_SIGNAL_MASK: {
3032 struct kvm_signal_mask __user *sigmask_arg = argp;
3033 struct kvm_signal_mask kvm_sigmask;
3034 sigset_t sigset, *p;
3035
3036 p = NULL;
3037 if (argp) {
3038 r = -EFAULT;
3039 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003040 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02003041 goto out;
3042 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003043 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02003044 goto out;
3045 r = -EFAULT;
3046 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003047 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02003048 goto out;
3049 p = &sigset;
3050 }
Andi Kleen376d41f2010-06-10 13:10:47 +02003051 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02003052 break;
3053 }
Avi Kivityb8836732007-04-01 16:34:31 +03003054 case KVM_GET_FPU: {
Ben Gardonb12ce362019-02-11 11:02:49 -08003055 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL_ACCOUNT);
Dave Hansenfa3795a2008-08-11 10:01:46 -07003056 r = -ENOMEM;
3057 if (!fpu)
3058 goto out;
3059 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03003060 if (r)
3061 goto out;
3062 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07003063 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03003064 goto out;
3065 r = 0;
3066 break;
3067 }
3068 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003069 fpu = memdup_user(argp, sizeof(*fpu));
3070 if (IS_ERR(fpu)) {
3071 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08003072 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03003073 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003074 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07003075 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03003076 break;
3077 }
Avi Kivitybccf2152007-02-21 18:04:26 +02003078 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02003079 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02003080 }
3081out:
Christoffer Dallec7660c2017-12-04 21:35:23 +01003082 mutex_unlock(&vcpu->mutex);
Dave Hansenfa3795a2008-08-11 10:01:46 -07003083 kfree(fpu);
3084 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02003085 return r;
3086}
3087
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003088#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02003089static long kvm_vcpu_compat_ioctl(struct file *filp,
3090 unsigned int ioctl, unsigned long arg)
3091{
3092 struct kvm_vcpu *vcpu = filp->private_data;
3093 void __user *argp = compat_ptr(arg);
3094 int r;
3095
3096 if (vcpu->kvm->mm != current->mm)
3097 return -EIO;
3098
3099 switch (ioctl) {
3100 case KVM_SET_SIGNAL_MASK: {
3101 struct kvm_signal_mask __user *sigmask_arg = argp;
3102 struct kvm_signal_mask kvm_sigmask;
Alexander Graf1dda6062011-06-08 02:45:37 +02003103 sigset_t sigset;
3104
3105 if (argp) {
3106 r = -EFAULT;
3107 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003108 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02003109 goto out;
3110 r = -EINVAL;
Al Viro3968cf62017-09-03 21:45:17 -04003111 if (kvm_sigmask.len != sizeof(compat_sigset_t))
Alexander Graf1dda6062011-06-08 02:45:37 +02003112 goto out;
3113 r = -EFAULT;
Al Viro3968cf62017-09-03 21:45:17 -04003114 if (get_compat_sigset(&sigset, (void *)sigmask_arg->sigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02003115 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01003116 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
3117 } else
3118 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02003119 break;
3120 }
3121 default:
3122 r = kvm_vcpu_ioctl(filp, ioctl, arg);
3123 }
3124
3125out:
3126 return r;
3127}
3128#endif
3129
Cédric Le Goatera1cd3f02019-04-18 12:39:36 +02003130static int kvm_device_mmap(struct file *filp, struct vm_area_struct *vma)
3131{
3132 struct kvm_device *dev = filp->private_data;
3133
3134 if (dev->ops->mmap)
3135 return dev->ops->mmap(dev, vma);
3136
3137 return -ENODEV;
3138}
3139
Scott Wood852b6d52013-04-12 14:08:42 +00003140static int kvm_device_ioctl_attr(struct kvm_device *dev,
3141 int (*accessor)(struct kvm_device *dev,
3142 struct kvm_device_attr *attr),
3143 unsigned long arg)
3144{
3145 struct kvm_device_attr attr;
3146
3147 if (!accessor)
3148 return -EPERM;
3149
3150 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
3151 return -EFAULT;
3152
3153 return accessor(dev, &attr);
3154}
3155
3156static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
3157 unsigned long arg)
3158{
3159 struct kvm_device *dev = filp->private_data;
3160
Sean Christophersonddba9182019-02-15 12:48:39 -08003161 if (dev->kvm->mm != current->mm)
3162 return -EIO;
3163
Scott Wood852b6d52013-04-12 14:08:42 +00003164 switch (ioctl) {
3165 case KVM_SET_DEVICE_ATTR:
3166 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
3167 case KVM_GET_DEVICE_ATTR:
3168 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
3169 case KVM_HAS_DEVICE_ATTR:
3170 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
3171 default:
3172 if (dev->ops->ioctl)
3173 return dev->ops->ioctl(dev, ioctl, arg);
3174
3175 return -ENOTTY;
3176 }
3177}
3178
Scott Wood852b6d52013-04-12 14:08:42 +00003179static int kvm_device_release(struct inode *inode, struct file *filp)
3180{
3181 struct kvm_device *dev = filp->private_data;
3182 struct kvm *kvm = dev->kvm;
3183
Cédric Le Goater2bde9b32019-04-18 12:39:41 +02003184 if (dev->ops->release) {
3185 mutex_lock(&kvm->lock);
3186 list_del(&dev->vm_node);
3187 dev->ops->release(dev);
3188 mutex_unlock(&kvm->lock);
3189 }
3190
Scott Wood852b6d52013-04-12 14:08:42 +00003191 kvm_put_kvm(kvm);
3192 return 0;
3193}
3194
3195static const struct file_operations kvm_device_fops = {
3196 .unlocked_ioctl = kvm_device_ioctl,
3197 .release = kvm_device_release,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003198 KVM_COMPAT(kvm_device_ioctl),
Cédric Le Goatera1cd3f02019-04-18 12:39:36 +02003199 .mmap = kvm_device_mmap,
Scott Wood852b6d52013-04-12 14:08:42 +00003200};
3201
3202struct kvm_device *kvm_device_from_filp(struct file *filp)
3203{
3204 if (filp->f_op != &kvm_device_fops)
3205 return NULL;
3206
3207 return filp->private_data;
3208}
3209
Steven Price8538cb22019-10-21 16:28:19 +01003210static const struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
Will Deacond60eacb2014-09-02 10:27:33 +01003211#ifdef CONFIG_KVM_MPIC
3212 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
3213 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
3214#endif
Will Deacond60eacb2014-09-02 10:27:33 +01003215};
3216
Steven Price8538cb22019-10-21 16:28:19 +01003217int kvm_register_device_ops(const struct kvm_device_ops *ops, u32 type)
Will Deacond60eacb2014-09-02 10:27:33 +01003218{
3219 if (type >= ARRAY_SIZE(kvm_device_ops_table))
3220 return -ENOSPC;
3221
3222 if (kvm_device_ops_table[type] != NULL)
3223 return -EEXIST;
3224
3225 kvm_device_ops_table[type] = ops;
3226 return 0;
3227}
3228
Wanpeng Li571ee1b2014-10-09 18:30:08 +08003229void kvm_unregister_device_ops(u32 type)
3230{
3231 if (kvm_device_ops_table[type] != NULL)
3232 kvm_device_ops_table[type] = NULL;
3233}
3234
Scott Wood852b6d52013-04-12 14:08:42 +00003235static int kvm_ioctl_create_device(struct kvm *kvm,
3236 struct kvm_create_device *cd)
3237{
Steven Price8538cb22019-10-21 16:28:19 +01003238 const struct kvm_device_ops *ops = NULL;
Scott Wood852b6d52013-04-12 14:08:42 +00003239 struct kvm_device *dev;
3240 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003241 int type;
Scott Wood852b6d52013-04-12 14:08:42 +00003242 int ret;
3243
Will Deacond60eacb2014-09-02 10:27:33 +01003244 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00003245 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01003246
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003247 type = array_index_nospec(cd->type, ARRAY_SIZE(kvm_device_ops_table));
3248 ops = kvm_device_ops_table[type];
Will Deacond60eacb2014-09-02 10:27:33 +01003249 if (ops == NULL)
3250 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00003251
3252 if (test)
3253 return 0;
3254
Ben Gardonb12ce362019-02-11 11:02:49 -08003255 dev = kzalloc(sizeof(*dev), GFP_KERNEL_ACCOUNT);
Scott Wood852b6d52013-04-12 14:08:42 +00003256 if (!dev)
3257 return -ENOMEM;
3258
3259 dev->ops = ops;
3260 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00003261
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003262 mutex_lock(&kvm->lock);
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003263 ret = ops->create(dev, type);
Scott Wood852b6d52013-04-12 14:08:42 +00003264 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003265 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00003266 kfree(dev);
3267 return ret;
3268 }
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003269 list_add(&dev->vm_node, &kvm->devices);
3270 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00003271
Christoffer Dall023e9fd2016-08-09 19:13:00 +02003272 if (ops->init)
3273 ops->init(dev);
3274
Jann Horncfa39382019-01-26 01:54:33 +01003275 kvm_get_kvm(kvm);
Yann Droneaud24009b02013-08-24 22:14:07 +02003276 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00003277 if (ret < 0) {
Sean Christopherson149487b2019-10-21 15:58:42 -07003278 kvm_put_kvm_no_destroy(kvm);
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003279 mutex_lock(&kvm->lock);
3280 list_del(&dev->vm_node);
3281 mutex_unlock(&kvm->lock);
Dan Carpentera0f1d212016-11-30 22:21:05 +03003282 ops->destroy(dev);
Scott Wood852b6d52013-04-12 14:08:42 +00003283 return ret;
3284 }
3285
Scott Wood852b6d52013-04-12 14:08:42 +00003286 cd->fd = ret;
3287 return 0;
3288}
3289
Alexander Graf92b591a2014-07-14 18:33:08 +02003290static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
3291{
3292 switch (arg) {
3293 case KVM_CAP_USER_MEMORY:
3294 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
3295 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Alexander Graf92b591a2014-07-14 18:33:08 +02003296 case KVM_CAP_INTERNAL_ERROR_DATA:
3297#ifdef CONFIG_HAVE_KVM_MSI
3298 case KVM_CAP_SIGNAL_MSI:
3299#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10003300#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01003301 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02003302 case KVM_CAP_IRQFD_RESAMPLE:
3303#endif
Jason Wange9ea5062015-09-15 14:41:59 +08003304 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
Alexander Graf92b591a2014-07-14 18:33:08 +02003305 case KVM_CAP_CHECK_EXTENSION_VM:
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003306 case KVM_CAP_ENABLE_CAP_VM:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003307#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
Peter Xud7547c52019-05-08 17:15:47 +08003308 case KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003309#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02003310 return 1;
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003311#ifdef CONFIG_KVM_MMIO
Paolo Bonzini30422552017-03-31 13:53:22 +02003312 case KVM_CAP_COALESCED_MMIO:
3313 return KVM_COALESCED_MMIO_PAGE_OFFSET;
Peng Hao0804c842018-10-14 07:09:55 +08003314 case KVM_CAP_COALESCED_PIO:
3315 return 1;
Paolo Bonzini30422552017-03-31 13:53:22 +02003316#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02003317#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3318 case KVM_CAP_IRQ_ROUTING:
3319 return KVM_MAX_IRQ_ROUTES;
3320#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02003321#if KVM_ADDRESS_SPACE_NUM > 1
3322 case KVM_CAP_MULTI_ADDRESS_SPACE:
3323 return KVM_ADDRESS_SPACE_NUM;
3324#endif
Paolo Bonzinic110ae52019-03-28 17:24:03 +01003325 case KVM_CAP_NR_MEMSLOTS:
3326 return KVM_USER_MEM_SLOTS;
Alexander Graf92b591a2014-07-14 18:33:08 +02003327 default:
3328 break;
3329 }
3330 return kvm_vm_ioctl_check_extension(kvm, arg);
3331}
3332
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003333int __attribute__((weak)) kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3334 struct kvm_enable_cap *cap)
3335{
3336 return -EINVAL;
3337}
3338
3339static int kvm_vm_ioctl_enable_cap_generic(struct kvm *kvm,
3340 struct kvm_enable_cap *cap)
3341{
3342 switch (cap->cap) {
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003343#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
Peter Xud7547c52019-05-08 17:15:47 +08003344 case KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003345 if (cap->flags || (cap->args[0] & ~1))
3346 return -EINVAL;
3347 kvm->manual_dirty_log_protect = cap->args[0];
3348 return 0;
3349#endif
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003350 default:
3351 return kvm_vm_ioctl_enable_cap(kvm, cap);
3352 }
3353}
3354
Avi Kivitybccf2152007-02-21 18:04:26 +02003355static long kvm_vm_ioctl(struct file *filp,
3356 unsigned int ioctl, unsigned long arg)
3357{
3358 struct kvm *kvm = filp->private_data;
3359 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003360 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02003361
Avi Kivity6d4e4c42007-11-21 16:41:05 +02003362 if (kvm->mm != current->mm)
3363 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02003364 switch (ioctl) {
3365 case KVM_CREATE_VCPU:
3366 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02003367 break;
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003368 case KVM_ENABLE_CAP: {
3369 struct kvm_enable_cap cap;
3370
3371 r = -EFAULT;
3372 if (copy_from_user(&cap, argp, sizeof(cap)))
3373 goto out;
3374 r = kvm_vm_ioctl_enable_cap_generic(kvm, &cap);
3375 break;
3376 }
Izik Eidus6fc138d2007-10-09 19:20:39 +02003377 case KVM_SET_USER_MEMORY_REGION: {
3378 struct kvm_userspace_memory_region kvm_userspace_mem;
3379
3380 r = -EFAULT;
3381 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003382 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02003383 goto out;
3384
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09003385 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003386 break;
3387 }
3388 case KVM_GET_DIRTY_LOG: {
3389 struct kvm_dirty_log log;
3390
3391 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003392 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003393 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02003394 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003395 break;
3396 }
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003397#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
3398 case KVM_CLEAR_DIRTY_LOG: {
3399 struct kvm_clear_dirty_log log;
3400
3401 r = -EFAULT;
3402 if (copy_from_user(&log, argp, sizeof(log)))
3403 goto out;
3404 r = kvm_vm_ioctl_clear_dirty_log(kvm, &log);
3405 break;
3406 }
3407#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003408#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02003409 case KVM_REGISTER_COALESCED_MMIO: {
3410 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003411
Laurent Vivier5f94c172008-05-30 16:05:54 +02003412 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003413 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003414 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003415 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003416 break;
3417 }
3418 case KVM_UNREGISTER_COALESCED_MMIO: {
3419 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003420
Laurent Vivier5f94c172008-05-30 16:05:54 +02003421 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003422 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003423 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003424 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003425 break;
3426 }
3427#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003428 case KVM_IRQFD: {
3429 struct kvm_irqfd data;
3430
3431 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003432 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003433 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06003434 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003435 break;
3436 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003437 case KVM_IOEVENTFD: {
3438 struct kvm_ioeventfd data;
3439
3440 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003441 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003442 goto out;
3443 r = kvm_ioeventfd(kvm, &data);
3444 break;
3445 }
Jan Kiszka07975ad2012-03-29 21:14:12 +02003446#ifdef CONFIG_HAVE_KVM_MSI
3447 case KVM_SIGNAL_MSI: {
3448 struct kvm_msi msi;
3449
3450 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003451 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02003452 goto out;
3453 r = kvm_send_userspace_msi(kvm, &msi);
3454 break;
3455 }
3456#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003457#ifdef __KVM_HAVE_IRQ_LINE
3458 case KVM_IRQ_LINE_STATUS:
3459 case KVM_IRQ_LINE: {
3460 struct kvm_irq_level irq_event;
3461
3462 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003463 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003464 goto out;
3465
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003466 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3467 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003468 if (r)
3469 goto out;
3470
3471 r = -EFAULT;
3472 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08003473 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003474 goto out;
3475 }
3476
3477 r = 0;
3478 break;
3479 }
3480#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02003481#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3482 case KVM_SET_GSI_ROUTING: {
3483 struct kvm_irq_routing routing;
3484 struct kvm_irq_routing __user *urouting;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003485 struct kvm_irq_routing_entry *entries = NULL;
Alexander Grafaa8d5942013-04-15 21:12:53 +02003486
3487 r = -EFAULT;
3488 if (copy_from_user(&routing, argp, sizeof(routing)))
3489 goto out;
3490 r = -EINVAL;
David Hildenbrand5c0aea02017-04-28 17:06:20 +02003491 if (!kvm_arch_can_set_irq_routing(kvm))
3492 goto out;
Xiubo Licaf1ff22016-06-15 18:00:33 +08003493 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02003494 goto out;
3495 if (routing.flags)
3496 goto out;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003497 if (routing.nr) {
3498 r = -ENOMEM;
Kees Cook42bc47b2018-06-12 14:27:11 -07003499 entries = vmalloc(array_size(sizeof(*entries),
3500 routing.nr));
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003501 if (!entries)
3502 goto out;
3503 r = -EFAULT;
3504 urouting = argp;
3505 if (copy_from_user(entries, urouting->entries,
3506 routing.nr * sizeof(*entries)))
3507 goto out_free_irq_routing;
3508 }
Alexander Grafaa8d5942013-04-15 21:12:53 +02003509 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3510 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08003511out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02003512 vfree(entries);
3513 break;
3514 }
3515#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00003516 case KVM_CREATE_DEVICE: {
3517 struct kvm_create_device cd;
3518
3519 r = -EFAULT;
3520 if (copy_from_user(&cd, argp, sizeof(cd)))
3521 goto out;
3522
3523 r = kvm_ioctl_create_device(kvm, &cd);
3524 if (r)
3525 goto out;
3526
3527 r = -EFAULT;
3528 if (copy_to_user(argp, &cd, sizeof(cd)))
3529 goto out;
3530
3531 r = 0;
3532 break;
3533 }
Alexander Graf92b591a2014-07-14 18:33:08 +02003534 case KVM_CHECK_EXTENSION:
3535 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3536 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02003537 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003538 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003539 }
3540out:
3541 return r;
3542}
3543
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003544#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003545struct compat_kvm_dirty_log {
3546 __u32 slot;
3547 __u32 padding1;
3548 union {
3549 compat_uptr_t dirty_bitmap; /* one bit per page */
3550 __u64 padding2;
3551 };
3552};
3553
3554static long kvm_vm_compat_ioctl(struct file *filp,
3555 unsigned int ioctl, unsigned long arg)
3556{
3557 struct kvm *kvm = filp->private_data;
3558 int r;
3559
3560 if (kvm->mm != current->mm)
3561 return -EIO;
3562 switch (ioctl) {
3563 case KVM_GET_DIRTY_LOG: {
3564 struct compat_kvm_dirty_log compat_log;
3565 struct kvm_dirty_log log;
3566
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003567 if (copy_from_user(&compat_log, (void __user *)arg,
3568 sizeof(compat_log)))
Markus Elfringf6a3b162017-01-22 11:30:21 +01003569 return -EFAULT;
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003570 log.slot = compat_log.slot;
3571 log.padding1 = compat_log.padding1;
3572 log.padding2 = compat_log.padding2;
3573 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3574
3575 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003576 break;
3577 }
3578 default:
3579 r = kvm_vm_ioctl(filp, ioctl, arg);
3580 }
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003581 return r;
3582}
3583#endif
3584
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003585static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02003586 .release = kvm_vm_release,
3587 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003588 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003589 KVM_COMPAT(kvm_vm_compat_ioctl),
Avi Kivityf17abe92007-02-21 19:28:04 +02003590};
3591
Carsten Ottee08b9632012-01-04 10:25:20 +01003592static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02003593{
Heiko Carstensaac87632010-10-27 17:22:10 +02003594 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003595 struct kvm *kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003596 struct file *file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003597
Carsten Ottee08b9632012-01-04 10:25:20 +01003598 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04003599 if (IS_ERR(kvm))
3600 return PTR_ERR(kvm);
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003601#ifdef CONFIG_KVM_MMIO
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003602 r = kvm_coalesced_mmio_init(kvm);
Markus Elfring78588332017-11-21 13:40:17 +01003603 if (r < 0)
3604 goto put_kvm;
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003605#endif
Al Viro506cfba2016-07-14 18:54:17 +02003606 r = get_unused_fd_flags(O_CLOEXEC);
Markus Elfring78588332017-11-21 13:40:17 +01003607 if (r < 0)
3608 goto put_kvm;
3609
Al Viro506cfba2016-07-14 18:54:17 +02003610 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3611 if (IS_ERR(file)) {
3612 put_unused_fd(r);
Markus Elfring78588332017-11-21 13:40:17 +01003613 r = PTR_ERR(file);
3614 goto put_kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003615 }
Janosch Frank536a6f82016-05-18 13:26:23 +02003616
Paolo Bonzini525df862017-06-27 15:45:09 +02003617 /*
3618 * Don't call kvm_put_kvm anymore at this point; file->f_op is
3619 * already set, with ->release() being kvm_vm_release(). In error
3620 * cases it will be called by the final fput(file) and will take
3621 * care of doing kvm_put_kvm(kvm).
3622 */
Janosch Frank536a6f82016-05-18 13:26:23 +02003623 if (kvm_create_vm_debugfs(kvm, r) < 0) {
Al Viro506cfba2016-07-14 18:54:17 +02003624 put_unused_fd(r);
3625 fput(file);
Janosch Frank536a6f82016-05-18 13:26:23 +02003626 return -ENOMEM;
3627 }
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02003628 kvm_uevent_notify_change(KVM_EVENT_CREATE_VM, kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02003629
Al Viro506cfba2016-07-14 18:54:17 +02003630 fd_install(r, file);
Heiko Carstensaac87632010-10-27 17:22:10 +02003631 return r;
Markus Elfring78588332017-11-21 13:40:17 +01003632
3633put_kvm:
3634 kvm_put_kvm(kvm);
3635 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003636}
3637
3638static long kvm_dev_ioctl(struct file *filp,
3639 unsigned int ioctl, unsigned long arg)
3640{
Avi Kivity07c45a32007-03-07 13:05:38 +02003641 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003642
3643 switch (ioctl) {
3644 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003645 if (arg)
3646 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003647 r = KVM_API_VERSION;
3648 break;
3649 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01003650 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003651 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003652 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02003653 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02003654 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02003655 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02003656 if (arg)
3657 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02003658 r = PAGE_SIZE; /* struct kvm_run */
3659#ifdef CONFIG_X86
3660 r += PAGE_SIZE; /* pio data page */
3661#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003662#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02003663 r += PAGE_SIZE; /* coalesced mmio ring page */
3664#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02003665 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003666 case KVM_TRACE_ENABLE:
3667 case KVM_TRACE_PAUSE:
3668 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03003669 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003670 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003671 default:
Carsten Otte043405e2007-10-10 17:16:19 +02003672 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003673 }
3674out:
3675 return r;
3676}
3677
Avi Kivity6aa8b732006-12-10 02:21:36 -08003678static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003679 .unlocked_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003680 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003681 KVM_COMPAT(kvm_dev_ioctl),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003682};
3683
3684static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003685 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003686 "kvm",
3687 &kvm_chardev_ops,
3688};
3689
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003690static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003691{
3692 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02003693 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03003694
Rusty Russell7f59f492008-12-07 21:25:45 +10303695 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003696 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02003697
Rusty Russell7f59f492008-12-07 21:25:45 +10303698 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02003699
Radim Krčmář13a34e02014-08-28 15:13:03 +02003700 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02003701
3702 if (r) {
3703 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3704 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08003705 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02003706 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03003707}
3708
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003709static int kvm_starting_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003710{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003711 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003712 if (kvm_usage_count)
3713 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003714 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003715 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003716}
3717
3718static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003719{
3720 int cpu = raw_smp_processor_id();
3721
Rusty Russell7f59f492008-12-07 21:25:45 +10303722 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003723 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10303724 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02003725 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03003726}
3727
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003728static int kvm_dying_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003729{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003730 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003731 if (kvm_usage_count)
3732 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003733 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003734 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003735}
3736
Alexander Graf10474ae2009-09-15 11:37:46 +02003737static void hardware_disable_all_nolock(void)
3738{
3739 BUG_ON(!kvm_usage_count);
3740
3741 kvm_usage_count--;
3742 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003743 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003744}
3745
3746static void hardware_disable_all(void)
3747{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003748 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003749 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003750 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003751}
3752
3753static int hardware_enable_all(void)
3754{
3755 int r = 0;
3756
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003757 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003758
3759 kvm_usage_count++;
3760 if (kvm_usage_count == 1) {
3761 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003762 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003763
3764 if (atomic_read(&hardware_enable_failed)) {
3765 hardware_disable_all_nolock();
3766 r = -EBUSY;
3767 }
3768 }
3769
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003770 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003771
3772 return r;
3773}
3774
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003775static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003776 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003777{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003778 /*
3779 * Some (well, at least mine) BIOSes hang on reboot if
3780 * in vmx root mode.
3781 *
3782 * And Intel TXT required VMX off for all cpu when system shutdown.
3783 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003784 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003785 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003786 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003787 return NOTIFY_OK;
3788}
3789
3790static struct notifier_block kvm_reboot_notifier = {
3791 .notifier_call = kvm_reboot,
3792 .priority = 0,
3793};
3794
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003795static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003796{
3797 int i;
3798
3799 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003800 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003801
3802 kvm_iodevice_destructor(pos);
3803 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003804 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003805}
3806
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003807static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003808 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003809{
Jason Wang8f4216c72015-09-15 14:41:57 +08003810 gpa_t addr1 = r1->addr;
3811 gpa_t addr2 = r2->addr;
3812
3813 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003814 return -1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003815
3816 /* If r2->len == 0, match the exact address. If r2->len != 0,
3817 * accept any overlapping write. Any order is acceptable for
3818 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3819 * we process all of them.
3820 */
3821 if (r2->len) {
3822 addr1 += r1->len;
3823 addr2 += r2->len;
3824 }
3825
3826 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003827 return 1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003828
Sasha Levin743eeb02011-07-27 16:00:48 +03003829 return 0;
3830}
3831
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003832static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3833{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003834 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003835}
3836
Geoff Levand39369f72013-04-05 19:20:30 +00003837static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003838 gpa_t addr, int len)
3839{
3840 struct kvm_io_range *range, key;
3841 int off;
3842
3843 key = (struct kvm_io_range) {
3844 .addr = addr,
3845 .len = len,
3846 };
3847
3848 range = bsearch(&key, bus->range, bus->dev_count,
3849 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3850 if (range == NULL)
3851 return -ENOENT;
3852
3853 off = range - bus->range;
3854
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003855 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003856 off--;
3857
3858 return off;
3859}
3860
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003861static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003862 struct kvm_io_range *range, const void *val)
3863{
3864 int idx;
3865
3866 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3867 if (idx < 0)
3868 return -EOPNOTSUPP;
3869
3870 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003871 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003872 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003873 range->len, val))
3874 return idx;
3875 idx++;
3876 }
3877
3878 return -EOPNOTSUPP;
3879}
3880
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003881/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003882int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003883 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003884{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003885 struct kvm_io_bus *bus;
3886 struct kvm_io_range range;
3887 int r;
3888
3889 range = (struct kvm_io_range) {
3890 .addr = addr,
3891 .len = len,
3892 };
3893
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003894 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003895 if (!bus)
3896 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003897 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003898 return r < 0 ? r : 0;
3899}
Leo Yana2420102019-02-22 16:10:09 +08003900EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003901
3902/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003903int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3904 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003905{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003906 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003907 struct kvm_io_range range;
3908
3909 range = (struct kvm_io_range) {
3910 .addr = addr,
3911 .len = len,
3912 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003913
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003914 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003915 if (!bus)
3916 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02003917
3918 /* First try the device referenced by cookie. */
3919 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003920 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003921 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003922 val))
3923 return cookie;
3924
3925 /*
3926 * cookie contained garbage; fall back to search and return the
3927 * correct cookie value.
3928 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003929 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003930}
3931
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003932static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3933 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003934{
3935 int idx;
3936
3937 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003938 if (idx < 0)
3939 return -EOPNOTSUPP;
3940
3941 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003942 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003943 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003944 range->len, val))
3945 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003946 idx++;
3947 }
3948
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003949 return -EOPNOTSUPP;
3950}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003951
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003952/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003953int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003954 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003955{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003956 struct kvm_io_bus *bus;
3957 struct kvm_io_range range;
3958 int r;
3959
3960 range = (struct kvm_io_range) {
3961 .addr = addr,
3962 .len = len,
3963 };
3964
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003965 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003966 if (!bus)
3967 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003968 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003969 return r < 0 ? r : 0;
3970}
3971
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003972/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003973int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3974 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003975{
Gal Hammerd4c67a72018-01-16 15:34:41 +02003976 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003977 struct kvm_io_bus *new_bus, *bus;
Gal Hammerd4c67a72018-01-16 15:34:41 +02003978 struct kvm_io_range range;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003979
Christian Borntraeger4a12f952017-07-07 10:51:38 +02003980 bus = kvm_get_bus(kvm, bus_idx);
David Hildenbrand90db1042017-03-23 18:24:19 +01003981 if (!bus)
3982 return -ENOMEM;
3983
Amos Kong6ea34c92013-05-25 06:44:15 +08003984 /* exclude ioeventfd which is limited by maximum fd */
3985 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003986 return -ENOSPC;
3987
Gustavo A. R. Silva90952cd2019-01-30 17:07:47 +01003988 new_bus = kmalloc(struct_size(bus, range, bus->dev_count + 1),
Ben Gardonb12ce362019-02-11 11:02:49 -08003989 GFP_KERNEL_ACCOUNT);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003990 if (!new_bus)
3991 return -ENOMEM;
Gal Hammerd4c67a72018-01-16 15:34:41 +02003992
3993 range = (struct kvm_io_range) {
3994 .addr = addr,
3995 .len = len,
3996 .dev = dev,
3997 };
3998
3999 for (i = 0; i < bus->dev_count; i++)
4000 if (kvm_io_bus_cmp(&bus->range[i], &range) > 0)
4001 break;
4002
4003 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
4004 new_bus->dev_count++;
4005 new_bus->range[i] = range;
4006 memcpy(new_bus->range + i + 1, bus->range + i,
4007 (bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004008 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
4009 synchronize_srcu_expedited(&kvm->srcu);
4010 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04004011
4012 return 0;
4013}
4014
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004015/* Caller must hold slots_lock. */
David Hildenbrand90db1042017-03-23 18:24:19 +01004016void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
4017 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04004018{
David Hildenbrand90db1042017-03-23 18:24:19 +01004019 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004020 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03004021
Christian Borntraeger4a12f952017-07-07 10:51:38 +02004022 bus = kvm_get_bus(kvm, bus_idx);
Peter Xudf630b82017-03-15 16:01:17 +08004023 if (!bus)
David Hildenbrand90db1042017-03-23 18:24:19 +01004024 return;
Peter Xudf630b82017-03-15 16:01:17 +08004025
Amos Konga13007162012-03-09 12:17:32 +08004026 for (i = 0; i < bus->dev_count; i++)
4027 if (bus->range[i].dev == dev) {
Gregory Haskins090b7af2009-07-07 17:08:44 -04004028 break;
4029 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004030
David Hildenbrand90db1042017-03-23 18:24:19 +01004031 if (i == bus->dev_count)
4032 return;
Amos Konga13007162012-03-09 12:17:32 +08004033
Gustavo A. R. Silva90952cd2019-01-30 17:07:47 +01004034 new_bus = kmalloc(struct_size(bus, range, bus->dev_count - 1),
Ben Gardonb12ce362019-02-11 11:02:49 -08004035 GFP_KERNEL_ACCOUNT);
David Hildenbrand90db1042017-03-23 18:24:19 +01004036 if (!new_bus) {
4037 pr_err("kvm: failed to shrink bus, removing it completely\n");
4038 goto broken;
4039 }
Amos Konga13007162012-03-09 12:17:32 +08004040
4041 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
4042 new_bus->dev_count--;
4043 memcpy(new_bus->range + i, bus->range + i + 1,
4044 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004045
David Hildenbrand90db1042017-03-23 18:24:19 +01004046broken:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004047 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
4048 synchronize_srcu_expedited(&kvm->srcu);
4049 kfree(bus);
David Hildenbrand90db1042017-03-23 18:24:19 +01004050 return;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04004051}
4052
Andre Przywara8a39d002016-07-15 12:43:26 +01004053struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
4054 gpa_t addr)
4055{
4056 struct kvm_io_bus *bus;
4057 int dev_idx, srcu_idx;
4058 struct kvm_io_device *iodev = NULL;
4059
4060 srcu_idx = srcu_read_lock(&kvm->srcu);
4061
4062 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01004063 if (!bus)
4064 goto out_unlock;
Andre Przywara8a39d002016-07-15 12:43:26 +01004065
4066 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
4067 if (dev_idx < 0)
4068 goto out_unlock;
4069
4070 iodev = bus->range[dev_idx].dev;
4071
4072out_unlock:
4073 srcu_read_unlock(&kvm->srcu, srcu_idx);
4074
4075 return iodev;
4076}
4077EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
4078
Janosch Frank536a6f82016-05-18 13:26:23 +02004079static int kvm_debugfs_open(struct inode *inode, struct file *file,
4080 int (*get)(void *, u64 *), int (*set)(void *, u64),
4081 const char *fmt)
4082{
4083 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
4084 inode->i_private;
4085
4086 /* The debugfs files are a reference to the kvm struct which
4087 * is still valid when kvm_destroy_vm is called.
4088 * To avoid the race between open and the removal of the debugfs
4089 * directory we test against the users count.
4090 */
Elena Reshetovae3736c32017-02-20 13:06:21 +02004091 if (!refcount_inc_not_zero(&stat_data->kvm->users_count))
Janosch Frank536a6f82016-05-18 13:26:23 +02004092 return -ENOENT;
4093
Paolo Bonzini833b45d2019-09-30 18:48:44 +02004094 if (simple_attr_open(inode, file, get,
4095 stat_data->mode & S_IWUGO ? set : NULL,
4096 fmt)) {
Janosch Frank536a6f82016-05-18 13:26:23 +02004097 kvm_put_kvm(stat_data->kvm);
4098 return -ENOMEM;
4099 }
4100
4101 return 0;
4102}
4103
4104static int kvm_debugfs_release(struct inode *inode, struct file *file)
4105{
4106 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
4107 inode->i_private;
4108
4109 simple_attr_release(inode, file);
4110 kvm_put_kvm(stat_data->kvm);
4111
4112 return 0;
4113}
4114
4115static int vm_stat_get_per_vm(void *data, u64 *val)
4116{
4117 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
4118
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10004119 *val = *(ulong *)((void *)stat_data->kvm + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02004120
4121 return 0;
4122}
4123
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004124static int vm_stat_clear_per_vm(void *data, u64 val)
4125{
4126 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
4127
4128 if (val)
4129 return -EINVAL;
4130
4131 *(ulong *)((void *)stat_data->kvm + stat_data->offset) = 0;
4132
4133 return 0;
4134}
4135
Janosch Frank536a6f82016-05-18 13:26:23 +02004136static int vm_stat_get_per_vm_open(struct inode *inode, struct file *file)
4137{
4138 __simple_attr_check_format("%llu\n", 0ull);
4139 return kvm_debugfs_open(inode, file, vm_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004140 vm_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02004141}
4142
4143static const struct file_operations vm_stat_get_per_vm_fops = {
4144 .owner = THIS_MODULE,
4145 .open = vm_stat_get_per_vm_open,
4146 .release = kvm_debugfs_release,
4147 .read = simple_attr_read,
4148 .write = simple_attr_write,
Geliang Tang3bed8882017-05-06 23:37:19 +08004149 .llseek = no_llseek,
Janosch Frank536a6f82016-05-18 13:26:23 +02004150};
4151
4152static int vcpu_stat_get_per_vm(void *data, u64 *val)
4153{
4154 int i;
4155 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
4156 struct kvm_vcpu *vcpu;
4157
4158 *val = 0;
4159
4160 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10004161 *val += *(u64 *)((void *)vcpu + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02004162
4163 return 0;
4164}
4165
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004166static int vcpu_stat_clear_per_vm(void *data, u64 val)
4167{
4168 int i;
4169 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
4170 struct kvm_vcpu *vcpu;
4171
4172 if (val)
4173 return -EINVAL;
4174
4175 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
4176 *(u64 *)((void *)vcpu + stat_data->offset) = 0;
4177
4178 return 0;
4179}
4180
Janosch Frank536a6f82016-05-18 13:26:23 +02004181static int vcpu_stat_get_per_vm_open(struct inode *inode, struct file *file)
4182{
4183 __simple_attr_check_format("%llu\n", 0ull);
4184 return kvm_debugfs_open(inode, file, vcpu_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004185 vcpu_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02004186}
4187
4188static const struct file_operations vcpu_stat_get_per_vm_fops = {
4189 .owner = THIS_MODULE,
4190 .open = vcpu_stat_get_per_vm_open,
4191 .release = kvm_debugfs_release,
4192 .read = simple_attr_read,
4193 .write = simple_attr_write,
Geliang Tang3bed8882017-05-06 23:37:19 +08004194 .llseek = no_llseek,
Janosch Frank536a6f82016-05-18 13:26:23 +02004195};
4196
4197static const struct file_operations *stat_fops_per_vm[] = {
4198 [KVM_STAT_VCPU] = &vcpu_stat_get_per_vm_fops,
4199 [KVM_STAT_VM] = &vm_stat_get_per_vm_fops,
4200};
4201
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004202static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02004203{
4204 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02004205 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02004206 struct kvm_stat_data stat_tmp = {.offset = offset};
4207 u64 tmp_val;
Avi Kivityba1389b2007-11-18 16:24:12 +02004208
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004209 *val = 0;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004210 mutex_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02004211 list_for_each_entry(kvm, &vm_list, vm_list) {
4212 stat_tmp.kvm = kvm;
4213 vm_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
4214 *val += tmp_val;
4215 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004216 mutex_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004217 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02004218}
4219
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004220static int vm_stat_clear(void *_offset, u64 val)
4221{
4222 unsigned offset = (long)_offset;
4223 struct kvm *kvm;
4224 struct kvm_stat_data stat_tmp = {.offset = offset};
4225
4226 if (val)
4227 return -EINVAL;
4228
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004229 mutex_lock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004230 list_for_each_entry(kvm, &vm_list, vm_list) {
4231 stat_tmp.kvm = kvm;
4232 vm_stat_clear_per_vm((void *)&stat_tmp, 0);
4233 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004234 mutex_unlock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004235
4236 return 0;
4237}
4238
4239DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02004240
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004241static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03004242{
4243 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004244 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02004245 struct kvm_stat_data stat_tmp = {.offset = offset};
4246 u64 tmp_val;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004247
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004248 *val = 0;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004249 mutex_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02004250 list_for_each_entry(kvm, &vm_list, vm_list) {
4251 stat_tmp.kvm = kvm;
4252 vcpu_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
4253 *val += tmp_val;
4254 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004255 mutex_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004256 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004257}
4258
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004259static int vcpu_stat_clear(void *_offset, u64 val)
4260{
4261 unsigned offset = (long)_offset;
4262 struct kvm *kvm;
4263 struct kvm_stat_data stat_tmp = {.offset = offset};
4264
4265 if (val)
4266 return -EINVAL;
4267
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004268 mutex_lock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004269 list_for_each_entry(kvm, &vm_list, vm_list) {
4270 stat_tmp.kvm = kvm;
4271 vcpu_stat_clear_per_vm((void *)&stat_tmp, 0);
4272 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004273 mutex_unlock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004274
4275 return 0;
4276}
4277
4278DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
4279 "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02004280
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004281static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02004282 [KVM_STAT_VCPU] = &vcpu_stat_fops,
4283 [KVM_STAT_VM] = &vm_stat_fops,
4284};
Avi Kivity1165f5f2007-04-19 17:27:43 +03004285
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004286static void kvm_uevent_notify_change(unsigned int type, struct kvm *kvm)
4287{
4288 struct kobj_uevent_env *env;
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004289 unsigned long long created, active;
4290
4291 if (!kvm_dev.this_device || !kvm)
4292 return;
4293
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004294 mutex_lock(&kvm_lock);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004295 if (type == KVM_EVENT_CREATE_VM) {
4296 kvm_createvm_count++;
4297 kvm_active_vms++;
4298 } else if (type == KVM_EVENT_DESTROY_VM) {
4299 kvm_active_vms--;
4300 }
4301 created = kvm_createvm_count;
4302 active = kvm_active_vms;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004303 mutex_unlock(&kvm_lock);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004304
Ben Gardonb12ce362019-02-11 11:02:49 -08004305 env = kzalloc(sizeof(*env), GFP_KERNEL_ACCOUNT);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004306 if (!env)
4307 return;
4308
4309 add_uevent_var(env, "CREATED=%llu", created);
4310 add_uevent_var(env, "COUNT=%llu", active);
4311
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004312 if (type == KVM_EVENT_CREATE_VM) {
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004313 add_uevent_var(env, "EVENT=create");
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004314 kvm->userspace_pid = task_pid_nr(current);
4315 } else if (type == KVM_EVENT_DESTROY_VM) {
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004316 add_uevent_var(env, "EVENT=destroy");
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004317 }
4318 add_uevent_var(env, "PID=%d", kvm->userspace_pid);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004319
Greg Kroah-Hartman8ed05792019-02-28 16:34:37 +01004320 if (!IS_ERR_OR_NULL(kvm->debugfs_dentry)) {
Ben Gardonb12ce362019-02-11 11:02:49 -08004321 char *tmp, *p = kmalloc(PATH_MAX, GFP_KERNEL_ACCOUNT);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004322
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004323 if (p) {
4324 tmp = dentry_path_raw(kvm->debugfs_dentry, p, PATH_MAX);
4325 if (!IS_ERR(tmp))
4326 add_uevent_var(env, "STATS_PATH=%s", tmp);
4327 kfree(p);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004328 }
4329 }
4330 /* no need for checks, since we are adding at most only 5 keys */
4331 env->envp[env->envp_idx++] = NULL;
4332 kobject_uevent_env(&kvm_dev.this_device->kobj, KOBJ_CHANGE, env->envp);
4333 kfree(env);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004334}
4335
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004336static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337{
4338 struct kvm_stats_debugfs_item *p;
4339
Hollis Blanchard76f7c872008-04-15 16:05:42 -05004340 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08004341
Janosch Frank536a6f82016-05-18 13:26:23 +02004342 kvm_debugfs_num_entries = 0;
4343 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
Paolo Bonzini833b45d2019-09-30 18:48:44 +02004344 int mode = p->mode ? p->mode : 0644;
4345 debugfs_create_file(p->name, mode, kvm_debugfs_dir,
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004346 (void *)(long)p->offset,
4347 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08004348 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004349}
4350
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004351static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08004352{
Alexander Graf10474ae2009-09-15 11:37:46 +02004353 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004354 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08004355 return 0;
4356}
4357
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004358static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08004359{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10004360 if (kvm_usage_count) {
Wanpeng Li2eb06c32019-05-17 16:49:49 +08004361#ifdef CONFIG_LOCKDEP
4362 WARN_ON(lockdep_is_held(&kvm_count_lock));
4363#endif
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004364 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10004365 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08004366}
4367
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004368static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08004369 .suspend = kvm_suspend,
4370 .resume = kvm_resume,
4371};
4372
Avi Kivity15ad7142007-07-11 18:17:21 +03004373static inline
4374struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
4375{
4376 return container_of(pn, struct kvm_vcpu, preempt_notifier);
4377}
4378
4379static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
4380{
4381 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08004382
Wanpeng Li046ddee2019-08-01 11:30:14 +08004383 WRITE_ONCE(vcpu->preempted, false);
Wanpeng Lid73eb572019-07-18 19:39:06 +08004384 WRITE_ONCE(vcpu->ready, false);
Avi Kivity15ad7142007-07-11 18:17:21 +03004385
Radim Krčmáře790d9e2014-08-21 18:08:05 +02004386 kvm_arch_sched_in(vcpu, cpu);
4387
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004388 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03004389}
4390
4391static void kvm_sched_out(struct preempt_notifier *pn,
4392 struct task_struct *next)
4393{
4394 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
4395
Wanpeng Lid73eb572019-07-18 19:39:06 +08004396 if (current->state == TASK_RUNNING) {
Wanpeng Li046ddee2019-08-01 11:30:14 +08004397 WRITE_ONCE(vcpu->preempted, true);
Wanpeng Lid73eb572019-07-18 19:39:06 +08004398 WRITE_ONCE(vcpu->ready, true);
4399 }
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004400 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03004401}
4402
Sean Christophersonf257d6d2019-04-19 22:18:17 -07004403static void check_processor_compat(void *rtn)
4404{
4405 *(int *)rtn = kvm_arch_check_processor_compat();
4406}
4407
Avi Kivity0ee75be2010-04-28 15:39:01 +03004408int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10004409 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004410{
4411 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004412 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004413
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004414 r = kvm_arch_init(opaque);
4415 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08004416 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004417
Asias He7dac16c2013-05-08 10:57:29 +08004418 /*
4419 * kvm_arch_init makes sure there's at most one caller
4420 * for architectures that support multiple implementations,
4421 * like intel and amd on x86.
Paolo Bonzini36343f62016-10-26 13:35:56 +02004422 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
4423 * conflicts in case kvm is already setup for another implementation.
Asias He7dac16c2013-05-08 10:57:29 +08004424 */
Paolo Bonzini36343f62016-10-26 13:35:56 +02004425 r = kvm_irqfd_init();
4426 if (r)
4427 goto out_irqfd;
Asias He7dac16c2013-05-08 10:57:29 +08004428
Avi Kivity8437a6172009-06-06 14:52:35 -07004429 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10304430 r = -ENOMEM;
4431 goto out_free_0;
4432 }
4433
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004434 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004435 if (r < 0)
Miaohe Linfaf0be22019-11-23 10:45:50 +08004436 goto out_free_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004437
Yang, Sheng002c7f72007-07-31 14:23:01 +03004438 for_each_online_cpu(cpu) {
Sean Christophersonf257d6d2019-04-19 22:18:17 -07004439 smp_call_function_single(cpu, check_processor_compat, &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03004440 if (r < 0)
Miaohe Linfaf0be22019-11-23 10:45:50 +08004441 goto out_free_2;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004442 }
4443
Thomas Gleixner73c1b412016-12-21 20:19:54 +01004444 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004445 kvm_starting_cpu, kvm_dying_cpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08004446 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08004447 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004448 register_reboot_notifier(&kvm_reboot_notifier);
4449
Rusty Russellc16f8622007-07-30 21:12:19 +10004450 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03004451 if (!vcpu_align)
4452 vcpu_align = __alignof__(struct kvm_vcpu);
Paolo Bonzini46515732017-10-26 15:45:46 +02004453 kvm_vcpu_cache =
4454 kmem_cache_create_usercopy("kvm_vcpu", vcpu_size, vcpu_align,
4455 SLAB_ACCOUNT,
4456 offsetof(struct kvm_vcpu, arch),
4457 sizeof_field(struct kvm_vcpu, arch),
4458 NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10004459 if (!kvm_vcpu_cache) {
4460 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004461 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10004462 }
4463
Gleb Natapovaf585b92010-10-14 11:22:46 +02004464 r = kvm_async_pf_init();
4465 if (r)
4466 goto out_free;
4467
Avi Kivity6aa8b732006-12-10 02:21:36 -08004468 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01004469 kvm_vm_fops.owner = module;
4470 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004471
4472 r = misc_register(&kvm_dev);
4473 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08004474 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02004475 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004476 }
4477
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004478 register_syscore_ops(&kvm_syscore_ops);
4479
Avi Kivity15ad7142007-07-11 18:17:21 +03004480 kvm_preempt_ops.sched_in = kvm_sched_in;
4481 kvm_preempt_ops.sched_out = kvm_sched_out;
4482
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004483 kvm_init_debug();
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07004484
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02004485 r = kvm_vfio_ops_init();
4486 WARN_ON(r);
4487
Avi Kivityc7addb92007-09-16 18:58:32 +02004488 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004489
Gleb Natapovaf585b92010-10-14 11:22:46 +02004490out_unreg:
4491 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004492out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10004493 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004494out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004495 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004496 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004497out_free_2:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004498 kvm_arch_hardware_unsetup();
Miaohe Linfaf0be22019-11-23 10:45:50 +08004499out_free_1:
Rusty Russell7f59f492008-12-07 21:25:45 +10304500 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004501out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004502 kvm_irqfd_exit();
Paolo Bonzini36343f62016-10-26 13:35:56 +02004503out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08004504 kvm_arch_exit();
4505out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004506 return r;
4507}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004508EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004509
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004510void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004511{
Janosch Frank4bd33b52015-10-14 12:37:35 +02004512 debugfs_remove_recursive(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004513 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10004514 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004515 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004516 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004517 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004518 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004519 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004520 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004521 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004522 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10304523 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08004524 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004525}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004526EXPORT_SYMBOL_GPL(kvm_exit);
Junaid Shahidc57c8042019-11-04 12:22:02 +01004527
4528struct kvm_vm_worker_thread_context {
4529 struct kvm *kvm;
4530 struct task_struct *parent;
4531 struct completion init_done;
4532 kvm_vm_thread_fn_t thread_fn;
4533 uintptr_t data;
4534 int err;
4535};
4536
4537static int kvm_vm_worker_thread(void *context)
4538{
4539 /*
4540 * The init_context is allocated on the stack of the parent thread, so
4541 * we have to locally copy anything that is needed beyond initialization
4542 */
4543 struct kvm_vm_worker_thread_context *init_context = context;
4544 struct kvm *kvm = init_context->kvm;
4545 kvm_vm_thread_fn_t thread_fn = init_context->thread_fn;
4546 uintptr_t data = init_context->data;
4547 int err;
4548
4549 err = kthread_park(current);
4550 /* kthread_park(current) is never supposed to return an error */
4551 WARN_ON(err != 0);
4552 if (err)
4553 goto init_complete;
4554
4555 err = cgroup_attach_task_all(init_context->parent, current);
4556 if (err) {
4557 kvm_err("%s: cgroup_attach_task_all failed with err %d\n",
4558 __func__, err);
4559 goto init_complete;
4560 }
4561
4562 set_user_nice(current, task_nice(init_context->parent));
4563
4564init_complete:
4565 init_context->err = err;
4566 complete(&init_context->init_done);
4567 init_context = NULL;
4568
4569 if (err)
4570 return err;
4571
4572 /* Wait to be woken up by the spawner before proceeding. */
4573 kthread_parkme();
4574
4575 if (!kthread_should_stop())
4576 err = thread_fn(kvm, data);
4577
4578 return err;
4579}
4580
4581int kvm_vm_create_worker_thread(struct kvm *kvm, kvm_vm_thread_fn_t thread_fn,
4582 uintptr_t data, const char *name,
4583 struct task_struct **thread_ptr)
4584{
4585 struct kvm_vm_worker_thread_context init_context = {};
4586 struct task_struct *thread;
4587
4588 *thread_ptr = NULL;
4589 init_context.kvm = kvm;
4590 init_context.parent = current;
4591 init_context.thread_fn = thread_fn;
4592 init_context.data = data;
4593 init_completion(&init_context.init_done);
4594
4595 thread = kthread_run(kvm_vm_worker_thread, &init_context,
4596 "%s-%d", name, task_pid_nr(current));
4597 if (IS_ERR(thread))
4598 return PTR_ERR(thread);
4599
4600 /* kthread_run is never supposed to return NULL */
4601 WARN_ON(thread == NULL);
4602
4603 wait_for_completion(&init_context.init_done);
4604
4605 if (!init_context.err)
4606 *thread_ptr = thread;
4607
4608 return init_context.err;
4609}