blob: 64e9e9d65ed4e95fe6ef1dd81d19e17832fe4f64 [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
Sean Christophersonaaba2982019-12-18 13:55:16 -0800107static struct kmem_cache *kvm_vcpu_cache;
Avi Kivity1165f5f2007-04-19 17:27:43 +0300108
Avi Kivity15ad7142007-07-11 18:17:21 +0300109static __read_mostly struct preempt_ops kvm_preempt_ops;
Paolo Bonzini7495e222020-01-09 09:57:19 -0500110static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_running_vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300111
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;
Milan Pandurov09cbcef2019-12-13 14:07:21 +0100116static const struct file_operations stat_fops_per_vm;
Janosch Frank536a6f82016-05-18 13:26:23 +0200117
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
Sean Christopherson005ba372020-01-08 12:24:36 -0800194bool kvm_is_transparent_hugepage(kvm_pfn_t pfn)
195{
196 struct page *page = pfn_to_page(pfn);
197
198 if (!PageTransCompoundMap(page))
199 return false;
200
201 return is_transparent_hugepage(compound_head(page));
202}
203
Avi Kivity6aa8b732006-12-10 02:21:36 -0800204/*
205 * Switches to specified vcpu, until a matching vcpu_put()
206 */
Christoffer Dallec7660c2017-12-04 21:35:23 +0100207void vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800208{
Christoffer Dallec7660c2017-12-04 21:35:23 +0100209 int cpu = get_cpu();
Paolo Bonzini7495e222020-01-09 09:57:19 -0500210
211 __this_cpu_write(kvm_running_vcpu, vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300212 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200213 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300214 put_cpu();
Avi Kivitybccf2152007-02-21 18:04:26 +0200215}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700216EXPORT_SYMBOL_GPL(vcpu_load);
Avi Kivitybccf2152007-02-21 18:04:26 +0200217
Carsten Otte313a3dc2007-10-11 19:16:52 +0200218void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800219{
Avi Kivity15ad7142007-07-11 18:17:21 +0300220 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200221 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300222 preempt_notifier_unregister(&vcpu->preempt_notifier);
Paolo Bonzini7495e222020-01-09 09:57:19 -0500223 __this_cpu_write(kvm_running_vcpu, NULL);
Avi Kivity15ad7142007-07-11 18:17:21 +0300224 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800225}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700226EXPORT_SYMBOL_GPL(vcpu_put);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800227
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200228/* TODO: merge with kvm_arch_vcpu_should_kick */
229static bool kvm_request_needs_ipi(struct kvm_vcpu *vcpu, unsigned req)
230{
231 int mode = kvm_vcpu_exiting_guest_mode(vcpu);
232
233 /*
234 * We need to wait for the VCPU to reenable interrupts and get out of
235 * READING_SHADOW_PAGE_TABLES mode.
236 */
237 if (req & KVM_REQUEST_WAIT)
238 return mode != OUTSIDE_GUEST_MODE;
239
240 /*
241 * Need to kick a running VCPU, but otherwise there is nothing to do.
242 */
243 return mode == IN_GUEST_MODE;
244}
245
Avi Kivityd9e368d2007-06-07 19:18:30 +0300246static void ack_flush(void *_completed)
247{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300248}
249
Paolo Bonzinib49defe2017-06-30 13:25:45 +0200250static inline bool kvm_kick_many_cpus(const struct cpumask *cpus, bool wait)
251{
252 if (unlikely(!cpus))
253 cpus = cpu_online_mask;
254
255 if (cpumask_empty(cpus))
256 return false;
257
258 smp_call_function_many(cpus, ack_flush, NULL, wait);
259 return true;
260}
261
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200262bool kvm_make_vcpus_request_mask(struct kvm *kvm, unsigned int req,
263 unsigned long *vcpu_bitmap, cpumask_var_t tmp)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300264{
Avi Kivity597a5f52008-07-20 14:24:22 +0300265 int i, cpu, me;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300266 struct kvm_vcpu *vcpu;
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200267 bool called;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030268
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800269 me = get_cpu();
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200270
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300271 kvm_for_each_vcpu(i, vcpu, kvm) {
Vitaly Kuznetsova8122972018-08-22 12:18:29 +0200272 if (vcpu_bitmap && !test_bit(i, vcpu_bitmap))
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200273 continue;
274
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800275 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300276 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800277
Radim Krčmář178f02f2017-04-26 22:32:26 +0200278 if (!(req & KVM_REQUEST_NO_WAKEUP) && kvm_vcpu_wake_up(vcpu))
279 continue;
Radim Krčmář6c6e8362017-04-26 22:32:23 +0200280
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200281 if (tmp != NULL && cpu != -1 && cpu != me &&
Paolo Bonzini7a97cec2017-04-27 14:33:43 +0200282 kvm_request_needs_ipi(vcpu, req))
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200283 __cpumask_set_cpu(cpu, tmp);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300284 }
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200285
286 called = kvm_kick_many_cpus(tmp, !!(req & KVM_REQUEST_WAIT));
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800287 put_cpu();
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200288
289 return called;
290}
291
292bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
293{
294 cpumask_var_t cpus;
295 bool called;
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200296
297 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
298
Vitaly Kuznetsova8122972018-08-22 12:18:29 +0200299 called = kvm_make_vcpus_request_mask(kvm, req, NULL, cpus);
Vitaly Kuznetsov7053df42018-05-16 17:21:28 +0200300
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030301 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030302 return called;
303}
304
Mario Smarducha6d51012015-01-15 15:58:52 -0800305#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030306void kvm_flush_remote_tlbs(struct kvm *kvm)
307{
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800308 /*
309 * Read tlbs_dirty before setting KVM_REQ_TLB_FLUSH in
310 * kvm_make_all_cpus_request.
311 */
312 long dirty_count = smp_load_acquire(&kvm->tlbs_dirty);
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800313
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800314 /*
315 * We want to publish modifications to the page tables before reading
316 * mode. Pairs with a memory barrier in arch-specific code.
317 * - x86: smp_mb__after_srcu_read_unlock in vcpu_enter_guest
318 * and smp_mb in walk_shadow_page_lockless_begin/end.
319 * - powerpc: smp_mb in kvmppc_prepare_to_enter.
320 *
321 * There is already an smp_mb__after_atomic() before
322 * kvm_make_all_cpus_request() reads vcpu->mode. We reuse that
323 * barrier here.
324 */
Tianyu Lanb08660e2018-07-19 08:40:17 +0000325 if (!kvm_arch_flush_remote_tlb(kvm)
326 || kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030327 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800328 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300329}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530330EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800331#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300332
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500333void kvm_reload_remote_mmus(struct kvm *kvm)
334{
Tang Chen445b8232014-09-24 15:57:55 +0800335 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500336}
337
Sean Christopherson8bd826d2019-12-18 13:55:30 -0800338static void kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000339{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000340 mutex_init(&vcpu->mutex);
341 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000342 vcpu->kvm = kvm;
343 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500344 vcpu->pid = NULL;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100345 init_swait_queue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200346 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000347
Feng Wubf9f6ac2015-09-18 22:29:55 +0800348 vcpu->pre_pcpu = -1;
349 INIT_LIST_HEAD(&vcpu->blocked_vcpu_list);
350
Raghavendra K T4c088492012-07-18 19:07:46 +0530351 kvm_vcpu_set_in_spin_loop(vcpu, false);
352 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530353 vcpu->preempted = false;
Wanpeng Lid73eb572019-07-18 19:39:06 +0800354 vcpu->ready = false;
Sean Christophersond5c48de2019-12-18 13:55:17 -0800355 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000356}
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000357
Sean Christopherson4543bdc2019-12-18 13:55:14 -0800358void kvm_vcpu_destroy(struct kvm_vcpu *vcpu)
359{
360 kvm_arch_vcpu_destroy(vcpu);
Sean Christophersone529ef62019-12-18 13:55:15 -0800361
Sean Christopherson9941d222019-12-18 13:55:29 -0800362 /*
363 * No need for rcu_read_lock as VCPU_RUN is the only place that changes
364 * the vcpu->pid pointer, and at destruction time all file descriptors
365 * are already gone.
366 */
367 put_pid(rcu_dereference_protected(vcpu->pid, 1));
368
Sean Christopherson8bd826d2019-12-18 13:55:30 -0800369 free_page((unsigned long)vcpu->run);
Sean Christophersone529ef62019-12-18 13:55:15 -0800370 kmem_cache_free(kvm_vcpu_cache, vcpu);
Sean Christopherson4543bdc2019-12-18 13:55:14 -0800371}
372EXPORT_SYMBOL_GPL(kvm_vcpu_destroy);
373
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200374#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
375static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
376{
377 return container_of(mn, struct kvm, mmu_notifier);
378}
379
Izik Eidus3da0dd42009-09-23 21:47:18 +0300380static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
381 struct mm_struct *mm,
382 unsigned long address,
383 pte_t pte)
384{
385 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200386 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300387
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200388 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300389 spin_lock(&kvm->mmu_lock);
390 kvm->mmu_notifier_seq++;
Lan Tianyu0cf853c2018-12-06 21:21:11 +0800391
392 if (kvm_set_spte_hva(kvm, address, pte))
393 kvm_flush_remote_tlbs(kvm);
394
Izik Eidus3da0dd42009-09-23 21:47:18 +0300395 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200396 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300397}
398
Michal Hocko93065ac2018-08-21 21:52:33 -0700399static int kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
Jérôme Glisse5d6527a2018-12-28 00:38:05 -0800400 const struct mmu_notifier_range *range)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200401{
402 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200403 int need_tlb_flush = 0, idx;
Michal Hocko93065ac2018-08-21 21:52:33 -0700404 int ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200405
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200406 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200407 spin_lock(&kvm->mmu_lock);
408 /*
409 * The count increase must become visible at unlock time as no
410 * spte can be established without taking the mmu_lock and
411 * count is also read inside the mmu_lock critical section.
412 */
413 kvm->mmu_notifier_count++;
Jérôme Glisse5d6527a2018-12-28 00:38:05 -0800414 need_tlb_flush = kvm_unmap_hva_range(kvm, range->start, range->end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800415 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200416 /* we've to flush the tlb before the pages can be freed */
417 if (need_tlb_flush)
418 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900419
420 spin_unlock(&kvm->mmu_lock);
Radim Krčmářb1394e72017-11-30 19:05:45 +0100421
Jérôme Glisse5d6527a2018-12-28 00:38:05 -0800422 ret = kvm_arch_mmu_notifier_invalidate_range(kvm, range->start,
Jérôme Glissedfcd6662019-05-13 17:20:38 -0700423 range->end,
424 mmu_notifier_range_blockable(range));
Radim Krčmářb1394e72017-11-30 19:05:45 +0100425
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900426 srcu_read_unlock(&kvm->srcu, idx);
Michal Hocko93065ac2018-08-21 21:52:33 -0700427
428 return ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200429}
430
431static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
Jérôme Glisse5d6527a2018-12-28 00:38:05 -0800432 const struct mmu_notifier_range *range)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200433{
434 struct kvm *kvm = mmu_notifier_to_kvm(mn);
435
436 spin_lock(&kvm->mmu_lock);
437 /*
438 * This sequence increase will notify the kvm page fault that
439 * the page that is going to be mapped in the spte could have
440 * been freed.
441 */
442 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000443 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200444 /*
445 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000446 * below count decrease, which is ensured by the smp_wmb above
447 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200448 */
449 kvm->mmu_notifier_count--;
450 spin_unlock(&kvm->mmu_lock);
451
452 BUG_ON(kvm->mmu_notifier_count < 0);
453}
454
455static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
456 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700457 unsigned long start,
458 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200459{
460 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200461 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200462
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200463 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200464 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200465
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700466 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200467 if (young)
468 kvm_flush_remote_tlbs(kvm);
469
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900470 spin_unlock(&kvm->mmu_lock);
471 srcu_read_unlock(&kvm->srcu, idx);
472
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200473 return young;
474}
475
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700476static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn,
477 struct mm_struct *mm,
478 unsigned long start,
479 unsigned long end)
480{
481 struct kvm *kvm = mmu_notifier_to_kvm(mn);
482 int young, idx;
483
484 idx = srcu_read_lock(&kvm->srcu);
485 spin_lock(&kvm->mmu_lock);
486 /*
487 * Even though we do not flush TLB, this will still adversely
488 * affect performance on pre-Haswell Intel EPT, where there is
489 * no EPT Access Bit to clear so that we have to tear down EPT
490 * tables instead. If we find this unacceptable, we can always
491 * add a parameter to kvm_age_hva so that it effectively doesn't
492 * do anything on clear_young.
493 *
494 * Also note that currently we never issue secondary TLB flushes
495 * from clear_young, leaving this job up to the regular system
496 * cadence. If we find this inaccurate, we might come up with a
497 * more sophisticated heuristic later.
498 */
499 young = kvm_age_hva(kvm, start, end);
500 spin_unlock(&kvm->mmu_lock);
501 srcu_read_unlock(&kvm->srcu, idx);
502
503 return young;
504}
505
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800506static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
507 struct mm_struct *mm,
508 unsigned long address)
509{
510 struct kvm *kvm = mmu_notifier_to_kvm(mn);
511 int young, idx;
512
513 idx = srcu_read_lock(&kvm->srcu);
514 spin_lock(&kvm->mmu_lock);
515 young = kvm_test_age_hva(kvm, address);
516 spin_unlock(&kvm->mmu_lock);
517 srcu_read_unlock(&kvm->srcu, idx);
518
519 return young;
520}
521
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100522static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
523 struct mm_struct *mm)
524{
525 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800526 int idx;
527
528 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300529 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800530 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100531}
532
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200533static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200534 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
535 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
536 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700537 .clear_young = kvm_mmu_notifier_clear_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800538 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300539 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100540 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200541};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200542
543static int kvm_init_mmu_notifier(struct kvm *kvm)
544{
545 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
546 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
547}
548
549#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
550
551static int kvm_init_mmu_notifier(struct kvm *kvm)
552{
553 return 0;
554}
555
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200556#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
557
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200558static struct kvm_memslots *kvm_alloc_memslots(void)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800559{
560 int i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200561 struct kvm_memslots *slots;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800562
Ben Gardonb12ce362019-02-11 11:02:49 -0800563 slots = kvzalloc(sizeof(struct kvm_memslots), GFP_KERNEL_ACCOUNT);
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200564 if (!slots)
565 return NULL;
566
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800567 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800568 slots->id_to_index[i] = slots->memslots[i].id = i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200569
570 return slots;
571}
572
573static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
574{
575 if (!memslot->dirty_bitmap)
576 return;
577
578 kvfree(memslot->dirty_bitmap);
579 memslot->dirty_bitmap = NULL;
580}
581
582/*
583 * Free any memory in @free but not in @dont.
584 */
585static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
586 struct kvm_memory_slot *dont)
587{
588 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
589 kvm_destroy_dirty_bitmap(free);
590
591 kvm_arch_free_memslot(kvm, free, dont);
592
593 free->npages = 0;
594}
595
596static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
597{
598 struct kvm_memory_slot *memslot;
599
600 if (!slots)
601 return;
602
603 kvm_for_each_memslot(memslot, slots)
604 kvm_free_memslot(kvm, memslot, NULL);
605
606 kvfree(slots);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800607}
608
Janosch Frank536a6f82016-05-18 13:26:23 +0200609static void kvm_destroy_vm_debugfs(struct kvm *kvm)
610{
611 int i;
612
613 if (!kvm->debugfs_dentry)
614 return;
615
616 debugfs_remove_recursive(kvm->debugfs_dentry);
617
Luiz Capitulino9d5a1dc2016-09-07 14:47:21 -0400618 if (kvm->debugfs_stat_data) {
619 for (i = 0; i < kvm_debugfs_num_entries; i++)
620 kfree(kvm->debugfs_stat_data[i]);
621 kfree(kvm->debugfs_stat_data);
622 }
Janosch Frank536a6f82016-05-18 13:26:23 +0200623}
624
625static int kvm_create_vm_debugfs(struct kvm *kvm, int fd)
626{
627 char dir_name[ITOA_MAX_LEN * 2];
628 struct kvm_stat_data *stat_data;
629 struct kvm_stats_debugfs_item *p;
630
631 if (!debugfs_initialized())
632 return 0;
633
634 snprintf(dir_name, sizeof(dir_name), "%d-%d", task_pid_nr(current), fd);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +0200635 kvm->debugfs_dentry = debugfs_create_dir(dir_name, kvm_debugfs_dir);
Janosch Frank536a6f82016-05-18 13:26:23 +0200636
637 kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries,
638 sizeof(*kvm->debugfs_stat_data),
Ben Gardonb12ce362019-02-11 11:02:49 -0800639 GFP_KERNEL_ACCOUNT);
Janosch Frank536a6f82016-05-18 13:26:23 +0200640 if (!kvm->debugfs_stat_data)
641 return -ENOMEM;
642
643 for (p = debugfs_entries; p->name; p++) {
Ben Gardonb12ce362019-02-11 11:02:49 -0800644 stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL_ACCOUNT);
Janosch Frank536a6f82016-05-18 13:26:23 +0200645 if (!stat_data)
646 return -ENOMEM;
647
648 stat_data->kvm = kvm;
Milan Pandurov09cbcef2019-12-13 14:07:21 +0100649 stat_data->dbgfs_item = p;
Janosch Frank536a6f82016-05-18 13:26:23 +0200650 kvm->debugfs_stat_data[p - debugfs_entries] = stat_data;
Milan Pandurov09cbcef2019-12-13 14:07:21 +0100651 debugfs_create_file(p->name, KVM_DBGFS_GET_MODE(p),
652 kvm->debugfs_dentry, stat_data,
653 &stat_fops_per_vm);
Janosch Frank536a6f82016-05-18 13:26:23 +0200654 }
655 return 0;
656}
657
Junaid Shahid1aa9b952019-11-04 20:26:00 +0100658/*
659 * Called after the VM is otherwise initialized, but just before adding it to
660 * the vm_list.
661 */
662int __weak kvm_arch_post_init_vm(struct kvm *kvm)
663{
664 return 0;
665}
666
667/*
668 * Called just after removing the VM from the vm_list, but before doing any
669 * other destruction.
670 */
671void __weak kvm_arch_pre_destroy_vm(struct kvm *kvm)
672{
673}
674
Carsten Ottee08b9632012-01-04 10:25:20 +0100675static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800676{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100677 struct kvm *kvm = kvm_arch_alloc_vm();
Jim Mattson91219232019-10-24 16:03:26 -0700678 int r = -ENOMEM;
679 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100681 if (!kvm)
682 return ERR_PTR(-ENOMEM);
683
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100684 spin_lock_init(&kvm->mmu_lock);
Vegard Nossumf1f10072017-02-27 14:30:07 -0800685 mmgrab(current->mm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100686 kvm->mm = current->mm;
687 kvm_eventfd_init(kvm);
688 mutex_init(&kvm->lock);
689 mutex_init(&kvm->irq_lock);
690 mutex_init(&kvm->slots_lock);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100691 INIT_LIST_HEAD(&kvm->devices);
692
Jim Mattson91219232019-10-24 16:03:26 -0700693 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
694
Paolo Bonzini8a441192019-11-04 12:16:49 +0100695 if (init_srcu_struct(&kvm->srcu))
696 goto out_err_no_srcu;
697 if (init_srcu_struct(&kvm->irq_srcu))
698 goto out_err_no_irq_srcu;
699
Paolo Bonzinie2d3fca2019-11-04 13:23:53 +0100700 refcount_set(&kvm->users_count, 1);
Jim Mattson91219232019-10-24 16:03:26 -0700701 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
702 struct kvm_memslots *slots = kvm_alloc_memslots();
703
704 if (!slots)
Jim Mattsona97b0e72019-10-25 13:34:58 +0200705 goto out_err_no_arch_destroy_vm;
Jim Mattson91219232019-10-24 16:03:26 -0700706 /* Generations must be different for each address space. */
707 slots->generation = i;
708 rcu_assign_pointer(kvm->memslots[i], slots);
709 }
710
711 for (i = 0; i < KVM_NR_BUSES; i++) {
712 rcu_assign_pointer(kvm->buses[i],
713 kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL_ACCOUNT));
714 if (!kvm->buses[i])
Jim Mattsona97b0e72019-10-25 13:34:58 +0200715 goto out_err_no_arch_destroy_vm;
Jim Mattson91219232019-10-24 16:03:26 -0700716 }
717
Carsten Ottee08b9632012-01-04 10:25:20 +0100718 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100719 if (r)
Jim Mattsona97b0e72019-10-25 13:34:58 +0200720 goto out_err_no_arch_destroy_vm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200721
722 r = hardware_enable_all();
723 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100724 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200725
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200726#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300727 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200728#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700730 r = kvm_init_mmu_notifier(kvm);
731 if (r)
Junaid Shahid1aa9b952019-11-04 20:26:00 +0100732 goto out_err_no_mmu_notifier;
733
734 r = kvm_arch_post_init_vm(kvm);
735 if (r)
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700736 goto out_err;
737
Junaid Shahid0d9ce162019-01-03 17:14:28 -0800738 mutex_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000739 list_add(&kvm->vm_list, &vm_list);
Junaid Shahid0d9ce162019-01-03 17:14:28 -0800740 mutex_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100741
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200742 preempt_notifier_inc();
743
Avi Kivityf17abe92007-02-21 19:28:04 +0200744 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200745
746out_err:
Junaid Shahid1aa9b952019-11-04 20:26:00 +0100747#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
748 if (kvm->mmu_notifier.ops)
749 mmu_notifier_unregister(&kvm->mmu_notifier, current->mm);
750#endif
751out_err_no_mmu_notifier:
Alexander Graf10474ae2009-09-15 11:37:46 +0200752 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100753out_err_no_disable:
Jim Mattsona97b0e72019-10-25 13:34:58 +0200754 kvm_arch_destroy_vm(kvm);
Jim Mattsona97b0e72019-10-25 13:34:58 +0200755out_err_no_arch_destroy_vm:
Paolo Bonzinie2d3fca2019-11-04 13:23:53 +0100756 WARN_ON_ONCE(!refcount_dec_and_test(&kvm->users_count));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200757 for (i = 0; i < KVM_NR_BUSES; i++)
Paolo Bonzini3898da92017-08-02 17:55:54 +0200758 kfree(kvm_get_bus(kvm, i));
Paolo Bonzinif481b062015-05-17 17:30:37 +0200759 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
Paolo Bonzini3898da92017-08-02 17:55:54 +0200760 kvm_free_memslots(kvm, __kvm_memslots(kvm, i));
Paolo Bonzini8a441192019-11-04 12:16:49 +0100761 cleanup_srcu_struct(&kvm->irq_srcu);
762out_err_no_irq_srcu:
763 cleanup_srcu_struct(&kvm->srcu);
764out_err_no_srcu:
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100765 kvm_arch_free_vm(kvm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100766 mmdrop(current->mm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200767 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200768}
769
Scott Wood07f0a7b2013-04-25 14:11:23 +0000770static void kvm_destroy_devices(struct kvm *kvm)
771{
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800772 struct kvm_device *dev, *tmp;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000773
Christoffer Dalla28ebea2016-08-09 19:13:01 +0200774 /*
775 * We do not need to take the kvm->lock here, because nobody else
776 * has a reference to the struct kvm at this point and therefore
777 * cannot access the devices list anyhow.
778 */
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800779 list_for_each_entry_safe(dev, tmp, &kvm->devices, vm_node) {
780 list_del(&dev->vm_node);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000781 dev->ops->destroy(dev);
782 }
783}
784
Avi Kivityf17abe92007-02-21 19:28:04 +0200785static void kvm_destroy_vm(struct kvm *kvm)
786{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200787 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200788 struct mm_struct *mm = kvm->mm;
789
Claudio Imbrenda286de8f2017-07-12 17:56:44 +0200790 kvm_uevent_notify_change(KVM_EVENT_DESTROY_VM, kvm);
Janosch Frank536a6f82016-05-18 13:26:23 +0200791 kvm_destroy_vm_debugfs(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800792 kvm_arch_sync_events(kvm);
Junaid Shahid0d9ce162019-01-03 17:14:28 -0800793 mutex_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800794 list_del(&kvm->vm_list);
Junaid Shahid0d9ce162019-01-03 17:14:28 -0800795 mutex_unlock(&kvm_lock);
Junaid Shahid1aa9b952019-11-04 20:26:00 +0100796 kvm_arch_pre_destroy_vm(kvm);
797
Avi Kivity399ec802008-11-19 13:58:46 +0200798 kvm_free_irq_routing(kvm);
Peter Xudf630b82017-03-15 16:01:17 +0800799 for (i = 0; i < KVM_NR_BUSES; i++) {
Paolo Bonzini3898da92017-08-02 17:55:54 +0200800 struct kvm_io_bus *bus = kvm_get_bus(kvm, i);
Christian Borntraeger4a12f952017-07-07 10:51:38 +0200801
Christian Borntraeger4a12f952017-07-07 10:51:38 +0200802 if (bus)
803 kvm_io_bus_destroy(bus);
Peter Xudf630b82017-03-15 16:01:17 +0800804 kvm->buses[i] = NULL;
805 }
Avi Kivity980da6c2009-12-20 15:13:43 +0200806 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200807#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
808 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200809#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300810 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200811#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800812 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000813 kvm_destroy_devices(kvm);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200814 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
Paolo Bonzini3898da92017-08-02 17:55:54 +0200815 kvm_free_memslots(kvm, __kvm_memslots(kvm, i));
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200816 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100817 cleanup_srcu_struct(&kvm->srcu);
818 kvm_arch_free_vm(kvm);
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200819 preempt_notifier_dec();
Alexander Graf10474ae2009-09-15 11:37:46 +0200820 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200821 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200822}
823
Izik Eidusd39f13b2008-03-30 16:01:25 +0300824void kvm_get_kvm(struct kvm *kvm)
825{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200826 refcount_inc(&kvm->users_count);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300827}
828EXPORT_SYMBOL_GPL(kvm_get_kvm);
829
830void kvm_put_kvm(struct kvm *kvm)
831{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200832 if (refcount_dec_and_test(&kvm->users_count))
Izik Eidusd39f13b2008-03-30 16:01:25 +0300833 kvm_destroy_vm(kvm);
834}
835EXPORT_SYMBOL_GPL(kvm_put_kvm);
836
Sean Christopherson149487b2019-10-21 15:58:42 -0700837/*
838 * Used to put a reference that was taken on behalf of an object associated
839 * with a user-visible file descriptor, e.g. a vcpu or device, if installation
840 * of the new file descriptor fails and the reference cannot be transferred to
841 * its final owner. In such cases, the caller is still actively using @kvm and
842 * will fail miserably if the refcount unexpectedly hits zero.
843 */
844void kvm_put_kvm_no_destroy(struct kvm *kvm)
845{
846 WARN_ON(refcount_dec_and_test(&kvm->users_count));
847}
848EXPORT_SYMBOL_GPL(kvm_put_kvm_no_destroy);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300849
Avi Kivityf17abe92007-02-21 19:28:04 +0200850static int kvm_vm_release(struct inode *inode, struct file *filp)
851{
852 struct kvm *kvm = filp->private_data;
853
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400854 kvm_irqfd_release(kvm);
855
Izik Eidusd39f13b2008-03-30 16:01:25 +0300856 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800857 return 0;
858}
859
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900860/*
861 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900862 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900863 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900864static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
865{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900866 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900867
Ben Gardonb12ce362019-02-11 11:02:49 -0800868 memslot->dirty_bitmap = kvzalloc(dirty_bytes, GFP_KERNEL_ACCOUNT);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900869 if (!memslot->dirty_bitmap)
870 return -ENOMEM;
871
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900872 return 0;
873}
874
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800875/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000876 * Insert memslot and re-sort memslots based on their GFN,
877 * so binary search could be used to lookup GFN.
878 * Sorting algorithm takes advantage of having initially
879 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800880 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100881static void update_memslots(struct kvm_memslots *slots,
Wei Yang31fc4f92018-08-22 21:57:11 +0800882 struct kvm_memory_slot *new,
883 enum kvm_mr_change change)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800884{
Paolo Bonzini85931762014-11-14 10:22:07 +0100885 int id = new->id;
886 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000887 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800888
Paolo Bonzini85931762014-11-14 10:22:07 +0100889 WARN_ON(mslots[i].id != id);
Wei Yang31fc4f92018-08-22 21:57:11 +0800890 switch (change) {
891 case KVM_MR_CREATE:
892 slots->used_slots++;
893 WARN_ON(mslots[i].npages || !new->npages);
894 break;
895 case KVM_MR_DELETE:
896 slots->used_slots--;
897 WARN_ON(new->npages || !mslots[i].npages);
898 break;
899 default:
900 break;
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000901 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000902
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000903 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000904 new->base_gfn <= mslots[i + 1].base_gfn) {
905 if (!mslots[i + 1].npages)
906 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000907 mslots[i] = mslots[i + 1];
908 slots->id_to_index[mslots[i].id] = i;
909 i++;
910 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100911
912 /*
913 * The ">=" is needed when creating a slot with base_gfn == 0,
914 * so that it moves before all those with base_gfn == npages == 0.
915 *
916 * On the other hand, if new->npages is zero, the above loop has
917 * already left i pointing to the beginning of the empty part of
918 * mslots, and the ">=" would move the hole backwards in this
919 * case---which is wrong. So skip the loop when deleting a slot.
920 */
921 if (new->npages) {
922 while (i > 0 &&
923 new->base_gfn >= mslots[i - 1].base_gfn) {
924 mslots[i] = mslots[i - 1];
925 slots->id_to_index[mslots[i].id] = i;
926 i--;
927 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100928 } else
929 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800930
Paolo Bonzini85931762014-11-14 10:22:07 +0100931 mslots[i] = *new;
932 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800933}
934
Paolo Bonzini09170a42015-05-18 13:59:39 +0200935static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800936{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800937 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
938
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200939#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800940 valid_flags |= KVM_MEM_READONLY;
941#endif
942
943 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800944 return -EINVAL;
945
946 return 0;
947}
948
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200949static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzinif481b062015-05-17 17:30:37 +0200950 int as_id, struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200951{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200952 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
Sean Christopherson361209e2019-02-05 13:01:14 -0800953 u64 gen = old_memslots->generation;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200954
Sean Christopherson361209e2019-02-05 13:01:14 -0800955 WARN_ON(gen & KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS);
956 slots->generation = gen | KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS;
David Matlackee3d1572014-08-18 15:46:06 -0700957
Paolo Bonzinif481b062015-05-17 17:30:37 +0200958 rcu_assign_pointer(kvm->memslots[as_id], slots);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200959 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900960
David Matlackee3d1572014-08-18 15:46:06 -0700961 /*
Sean Christopherson361209e2019-02-05 13:01:14 -0800962 * Increment the new memslot generation a second time, dropping the
Miaohe Lin00116792019-12-11 14:26:23 +0800963 * update in-progress flag and incrementing the generation based on
Sean Christopherson361209e2019-02-05 13:01:14 -0800964 * the number of address spaces. This provides a unique and easily
965 * identifiable generation number while the memslots are in flux.
966 */
967 gen = slots->generation & ~KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS;
968
969 /*
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800970 * Generations must be unique even across address spaces. We do not need
971 * a global counter for that, instead the generation space is evenly split
972 * across address spaces. For example, with two address spaces, address
Sean Christopherson164bf7e2019-02-05 13:01:18 -0800973 * space 0 will use generations 0, 2, 4, ... while address space 1 will
974 * use generations 1, 3, 5, ...
David Matlackee3d1572014-08-18 15:46:06 -0700975 */
Sean Christopherson164bf7e2019-02-05 13:01:18 -0800976 gen += KVM_ADDRESS_SPACE_NUM;
David Matlackee3d1572014-08-18 15:46:06 -0700977
Sean Christopherson15248252019-02-05 12:54:17 -0800978 kvm_arch_memslots_updated(kvm, gen);
979
980 slots->generation = gen;
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900981
982 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200983}
984
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800986 * Allocate some memory and give it an address in the guest physical address
987 * space.
988 *
989 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800990 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100991 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800993int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200994 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995{
Avi Kivity8234b222010-12-27 12:08:45 +0200996 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200998 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900999 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001000 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001001 struct kvm_memslots *slots = NULL, *old_memslots;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001002 int as_id, id;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001003 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004
Xiao Guangronga50d64d2012-08-21 10:58:13 +08001005 r = check_memory_region_flags(mem);
1006 if (r)
1007 goto out;
1008
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001010 as_id = mem->slot >> 16;
1011 id = (u16)mem->slot;
1012
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013 /* General sanity checks */
1014 if (mem->memory_size & (PAGE_SIZE - 1))
1015 goto out;
1016 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
1017 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +09001018 /* We can read the guest memory with __xxx_user() later on. */
Paolo Bonzinif481b062015-05-17 17:30:37 +02001019 if ((id < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +09001020 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Linus Torvalds96d4f262019-01-03 18:57:57 -08001021 !access_ok((void __user *)(unsigned long)mem->userspace_addr,
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +02001022 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -06001023 goto out;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001024 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001025 goto out;
1026 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
1027 goto out;
1028
Paolo Bonzinif481b062015-05-17 17:30:37 +02001029 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001030 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
1031 npages = mem->memory_size >> PAGE_SHIFT;
1032
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +09001033 if (npages > KVM_MEM_MAX_NR_PAGES)
1034 goto out;
1035
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +09001036 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037
Paolo Bonzinif481b062015-05-17 17:30:37 +02001038 new.id = id;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039 new.base_gfn = base_gfn;
1040 new.npages = npages;
1041 new.flags = mem->flags;
1042
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001043 if (npages) {
1044 if (!old.npages)
1045 change = KVM_MR_CREATE;
1046 else { /* Modify an existing slot. */
1047 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +09001048 (npages != old.npages) ||
1049 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001050 goto out;
1051
1052 if (base_gfn != old.base_gfn)
1053 change = KVM_MR_MOVE;
1054 else if (new.flags != old.flags)
1055 change = KVM_MR_FLAGS_ONLY;
1056 else { /* Nothing to change. */
1057 r = 0;
1058 goto out;
1059 }
1060 }
Paolo Bonzini09170a42015-05-18 13:59:39 +02001061 } else {
1062 if (!old.npages)
1063 goto out;
1064
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001065 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001066 new.base_gfn = 0;
1067 new.flags = 0;
1068 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001070 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +09001071 /* Check for overlaps */
1072 r = -EEXIST;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001073 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
Wanpeng Lib28676b2018-02-13 15:36:00 +01001074 if (slot->id == id)
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +09001075 continue;
1076 if (!((base_gfn + npages <= slot->base_gfn) ||
1077 (base_gfn >= slot->base_gfn + slot->npages)))
1078 goto out;
1079 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001080 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001081
Avi Kivity6aa8b732006-12-10 02:21:36 -08001082 /* Free page dirty bitmap if unneeded */
1083 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +00001084 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001085
1086 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001087 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +09001088 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001089
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301090 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001091 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001092 }
Joerg Roedelec04b262009-06-19 15:16:23 +02001093
Avi Kivity6aa8b732006-12-10 02:21:36 -08001094 /* Allocate page dirty bitmap if needed */
1095 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +09001096 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001097 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001098 }
1099
Ben Gardonb12ce362019-02-11 11:02:49 -08001100 slots = kvzalloc(sizeof(struct kvm_memslots), GFP_KERNEL_ACCOUNT);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001101 if (!slots)
1102 goto out_free;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001103 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001104
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001105 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Paolo Bonzinif481b062015-05-17 17:30:37 +02001106 slot = id_to_memslot(slots, id);
Xiao Guangrong28a37542011-11-24 19:04:35 +08001107 slot->flags |= KVM_MEMSLOT_INVALID;
1108
Paolo Bonzinif481b062015-05-17 17:30:37 +02001109 old_memslots = install_new_memslots(kvm, as_id, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001110
Marcelo Tosatti12d6e752012-08-24 15:54:58 -03001111 /* From this point no new shadow pages pointing to a deleted,
1112 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001113 *
1114 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +08001115 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
Miaohe Lin668effb2019-12-11 14:26:20 +08001116 * - kvm_is_visible_gfn (mmu_check_root)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001117 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03001118 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001119
1120 /*
1121 * We can re-use the old_memslots from above, the only difference
1122 * from the currently installed memslots is the invalid flag. This
1123 * will get overwritten by update_memslots anyway.
1124 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001125 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001126 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001127
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09001128 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001129 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001130 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001131
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001132 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001133 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001134 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001135 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001136 }
1137
Wei Yang31fc4f92018-08-22 21:57:11 +08001138 update_memslots(slots, &new, change);
Paolo Bonzinif481b062015-05-17 17:30:37 +02001139 old_memslots = install_new_memslots(kvm, as_id, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001140
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001141 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08001142
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001143 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +00001144 kvfree(old_memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001145 return 0;
1146
Alex Williamsone40f1932012-12-10 10:32:57 -07001147out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +00001148 kvfree(slots);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001149out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001150 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001151out:
1152 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +02001153}
Sheng Yangf78e0e22007-10-29 09:40:42 +08001154EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
1155
1156int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001157 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001158{
1159 int r;
1160
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001161 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001162 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001163 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001164 return r;
1165}
Izik Eidus210c7c42007-10-24 23:52:57 +02001166EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1167
Stephen Hemminger79408762013-12-29 12:12:29 -08001168static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1169 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +02001170{
Paolo Bonzinif481b062015-05-17 17:30:37 +02001171 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001172 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001173
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001174 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001175}
1176
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001177int kvm_get_dirty_log(struct kvm *kvm,
1178 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001179{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001180 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001181 struct kvm_memory_slot *memslot;
Markus Elfring843574a2017-01-22 17:41:07 +01001182 int i, as_id, id;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001183 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001184 unsigned long any = 0;
1185
Paolo Bonzinif481b062015-05-17 17:30:37 +02001186 as_id = log->slot >> 16;
1187 id = (u16)log->slot;
1188 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring843574a2017-01-22 17:41:07 +01001189 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001190
Paolo Bonzinif481b062015-05-17 17:30:37 +02001191 slots = __kvm_memslots(kvm, as_id);
1192 memslot = id_to_memslot(slots, id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001193 if (!memslot->dirty_bitmap)
Markus Elfring843574a2017-01-22 17:41:07 +01001194 return -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001195
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001196 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001197
Uri Lublincd1a4a92007-02-22 16:43:09 +02001198 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001199 any = memslot->dirty_bitmap[i];
1200
Avi Kivity6aa8b732006-12-10 02:21:36 -08001201 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
Markus Elfring843574a2017-01-22 17:41:07 +01001202 return -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001203
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001204 if (any)
1205 *is_dirty = 1;
Markus Elfring843574a2017-01-22 17:41:07 +01001206 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001207}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301208EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001209
Mario Smarduchba0513b2015-01-15 15:58:53 -08001210#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1211/**
Jiang Biaob8b00222019-04-23 19:40:30 +08001212 * kvm_get_dirty_log_protect - get a snapshot of dirty pages
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001213 * and reenable dirty page tracking for the corresponding pages.
Mario Smarduchba0513b2015-01-15 15:58:53 -08001214 * @kvm: pointer to kvm instance
1215 * @log: slot id and address to which we copy the log
Jiang Biaob8b00222019-04-23 19:40:30 +08001216 * @flush: true if TLB flush is needed by caller
Mario Smarduchba0513b2015-01-15 15:58:53 -08001217 *
1218 * We need to keep it in mind that VCPU threads can write to the bitmap
1219 * concurrently. So, to avoid losing track of dirty pages we keep the
1220 * following order:
1221 *
1222 * 1. Take a snapshot of the bit and clear it if needed.
1223 * 2. Write protect the corresponding page.
1224 * 3. Copy the snapshot to the userspace.
1225 * 4. Upon return caller flushes TLB's if needed.
1226 *
1227 * Between 2 and 4, the guest may write to the page using the remaining TLB
1228 * entry. This is not a problem because the page is reported dirty using
1229 * the snapshot taken before and step 4 ensures that writes done after
1230 * exiting to userspace will be logged for the next call.
1231 *
1232 */
1233int kvm_get_dirty_log_protect(struct kvm *kvm,
Paolo Bonzini8fe65a82018-10-23 02:18:42 +02001234 struct kvm_dirty_log *log, bool *flush)
Mario Smarduchba0513b2015-01-15 15:58:53 -08001235{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001236 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001237 struct kvm_memory_slot *memslot;
Markus Elfring58d6db32017-01-22 17:30:16 +01001238 int i, as_id, id;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001239 unsigned long n;
1240 unsigned long *dirty_bitmap;
1241 unsigned long *dirty_bitmap_buffer;
1242
Paolo Bonzinif481b062015-05-17 17:30:37 +02001243 as_id = log->slot >> 16;
1244 id = (u16)log->slot;
1245 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring58d6db32017-01-22 17:30:16 +01001246 return -EINVAL;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001247
Paolo Bonzinif481b062015-05-17 17:30:37 +02001248 slots = __kvm_memslots(kvm, as_id);
1249 memslot = id_to_memslot(slots, id);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001250
1251 dirty_bitmap = memslot->dirty_bitmap;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001252 if (!dirty_bitmap)
Markus Elfring58d6db32017-01-22 17:30:16 +01001253 return -ENOENT;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001254
1255 n = kvm_dirty_bitmap_bytes(memslot);
Paolo Bonzini8fe65a82018-10-23 02:18:42 +02001256 *flush = false;
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001257 if (kvm->manual_dirty_log_protect) {
1258 /*
1259 * Unlike kvm_get_dirty_log, we always return false in *flush,
1260 * because no flush is needed until KVM_CLEAR_DIRTY_LOG. There
1261 * is some code duplication between this function and
1262 * kvm_get_dirty_log, but hopefully all architecture
1263 * transition to kvm_get_dirty_log_protect and kvm_get_dirty_log
1264 * can be eliminated.
1265 */
1266 dirty_bitmap_buffer = dirty_bitmap;
1267 } else {
1268 dirty_bitmap_buffer = kvm_second_dirty_bitmap(memslot);
1269 memset(dirty_bitmap_buffer, 0, n);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001270
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001271 spin_lock(&kvm->mmu_lock);
1272 for (i = 0; i < n / sizeof(long); i++) {
1273 unsigned long mask;
1274 gfn_t offset;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001275
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001276 if (!dirty_bitmap[i])
1277 continue;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001278
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001279 *flush = true;
1280 mask = xchg(&dirty_bitmap[i], 0);
1281 dirty_bitmap_buffer[i] = mask;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001282
Lan Tianyua67794c2019-02-02 17:20:27 +08001283 offset = i * BITS_PER_LONG;
1284 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1285 offset, mask);
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001286 }
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001287 spin_unlock(&kvm->mmu_lock);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001288 }
1289
Mario Smarduchba0513b2015-01-15 15:58:53 -08001290 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
Markus Elfring58d6db32017-01-22 17:30:16 +01001291 return -EFAULT;
1292 return 0;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001293}
1294EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001295
1296/**
1297 * kvm_clear_dirty_log_protect - clear dirty bits in the bitmap
1298 * and reenable dirty page tracking for the corresponding pages.
1299 * @kvm: pointer to kvm instance
1300 * @log: slot id and address from which to fetch the bitmap of dirty pages
Jiang Biaob8b00222019-04-23 19:40:30 +08001301 * @flush: true if TLB flush is needed by caller
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001302 */
1303int kvm_clear_dirty_log_protect(struct kvm *kvm,
1304 struct kvm_clear_dirty_log *log, bool *flush)
1305{
1306 struct kvm_memslots *slots;
1307 struct kvm_memory_slot *memslot;
Tomas Bortoli98938aa2019-01-02 18:29:37 +01001308 int as_id, id;
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001309 gfn_t offset;
Tomas Bortoli98938aa2019-01-02 18:29:37 +01001310 unsigned long i, n;
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001311 unsigned long *dirty_bitmap;
1312 unsigned long *dirty_bitmap_buffer;
1313
1314 as_id = log->slot >> 16;
1315 id = (u16)log->slot;
1316 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
1317 return -EINVAL;
1318
Paolo Bonzini76d58e02019-04-17 15:28:44 +02001319 if (log->first_page & 63)
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001320 return -EINVAL;
1321
1322 slots = __kvm_memslots(kvm, as_id);
1323 memslot = id_to_memslot(slots, id);
1324
1325 dirty_bitmap = memslot->dirty_bitmap;
1326 if (!dirty_bitmap)
1327 return -ENOENT;
1328
Peter Xu4ddc9202019-05-08 17:15:45 +08001329 n = ALIGN(log->num_pages, BITS_PER_LONG) / 8;
Tomas Bortoli98938aa2019-01-02 18:29:37 +01001330
1331 if (log->first_page > memslot->npages ||
Paolo Bonzini76d58e02019-04-17 15:28:44 +02001332 log->num_pages > memslot->npages - log->first_page ||
1333 (log->num_pages < memslot->npages - log->first_page && (log->num_pages & 63)))
1334 return -EINVAL;
Tomas Bortoli98938aa2019-01-02 18:29:37 +01001335
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001336 *flush = false;
1337 dirty_bitmap_buffer = kvm_second_dirty_bitmap(memslot);
1338 if (copy_from_user(dirty_bitmap_buffer, log->dirty_bitmap, n))
1339 return -EFAULT;
1340
1341 spin_lock(&kvm->mmu_lock);
Peter Xu53eac7a2019-05-08 17:15:46 +08001342 for (offset = log->first_page, i = offset / BITS_PER_LONG,
1343 n = DIV_ROUND_UP(log->num_pages, BITS_PER_LONG); n--;
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02001344 i++, offset += BITS_PER_LONG) {
1345 unsigned long mask = *dirty_bitmap_buffer++;
1346 atomic_long_t *p = (atomic_long_t *) &dirty_bitmap[i];
1347 if (!mask)
1348 continue;
1349
1350 mask &= atomic_long_fetch_andnot(mask, p);
1351
1352 /*
1353 * mask contains the bits that really have been cleared. This
1354 * never includes any bits beyond the length of the memslot (if
1355 * the length is not aligned to 64 pages), therefore it is not
1356 * a problem if userspace sets them in log->dirty_bitmap.
1357 */
1358 if (mask) {
1359 *flush = true;
1360 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1361 offset, mask);
1362 }
1363 }
1364 spin_unlock(&kvm->mmu_lock);
1365
1366 return 0;
1367}
1368EXPORT_SYMBOL_GPL(kvm_clear_dirty_log_protect);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001369#endif
1370
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001371bool kvm_largepages_enabled(void)
1372{
1373 return largepages_enabled;
1374}
1375
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001376void kvm_disable_largepages(void)
1377{
1378 largepages_enabled = false;
1379}
1380EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1381
Gleb Natapov49c77542010-10-18 15:22:23 +02001382struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1383{
1384 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1385}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001386EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001387
Paolo Bonzini8e734852015-05-17 13:58:53 +02001388struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1389{
1390 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1391}
1392
Yaowei Bai33e94152015-11-14 11:21:06 +08001393bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001394{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001395 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001396
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001397 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001398 memslot->flags & KVM_MEMSLOT_INVALID)
Yaowei Bai33e94152015-11-14 11:21:06 +08001399 return false;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001400
Yaowei Bai33e94152015-11-14 11:21:06 +08001401 return true;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001402}
1403EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1404
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001405unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1406{
1407 struct vm_area_struct *vma;
1408 unsigned long addr, size;
1409
1410 size = PAGE_SIZE;
1411
1412 addr = gfn_to_hva(kvm, gfn);
1413 if (kvm_is_error_hva(addr))
1414 return PAGE_SIZE;
1415
1416 down_read(&current->mm->mmap_sem);
1417 vma = find_vma(current->mm, addr);
1418 if (!vma)
1419 goto out;
1420
1421 size = vma_kernel_pagesize(vma);
1422
1423out:
1424 up_read(&current->mm->mmap_sem);
1425
1426 return size;
1427}
1428
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001429static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1430{
1431 return slot->flags & KVM_MEM_READONLY;
1432}
1433
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001434static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1435 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001436{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001437 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001438 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001439
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001440 if (memslot_is_readonly(slot) && write)
1441 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001442
1443 if (nr_pages)
1444 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1445
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001446 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001447}
Xiao Guangrong48987782010-08-22 19:11:43 +08001448
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001449static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1450 gfn_t *nr_pages)
1451{
1452 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1453}
1454
1455unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001456 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001457{
1458 return gfn_to_hva_many(slot, gfn, NULL);
1459}
1460EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1461
Xiao Guangrong48987782010-08-22 19:11:43 +08001462unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1463{
Gleb Natapov49c77542010-10-18 15:22:23 +02001464 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001465}
Sheng Yang0d150292008-04-25 21:44:50 +08001466EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001467
Paolo Bonzini8e734852015-05-17 13:58:53 +02001468unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1469{
1470 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1471}
1472EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1473
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001474/*
Wei Yang970c0d42018-10-09 10:41:15 +08001475 * Return the hva of a @gfn and the R/W attribute if possible.
1476 *
1477 * @slot: the kvm_memory_slot which contains @gfn
1478 * @gfn: the gfn to be translated
1479 * @writable: used to return the read/write attribute of the @slot if the hva
1480 * is valid and @writable is not NULL
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001481 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001482unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1483 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001484{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001485 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1486
1487 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001488 *writable = !memslot_is_readonly(slot);
1489
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001490 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001491}
1492
Christoffer Dall64d83122014-08-19 12:15:00 +02001493unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1494{
1495 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1496
1497 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1498}
1499
Paolo Bonzini8e734852015-05-17 13:58:53 +02001500unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1501{
1502 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1503
1504 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1505}
1506
Huang Yingfafc3db2011-01-30 11:15:49 +08001507static inline int check_user_page_hwpoison(unsigned long addr)
1508{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001509 int rc, flags = FOLL_HWPOISON | FOLL_WRITE;
Huang Yingfafc3db2011-01-30 11:15:49 +08001510
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001511 rc = get_user_pages(addr, 1, flags, NULL, NULL);
Huang Yingfafc3db2011-01-30 11:15:49 +08001512 return rc == -EHWPOISON;
1513}
1514
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001515/*
Paolo Bonzinib9b33da2018-07-27 17:44:41 +02001516 * The fast path to get the writable pfn which will be stored in @pfn,
1517 * true indicates success, otherwise false is returned. It's also the
Miaohe Lin311497e2019-12-11 14:26:25 +08001518 * only part that runs if we can in atomic context.
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001519 */
Paolo Bonzinib9b33da2018-07-27 17:44:41 +02001520static bool hva_to_pfn_fast(unsigned long addr, bool write_fault,
1521 bool *writable, kvm_pfn_t *pfn)
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001522{
1523 struct page *page[1];
1524 int npages;
1525
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001526 /*
1527 * Fast pin a writable pfn only if it is a write fault request
1528 * or the caller allows to map a writable pfn for a read fault
1529 * request.
1530 */
1531 if (!(write_fault || writable))
1532 return false;
1533
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001534 npages = __get_user_pages_fast(addr, 1, 1, page);
1535 if (npages == 1) {
1536 *pfn = page_to_pfn(page[0]);
1537
1538 if (writable)
1539 *writable = true;
1540 return true;
1541 }
1542
1543 return false;
1544}
1545
1546/*
1547 * The slow path to get the pfn of the specified host virtual address,
1548 * 1 indicates success, -errno is returned if error is detected.
1549 */
1550static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
Dan Williamsba049e92016-01-15 16:56:11 -08001551 bool *writable, kvm_pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001552{
Al Viroce530532017-11-19 17:47:33 -05001553 unsigned int flags = FOLL_HWPOISON;
1554 struct page *page;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001555 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001556
1557 might_sleep();
1558
1559 if (writable)
1560 *writable = write_fault;
1561
Al Viroce530532017-11-19 17:47:33 -05001562 if (write_fault)
1563 flags |= FOLL_WRITE;
1564 if (async)
1565 flags |= FOLL_NOWAIT;
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001566
Al Viroce530532017-11-19 17:47:33 -05001567 npages = get_user_pages_unlocked(addr, 1, &page, flags);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001568 if (npages != 1)
1569 return npages;
1570
1571 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001572 if (unlikely(!write_fault) && writable) {
Al Viroce530532017-11-19 17:47:33 -05001573 struct page *wpage;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001574
Al Viroce530532017-11-19 17:47:33 -05001575 if (__get_user_pages_fast(addr, 1, 1, &wpage) == 1) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001576 *writable = true;
Al Viroce530532017-11-19 17:47:33 -05001577 put_page(page);
1578 page = wpage;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001579 }
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001580 }
Al Viroce530532017-11-19 17:47:33 -05001581 *pfn = page_to_pfn(page);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001582 return npages;
1583}
1584
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001585static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1586{
1587 if (unlikely(!(vma->vm_flags & VM_READ)))
1588 return false;
1589
1590 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1591 return false;
1592
1593 return true;
1594}
1595
Paolo Bonzini92176a82016-06-07 16:22:47 +02001596static int hva_to_pfn_remapped(struct vm_area_struct *vma,
1597 unsigned long addr, bool *async,
KarimAllah Ahmeda340b3e2018-01-17 19:18:56 +01001598 bool write_fault, bool *writable,
1599 kvm_pfn_t *p_pfn)
Paolo Bonzini92176a82016-06-07 16:22:47 +02001600{
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001601 unsigned long pfn;
1602 int r;
1603
1604 r = follow_pfn(vma, addr, &pfn);
1605 if (r) {
1606 /*
1607 * get_user_pages fails for VM_IO and VM_PFNMAP vmas and does
1608 * not call the fault handler, so do it here.
1609 */
1610 bool unlocked = false;
1611 r = fixup_user_fault(current, current->mm, addr,
1612 (write_fault ? FAULT_FLAG_WRITE : 0),
1613 &unlocked);
1614 if (unlocked)
1615 return -EAGAIN;
1616 if (r)
1617 return r;
1618
1619 r = follow_pfn(vma, addr, &pfn);
1620 if (r)
1621 return r;
1622
1623 }
1624
KarimAllah Ahmeda340b3e2018-01-17 19:18:56 +01001625 if (writable)
1626 *writable = true;
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001627
1628 /*
1629 * Get a reference here because callers of *hva_to_pfn* and
1630 * *gfn_to_pfn* ultimately call kvm_release_pfn_clean on the
1631 * returned pfn. This is only needed if the VMA has VM_MIXEDMAP
1632 * set, but the kvm_get_pfn/kvm_release_pfn_clean pair will
1633 * simply do nothing for reserved pfns.
1634 *
1635 * Whoever called remap_pfn_range is also going to call e.g.
1636 * unmap_mapping_range before the underlying pages are freed,
1637 * causing a call to our MMU notifier.
1638 */
1639 kvm_get_pfn(pfn);
1640
1641 *p_pfn = pfn;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001642 return 0;
1643}
1644
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001645/*
1646 * Pin guest page in memory and return its pfn.
1647 * @addr: host virtual address which maps memory to the guest
1648 * @atomic: whether this function can sleep
1649 * @async: whether this function need to wait IO complete if the
1650 * host page is not in the memory
1651 * @write_fault: whether we should get a writable host page
1652 * @writable: whether it allows to map a writable host page for !@write_fault
1653 *
1654 * The function will map a writable host page for these two cases:
1655 * 1): @write_fault = true
1656 * 2): @write_fault = false && @writable, @writable will tell the caller
1657 * whether the mapping is writable.
1658 */
Dan Williamsba049e92016-01-15 16:56:11 -08001659static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001660 bool write_fault, bool *writable)
1661{
1662 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001663 kvm_pfn_t pfn = 0;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001664 int npages, r;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001665
Gleb Natapovaf585b92010-10-14 11:22:46 +02001666 /* we can do it either atomically or asynchronously, not both */
1667 BUG_ON(atomic && async);
1668
Paolo Bonzinib9b33da2018-07-27 17:44:41 +02001669 if (hva_to_pfn_fast(addr, write_fault, writable, &pfn))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001670 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001671
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001672 if (atomic)
1673 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001674
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001675 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1676 if (npages == 1)
1677 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001678
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001679 down_read(&current->mm->mmap_sem);
1680 if (npages == -EHWPOISON ||
1681 (!async && check_user_page_hwpoison(addr))) {
1682 pfn = KVM_PFN_ERR_HWPOISON;
1683 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001684 }
Izik Eidus539cb662007-11-11 22:05:04 +02001685
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001686retry:
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001687 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001688
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001689 if (vma == NULL)
1690 pfn = KVM_PFN_ERR_FAULT;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001691 else if (vma->vm_flags & (VM_IO | VM_PFNMAP)) {
KarimAllah Ahmeda340b3e2018-01-17 19:18:56 +01001692 r = hva_to_pfn_remapped(vma, addr, async, write_fault, writable, &pfn);
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001693 if (r == -EAGAIN)
1694 goto retry;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001695 if (r < 0)
1696 pfn = KVM_PFN_ERR_FAULT;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001697 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001698 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001699 *async = true;
1700 pfn = KVM_PFN_ERR_FAULT;
1701 }
1702exit:
1703 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001704 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001705}
1706
Dan Williamsba049e92016-01-15 16:56:11 -08001707kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
1708 bool atomic, bool *async, bool write_fault,
1709 bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001710{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001711 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1712
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001713 if (addr == KVM_HVA_ERR_RO_BAD) {
1714 if (writable)
1715 *writable = false;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001716 return KVM_PFN_ERR_RO_FAULT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001717 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001718
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001719 if (kvm_is_error_hva(addr)) {
1720 if (writable)
1721 *writable = false;
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001722 return KVM_PFN_NOSLOT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001723 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001724
1725 /* Do not map writable pfn in the readonly memslot. */
1726 if (writable && memslot_is_readonly(slot)) {
1727 *writable = false;
1728 writable = NULL;
1729 }
1730
1731 return hva_to_pfn(addr, atomic, async, write_fault,
1732 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001733}
Paolo Bonzini35204692015-04-02 11:20:48 +02001734EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001735
Dan Williamsba049e92016-01-15 16:56:11 -08001736kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001737 bool *writable)
1738{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001739 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1740 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001741}
1742EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1743
Dan Williamsba049e92016-01-15 16:56:11 -08001744kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001745{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001746 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001747}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001748EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001749
Dan Williamsba049e92016-01-15 16:56:11 -08001750kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001751{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001752 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001753}
1754EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1755
Dan Williamsba049e92016-01-15 16:56:11 -08001756kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001757{
1758 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1759}
1760EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1761
Dan Williamsba049e92016-01-15 16:56:11 -08001762kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001763{
1764 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1765}
1766EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1767
Dan Williamsba049e92016-01-15 16:56:11 -08001768kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001769{
1770 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1771}
1772EXPORT_SYMBOL_GPL(gfn_to_pfn);
1773
Dan Williamsba049e92016-01-15 16:56:11 -08001774kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001775{
1776 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1777}
1778EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1779
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001780int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1781 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001782{
1783 unsigned long addr;
Arnd Bergmann076b9252017-08-10 14:14:39 +02001784 gfn_t entry = 0;
Xiao Guangrong48987782010-08-22 19:11:43 +08001785
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001786 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001787 if (kvm_is_error_hva(addr))
1788 return -1;
1789
1790 if (entry < nr_pages)
1791 return 0;
1792
1793 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1794}
1795EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1796
Dan Williamsba049e92016-01-15 16:56:11 -08001797static struct page *kvm_pfn_to_page(kvm_pfn_t pfn)
Xiao Guangronga2766322012-07-26 11:58:59 +08001798{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001799 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001800 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001801
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001802 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001803 WARN_ON(1);
1804 return KVM_ERR_PTR_BAD_PAGE;
1805 }
1806
Xiao Guangronga2766322012-07-26 11:58:59 +08001807 return pfn_to_page(pfn);
1808}
1809
Anthony Liguori35149e22008-04-02 14:46:56 -05001810struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1811{
Dan Williamsba049e92016-01-15 16:56:11 -08001812 kvm_pfn_t pfn;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001813
1814 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001815
Xiao Guangronga2766322012-07-26 11:58:59 +08001816 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001817}
1818EXPORT_SYMBOL_GPL(gfn_to_page);
1819
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001820static int __kvm_map_gfn(struct kvm_memory_slot *slot, gfn_t gfn,
1821 struct kvm_host_map *map)
1822{
1823 kvm_pfn_t pfn;
1824 void *hva = NULL;
1825 struct page *page = KVM_UNMAPPED_PAGE;
1826
1827 if (!map)
1828 return -EINVAL;
1829
1830 pfn = gfn_to_pfn_memslot(slot, gfn);
1831 if (is_error_noslot_pfn(pfn))
1832 return -EINVAL;
1833
1834 if (pfn_valid(pfn)) {
1835 page = pfn_to_page(pfn);
1836 hva = kmap(page);
Paolo Bonzinid30b2142019-05-20 12:06:36 +02001837#ifdef CONFIG_HAS_IOMEM
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001838 } else {
1839 hva = memremap(pfn_to_hpa(pfn), PAGE_SIZE, MEMREMAP_WB);
Paolo Bonzinid30b2142019-05-20 12:06:36 +02001840#endif
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001841 }
1842
1843 if (!hva)
1844 return -EFAULT;
1845
1846 map->page = page;
1847 map->hva = hva;
1848 map->pfn = pfn;
1849 map->gfn = gfn;
1850
1851 return 0;
1852}
1853
1854int kvm_vcpu_map(struct kvm_vcpu *vcpu, gfn_t gfn, struct kvm_host_map *map)
1855{
1856 return __kvm_map_gfn(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, map);
1857}
1858EXPORT_SYMBOL_GPL(kvm_vcpu_map);
1859
1860void kvm_vcpu_unmap(struct kvm_vcpu *vcpu, struct kvm_host_map *map,
1861 bool dirty)
1862{
1863 if (!map)
1864 return;
1865
1866 if (!map->hva)
1867 return;
1868
KarimAllah Ahmedb614c6022019-07-10 11:13:13 +02001869 if (map->page != KVM_UNMAPPED_PAGE)
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001870 kunmap(map->page);
Christian Borntraegereb1f2f32019-05-27 10:28:25 +02001871#ifdef CONFIG_HAS_IOMEM
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001872 else
1873 memunmap(map->hva);
Christian Borntraegereb1f2f32019-05-27 10:28:25 +02001874#endif
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001875
1876 if (dirty) {
1877 kvm_vcpu_mark_page_dirty(vcpu, map->gfn);
1878 kvm_release_pfn_dirty(map->pfn);
1879 } else {
1880 kvm_release_pfn_clean(map->pfn);
1881 }
1882
1883 map->hva = NULL;
1884 map->page = NULL;
1885}
1886EXPORT_SYMBOL_GPL(kvm_vcpu_unmap);
1887
Paolo Bonzini8e734852015-05-17 13:58:53 +02001888struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1889{
Dan Williamsba049e92016-01-15 16:56:11 -08001890 kvm_pfn_t pfn;
Paolo Bonzini8e734852015-05-17 13:58:53 +02001891
1892 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1893
1894 return kvm_pfn_to_page(pfn);
1895}
1896EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1897
Izik Eidusb4231d62007-11-20 11:49:33 +02001898void kvm_release_page_clean(struct page *page)
1899{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001900 WARN_ON(is_error_page(page));
1901
Anthony Liguori35149e22008-04-02 14:46:56 -05001902 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001903}
1904EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1905
Dan Williamsba049e92016-01-15 16:56:11 -08001906void kvm_release_pfn_clean(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001907{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001908 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001909 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001910}
1911EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1912
Izik Eidusb4231d62007-11-20 11:49:33 +02001913void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001914{
Xiao Guangronga2766322012-07-26 11:58:59 +08001915 WARN_ON(is_error_page(page));
1916
Anthony Liguori35149e22008-04-02 14:46:56 -05001917 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001918}
Izik Eidusb4231d62007-11-20 11:49:33 +02001919EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001920
David Hildenbrandf7a65092017-09-01 17:11:43 +02001921void kvm_release_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001922{
1923 kvm_set_pfn_dirty(pfn);
1924 kvm_release_pfn_clean(pfn);
1925}
David Hildenbrandf7a65092017-09-01 17:11:43 +02001926EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
Anthony Liguori35149e22008-04-02 14:46:56 -05001927
Dan Williamsba049e92016-01-15 16:56:11 -08001928void kvm_set_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001929{
Miaohe Lind29c03a2019-12-05 11:05:05 +08001930 if (!kvm_is_reserved_pfn(pfn) && !kvm_is_zone_device_pfn(pfn))
1931 SetPageDirty(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001932}
1933EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1934
Dan Williamsba049e92016-01-15 16:56:11 -08001935void kvm_set_pfn_accessed(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001936{
Sean Christophersona78986a2019-11-11 14:12:27 -08001937 if (!kvm_is_reserved_pfn(pfn) && !kvm_is_zone_device_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001938 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001939}
1940EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1941
Dan Williamsba049e92016-01-15 16:56:11 -08001942void kvm_get_pfn(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001943{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001944 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001945 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001946}
1947EXPORT_SYMBOL_GPL(kvm_get_pfn);
1948
Izik Eidus195aefd2007-10-01 22:14:18 +02001949static int next_segment(unsigned long len, int offset)
1950{
1951 if (len > PAGE_SIZE - offset)
1952 return PAGE_SIZE - offset;
1953 else
1954 return len;
1955}
1956
Paolo Bonzini8e734852015-05-17 13:58:53 +02001957static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
1958 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001959{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001960 int r;
1961 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001962
Paolo Bonzini8e734852015-05-17 13:58:53 +02001963 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001964 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001965 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001966 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001967 if (r)
1968 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001969 return 0;
1970}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001971
1972int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1973 int len)
1974{
1975 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1976
1977 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1978}
Izik Eidus195aefd2007-10-01 22:14:18 +02001979EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1980
Paolo Bonzini8e734852015-05-17 13:58:53 +02001981int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
1982 int offset, int len)
1983{
1984 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1985
1986 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1987}
1988EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
1989
Izik Eidus195aefd2007-10-01 22:14:18 +02001990int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1991{
1992 gfn_t gfn = gpa >> PAGE_SHIFT;
1993 int seg;
1994 int offset = offset_in_page(gpa);
1995 int ret;
1996
1997 while ((seg = next_segment(len, offset)) != 0) {
1998 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1999 if (ret < 0)
2000 return ret;
2001 offset = 0;
2002 len -= seg;
2003 data += seg;
2004 ++gfn;
2005 }
2006 return 0;
2007}
2008EXPORT_SYMBOL_GPL(kvm_read_guest);
2009
Paolo Bonzini8e734852015-05-17 13:58:53 +02002010int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
2011{
2012 gfn_t gfn = gpa >> PAGE_SHIFT;
2013 int seg;
2014 int offset = offset_in_page(gpa);
2015 int ret;
2016
2017 while ((seg = next_segment(len, offset)) != 0) {
2018 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
2019 if (ret < 0)
2020 return ret;
2021 offset = 0;
2022 len -= seg;
2023 data += seg;
2024 ++gfn;
2025 }
2026 return 0;
2027}
2028EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
2029
2030static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
2031 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002032{
2033 int r;
2034 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002035
Paolo Bonzini8e734852015-05-17 13:58:53 +02002036 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002037 if (kvm_is_error_hva(addr))
2038 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01002039 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02002040 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01002041 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002042 if (r)
2043 return -EFAULT;
2044 return 0;
2045}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002046
Paolo Bonzini8e734852015-05-17 13:58:53 +02002047int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
2048 void *data, unsigned long len)
2049{
2050 gfn_t gfn = gpa >> PAGE_SHIFT;
2051 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2052 int offset = offset_in_page(gpa);
2053
2054 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
2055}
2056EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
2057
2058static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
2059 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02002060{
Izik Eiduse0506bc2007-11-11 22:10:22 +02002061 int r;
2062 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02002063
Radim Krčmář251eb842015-04-10 21:47:27 +02002064 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002065 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02002066 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08002067 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002068 if (r)
2069 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002070 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02002071 return 0;
2072}
Paolo Bonzini8e734852015-05-17 13:58:53 +02002073
2074int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
2075 const void *data, int offset, int len)
2076{
2077 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
2078
2079 return __kvm_write_guest_page(slot, gfn, data, offset, len);
2080}
Izik Eidus195aefd2007-10-01 22:14:18 +02002081EXPORT_SYMBOL_GPL(kvm_write_guest_page);
2082
Paolo Bonzini8e734852015-05-17 13:58:53 +02002083int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
2084 const void *data, int offset, int len)
2085{
2086 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2087
2088 return __kvm_write_guest_page(slot, gfn, data, offset, len);
2089}
2090EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
2091
Izik Eidus195aefd2007-10-01 22:14:18 +02002092int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
2093 unsigned long len)
2094{
2095 gfn_t gfn = gpa >> PAGE_SHIFT;
2096 int seg;
2097 int offset = offset_in_page(gpa);
2098 int ret;
2099
2100 while ((seg = next_segment(len, offset)) != 0) {
2101 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
2102 if (ret < 0)
2103 return ret;
2104 offset = 0;
2105 len -= seg;
2106 data += seg;
2107 ++gfn;
2108 }
2109 return 0;
2110}
Wincy Vanff651cb2014-12-11 08:52:58 +03002111EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02002112
Paolo Bonzini8e734852015-05-17 13:58:53 +02002113int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
2114 unsigned long len)
2115{
2116 gfn_t gfn = gpa >> PAGE_SHIFT;
2117 int seg;
2118 int offset = offset_in_page(gpa);
2119 int ret;
2120
2121 while ((seg = next_segment(len, offset)) != 0) {
2122 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
2123 if (ret < 0)
2124 return ret;
2125 offset = 0;
2126 len -= seg;
2127 data += seg;
2128 ++gfn;
2129 }
2130 return 0;
2131}
2132EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
2133
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002134static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
2135 struct gfn_to_hva_cache *ghc,
2136 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02002137{
Gleb Natapov49c77542010-10-18 15:22:23 +02002138 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07002139 gfn_t start_gfn = gpa >> PAGE_SHIFT;
2140 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
2141 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
2142 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02002143
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002144 /* Update ghc->generation before performing any error checks. */
Gleb Natapov49c77542010-10-18 15:22:23 +02002145 ghc->generation = slots->generation;
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002146
2147 if (start_gfn > end_gfn) {
2148 ghc->hva = KVM_HVA_ERR_BAD;
2149 return -EINVAL;
2150 }
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002151
2152 /*
2153 * If the requested region crosses two memslots, we still
2154 * verify that the entire region is valid here.
2155 */
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002156 for ( ; start_gfn <= end_gfn; start_gfn += nr_pages_avail) {
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002157 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
2158 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
2159 &nr_pages_avail);
2160 if (kvm_is_error_hva(ghc->hva))
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002161 return -EFAULT;
Andrew Honig8f964522013-03-29 09:35:21 -07002162 }
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002163
2164 /* Use the slow path for cross page reads and writes. */
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002165 if (nr_pages_needed == 1)
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002166 ghc->hva += offset;
2167 else
2168 ghc->memslot = NULL;
2169
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002170 ghc->gpa = gpa;
2171 ghc->len = len;
2172 return 0;
Gleb Natapov49c77542010-10-18 15:22:23 +02002173}
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002174
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002175int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002176 gpa_t gpa, unsigned long len)
2177{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002178 struct kvm_memslots *slots = kvm_memslots(kvm);
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002179 return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
2180}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002181EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
Gleb Natapov49c77542010-10-18 15:22:23 +02002182
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002183int kvm_write_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Jim Mattson7a86dab2018-12-14 14:34:43 -08002184 void *data, unsigned int offset,
2185 unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02002186{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002187 struct kvm_memslots *slots = kvm_memslots(kvm);
Gleb Natapov49c77542010-10-18 15:22:23 +02002188 int r;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002189 gpa_t gpa = ghc->gpa + offset;
Gleb Natapov49c77542010-10-18 15:22:23 +02002190
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002191 BUG_ON(len + offset > ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002192
Sean Christophersondc9ce712020-01-09 15:56:20 -08002193 if (slots->generation != ghc->generation) {
2194 if (__kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len))
2195 return -EFAULT;
2196 }
Andrew Honig8f964522013-03-29 09:35:21 -07002197
Gleb Natapov49c77542010-10-18 15:22:23 +02002198 if (kvm_is_error_hva(ghc->hva))
2199 return -EFAULT;
2200
Sean Christophersonfcfbc612020-01-09 15:56:18 -08002201 if (unlikely(!ghc->memslot))
2202 return kvm_write_guest(kvm, gpa, data, len);
2203
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002204 r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02002205 if (r)
2206 return -EFAULT;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002207 mark_page_dirty_in_slot(ghc->memslot, gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02002208
2209 return 0;
2210}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002211EXPORT_SYMBOL_GPL(kvm_write_guest_offset_cached);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002212
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002213int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
2214 void *data, unsigned long len)
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002215{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002216 return kvm_write_guest_offset_cached(kvm, ghc, data, 0, len);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002217}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002218EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
Gleb Natapov49c77542010-10-18 15:22:23 +02002219
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002220int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
2221 void *data, unsigned long len)
Gleb Natapove03b6442011-07-11 15:28:11 -04002222{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002223 struct kvm_memslots *slots = kvm_memslots(kvm);
Gleb Natapove03b6442011-07-11 15:28:11 -04002224 int r;
2225
Andrew Honig8f964522013-03-29 09:35:21 -07002226 BUG_ON(len > ghc->len);
2227
Sean Christophersondc9ce712020-01-09 15:56:20 -08002228 if (slots->generation != ghc->generation) {
2229 if (__kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len))
2230 return -EFAULT;
2231 }
Andrew Honig8f964522013-03-29 09:35:21 -07002232
Gleb Natapove03b6442011-07-11 15:28:11 -04002233 if (kvm_is_error_hva(ghc->hva))
2234 return -EFAULT;
2235
Sean Christophersonfcfbc612020-01-09 15:56:18 -08002236 if (unlikely(!ghc->memslot))
2237 return kvm_read_guest(kvm, ghc->gpa, data, len);
2238
Gleb Natapove03b6442011-07-11 15:28:11 -04002239 r = __copy_from_user(data, (void __user *)ghc->hva, len);
2240 if (r)
2241 return -EFAULT;
2242
2243 return 0;
2244}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002245EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
Gleb Natapove03b6442011-07-11 15:28:11 -04002246
Izik Eidus195aefd2007-10-01 22:14:18 +02002247int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
2248{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01002249 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
2250
2251 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02002252}
2253EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
2254
2255int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
2256{
2257 gfn_t gfn = gpa >> PAGE_SHIFT;
2258 int seg;
2259 int offset = offset_in_page(gpa);
2260 int ret;
2261
Kevin Mulveybfda0e82015-02-20 08:21:36 -05002262 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02002263 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
2264 if (ret < 0)
2265 return ret;
2266 offset = 0;
2267 len -= seg;
2268 ++gfn;
2269 }
2270 return 0;
2271}
2272EXPORT_SYMBOL_GPL(kvm_clear_guest);
2273
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002274static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08002275 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276{
Rusty Russell7e9d6192007-07-31 20:41:14 +10002277 if (memslot && memslot->dirty_bitmap) {
2278 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002279
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07002280 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002281 }
2282}
2283
Gleb Natapov49c77542010-10-18 15:22:23 +02002284void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
2285{
2286 struct kvm_memory_slot *memslot;
2287
2288 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002289 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02002290}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302291EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02002292
Paolo Bonzini8e734852015-05-17 13:58:53 +02002293void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
2294{
2295 struct kvm_memory_slot *memslot;
2296
2297 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2298 mark_page_dirty_in_slot(memslot, gfn);
2299}
2300EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
2301
Jan H. Schönherr20b70352017-11-24 22:39:01 +01002302void kvm_sigset_activate(struct kvm_vcpu *vcpu)
2303{
2304 if (!vcpu->sigset_active)
2305 return;
2306
2307 /*
2308 * This does a lockless modification of ->real_blocked, which is fine
2309 * because, only current can change ->real_blocked and all readers of
2310 * ->real_blocked don't care as long ->real_blocked is always a subset
2311 * of ->blocked.
2312 */
2313 sigprocmask(SIG_SETMASK, &vcpu->sigset, &current->real_blocked);
2314}
2315
2316void kvm_sigset_deactivate(struct kvm_vcpu *vcpu)
2317{
2318 if (!vcpu->sigset_active)
2319 return;
2320
2321 sigprocmask(SIG_SETMASK, &current->real_blocked, NULL);
2322 sigemptyset(&current->real_blocked);
2323}
2324
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002325static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
2326{
Nir Weinerdee339b2019-01-27 12:17:16 +02002327 unsigned int old, val, grow, grow_start;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002328
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002329 old = val = vcpu->halt_poll_ns;
Nir Weinerdee339b2019-01-27 12:17:16 +02002330 grow_start = READ_ONCE(halt_poll_ns_grow_start);
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002331 grow = READ_ONCE(halt_poll_ns_grow);
Nir Weiner7fa08e72019-01-27 12:17:14 +02002332 if (!grow)
2333 goto out;
2334
Nir Weinerdee339b2019-01-27 12:17:16 +02002335 val *= grow;
2336 if (val < grow_start)
2337 val = grow_start;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002338
David Matlack313f6362016-03-08 16:19:44 -08002339 if (val > halt_poll_ns)
2340 val = halt_poll_ns;
2341
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002342 vcpu->halt_poll_ns = val;
Nir Weiner7fa08e72019-01-27 12:17:14 +02002343out:
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002344 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002345}
2346
2347static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
2348{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002349 unsigned int old, val, shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002350
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002351 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002352 shrink = READ_ONCE(halt_poll_ns_shrink);
2353 if (shrink == 0)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002354 val = 0;
2355 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002356 val /= shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002357
2358 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002359 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002360}
2361
Paolo Bonzinif7819512015-02-04 18:20:58 +01002362static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
2363{
Junaid Shahid50c28f22018-06-27 14:59:11 -07002364 int ret = -EINTR;
2365 int idx = srcu_read_lock(&vcpu->kvm->srcu);
2366
Paolo Bonzinif7819512015-02-04 18:20:58 +01002367 if (kvm_arch_vcpu_runnable(vcpu)) {
2368 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Junaid Shahid50c28f22018-06-27 14:59:11 -07002369 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002370 }
2371 if (kvm_cpu_has_pending_timer(vcpu))
Junaid Shahid50c28f22018-06-27 14:59:11 -07002372 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002373 if (signal_pending(current))
Junaid Shahid50c28f22018-06-27 14:59:11 -07002374 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002375
Junaid Shahid50c28f22018-06-27 14:59:11 -07002376 ret = 0;
2377out:
2378 srcu_read_unlock(&vcpu->kvm->srcu, idx);
2379 return ret;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002380}
2381
Eddie Dongb6958ce2007-07-18 12:15:21 +03002382/*
2383 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2384 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05002385void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03002386{
Paolo Bonzinif7819512015-02-04 18:20:58 +01002387 ktime_t start, cur;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002388 DECLARE_SWAITQUEUE(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002389 bool waited = false;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002390 u64 block_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002391
Marc Zyngier07ab0f82019-08-02 11:37:09 +01002392 kvm_arch_vcpu_blocking(vcpu);
2393
Paolo Bonzinif7819512015-02-04 18:20:58 +01002394 start = cur = ktime_get();
Christian Borntraegercdd6ad32019-03-05 05:30:01 -05002395 if (vcpu->halt_poll_ns && !kvm_arch_no_poll(vcpu)) {
Wanpeng Li19020f82015-09-03 22:07:37 +08002396 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002397
Paolo Bonzini62bea5b2015-09-15 18:27:57 +02002398 ++vcpu->stat.halt_attempted_poll;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002399 do {
2400 /*
2401 * This sets KVM_REQ_UNHALT if an interrupt
2402 * arrives.
2403 */
2404 if (kvm_vcpu_check_block(vcpu) < 0) {
2405 ++vcpu->stat.halt_successful_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002406 if (!vcpu_valid_wakeup(vcpu))
2407 ++vcpu->stat.halt_poll_invalid;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002408 goto out;
2409 }
2410 cur = ktime_get();
2411 } while (single_task_running() && ktime_before(cur, stop));
2412 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03002413
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002414 for (;;) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02002415 prepare_to_swait_exclusive(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002416
Paolo Bonzinif7819512015-02-04 18:20:58 +01002417 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002418 break;
2419
Paolo Bonzinif7819512015-02-04 18:20:58 +01002420 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03002421 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03002422 }
2423
Marcelo Tosatti85773702016-02-19 09:46:39 +01002424 finish_swait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002425 cur = ktime_get();
Paolo Bonzinif7819512015-02-04 18:20:58 +01002426out:
Marc Zyngier07ab0f82019-08-02 11:37:09 +01002427 kvm_arch_vcpu_unblocking(vcpu);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002428 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2429
Wanpeng Li44551b22019-09-29 09:06:56 +08002430 if (!kvm_arch_no_poll(vcpu)) {
2431 if (!vcpu_valid_wakeup(vcpu)) {
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002432 shrink_halt_poll_ns(vcpu);
Wanpeng Li44551b22019-09-29 09:06:56 +08002433 } else if (halt_poll_ns) {
2434 if (block_ns <= vcpu->halt_poll_ns)
2435 ;
2436 /* we had a long block, shrink polling */
2437 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
2438 shrink_halt_poll_ns(vcpu);
2439 /* we had a short halt and our poll time is too small */
2440 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2441 block_ns < halt_poll_ns)
2442 grow_halt_poll_ns(vcpu);
2443 } else {
2444 vcpu->halt_poll_ns = 0;
2445 }
2446 }
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002447
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002448 trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu));
2449 kvm_arch_vcpu_block_finish(vcpu);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002450}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302451EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002452
Radim Krčmář178f02f2017-04-26 22:32:26 +02002453bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -05002454{
Marcelo Tosatti85773702016-02-19 09:46:39 +01002455 struct swait_queue_head *wqp;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002456
2457 wqp = kvm_arch_vcpu_wq(vcpu);
Davidlohr Bueso5e0018b2017-09-13 13:08:22 -07002458 if (swq_has_sleeper(wqp)) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02002459 swake_up_one(wqp);
Wanpeng Lid73eb572019-07-18 19:39:06 +08002460 WRITE_ONCE(vcpu->ready, true);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002461 ++vcpu->stat.halt_wakeup;
Radim Krčmář178f02f2017-04-26 22:32:26 +02002462 return true;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002463 }
2464
Radim Krčmář178f02f2017-04-26 22:32:26 +02002465 return false;
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002466}
2467EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2468
Paolo Bonzini0266c892017-05-04 15:14:13 +02002469#ifndef CONFIG_S390
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002470/*
2471 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2472 */
2473void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2474{
2475 int me;
2476 int cpu = vcpu->cpu;
2477
Radim Krčmář178f02f2017-04-26 22:32:26 +02002478 if (kvm_vcpu_wake_up(vcpu))
2479 return;
2480
Christoffer Dallb6d33832012-03-08 16:44:24 -05002481 me = get_cpu();
2482 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2483 if (kvm_arch_vcpu_should_kick(vcpu))
2484 smp_send_reschedule(cpu);
2485 put_cpu();
2486}
Yang Zhanga20ed542013-04-11 19:25:15 +08002487EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Paolo Bonzini0266c892017-05-04 15:14:13 +02002488#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05002489
Dan Carpenterfa933842014-05-23 13:20:42 +03002490int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02002491{
2492 struct pid *pid;
2493 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03002494 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002495
2496 rcu_read_lock();
2497 pid = rcu_dereference(target->pid);
2498 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10002499 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002500 rcu_read_unlock();
2501 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302502 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302503 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002504 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302505
2506 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002507}
2508EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2509
Raghavendra K T06e48c52012-07-19 15:17:52 +05302510/*
2511 * Helper that checks whether a VCPU is eligible for directed yield.
2512 * Most eligible candidate to yield is decided by following heuristics:
2513 *
2514 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2515 * (preempted lock holder), indicated by @in_spin_loop.
2516 * Set at the beiginning and cleared at the end of interception/PLE handler.
2517 *
2518 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2519 * chance last time (mostly it has become eligible now since we have probably
2520 * yielded to lockholder in last iteration. This is done by toggling
2521 * @dy_eligible each time a VCPU checked for eligibility.)
2522 *
2523 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2524 * to preempted lock-holder could result in wrong VCPU selection and CPU
2525 * burning. Giving priority for a potential lock-holder increases lock
2526 * progress.
2527 *
2528 * Since algorithm is based on heuristics, accessing another VCPU data without
2529 * locking does not harm. It may result in trying to yield to same VCPU, fail
2530 * and continue with next VCPU and so on.
2531 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002532static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302533{
Scott Wood4a55dd72014-01-09 18:43:16 -06002534#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302535 bool eligible;
2536
2537 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002538 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302539
2540 if (vcpu->spin_loop.in_spin_loop)
2541 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2542
2543 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002544#else
2545 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302546#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002547}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302548
Wanpeng Li17e433b2019-08-05 10:03:19 +08002549/*
2550 * Unlike kvm_arch_vcpu_runnable, this function is called outside
2551 * a vcpu_load/vcpu_put pair. However, for most architectures
2552 * kvm_arch_vcpu_runnable does not require vcpu_load.
2553 */
2554bool __weak kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
2555{
2556 return kvm_arch_vcpu_runnable(vcpu);
2557}
2558
2559static bool vcpu_dy_runnable(struct kvm_vcpu *vcpu)
2560{
2561 if (kvm_arch_dy_runnable(vcpu))
2562 return true;
2563
2564#ifdef CONFIG_KVM_ASYNC_PF
2565 if (!list_empty_careful(&vcpu->async_pf.done))
2566 return true;
2567#endif
2568
2569 return false;
2570}
2571
Longpeng(Mike)199b5762017-08-08 12:05:32 +08002572void kvm_vcpu_on_spin(struct kvm_vcpu *me, bool yield_to_kernel_mode)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002573{
Rik van Riel217ece62011-02-01 09:53:28 -05002574 struct kvm *kvm = me->kvm;
2575 struct kvm_vcpu *vcpu;
2576 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2577 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302578 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002579 int pass;
2580 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002581
Raghavendra K T4c088492012-07-18 19:07:46 +05302582 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002583 /*
2584 * We boost the priority of a VCPU that is runnable but not
2585 * currently running, because it got preempted by something
2586 * else and called schedule in __vcpu_run. Hopefully that
2587 * VCPU is holding the lock that we need and will release it.
2588 * We approximate round-robin by starting at the last boosted VCPU.
2589 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302590 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002591 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002592 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002593 i = last_boosted_vcpu;
2594 continue;
2595 } else if (pass && i > last_boosted_vcpu)
2596 break;
Wanpeng Lid73eb572019-07-18 19:39:06 +08002597 if (!READ_ONCE(vcpu->ready))
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302598 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002599 if (vcpu == me)
2600 continue;
Wanpeng Li17e433b2019-08-05 10:03:19 +08002601 if (swait_active(&vcpu->wq) && !vcpu_dy_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002602 continue;
Wanpeng Li046ddee2019-08-01 11:30:14 +08002603 if (READ_ONCE(vcpu->preempted) && yield_to_kernel_mode &&
2604 !kvm_arch_vcpu_in_kernel(vcpu))
Longpeng(Mike)199b5762017-08-08 12:05:32 +08002605 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302606 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2607 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302608
2609 yielded = kvm_vcpu_yield_to(vcpu);
2610 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002611 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002612 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302613 } else if (yielded < 0) {
2614 try--;
2615 if (!try)
2616 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002617 }
Rik van Riel217ece62011-02-01 09:53:28 -05002618 }
2619 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302620 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302621
2622 /* Ensure vcpu is not eligible during next spinloop */
2623 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002624}
2625EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2626
Souptick Joarder1499fa82018-04-19 00:49:58 +05302627static vm_fault_t kvm_vcpu_fault(struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002628{
Dave Jiang11bac802017-02-24 14:56:41 -08002629 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002630 struct page *page;
2631
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002632 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002633 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002634#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002635 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002636 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002637#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002638#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02002639 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2640 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2641#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002642 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002643 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002644 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002645 vmf->page = page;
2646 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002647}
2648
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002649static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002650 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002651};
2652
2653static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2654{
2655 vma->vm_ops = &kvm_vcpu_vm_ops;
2656 return 0;
2657}
2658
Avi Kivitybccf2152007-02-21 18:04:26 +02002659static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2660{
2661 struct kvm_vcpu *vcpu = filp->private_data;
2662
Luiz Capitulino45b59392016-09-16 10:27:35 -04002663 debugfs_remove_recursive(vcpu->debugfs_dentry);
Al Viro66c0b392008-04-19 20:33:56 +01002664 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002665 return 0;
2666}
2667
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002668static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002669 .release = kvm_vcpu_release,
2670 .unlocked_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002671 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002672 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01002673 KVM_COMPAT(kvm_vcpu_compat_ioctl),
Avi Kivitybccf2152007-02-21 18:04:26 +02002674};
2675
2676/*
2677 * Allocates an inode for the vcpu.
2678 */
2679static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2680{
Masatake YAMATOe46b4692018-01-20 04:04:22 +09002681 char name[8 + 1 + ITOA_MAX_LEN + 1];
2682
2683 snprintf(name, sizeof(name), "kvm-vcpu:%d", vcpu->vcpu_id);
2684 return anon_inode_getfd(name, &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002685}
2686
Greg KH3e7093d2019-07-31 20:56:20 +02002687static void kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
Luiz Capitulino45b59392016-09-16 10:27:35 -04002688{
Paolo Bonzini741cbba2019-08-03 08:14:25 +02002689#ifdef __KVM_HAVE_ARCH_VCPU_DEBUGFS
Luiz Capitulino45b59392016-09-16 10:27:35 -04002690 char dir_name[ITOA_MAX_LEN * 2];
Luiz Capitulino45b59392016-09-16 10:27:35 -04002691
Luiz Capitulino45b59392016-09-16 10:27:35 -04002692 if (!debugfs_initialized())
Greg KH3e7093d2019-07-31 20:56:20 +02002693 return;
Luiz Capitulino45b59392016-09-16 10:27:35 -04002694
2695 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2696 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
Greg KH3e7093d2019-07-31 20:56:20 +02002697 vcpu->kvm->debugfs_dentry);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002698
Greg KH3e7093d2019-07-31 20:56:20 +02002699 kvm_arch_create_vcpu_debugfs(vcpu);
Paolo Bonzini741cbba2019-08-03 08:14:25 +02002700#endif
Luiz Capitulino45b59392016-09-16 10:27:35 -04002701}
2702
Avi Kivityc5ea7662007-02-20 18:41:05 +02002703/*
2704 * Creates some virtual cpus. Good luck creating more than one.
2705 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002706static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002707{
2708 int r;
David Hildenbrande09fefd2015-11-05 09:03:50 +01002709 struct kvm_vcpu *vcpu;
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002710 struct page *page;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002711
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002712 if (id >= KVM_MAX_VCPU_ID)
Andy Honig338c7db2013-11-18 16:09:22 -08002713 return -EINVAL;
2714
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002715 mutex_lock(&kvm->lock);
2716 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2717 mutex_unlock(&kvm->lock);
2718 return -EINVAL;
2719 }
2720
2721 kvm->created_vcpus++;
2722 mutex_unlock(&kvm->lock);
2723
Sean Christopherson897cc382019-12-18 13:55:09 -08002724 r = kvm_arch_vcpu_precreate(kvm, id);
2725 if (r)
2726 goto vcpu_decrement;
2727
Sean Christophersone529ef62019-12-18 13:55:15 -08002728 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
2729 if (!vcpu) {
2730 r = -ENOMEM;
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002731 goto vcpu_decrement;
2732 }
Avi Kivityc5ea7662007-02-20 18:41:05 +02002733
Peter Xufcd97ad2020-01-09 09:57:12 -05002734 BUILD_BUG_ON(sizeof(struct kvm_run) > PAGE_SIZE);
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002735 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2736 if (!page) {
2737 r = -ENOMEM;
Sean Christophersone529ef62019-12-18 13:55:15 -08002738 goto vcpu_free;
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002739 }
2740 vcpu->run = page_address(page);
2741
2742 kvm_vcpu_init(vcpu, kvm, id);
Sean Christophersone529ef62019-12-18 13:55:15 -08002743
2744 r = kvm_arch_vcpu_create(vcpu);
2745 if (r)
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002746 goto vcpu_free_run_page;
Sean Christophersone529ef62019-12-18 13:55:15 -08002747
Greg KH3e7093d2019-07-31 20:56:20 +02002748 kvm_create_vcpu_debugfs(vcpu);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002749
Shaohua Li11ec2802007-07-23 14:51:37 +08002750 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +01002751 if (kvm_get_vcpu_by_id(kvm, id)) {
2752 r = -EEXIST;
2753 goto unlock_vcpu_destroy;
2754 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002755
Radim Krčmář8750e722019-11-07 07:53:42 -05002756 vcpu->vcpu_idx = atomic_read(&kvm->online_vcpus);
2757 BUG_ON(kvm->vcpus[vcpu->vcpu_idx]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002758
2759 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002760 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002761 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002762 if (r < 0) {
Sean Christopherson149487b2019-10-21 15:58:42 -07002763 kvm_put_kvm_no_destroy(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002764 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002765 }
2766
Radim Krčmář8750e722019-11-07 07:53:42 -05002767 kvm->vcpus[vcpu->vcpu_idx] = vcpu;
Paolo Bonzinidd489242015-07-29 11:32:20 +02002768
2769 /*
2770 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2771 * before kvm->online_vcpu's incremented value.
2772 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002773 smp_wmb();
2774 atomic_inc(&kvm->online_vcpus);
2775
Gleb Natapov73880c82009-06-09 15:56:28 +03002776 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002777 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002778 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002779
Jan Kiszkad7805922011-05-23 10:33:05 +02002780unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002781 mutex_unlock(&kvm->lock);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002782 debugfs_remove_recursive(vcpu->debugfs_dentry);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002783 kvm_arch_vcpu_destroy(vcpu);
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002784vcpu_free_run_page:
2785 free_page((unsigned long)vcpu->run);
Sean Christophersone529ef62019-12-18 13:55:15 -08002786vcpu_free:
2787 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002788vcpu_decrement:
2789 mutex_lock(&kvm->lock);
2790 kvm->created_vcpus--;
2791 mutex_unlock(&kvm->lock);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002792 return r;
2793}
2794
Avi Kivity1961d272007-03-05 19:46:05 +02002795static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2796{
2797 if (sigset) {
2798 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2799 vcpu->sigset_active = 1;
2800 vcpu->sigset = *sigset;
2801 } else
2802 vcpu->sigset_active = 0;
2803 return 0;
2804}
2805
Avi Kivitybccf2152007-02-21 18:04:26 +02002806static long kvm_vcpu_ioctl(struct file *filp,
2807 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002808{
Avi Kivitybccf2152007-02-21 18:04:26 +02002809 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002810 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002811 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002812 struct kvm_fpu *fpu = NULL;
2813 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002814
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002815 if (vcpu->kvm->mm != current->mm)
2816 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002817
David Matlack2ea75be2014-09-19 16:03:25 -07002818 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2819 return -EINVAL;
2820
Avi Kivity2122ff52010-05-13 11:25:04 +03002821 /*
Paolo Bonzini5cb09442017-12-12 17:41:34 +01002822 * Some architectures have vcpu ioctls that are asynchronous to vcpu
2823 * execution; mutex_lock() would break them.
Avi Kivity2122ff52010-05-13 11:25:04 +03002824 */
Paolo Bonzini5cb09442017-12-12 17:41:34 +01002825 r = kvm_arch_vcpu_async_ioctl(filp, ioctl, arg);
2826 if (r != -ENOIOCTLCMD)
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002827 return r;
Avi Kivity2122ff52010-05-13 11:25:04 +03002828
Christoffer Dallec7660c2017-12-04 21:35:23 +01002829 if (mutex_lock_killable(&vcpu->mutex))
2830 return -EINTR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002831 switch (ioctl) {
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002832 case KVM_RUN: {
2833 struct pid *oldpid;
Avi Kivityf0fe5102007-03-07 13:11:17 +02002834 r = -EINVAL;
2835 if (arg)
2836 goto out;
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002837 oldpid = rcu_access_pointer(vcpu->pid);
Eric W. Biederman71dbc8a2017-07-16 21:39:32 -05002838 if (unlikely(oldpid != task_pid(current))) {
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002839 /* The thread running this VCPU changed. */
Christoffer Dallbd2a6392018-02-23 17:23:57 +01002840 struct pid *newpid;
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08002841
Christoffer Dallbd2a6392018-02-23 17:23:57 +01002842 r = kvm_arch_vcpu_run_pid_change(vcpu);
2843 if (r)
2844 break;
2845
2846 newpid = get_task_pid(current, PIDTYPE_PID);
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002847 rcu_assign_pointer(vcpu->pid, newpid);
2848 if (oldpid)
2849 synchronize_rcu();
2850 put_pid(oldpid);
2851 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002852 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002853 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002854 break;
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002855 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002856 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002857 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002858
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002859 r = -ENOMEM;
Ben Gardonb12ce362019-02-11 11:02:49 -08002860 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL_ACCOUNT);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002861 if (!kvm_regs)
2862 goto out;
2863 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002864 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002865 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002866 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002867 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2868 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002870out_free1:
2871 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002872 break;
2873 }
2874 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002875 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002876
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002877 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002878 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2879 if (IS_ERR(kvm_regs)) {
2880 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002881 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002882 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002883 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002884 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002885 break;
2886 }
2887 case KVM_GET_SREGS: {
Ben Gardonb12ce362019-02-11 11:02:49 -08002888 kvm_sregs = kzalloc(sizeof(struct kvm_sregs),
2889 GFP_KERNEL_ACCOUNT);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002890 r = -ENOMEM;
2891 if (!kvm_sregs)
2892 goto out;
2893 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002894 if (r)
2895 goto out;
2896 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002897 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898 goto out;
2899 r = 0;
2900 break;
2901 }
2902 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002903 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2904 if (IS_ERR(kvm_sregs)) {
2905 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002906 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002907 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002908 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002909 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002910 break;
2911 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002912 case KVM_GET_MP_STATE: {
2913 struct kvm_mp_state mp_state;
2914
2915 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2916 if (r)
2917 goto out;
2918 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002919 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002920 goto out;
2921 r = 0;
2922 break;
2923 }
2924 case KVM_SET_MP_STATE: {
2925 struct kvm_mp_state mp_state;
2926
2927 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002928 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002929 goto out;
2930 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002931 break;
2932 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002933 case KVM_TRANSLATE: {
2934 struct kvm_translation tr;
2935
2936 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002937 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002938 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002939 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002940 if (r)
2941 goto out;
2942 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002943 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002944 goto out;
2945 r = 0;
2946 break;
2947 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002948 case KVM_SET_GUEST_DEBUG: {
2949 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002950
2951 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002952 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002953 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002954 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002955 break;
2956 }
Avi Kivity1961d272007-03-05 19:46:05 +02002957 case KVM_SET_SIGNAL_MASK: {
2958 struct kvm_signal_mask __user *sigmask_arg = argp;
2959 struct kvm_signal_mask kvm_sigmask;
2960 sigset_t sigset, *p;
2961
2962 p = NULL;
2963 if (argp) {
2964 r = -EFAULT;
2965 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002966 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002967 goto out;
2968 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002969 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002970 goto out;
2971 r = -EFAULT;
2972 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002973 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002974 goto out;
2975 p = &sigset;
2976 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002977 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002978 break;
2979 }
Avi Kivityb8836732007-04-01 16:34:31 +03002980 case KVM_GET_FPU: {
Ben Gardonb12ce362019-02-11 11:02:49 -08002981 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL_ACCOUNT);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002982 r = -ENOMEM;
2983 if (!fpu)
2984 goto out;
2985 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002986 if (r)
2987 goto out;
2988 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002989 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002990 goto out;
2991 r = 0;
2992 break;
2993 }
2994 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002995 fpu = memdup_user(argp, sizeof(*fpu));
2996 if (IS_ERR(fpu)) {
2997 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002998 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002999 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003000 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07003001 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03003002 break;
3003 }
Avi Kivitybccf2152007-02-21 18:04:26 +02003004 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02003005 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02003006 }
3007out:
Christoffer Dallec7660c2017-12-04 21:35:23 +01003008 mutex_unlock(&vcpu->mutex);
Dave Hansenfa3795a2008-08-11 10:01:46 -07003009 kfree(fpu);
3010 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02003011 return r;
3012}
3013
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003014#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02003015static long kvm_vcpu_compat_ioctl(struct file *filp,
3016 unsigned int ioctl, unsigned long arg)
3017{
3018 struct kvm_vcpu *vcpu = filp->private_data;
3019 void __user *argp = compat_ptr(arg);
3020 int r;
3021
3022 if (vcpu->kvm->mm != current->mm)
3023 return -EIO;
3024
3025 switch (ioctl) {
3026 case KVM_SET_SIGNAL_MASK: {
3027 struct kvm_signal_mask __user *sigmask_arg = argp;
3028 struct kvm_signal_mask kvm_sigmask;
Alexander Graf1dda6062011-06-08 02:45:37 +02003029 sigset_t sigset;
3030
3031 if (argp) {
3032 r = -EFAULT;
3033 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003034 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02003035 goto out;
3036 r = -EINVAL;
Al Viro3968cf62017-09-03 21:45:17 -04003037 if (kvm_sigmask.len != sizeof(compat_sigset_t))
Alexander Graf1dda6062011-06-08 02:45:37 +02003038 goto out;
3039 r = -EFAULT;
Al Viro3968cf62017-09-03 21:45:17 -04003040 if (get_compat_sigset(&sigset, (void *)sigmask_arg->sigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02003041 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01003042 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
3043 } else
3044 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02003045 break;
3046 }
3047 default:
3048 r = kvm_vcpu_ioctl(filp, ioctl, arg);
3049 }
3050
3051out:
3052 return r;
3053}
3054#endif
3055
Cédric Le Goatera1cd3f02019-04-18 12:39:36 +02003056static int kvm_device_mmap(struct file *filp, struct vm_area_struct *vma)
3057{
3058 struct kvm_device *dev = filp->private_data;
3059
3060 if (dev->ops->mmap)
3061 return dev->ops->mmap(dev, vma);
3062
3063 return -ENODEV;
3064}
3065
Scott Wood852b6d52013-04-12 14:08:42 +00003066static int kvm_device_ioctl_attr(struct kvm_device *dev,
3067 int (*accessor)(struct kvm_device *dev,
3068 struct kvm_device_attr *attr),
3069 unsigned long arg)
3070{
3071 struct kvm_device_attr attr;
3072
3073 if (!accessor)
3074 return -EPERM;
3075
3076 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
3077 return -EFAULT;
3078
3079 return accessor(dev, &attr);
3080}
3081
3082static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
3083 unsigned long arg)
3084{
3085 struct kvm_device *dev = filp->private_data;
3086
Sean Christophersonddba9182019-02-15 12:48:39 -08003087 if (dev->kvm->mm != current->mm)
3088 return -EIO;
3089
Scott Wood852b6d52013-04-12 14:08:42 +00003090 switch (ioctl) {
3091 case KVM_SET_DEVICE_ATTR:
3092 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
3093 case KVM_GET_DEVICE_ATTR:
3094 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
3095 case KVM_HAS_DEVICE_ATTR:
3096 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
3097 default:
3098 if (dev->ops->ioctl)
3099 return dev->ops->ioctl(dev, ioctl, arg);
3100
3101 return -ENOTTY;
3102 }
3103}
3104
Scott Wood852b6d52013-04-12 14:08:42 +00003105static int kvm_device_release(struct inode *inode, struct file *filp)
3106{
3107 struct kvm_device *dev = filp->private_data;
3108 struct kvm *kvm = dev->kvm;
3109
Cédric Le Goater2bde9b32019-04-18 12:39:41 +02003110 if (dev->ops->release) {
3111 mutex_lock(&kvm->lock);
3112 list_del(&dev->vm_node);
3113 dev->ops->release(dev);
3114 mutex_unlock(&kvm->lock);
3115 }
3116
Scott Wood852b6d52013-04-12 14:08:42 +00003117 kvm_put_kvm(kvm);
3118 return 0;
3119}
3120
3121static const struct file_operations kvm_device_fops = {
3122 .unlocked_ioctl = kvm_device_ioctl,
3123 .release = kvm_device_release,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003124 KVM_COMPAT(kvm_device_ioctl),
Cédric Le Goatera1cd3f02019-04-18 12:39:36 +02003125 .mmap = kvm_device_mmap,
Scott Wood852b6d52013-04-12 14:08:42 +00003126};
3127
3128struct kvm_device *kvm_device_from_filp(struct file *filp)
3129{
3130 if (filp->f_op != &kvm_device_fops)
3131 return NULL;
3132
3133 return filp->private_data;
3134}
3135
Steven Price8538cb22019-10-21 16:28:19 +01003136static const struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
Will Deacond60eacb2014-09-02 10:27:33 +01003137#ifdef CONFIG_KVM_MPIC
3138 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
3139 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
3140#endif
Will Deacond60eacb2014-09-02 10:27:33 +01003141};
3142
Steven Price8538cb22019-10-21 16:28:19 +01003143int kvm_register_device_ops(const struct kvm_device_ops *ops, u32 type)
Will Deacond60eacb2014-09-02 10:27:33 +01003144{
3145 if (type >= ARRAY_SIZE(kvm_device_ops_table))
3146 return -ENOSPC;
3147
3148 if (kvm_device_ops_table[type] != NULL)
3149 return -EEXIST;
3150
3151 kvm_device_ops_table[type] = ops;
3152 return 0;
3153}
3154
Wanpeng Li571ee1b2014-10-09 18:30:08 +08003155void kvm_unregister_device_ops(u32 type)
3156{
3157 if (kvm_device_ops_table[type] != NULL)
3158 kvm_device_ops_table[type] = NULL;
3159}
3160
Scott Wood852b6d52013-04-12 14:08:42 +00003161static int kvm_ioctl_create_device(struct kvm *kvm,
3162 struct kvm_create_device *cd)
3163{
Steven Price8538cb22019-10-21 16:28:19 +01003164 const struct kvm_device_ops *ops = NULL;
Scott Wood852b6d52013-04-12 14:08:42 +00003165 struct kvm_device *dev;
3166 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003167 int type;
Scott Wood852b6d52013-04-12 14:08:42 +00003168 int ret;
3169
Will Deacond60eacb2014-09-02 10:27:33 +01003170 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00003171 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01003172
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003173 type = array_index_nospec(cd->type, ARRAY_SIZE(kvm_device_ops_table));
3174 ops = kvm_device_ops_table[type];
Will Deacond60eacb2014-09-02 10:27:33 +01003175 if (ops == NULL)
3176 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00003177
3178 if (test)
3179 return 0;
3180
Ben Gardonb12ce362019-02-11 11:02:49 -08003181 dev = kzalloc(sizeof(*dev), GFP_KERNEL_ACCOUNT);
Scott Wood852b6d52013-04-12 14:08:42 +00003182 if (!dev)
3183 return -ENOMEM;
3184
3185 dev->ops = ops;
3186 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00003187
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003188 mutex_lock(&kvm->lock);
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003189 ret = ops->create(dev, type);
Scott Wood852b6d52013-04-12 14:08:42 +00003190 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003191 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00003192 kfree(dev);
3193 return ret;
3194 }
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003195 list_add(&dev->vm_node, &kvm->devices);
3196 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00003197
Christoffer Dall023e9fd2016-08-09 19:13:00 +02003198 if (ops->init)
3199 ops->init(dev);
3200
Jann Horncfa39382019-01-26 01:54:33 +01003201 kvm_get_kvm(kvm);
Yann Droneaud24009b02013-08-24 22:14:07 +02003202 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00003203 if (ret < 0) {
Sean Christopherson149487b2019-10-21 15:58:42 -07003204 kvm_put_kvm_no_destroy(kvm);
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003205 mutex_lock(&kvm->lock);
3206 list_del(&dev->vm_node);
3207 mutex_unlock(&kvm->lock);
Dan Carpentera0f1d212016-11-30 22:21:05 +03003208 ops->destroy(dev);
Scott Wood852b6d52013-04-12 14:08:42 +00003209 return ret;
3210 }
3211
Scott Wood852b6d52013-04-12 14:08:42 +00003212 cd->fd = ret;
3213 return 0;
3214}
3215
Alexander Graf92b591a2014-07-14 18:33:08 +02003216static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
3217{
3218 switch (arg) {
3219 case KVM_CAP_USER_MEMORY:
3220 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
3221 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Alexander Graf92b591a2014-07-14 18:33:08 +02003222 case KVM_CAP_INTERNAL_ERROR_DATA:
3223#ifdef CONFIG_HAVE_KVM_MSI
3224 case KVM_CAP_SIGNAL_MSI:
3225#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10003226#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01003227 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02003228 case KVM_CAP_IRQFD_RESAMPLE:
3229#endif
Jason Wange9ea5062015-09-15 14:41:59 +08003230 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
Alexander Graf92b591a2014-07-14 18:33:08 +02003231 case KVM_CAP_CHECK_EXTENSION_VM:
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003232 case KVM_CAP_ENABLE_CAP_VM:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003233#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
Peter Xud7547c52019-05-08 17:15:47 +08003234 case KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003235#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02003236 return 1;
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003237#ifdef CONFIG_KVM_MMIO
Paolo Bonzini30422552017-03-31 13:53:22 +02003238 case KVM_CAP_COALESCED_MMIO:
3239 return KVM_COALESCED_MMIO_PAGE_OFFSET;
Peng Hao0804c842018-10-14 07:09:55 +08003240 case KVM_CAP_COALESCED_PIO:
3241 return 1;
Paolo Bonzini30422552017-03-31 13:53:22 +02003242#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02003243#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3244 case KVM_CAP_IRQ_ROUTING:
3245 return KVM_MAX_IRQ_ROUTES;
3246#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02003247#if KVM_ADDRESS_SPACE_NUM > 1
3248 case KVM_CAP_MULTI_ADDRESS_SPACE:
3249 return KVM_ADDRESS_SPACE_NUM;
3250#endif
Paolo Bonzinic110ae52019-03-28 17:24:03 +01003251 case KVM_CAP_NR_MEMSLOTS:
3252 return KVM_USER_MEM_SLOTS;
Alexander Graf92b591a2014-07-14 18:33:08 +02003253 default:
3254 break;
3255 }
3256 return kvm_vm_ioctl_check_extension(kvm, arg);
3257}
3258
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003259int __attribute__((weak)) kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3260 struct kvm_enable_cap *cap)
3261{
3262 return -EINVAL;
3263}
3264
3265static int kvm_vm_ioctl_enable_cap_generic(struct kvm *kvm,
3266 struct kvm_enable_cap *cap)
3267{
3268 switch (cap->cap) {
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003269#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
Peter Xud7547c52019-05-08 17:15:47 +08003270 case KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003271 if (cap->flags || (cap->args[0] & ~1))
3272 return -EINVAL;
3273 kvm->manual_dirty_log_protect = cap->args[0];
3274 return 0;
3275#endif
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003276 default:
3277 return kvm_vm_ioctl_enable_cap(kvm, cap);
3278 }
3279}
3280
Avi Kivitybccf2152007-02-21 18:04:26 +02003281static long kvm_vm_ioctl(struct file *filp,
3282 unsigned int ioctl, unsigned long arg)
3283{
3284 struct kvm *kvm = filp->private_data;
3285 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003286 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02003287
Avi Kivity6d4e4c42007-11-21 16:41:05 +02003288 if (kvm->mm != current->mm)
3289 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02003290 switch (ioctl) {
3291 case KVM_CREATE_VCPU:
3292 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02003293 break;
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003294 case KVM_ENABLE_CAP: {
3295 struct kvm_enable_cap cap;
3296
3297 r = -EFAULT;
3298 if (copy_from_user(&cap, argp, sizeof(cap)))
3299 goto out;
3300 r = kvm_vm_ioctl_enable_cap_generic(kvm, &cap);
3301 break;
3302 }
Izik Eidus6fc138d2007-10-09 19:20:39 +02003303 case KVM_SET_USER_MEMORY_REGION: {
3304 struct kvm_userspace_memory_region kvm_userspace_mem;
3305
3306 r = -EFAULT;
3307 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003308 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02003309 goto out;
3310
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09003311 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003312 break;
3313 }
3314 case KVM_GET_DIRTY_LOG: {
3315 struct kvm_dirty_log log;
3316
3317 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003318 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003319 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02003320 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003321 break;
3322 }
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003323#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
3324 case KVM_CLEAR_DIRTY_LOG: {
3325 struct kvm_clear_dirty_log log;
3326
3327 r = -EFAULT;
3328 if (copy_from_user(&log, argp, sizeof(log)))
3329 goto out;
3330 r = kvm_vm_ioctl_clear_dirty_log(kvm, &log);
3331 break;
3332 }
3333#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003334#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02003335 case KVM_REGISTER_COALESCED_MMIO: {
3336 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08003337
Laurent Vivier5f94c172008-05-30 16:05:54 +02003338 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003339 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003340 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003341 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003342 break;
3343 }
3344 case KVM_UNREGISTER_COALESCED_MMIO: {
3345 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08003346
Laurent Vivier5f94c172008-05-30 16:05:54 +02003347 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003348 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003349 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003350 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003351 break;
3352 }
3353#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003354 case KVM_IRQFD: {
3355 struct kvm_irqfd data;
3356
3357 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003358 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003359 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06003360 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003361 break;
3362 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003363 case KVM_IOEVENTFD: {
3364 struct kvm_ioeventfd data;
3365
3366 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003367 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003368 goto out;
3369 r = kvm_ioeventfd(kvm, &data);
3370 break;
3371 }
Jan Kiszka07975ad2012-03-29 21:14:12 +02003372#ifdef CONFIG_HAVE_KVM_MSI
3373 case KVM_SIGNAL_MSI: {
3374 struct kvm_msi msi;
3375
3376 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003377 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02003378 goto out;
3379 r = kvm_send_userspace_msi(kvm, &msi);
3380 break;
3381 }
3382#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003383#ifdef __KVM_HAVE_IRQ_LINE
3384 case KVM_IRQ_LINE_STATUS:
3385 case KVM_IRQ_LINE: {
3386 struct kvm_irq_level irq_event;
3387
3388 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003389 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003390 goto out;
3391
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003392 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3393 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003394 if (r)
3395 goto out;
3396
3397 r = -EFAULT;
3398 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08003399 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003400 goto out;
3401 }
3402
3403 r = 0;
3404 break;
3405 }
3406#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02003407#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3408 case KVM_SET_GSI_ROUTING: {
3409 struct kvm_irq_routing routing;
3410 struct kvm_irq_routing __user *urouting;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003411 struct kvm_irq_routing_entry *entries = NULL;
Alexander Grafaa8d5942013-04-15 21:12:53 +02003412
3413 r = -EFAULT;
3414 if (copy_from_user(&routing, argp, sizeof(routing)))
3415 goto out;
3416 r = -EINVAL;
David Hildenbrand5c0aea02017-04-28 17:06:20 +02003417 if (!kvm_arch_can_set_irq_routing(kvm))
3418 goto out;
Xiubo Licaf1ff22016-06-15 18:00:33 +08003419 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02003420 goto out;
3421 if (routing.flags)
3422 goto out;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003423 if (routing.nr) {
3424 r = -ENOMEM;
Kees Cook42bc47b2018-06-12 14:27:11 -07003425 entries = vmalloc(array_size(sizeof(*entries),
3426 routing.nr));
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003427 if (!entries)
3428 goto out;
3429 r = -EFAULT;
3430 urouting = argp;
3431 if (copy_from_user(entries, urouting->entries,
3432 routing.nr * sizeof(*entries)))
3433 goto out_free_irq_routing;
3434 }
Alexander Grafaa8d5942013-04-15 21:12:53 +02003435 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3436 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08003437out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02003438 vfree(entries);
3439 break;
3440 }
3441#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00003442 case KVM_CREATE_DEVICE: {
3443 struct kvm_create_device cd;
3444
3445 r = -EFAULT;
3446 if (copy_from_user(&cd, argp, sizeof(cd)))
3447 goto out;
3448
3449 r = kvm_ioctl_create_device(kvm, &cd);
3450 if (r)
3451 goto out;
3452
3453 r = -EFAULT;
3454 if (copy_to_user(argp, &cd, sizeof(cd)))
3455 goto out;
3456
3457 r = 0;
3458 break;
3459 }
Alexander Graf92b591a2014-07-14 18:33:08 +02003460 case KVM_CHECK_EXTENSION:
3461 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3462 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02003463 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003464 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003465 }
3466out:
3467 return r;
3468}
3469
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003470#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003471struct compat_kvm_dirty_log {
3472 __u32 slot;
3473 __u32 padding1;
3474 union {
3475 compat_uptr_t dirty_bitmap; /* one bit per page */
3476 __u64 padding2;
3477 };
3478};
3479
3480static long kvm_vm_compat_ioctl(struct file *filp,
3481 unsigned int ioctl, unsigned long arg)
3482{
3483 struct kvm *kvm = filp->private_data;
3484 int r;
3485
3486 if (kvm->mm != current->mm)
3487 return -EIO;
3488 switch (ioctl) {
3489 case KVM_GET_DIRTY_LOG: {
3490 struct compat_kvm_dirty_log compat_log;
3491 struct kvm_dirty_log log;
3492
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003493 if (copy_from_user(&compat_log, (void __user *)arg,
3494 sizeof(compat_log)))
Markus Elfringf6a3b162017-01-22 11:30:21 +01003495 return -EFAULT;
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003496 log.slot = compat_log.slot;
3497 log.padding1 = compat_log.padding1;
3498 log.padding2 = compat_log.padding2;
3499 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3500
3501 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003502 break;
3503 }
3504 default:
3505 r = kvm_vm_ioctl(filp, ioctl, arg);
3506 }
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003507 return r;
3508}
3509#endif
3510
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003511static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02003512 .release = kvm_vm_release,
3513 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003514 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003515 KVM_COMPAT(kvm_vm_compat_ioctl),
Avi Kivityf17abe92007-02-21 19:28:04 +02003516};
3517
Carsten Ottee08b9632012-01-04 10:25:20 +01003518static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02003519{
Heiko Carstensaac87632010-10-27 17:22:10 +02003520 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003521 struct kvm *kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003522 struct file *file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003523
Carsten Ottee08b9632012-01-04 10:25:20 +01003524 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04003525 if (IS_ERR(kvm))
3526 return PTR_ERR(kvm);
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003527#ifdef CONFIG_KVM_MMIO
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003528 r = kvm_coalesced_mmio_init(kvm);
Markus Elfring78588332017-11-21 13:40:17 +01003529 if (r < 0)
3530 goto put_kvm;
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003531#endif
Al Viro506cfba2016-07-14 18:54:17 +02003532 r = get_unused_fd_flags(O_CLOEXEC);
Markus Elfring78588332017-11-21 13:40:17 +01003533 if (r < 0)
3534 goto put_kvm;
3535
Al Viro506cfba2016-07-14 18:54:17 +02003536 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3537 if (IS_ERR(file)) {
3538 put_unused_fd(r);
Markus Elfring78588332017-11-21 13:40:17 +01003539 r = PTR_ERR(file);
3540 goto put_kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003541 }
Janosch Frank536a6f82016-05-18 13:26:23 +02003542
Paolo Bonzini525df862017-06-27 15:45:09 +02003543 /*
3544 * Don't call kvm_put_kvm anymore at this point; file->f_op is
3545 * already set, with ->release() being kvm_vm_release(). In error
3546 * cases it will be called by the final fput(file) and will take
3547 * care of doing kvm_put_kvm(kvm).
3548 */
Janosch Frank536a6f82016-05-18 13:26:23 +02003549 if (kvm_create_vm_debugfs(kvm, r) < 0) {
Al Viro506cfba2016-07-14 18:54:17 +02003550 put_unused_fd(r);
3551 fput(file);
Janosch Frank536a6f82016-05-18 13:26:23 +02003552 return -ENOMEM;
3553 }
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02003554 kvm_uevent_notify_change(KVM_EVENT_CREATE_VM, kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02003555
Al Viro506cfba2016-07-14 18:54:17 +02003556 fd_install(r, file);
Heiko Carstensaac87632010-10-27 17:22:10 +02003557 return r;
Markus Elfring78588332017-11-21 13:40:17 +01003558
3559put_kvm:
3560 kvm_put_kvm(kvm);
3561 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003562}
3563
3564static long kvm_dev_ioctl(struct file *filp,
3565 unsigned int ioctl, unsigned long arg)
3566{
Avi Kivity07c45a32007-03-07 13:05:38 +02003567 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003568
3569 switch (ioctl) {
3570 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003571 if (arg)
3572 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003573 r = KVM_API_VERSION;
3574 break;
3575 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01003576 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003577 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003578 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02003579 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02003580 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02003581 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02003582 if (arg)
3583 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02003584 r = PAGE_SIZE; /* struct kvm_run */
3585#ifdef CONFIG_X86
3586 r += PAGE_SIZE; /* pio data page */
3587#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003588#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02003589 r += PAGE_SIZE; /* coalesced mmio ring page */
3590#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02003591 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003592 case KVM_TRACE_ENABLE:
3593 case KVM_TRACE_PAUSE:
3594 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03003595 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003596 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003597 default:
Carsten Otte043405e2007-10-10 17:16:19 +02003598 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003599 }
3600out:
3601 return r;
3602}
3603
Avi Kivity6aa8b732006-12-10 02:21:36 -08003604static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003605 .unlocked_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003606 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003607 KVM_COMPAT(kvm_dev_ioctl),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003608};
3609
3610static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003611 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003612 "kvm",
3613 &kvm_chardev_ops,
3614};
3615
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003616static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003617{
3618 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02003619 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03003620
Rusty Russell7f59f492008-12-07 21:25:45 +10303621 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003622 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02003623
Rusty Russell7f59f492008-12-07 21:25:45 +10303624 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02003625
Radim Krčmář13a34e02014-08-28 15:13:03 +02003626 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02003627
3628 if (r) {
3629 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3630 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08003631 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02003632 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03003633}
3634
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003635static int kvm_starting_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003636{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003637 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003638 if (kvm_usage_count)
3639 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003640 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003641 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003642}
3643
3644static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003645{
3646 int cpu = raw_smp_processor_id();
3647
Rusty Russell7f59f492008-12-07 21:25:45 +10303648 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003649 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10303650 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02003651 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03003652}
3653
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003654static int kvm_dying_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003655{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003656 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003657 if (kvm_usage_count)
3658 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003659 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003660 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003661}
3662
Alexander Graf10474ae2009-09-15 11:37:46 +02003663static void hardware_disable_all_nolock(void)
3664{
3665 BUG_ON(!kvm_usage_count);
3666
3667 kvm_usage_count--;
3668 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003669 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003670}
3671
3672static void hardware_disable_all(void)
3673{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003674 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003675 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003676 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003677}
3678
3679static int hardware_enable_all(void)
3680{
3681 int r = 0;
3682
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003683 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003684
3685 kvm_usage_count++;
3686 if (kvm_usage_count == 1) {
3687 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003688 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003689
3690 if (atomic_read(&hardware_enable_failed)) {
3691 hardware_disable_all_nolock();
3692 r = -EBUSY;
3693 }
3694 }
3695
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003696 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003697
3698 return r;
3699}
3700
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003701static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003702 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003703{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003704 /*
3705 * Some (well, at least mine) BIOSes hang on reboot if
3706 * in vmx root mode.
3707 *
3708 * And Intel TXT required VMX off for all cpu when system shutdown.
3709 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003710 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003711 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003712 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003713 return NOTIFY_OK;
3714}
3715
3716static struct notifier_block kvm_reboot_notifier = {
3717 .notifier_call = kvm_reboot,
3718 .priority = 0,
3719};
3720
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003721static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003722{
3723 int i;
3724
3725 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003726 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003727
3728 kvm_iodevice_destructor(pos);
3729 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003730 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003731}
3732
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003733static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003734 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003735{
Jason Wang8f4216c72015-09-15 14:41:57 +08003736 gpa_t addr1 = r1->addr;
3737 gpa_t addr2 = r2->addr;
3738
3739 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003740 return -1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003741
3742 /* If r2->len == 0, match the exact address. If r2->len != 0,
3743 * accept any overlapping write. Any order is acceptable for
3744 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3745 * we process all of them.
3746 */
3747 if (r2->len) {
3748 addr1 += r1->len;
3749 addr2 += r2->len;
3750 }
3751
3752 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003753 return 1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003754
Sasha Levin743eeb02011-07-27 16:00:48 +03003755 return 0;
3756}
3757
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003758static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3759{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003760 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003761}
3762
Geoff Levand39369f72013-04-05 19:20:30 +00003763static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003764 gpa_t addr, int len)
3765{
3766 struct kvm_io_range *range, key;
3767 int off;
3768
3769 key = (struct kvm_io_range) {
3770 .addr = addr,
3771 .len = len,
3772 };
3773
3774 range = bsearch(&key, bus->range, bus->dev_count,
3775 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3776 if (range == NULL)
3777 return -ENOENT;
3778
3779 off = range - bus->range;
3780
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003781 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003782 off--;
3783
3784 return off;
3785}
3786
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003787static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003788 struct kvm_io_range *range, const void *val)
3789{
3790 int idx;
3791
3792 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3793 if (idx < 0)
3794 return -EOPNOTSUPP;
3795
3796 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003797 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003798 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003799 range->len, val))
3800 return idx;
3801 idx++;
3802 }
3803
3804 return -EOPNOTSUPP;
3805}
3806
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003807/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003808int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003809 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003810{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003811 struct kvm_io_bus *bus;
3812 struct kvm_io_range range;
3813 int r;
3814
3815 range = (struct kvm_io_range) {
3816 .addr = addr,
3817 .len = len,
3818 };
3819
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003820 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003821 if (!bus)
3822 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003823 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003824 return r < 0 ? r : 0;
3825}
Leo Yana2420102019-02-22 16:10:09 +08003826EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003827
3828/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003829int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3830 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003831{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003832 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003833 struct kvm_io_range range;
3834
3835 range = (struct kvm_io_range) {
3836 .addr = addr,
3837 .len = len,
3838 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003839
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003840 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003841 if (!bus)
3842 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02003843
3844 /* First try the device referenced by cookie. */
3845 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003846 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003847 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003848 val))
3849 return cookie;
3850
3851 /*
3852 * cookie contained garbage; fall back to search and return the
3853 * correct cookie value.
3854 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003855 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003856}
3857
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003858static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3859 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003860{
3861 int idx;
3862
3863 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003864 if (idx < 0)
3865 return -EOPNOTSUPP;
3866
3867 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003868 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003869 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003870 range->len, val))
3871 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003872 idx++;
3873 }
3874
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003875 return -EOPNOTSUPP;
3876}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003877
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003878/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003879int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003880 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003881{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003882 struct kvm_io_bus *bus;
3883 struct kvm_io_range range;
3884 int r;
3885
3886 range = (struct kvm_io_range) {
3887 .addr = addr,
3888 .len = len,
3889 };
3890
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003891 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003892 if (!bus)
3893 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003894 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003895 return r < 0 ? r : 0;
3896}
3897
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003898/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003899int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3900 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003901{
Gal Hammerd4c67a72018-01-16 15:34:41 +02003902 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003903 struct kvm_io_bus *new_bus, *bus;
Gal Hammerd4c67a72018-01-16 15:34:41 +02003904 struct kvm_io_range range;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003905
Christian Borntraeger4a12f952017-07-07 10:51:38 +02003906 bus = kvm_get_bus(kvm, bus_idx);
David Hildenbrand90db1042017-03-23 18:24:19 +01003907 if (!bus)
3908 return -ENOMEM;
3909
Amos Kong6ea34c92013-05-25 06:44:15 +08003910 /* exclude ioeventfd which is limited by maximum fd */
3911 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003912 return -ENOSPC;
3913
Gustavo A. R. Silva90952cd2019-01-30 17:07:47 +01003914 new_bus = kmalloc(struct_size(bus, range, bus->dev_count + 1),
Ben Gardonb12ce362019-02-11 11:02:49 -08003915 GFP_KERNEL_ACCOUNT);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003916 if (!new_bus)
3917 return -ENOMEM;
Gal Hammerd4c67a72018-01-16 15:34:41 +02003918
3919 range = (struct kvm_io_range) {
3920 .addr = addr,
3921 .len = len,
3922 .dev = dev,
3923 };
3924
3925 for (i = 0; i < bus->dev_count; i++)
3926 if (kvm_io_bus_cmp(&bus->range[i], &range) > 0)
3927 break;
3928
3929 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3930 new_bus->dev_count++;
3931 new_bus->range[i] = range;
3932 memcpy(new_bus->range + i + 1, bus->range + i,
3933 (bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003934 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3935 synchronize_srcu_expedited(&kvm->srcu);
3936 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003937
3938 return 0;
3939}
3940
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003941/* Caller must hold slots_lock. */
David Hildenbrand90db1042017-03-23 18:24:19 +01003942void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3943 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003944{
David Hildenbrand90db1042017-03-23 18:24:19 +01003945 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003946 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003947
Christian Borntraeger4a12f952017-07-07 10:51:38 +02003948 bus = kvm_get_bus(kvm, bus_idx);
Peter Xudf630b82017-03-15 16:01:17 +08003949 if (!bus)
David Hildenbrand90db1042017-03-23 18:24:19 +01003950 return;
Peter Xudf630b82017-03-15 16:01:17 +08003951
Amos Konga13007162012-03-09 12:17:32 +08003952 for (i = 0; i < bus->dev_count; i++)
3953 if (bus->range[i].dev == dev) {
Gregory Haskins090b7af2009-07-07 17:08:44 -04003954 break;
3955 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003956
David Hildenbrand90db1042017-03-23 18:24:19 +01003957 if (i == bus->dev_count)
3958 return;
Amos Konga13007162012-03-09 12:17:32 +08003959
Gustavo A. R. Silva90952cd2019-01-30 17:07:47 +01003960 new_bus = kmalloc(struct_size(bus, range, bus->dev_count - 1),
Ben Gardonb12ce362019-02-11 11:02:49 -08003961 GFP_KERNEL_ACCOUNT);
David Hildenbrand90db1042017-03-23 18:24:19 +01003962 if (!new_bus) {
3963 pr_err("kvm: failed to shrink bus, removing it completely\n");
3964 goto broken;
3965 }
Amos Konga13007162012-03-09 12:17:32 +08003966
3967 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3968 new_bus->dev_count--;
3969 memcpy(new_bus->range + i, bus->range + i + 1,
3970 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003971
David Hildenbrand90db1042017-03-23 18:24:19 +01003972broken:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003973 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3974 synchronize_srcu_expedited(&kvm->srcu);
3975 kfree(bus);
David Hildenbrand90db1042017-03-23 18:24:19 +01003976 return;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003977}
3978
Andre Przywara8a39d002016-07-15 12:43:26 +01003979struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3980 gpa_t addr)
3981{
3982 struct kvm_io_bus *bus;
3983 int dev_idx, srcu_idx;
3984 struct kvm_io_device *iodev = NULL;
3985
3986 srcu_idx = srcu_read_lock(&kvm->srcu);
3987
3988 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003989 if (!bus)
3990 goto out_unlock;
Andre Przywara8a39d002016-07-15 12:43:26 +01003991
3992 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
3993 if (dev_idx < 0)
3994 goto out_unlock;
3995
3996 iodev = bus->range[dev_idx].dev;
3997
3998out_unlock:
3999 srcu_read_unlock(&kvm->srcu, srcu_idx);
4000
4001 return iodev;
4002}
4003EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
4004
Janosch Frank536a6f82016-05-18 13:26:23 +02004005static int kvm_debugfs_open(struct inode *inode, struct file *file,
4006 int (*get)(void *, u64 *), int (*set)(void *, u64),
4007 const char *fmt)
4008{
4009 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
4010 inode->i_private;
4011
4012 /* The debugfs files are a reference to the kvm struct which
4013 * is still valid when kvm_destroy_vm is called.
4014 * To avoid the race between open and the removal of the debugfs
4015 * directory we test against the users count.
4016 */
Elena Reshetovae3736c32017-02-20 13:06:21 +02004017 if (!refcount_inc_not_zero(&stat_data->kvm->users_count))
Janosch Frank536a6f82016-05-18 13:26:23 +02004018 return -ENOENT;
4019
Paolo Bonzini833b45d2019-09-30 18:48:44 +02004020 if (simple_attr_open(inode, file, get,
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004021 KVM_DBGFS_GET_MODE(stat_data->dbgfs_item) & 0222
4022 ? set : NULL,
4023 fmt)) {
Janosch Frank536a6f82016-05-18 13:26:23 +02004024 kvm_put_kvm(stat_data->kvm);
4025 return -ENOMEM;
4026 }
4027
4028 return 0;
4029}
4030
4031static int kvm_debugfs_release(struct inode *inode, struct file *file)
4032{
4033 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
4034 inode->i_private;
4035
4036 simple_attr_release(inode, file);
4037 kvm_put_kvm(stat_data->kvm);
4038
4039 return 0;
4040}
4041
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004042static int kvm_get_stat_per_vm(struct kvm *kvm, size_t offset, u64 *val)
Janosch Frank536a6f82016-05-18 13:26:23 +02004043{
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004044 *val = *(ulong *)((void *)kvm + offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02004045
4046 return 0;
4047}
4048
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004049static int kvm_clear_stat_per_vm(struct kvm *kvm, size_t offset)
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004050{
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004051 *(ulong *)((void *)kvm + offset) = 0;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004052
4053 return 0;
4054}
4055
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004056static int kvm_get_stat_per_vcpu(struct kvm *kvm, size_t offset, u64 *val)
Janosch Frank536a6f82016-05-18 13:26:23 +02004057{
4058 int i;
Janosch Frank536a6f82016-05-18 13:26:23 +02004059 struct kvm_vcpu *vcpu;
4060
4061 *val = 0;
4062
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004063 kvm_for_each_vcpu(i, vcpu, kvm)
4064 *val += *(u64 *)((void *)vcpu + offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02004065
4066 return 0;
4067}
4068
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004069static int kvm_clear_stat_per_vcpu(struct kvm *kvm, size_t offset)
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004070{
4071 int i;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004072 struct kvm_vcpu *vcpu;
4073
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004074 kvm_for_each_vcpu(i, vcpu, kvm)
4075 *(u64 *)((void *)vcpu + offset) = 0;
4076
4077 return 0;
4078}
4079
4080static int kvm_stat_data_get(void *data, u64 *val)
4081{
4082 int r = -EFAULT;
4083 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
4084
4085 switch (stat_data->dbgfs_item->kind) {
4086 case KVM_STAT_VM:
4087 r = kvm_get_stat_per_vm(stat_data->kvm,
4088 stat_data->dbgfs_item->offset, val);
4089 break;
4090 case KVM_STAT_VCPU:
4091 r = kvm_get_stat_per_vcpu(stat_data->kvm,
4092 stat_data->dbgfs_item->offset, val);
4093 break;
4094 }
4095
4096 return r;
4097}
4098
4099static int kvm_stat_data_clear(void *data, u64 val)
4100{
4101 int r = -EFAULT;
4102 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
4103
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004104 if (val)
4105 return -EINVAL;
4106
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004107 switch (stat_data->dbgfs_item->kind) {
4108 case KVM_STAT_VM:
4109 r = kvm_clear_stat_per_vm(stat_data->kvm,
4110 stat_data->dbgfs_item->offset);
4111 break;
4112 case KVM_STAT_VCPU:
4113 r = kvm_clear_stat_per_vcpu(stat_data->kvm,
4114 stat_data->dbgfs_item->offset);
4115 break;
4116 }
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004117
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004118 return r;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004119}
4120
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004121static int kvm_stat_data_open(struct inode *inode, struct file *file)
Janosch Frank536a6f82016-05-18 13:26:23 +02004122{
4123 __simple_attr_check_format("%llu\n", 0ull);
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004124 return kvm_debugfs_open(inode, file, kvm_stat_data_get,
4125 kvm_stat_data_clear, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02004126}
4127
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004128static const struct file_operations stat_fops_per_vm = {
4129 .owner = THIS_MODULE,
4130 .open = kvm_stat_data_open,
Janosch Frank536a6f82016-05-18 13:26:23 +02004131 .release = kvm_debugfs_release,
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004132 .read = simple_attr_read,
4133 .write = simple_attr_write,
4134 .llseek = no_llseek,
Janosch Frank536a6f82016-05-18 13:26:23 +02004135};
4136
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004137static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02004138{
4139 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02004140 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02004141 u64 tmp_val;
Avi Kivityba1389b2007-11-18 16:24:12 +02004142
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004143 *val = 0;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004144 mutex_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02004145 list_for_each_entry(kvm, &vm_list, vm_list) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004146 kvm_get_stat_per_vm(kvm, offset, &tmp_val);
Janosch Frank536a6f82016-05-18 13:26:23 +02004147 *val += tmp_val;
4148 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004149 mutex_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004150 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02004151}
4152
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004153static int vm_stat_clear(void *_offset, u64 val)
4154{
4155 unsigned offset = (long)_offset;
4156 struct kvm *kvm;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004157
4158 if (val)
4159 return -EINVAL;
4160
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004161 mutex_lock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004162 list_for_each_entry(kvm, &vm_list, vm_list) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004163 kvm_clear_stat_per_vm(kvm, offset);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004164 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004165 mutex_unlock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004166
4167 return 0;
4168}
4169
4170DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02004171
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004172static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03004173{
4174 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004175 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02004176 u64 tmp_val;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004177
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004178 *val = 0;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004179 mutex_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02004180 list_for_each_entry(kvm, &vm_list, vm_list) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004181 kvm_get_stat_per_vcpu(kvm, offset, &tmp_val);
Janosch Frank536a6f82016-05-18 13:26:23 +02004182 *val += tmp_val;
4183 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004184 mutex_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004185 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004186}
4187
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004188static int vcpu_stat_clear(void *_offset, u64 val)
4189{
4190 unsigned offset = (long)_offset;
4191 struct kvm *kvm;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004192
4193 if (val)
4194 return -EINVAL;
4195
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004196 mutex_lock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004197 list_for_each_entry(kvm, &vm_list, vm_list) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004198 kvm_clear_stat_per_vcpu(kvm, offset);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004199 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004200 mutex_unlock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004201
4202 return 0;
4203}
4204
4205DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
4206 "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02004207
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004208static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02004209 [KVM_STAT_VCPU] = &vcpu_stat_fops,
4210 [KVM_STAT_VM] = &vm_stat_fops,
4211};
Avi Kivity1165f5f2007-04-19 17:27:43 +03004212
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004213static void kvm_uevent_notify_change(unsigned int type, struct kvm *kvm)
4214{
4215 struct kobj_uevent_env *env;
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004216 unsigned long long created, active;
4217
4218 if (!kvm_dev.this_device || !kvm)
4219 return;
4220
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004221 mutex_lock(&kvm_lock);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004222 if (type == KVM_EVENT_CREATE_VM) {
4223 kvm_createvm_count++;
4224 kvm_active_vms++;
4225 } else if (type == KVM_EVENT_DESTROY_VM) {
4226 kvm_active_vms--;
4227 }
4228 created = kvm_createvm_count;
4229 active = kvm_active_vms;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004230 mutex_unlock(&kvm_lock);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004231
Ben Gardonb12ce362019-02-11 11:02:49 -08004232 env = kzalloc(sizeof(*env), GFP_KERNEL_ACCOUNT);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004233 if (!env)
4234 return;
4235
4236 add_uevent_var(env, "CREATED=%llu", created);
4237 add_uevent_var(env, "COUNT=%llu", active);
4238
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004239 if (type == KVM_EVENT_CREATE_VM) {
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004240 add_uevent_var(env, "EVENT=create");
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004241 kvm->userspace_pid = task_pid_nr(current);
4242 } else if (type == KVM_EVENT_DESTROY_VM) {
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004243 add_uevent_var(env, "EVENT=destroy");
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004244 }
4245 add_uevent_var(env, "PID=%d", kvm->userspace_pid);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004246
Greg Kroah-Hartman8ed05792019-02-28 16:34:37 +01004247 if (!IS_ERR_OR_NULL(kvm->debugfs_dentry)) {
Ben Gardonb12ce362019-02-11 11:02:49 -08004248 char *tmp, *p = kmalloc(PATH_MAX, GFP_KERNEL_ACCOUNT);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004249
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004250 if (p) {
4251 tmp = dentry_path_raw(kvm->debugfs_dentry, p, PATH_MAX);
4252 if (!IS_ERR(tmp))
4253 add_uevent_var(env, "STATS_PATH=%s", tmp);
4254 kfree(p);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004255 }
4256 }
4257 /* no need for checks, since we are adding at most only 5 keys */
4258 env->envp[env->envp_idx++] = NULL;
4259 kobject_uevent_env(&kvm_dev.this_device->kobj, KOBJ_CHANGE, env->envp);
4260 kfree(env);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004261}
4262
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004263static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004264{
4265 struct kvm_stats_debugfs_item *p;
4266
Hollis Blanchard76f7c872008-04-15 16:05:42 -05004267 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08004268
Janosch Frank536a6f82016-05-18 13:26:23 +02004269 kvm_debugfs_num_entries = 0;
4270 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004271 debugfs_create_file(p->name, KVM_DBGFS_GET_MODE(p),
4272 kvm_debugfs_dir, (void *)(long)p->offset,
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004273 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08004274 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004275}
4276
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004277static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08004278{
Alexander Graf10474ae2009-09-15 11:37:46 +02004279 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004280 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08004281 return 0;
4282}
4283
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004284static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08004285{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10004286 if (kvm_usage_count) {
Wanpeng Li2eb06c32019-05-17 16:49:49 +08004287#ifdef CONFIG_LOCKDEP
4288 WARN_ON(lockdep_is_held(&kvm_count_lock));
4289#endif
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004290 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10004291 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08004292}
4293
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004294static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08004295 .suspend = kvm_suspend,
4296 .resume = kvm_resume,
4297};
4298
Avi Kivity15ad7142007-07-11 18:17:21 +03004299static inline
4300struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
4301{
4302 return container_of(pn, struct kvm_vcpu, preempt_notifier);
4303}
4304
4305static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
4306{
4307 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0cd2015-02-26 14:58:23 +08004308
Wanpeng Li046ddee2019-08-01 11:30:14 +08004309 WRITE_ONCE(vcpu->preempted, false);
Wanpeng Lid73eb572019-07-18 19:39:06 +08004310 WRITE_ONCE(vcpu->ready, false);
Avi Kivity15ad7142007-07-11 18:17:21 +03004311
Paolo Bonzini7495e222020-01-09 09:57:19 -05004312 __this_cpu_write(kvm_running_vcpu, vcpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02004313 kvm_arch_sched_in(vcpu, cpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004314 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03004315}
4316
4317static void kvm_sched_out(struct preempt_notifier *pn,
4318 struct task_struct *next)
4319{
4320 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
4321
Wanpeng Lid73eb572019-07-18 19:39:06 +08004322 if (current->state == TASK_RUNNING) {
Wanpeng Li046ddee2019-08-01 11:30:14 +08004323 WRITE_ONCE(vcpu->preempted, true);
Wanpeng Lid73eb572019-07-18 19:39:06 +08004324 WRITE_ONCE(vcpu->ready, true);
4325 }
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004326 kvm_arch_vcpu_put(vcpu);
Paolo Bonzini7495e222020-01-09 09:57:19 -05004327 __this_cpu_write(kvm_running_vcpu, NULL);
4328}
4329
4330/**
4331 * kvm_get_running_vcpu - get the vcpu running on the current CPU.
4332 * Thanks to preempt notifiers, this can also be called from
4333 * preemptible context.
4334 */
4335struct kvm_vcpu *kvm_get_running_vcpu(void)
4336{
4337 return __this_cpu_read(kvm_running_vcpu);
4338}
4339
4340/**
4341 * kvm_get_running_vcpus - get the per-CPU array of currently running vcpus.
4342 */
4343struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
4344{
4345 return &kvm_running_vcpu;
Avi Kivity15ad7142007-07-11 18:17:21 +03004346}
4347
Sean Christophersonf257d6d2019-04-19 22:18:17 -07004348static void check_processor_compat(void *rtn)
4349{
4350 *(int *)rtn = kvm_arch_check_processor_compat();
4351}
4352
Avi Kivity0ee75be2010-04-28 15:39:01 +03004353int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10004354 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004355{
4356 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004357 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004358
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004359 r = kvm_arch_init(opaque);
4360 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08004361 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004362
Asias He7dac16c2013-05-08 10:57:29 +08004363 /*
4364 * kvm_arch_init makes sure there's at most one caller
4365 * for architectures that support multiple implementations,
4366 * like intel and amd on x86.
Paolo Bonzini36343f62016-10-26 13:35:56 +02004367 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
4368 * conflicts in case kvm is already setup for another implementation.
Asias He7dac16c2013-05-08 10:57:29 +08004369 */
Paolo Bonzini36343f62016-10-26 13:35:56 +02004370 r = kvm_irqfd_init();
4371 if (r)
4372 goto out_irqfd;
Asias He7dac16c2013-05-08 10:57:29 +08004373
Avi Kivity8437a6172009-06-06 14:52:35 -07004374 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10304375 r = -ENOMEM;
4376 goto out_free_0;
4377 }
4378
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004379 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004380 if (r < 0)
Miaohe Linfaf0be22019-11-23 10:45:50 +08004381 goto out_free_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004382
Yang, Sheng002c7f72007-07-31 14:23:01 +03004383 for_each_online_cpu(cpu) {
Sean Christophersonf257d6d2019-04-19 22:18:17 -07004384 smp_call_function_single(cpu, check_processor_compat, &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03004385 if (r < 0)
Miaohe Linfaf0be22019-11-23 10:45:50 +08004386 goto out_free_2;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004387 }
4388
Thomas Gleixner73c1b412016-12-21 20:19:54 +01004389 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004390 kvm_starting_cpu, kvm_dying_cpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08004391 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08004392 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004393 register_reboot_notifier(&kvm_reboot_notifier);
4394
Rusty Russellc16f8622007-07-30 21:12:19 +10004395 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03004396 if (!vcpu_align)
4397 vcpu_align = __alignof__(struct kvm_vcpu);
Paolo Bonzini46515732017-10-26 15:45:46 +02004398 kvm_vcpu_cache =
4399 kmem_cache_create_usercopy("kvm_vcpu", vcpu_size, vcpu_align,
4400 SLAB_ACCOUNT,
4401 offsetof(struct kvm_vcpu, arch),
4402 sizeof_field(struct kvm_vcpu, arch),
4403 NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10004404 if (!kvm_vcpu_cache) {
4405 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004406 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10004407 }
4408
Gleb Natapovaf585b92010-10-14 11:22:46 +02004409 r = kvm_async_pf_init();
4410 if (r)
4411 goto out_free;
4412
Avi Kivity6aa8b732006-12-10 02:21:36 -08004413 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01004414 kvm_vm_fops.owner = module;
4415 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004416
4417 r = misc_register(&kvm_dev);
4418 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08004419 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02004420 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004421 }
4422
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004423 register_syscore_ops(&kvm_syscore_ops);
4424
Avi Kivity15ad7142007-07-11 18:17:21 +03004425 kvm_preempt_ops.sched_in = kvm_sched_in;
4426 kvm_preempt_ops.sched_out = kvm_sched_out;
4427
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004428 kvm_init_debug();
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07004429
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02004430 r = kvm_vfio_ops_init();
4431 WARN_ON(r);
4432
Avi Kivityc7addb92007-09-16 18:58:32 +02004433 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004434
Gleb Natapovaf585b92010-10-14 11:22:46 +02004435out_unreg:
4436 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004437out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10004438 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004439out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004440 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004441 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004442out_free_2:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004443 kvm_arch_hardware_unsetup();
Miaohe Linfaf0be22019-11-23 10:45:50 +08004444out_free_1:
Rusty Russell7f59f492008-12-07 21:25:45 +10304445 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004446out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004447 kvm_irqfd_exit();
Paolo Bonzini36343f62016-10-26 13:35:56 +02004448out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08004449 kvm_arch_exit();
4450out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004451 return r;
4452}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004453EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004454
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004455void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004456{
Janosch Frank4bd33b52015-10-14 12:37:35 +02004457 debugfs_remove_recursive(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004458 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10004459 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004460 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004461 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004462 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004463 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004464 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004465 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004466 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004467 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10304468 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08004469 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004470}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004471EXPORT_SYMBOL_GPL(kvm_exit);
Junaid Shahidc57c8042019-11-04 12:22:02 +01004472
4473struct kvm_vm_worker_thread_context {
4474 struct kvm *kvm;
4475 struct task_struct *parent;
4476 struct completion init_done;
4477 kvm_vm_thread_fn_t thread_fn;
4478 uintptr_t data;
4479 int err;
4480};
4481
4482static int kvm_vm_worker_thread(void *context)
4483{
4484 /*
4485 * The init_context is allocated on the stack of the parent thread, so
4486 * we have to locally copy anything that is needed beyond initialization
4487 */
4488 struct kvm_vm_worker_thread_context *init_context = context;
4489 struct kvm *kvm = init_context->kvm;
4490 kvm_vm_thread_fn_t thread_fn = init_context->thread_fn;
4491 uintptr_t data = init_context->data;
4492 int err;
4493
4494 err = kthread_park(current);
4495 /* kthread_park(current) is never supposed to return an error */
4496 WARN_ON(err != 0);
4497 if (err)
4498 goto init_complete;
4499
4500 err = cgroup_attach_task_all(init_context->parent, current);
4501 if (err) {
4502 kvm_err("%s: cgroup_attach_task_all failed with err %d\n",
4503 __func__, err);
4504 goto init_complete;
4505 }
4506
4507 set_user_nice(current, task_nice(init_context->parent));
4508
4509init_complete:
4510 init_context->err = err;
4511 complete(&init_context->init_done);
4512 init_context = NULL;
4513
4514 if (err)
4515 return err;
4516
4517 /* Wait to be woken up by the spawner before proceeding. */
4518 kthread_parkme();
4519
4520 if (!kthread_should_stop())
4521 err = thread_fn(kvm, data);
4522
4523 return err;
4524}
4525
4526int kvm_vm_create_worker_thread(struct kvm *kvm, kvm_vm_thread_fn_t thread_fn,
4527 uintptr_t data, const char *name,
4528 struct task_struct **thread_ptr)
4529{
4530 struct kvm_vm_worker_thread_context init_context = {};
4531 struct task_struct *thread;
4532
4533 *thread_ptr = NULL;
4534 init_context.kvm = kvm;
4535 init_context.parent = current;
4536 init_context.thread_fn = thread_fn;
4537 init_context.data = data;
4538 init_completion(&init_context.init_done);
4539
4540 thread = kthread_run(kvm_vm_worker_thread, &init_context,
4541 "%s-%d", name, task_pid_nr(current));
4542 if (IS_ERR(thread))
4543 return PTR_ERR(thread);
4544
4545 /* kthread_run is never supposed to return NULL */
4546 WARN_ON(thread == NULL);
4547
4548 wait_for_completion(&init_context.init_done);
4549
4550 if (!init_context.err)
4551 *thread_ptr = thread;
4552
4553 return init_context.err;
4554}