blob: 7e63a3236364087def614afc0bee92c5cbc36779 [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
Sean Christophersonf9b84e12020-01-08 12:24:37 -08001405unsigned long kvm_host_page_size(struct kvm_vcpu *vcpu, gfn_t gfn)
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001406{
1407 struct vm_area_struct *vma;
1408 unsigned long addr, size;
1409
1410 size = PAGE_SIZE;
1411
Sean Christopherson42cde482020-01-08 12:24:38 -08001412 addr = kvm_vcpu_gfn_to_hva_prot(vcpu, gfn, NULL);
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001413 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
Boris Ostrovsky91724812019-12-05 01:30:51 +00001820void kvm_release_pfn(kvm_pfn_t pfn, bool dirty, struct gfn_to_pfn_cache *cache)
1821{
1822 if (pfn == 0)
1823 return;
1824
1825 if (cache)
1826 cache->pfn = cache->gfn = 0;
1827
1828 if (dirty)
1829 kvm_release_pfn_dirty(pfn);
1830 else
1831 kvm_release_pfn_clean(pfn);
1832}
1833
1834static void kvm_cache_gfn_to_pfn(struct kvm_memory_slot *slot, gfn_t gfn,
1835 struct gfn_to_pfn_cache *cache, u64 gen)
1836{
1837 kvm_release_pfn(cache->pfn, cache->dirty, cache);
1838
1839 cache->pfn = gfn_to_pfn_memslot(slot, gfn);
1840 cache->gfn = gfn;
1841 cache->dirty = false;
1842 cache->generation = gen;
1843}
1844
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001845static int __kvm_map_gfn(struct kvm_memslots *slots, gfn_t gfn,
Boris Ostrovsky91724812019-12-05 01:30:51 +00001846 struct kvm_host_map *map,
1847 struct gfn_to_pfn_cache *cache,
1848 bool atomic)
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001849{
1850 kvm_pfn_t pfn;
1851 void *hva = NULL;
1852 struct page *page = KVM_UNMAPPED_PAGE;
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001853 struct kvm_memory_slot *slot = __gfn_to_memslot(slots, gfn);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001854 u64 gen = slots->generation;
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001855
1856 if (!map)
1857 return -EINVAL;
1858
Boris Ostrovsky91724812019-12-05 01:30:51 +00001859 if (cache) {
1860 if (!cache->pfn || cache->gfn != gfn ||
1861 cache->generation != gen) {
1862 if (atomic)
1863 return -EAGAIN;
1864 kvm_cache_gfn_to_pfn(slot, gfn, cache, gen);
1865 }
1866 pfn = cache->pfn;
1867 } else {
1868 if (atomic)
1869 return -EAGAIN;
1870 pfn = gfn_to_pfn_memslot(slot, gfn);
1871 }
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001872 if (is_error_noslot_pfn(pfn))
1873 return -EINVAL;
1874
1875 if (pfn_valid(pfn)) {
1876 page = pfn_to_page(pfn);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001877 if (atomic)
1878 hva = kmap_atomic(page);
1879 else
1880 hva = kmap(page);
Paolo Bonzinid30b2142019-05-20 12:06:36 +02001881#ifdef CONFIG_HAS_IOMEM
Boris Ostrovsky91724812019-12-05 01:30:51 +00001882 } else if (!atomic) {
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001883 hva = memremap(pfn_to_hpa(pfn), PAGE_SIZE, MEMREMAP_WB);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001884 } else {
1885 return -EINVAL;
Paolo Bonzinid30b2142019-05-20 12:06:36 +02001886#endif
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001887 }
1888
1889 if (!hva)
1890 return -EFAULT;
1891
1892 map->page = page;
1893 map->hva = hva;
1894 map->pfn = pfn;
1895 map->gfn = gfn;
1896
1897 return 0;
1898}
1899
Boris Ostrovsky91724812019-12-05 01:30:51 +00001900int kvm_map_gfn(struct kvm_vcpu *vcpu, gfn_t gfn, struct kvm_host_map *map,
1901 struct gfn_to_pfn_cache *cache, bool atomic)
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001902{
Boris Ostrovsky91724812019-12-05 01:30:51 +00001903 return __kvm_map_gfn(kvm_memslots(vcpu->kvm), gfn, map,
1904 cache, atomic);
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001905}
1906EXPORT_SYMBOL_GPL(kvm_map_gfn);
1907
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001908int kvm_vcpu_map(struct kvm_vcpu *vcpu, gfn_t gfn, struct kvm_host_map *map)
1909{
Boris Ostrovsky91724812019-12-05 01:30:51 +00001910 return __kvm_map_gfn(kvm_vcpu_memslots(vcpu), gfn, map,
1911 NULL, false);
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001912}
1913EXPORT_SYMBOL_GPL(kvm_vcpu_map);
1914
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001915static void __kvm_unmap_gfn(struct kvm_memory_slot *memslot,
Boris Ostrovsky91724812019-12-05 01:30:51 +00001916 struct kvm_host_map *map,
1917 struct gfn_to_pfn_cache *cache,
1918 bool dirty, bool atomic)
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001919{
1920 if (!map)
1921 return;
1922
1923 if (!map->hva)
1924 return;
1925
Boris Ostrovsky91724812019-12-05 01:30:51 +00001926 if (map->page != KVM_UNMAPPED_PAGE) {
1927 if (atomic)
1928 kunmap_atomic(map->hva);
1929 else
1930 kunmap(map->page);
1931 }
Christian Borntraegereb1f2f32019-05-27 10:28:25 +02001932#ifdef CONFIG_HAS_IOMEM
Boris Ostrovsky91724812019-12-05 01:30:51 +00001933 else if (!atomic)
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001934 memunmap(map->hva);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001935 else
1936 WARN_ONCE(1, "Unexpected unmapping in atomic context");
Christian Borntraegereb1f2f32019-05-27 10:28:25 +02001937#endif
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001938
Boris Ostrovsky91724812019-12-05 01:30:51 +00001939 if (dirty)
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001940 mark_page_dirty_in_slot(memslot, map->gfn);
Boris Ostrovsky91724812019-12-05 01:30:51 +00001941
1942 if (cache)
1943 cache->dirty |= dirty;
1944 else
1945 kvm_release_pfn(map->pfn, dirty, NULL);
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001946
1947 map->hva = NULL;
1948 map->page = NULL;
1949}
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001950
Boris Ostrovsky91724812019-12-05 01:30:51 +00001951int kvm_unmap_gfn(struct kvm_vcpu *vcpu, struct kvm_host_map *map,
1952 struct gfn_to_pfn_cache *cache, bool dirty, bool atomic)
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001953{
Boris Ostrovsky91724812019-12-05 01:30:51 +00001954 __kvm_unmap_gfn(gfn_to_memslot(vcpu->kvm, map->gfn), map,
1955 cache, dirty, atomic);
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001956 return 0;
1957}
1958EXPORT_SYMBOL_GPL(kvm_unmap_gfn);
1959
1960void kvm_vcpu_unmap(struct kvm_vcpu *vcpu, struct kvm_host_map *map, bool dirty)
1961{
Boris Ostrovsky91724812019-12-05 01:30:51 +00001962 __kvm_unmap_gfn(kvm_vcpu_gfn_to_memslot(vcpu, map->gfn), map, NULL,
1963 dirty, false);
Boris Ostrovsky1eff70a2019-11-12 16:35:06 +00001964}
KarimAllah Ahmede45adf62019-01-31 21:24:34 +01001965EXPORT_SYMBOL_GPL(kvm_vcpu_unmap);
1966
Paolo Bonzini8e734852015-05-17 13:58:53 +02001967struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1968{
Dan Williamsba049e92016-01-15 16:56:11 -08001969 kvm_pfn_t pfn;
Paolo Bonzini8e734852015-05-17 13:58:53 +02001970
1971 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1972
1973 return kvm_pfn_to_page(pfn);
1974}
1975EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1976
Izik Eidusb4231d62007-11-20 11:49:33 +02001977void kvm_release_page_clean(struct page *page)
1978{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001979 WARN_ON(is_error_page(page));
1980
Anthony Liguori35149e22008-04-02 14:46:56 -05001981 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001982}
1983EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1984
Dan Williamsba049e92016-01-15 16:56:11 -08001985void kvm_release_pfn_clean(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001986{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001987 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001988 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001989}
1990EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1991
Izik Eidusb4231d62007-11-20 11:49:33 +02001992void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001993{
Xiao Guangronga2766322012-07-26 11:58:59 +08001994 WARN_ON(is_error_page(page));
1995
Anthony Liguori35149e22008-04-02 14:46:56 -05001996 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001997}
Izik Eidusb4231d62007-11-20 11:49:33 +02001998EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001999
David Hildenbrandf7a65092017-09-01 17:11:43 +02002000void kvm_release_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05002001{
2002 kvm_set_pfn_dirty(pfn);
2003 kvm_release_pfn_clean(pfn);
2004}
David Hildenbrandf7a65092017-09-01 17:11:43 +02002005EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
Anthony Liguori35149e22008-04-02 14:46:56 -05002006
Dan Williamsba049e92016-01-15 16:56:11 -08002007void kvm_set_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05002008{
Miaohe Lind29c03a2019-12-05 11:05:05 +08002009 if (!kvm_is_reserved_pfn(pfn) && !kvm_is_zone_device_pfn(pfn))
2010 SetPageDirty(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05002011}
2012EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
2013
Dan Williamsba049e92016-01-15 16:56:11 -08002014void kvm_set_pfn_accessed(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05002015{
Sean Christophersona78986a2019-11-11 14:12:27 -08002016 if (!kvm_is_reserved_pfn(pfn) && !kvm_is_zone_device_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05002017 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05002018}
2019EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
2020
Dan Williamsba049e92016-01-15 16:56:11 -08002021void kvm_get_pfn(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05002022{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00002023 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05002024 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05002025}
2026EXPORT_SYMBOL_GPL(kvm_get_pfn);
2027
Izik Eidus195aefd2007-10-01 22:14:18 +02002028static int next_segment(unsigned long len, int offset)
2029{
2030 if (len > PAGE_SIZE - offset)
2031 return PAGE_SIZE - offset;
2032 else
2033 return len;
2034}
2035
Paolo Bonzini8e734852015-05-17 13:58:53 +02002036static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
2037 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02002038{
Izik Eiduse0506bc2007-11-11 22:10:22 +02002039 int r;
2040 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02002041
Paolo Bonzini8e734852015-05-17 13:58:53 +02002042 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002043 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02002044 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02002045 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002046 if (r)
2047 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002048 return 0;
2049}
Paolo Bonzini8e734852015-05-17 13:58:53 +02002050
2051int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
2052 int len)
2053{
2054 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
2055
2056 return __kvm_read_guest_page(slot, gfn, data, offset, len);
2057}
Izik Eidus195aefd2007-10-01 22:14:18 +02002058EXPORT_SYMBOL_GPL(kvm_read_guest_page);
2059
Paolo Bonzini8e734852015-05-17 13:58:53 +02002060int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
2061 int offset, int len)
2062{
2063 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2064
2065 return __kvm_read_guest_page(slot, gfn, data, offset, len);
2066}
2067EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
2068
Izik Eidus195aefd2007-10-01 22:14:18 +02002069int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
2070{
2071 gfn_t gfn = gpa >> PAGE_SHIFT;
2072 int seg;
2073 int offset = offset_in_page(gpa);
2074 int ret;
2075
2076 while ((seg = next_segment(len, offset)) != 0) {
2077 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
2078 if (ret < 0)
2079 return ret;
2080 offset = 0;
2081 len -= seg;
2082 data += seg;
2083 ++gfn;
2084 }
2085 return 0;
2086}
2087EXPORT_SYMBOL_GPL(kvm_read_guest);
2088
Paolo Bonzini8e734852015-05-17 13:58:53 +02002089int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
2090{
2091 gfn_t gfn = gpa >> PAGE_SHIFT;
2092 int seg;
2093 int offset = offset_in_page(gpa);
2094 int ret;
2095
2096 while ((seg = next_segment(len, offset)) != 0) {
2097 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
2098 if (ret < 0)
2099 return ret;
2100 offset = 0;
2101 len -= seg;
2102 data += seg;
2103 ++gfn;
2104 }
2105 return 0;
2106}
2107EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
2108
2109static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
2110 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002111{
2112 int r;
2113 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002114
Paolo Bonzini8e734852015-05-17 13:58:53 +02002115 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002116 if (kvm_is_error_hva(addr))
2117 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01002118 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02002119 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01002120 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002121 if (r)
2122 return -EFAULT;
2123 return 0;
2124}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05002125
Paolo Bonzini8e734852015-05-17 13:58:53 +02002126int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
2127 void *data, unsigned long len)
2128{
2129 gfn_t gfn = gpa >> PAGE_SHIFT;
2130 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2131 int offset = offset_in_page(gpa);
2132
2133 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
2134}
2135EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
2136
2137static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
2138 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02002139{
Izik Eiduse0506bc2007-11-11 22:10:22 +02002140 int r;
2141 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02002142
Radim Krčmář251eb842015-04-10 21:47:27 +02002143 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002144 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02002145 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08002146 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02002147 if (r)
2148 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002149 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02002150 return 0;
2151}
Paolo Bonzini8e734852015-05-17 13:58:53 +02002152
2153int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
2154 const void *data, int offset, int len)
2155{
2156 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
2157
2158 return __kvm_write_guest_page(slot, gfn, data, offset, len);
2159}
Izik Eidus195aefd2007-10-01 22:14:18 +02002160EXPORT_SYMBOL_GPL(kvm_write_guest_page);
2161
Paolo Bonzini8e734852015-05-17 13:58:53 +02002162int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
2163 const void *data, int offset, int len)
2164{
2165 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2166
2167 return __kvm_write_guest_page(slot, gfn, data, offset, len);
2168}
2169EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
2170
Izik Eidus195aefd2007-10-01 22:14:18 +02002171int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
2172 unsigned long len)
2173{
2174 gfn_t gfn = gpa >> PAGE_SHIFT;
2175 int seg;
2176 int offset = offset_in_page(gpa);
2177 int ret;
2178
2179 while ((seg = next_segment(len, offset)) != 0) {
2180 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
2181 if (ret < 0)
2182 return ret;
2183 offset = 0;
2184 len -= seg;
2185 data += seg;
2186 ++gfn;
2187 }
2188 return 0;
2189}
Wincy Vanff651cb2014-12-11 08:52:58 +03002190EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02002191
Paolo Bonzini8e734852015-05-17 13:58:53 +02002192int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
2193 unsigned long len)
2194{
2195 gfn_t gfn = gpa >> PAGE_SHIFT;
2196 int seg;
2197 int offset = offset_in_page(gpa);
2198 int ret;
2199
2200 while ((seg = next_segment(len, offset)) != 0) {
2201 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
2202 if (ret < 0)
2203 return ret;
2204 offset = 0;
2205 len -= seg;
2206 data += seg;
2207 ++gfn;
2208 }
2209 return 0;
2210}
2211EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
2212
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002213static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
2214 struct gfn_to_hva_cache *ghc,
2215 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02002216{
Gleb Natapov49c77542010-10-18 15:22:23 +02002217 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07002218 gfn_t start_gfn = gpa >> PAGE_SHIFT;
2219 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
2220 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
2221 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02002222
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002223 /* Update ghc->generation before performing any error checks. */
Gleb Natapov49c77542010-10-18 15:22:23 +02002224 ghc->generation = slots->generation;
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002225
2226 if (start_gfn > end_gfn) {
2227 ghc->hva = KVM_HVA_ERR_BAD;
2228 return -EINVAL;
2229 }
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002230
2231 /*
2232 * If the requested region crosses two memslots, we still
2233 * verify that the entire region is valid here.
2234 */
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002235 for ( ; start_gfn <= end_gfn; start_gfn += nr_pages_avail) {
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002236 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
2237 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
2238 &nr_pages_avail);
2239 if (kvm_is_error_hva(ghc->hva))
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002240 return -EFAULT;
Andrew Honig8f964522013-03-29 09:35:21 -07002241 }
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002242
2243 /* Use the slow path for cross page reads and writes. */
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002244 if (nr_pages_needed == 1)
Jim Mattsonf1b9dd52018-12-17 13:53:33 -08002245 ghc->hva += offset;
2246 else
2247 ghc->memslot = NULL;
2248
Sean Christopherson6ad1e292020-01-09 14:58:55 -05002249 ghc->gpa = gpa;
2250 ghc->len = len;
2251 return 0;
Gleb Natapov49c77542010-10-18 15:22:23 +02002252}
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002253
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002254int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002255 gpa_t gpa, unsigned long len)
2256{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002257 struct kvm_memslots *slots = kvm_memslots(kvm);
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002258 return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
2259}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002260EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
Gleb Natapov49c77542010-10-18 15:22:23 +02002261
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002262int kvm_write_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Jim Mattson7a86dab2018-12-14 14:34:43 -08002263 void *data, unsigned int offset,
2264 unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02002265{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002266 struct kvm_memslots *slots = kvm_memslots(kvm);
Gleb Natapov49c77542010-10-18 15:22:23 +02002267 int r;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002268 gpa_t gpa = ghc->gpa + offset;
Gleb Natapov49c77542010-10-18 15:22:23 +02002269
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002270 BUG_ON(len + offset > ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002271
Sean Christophersondc9ce712020-01-09 15:56:20 -08002272 if (slots->generation != ghc->generation) {
2273 if (__kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len))
2274 return -EFAULT;
2275 }
Andrew Honig8f964522013-03-29 09:35:21 -07002276
Gleb Natapov49c77542010-10-18 15:22:23 +02002277 if (kvm_is_error_hva(ghc->hva))
2278 return -EFAULT;
2279
Sean Christophersonfcfbc612020-01-09 15:56:18 -08002280 if (unlikely(!ghc->memslot))
2281 return kvm_write_guest(kvm, gpa, data, len);
2282
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002283 r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02002284 if (r)
2285 return -EFAULT;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002286 mark_page_dirty_in_slot(ghc->memslot, gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02002287
2288 return 0;
2289}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002290EXPORT_SYMBOL_GPL(kvm_write_guest_offset_cached);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002291
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002292int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
2293 void *data, unsigned long len)
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002294{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002295 return kvm_write_guest_offset_cached(kvm, ghc, data, 0, len);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002296}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002297EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
Gleb Natapov49c77542010-10-18 15:22:23 +02002298
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002299int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
2300 void *data, unsigned long len)
Gleb Natapove03b6442011-07-11 15:28:11 -04002301{
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002302 struct kvm_memslots *slots = kvm_memslots(kvm);
Gleb Natapove03b6442011-07-11 15:28:11 -04002303 int r;
2304
Andrew Honig8f964522013-03-29 09:35:21 -07002305 BUG_ON(len > ghc->len);
2306
Sean Christophersondc9ce712020-01-09 15:56:20 -08002307 if (slots->generation != ghc->generation) {
2308 if (__kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len))
2309 return -EFAULT;
2310 }
Andrew Honig8f964522013-03-29 09:35:21 -07002311
Gleb Natapove03b6442011-07-11 15:28:11 -04002312 if (kvm_is_error_hva(ghc->hva))
2313 return -EFAULT;
2314
Sean Christophersonfcfbc612020-01-09 15:56:18 -08002315 if (unlikely(!ghc->memslot))
2316 return kvm_read_guest(kvm, ghc->gpa, data, len);
2317
Gleb Natapove03b6442011-07-11 15:28:11 -04002318 r = __copy_from_user(data, (void __user *)ghc->hva, len);
2319 if (r)
2320 return -EFAULT;
2321
2322 return 0;
2323}
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002324EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
Gleb Natapove03b6442011-07-11 15:28:11 -04002325
Izik Eidus195aefd2007-10-01 22:14:18 +02002326int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
2327{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01002328 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
2329
2330 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02002331}
2332EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
2333
2334int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
2335{
2336 gfn_t gfn = gpa >> PAGE_SHIFT;
2337 int seg;
2338 int offset = offset_in_page(gpa);
2339 int ret;
2340
Kevin Mulveybfda0e82015-02-20 08:21:36 -05002341 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02002342 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
2343 if (ret < 0)
2344 return ret;
2345 offset = 0;
2346 len -= seg;
2347 ++gfn;
2348 }
2349 return 0;
2350}
2351EXPORT_SYMBOL_GPL(kvm_clear_guest);
2352
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002353static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08002354 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355{
Rusty Russell7e9d6192007-07-31 20:41:14 +10002356 if (memslot && memslot->dirty_bitmap) {
2357 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002358
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07002359 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002360 }
2361}
2362
Gleb Natapov49c77542010-10-18 15:22:23 +02002363void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
2364{
2365 struct kvm_memory_slot *memslot;
2366
2367 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002368 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02002369}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302370EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02002371
Paolo Bonzini8e734852015-05-17 13:58:53 +02002372void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
2373{
2374 struct kvm_memory_slot *memslot;
2375
2376 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2377 mark_page_dirty_in_slot(memslot, gfn);
2378}
2379EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
2380
Jan H. Schönherr20b70352017-11-24 22:39:01 +01002381void kvm_sigset_activate(struct kvm_vcpu *vcpu)
2382{
2383 if (!vcpu->sigset_active)
2384 return;
2385
2386 /*
2387 * This does a lockless modification of ->real_blocked, which is fine
2388 * because, only current can change ->real_blocked and all readers of
2389 * ->real_blocked don't care as long ->real_blocked is always a subset
2390 * of ->blocked.
2391 */
2392 sigprocmask(SIG_SETMASK, &vcpu->sigset, &current->real_blocked);
2393}
2394
2395void kvm_sigset_deactivate(struct kvm_vcpu *vcpu)
2396{
2397 if (!vcpu->sigset_active)
2398 return;
2399
2400 sigprocmask(SIG_SETMASK, &current->real_blocked, NULL);
2401 sigemptyset(&current->real_blocked);
2402}
2403
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002404static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
2405{
Nir Weinerdee339b2019-01-27 12:17:16 +02002406 unsigned int old, val, grow, grow_start;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002407
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002408 old = val = vcpu->halt_poll_ns;
Nir Weinerdee339b2019-01-27 12:17:16 +02002409 grow_start = READ_ONCE(halt_poll_ns_grow_start);
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002410 grow = READ_ONCE(halt_poll_ns_grow);
Nir Weiner7fa08e72019-01-27 12:17:14 +02002411 if (!grow)
2412 goto out;
2413
Nir Weinerdee339b2019-01-27 12:17:16 +02002414 val *= grow;
2415 if (val < grow_start)
2416 val = grow_start;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002417
David Matlack313f6362016-03-08 16:19:44 -08002418 if (val > halt_poll_ns)
2419 val = halt_poll_ns;
2420
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002421 vcpu->halt_poll_ns = val;
Nir Weiner7fa08e72019-01-27 12:17:14 +02002422out:
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002423 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002424}
2425
2426static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
2427{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002428 unsigned int old, val, shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002429
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002430 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002431 shrink = READ_ONCE(halt_poll_ns_shrink);
2432 if (shrink == 0)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002433 val = 0;
2434 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002435 val /= shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002436
2437 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002438 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002439}
2440
Paolo Bonzinif7819512015-02-04 18:20:58 +01002441static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
2442{
Junaid Shahid50c28f22018-06-27 14:59:11 -07002443 int ret = -EINTR;
2444 int idx = srcu_read_lock(&vcpu->kvm->srcu);
2445
Paolo Bonzinif7819512015-02-04 18:20:58 +01002446 if (kvm_arch_vcpu_runnable(vcpu)) {
2447 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Junaid Shahid50c28f22018-06-27 14:59:11 -07002448 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002449 }
2450 if (kvm_cpu_has_pending_timer(vcpu))
Junaid Shahid50c28f22018-06-27 14:59:11 -07002451 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002452 if (signal_pending(current))
Junaid Shahid50c28f22018-06-27 14:59:11 -07002453 goto out;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002454
Junaid Shahid50c28f22018-06-27 14:59:11 -07002455 ret = 0;
2456out:
2457 srcu_read_unlock(&vcpu->kvm->srcu, idx);
2458 return ret;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002459}
2460
Eddie Dongb6958ce2007-07-18 12:15:21 +03002461/*
2462 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2463 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05002464void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03002465{
Paolo Bonzinif7819512015-02-04 18:20:58 +01002466 ktime_t start, cur;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002467 DECLARE_SWAITQUEUE(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002468 bool waited = false;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002469 u64 block_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002470
Marc Zyngier07ab0f82019-08-02 11:37:09 +01002471 kvm_arch_vcpu_blocking(vcpu);
2472
Paolo Bonzinif7819512015-02-04 18:20:58 +01002473 start = cur = ktime_get();
Christian Borntraegercdd6ad32019-03-05 05:30:01 -05002474 if (vcpu->halt_poll_ns && !kvm_arch_no_poll(vcpu)) {
Wanpeng Li19020f82015-09-03 22:07:37 +08002475 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002476
Paolo Bonzini62bea5b2015-09-15 18:27:57 +02002477 ++vcpu->stat.halt_attempted_poll;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002478 do {
2479 /*
2480 * This sets KVM_REQ_UNHALT if an interrupt
2481 * arrives.
2482 */
2483 if (kvm_vcpu_check_block(vcpu) < 0) {
2484 ++vcpu->stat.halt_successful_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002485 if (!vcpu_valid_wakeup(vcpu))
2486 ++vcpu->stat.halt_poll_invalid;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002487 goto out;
2488 }
2489 cur = ktime_get();
2490 } while (single_task_running() && ktime_before(cur, stop));
2491 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03002492
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002493 for (;;) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02002494 prepare_to_swait_exclusive(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002495
Paolo Bonzinif7819512015-02-04 18:20:58 +01002496 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002497 break;
2498
Paolo Bonzinif7819512015-02-04 18:20:58 +01002499 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03002500 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03002501 }
2502
Marcelo Tosatti85773702016-02-19 09:46:39 +01002503 finish_swait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002504 cur = ktime_get();
Paolo Bonzinif7819512015-02-04 18:20:58 +01002505out:
Marc Zyngier07ab0f82019-08-02 11:37:09 +01002506 kvm_arch_vcpu_unblocking(vcpu);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002507 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2508
Wanpeng Li44551b22019-09-29 09:06:56 +08002509 if (!kvm_arch_no_poll(vcpu)) {
2510 if (!vcpu_valid_wakeup(vcpu)) {
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002511 shrink_halt_poll_ns(vcpu);
Wanpeng Li44551b22019-09-29 09:06:56 +08002512 } else if (halt_poll_ns) {
2513 if (block_ns <= vcpu->halt_poll_ns)
2514 ;
2515 /* we had a long block, shrink polling */
2516 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
2517 shrink_halt_poll_ns(vcpu);
2518 /* we had a short halt and our poll time is too small */
2519 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2520 block_ns < halt_poll_ns)
2521 grow_halt_poll_ns(vcpu);
2522 } else {
2523 vcpu->halt_poll_ns = 0;
2524 }
2525 }
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002526
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002527 trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu));
2528 kvm_arch_vcpu_block_finish(vcpu);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002529}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302530EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002531
Radim Krčmář178f02f2017-04-26 22:32:26 +02002532bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -05002533{
Marcelo Tosatti85773702016-02-19 09:46:39 +01002534 struct swait_queue_head *wqp;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002535
2536 wqp = kvm_arch_vcpu_wq(vcpu);
Davidlohr Bueso5e0018b2017-09-13 13:08:22 -07002537 if (swq_has_sleeper(wqp)) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02002538 swake_up_one(wqp);
Wanpeng Lid73eb572019-07-18 19:39:06 +08002539 WRITE_ONCE(vcpu->ready, true);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002540 ++vcpu->stat.halt_wakeup;
Radim Krčmář178f02f2017-04-26 22:32:26 +02002541 return true;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002542 }
2543
Radim Krčmář178f02f2017-04-26 22:32:26 +02002544 return false;
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002545}
2546EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2547
Paolo Bonzini0266c892017-05-04 15:14:13 +02002548#ifndef CONFIG_S390
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002549/*
2550 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2551 */
2552void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2553{
2554 int me;
2555 int cpu = vcpu->cpu;
2556
Radim Krčmář178f02f2017-04-26 22:32:26 +02002557 if (kvm_vcpu_wake_up(vcpu))
2558 return;
2559
Christoffer Dallb6d33832012-03-08 16:44:24 -05002560 me = get_cpu();
2561 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2562 if (kvm_arch_vcpu_should_kick(vcpu))
2563 smp_send_reschedule(cpu);
2564 put_cpu();
2565}
Yang Zhanga20ed542013-04-11 19:25:15 +08002566EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Paolo Bonzini0266c892017-05-04 15:14:13 +02002567#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05002568
Dan Carpenterfa933842014-05-23 13:20:42 +03002569int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02002570{
2571 struct pid *pid;
2572 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03002573 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002574
2575 rcu_read_lock();
2576 pid = rcu_dereference(target->pid);
2577 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10002578 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002579 rcu_read_unlock();
2580 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302581 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302582 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002583 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302584
2585 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002586}
2587EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2588
Raghavendra K T06e48c52012-07-19 15:17:52 +05302589/*
2590 * Helper that checks whether a VCPU is eligible for directed yield.
2591 * Most eligible candidate to yield is decided by following heuristics:
2592 *
2593 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2594 * (preempted lock holder), indicated by @in_spin_loop.
2595 * Set at the beiginning and cleared at the end of interception/PLE handler.
2596 *
2597 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2598 * chance last time (mostly it has become eligible now since we have probably
2599 * yielded to lockholder in last iteration. This is done by toggling
2600 * @dy_eligible each time a VCPU checked for eligibility.)
2601 *
2602 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2603 * to preempted lock-holder could result in wrong VCPU selection and CPU
2604 * burning. Giving priority for a potential lock-holder increases lock
2605 * progress.
2606 *
2607 * Since algorithm is based on heuristics, accessing another VCPU data without
2608 * locking does not harm. It may result in trying to yield to same VCPU, fail
2609 * and continue with next VCPU and so on.
2610 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002611static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302612{
Scott Wood4a55dd72014-01-09 18:43:16 -06002613#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302614 bool eligible;
2615
2616 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002617 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302618
2619 if (vcpu->spin_loop.in_spin_loop)
2620 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2621
2622 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002623#else
2624 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302625#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002626}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302627
Wanpeng Li17e433b2019-08-05 10:03:19 +08002628/*
2629 * Unlike kvm_arch_vcpu_runnable, this function is called outside
2630 * a vcpu_load/vcpu_put pair. However, for most architectures
2631 * kvm_arch_vcpu_runnable does not require vcpu_load.
2632 */
2633bool __weak kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
2634{
2635 return kvm_arch_vcpu_runnable(vcpu);
2636}
2637
2638static bool vcpu_dy_runnable(struct kvm_vcpu *vcpu)
2639{
2640 if (kvm_arch_dy_runnable(vcpu))
2641 return true;
2642
2643#ifdef CONFIG_KVM_ASYNC_PF
2644 if (!list_empty_careful(&vcpu->async_pf.done))
2645 return true;
2646#endif
2647
2648 return false;
2649}
2650
Longpeng(Mike)199b5762017-08-08 12:05:32 +08002651void kvm_vcpu_on_spin(struct kvm_vcpu *me, bool yield_to_kernel_mode)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002652{
Rik van Riel217ece62011-02-01 09:53:28 -05002653 struct kvm *kvm = me->kvm;
2654 struct kvm_vcpu *vcpu;
2655 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2656 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302657 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002658 int pass;
2659 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002660
Raghavendra K T4c088492012-07-18 19:07:46 +05302661 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002662 /*
2663 * We boost the priority of a VCPU that is runnable but not
2664 * currently running, because it got preempted by something
2665 * else and called schedule in __vcpu_run. Hopefully that
2666 * VCPU is holding the lock that we need and will release it.
2667 * We approximate round-robin by starting at the last boosted VCPU.
2668 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302669 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002670 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002671 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002672 i = last_boosted_vcpu;
2673 continue;
2674 } else if (pass && i > last_boosted_vcpu)
2675 break;
Wanpeng Lid73eb572019-07-18 19:39:06 +08002676 if (!READ_ONCE(vcpu->ready))
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302677 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002678 if (vcpu == me)
2679 continue;
Wanpeng Li17e433b2019-08-05 10:03:19 +08002680 if (swait_active(&vcpu->wq) && !vcpu_dy_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002681 continue;
Wanpeng Li046ddee2019-08-01 11:30:14 +08002682 if (READ_ONCE(vcpu->preempted) && yield_to_kernel_mode &&
2683 !kvm_arch_vcpu_in_kernel(vcpu))
Longpeng(Mike)199b5762017-08-08 12:05:32 +08002684 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302685 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2686 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302687
2688 yielded = kvm_vcpu_yield_to(vcpu);
2689 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002690 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002691 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302692 } else if (yielded < 0) {
2693 try--;
2694 if (!try)
2695 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002696 }
Rik van Riel217ece62011-02-01 09:53:28 -05002697 }
2698 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302699 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302700
2701 /* Ensure vcpu is not eligible during next spinloop */
2702 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002703}
2704EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2705
Souptick Joarder1499fa82018-04-19 00:49:58 +05302706static vm_fault_t kvm_vcpu_fault(struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002707{
Dave Jiang11bac802017-02-24 14:56:41 -08002708 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002709 struct page *page;
2710
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002711 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002712 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002713#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002714 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002715 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002716#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02002717#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02002718 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2719 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2720#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002721 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002722 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002723 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002724 vmf->page = page;
2725 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002726}
2727
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002728static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002729 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002730};
2731
2732static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2733{
2734 vma->vm_ops = &kvm_vcpu_vm_ops;
2735 return 0;
2736}
2737
Avi Kivitybccf2152007-02-21 18:04:26 +02002738static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2739{
2740 struct kvm_vcpu *vcpu = filp->private_data;
2741
Luiz Capitulino45b59392016-09-16 10:27:35 -04002742 debugfs_remove_recursive(vcpu->debugfs_dentry);
Al Viro66c0b392008-04-19 20:33:56 +01002743 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002744 return 0;
2745}
2746
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002747static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002748 .release = kvm_vcpu_release,
2749 .unlocked_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002750 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002751 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01002752 KVM_COMPAT(kvm_vcpu_compat_ioctl),
Avi Kivitybccf2152007-02-21 18:04:26 +02002753};
2754
2755/*
2756 * Allocates an inode for the vcpu.
2757 */
2758static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2759{
Masatake YAMATOe46b4692018-01-20 04:04:22 +09002760 char name[8 + 1 + ITOA_MAX_LEN + 1];
2761
2762 snprintf(name, sizeof(name), "kvm-vcpu:%d", vcpu->vcpu_id);
2763 return anon_inode_getfd(name, &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002764}
2765
Greg KH3e7093d2019-07-31 20:56:20 +02002766static void kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
Luiz Capitulino45b59392016-09-16 10:27:35 -04002767{
Paolo Bonzini741cbba2019-08-03 08:14:25 +02002768#ifdef __KVM_HAVE_ARCH_VCPU_DEBUGFS
Luiz Capitulino45b59392016-09-16 10:27:35 -04002769 char dir_name[ITOA_MAX_LEN * 2];
Luiz Capitulino45b59392016-09-16 10:27:35 -04002770
Luiz Capitulino45b59392016-09-16 10:27:35 -04002771 if (!debugfs_initialized())
Greg KH3e7093d2019-07-31 20:56:20 +02002772 return;
Luiz Capitulino45b59392016-09-16 10:27:35 -04002773
2774 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2775 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
Greg KH3e7093d2019-07-31 20:56:20 +02002776 vcpu->kvm->debugfs_dentry);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002777
Greg KH3e7093d2019-07-31 20:56:20 +02002778 kvm_arch_create_vcpu_debugfs(vcpu);
Paolo Bonzini741cbba2019-08-03 08:14:25 +02002779#endif
Luiz Capitulino45b59392016-09-16 10:27:35 -04002780}
2781
Avi Kivityc5ea7662007-02-20 18:41:05 +02002782/*
2783 * Creates some virtual cpus. Good luck creating more than one.
2784 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002785static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002786{
2787 int r;
David Hildenbrande09fefd2015-11-05 09:03:50 +01002788 struct kvm_vcpu *vcpu;
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002789 struct page *page;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002790
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002791 if (id >= KVM_MAX_VCPU_ID)
Andy Honig338c7db2013-11-18 16:09:22 -08002792 return -EINVAL;
2793
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002794 mutex_lock(&kvm->lock);
2795 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2796 mutex_unlock(&kvm->lock);
2797 return -EINVAL;
2798 }
2799
2800 kvm->created_vcpus++;
2801 mutex_unlock(&kvm->lock);
2802
Sean Christopherson897cc382019-12-18 13:55:09 -08002803 r = kvm_arch_vcpu_precreate(kvm, id);
2804 if (r)
2805 goto vcpu_decrement;
2806
Sean Christophersone529ef62019-12-18 13:55:15 -08002807 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
2808 if (!vcpu) {
2809 r = -ENOMEM;
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002810 goto vcpu_decrement;
2811 }
Avi Kivityc5ea7662007-02-20 18:41:05 +02002812
Peter Xufcd97ad2020-01-09 09:57:12 -05002813 BUILD_BUG_ON(sizeof(struct kvm_run) > PAGE_SIZE);
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002814 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2815 if (!page) {
2816 r = -ENOMEM;
Sean Christophersone529ef62019-12-18 13:55:15 -08002817 goto vcpu_free;
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002818 }
2819 vcpu->run = page_address(page);
2820
2821 kvm_vcpu_init(vcpu, kvm, id);
Sean Christophersone529ef62019-12-18 13:55:15 -08002822
2823 r = kvm_arch_vcpu_create(vcpu);
2824 if (r)
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002825 goto vcpu_free_run_page;
Sean Christophersone529ef62019-12-18 13:55:15 -08002826
Greg KH3e7093d2019-07-31 20:56:20 +02002827 kvm_create_vcpu_debugfs(vcpu);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002828
Shaohua Li11ec2802007-07-23 14:51:37 +08002829 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +01002830 if (kvm_get_vcpu_by_id(kvm, id)) {
2831 r = -EEXIST;
2832 goto unlock_vcpu_destroy;
2833 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002834
Radim Krčmář8750e722019-11-07 07:53:42 -05002835 vcpu->vcpu_idx = atomic_read(&kvm->online_vcpus);
2836 BUG_ON(kvm->vcpus[vcpu->vcpu_idx]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002837
2838 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002839 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002840 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002841 if (r < 0) {
Sean Christopherson149487b2019-10-21 15:58:42 -07002842 kvm_put_kvm_no_destroy(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002843 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002844 }
2845
Radim Krčmář8750e722019-11-07 07:53:42 -05002846 kvm->vcpus[vcpu->vcpu_idx] = vcpu;
Paolo Bonzinidd489242015-07-29 11:32:20 +02002847
2848 /*
2849 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2850 * before kvm->online_vcpu's incremented value.
2851 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002852 smp_wmb();
2853 atomic_inc(&kvm->online_vcpus);
2854
Gleb Natapov73880c82009-06-09 15:56:28 +03002855 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002856 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002857 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002858
Jan Kiszkad7805922011-05-23 10:33:05 +02002859unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002860 mutex_unlock(&kvm->lock);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002861 debugfs_remove_recursive(vcpu->debugfs_dentry);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002862 kvm_arch_vcpu_destroy(vcpu);
Sean Christopherson8bd826d2019-12-18 13:55:30 -08002863vcpu_free_run_page:
2864 free_page((unsigned long)vcpu->run);
Sean Christophersone529ef62019-12-18 13:55:15 -08002865vcpu_free:
2866 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002867vcpu_decrement:
2868 mutex_lock(&kvm->lock);
2869 kvm->created_vcpus--;
2870 mutex_unlock(&kvm->lock);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002871 return r;
2872}
2873
Avi Kivity1961d272007-03-05 19:46:05 +02002874static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2875{
2876 if (sigset) {
2877 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2878 vcpu->sigset_active = 1;
2879 vcpu->sigset = *sigset;
2880 } else
2881 vcpu->sigset_active = 0;
2882 return 0;
2883}
2884
Avi Kivitybccf2152007-02-21 18:04:26 +02002885static long kvm_vcpu_ioctl(struct file *filp,
2886 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002887{
Avi Kivitybccf2152007-02-21 18:04:26 +02002888 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002889 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002890 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002891 struct kvm_fpu *fpu = NULL;
2892 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002893
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002894 if (vcpu->kvm->mm != current->mm)
2895 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002896
David Matlack2ea75be2014-09-19 16:03:25 -07002897 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2898 return -EINVAL;
2899
Avi Kivity2122ff52010-05-13 11:25:04 +03002900 /*
Paolo Bonzini5cb09442017-12-12 17:41:34 +01002901 * Some architectures have vcpu ioctls that are asynchronous to vcpu
2902 * execution; mutex_lock() would break them.
Avi Kivity2122ff52010-05-13 11:25:04 +03002903 */
Paolo Bonzini5cb09442017-12-12 17:41:34 +01002904 r = kvm_arch_vcpu_async_ioctl(filp, ioctl, arg);
2905 if (r != -ENOIOCTLCMD)
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002906 return r;
Avi Kivity2122ff52010-05-13 11:25:04 +03002907
Christoffer Dallec7660c2017-12-04 21:35:23 +01002908 if (mutex_lock_killable(&vcpu->mutex))
2909 return -EINTR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002910 switch (ioctl) {
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002911 case KVM_RUN: {
2912 struct pid *oldpid;
Avi Kivityf0fe5102007-03-07 13:11:17 +02002913 r = -EINVAL;
2914 if (arg)
2915 goto out;
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002916 oldpid = rcu_access_pointer(vcpu->pid);
Eric W. Biederman71dbc8a2017-07-16 21:39:32 -05002917 if (unlikely(oldpid != task_pid(current))) {
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002918 /* The thread running this VCPU changed. */
Christoffer Dallbd2a6392018-02-23 17:23:57 +01002919 struct pid *newpid;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002920
Christoffer Dallbd2a6392018-02-23 17:23:57 +01002921 r = kvm_arch_vcpu_run_pid_change(vcpu);
2922 if (r)
2923 break;
2924
2925 newpid = get_task_pid(current, PIDTYPE_PID);
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002926 rcu_assign_pointer(vcpu->pid, newpid);
2927 if (oldpid)
2928 synchronize_rcu();
2929 put_pid(oldpid);
2930 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002931 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002932 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002933 break;
Christian Borntraeger0e4524a2017-07-06 14:44:28 +02002934 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002935 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002936 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002937
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002938 r = -ENOMEM;
Ben Gardonb12ce362019-02-11 11:02:49 -08002939 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL_ACCOUNT);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002940 if (!kvm_regs)
2941 goto out;
2942 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002943 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002944 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002945 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002946 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2947 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002948 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002949out_free1:
2950 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002951 break;
2952 }
2953 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002954 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002955
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002956 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002957 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2958 if (IS_ERR(kvm_regs)) {
2959 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002960 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002961 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002962 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002963 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002964 break;
2965 }
2966 case KVM_GET_SREGS: {
Ben Gardonb12ce362019-02-11 11:02:49 -08002967 kvm_sregs = kzalloc(sizeof(struct kvm_sregs),
2968 GFP_KERNEL_ACCOUNT);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002969 r = -ENOMEM;
2970 if (!kvm_sregs)
2971 goto out;
2972 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973 if (r)
2974 goto out;
2975 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002976 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002977 goto out;
2978 r = 0;
2979 break;
2980 }
2981 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002982 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2983 if (IS_ERR(kvm_sregs)) {
2984 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002985 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002986 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002987 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002988 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002989 break;
2990 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002991 case KVM_GET_MP_STATE: {
2992 struct kvm_mp_state mp_state;
2993
2994 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2995 if (r)
2996 goto out;
2997 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002998 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002999 goto out;
3000 r = 0;
3001 break;
3002 }
3003 case KVM_SET_MP_STATE: {
3004 struct kvm_mp_state mp_state;
3005
3006 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003007 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003008 goto out;
3009 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003010 break;
3011 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003012 case KVM_TRANSLATE: {
3013 struct kvm_translation tr;
3014
3015 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003016 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003017 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08003018 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003019 if (r)
3020 goto out;
3021 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003022 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003023 goto out;
3024 r = 0;
3025 break;
3026 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003027 case KVM_SET_GUEST_DEBUG: {
3028 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003029
3030 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003031 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003032 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003033 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003034 break;
3035 }
Avi Kivity1961d272007-03-05 19:46:05 +02003036 case KVM_SET_SIGNAL_MASK: {
3037 struct kvm_signal_mask __user *sigmask_arg = argp;
3038 struct kvm_signal_mask kvm_sigmask;
3039 sigset_t sigset, *p;
3040
3041 p = NULL;
3042 if (argp) {
3043 r = -EFAULT;
3044 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003045 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02003046 goto out;
3047 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003048 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02003049 goto out;
3050 r = -EFAULT;
3051 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003052 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02003053 goto out;
3054 p = &sigset;
3055 }
Andi Kleen376d41f2010-06-10 13:10:47 +02003056 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02003057 break;
3058 }
Avi Kivityb8836732007-04-01 16:34:31 +03003059 case KVM_GET_FPU: {
Ben Gardonb12ce362019-02-11 11:02:49 -08003060 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL_ACCOUNT);
Dave Hansenfa3795a2008-08-11 10:01:46 -07003061 r = -ENOMEM;
3062 if (!fpu)
3063 goto out;
3064 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03003065 if (r)
3066 goto out;
3067 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07003068 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03003069 goto out;
3070 r = 0;
3071 break;
3072 }
3073 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003074 fpu = memdup_user(argp, sizeof(*fpu));
3075 if (IS_ERR(fpu)) {
3076 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08003077 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03003078 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003079 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07003080 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03003081 break;
3082 }
Avi Kivitybccf2152007-02-21 18:04:26 +02003083 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02003084 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02003085 }
3086out:
Christoffer Dallec7660c2017-12-04 21:35:23 +01003087 mutex_unlock(&vcpu->mutex);
Dave Hansenfa3795a2008-08-11 10:01:46 -07003088 kfree(fpu);
3089 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02003090 return r;
3091}
3092
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003093#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02003094static long kvm_vcpu_compat_ioctl(struct file *filp,
3095 unsigned int ioctl, unsigned long arg)
3096{
3097 struct kvm_vcpu *vcpu = filp->private_data;
3098 void __user *argp = compat_ptr(arg);
3099 int r;
3100
3101 if (vcpu->kvm->mm != current->mm)
3102 return -EIO;
3103
3104 switch (ioctl) {
3105 case KVM_SET_SIGNAL_MASK: {
3106 struct kvm_signal_mask __user *sigmask_arg = argp;
3107 struct kvm_signal_mask kvm_sigmask;
Alexander Graf1dda6062011-06-08 02:45:37 +02003108 sigset_t sigset;
3109
3110 if (argp) {
3111 r = -EFAULT;
3112 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003113 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02003114 goto out;
3115 r = -EINVAL;
Al Viro3968cf62017-09-03 21:45:17 -04003116 if (kvm_sigmask.len != sizeof(compat_sigset_t))
Alexander Graf1dda6062011-06-08 02:45:37 +02003117 goto out;
3118 r = -EFAULT;
Al Viro3968cf62017-09-03 21:45:17 -04003119 if (get_compat_sigset(&sigset, (void *)sigmask_arg->sigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02003120 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01003121 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
3122 } else
3123 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02003124 break;
3125 }
3126 default:
3127 r = kvm_vcpu_ioctl(filp, ioctl, arg);
3128 }
3129
3130out:
3131 return r;
3132}
3133#endif
3134
Cédric Le Goatera1cd3f02019-04-18 12:39:36 +02003135static int kvm_device_mmap(struct file *filp, struct vm_area_struct *vma)
3136{
3137 struct kvm_device *dev = filp->private_data;
3138
3139 if (dev->ops->mmap)
3140 return dev->ops->mmap(dev, vma);
3141
3142 return -ENODEV;
3143}
3144
Scott Wood852b6d52013-04-12 14:08:42 +00003145static int kvm_device_ioctl_attr(struct kvm_device *dev,
3146 int (*accessor)(struct kvm_device *dev,
3147 struct kvm_device_attr *attr),
3148 unsigned long arg)
3149{
3150 struct kvm_device_attr attr;
3151
3152 if (!accessor)
3153 return -EPERM;
3154
3155 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
3156 return -EFAULT;
3157
3158 return accessor(dev, &attr);
3159}
3160
3161static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
3162 unsigned long arg)
3163{
3164 struct kvm_device *dev = filp->private_data;
3165
Sean Christophersonddba9182019-02-15 12:48:39 -08003166 if (dev->kvm->mm != current->mm)
3167 return -EIO;
3168
Scott Wood852b6d52013-04-12 14:08:42 +00003169 switch (ioctl) {
3170 case KVM_SET_DEVICE_ATTR:
3171 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
3172 case KVM_GET_DEVICE_ATTR:
3173 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
3174 case KVM_HAS_DEVICE_ATTR:
3175 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
3176 default:
3177 if (dev->ops->ioctl)
3178 return dev->ops->ioctl(dev, ioctl, arg);
3179
3180 return -ENOTTY;
3181 }
3182}
3183
Scott Wood852b6d52013-04-12 14:08:42 +00003184static int kvm_device_release(struct inode *inode, struct file *filp)
3185{
3186 struct kvm_device *dev = filp->private_data;
3187 struct kvm *kvm = dev->kvm;
3188
Cédric Le Goater2bde9b32019-04-18 12:39:41 +02003189 if (dev->ops->release) {
3190 mutex_lock(&kvm->lock);
3191 list_del(&dev->vm_node);
3192 dev->ops->release(dev);
3193 mutex_unlock(&kvm->lock);
3194 }
3195
Scott Wood852b6d52013-04-12 14:08:42 +00003196 kvm_put_kvm(kvm);
3197 return 0;
3198}
3199
3200static const struct file_operations kvm_device_fops = {
3201 .unlocked_ioctl = kvm_device_ioctl,
3202 .release = kvm_device_release,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003203 KVM_COMPAT(kvm_device_ioctl),
Cédric Le Goatera1cd3f02019-04-18 12:39:36 +02003204 .mmap = kvm_device_mmap,
Scott Wood852b6d52013-04-12 14:08:42 +00003205};
3206
3207struct kvm_device *kvm_device_from_filp(struct file *filp)
3208{
3209 if (filp->f_op != &kvm_device_fops)
3210 return NULL;
3211
3212 return filp->private_data;
3213}
3214
Steven Price8538cb22019-10-21 16:28:19 +01003215static const struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
Will Deacond60eacb2014-09-02 10:27:33 +01003216#ifdef CONFIG_KVM_MPIC
3217 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
3218 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
3219#endif
Will Deacond60eacb2014-09-02 10:27:33 +01003220};
3221
Steven Price8538cb22019-10-21 16:28:19 +01003222int kvm_register_device_ops(const struct kvm_device_ops *ops, u32 type)
Will Deacond60eacb2014-09-02 10:27:33 +01003223{
3224 if (type >= ARRAY_SIZE(kvm_device_ops_table))
3225 return -ENOSPC;
3226
3227 if (kvm_device_ops_table[type] != NULL)
3228 return -EEXIST;
3229
3230 kvm_device_ops_table[type] = ops;
3231 return 0;
3232}
3233
Wanpeng Li571ee1b2014-10-09 18:30:08 +08003234void kvm_unregister_device_ops(u32 type)
3235{
3236 if (kvm_device_ops_table[type] != NULL)
3237 kvm_device_ops_table[type] = NULL;
3238}
3239
Scott Wood852b6d52013-04-12 14:08:42 +00003240static int kvm_ioctl_create_device(struct kvm *kvm,
3241 struct kvm_create_device *cd)
3242{
Steven Price8538cb22019-10-21 16:28:19 +01003243 const struct kvm_device_ops *ops = NULL;
Scott Wood852b6d52013-04-12 14:08:42 +00003244 struct kvm_device *dev;
3245 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003246 int type;
Scott Wood852b6d52013-04-12 14:08:42 +00003247 int ret;
3248
Will Deacond60eacb2014-09-02 10:27:33 +01003249 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00003250 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01003251
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003252 type = array_index_nospec(cd->type, ARRAY_SIZE(kvm_device_ops_table));
3253 ops = kvm_device_ops_table[type];
Will Deacond60eacb2014-09-02 10:27:33 +01003254 if (ops == NULL)
3255 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00003256
3257 if (test)
3258 return 0;
3259
Ben Gardonb12ce362019-02-11 11:02:49 -08003260 dev = kzalloc(sizeof(*dev), GFP_KERNEL_ACCOUNT);
Scott Wood852b6d52013-04-12 14:08:42 +00003261 if (!dev)
3262 return -ENOMEM;
3263
3264 dev->ops = ops;
3265 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00003266
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003267 mutex_lock(&kvm->lock);
Paolo Bonzini1d487e92019-04-11 11:16:47 +02003268 ret = ops->create(dev, type);
Scott Wood852b6d52013-04-12 14:08:42 +00003269 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003270 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00003271 kfree(dev);
3272 return ret;
3273 }
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003274 list_add(&dev->vm_node, &kvm->devices);
3275 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00003276
Christoffer Dall023e9fd2016-08-09 19:13:00 +02003277 if (ops->init)
3278 ops->init(dev);
3279
Jann Horncfa39382019-01-26 01:54:33 +01003280 kvm_get_kvm(kvm);
Yann Droneaud24009b02013-08-24 22:14:07 +02003281 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00003282 if (ret < 0) {
Sean Christopherson149487b2019-10-21 15:58:42 -07003283 kvm_put_kvm_no_destroy(kvm);
Christoffer Dalla28ebea2016-08-09 19:13:01 +02003284 mutex_lock(&kvm->lock);
3285 list_del(&dev->vm_node);
3286 mutex_unlock(&kvm->lock);
Dan Carpentera0f1d212016-11-30 22:21:05 +03003287 ops->destroy(dev);
Scott Wood852b6d52013-04-12 14:08:42 +00003288 return ret;
3289 }
3290
Scott Wood852b6d52013-04-12 14:08:42 +00003291 cd->fd = ret;
3292 return 0;
3293}
3294
Alexander Graf92b591a2014-07-14 18:33:08 +02003295static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
3296{
3297 switch (arg) {
3298 case KVM_CAP_USER_MEMORY:
3299 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
3300 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Alexander Graf92b591a2014-07-14 18:33:08 +02003301 case KVM_CAP_INTERNAL_ERROR_DATA:
3302#ifdef CONFIG_HAVE_KVM_MSI
3303 case KVM_CAP_SIGNAL_MSI:
3304#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10003305#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01003306 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02003307 case KVM_CAP_IRQFD_RESAMPLE:
3308#endif
Jason Wange9ea5062015-09-15 14:41:59 +08003309 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
Alexander Graf92b591a2014-07-14 18:33:08 +02003310 case KVM_CAP_CHECK_EXTENSION_VM:
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003311 case KVM_CAP_ENABLE_CAP_VM:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003312#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
Peter Xud7547c52019-05-08 17:15:47 +08003313 case KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003314#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02003315 return 1;
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003316#ifdef CONFIG_KVM_MMIO
Paolo Bonzini30422552017-03-31 13:53:22 +02003317 case KVM_CAP_COALESCED_MMIO:
3318 return KVM_COALESCED_MMIO_PAGE_OFFSET;
Peng Hao0804c842018-10-14 07:09:55 +08003319 case KVM_CAP_COALESCED_PIO:
3320 return 1;
Paolo Bonzini30422552017-03-31 13:53:22 +02003321#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02003322#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3323 case KVM_CAP_IRQ_ROUTING:
3324 return KVM_MAX_IRQ_ROUTES;
3325#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02003326#if KVM_ADDRESS_SPACE_NUM > 1
3327 case KVM_CAP_MULTI_ADDRESS_SPACE:
3328 return KVM_ADDRESS_SPACE_NUM;
3329#endif
Paolo Bonzinic110ae52019-03-28 17:24:03 +01003330 case KVM_CAP_NR_MEMSLOTS:
3331 return KVM_USER_MEM_SLOTS;
Alexander Graf92b591a2014-07-14 18:33:08 +02003332 default:
3333 break;
3334 }
3335 return kvm_vm_ioctl_check_extension(kvm, arg);
3336}
3337
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003338int __attribute__((weak)) kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3339 struct kvm_enable_cap *cap)
3340{
3341 return -EINVAL;
3342}
3343
3344static int kvm_vm_ioctl_enable_cap_generic(struct kvm *kvm,
3345 struct kvm_enable_cap *cap)
3346{
3347 switch (cap->cap) {
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003348#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
Peter Xud7547c52019-05-08 17:15:47 +08003349 case KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003350 if (cap->flags || (cap->args[0] & ~1))
3351 return -EINVAL;
3352 kvm->manual_dirty_log_protect = cap->args[0];
3353 return 0;
3354#endif
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003355 default:
3356 return kvm_vm_ioctl_enable_cap(kvm, cap);
3357 }
3358}
3359
Avi Kivitybccf2152007-02-21 18:04:26 +02003360static long kvm_vm_ioctl(struct file *filp,
3361 unsigned int ioctl, unsigned long arg)
3362{
3363 struct kvm *kvm = filp->private_data;
3364 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003365 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02003366
Avi Kivity6d4e4c42007-11-21 16:41:05 +02003367 if (kvm->mm != current->mm)
3368 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02003369 switch (ioctl) {
3370 case KVM_CREATE_VCPU:
3371 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02003372 break;
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01003373 case KVM_ENABLE_CAP: {
3374 struct kvm_enable_cap cap;
3375
3376 r = -EFAULT;
3377 if (copy_from_user(&cap, argp, sizeof(cap)))
3378 goto out;
3379 r = kvm_vm_ioctl_enable_cap_generic(kvm, &cap);
3380 break;
3381 }
Izik Eidus6fc138d2007-10-09 19:20:39 +02003382 case KVM_SET_USER_MEMORY_REGION: {
3383 struct kvm_userspace_memory_region kvm_userspace_mem;
3384
3385 r = -EFAULT;
3386 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08003387 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02003388 goto out;
3389
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09003390 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003391 break;
3392 }
3393 case KVM_GET_DIRTY_LOG: {
3394 struct kvm_dirty_log log;
3395
3396 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003397 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003398 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02003399 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003400 break;
3401 }
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02003402#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
3403 case KVM_CLEAR_DIRTY_LOG: {
3404 struct kvm_clear_dirty_log log;
3405
3406 r = -EFAULT;
3407 if (copy_from_user(&log, argp, sizeof(log)))
3408 goto out;
3409 r = kvm_vm_ioctl_clear_dirty_log(kvm, &log);
3410 break;
3411 }
3412#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003413#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02003414 case KVM_REGISTER_COALESCED_MMIO: {
3415 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003416
Laurent Vivier5f94c172008-05-30 16:05:54 +02003417 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003418 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003419 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003420 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003421 break;
3422 }
3423 case KVM_UNREGISTER_COALESCED_MMIO: {
3424 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003425
Laurent Vivier5f94c172008-05-30 16:05:54 +02003426 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003427 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003428 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003429 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003430 break;
3431 }
3432#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003433 case KVM_IRQFD: {
3434 struct kvm_irqfd data;
3435
3436 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003437 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003438 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06003439 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003440 break;
3441 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003442 case KVM_IOEVENTFD: {
3443 struct kvm_ioeventfd data;
3444
3445 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003446 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003447 goto out;
3448 r = kvm_ioeventfd(kvm, &data);
3449 break;
3450 }
Jan Kiszka07975ad2012-03-29 21:14:12 +02003451#ifdef CONFIG_HAVE_KVM_MSI
3452 case KVM_SIGNAL_MSI: {
3453 struct kvm_msi msi;
3454
3455 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003456 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02003457 goto out;
3458 r = kvm_send_userspace_msi(kvm, &msi);
3459 break;
3460 }
3461#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003462#ifdef __KVM_HAVE_IRQ_LINE
3463 case KVM_IRQ_LINE_STATUS:
3464 case KVM_IRQ_LINE: {
3465 struct kvm_irq_level irq_event;
3466
3467 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003468 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003469 goto out;
3470
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003471 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3472 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003473 if (r)
3474 goto out;
3475
3476 r = -EFAULT;
3477 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08003478 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003479 goto out;
3480 }
3481
3482 r = 0;
3483 break;
3484 }
3485#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02003486#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3487 case KVM_SET_GSI_ROUTING: {
3488 struct kvm_irq_routing routing;
3489 struct kvm_irq_routing __user *urouting;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003490 struct kvm_irq_routing_entry *entries = NULL;
Alexander Grafaa8d5942013-04-15 21:12:53 +02003491
3492 r = -EFAULT;
3493 if (copy_from_user(&routing, argp, sizeof(routing)))
3494 goto out;
3495 r = -EINVAL;
David Hildenbrand5c0aea02017-04-28 17:06:20 +02003496 if (!kvm_arch_can_set_irq_routing(kvm))
3497 goto out;
Xiubo Licaf1ff22016-06-15 18:00:33 +08003498 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02003499 goto out;
3500 if (routing.flags)
3501 goto out;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003502 if (routing.nr) {
3503 r = -ENOMEM;
Kees Cook42bc47b2018-06-12 14:27:11 -07003504 entries = vmalloc(array_size(sizeof(*entries),
3505 routing.nr));
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003506 if (!entries)
3507 goto out;
3508 r = -EFAULT;
3509 urouting = argp;
3510 if (copy_from_user(entries, urouting->entries,
3511 routing.nr * sizeof(*entries)))
3512 goto out_free_irq_routing;
3513 }
Alexander Grafaa8d5942013-04-15 21:12:53 +02003514 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3515 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08003516out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02003517 vfree(entries);
3518 break;
3519 }
3520#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00003521 case KVM_CREATE_DEVICE: {
3522 struct kvm_create_device cd;
3523
3524 r = -EFAULT;
3525 if (copy_from_user(&cd, argp, sizeof(cd)))
3526 goto out;
3527
3528 r = kvm_ioctl_create_device(kvm, &cd);
3529 if (r)
3530 goto out;
3531
3532 r = -EFAULT;
3533 if (copy_to_user(argp, &cd, sizeof(cd)))
3534 goto out;
3535
3536 r = 0;
3537 break;
3538 }
Alexander Graf92b591a2014-07-14 18:33:08 +02003539 case KVM_CHECK_EXTENSION:
3540 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3541 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02003542 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003543 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003544 }
3545out:
3546 return r;
3547}
3548
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003549#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003550struct compat_kvm_dirty_log {
3551 __u32 slot;
3552 __u32 padding1;
3553 union {
3554 compat_uptr_t dirty_bitmap; /* one bit per page */
3555 __u64 padding2;
3556 };
3557};
3558
3559static long kvm_vm_compat_ioctl(struct file *filp,
3560 unsigned int ioctl, unsigned long arg)
3561{
3562 struct kvm *kvm = filp->private_data;
3563 int r;
3564
3565 if (kvm->mm != current->mm)
3566 return -EIO;
3567 switch (ioctl) {
3568 case KVM_GET_DIRTY_LOG: {
3569 struct compat_kvm_dirty_log compat_log;
3570 struct kvm_dirty_log log;
3571
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003572 if (copy_from_user(&compat_log, (void __user *)arg,
3573 sizeof(compat_log)))
Markus Elfringf6a3b162017-01-22 11:30:21 +01003574 return -EFAULT;
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003575 log.slot = compat_log.slot;
3576 log.padding1 = compat_log.padding1;
3577 log.padding2 = compat_log.padding2;
3578 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3579
3580 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003581 break;
3582 }
3583 default:
3584 r = kvm_vm_ioctl(filp, ioctl, arg);
3585 }
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003586 return r;
3587}
3588#endif
3589
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003590static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02003591 .release = kvm_vm_release,
3592 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003593 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003594 KVM_COMPAT(kvm_vm_compat_ioctl),
Avi Kivityf17abe92007-02-21 19:28:04 +02003595};
3596
Carsten Ottee08b9632012-01-04 10:25:20 +01003597static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02003598{
Heiko Carstensaac87632010-10-27 17:22:10 +02003599 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003600 struct kvm *kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003601 struct file *file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003602
Carsten Ottee08b9632012-01-04 10:25:20 +01003603 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04003604 if (IS_ERR(kvm))
3605 return PTR_ERR(kvm);
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003606#ifdef CONFIG_KVM_MMIO
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003607 r = kvm_coalesced_mmio_init(kvm);
Markus Elfring78588332017-11-21 13:40:17 +01003608 if (r < 0)
3609 goto put_kvm;
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003610#endif
Al Viro506cfba2016-07-14 18:54:17 +02003611 r = get_unused_fd_flags(O_CLOEXEC);
Markus Elfring78588332017-11-21 13:40:17 +01003612 if (r < 0)
3613 goto put_kvm;
3614
Al Viro506cfba2016-07-14 18:54:17 +02003615 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3616 if (IS_ERR(file)) {
3617 put_unused_fd(r);
Markus Elfring78588332017-11-21 13:40:17 +01003618 r = PTR_ERR(file);
3619 goto put_kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003620 }
Janosch Frank536a6f82016-05-18 13:26:23 +02003621
Paolo Bonzini525df862017-06-27 15:45:09 +02003622 /*
3623 * Don't call kvm_put_kvm anymore at this point; file->f_op is
3624 * already set, with ->release() being kvm_vm_release(). In error
3625 * cases it will be called by the final fput(file) and will take
3626 * care of doing kvm_put_kvm(kvm).
3627 */
Janosch Frank536a6f82016-05-18 13:26:23 +02003628 if (kvm_create_vm_debugfs(kvm, r) < 0) {
Al Viro506cfba2016-07-14 18:54:17 +02003629 put_unused_fd(r);
3630 fput(file);
Janosch Frank536a6f82016-05-18 13:26:23 +02003631 return -ENOMEM;
3632 }
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02003633 kvm_uevent_notify_change(KVM_EVENT_CREATE_VM, kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02003634
Al Viro506cfba2016-07-14 18:54:17 +02003635 fd_install(r, file);
Heiko Carstensaac87632010-10-27 17:22:10 +02003636 return r;
Markus Elfring78588332017-11-21 13:40:17 +01003637
3638put_kvm:
3639 kvm_put_kvm(kvm);
3640 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003641}
3642
3643static long kvm_dev_ioctl(struct file *filp,
3644 unsigned int ioctl, unsigned long arg)
3645{
Avi Kivity07c45a32007-03-07 13:05:38 +02003646 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003647
3648 switch (ioctl) {
3649 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003650 if (arg)
3651 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003652 r = KVM_API_VERSION;
3653 break;
3654 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01003655 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003656 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003657 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02003658 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02003659 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02003660 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02003661 if (arg)
3662 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02003663 r = PAGE_SIZE; /* struct kvm_run */
3664#ifdef CONFIG_X86
3665 r += PAGE_SIZE; /* pio data page */
3666#endif
Paolo Bonzini4b4357e2017-03-31 13:53:23 +02003667#ifdef CONFIG_KVM_MMIO
Laurent Vivier5f94c172008-05-30 16:05:54 +02003668 r += PAGE_SIZE; /* coalesced mmio ring page */
3669#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02003670 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003671 case KVM_TRACE_ENABLE:
3672 case KVM_TRACE_PAUSE:
3673 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03003674 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003675 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003676 default:
Carsten Otte043405e2007-10-10 17:16:19 +02003677 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003678 }
3679out:
3680 return r;
3681}
3682
Avi Kivity6aa8b732006-12-10 02:21:36 -08003683static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003684 .unlocked_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003685 .llseek = noop_llseek,
Marc Zyngier7ddfd3e2018-06-17 10:16:21 +01003686 KVM_COMPAT(kvm_dev_ioctl),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003687};
3688
3689static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003690 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003691 "kvm",
3692 &kvm_chardev_ops,
3693};
3694
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003695static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003696{
3697 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02003698 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03003699
Rusty Russell7f59f492008-12-07 21:25:45 +10303700 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003701 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02003702
Rusty Russell7f59f492008-12-07 21:25:45 +10303703 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02003704
Radim Krčmář13a34e02014-08-28 15:13:03 +02003705 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02003706
3707 if (r) {
3708 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3709 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08003710 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02003711 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03003712}
3713
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003714static int kvm_starting_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003715{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003716 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003717 if (kvm_usage_count)
3718 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003719 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003720 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003721}
3722
3723static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003724{
3725 int cpu = raw_smp_processor_id();
3726
Rusty Russell7f59f492008-12-07 21:25:45 +10303727 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003728 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10303729 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02003730 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03003731}
3732
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003733static int kvm_dying_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003734{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003735 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003736 if (kvm_usage_count)
3737 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003738 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003739 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003740}
3741
Alexander Graf10474ae2009-09-15 11:37:46 +02003742static void hardware_disable_all_nolock(void)
3743{
3744 BUG_ON(!kvm_usage_count);
3745
3746 kvm_usage_count--;
3747 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003748 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003749}
3750
3751static void hardware_disable_all(void)
3752{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003753 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003754 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003755 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003756}
3757
3758static int hardware_enable_all(void)
3759{
3760 int r = 0;
3761
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003762 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003763
3764 kvm_usage_count++;
3765 if (kvm_usage_count == 1) {
3766 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003767 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003768
3769 if (atomic_read(&hardware_enable_failed)) {
3770 hardware_disable_all_nolock();
3771 r = -EBUSY;
3772 }
3773 }
3774
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003775 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003776
3777 return r;
3778}
3779
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003780static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003781 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003782{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003783 /*
3784 * Some (well, at least mine) BIOSes hang on reboot if
3785 * in vmx root mode.
3786 *
3787 * And Intel TXT required VMX off for all cpu when system shutdown.
3788 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003789 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003790 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003791 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003792 return NOTIFY_OK;
3793}
3794
3795static struct notifier_block kvm_reboot_notifier = {
3796 .notifier_call = kvm_reboot,
3797 .priority = 0,
3798};
3799
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003800static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003801{
3802 int i;
3803
3804 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003805 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003806
3807 kvm_iodevice_destructor(pos);
3808 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003809 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003810}
3811
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003812static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003813 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003814{
Jason Wang8f4216c72015-09-15 14:41:57 +08003815 gpa_t addr1 = r1->addr;
3816 gpa_t addr2 = r2->addr;
3817
3818 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003819 return -1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003820
3821 /* If r2->len == 0, match the exact address. If r2->len != 0,
3822 * accept any overlapping write. Any order is acceptable for
3823 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3824 * we process all of them.
3825 */
3826 if (r2->len) {
3827 addr1 += r1->len;
3828 addr2 += r2->len;
3829 }
3830
3831 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003832 return 1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003833
Sasha Levin743eeb02011-07-27 16:00:48 +03003834 return 0;
3835}
3836
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003837static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3838{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003839 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003840}
3841
Geoff Levand39369f72013-04-05 19:20:30 +00003842static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003843 gpa_t addr, int len)
3844{
3845 struct kvm_io_range *range, key;
3846 int off;
3847
3848 key = (struct kvm_io_range) {
3849 .addr = addr,
3850 .len = len,
3851 };
3852
3853 range = bsearch(&key, bus->range, bus->dev_count,
3854 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3855 if (range == NULL)
3856 return -ENOENT;
3857
3858 off = range - bus->range;
3859
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003860 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003861 off--;
3862
3863 return off;
3864}
3865
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003866static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003867 struct kvm_io_range *range, const void *val)
3868{
3869 int idx;
3870
3871 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3872 if (idx < 0)
3873 return -EOPNOTSUPP;
3874
3875 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003876 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003877 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003878 range->len, val))
3879 return idx;
3880 idx++;
3881 }
3882
3883 return -EOPNOTSUPP;
3884}
3885
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003886/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003887int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003888 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003889{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003890 struct kvm_io_bus *bus;
3891 struct kvm_io_range range;
3892 int r;
3893
3894 range = (struct kvm_io_range) {
3895 .addr = addr,
3896 .len = len,
3897 };
3898
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003899 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003900 if (!bus)
3901 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003902 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003903 return r < 0 ? r : 0;
3904}
Leo Yana2420102019-02-22 16:10:09 +08003905EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003906
3907/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003908int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3909 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003910{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003911 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003912 struct kvm_io_range range;
3913
3914 range = (struct kvm_io_range) {
3915 .addr = addr,
3916 .len = len,
3917 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003918
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003919 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003920 if (!bus)
3921 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02003922
3923 /* First try the device referenced by cookie. */
3924 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003925 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003926 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003927 val))
3928 return cookie;
3929
3930 /*
3931 * cookie contained garbage; fall back to search and return the
3932 * correct cookie value.
3933 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003934 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003935}
3936
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003937static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3938 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003939{
3940 int idx;
3941
3942 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003943 if (idx < 0)
3944 return -EOPNOTSUPP;
3945
3946 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003947 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003948 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003949 range->len, val))
3950 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003951 idx++;
3952 }
3953
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003954 return -EOPNOTSUPP;
3955}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003956
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003957/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003958int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003959 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003960{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003961 struct kvm_io_bus *bus;
3962 struct kvm_io_range range;
3963 int r;
3964
3965 range = (struct kvm_io_range) {
3966 .addr = addr,
3967 .len = len,
3968 };
3969
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003970 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003971 if (!bus)
3972 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003973 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003974 return r < 0 ? r : 0;
3975}
3976
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003977/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003978int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3979 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003980{
Gal Hammerd4c67a72018-01-16 15:34:41 +02003981 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003982 struct kvm_io_bus *new_bus, *bus;
Gal Hammerd4c67a72018-01-16 15:34:41 +02003983 struct kvm_io_range range;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003984
Christian Borntraeger4a12f952017-07-07 10:51:38 +02003985 bus = kvm_get_bus(kvm, bus_idx);
David Hildenbrand90db1042017-03-23 18:24:19 +01003986 if (!bus)
3987 return -ENOMEM;
3988
Amos Kong6ea34c92013-05-25 06:44:15 +08003989 /* exclude ioeventfd which is limited by maximum fd */
3990 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003991 return -ENOSPC;
3992
Gustavo A. R. Silva90952cd2019-01-30 17:07:47 +01003993 new_bus = kmalloc(struct_size(bus, range, bus->dev_count + 1),
Ben Gardonb12ce362019-02-11 11:02:49 -08003994 GFP_KERNEL_ACCOUNT);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003995 if (!new_bus)
3996 return -ENOMEM;
Gal Hammerd4c67a72018-01-16 15:34:41 +02003997
3998 range = (struct kvm_io_range) {
3999 .addr = addr,
4000 .len = len,
4001 .dev = dev,
4002 };
4003
4004 for (i = 0; i < bus->dev_count; i++)
4005 if (kvm_io_bus_cmp(&bus->range[i], &range) > 0)
4006 break;
4007
4008 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
4009 new_bus->dev_count++;
4010 new_bus->range[i] = range;
4011 memcpy(new_bus->range + i + 1, bus->range + i,
4012 (bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004013 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
4014 synchronize_srcu_expedited(&kvm->srcu);
4015 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04004016
4017 return 0;
4018}
4019
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004020/* Caller must hold slots_lock. */
David Hildenbrand90db1042017-03-23 18:24:19 +01004021void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
4022 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04004023{
David Hildenbrand90db1042017-03-23 18:24:19 +01004024 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004025 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03004026
Christian Borntraeger4a12f952017-07-07 10:51:38 +02004027 bus = kvm_get_bus(kvm, bus_idx);
Peter Xudf630b82017-03-15 16:01:17 +08004028 if (!bus)
David Hildenbrand90db1042017-03-23 18:24:19 +01004029 return;
Peter Xudf630b82017-03-15 16:01:17 +08004030
Amos Konga13007162012-03-09 12:17:32 +08004031 for (i = 0; i < bus->dev_count; i++)
4032 if (bus->range[i].dev == dev) {
Gregory Haskins090b7af2009-07-07 17:08:44 -04004033 break;
4034 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004035
David Hildenbrand90db1042017-03-23 18:24:19 +01004036 if (i == bus->dev_count)
4037 return;
Amos Konga13007162012-03-09 12:17:32 +08004038
Gustavo A. R. Silva90952cd2019-01-30 17:07:47 +01004039 new_bus = kmalloc(struct_size(bus, range, bus->dev_count - 1),
Ben Gardonb12ce362019-02-11 11:02:49 -08004040 GFP_KERNEL_ACCOUNT);
David Hildenbrand90db1042017-03-23 18:24:19 +01004041 if (!new_bus) {
4042 pr_err("kvm: failed to shrink bus, removing it completely\n");
4043 goto broken;
4044 }
Amos Konga13007162012-03-09 12:17:32 +08004045
4046 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
4047 new_bus->dev_count--;
4048 memcpy(new_bus->range + i, bus->range + i + 1,
4049 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004050
David Hildenbrand90db1042017-03-23 18:24:19 +01004051broken:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02004052 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
4053 synchronize_srcu_expedited(&kvm->srcu);
4054 kfree(bus);
David Hildenbrand90db1042017-03-23 18:24:19 +01004055 return;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04004056}
4057
Andre Przywara8a39d002016-07-15 12:43:26 +01004058struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
4059 gpa_t addr)
4060{
4061 struct kvm_io_bus *bus;
4062 int dev_idx, srcu_idx;
4063 struct kvm_io_device *iodev = NULL;
4064
4065 srcu_idx = srcu_read_lock(&kvm->srcu);
4066
4067 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01004068 if (!bus)
4069 goto out_unlock;
Andre Przywara8a39d002016-07-15 12:43:26 +01004070
4071 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
4072 if (dev_idx < 0)
4073 goto out_unlock;
4074
4075 iodev = bus->range[dev_idx].dev;
4076
4077out_unlock:
4078 srcu_read_unlock(&kvm->srcu, srcu_idx);
4079
4080 return iodev;
4081}
4082EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
4083
Janosch Frank536a6f82016-05-18 13:26:23 +02004084static int kvm_debugfs_open(struct inode *inode, struct file *file,
4085 int (*get)(void *, u64 *), int (*set)(void *, u64),
4086 const char *fmt)
4087{
4088 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
4089 inode->i_private;
4090
4091 /* The debugfs files are a reference to the kvm struct which
4092 * is still valid when kvm_destroy_vm is called.
4093 * To avoid the race between open and the removal of the debugfs
4094 * directory we test against the users count.
4095 */
Elena Reshetovae3736c32017-02-20 13:06:21 +02004096 if (!refcount_inc_not_zero(&stat_data->kvm->users_count))
Janosch Frank536a6f82016-05-18 13:26:23 +02004097 return -ENOENT;
4098
Paolo Bonzini833b45d2019-09-30 18:48:44 +02004099 if (simple_attr_open(inode, file, get,
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004100 KVM_DBGFS_GET_MODE(stat_data->dbgfs_item) & 0222
4101 ? set : NULL,
4102 fmt)) {
Janosch Frank536a6f82016-05-18 13:26:23 +02004103 kvm_put_kvm(stat_data->kvm);
4104 return -ENOMEM;
4105 }
4106
4107 return 0;
4108}
4109
4110static int kvm_debugfs_release(struct inode *inode, struct file *file)
4111{
4112 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
4113 inode->i_private;
4114
4115 simple_attr_release(inode, file);
4116 kvm_put_kvm(stat_data->kvm);
4117
4118 return 0;
4119}
4120
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004121static int kvm_get_stat_per_vm(struct kvm *kvm, size_t offset, u64 *val)
Janosch Frank536a6f82016-05-18 13:26:23 +02004122{
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004123 *val = *(ulong *)((void *)kvm + offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02004124
4125 return 0;
4126}
4127
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004128static int kvm_clear_stat_per_vm(struct kvm *kvm, size_t offset)
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004129{
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004130 *(ulong *)((void *)kvm + offset) = 0;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004131
4132 return 0;
4133}
4134
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004135static int kvm_get_stat_per_vcpu(struct kvm *kvm, size_t offset, u64 *val)
Janosch Frank536a6f82016-05-18 13:26:23 +02004136{
4137 int i;
Janosch Frank536a6f82016-05-18 13:26:23 +02004138 struct kvm_vcpu *vcpu;
4139
4140 *val = 0;
4141
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004142 kvm_for_each_vcpu(i, vcpu, kvm)
4143 *val += *(u64 *)((void *)vcpu + offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02004144
4145 return 0;
4146}
4147
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004148static int kvm_clear_stat_per_vcpu(struct kvm *kvm, size_t offset)
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004149{
4150 int i;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004151 struct kvm_vcpu *vcpu;
4152
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004153 kvm_for_each_vcpu(i, vcpu, kvm)
4154 *(u64 *)((void *)vcpu + offset) = 0;
4155
4156 return 0;
4157}
4158
4159static int kvm_stat_data_get(void *data, u64 *val)
4160{
4161 int r = -EFAULT;
4162 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
4163
4164 switch (stat_data->dbgfs_item->kind) {
4165 case KVM_STAT_VM:
4166 r = kvm_get_stat_per_vm(stat_data->kvm,
4167 stat_data->dbgfs_item->offset, val);
4168 break;
4169 case KVM_STAT_VCPU:
4170 r = kvm_get_stat_per_vcpu(stat_data->kvm,
4171 stat_data->dbgfs_item->offset, val);
4172 break;
4173 }
4174
4175 return r;
4176}
4177
4178static int kvm_stat_data_clear(void *data, u64 val)
4179{
4180 int r = -EFAULT;
4181 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
4182
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004183 if (val)
4184 return -EINVAL;
4185
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004186 switch (stat_data->dbgfs_item->kind) {
4187 case KVM_STAT_VM:
4188 r = kvm_clear_stat_per_vm(stat_data->kvm,
4189 stat_data->dbgfs_item->offset);
4190 break;
4191 case KVM_STAT_VCPU:
4192 r = kvm_clear_stat_per_vcpu(stat_data->kvm,
4193 stat_data->dbgfs_item->offset);
4194 break;
4195 }
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004196
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004197 return r;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004198}
4199
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004200static int kvm_stat_data_open(struct inode *inode, struct file *file)
Janosch Frank536a6f82016-05-18 13:26:23 +02004201{
4202 __simple_attr_check_format("%llu\n", 0ull);
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004203 return kvm_debugfs_open(inode, file, kvm_stat_data_get,
4204 kvm_stat_data_clear, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02004205}
4206
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004207static const struct file_operations stat_fops_per_vm = {
4208 .owner = THIS_MODULE,
4209 .open = kvm_stat_data_open,
Janosch Frank536a6f82016-05-18 13:26:23 +02004210 .release = kvm_debugfs_release,
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004211 .read = simple_attr_read,
4212 .write = simple_attr_write,
4213 .llseek = no_llseek,
Janosch Frank536a6f82016-05-18 13:26:23 +02004214};
4215
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004216static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02004217{
4218 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02004219 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02004220 u64 tmp_val;
Avi Kivityba1389b2007-11-18 16:24:12 +02004221
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004222 *val = 0;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004223 mutex_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02004224 list_for_each_entry(kvm, &vm_list, vm_list) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004225 kvm_get_stat_per_vm(kvm, offset, &tmp_val);
Janosch Frank536a6f82016-05-18 13:26:23 +02004226 *val += tmp_val;
4227 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004228 mutex_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004229 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02004230}
4231
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004232static int vm_stat_clear(void *_offset, u64 val)
4233{
4234 unsigned offset = (long)_offset;
4235 struct kvm *kvm;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004236
4237 if (val)
4238 return -EINVAL;
4239
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004240 mutex_lock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004241 list_for_each_entry(kvm, &vm_list, vm_list) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004242 kvm_clear_stat_per_vm(kvm, offset);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004243 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004244 mutex_unlock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004245
4246 return 0;
4247}
4248
4249DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02004250
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004251static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03004252{
4253 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004254 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02004255 u64 tmp_val;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004256
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004257 *val = 0;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004258 mutex_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02004259 list_for_each_entry(kvm, &vm_list, vm_list) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004260 kvm_get_stat_per_vcpu(kvm, offset, &tmp_val);
Janosch Frank536a6f82016-05-18 13:26:23 +02004261 *val += tmp_val;
4262 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004263 mutex_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08004264 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03004265}
4266
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004267static int vcpu_stat_clear(void *_offset, u64 val)
4268{
4269 unsigned offset = (long)_offset;
4270 struct kvm *kvm;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004271
4272 if (val)
4273 return -EINVAL;
4274
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004275 mutex_lock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004276 list_for_each_entry(kvm, &vm_list, vm_list) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004277 kvm_clear_stat_per_vcpu(kvm, offset);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004278 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004279 mutex_unlock(&kvm_lock);
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11004280
4281 return 0;
4282}
4283
4284DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
4285 "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02004286
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004287static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02004288 [KVM_STAT_VCPU] = &vcpu_stat_fops,
4289 [KVM_STAT_VM] = &vm_stat_fops,
4290};
Avi Kivity1165f5f2007-04-19 17:27:43 +03004291
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004292static void kvm_uevent_notify_change(unsigned int type, struct kvm *kvm)
4293{
4294 struct kobj_uevent_env *env;
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004295 unsigned long long created, active;
4296
4297 if (!kvm_dev.this_device || !kvm)
4298 return;
4299
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004300 mutex_lock(&kvm_lock);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004301 if (type == KVM_EVENT_CREATE_VM) {
4302 kvm_createvm_count++;
4303 kvm_active_vms++;
4304 } else if (type == KVM_EVENT_DESTROY_VM) {
4305 kvm_active_vms--;
4306 }
4307 created = kvm_createvm_count;
4308 active = kvm_active_vms;
Junaid Shahid0d9ce162019-01-03 17:14:28 -08004309 mutex_unlock(&kvm_lock);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004310
Ben Gardonb12ce362019-02-11 11:02:49 -08004311 env = kzalloc(sizeof(*env), GFP_KERNEL_ACCOUNT);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004312 if (!env)
4313 return;
4314
4315 add_uevent_var(env, "CREATED=%llu", created);
4316 add_uevent_var(env, "COUNT=%llu", active);
4317
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004318 if (type == KVM_EVENT_CREATE_VM) {
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004319 add_uevent_var(env, "EVENT=create");
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004320 kvm->userspace_pid = task_pid_nr(current);
4321 } else if (type == KVM_EVENT_DESTROY_VM) {
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004322 add_uevent_var(env, "EVENT=destroy");
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004323 }
4324 add_uevent_var(env, "PID=%d", kvm->userspace_pid);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004325
Greg Kroah-Hartman8ed05792019-02-28 16:34:37 +01004326 if (!IS_ERR_OR_NULL(kvm->debugfs_dentry)) {
Ben Gardonb12ce362019-02-11 11:02:49 -08004327 char *tmp, *p = kmalloc(PATH_MAX, GFP_KERNEL_ACCOUNT);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004328
Claudio Imbrendafdeaf7e2017-07-24 13:40:03 +02004329 if (p) {
4330 tmp = dentry_path_raw(kvm->debugfs_dentry, p, PATH_MAX);
4331 if (!IS_ERR(tmp))
4332 add_uevent_var(env, "STATS_PATH=%s", tmp);
4333 kfree(p);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004334 }
4335 }
4336 /* no need for checks, since we are adding at most only 5 keys */
4337 env->envp[env->envp_idx++] = NULL;
4338 kobject_uevent_env(&kvm_dev.this_device->kobj, KOBJ_CHANGE, env->envp);
4339 kfree(env);
Claudio Imbrenda286de8f2017-07-12 17:56:44 +02004340}
4341
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004342static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004343{
4344 struct kvm_stats_debugfs_item *p;
4345
Hollis Blanchard76f7c872008-04-15 16:05:42 -05004346 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08004347
Janosch Frank536a6f82016-05-18 13:26:23 +02004348 kvm_debugfs_num_entries = 0;
4349 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
Milan Pandurov09cbcef2019-12-13 14:07:21 +01004350 debugfs_create_file(p->name, KVM_DBGFS_GET_MODE(p),
4351 kvm_debugfs_dir, (void *)(long)p->offset,
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004352 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08004353 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004354}
4355
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004356static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08004357{
Alexander Graf10474ae2009-09-15 11:37:46 +02004358 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004359 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08004360 return 0;
4361}
4362
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004363static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08004364{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10004365 if (kvm_usage_count) {
Wanpeng Li2eb06c32019-05-17 16:49:49 +08004366#ifdef CONFIG_LOCKDEP
4367 WARN_ON(lockdep_is_held(&kvm_count_lock));
4368#endif
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004369 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10004370 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08004371}
4372
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004373static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08004374 .suspend = kvm_suspend,
4375 .resume = kvm_resume,
4376};
4377
Avi Kivity15ad7142007-07-11 18:17:21 +03004378static inline
4379struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
4380{
4381 return container_of(pn, struct kvm_vcpu, preempt_notifier);
4382}
4383
4384static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
4385{
4386 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08004387
Wanpeng Li046ddee2019-08-01 11:30:14 +08004388 WRITE_ONCE(vcpu->preempted, false);
Wanpeng Lid73eb572019-07-18 19:39:06 +08004389 WRITE_ONCE(vcpu->ready, false);
Avi Kivity15ad7142007-07-11 18:17:21 +03004390
Paolo Bonzini7495e222020-01-09 09:57:19 -05004391 __this_cpu_write(kvm_running_vcpu, vcpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02004392 kvm_arch_sched_in(vcpu, cpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004393 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03004394}
4395
4396static void kvm_sched_out(struct preempt_notifier *pn,
4397 struct task_struct *next)
4398{
4399 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
4400
Wanpeng Lid73eb572019-07-18 19:39:06 +08004401 if (current->state == TASK_RUNNING) {
Wanpeng Li046ddee2019-08-01 11:30:14 +08004402 WRITE_ONCE(vcpu->preempted, true);
Wanpeng Lid73eb572019-07-18 19:39:06 +08004403 WRITE_ONCE(vcpu->ready, true);
4404 }
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004405 kvm_arch_vcpu_put(vcpu);
Paolo Bonzini7495e222020-01-09 09:57:19 -05004406 __this_cpu_write(kvm_running_vcpu, NULL);
4407}
4408
4409/**
4410 * kvm_get_running_vcpu - get the vcpu running on the current CPU.
4411 * Thanks to preempt notifiers, this can also be called from
4412 * preemptible context.
4413 */
4414struct kvm_vcpu *kvm_get_running_vcpu(void)
4415{
4416 return __this_cpu_read(kvm_running_vcpu);
4417}
4418
4419/**
4420 * kvm_get_running_vcpus - get the per-CPU array of currently running vcpus.
4421 */
4422struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
4423{
4424 return &kvm_running_vcpu;
Avi Kivity15ad7142007-07-11 18:17:21 +03004425}
4426
Sean Christophersonf257d6d2019-04-19 22:18:17 -07004427static void check_processor_compat(void *rtn)
4428{
4429 *(int *)rtn = kvm_arch_check_processor_compat();
4430}
4431
Avi Kivity0ee75be2010-04-28 15:39:01 +03004432int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10004433 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004434{
4435 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004436 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004437
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004438 r = kvm_arch_init(opaque);
4439 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08004440 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004441
Asias He7dac16c2013-05-08 10:57:29 +08004442 /*
4443 * kvm_arch_init makes sure there's at most one caller
4444 * for architectures that support multiple implementations,
4445 * like intel and amd on x86.
Paolo Bonzini36343f62016-10-26 13:35:56 +02004446 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
4447 * conflicts in case kvm is already setup for another implementation.
Asias He7dac16c2013-05-08 10:57:29 +08004448 */
Paolo Bonzini36343f62016-10-26 13:35:56 +02004449 r = kvm_irqfd_init();
4450 if (r)
4451 goto out_irqfd;
Asias He7dac16c2013-05-08 10:57:29 +08004452
Avi Kivity8437a6172009-06-06 14:52:35 -07004453 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10304454 r = -ENOMEM;
4455 goto out_free_0;
4456 }
4457
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004458 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004459 if (r < 0)
Miaohe Linfaf0be22019-11-23 10:45:50 +08004460 goto out_free_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004461
Yang, Sheng002c7f72007-07-31 14:23:01 +03004462 for_each_online_cpu(cpu) {
Sean Christophersonf257d6d2019-04-19 22:18:17 -07004463 smp_call_function_single(cpu, check_processor_compat, &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03004464 if (r < 0)
Miaohe Linfaf0be22019-11-23 10:45:50 +08004465 goto out_free_2;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004466 }
4467
Thomas Gleixner73c1b412016-12-21 20:19:54 +01004468 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004469 kvm_starting_cpu, kvm_dying_cpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08004470 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08004471 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004472 register_reboot_notifier(&kvm_reboot_notifier);
4473
Rusty Russellc16f8622007-07-30 21:12:19 +10004474 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03004475 if (!vcpu_align)
4476 vcpu_align = __alignof__(struct kvm_vcpu);
Paolo Bonzini46515732017-10-26 15:45:46 +02004477 kvm_vcpu_cache =
4478 kmem_cache_create_usercopy("kvm_vcpu", vcpu_size, vcpu_align,
4479 SLAB_ACCOUNT,
4480 offsetof(struct kvm_vcpu, arch),
4481 sizeof_field(struct kvm_vcpu, arch),
4482 NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10004483 if (!kvm_vcpu_cache) {
4484 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004485 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10004486 }
4487
Gleb Natapovaf585b92010-10-14 11:22:46 +02004488 r = kvm_async_pf_init();
4489 if (r)
4490 goto out_free;
4491
Avi Kivity6aa8b732006-12-10 02:21:36 -08004492 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01004493 kvm_vm_fops.owner = module;
4494 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004495
4496 r = misc_register(&kvm_dev);
4497 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08004498 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02004499 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004500 }
4501
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004502 register_syscore_ops(&kvm_syscore_ops);
4503
Avi Kivity15ad7142007-07-11 18:17:21 +03004504 kvm_preempt_ops.sched_in = kvm_sched_in;
4505 kvm_preempt_ops.sched_out = kvm_sched_out;
4506
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004507 kvm_init_debug();
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07004508
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02004509 r = kvm_vfio_ops_init();
4510 WARN_ON(r);
4511
Avi Kivityc7addb92007-09-16 18:58:32 +02004512 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004513
Gleb Natapovaf585b92010-10-14 11:22:46 +02004514out_unreg:
4515 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004516out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10004517 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004518out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004519 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004520 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004521out_free_2:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004522 kvm_arch_hardware_unsetup();
Miaohe Linfaf0be22019-11-23 10:45:50 +08004523out_free_1:
Rusty Russell7f59f492008-12-07 21:25:45 +10304524 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004525out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004526 kvm_irqfd_exit();
Paolo Bonzini36343f62016-10-26 13:35:56 +02004527out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08004528 kvm_arch_exit();
4529out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004530 return r;
4531}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004532EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004533
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004534void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004535{
Janosch Frank4bd33b52015-10-14 12:37:35 +02004536 debugfs_remove_recursive(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004537 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10004538 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004539 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004540 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004541 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004542 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004543 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004544 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004545 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004546 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10304547 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08004548 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004549}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004550EXPORT_SYMBOL_GPL(kvm_exit);
Junaid Shahidc57c8042019-11-04 12:22:02 +01004551
4552struct kvm_vm_worker_thread_context {
4553 struct kvm *kvm;
4554 struct task_struct *parent;
4555 struct completion init_done;
4556 kvm_vm_thread_fn_t thread_fn;
4557 uintptr_t data;
4558 int err;
4559};
4560
4561static int kvm_vm_worker_thread(void *context)
4562{
4563 /*
4564 * The init_context is allocated on the stack of the parent thread, so
4565 * we have to locally copy anything that is needed beyond initialization
4566 */
4567 struct kvm_vm_worker_thread_context *init_context = context;
4568 struct kvm *kvm = init_context->kvm;
4569 kvm_vm_thread_fn_t thread_fn = init_context->thread_fn;
4570 uintptr_t data = init_context->data;
4571 int err;
4572
4573 err = kthread_park(current);
4574 /* kthread_park(current) is never supposed to return an error */
4575 WARN_ON(err != 0);
4576 if (err)
4577 goto init_complete;
4578
4579 err = cgroup_attach_task_all(init_context->parent, current);
4580 if (err) {
4581 kvm_err("%s: cgroup_attach_task_all failed with err %d\n",
4582 __func__, err);
4583 goto init_complete;
4584 }
4585
4586 set_user_nice(current, task_nice(init_context->parent));
4587
4588init_complete:
4589 init_context->err = err;
4590 complete(&init_context->init_done);
4591 init_context = NULL;
4592
4593 if (err)
4594 return err;
4595
4596 /* Wait to be woken up by the spawner before proceeding. */
4597 kthread_parkme();
4598
4599 if (!kthread_should_stop())
4600 err = thread_fn(kvm, data);
4601
4602 return err;
4603}
4604
4605int kvm_vm_create_worker_thread(struct kvm *kvm, kvm_vm_thread_fn_t thread_fn,
4606 uintptr_t data, const char *name,
4607 struct task_struct **thread_ptr)
4608{
4609 struct kvm_vm_worker_thread_context init_context = {};
4610 struct task_struct *thread;
4611
4612 *thread_ptr = NULL;
4613 init_context.kvm = kvm;
4614 init_context.parent = current;
4615 init_context.thread_fn = thread_fn;
4616 init_context.data = data;
4617 init_completion(&init_context.init_done);
4618
4619 thread = kthread_run(kvm_vm_worker_thread, &init_context,
4620 "%s-%d", name, task_pid_nr(current));
4621 if (IS_ERR(thread))
4622 return PTR_ERR(thread);
4623
4624 /* kthread_run is never supposed to return NULL */
4625 WARN_ON(thread == NULL);
4626
4627 wait_for_completion(&init_context.init_done);
4628
4629 if (!init_context.err)
4630 *thread_ptr = thread;
4631
4632 return init_context.err;
4633}