blob: 422f803fa3659603bebec2a6af7deb7d7124d34d [file] [log] [blame]
Carsten Otte043405e2007-10-10 17:16:19 +02001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * derived from drivers/kvm/kvm_main.c
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03007 * Copyright (C) 2008 Qumranet, Inc.
8 * Copyright IBM Corporation, 2008
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Carsten Otte043405e2007-10-10 17:16:19 +020010 *
11 * Authors:
12 * Avi Kivity <avi@qumranet.com>
13 * Yaniv Kamay <yaniv@qumranet.com>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030014 * Amit Shah <amit.shah@qumranet.com>
15 * Ben-Ami Yassour <benami@il.ibm.com>
Carsten Otte043405e2007-10-10 17:16:19 +020016 *
17 * This work is licensed under the terms of the GNU GPL, version 2. See
18 * the COPYING file in the top-level directory.
19 *
20 */
21
Avi Kivityedf88412007-12-16 11:02:48 +020022#include <linux/kvm_host.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020023#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080024#include "mmu.h"
Sheng Yang78376992008-01-28 05:10:22 +080025#include "i8254.h"
Izik Eidus37817f22008-03-24 23:14:53 +020026#include "tss.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030027#include "kvm_cache_regs.h"
Avi Kivity26eef702008-07-03 14:59:22 +030028#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020029#include "cpuid.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020030#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030031#include "hyperv.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020032
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020033#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030034#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020035#include <linux/kvm.h>
36#include <linux/fs.h>
37#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040038#include <linux/export.h>
39#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080040#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050041#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010042#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030043#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010044#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030045#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020046#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080048#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080049#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020050#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020051#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020052#include <linux/timekeeper_internal.h>
53#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080054#include <linux/kvm_irqfd.h>
55#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010056#include <linux/sched/stat.h>
57
Avi Kivityaec51dc2009-07-01 16:01:02 +030058#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080059
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020060#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080061#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020062#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080063#include <asm/mce.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020064#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020065#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100066#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030067#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080068#include <asm/irq_remapping.h>
Carsten Otte043405e2007-10-10 17:16:19 +020069
Dave Hansend1898b72016-06-01 10:42:20 -070070#define CREATE_TRACE_POINTS
71#include "trace.h"
72
Carsten Otte313a3dc2007-10-11 19:16:52 +020073#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080074#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080075u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
76EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080077
Avi Kivity0f65dd72011-04-20 13:37:53 +030078#define emul_to_vcpu(ctxt) \
79 container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt)
80
Joerg Roedel50a37eb2008-01-31 14:57:38 +010081/* EFER defaults:
82 * - enable syscall per default because its emulated by KVM
83 * - enable LME and LMA per default on 64 bit KVM
84 */
85#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080086static
87u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010088#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080089static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010090#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020091
Avi Kivityba1389b2007-11-18 16:24:12 +020092#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
93#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050094
Radim Krčmářc5192652016-07-12 22:09:28 +020095#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
96 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +020097
Gleb Natapovcb142eb2009-08-09 15:17:40 +030098static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +030099static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200100static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100101static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Avi Kivity674eea02008-02-11 18:37:23 +0200102
Paolo Bonzini893590c2015-11-06 11:46:24 +0100103struct kvm_x86_ops *kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300104EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800105
Paolo Bonzini893590c2015-11-06 11:46:24 +0100106static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030107module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200108
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200109unsigned int min_timer_period_us = 500;
110module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
111
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300112static bool __read_mostly kvmclock_periodic_sync = true;
113module_param(kvmclock_periodic_sync, bool, S_IRUGO);
114
Paolo Bonzini893590c2015-11-06 11:46:24 +0100115bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100116EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100117u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100118EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800119u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
120EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
121u64 __read_mostly kvm_max_tsc_scaling_ratio;
122EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700123u64 __read_mostly kvm_default_tsc_scaling_ratio;
124EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100125
Zachary Amsdencc578282012-02-03 15:43:50 -0200126/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100127static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200128module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
129
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500130/* lapic timer advance (tscdeadline mode only) in nanoseconds */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100131unsigned int __read_mostly lapic_timer_advance_ns = 0;
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500132module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR);
133
Feng Wu520040142016-01-25 16:53:33 +0800134static bool __read_mostly vector_hashing = true;
135module_param(vector_hashing, bool, S_IRUGO);
136
Paolo Bonzini893590c2015-11-06 11:46:24 +0100137static bool __read_mostly backwards_tsc_observed = false;
Marcelo Tosatti16a96022014-05-14 12:43:24 -0300138
Avi Kivity18863bd2009-09-07 11:12:18 +0300139#define KVM_NR_SHARED_MSRS 16
140
141struct kvm_shared_msrs_global {
142 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800143 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300144};
145
146struct kvm_shared_msrs {
147 struct user_return_notifier urn;
148 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800149 struct kvm_shared_msr_values {
150 u64 host;
151 u64 curr;
152 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300153};
154
155static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200156static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300157
Hollis Blanchard417bc302007-10-31 17:24:23 -0500158struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200159 { "pf_fixed", VCPU_STAT(pf_fixed) },
160 { "pf_guest", VCPU_STAT(pf_guest) },
161 { "tlb_flush", VCPU_STAT(tlb_flush) },
162 { "invlpg", VCPU_STAT(invlpg) },
163 { "exits", VCPU_STAT(exits) },
164 { "io_exits", VCPU_STAT(io_exits) },
165 { "mmio_exits", VCPU_STAT(mmio_exits) },
166 { "signal_exits", VCPU_STAT(signal_exits) },
167 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800168 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200169 { "halt_exits", VCPU_STAT(halt_exits) },
Paolo Bonzinif7819512015-02-04 18:20:58 +0100170 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +0200171 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200172 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200173 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530174 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200175 { "request_irq", VCPU_STAT(request_irq_exits) },
176 { "irq_exits", VCPU_STAT(irq_exits) },
177 { "host_state_reload", VCPU_STAT(host_state_reload) },
178 { "efer_reload", VCPU_STAT(efer_reload) },
179 { "fpu_reload", VCPU_STAT(fpu_reload) },
180 { "insn_emulation", VCPU_STAT(insn_emulation) },
181 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300182 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200183 { "nmi_injections", VCPU_STAT(nmi_injections) },
Paolo Bonzini0f1e2612016-12-17 16:05:19 +0100184 { "req_event", VCPU_STAT(req_event) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200185 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
186 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
187 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
188 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
189 { "mmu_flooded", VM_STAT(mmu_flooded) },
190 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200191 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300192 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200193 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300194 { "largepages", VM_STAT(lpages) },
David Matlackf3414bc2016-12-20 15:25:57 -0800195 { "max_mmu_page_hash_collisions",
196 VM_STAT(max_mmu_page_hash_collisions) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500197 { NULL }
198};
199
Dexuan Cui2acf9232010-06-10 11:27:12 +0800200u64 __read_mostly host_xcr0;
201
Jan Kiszkab6785de2012-09-20 07:43:17 +0200202static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300203
Gleb Natapovaf585b92010-10-14 11:22:46 +0200204static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
205{
206 int i;
207 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
208 vcpu->arch.apf.gfns[i] = ~0;
209}
210
Avi Kivity18863bd2009-09-07 11:12:18 +0300211static void kvm_on_user_return(struct user_return_notifier *urn)
212{
213 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300214 struct kvm_shared_msrs *locals
215 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800216 struct kvm_shared_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700217 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300218
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700219 /*
220 * Disabling irqs at this point since the following code could be
221 * interrupted and executed through kvm_arch_hardware_disable()
222 */
223 local_irq_save(flags);
224 if (locals->registered) {
225 locals->registered = false;
226 user_return_notifier_unregister(urn);
227 }
228 local_irq_restore(flags);
Avi Kivity18863bd2009-09-07 11:12:18 +0300229 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800230 values = &locals->values[slot];
231 if (values->host != values->curr) {
232 wrmsrl(shared_msrs_global.msrs[slot], values->host);
233 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300234 }
235 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300236}
237
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800238static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300239{
Avi Kivity18863bd2009-09-07 11:12:18 +0300240 u64 value;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200241 unsigned int cpu = smp_processor_id();
242 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300243
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800244 /* only read, and nobody should modify it at this time,
245 * so don't need lock */
246 if (slot >= shared_msrs_global.nr) {
247 printk(KERN_ERR "kvm: invalid MSR slot!");
248 return;
249 }
250 rdmsrl_safe(msr, &value);
251 smsr->values[slot].host = value;
252 smsr->values[slot].curr = value;
253}
254
255void kvm_define_shared_msr(unsigned slot, u32 msr)
256{
Nadav Amit0123be42014-07-24 15:06:56 +0300257 BUG_ON(slot >= KVM_NR_SHARED_MSRS);
Paolo Bonzinic847fe82015-07-29 11:06:34 +0200258 shared_msrs_global.msrs[slot] = msr;
Avi Kivity18863bd2009-09-07 11:12:18 +0300259 if (slot >= shared_msrs_global.nr)
260 shared_msrs_global.nr = slot + 1;
Avi Kivity18863bd2009-09-07 11:12:18 +0300261}
262EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
263
264static void kvm_shared_msr_cpu_online(void)
265{
266 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300267
268 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800269 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300270}
271
Andy Honig8b3c3102014-08-27 11:16:44 -0700272int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300273{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200274 unsigned int cpu = smp_processor_id();
275 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700276 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300277
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800278 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Andy Honig8b3c3102014-08-27 11:16:44 -0700279 return 0;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800280 smsr->values[slot].curr = value;
Andy Honig8b3c3102014-08-27 11:16:44 -0700281 err = wrmsrl_safe(shared_msrs_global.msrs[slot], value);
282 if (err)
283 return 1;
284
Avi Kivity18863bd2009-09-07 11:12:18 +0300285 if (!smsr->registered) {
286 smsr->urn.on_user_return = kvm_on_user_return;
287 user_return_notifier_register(&smsr->urn);
288 smsr->registered = true;
289 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700290 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300291}
292EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
293
Radim Krčmář13a34e02014-08-28 15:13:03 +0200294static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200295{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200296 unsigned int cpu = smp_processor_id();
297 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200298
299 if (smsr->registered)
300 kvm_on_user_return(&smsr->urn);
301}
302
Carsten Otte6866b832007-10-29 16:09:10 +0100303u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
304{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300305 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100306}
307EXPORT_SYMBOL_GPL(kvm_get_apic_base);
308
Jan Kiszka58cb6282014-01-24 16:48:44 +0100309int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100310{
Jan Kiszka58cb6282014-01-24 16:48:44 +0100311 u64 old_state = vcpu->arch.apic_base &
312 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
313 u64 new_state = msr_info->data &
314 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
315 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) |
316 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE);
317
318 if (!msr_info->host_initiated &&
319 ((msr_info->data & reserved_bits) != 0 ||
320 new_state == X2APIC_ENABLE ||
321 (new_state == MSR_IA32_APICBASE_ENABLE &&
322 old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) ||
323 (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) &&
324 old_state == 0)))
325 return 1;
326
327 kvm_lapic_set_base(vcpu, msr_info->data);
328 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100329}
330EXPORT_SYMBOL_GPL(kvm_set_apic_base);
331
Andi Kleen2605fc22014-05-02 00:44:37 +0200332asmlinkage __visible void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000333{
334 /* Fault while not rebooting. We want the trace. */
335 BUG();
336}
337EXPORT_SYMBOL_GPL(kvm_spurious_fault);
338
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200339#define EXCPT_BENIGN 0
340#define EXCPT_CONTRIBUTORY 1
341#define EXCPT_PF 2
342
343static int exception_class(int vector)
344{
345 switch (vector) {
346 case PF_VECTOR:
347 return EXCPT_PF;
348 case DE_VECTOR:
349 case TS_VECTOR:
350 case NP_VECTOR:
351 case SS_VECTOR:
352 case GP_VECTOR:
353 return EXCPT_CONTRIBUTORY;
354 default:
355 break;
356 }
357 return EXCPT_BENIGN;
358}
359
Nadav Amitd6e8c852014-07-24 14:51:24 +0300360#define EXCPT_FAULT 0
361#define EXCPT_TRAP 1
362#define EXCPT_ABORT 2
363#define EXCPT_INTERRUPT 3
364
365static int exception_type(int vector)
366{
367 unsigned int mask;
368
369 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
370 return EXCPT_INTERRUPT;
371
372 mask = 1 << vector;
373
374 /* #DB is trap, as instruction watchpoints are handled elsewhere */
375 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
376 return EXCPT_TRAP;
377
378 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
379 return EXCPT_ABORT;
380
381 /* Reserved exceptions will result in fault */
382 return EXCPT_FAULT;
383}
384
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200385static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200386 unsigned nr, bool has_error, u32 error_code,
387 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200388{
389 u32 prev_nr;
390 int class1, class2;
391
Avi Kivity3842d132010-07-27 12:30:24 +0300392 kvm_make_request(KVM_REQ_EVENT, vcpu);
393
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200394 if (!vcpu->arch.exception.pending) {
395 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200396 if (has_error && !is_protmode(vcpu))
397 has_error = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200398 vcpu->arch.exception.pending = true;
399 vcpu->arch.exception.has_error_code = has_error;
400 vcpu->arch.exception.nr = nr;
401 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200402 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200403 return;
404 }
405
406 /* to check exception */
407 prev_nr = vcpu->arch.exception.nr;
408 if (prev_nr == DF_VECTOR) {
409 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300410 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200411 return;
412 }
413 class1 = exception_class(prev_nr);
414 class2 = exception_class(nr);
415 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
416 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
417 /* generate double fault per SDM Table 5-5 */
418 vcpu->arch.exception.pending = true;
419 vcpu->arch.exception.has_error_code = true;
420 vcpu->arch.exception.nr = DF_VECTOR;
421 vcpu->arch.exception.error_code = 0;
422 } else
423 /* replace previous exception with a new one in a hope
424 that instruction re-execution will regenerate lost
425 exception */
426 goto queue;
427}
428
Avi Kivity298101d2007-11-25 13:41:11 +0200429void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
430{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200431 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200432}
433EXPORT_SYMBOL_GPL(kvm_queue_exception);
434
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200435void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
436{
437 kvm_multiple_exception(vcpu, nr, false, 0, true);
438}
439EXPORT_SYMBOL_GPL(kvm_requeue_exception);
440
Kyle Huey6affcbe2016-11-29 12:40:40 -0800441int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200442{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100443 if (err)
444 kvm_inject_gp(vcpu, 0);
445 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800446 return kvm_skip_emulated_instruction(vcpu);
447
448 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100449}
450EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200451
Avi Kivity6389ee92010-11-29 16:12:30 +0200452void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200453{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200454 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200455 vcpu->arch.cr2 = fault->address;
456 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200457}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300458EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200459
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200460static bool kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200461{
Avi Kivity6389ee92010-11-29 16:12:30 +0200462 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
463 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200464 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200465 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200466
467 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200468}
469
Sheng Yang3419ffc2008-05-15 09:52:48 +0800470void kvm_inject_nmi(struct kvm_vcpu *vcpu)
471{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300472 atomic_inc(&vcpu->arch.nmi_queued);
473 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800474}
475EXPORT_SYMBOL_GPL(kvm_inject_nmi);
476
Avi Kivity298101d2007-11-25 13:41:11 +0200477void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
478{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200479 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200480}
481EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
482
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200483void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
484{
485 kvm_multiple_exception(vcpu, nr, true, error_code, true);
486}
487EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
488
Carsten Ottea03490e2007-10-29 16:09:35 +0100489/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300490 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
491 * a #GP and return false.
492 */
493bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200494{
Avi Kivity0a79b002009-09-01 12:03:25 +0300495 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
496 return true;
497 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
498 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100499}
Avi Kivity0a79b002009-09-01 12:03:25 +0300500EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100501
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300502bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
503{
504 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
505 return true;
506
507 kvm_queue_exception(vcpu, UD_VECTOR);
508 return false;
509}
510EXPORT_SYMBOL_GPL(kvm_require_dr);
511
Carsten Ottea03490e2007-10-29 16:09:35 +0100512/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200513 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200514 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200515 * can read from guest physical or from the guest's guest physical memory.
516 */
517int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
518 gfn_t ngfn, void *data, int offset, int len,
519 u32 access)
520{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200521 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200522 gfn_t real_gfn;
523 gpa_t ngpa;
524
525 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200526 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200527 if (real_gfn == UNMAPPED_GVA)
528 return -EFAULT;
529
530 real_gfn = gpa_to_gfn(real_gfn);
531
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200532 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200533}
534EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
535
Fengguang Wu69b00492015-01-19 22:33:39 +0800536static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200537 void *data, int offset, int len, u32 access)
538{
539 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
540 data, offset, len, access);
541}
542
Joerg Roedelec92fe42010-09-10 17:30:51 +0200543/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100544 * Load the pae pdptrs. Return true is they are all valid.
545 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200546int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100547{
548 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
549 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
550 int i;
551 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200552 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100553
Joerg Roedelff03a072010-09-10 17:30:57 +0200554 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
555 offset * sizeof(u64), sizeof(pdpte),
556 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100557 if (ret < 0) {
558 ret = 0;
559 goto out;
560 }
561 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400562 if ((pdpte[i] & PT_PRESENT_MASK) &&
Xiao Guangronga0a64f52015-08-05 12:04:21 +0800563 (pdpte[i] &
564 vcpu->arch.mmu.guest_rsvd_check.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100565 ret = 0;
566 goto out;
567 }
568 }
569 ret = 1;
570
Joerg Roedelff03a072010-09-10 17:30:57 +0200571 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300572 __set_bit(VCPU_EXREG_PDPTR,
573 (unsigned long *)&vcpu->arch.regs_avail);
574 __set_bit(VCPU_EXREG_PDPTR,
575 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100576out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100577
578 return ret;
579}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100580EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100581
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100582bool pdptrs_changed(struct kvm_vcpu *vcpu)
Avi Kivityd835dfe2007-11-21 02:57:59 +0200583{
Joerg Roedelff03a072010-09-10 17:30:57 +0200584 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200585 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200586 int offset;
587 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200588 int r;
589
590 if (is_long_mode(vcpu) || !is_pae(vcpu))
591 return false;
592
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300593 if (!test_bit(VCPU_EXREG_PDPTR,
594 (unsigned long *)&vcpu->arch.regs_avail))
595 return true;
596
Avi Kivity9f8fe502010-12-05 17:30:00 +0200597 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
598 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200599 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
600 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200601 if (r < 0)
602 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200603 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200604out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200605
606 return changed;
607}
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100608EXPORT_SYMBOL_GPL(pdptrs_changed);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200609
Avi Kivity49a9b072010-06-10 17:02:14 +0300610int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100611{
Sheng Yangaad82702010-05-12 16:40:42 +0800612 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800613 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800614
Avi Kivityf9a48e62010-01-06 19:10:22 +0200615 cr0 |= X86_CR0_ET;
616
Gleb Natapovab344822010-01-21 15:28:46 +0200617#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300618 if (cr0 & 0xffffffff00000000UL)
619 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200620#endif
621
622 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100623
Gleb Natapov0f122442010-04-28 19:15:31 +0300624 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
625 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100626
Gleb Natapov0f122442010-04-28 19:15:31 +0300627 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
628 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100629
630 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
631#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200632 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100633 int cs_db, cs_l;
634
Gleb Natapov0f122442010-04-28 19:15:31 +0300635 if (!is_pae(vcpu))
636 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100637 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300638 if (cs_l)
639 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100640 } else
641#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200642 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200643 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300644 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100645 }
646
Mao, Junjiead756a12012-07-02 01:18:48 +0000647 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
648 return 1;
649
Carsten Ottea03490e2007-10-29 16:09:35 +0100650 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100651
Lai Jiangshand170c412011-02-21 11:21:30 +0800652 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800653 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800654 kvm_async_pf_hash_reset(vcpu);
655 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800656
Sheng Yangaad82702010-05-12 16:40:42 +0800657 if ((cr0 ^ old_cr0) & update_bits)
658 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800659
Laszlo Ersek879ae182015-11-04 12:54:41 +0100660 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
661 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
662 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800663 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
664
Gleb Natapov0f122442010-04-28 19:15:31 +0300665 return 0;
666}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200667EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100668
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200669void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100670{
Avi Kivity49a9b072010-06-10 17:02:14 +0300671 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100672}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200673EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100674
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300675static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
676{
677 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
678 !vcpu->guest_xcr0_loaded) {
679 /* kvm_set_xcr() also depends on this */
680 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
681 vcpu->guest_xcr0_loaded = 1;
682 }
683}
684
685static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
686{
687 if (vcpu->guest_xcr0_loaded) {
688 if (vcpu->arch.xcr0 != host_xcr0)
689 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
690 vcpu->guest_xcr0_loaded = 0;
691 }
692}
693
Fengguang Wu69b00492015-01-19 22:33:39 +0800694static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800695{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000696 u64 xcr0 = xcr;
697 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200698 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800699
700 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
701 if (index != XCR_XFEATURE_ENABLED_MASK)
702 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700703 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800704 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700705 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800706 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200707
708 /*
709 * Do not allow the guest to set bits that we do not support
710 * saving. However, xcr0 bit 0 is always set, even if the
711 * emulated CPU does not support XSAVE (see fx_init).
712 */
Dave Hansend91cab72015-09-02 16:31:26 -0700713 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200714 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800715 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200716
Dave Hansend91cab72015-09-02 16:31:26 -0700717 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
718 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000719 return 1;
720
Dave Hansend91cab72015-09-02 16:31:26 -0700721 if (xcr0 & XFEATURE_MASK_AVX512) {
722 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800723 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700724 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800725 return 1;
726 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800727 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000728
Dave Hansend91cab72015-09-02 16:31:26 -0700729 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000730 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800731 return 0;
732}
733
734int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
735{
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000736 if (kvm_x86_ops->get_cpl(vcpu) != 0 ||
737 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800738 kvm_inject_gp(vcpu, 0);
739 return 1;
740 }
741 return 0;
742}
743EXPORT_SYMBOL_GPL(kvm_set_xcr);
744
Avi Kivitya83b29c2010-06-10 17:02:15 +0300745int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100746{
Avi Kivityfc78f512009-12-07 12:16:48 +0200747 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800748 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Huaitong Hanb9baba82016-03-22 16:51:21 +0800749 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE;
Xiao Guangrong0be02262015-05-11 22:55:21 +0800750
Gleb Natapov0f122442010-04-28 19:15:31 +0300751 if (cr4 & CR4_RESERVED_BITS)
752 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100753
Dexuan Cui2acf9232010-06-10 11:27:12 +0800754 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
755 return 1;
756
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800757 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
758 return 1;
759
Feng Wu97ec8c02014-04-01 17:46:34 +0800760 if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP))
761 return 1;
762
H. Peter Anvinafcbf132013-04-27 16:37:47 -0700763 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE))
Yang, Wei74dc2b42011-06-14 20:10:18 +0800764 return 1;
765
Huaitong Hanb9baba82016-03-22 16:51:21 +0800766 if (!guest_cpuid_has_pku(vcpu) && (cr4 & X86_CR4_PKE))
767 return 1;
768
Carsten Ottea03490e2007-10-29 16:09:35 +0100769 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300770 if (!(cr4 & X86_CR4_PAE))
771 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300772 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
773 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200774 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
775 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300776 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100777
Mao, Junjiead756a12012-07-02 01:18:48 +0000778 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
779 if (!guest_cpuid_has_pcid(vcpu))
780 return 1;
781
782 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
783 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
784 return 1;
785 }
786
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300787 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300788 return 1;
789
Mao, Junjiead756a12012-07-02 01:18:48 +0000790 if (((cr4 ^ old_cr4) & pdptr_bits) ||
791 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800792 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300793
Huaitong Hanb9baba82016-03-22 16:51:21 +0800794 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +0200795 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800796
Gleb Natapov0f122442010-04-28 19:15:31 +0300797 return 0;
798}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200799EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100800
Avi Kivity23902182010-06-10 17:02:16 +0300801int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100802{
Paolo Bonziniac146232014-11-10 13:53:25 +0100803#ifdef CONFIG_X86_64
Nadav Amit9d88fca2014-11-02 11:54:52 +0200804 cr3 &= ~CR3_PCID_INVD;
Paolo Bonziniac146232014-11-10 13:53:25 +0100805#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +0200806
Avi Kivity9f8fe502010-12-05 17:30:00 +0200807 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300808 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -0400809 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300810 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200811 }
812
Carsten Ottea03490e2007-10-29 16:09:35 +0100813 if (is_long_mode(vcpu)) {
Jan Kiszkad9f89b82014-05-10 09:24:34 +0200814 if (cr3 & CR3_L_MODE_RESERVED_BITS)
815 return 1;
816 } else if (is_pae(vcpu) && is_paging(vcpu) &&
817 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +0300818 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100819
Gleb Natapov0f122442010-04-28 19:15:31 +0300820 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200821 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Paolo Bonzinid8d173d2013-10-02 16:56:11 +0200822 kvm_mmu_new_cr3(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300823 return 0;
824}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200825EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100826
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100827int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100828{
Gleb Natapov0f122442010-04-28 19:15:31 +0300829 if (cr8 & CR8_RESERVED_BITS)
830 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +0200831 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100832 kvm_lapic_set_tpr(vcpu, cr8);
833 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800834 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300835 return 0;
836}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200837EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100838
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200839unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100840{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200841 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100842 return kvm_lapic_get_cr8(vcpu);
843 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800844 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100845}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200846EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100847
Nadav Amitae561ed2015-04-02 03:10:37 +0300848static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
849{
850 int i;
851
852 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
853 for (i = 0; i < KVM_NR_DB_REGS; i++)
854 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
855 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
856 }
857}
858
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100859static void kvm_update_dr6(struct kvm_vcpu *vcpu)
860{
861 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
862 kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6);
863}
864
Jan Kiszkac8639012012-09-21 05:42:55 +0200865static void kvm_update_dr7(struct kvm_vcpu *vcpu)
866{
867 unsigned long dr7;
868
869 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
870 dr7 = vcpu->arch.guest_debug_dr7;
871 else
872 dr7 = vcpu->arch.dr7;
873 kvm_x86_ops->set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +0100874 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
875 if (dr7 & DR7_BP_EN_MASK)
876 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +0200877}
878
Nadav Amit6f43ed02014-07-15 17:37:46 +0300879static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
880{
881 u64 fixed = DR6_FIXED_1;
882
883 if (!guest_cpuid_has_rtm(vcpu))
884 fixed |= DR6_RTM;
885 return fixed;
886}
887
Gleb Natapov338dbc92010-04-28 19:15:32 +0300888static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300889{
890 switch (dr) {
891 case 0 ... 3:
892 vcpu->arch.db[dr] = val;
893 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
894 vcpu->arch.eff_db[dr] = val;
895 break;
896 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300897 /* fall through */
898 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300899 if (val & 0xffffffff00000000ULL)
900 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +0300901 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100902 kvm_update_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300903 break;
904 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300905 /* fall through */
906 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300907 if (val & 0xffffffff00000000ULL)
908 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300909 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +0200910 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300911 break;
912 }
913
914 return 0;
915}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300916
917int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
918{
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300919 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +0300920 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300921 return 1;
922 }
923 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +0300924}
Gleb Natapov020df072010-04-13 10:05:23 +0300925EXPORT_SYMBOL_GPL(kvm_set_dr);
926
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300927int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300928{
929 switch (dr) {
930 case 0 ... 3:
931 *val = vcpu->arch.db[dr];
932 break;
933 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300934 /* fall through */
935 case 6:
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100936 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
937 *val = vcpu->arch.dr6;
938 else
939 *val = kvm_x86_ops->get_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300940 break;
941 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300942 /* fall through */
943 default: /* 7 */
944 *val = vcpu->arch.dr7;
945 break;
946 }
Gleb Natapov338dbc92010-04-28 19:15:32 +0300947 return 0;
948}
Gleb Natapov020df072010-04-13 10:05:23 +0300949EXPORT_SYMBOL_GPL(kvm_get_dr);
950
Avi Kivity022cd0e2011-11-10 14:57:23 +0200951bool kvm_rdpmc(struct kvm_vcpu *vcpu)
952{
953 u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
954 u64 data;
955 int err;
956
Wei Huangc6702c92015-06-19 13:44:45 +0200957 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +0200958 if (err)
959 return err;
960 kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data);
961 kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32);
962 return err;
963}
964EXPORT_SYMBOL_GPL(kvm_rdpmc);
965
Carsten Otte043405e2007-10-10 17:16:19 +0200966/*
967 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
968 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
969 *
970 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400971 * capabilities of the host cpu. This capabilities test skips MSRs that are
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200972 * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs
973 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +0200974 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400975
Carsten Otte043405e2007-10-10 17:16:19 +0200976static u32 msrs_to_save[] = {
977 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400978 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200979#ifdef CONFIG_X86_64
980 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
981#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800982 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +0100983 MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Carsten Otte043405e2007-10-10 17:16:19 +0200984};
985
986static unsigned num_msrs_to_save;
987
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200988static u32 emulated_msrs[] = {
989 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
990 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
991 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
992 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Andrey Smetanine7d95132015-07-03 15:01:37 +0300993 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
994 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +0300995 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +0300996 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300997 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300998 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +0300999 HV_X64_MSR_STIMER0_CONFIG,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001000 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
1001 MSR_KVM_PV_EOI_EN,
1002
Will Auldba904632012-11-29 12:42:50 -08001003 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001004 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +02001005 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001006 MSR_IA32_MCG_STATUS,
1007 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001008 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001009 MSR_IA32_SMBASE,
Carsten Otte043405e2007-10-10 17:16:19 +02001010};
1011
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001012static unsigned num_emulated_msrs;
1013
Jan Kiszka384bb782013-04-20 10:52:36 +02001014bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001015{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001016 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001017 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001018
Alexander Graf1b2fd702009-02-02 16:23:51 +01001019 if (efer & EFER_FFXSR) {
1020 struct kvm_cpuid_entry2 *feat;
1021
1022 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001023 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001024 return false;
Alexander Graf1b2fd702009-02-02 16:23:51 +01001025 }
1026
Alexander Grafd8017472008-11-25 20:17:11 +01001027 if (efer & EFER_SVME) {
1028 struct kvm_cpuid_entry2 *feat;
1029
1030 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001031 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001032 return false;
Alexander Grafd8017472008-11-25 20:17:11 +01001033 }
1034
Jan Kiszka384bb782013-04-20 10:52:36 +02001035 return true;
1036}
1037EXPORT_SYMBOL_GPL(kvm_valid_efer);
1038
1039static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
1040{
1041 u64 old_efer = vcpu->arch.efer;
1042
1043 if (!kvm_valid_efer(vcpu, efer))
1044 return 1;
1045
1046 if (is_paging(vcpu)
1047 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1048 return 1;
1049
Carsten Otte15c4a642007-10-30 18:44:17 +01001050 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001051 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001052
Sheng Yanga3d204e2010-05-12 16:40:40 +08001053 kvm_x86_ops->set_efer(vcpu, efer);
1054
Sheng Yangaad82702010-05-12 16:40:42 +08001055 /* Update reserved bits */
1056 if ((efer ^ old_efer) & EFER_NX)
1057 kvm_mmu_reset_context(vcpu);
1058
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001059 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001060}
1061
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001062void kvm_enable_efer_bits(u64 mask)
1063{
1064 efer_reserved_bits &= ~mask;
1065}
1066EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1067
Carsten Otte15c4a642007-10-30 18:44:17 +01001068/*
1069 * Writes msr value into into the appropriate "register".
1070 * Returns 0 on success, non-0 otherwise.
1071 * Assumes vcpu_load() was already called.
1072 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001073int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01001074{
Nadav Amit854e8bb2014-09-16 03:24:05 +03001075 switch (msr->index) {
1076 case MSR_FS_BASE:
1077 case MSR_GS_BASE:
1078 case MSR_KERNEL_GS_BASE:
1079 case MSR_CSTAR:
1080 case MSR_LSTAR:
1081 if (is_noncanonical_address(msr->data))
1082 return 1;
1083 break;
1084 case MSR_IA32_SYSENTER_EIP:
1085 case MSR_IA32_SYSENTER_ESP:
1086 /*
1087 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1088 * non-canonical address is written on Intel but not on
1089 * AMD (which ignores the top 32-bits, because it does
1090 * not implement 64-bit SYSENTER).
1091 *
1092 * 64-bit code should hence be able to write a non-canonical
1093 * value on AMD. Making the address canonical ensures that
1094 * vmentry does not fail on Intel after writing a non-canonical
1095 * value, and that something deterministic happens if the guest
1096 * invokes 64-bit SYSENTER.
1097 */
1098 msr->data = get_canonical(msr->data);
1099 }
Will Auld8fe8ab42012-11-29 12:42:12 -08001100 return kvm_x86_ops->set_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001101}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001102EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001103
Carsten Otte313a3dc2007-10-11 19:16:52 +02001104/*
1105 * Adapt set_msr() to msr_io()'s calling convention
1106 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001107static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1108{
1109 struct msr_data msr;
1110 int r;
1111
1112 msr.index = index;
1113 msr.host_initiated = true;
1114 r = kvm_get_msr(vcpu, &msr);
1115 if (r)
1116 return r;
1117
1118 *data = msr.data;
1119 return 0;
1120}
1121
Carsten Otte313a3dc2007-10-11 19:16:52 +02001122static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1123{
Will Auld8fe8ab42012-11-29 12:42:12 -08001124 struct msr_data msr;
1125
1126 msr.data = *data;
1127 msr.index = index;
1128 msr.host_initiated = true;
1129 return kvm_set_msr(vcpu, &msr);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001130}
1131
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001132#ifdef CONFIG_X86_64
1133struct pvclock_gtod_data {
1134 seqcount_t seq;
1135
1136 struct { /* extract of a clocksource struct */
1137 int vclock_mode;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001138 u64 cycle_last;
1139 u64 mask;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001140 u32 mult;
1141 u32 shift;
1142 } clock;
1143
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001144 u64 boot_ns;
1145 u64 nsec_base;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001146 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001147};
1148
1149static struct pvclock_gtod_data pvclock_gtod_data;
1150
1151static void update_pvclock_gtod(struct timekeeper *tk)
1152{
1153 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001154 u64 boot_ns;
1155
Peter Zijlstra876e7882015-03-19 10:09:06 +01001156 boot_ns = ktime_to_ns(ktime_add(tk->tkr_mono.base, tk->offs_boot));
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001157
1158 write_seqcount_begin(&vdata->seq);
1159
1160 /* copy pvclock gtod data */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001161 vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode;
1162 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1163 vdata->clock.mask = tk->tkr_mono.mask;
1164 vdata->clock.mult = tk->tkr_mono.mult;
1165 vdata->clock.shift = tk->tkr_mono.shift;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001166
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001167 vdata->boot_ns = boot_ns;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001168 vdata->nsec_base = tk->tkr_mono.xtime_nsec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001169
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001170 vdata->wall_time_sec = tk->xtime_sec;
1171
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001172 write_seqcount_end(&vdata->seq);
1173}
1174#endif
1175
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001176void kvm_set_pending_timer(struct kvm_vcpu *vcpu)
1177{
1178 /*
1179 * Note: KVM_REQ_PENDING_TIMER is implicitly checked in
1180 * vcpu_enter_guest. This function is only called from
1181 * the physical CPU that is running vcpu.
1182 */
1183 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1184}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001185
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001186static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1187{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001188 int version;
1189 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001190 struct pvclock_wall_clock wc;
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001191 struct timespec64 boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001192
1193 if (!wall_clock)
1194 return;
1195
Avi Kivity9ed3c442010-05-04 15:00:37 +03001196 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1197 if (r)
1198 return;
1199
1200 if (version & 1)
1201 ++version; /* first time write, random junk */
1202
1203 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001204
Nicholas Krause1dab1342015-12-30 13:08:46 -05001205 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
1206 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001207
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001208 /*
1209 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001210 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001211 * wall clock specified here. guest system time equals host
1212 * system time for us, thus we must fill in host boot time here.
1213 */
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001214 getboottime64(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001215
Bruce Rogers4b648662012-07-20 10:44:24 -06001216 if (kvm->arch.kvmclock_offset) {
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001217 struct timespec64 ts = ns_to_timespec64(kvm->arch.kvmclock_offset);
1218 boot = timespec64_sub(boot, ts);
Bruce Rogers4b648662012-07-20 10:44:24 -06001219 }
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001220 wc.sec = (u32)boot.tv_sec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001221 wc.nsec = boot.tv_nsec;
1222 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001223
1224 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1225
1226 version++;
1227 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001228}
1229
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001230static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1231{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01001232 do_shl32_div32(dividend, divisor);
1233 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001234}
1235
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001236static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001237 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001238{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001239 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001240 int32_t shift = 0;
1241 uint64_t tps64;
1242 uint32_t tps32;
1243
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001244 tps64 = base_hz;
1245 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02001246 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001247 tps64 >>= 1;
1248 shift--;
1249 }
1250
1251 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001252 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1253 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001254 scaled64 >>= 1;
1255 else
1256 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001257 shift++;
1258 }
1259
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001260 *pshift = shift;
1261 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001262
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001263 pr_debug("%s: base_hz %llu => %llu, shift %d, mul %u\n",
1264 __func__, base_hz, scaled_hz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001265}
1266
Marcelo Tosattid8281992012-11-27 23:29:01 -02001267#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001268static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001269#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001270
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001271static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001272static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001273
Zachary Amsdencc578282012-02-03 15:43:50 -02001274static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001275{
Zachary Amsdencc578282012-02-03 15:43:50 -02001276 u64 v = (u64)khz * (1000000 + ppm);
1277 do_div(v, 1000000);
1278 return v;
1279}
1280
Haozhong Zhang381d5852015-10-20 15:39:04 +08001281static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
1282{
1283 u64 ratio;
1284
1285 /* Guest TSC same frequency as host TSC? */
1286 if (!scale) {
1287 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
1288 return 0;
1289 }
1290
1291 /* TSC scaling supported? */
1292 if (!kvm_has_tsc_control) {
1293 if (user_tsc_khz > tsc_khz) {
1294 vcpu->arch.tsc_catchup = 1;
1295 vcpu->arch.tsc_always_catchup = 1;
1296 return 0;
1297 } else {
1298 WARN(1, "user requested TSC rate below hardware speed\n");
1299 return -1;
1300 }
1301 }
1302
1303 /* TSC scaling required - calculate ratio */
1304 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
1305 user_tsc_khz, tsc_khz);
1306
1307 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
1308 WARN_ONCE(1, "Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
1309 user_tsc_khz);
1310 return -1;
1311 }
1312
1313 vcpu->arch.tsc_scaling_ratio = ratio;
1314 return 0;
1315}
1316
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001317static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02001318{
1319 u32 thresh_lo, thresh_hi;
1320 int use_scaling = 0;
1321
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001322 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001323 if (user_tsc_khz == 0) {
Haozhong Zhangad721882015-10-20 15:39:02 +08001324 /* set tsc_scaling_ratio to a safe value */
1325 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
Haozhong Zhang381d5852015-10-20 15:39:04 +08001326 return -1;
Haozhong Zhangad721882015-10-20 15:39:02 +08001327 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001328
Zachary Amsdenc2855452010-09-18 14:38:15 -10001329 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001330 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02001331 &vcpu->arch.virtual_tsc_shift,
1332 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001333 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02001334
1335 /*
1336 * Compute the variation in TSC rate which is acceptable
1337 * within the range of tolerance and decide if the
1338 * rate being applied is within that bounds of the hardware
1339 * rate. If so, no scaling or compensation need be done.
1340 */
1341 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1342 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001343 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
1344 pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", user_tsc_khz, thresh_lo, thresh_hi);
Zachary Amsdencc578282012-02-03 15:43:50 -02001345 use_scaling = 1;
1346 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001347 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001348}
1349
1350static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1351{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001352 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001353 vcpu->arch.virtual_tsc_mult,
1354 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001355 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001356 return tsc;
1357}
1358
Fengguang Wu69b00492015-01-19 22:33:39 +08001359static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001360{
1361#ifdef CONFIG_X86_64
1362 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001363 struct kvm_arch *ka = &vcpu->kvm->arch;
1364 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1365
1366 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1367 atomic_read(&vcpu->kvm->online_vcpus));
1368
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001369 /*
1370 * Once the masterclock is enabled, always perform request in
1371 * order to update it.
1372 *
1373 * In order to enable masterclock, the host clocksource must be TSC
1374 * and the vcpus need to have matched TSCs. When that happens,
1375 * perform request to enable masterclock.
1376 */
1377 if (ka->use_master_clock ||
1378 (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001379 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1380
1381 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1382 atomic_read(&vcpu->kvm->online_vcpus),
1383 ka->use_master_clock, gtod->clock.vclock_mode);
1384#endif
1385}
1386
Will Auldba904632012-11-29 12:42:50 -08001387static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1388{
Luiz Capitulino3e3f5022016-09-07 14:47:20 -04001389 u64 curr_offset = vcpu->arch.tsc_offset;
Will Auldba904632012-11-29 12:42:50 -08001390 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1391}
1392
Haozhong Zhang35181e82015-10-20 15:39:03 +08001393/*
1394 * Multiply tsc by a fixed point number represented by ratio.
1395 *
1396 * The most significant 64-N bits (mult) of ratio represent the
1397 * integral part of the fixed point number; the remaining N bits
1398 * (frac) represent the fractional part, ie. ratio represents a fixed
1399 * point number (mult + frac * 2^(-N)).
1400 *
1401 * N equals to kvm_tsc_scaling_ratio_frac_bits.
1402 */
1403static inline u64 __scale_tsc(u64 ratio, u64 tsc)
1404{
1405 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
1406}
1407
1408u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
1409{
1410 u64 _tsc = tsc;
1411 u64 ratio = vcpu->arch.tsc_scaling_ratio;
1412
1413 if (ratio != kvm_default_tsc_scaling_ratio)
1414 _tsc = __scale_tsc(ratio, tsc);
1415
1416 return _tsc;
1417}
1418EXPORT_SYMBOL_GPL(kvm_scale_tsc);
1419
Haozhong Zhang07c14192015-10-20 15:39:05 +08001420static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1421{
1422 u64 tsc;
1423
1424 tsc = kvm_scale_tsc(vcpu, rdtsc());
1425
1426 return target_tsc - tsc;
1427}
1428
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001429u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
1430{
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001431 return vcpu->arch.tsc_offset + kvm_scale_tsc(vcpu, host_tsc);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001432}
1433EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
1434
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04001435static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1436{
1437 kvm_x86_ops->write_tsc_offset(vcpu, offset);
1438 vcpu->arch.tsc_offset = offset;
1439}
1440
Will Auld8fe8ab42012-11-29 12:42:12 -08001441void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10001442{
1443 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001444 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001445 unsigned long flags;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001446 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001447 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08001448 u64 data = msr->data;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03001449 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001450
Jan Kiszka038f8c12011-02-04 10:49:11 +01001451 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Haozhong Zhang07c14192015-10-20 15:39:05 +08001452 offset = kvm_compute_tsc_offset(vcpu, data);
Paolo Bonzini108b2492016-09-01 14:21:03 +02001453 ns = ktime_get_boot_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001454 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001455
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001456 if (vcpu->arch.virtual_tsc_khz) {
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03001457 u64 tsc_exp = kvm->arch.last_tsc_write +
1458 nsec_to_cycles(vcpu, elapsed);
1459 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
1460 /*
1461 * Special case: TSC write with a small delta (1 second)
1462 * of virtual cycle time against real time is
1463 * interpreted as an attempt to synchronize the CPU.
1464 */
1465 synchronizing = data < tsc_exp + tsc_hz &&
1466 data + tsc_hz > tsc_exp;
1467 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001468
1469 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001470 * For a reliable TSC, we can match TSC offsets, and for an unstable
1471 * TSC, we add elapsed time in this computation. We could let the
1472 * compensation code attempt to catch up if we fall behind, but
1473 * it's better to try to match offsets from the beginning.
1474 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03001475 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001476 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001477 if (!check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02001478 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001479 pr_debug("kvm: matched tsc offset for %llu\n", data);
1480 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001481 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001482 data += delta;
Haozhong Zhang07c14192015-10-20 15:39:05 +08001483 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001484 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001485 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001486 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001487 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001488 } else {
1489 /*
1490 * We split periods of matched TSC writes into generations.
1491 * For each generation, we track the original measured
1492 * nanosecond time, offset, and write, so if TSCs are in
1493 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08001494 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02001495 *
1496 * These values are tracked in kvm->arch.cur_xxx variables.
1497 */
1498 kvm->arch.cur_tsc_generation++;
1499 kvm->arch.cur_tsc_nsec = ns;
1500 kvm->arch.cur_tsc_write = data;
1501 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001502 matched = false;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001503 pr_debug("kvm: new tsc generation %llu, clock %llu\n",
Zachary Amsdene26101b2012-02-03 15:43:57 -02001504 kvm->arch.cur_tsc_generation, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001505 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02001506
1507 /*
1508 * We also track th most recent recorded KHZ, write and time to
1509 * allow the matching interval to be extended at each write.
1510 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001511 kvm->arch.last_tsc_nsec = ns;
1512 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001513 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001514
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001515 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001516
1517 /* Keep track of which generation this VCPU has synchronized to */
1518 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
1519 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
1520 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
1521
Will Auldba904632012-11-29 12:42:50 -08001522 if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated)
1523 update_ia32_tsc_adjust_msr(vcpu, offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04001524 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001525 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001526
1527 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001528 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001529 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001530 } else if (!already_matched) {
1531 kvm->arch.nr_vcpus_matched_tsc++;
1532 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001533
1534 kvm_track_tsc_matching(vcpu);
1535 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001536}
Zachary Amsdene26101b2012-02-03 15:43:57 -02001537
Zachary Amsden99e3e302010-08-19 22:07:17 -10001538EXPORT_SYMBOL_GPL(kvm_write_tsc);
1539
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001540static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
1541 s64 adjustment)
1542{
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001543 kvm_vcpu_write_tsc_offset(vcpu, vcpu->arch.tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001544}
1545
1546static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
1547{
1548 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
1549 WARN_ON(adjustment < 0);
1550 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001551 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001552}
1553
Marcelo Tosattid8281992012-11-27 23:29:01 -02001554#ifdef CONFIG_X86_64
1555
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001556static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001557{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001558 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02001559 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001560
1561 if (likely(ret >= last))
1562 return ret;
1563
1564 /*
1565 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08001566 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02001567 * very likely) and there's a data dependence, so force GCC
1568 * to generate a branch instead. I don't barrier() because
1569 * we don't actually need a barrier, and if this function
1570 * ever gets inlined it will generate worse code.
1571 */
1572 asm volatile ("");
1573 return last;
1574}
1575
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001576static inline u64 vgettsc(u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001577{
1578 long v;
1579 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1580
1581 *cycle_now = read_tsc();
1582
1583 v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask;
1584 return v * gtod->clock.mult;
1585}
1586
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001587static int do_monotonic_boot(s64 *t, u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001588{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001589 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001590 unsigned long seq;
1591 int mode;
1592 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001593
Marcelo Tosattid8281992012-11-27 23:29:01 -02001594 do {
1595 seq = read_seqcount_begin(&gtod->seq);
1596 mode = gtod->clock.vclock_mode;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001597 ns = gtod->nsec_base;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001598 ns += vgettsc(cycle_now);
1599 ns >>= gtod->clock.shift;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001600 ns += gtod->boot_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001601 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001602 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001603
1604 return mode;
1605}
1606
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001607static int do_realtime(struct timespec *ts, u64 *cycle_now)
1608{
1609 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1610 unsigned long seq;
1611 int mode;
1612 u64 ns;
1613
1614 do {
1615 seq = read_seqcount_begin(&gtod->seq);
1616 mode = gtod->clock.vclock_mode;
1617 ts->tv_sec = gtod->wall_time_sec;
1618 ns = gtod->nsec_base;
1619 ns += vgettsc(cycle_now);
1620 ns >>= gtod->clock.shift;
1621 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
1622
1623 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
1624 ts->tv_nsec = ns;
1625
1626 return mode;
1627}
1628
Marcelo Tosattid8281992012-11-27 23:29:01 -02001629/* returns true if host is using tsc clocksource */
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001630static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001631{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001632 /* checked again under seqlock below */
1633 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1634 return false;
1635
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001636 return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001637}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001638
1639/* returns true if host is using tsc clocksource */
1640static bool kvm_get_walltime_and_clockread(struct timespec *ts,
1641 u64 *cycle_now)
1642{
1643 /* checked again under seqlock below */
1644 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1645 return false;
1646
1647 return do_realtime(ts, cycle_now) == VCLOCK_TSC;
1648}
Marcelo Tosattid8281992012-11-27 23:29:01 -02001649#endif
1650
1651/*
1652 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001653 * Assuming a stable TSC across physical CPUS, and a stable TSC
1654 * across virtual CPUs, the following condition is possible.
1655 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02001656 * CPUs at the next numbered event.
1657 *
1658 * "timespecX" represents host monotonic time. "tscX" represents
1659 * RDTSC value.
1660 *
1661 * VCPU0 on CPU0 | VCPU1 on CPU1
1662 *
1663 * 1. read timespec0,tsc0
1664 * 2. | timespec1 = timespec0 + N
1665 * | tsc1 = tsc0 + M
1666 * 3. transition to guest | transition to guest
1667 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
1668 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
1669 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
1670 *
1671 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
1672 *
1673 * - ret0 < ret1
1674 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
1675 * ...
1676 * - 0 < N - M => M < N
1677 *
1678 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
1679 * always the case (the difference between two distinct xtime instances
1680 * might be smaller then the difference between corresponding TSC reads,
1681 * when updating guest vcpus pvclock areas).
1682 *
1683 * To avoid that problem, do not allow visibility of distinct
1684 * system_timestamp/tsc_timestamp values simultaneously: use a master
1685 * copy of host monotonic time values. Update that master copy
1686 * in lockstep.
1687 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001688 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02001689 *
1690 */
1691
1692static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
1693{
1694#ifdef CONFIG_X86_64
1695 struct kvm_arch *ka = &kvm->arch;
1696 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001697 bool host_tsc_clocksource, vcpus_matched;
1698
1699 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1700 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02001701
1702 /*
1703 * If the host uses TSC clock, then passthrough TSC as stable
1704 * to the guest.
1705 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001706 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02001707 &ka->master_kernel_ns,
1708 &ka->master_cycle_now);
1709
Marcelo Tosatti16a96022014-05-14 12:43:24 -03001710 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Marcelo Tosatti54750f22015-01-20 15:54:52 -02001711 && !backwards_tsc_observed
1712 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001713
Marcelo Tosattid8281992012-11-27 23:29:01 -02001714 if (ka->use_master_clock)
1715 atomic_set(&kvm_guest_has_master_clock, 1);
1716
1717 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001718 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
1719 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001720#endif
1721}
1722
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01001723void kvm_make_mclock_inprogress_request(struct kvm *kvm)
1724{
1725 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
1726}
1727
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001728static void kvm_gen_update_masterclock(struct kvm *kvm)
1729{
1730#ifdef CONFIG_X86_64
1731 int i;
1732 struct kvm_vcpu *vcpu;
1733 struct kvm_arch *ka = &kvm->arch;
1734
1735 spin_lock(&ka->pvclock_gtod_sync_lock);
1736 kvm_make_mclock_inprogress_request(kvm);
1737 /* no guest entries from this point */
1738 pvclock_update_vm_gtod_copy(kvm);
1739
1740 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001741 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001742
1743 /* guest entries allowed */
1744 kvm_for_each_vcpu(i, vcpu, kvm)
1745 clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests);
1746
1747 spin_unlock(&ka->pvclock_gtod_sync_lock);
1748#endif
1749}
1750
Paolo Bonzini108b2492016-09-01 14:21:03 +02001751static u64 __get_kvmclock_ns(struct kvm *kvm)
1752{
Paolo Bonzini108b2492016-09-01 14:21:03 +02001753 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01001754 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02001755
Paolo Bonzini8b953442016-11-16 18:31:30 +01001756 spin_lock(&ka->pvclock_gtod_sync_lock);
1757 if (!ka->use_master_clock) {
1758 spin_unlock(&ka->pvclock_gtod_sync_lock);
1759 return ktime_get_boot_ns() + ka->kvmclock_offset;
Paolo Bonzini108b2492016-09-01 14:21:03 +02001760 }
1761
Paolo Bonzini8b953442016-11-16 18:31:30 +01001762 hv_clock.tsc_timestamp = ka->master_cycle_now;
1763 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
1764 spin_unlock(&ka->pvclock_gtod_sync_lock);
1765
1766 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
1767 &hv_clock.tsc_shift,
1768 &hv_clock.tsc_to_system_mul);
1769 return __pvclock_read_cycles(&hv_clock, rdtsc());
Paolo Bonzini108b2492016-09-01 14:21:03 +02001770}
1771
1772u64 get_kvmclock_ns(struct kvm *kvm)
1773{
1774 unsigned long flags;
1775 s64 ns;
1776
1777 local_irq_save(flags);
1778 ns = __get_kvmclock_ns(kvm);
1779 local_irq_restore(flags);
1780
1781 return ns;
1782}
1783
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001784static void kvm_setup_pvclock_page(struct kvm_vcpu *v)
1785{
1786 struct kvm_vcpu_arch *vcpu = &v->arch;
1787 struct pvclock_vcpu_time_info guest_hv_clock;
1788
Cao, Leibbd64112017-02-03 20:04:35 +00001789 if (unlikely(kvm_vcpu_read_guest_cached(v, &vcpu->pv_time,
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001790 &guest_hv_clock, sizeof(guest_hv_clock))))
1791 return;
1792
1793 /* This VCPU is paused, but it's legal for a guest to read another
1794 * VCPU's kvmclock, so we really have to follow the specification where
1795 * it says that version is odd if data is being modified, and even after
1796 * it is consistent.
1797 *
1798 * Version field updates must be kept separate. This is because
1799 * kvm_write_guest_cached might use a "rep movs" instruction, and
1800 * writes within a string instruction are weakly ordered. So there
1801 * are three writes overall.
1802 *
1803 * As a small optimization, only write the version field in the first
1804 * and third write. The vcpu->pv_time cache is still valid, because the
1805 * version field is the first in the struct.
1806 */
1807 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
1808
1809 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Cao, Leibbd64112017-02-03 20:04:35 +00001810 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1811 &vcpu->hv_clock,
1812 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001813
1814 smp_wmb();
1815
1816 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
1817 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
1818
1819 if (vcpu->pvclock_set_guest_stopped_request) {
1820 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
1821 vcpu->pvclock_set_guest_stopped_request = false;
1822 }
1823
1824 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
1825
Cao, Leibbd64112017-02-03 20:04:35 +00001826 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1827 &vcpu->hv_clock,
1828 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001829
1830 smp_wmb();
1831
1832 vcpu->hv_clock.version++;
Cao, Leibbd64112017-02-03 20:04:35 +00001833 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1834 &vcpu->hv_clock,
1835 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001836}
1837
Zachary Amsden34c238a2010-09-18 14:38:14 -10001838static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001839{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001840 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001841 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001842 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02001843 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001844 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001845 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001846 bool use_master_clock;
1847
1848 kernel_ns = 0;
1849 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001850
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001851 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02001852 * If the host uses TSC clock, then passthrough TSC as stable
1853 * to the guest.
1854 */
1855 spin_lock(&ka->pvclock_gtod_sync_lock);
1856 use_master_clock = ka->use_master_clock;
1857 if (use_master_clock) {
1858 host_tsc = ka->master_cycle_now;
1859 kernel_ns = ka->master_kernel_ns;
1860 }
1861 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001862
1863 /* Keep irq disabled to prevent changes to the clock */
1864 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001865 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
1866 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001867 local_irq_restore(flags);
1868 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
1869 return 1;
1870 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02001871 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02001872 host_tsc = rdtsc();
Paolo Bonzini108b2492016-09-01 14:21:03 +02001873 kernel_ns = ktime_get_boot_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02001874 }
1875
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001876 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001877
1878 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001879 * We may have to catch up the TSC to match elapsed wall clock
1880 * time for two reasons, even if kvmclock is used.
1881 * 1) CPU could have been running below the maximum TSC rate
1882 * 2) Broken TSC compensation resets the base at each VCPU
1883 * entry to avoid unknown leaps of TSC even when running
1884 * again on the same CPU. This may cause apparent elapsed
1885 * time to disappear, and the guest to stand still or run
1886 * very slowly.
1887 */
1888 if (vcpu->tsc_catchup) {
1889 u64 tsc = compute_guest_tsc(v, kernel_ns);
1890 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02001891 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001892 tsc_timestamp = tsc;
1893 }
1894 }
1895
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001896 local_irq_restore(flags);
1897
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001898 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10001899
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001900 if (kvm_has_tsc_control)
1901 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
1902
1903 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001904 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001905 &vcpu->hv_clock.tsc_shift,
1906 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001907 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001908 }
1909
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001910 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001911 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10001912 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001913
Marcelo Tosattid8281992012-11-27 23:29:01 -02001914 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001915 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001916 if (use_master_clock)
1917 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
1918
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001919 vcpu->hv_clock.flags = pvclock_flags;
1920
Paolo Bonzini095cf552016-02-08 12:54:12 +01001921 if (vcpu->pv_time_enabled)
1922 kvm_setup_pvclock_page(v);
1923 if (v == kvm_get_vcpu(v->kvm, 0))
1924 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001925 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001926}
1927
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001928/*
1929 * kvmclock updates which are isolated to a given vcpu, such as
1930 * vcpu->cpu migration, should not allow system_timestamp from
1931 * the rest of the vcpus to remain static. Otherwise ntp frequency
1932 * correction applies to one vcpu's system_timestamp but not
1933 * the others.
1934 *
1935 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01001936 * We need to rate-limit these requests though, as they can
1937 * considerably slow guests that have a large number of vcpus.
1938 * The time for a remote vcpu to update its kvmclock is bound
1939 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001940 */
1941
Andrew Jones7e44e442014-02-28 12:52:54 +01001942#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
1943
1944static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001945{
1946 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01001947 struct delayed_work *dwork = to_delayed_work(work);
1948 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1949 kvmclock_update_work);
1950 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001951 struct kvm_vcpu *vcpu;
1952
1953 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001954 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001955 kvm_vcpu_kick(vcpu);
1956 }
1957}
1958
Andrew Jones7e44e442014-02-28 12:52:54 +01001959static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
1960{
1961 struct kvm *kvm = v->kvm;
1962
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001963 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01001964 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
1965 KVMCLOCK_UPDATE_DELAY);
1966}
1967
Andrew Jones332967a2014-02-28 12:52:55 +01001968#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
1969
1970static void kvmclock_sync_fn(struct work_struct *work)
1971{
1972 struct delayed_work *dwork = to_delayed_work(work);
1973 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1974 kvmclock_sync_work);
1975 struct kvm *kvm = container_of(ka, struct kvm, arch);
1976
Marcelo Tosatti630994b2015-05-12 22:42:04 -03001977 if (!kvmclock_periodic_sync)
1978 return;
1979
Andrew Jones332967a2014-02-28 12:52:55 +01001980 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
1981 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
1982 KVMCLOCK_SYNC_PERIOD);
1983}
1984
Huang Ying890ca9a2009-05-11 16:48:15 +08001985static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1986{
1987 u64 mcg_cap = vcpu->arch.mcg_cap;
1988 unsigned bank_num = mcg_cap & 0xff;
1989
1990 switch (msr) {
1991 case MSR_IA32_MCG_STATUS:
1992 vcpu->arch.mcg_status = data;
1993 break;
1994 case MSR_IA32_MCG_CTL:
1995 if (!(mcg_cap & MCG_CTL_P))
1996 return 1;
1997 if (data != 0 && data != ~(u64)0)
1998 return -1;
1999 vcpu->arch.mcg_ctl = data;
2000 break;
2001 default:
2002 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002003 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002004 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01002005 /* only 0 or all 1s can be written to IA32_MCi_CTL
2006 * some Linux kernels though clear bit 10 in bank 4 to
2007 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
2008 * this to avoid an uncatched #GP in the guest
2009 */
Huang Ying890ca9a2009-05-11 16:48:15 +08002010 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01002011 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08002012 return -1;
2013 vcpu->arch.mce_banks[offset] = data;
2014 break;
2015 }
2016 return 1;
2017 }
2018 return 0;
2019}
2020
Ed Swierkffde22a2009-10-15 15:21:43 -07002021static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
2022{
2023 struct kvm *kvm = vcpu->kvm;
2024 int lm = is_long_mode(vcpu);
2025 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
2026 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
2027 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
2028 : kvm->arch.xen_hvm_config.blob_size_32;
2029 u32 page_num = data & ~PAGE_MASK;
2030 u64 page_addr = data & PAGE_MASK;
2031 u8 *page;
2032 int r;
2033
2034 r = -E2BIG;
2035 if (page_num >= blob_size)
2036 goto out;
2037 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002038 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
2039 if (IS_ERR(page)) {
2040 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07002041 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002042 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002043 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07002044 goto out_free;
2045 r = 0;
2046out_free:
2047 kfree(page);
2048out:
2049 return r;
2050}
2051
Gleb Natapov344d9582010-10-14 11:22:50 +02002052static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
2053{
2054 gpa_t gpa = data & ~0x3f;
2055
Guo Chao4a969982012-06-28 15:17:27 +08002056 /* Bits 2:5 are reserved, Should be zero */
Gleb Natapov6adba522010-10-14 11:22:55 +02002057 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02002058 return 1;
2059
2060 vcpu->arch.apf.msr_val = data;
2061
2062 if (!(data & KVM_ASYNC_PF_ENABLED)) {
2063 kvm_clear_async_pf_completion_queue(vcpu);
2064 kvm_async_pf_hash_reset(vcpu);
2065 return 0;
2066 }
2067
Cao, Leibbd64112017-02-03 20:04:35 +00002068 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu, &vcpu->arch.apf.data, gpa,
Andrew Honig8f964522013-03-29 09:35:21 -07002069 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02002070 return 1;
2071
Gleb Natapov6adba522010-10-14 11:22:55 +02002072 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02002073 kvm_async_pf_wakeup_all(vcpu);
2074 return 0;
2075}
2076
Glauber Costa12f9a482011-02-01 14:16:40 -05002077static void kvmclock_reset(struct kvm_vcpu *vcpu)
2078{
Andy Honig0b794592013-02-20 14:48:10 -08002079 vcpu->arch.pv_time_enabled = false;
Glauber Costa12f9a482011-02-01 14:16:40 -05002080}
2081
Glauber Costac9aaa892011-07-11 15:28:14 -04002082static void record_steal_time(struct kvm_vcpu *vcpu)
2083{
2084 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2085 return;
2086
Cao, Leibbd64112017-02-03 20:04:35 +00002087 if (unlikely(kvm_vcpu_read_guest_cached(vcpu, &vcpu->arch.st.stime,
Glauber Costac9aaa892011-07-11 15:28:14 -04002088 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
2089 return;
2090
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002091 vcpu->arch.st.steal.preempted = 0;
2092
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002093 if (vcpu->arch.st.steal.version & 1)
2094 vcpu->arch.st.steal.version += 1; /* first time write, random junk */
2095
2096 vcpu->arch.st.steal.version += 1;
2097
Cao, Leibbd64112017-02-03 20:04:35 +00002098 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002099 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2100
2101 smp_wmb();
2102
Liang Chenc54cdf12016-03-16 19:33:16 +08002103 vcpu->arch.st.steal.steal += current->sched_info.run_delay -
2104 vcpu->arch.st.last_steal;
2105 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002106
Cao, Leibbd64112017-02-03 20:04:35 +00002107 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002108 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2109
2110 smp_wmb();
2111
2112 vcpu->arch.st.steal.version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04002113
Cao, Leibbd64112017-02-03 20:04:35 +00002114 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Glauber Costac9aaa892011-07-11 15:28:14 -04002115 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2116}
2117
Will Auld8fe8ab42012-11-29 12:42:12 -08002118int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002119{
Gleb Natapov57537852012-01-15 14:17:22 +02002120 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002121 u32 msr = msr_info->index;
2122 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002123
Carsten Otte15c4a642007-10-30 18:44:17 +01002124 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002125 case MSR_AMD64_NB_CFG:
2126 case MSR_IA32_UCODE_REV:
2127 case MSR_IA32_UCODE_WRITE:
2128 case MSR_VM_HSAVE_PA:
2129 case MSR_AMD64_PATCH_LOADER:
2130 case MSR_AMD64_BU_CFG2:
2131 break;
2132
Carsten Otte15c4a642007-10-30 18:44:17 +01002133 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02002134 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002135 case MSR_K7_HWCR:
2136 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002137 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002138 data &= ~(u64)0x8; /* ignore TLB cache disable */
Matthias Lange22d48b2d2014-06-26 13:50:15 +02002139 data &= ~(u64)0x40000; /* ignore Mc status write enable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02002140 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002141 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2142 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002143 return 1;
2144 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002145 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002146 case MSR_FAM10H_MMIO_CONF_BASE:
2147 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002148 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2149 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002150 return 1;
2151 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002152 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002153 case MSR_IA32_DEBUGCTLMSR:
2154 if (!data) {
2155 /* We support the non-activated case already */
2156 break;
2157 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2158 /* Values other than LBR and BTF are vendor-specific,
2159 thus reserved and should throw a #GP */
2160 return 1;
2161 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002162 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2163 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002164 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002165 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002166 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002167 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002168 return kvm_set_apic_base(vcpu, msr_info);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002169 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2170 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002171 case MSR_IA32_TSCDEADLINE:
2172 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2173 break;
Will Auldba904632012-11-29 12:42:50 -08002174 case MSR_IA32_TSC_ADJUST:
2175 if (guest_cpuid_has_tsc_adjust(vcpu)) {
2176 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002177 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08002178 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08002179 }
2180 vcpu->arch.ia32_tsc_adjust_msr = data;
2181 }
2182 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002183 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002184 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01002185 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002186 case MSR_IA32_SMBASE:
2187 if (!msr_info->host_initiated)
2188 return 1;
2189 vcpu->arch.smbase = data;
2190 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002191 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002192 case MSR_KVM_WALL_CLOCK:
2193 vcpu->kvm->arch.wall_clock = data;
2194 kvm_write_wall_clock(vcpu->kvm, data);
2195 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002196 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002197 case MSR_KVM_SYSTEM_TIME: {
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002198 struct kvm_arch *ka = &vcpu->kvm->arch;
2199
Glauber Costa12f9a482011-02-01 14:16:40 -05002200 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002201
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002202 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2203 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2204
2205 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
2206 set_bit(KVM_REQ_MASTERCLOCK_UPDATE,
2207 &vcpu->requests);
2208
2209 ka->boot_vcpu_runs_old_kvmclock = tmp;
2210 }
2211
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002212 vcpu->arch.time = data;
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002213 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002214
2215 /* we verify if the enable bit is set... */
2216 if (!(data & 1))
2217 break;
2218
Cao, Leibbd64112017-02-03 20:04:35 +00002219 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu,
Andrew Honig8f964522013-03-29 09:35:21 -07002220 &vcpu->arch.pv_time, data & ~1ULL,
2221 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002222 vcpu->arch.pv_time_enabled = false;
2223 else
2224 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002225
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002226 break;
2227 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002228 case MSR_KVM_ASYNC_PF_EN:
2229 if (kvm_pv_enable_async_pf(vcpu, data))
2230 return 1;
2231 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002232 case MSR_KVM_STEAL_TIME:
2233
2234 if (unlikely(!sched_info_on()))
2235 return 1;
2236
2237 if (data & KVM_STEAL_RESERVED_MASK)
2238 return 1;
2239
Cao, Leibbd64112017-02-03 20:04:35 +00002240 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu, &vcpu->arch.st.stime,
Andrew Honig8f964522013-03-29 09:35:21 -07002241 data & KVM_STEAL_VALID_BITS,
2242 sizeof(struct kvm_steal_time)))
Glauber Costac9aaa892011-07-11 15:28:14 -04002243 return 1;
2244
2245 vcpu->arch.st.msr_val = data;
2246
2247 if (!(data & KVM_MSR_ENABLED))
2248 break;
2249
Glauber Costac9aaa892011-07-11 15:28:14 -04002250 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2251
2252 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002253 case MSR_KVM_PV_EOI_EN:
2254 if (kvm_lapic_enable_pv_eoi(vcpu, data))
2255 return 1;
2256 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002257
Huang Ying890ca9a2009-05-11 16:48:15 +08002258 case MSR_IA32_MCG_CTL:
2259 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002260 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Huang Ying890ca9a2009-05-11 16:48:15 +08002261 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002262
Wei Huang6912ac32015-06-12 01:34:56 -04002263 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2264 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2265 pr = true; /* fall through */
2266 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2267 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002268 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002269 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002270
2271 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002272 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2273 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002274 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002275 case MSR_K7_CLK_CTL:
2276 /*
2277 * Ignore all writes to this no longer documented MSR.
2278 * Writes are only relevant for old K7 processors,
2279 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002280 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002281 * affected processor models on the command line, hence
2282 * the need to ignore the workaround.
2283 */
2284 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002285 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002286 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2287 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002288 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002289 return kvm_hv_set_msr_common(vcpu, msr, data,
2290 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05002291 case MSR_IA32_BBL_CR_CTL3:
2292 /* Drop writes to this legacy MSR -- see rdmsr
2293 * counterpart for further detail.
2294 */
Borislav Petkov796f4682016-10-27 20:14:45 +02002295 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n", msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002296 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002297 case MSR_AMD64_OSVW_ID_LENGTH:
2298 if (!guest_cpuid_has_osvw(vcpu))
2299 return 1;
2300 vcpu->arch.osvw.length = data;
2301 break;
2302 case MSR_AMD64_OSVW_STATUS:
2303 if (!guest_cpuid_has_osvw(vcpu))
2304 return 1;
2305 vcpu->arch.osvw.status = data;
2306 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002307 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07002308 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
2309 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02002310 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002311 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02002312 if (!ignore_msrs) {
Bandan Dasae0f5492016-11-15 01:36:18 -05002313 vcpu_debug_ratelimited(vcpu, "unhandled wrmsr: 0x%x data 0x%llx\n",
Christoffer Dalla737f252012-06-03 21:17:48 +03002314 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002315 return 1;
2316 } else {
Borislav Petkov796f4682016-10-27 20:14:45 +02002317 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
Christoffer Dalla737f252012-06-03 21:17:48 +03002318 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002319 break;
2320 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002321 }
2322 return 0;
2323}
2324EXPORT_SYMBOL_GPL(kvm_set_msr_common);
2325
2326
2327/*
2328 * Reads an msr value (of 'msr_index') into 'pdata'.
2329 * Returns 0 on success, non-0 otherwise.
2330 * Assumes vcpu_load() was already called.
2331 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002332int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01002333{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002334 return kvm_x86_ops->get_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002335}
Wincy Vanff651cb2014-12-11 08:52:58 +03002336EXPORT_SYMBOL_GPL(kvm_get_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002337
Huang Ying890ca9a2009-05-11 16:48:15 +08002338static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2339{
2340 u64 data;
2341 u64 mcg_cap = vcpu->arch.mcg_cap;
2342 unsigned bank_num = mcg_cap & 0xff;
2343
2344 switch (msr) {
2345 case MSR_IA32_P5_MC_ADDR:
2346 case MSR_IA32_P5_MC_TYPE:
2347 data = 0;
2348 break;
2349 case MSR_IA32_MCG_CAP:
2350 data = vcpu->arch.mcg_cap;
2351 break;
2352 case MSR_IA32_MCG_CTL:
2353 if (!(mcg_cap & MCG_CTL_P))
2354 return 1;
2355 data = vcpu->arch.mcg_ctl;
2356 break;
2357 case MSR_IA32_MCG_STATUS:
2358 data = vcpu->arch.mcg_status;
2359 break;
2360 default:
2361 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002362 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002363 u32 offset = msr - MSR_IA32_MC0_CTL;
2364 data = vcpu->arch.mce_banks[offset];
2365 break;
2366 }
2367 return 1;
2368 }
2369 *pdata = data;
2370 return 0;
2371}
2372
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002373int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002374{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002375 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01002376 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01002377 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002378 case MSR_IA32_DEBUGCTLMSR:
2379 case MSR_IA32_LASTBRANCHFROMIP:
2380 case MSR_IA32_LASTBRANCHTOIP:
2381 case MSR_IA32_LASTINTFROMIP:
2382 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302383 case MSR_K8_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02002384 case MSR_K8_TSEG_ADDR:
2385 case MSR_K8_TSEG_MASK:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302386 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02002387 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02002388 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02002389 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002390 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002391 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03002392 case MSR_IA32_PERF_CTL:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002393 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01002394 break;
Wei Huang6912ac32015-06-12 01:34:56 -04002395 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2396 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2397 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2398 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002399 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002400 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
2401 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02002402 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002403 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002404 msr_info->data = 0x100000000ULL;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002405 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002406 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03002407 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002408 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002409 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002410 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01002411 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02002412 /*
2413 * MSR_EBC_FREQUENCY_ID
2414 * Conservative value valid for even the basic CPU models.
2415 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
2416 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
2417 * and 266MHz for model 3, or 4. Set Core Clock
2418 * Frequency to System Bus Frequency Ratio to 1 (bits
2419 * 31:24) even though these are only valid for CPU
2420 * models > 2, however guests may end up dividing or
2421 * multiplying by zero otherwise.
2422 */
2423 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002424 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02002425 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002426 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002427 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01002428 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002429 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002430 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002431 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002432 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002433 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002434 break;
Will Auldba904632012-11-29 12:42:50 -08002435 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002436 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08002437 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002438 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002439 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01002440 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002441 case MSR_IA32_SMBASE:
2442 if (!msr_info->host_initiated)
2443 return 1;
2444 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01002445 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002446 case MSR_IA32_PERF_STATUS:
2447 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002448 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002449 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08002450 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01002451 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002452 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002453 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01002454 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002455 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002456 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002457 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002458 break;
2459 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002460 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002461 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002462 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02002463 case MSR_KVM_ASYNC_PF_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002464 msr_info->data = vcpu->arch.apf.msr_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02002465 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002466 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002467 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04002468 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002469 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002470 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002471 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002472 case MSR_IA32_P5_MC_ADDR:
2473 case MSR_IA32_P5_MC_TYPE:
2474 case MSR_IA32_MCG_CAP:
2475 case MSR_IA32_MCG_CTL:
2476 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002477 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002478 return get_msr_mce(vcpu, msr_info->index, &msr_info->data);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002479 case MSR_K7_CLK_CTL:
2480 /*
2481 * Provide expected ramp-up count for K7. All other
2482 * are set to zero, indicating minimum divisors for
2483 * every field.
2484 *
2485 * This prevents guest kernels on AMD host with CPU
2486 * type 6, model 8 and higher from exploding due to
2487 * the rdmsr failing.
2488 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002489 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002490 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002491 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002492 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2493 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002494 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine83d5882015-07-03 15:01:34 +03002495 return kvm_hv_get_msr_common(vcpu,
2496 msr_info->index, &msr_info->data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002497 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002498 case MSR_IA32_BBL_CR_CTL3:
2499 /* This legacy MSR exists but isn't fully documented in current
2500 * silicon. It is however accessed by winxp in very narrow
2501 * scenarios where it sets bit #19, itself documented as
2502 * a "reserved" bit. Best effort attempt to source coherent
2503 * read data here should the balance of the register be
2504 * interpreted by the guest:
2505 *
2506 * L2 cache control register 3: 64GB range, 256KB size,
2507 * enabled, latency 0x1, configured
2508 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002509 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05002510 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002511 case MSR_AMD64_OSVW_ID_LENGTH:
2512 if (!guest_cpuid_has_osvw(vcpu))
2513 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002514 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002515 break;
2516 case MSR_AMD64_OSVW_STATUS:
2517 if (!guest_cpuid_has_osvw(vcpu))
2518 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002519 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002520 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002521 default:
Wei Huangc6702c92015-06-19 13:44:45 +02002522 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002523 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002524 if (!ignore_msrs) {
Bandan Dasae0f5492016-11-15 01:36:18 -05002525 vcpu_debug_ratelimited(vcpu, "unhandled rdmsr: 0x%x\n",
2526 msr_info->index);
Andre Przywaraed85c062009-06-25 12:36:49 +02002527 return 1;
2528 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002529 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index);
2530 msr_info->data = 0;
Andre Przywaraed85c062009-06-25 12:36:49 +02002531 }
2532 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002533 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002534 return 0;
2535}
2536EXPORT_SYMBOL_GPL(kvm_get_msr_common);
2537
Carsten Otte313a3dc2007-10-11 19:16:52 +02002538/*
2539 * Read or write a bunch of msrs. All parameters are kernel addresses.
2540 *
2541 * @return number of msrs set successfully.
2542 */
2543static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2544 struct kvm_msr_entry *entries,
2545 int (*do_msr)(struct kvm_vcpu *vcpu,
2546 unsigned index, u64 *data))
2547{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002548 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002549
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002550 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002551 for (i = 0; i < msrs->nmsrs; ++i)
2552 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2553 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002554 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002555
Carsten Otte313a3dc2007-10-11 19:16:52 +02002556 return i;
2557}
2558
2559/*
2560 * Read or write a bunch of msrs. Parameters are user addresses.
2561 *
2562 * @return number of msrs set successfully.
2563 */
2564static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2565 int (*do_msr)(struct kvm_vcpu *vcpu,
2566 unsigned index, u64 *data),
2567 int writeback)
2568{
2569 struct kvm_msrs msrs;
2570 struct kvm_msr_entry *entries;
2571 int r, n;
2572 unsigned size;
2573
2574 r = -EFAULT;
2575 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2576 goto out;
2577
2578 r = -E2BIG;
2579 if (msrs.nmsrs >= MAX_IO_MSRS)
2580 goto out;
2581
Carsten Otte313a3dc2007-10-11 19:16:52 +02002582 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002583 entries = memdup_user(user_msrs->entries, size);
2584 if (IS_ERR(entries)) {
2585 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002586 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002587 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02002588
2589 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2590 if (r < 0)
2591 goto out_free;
2592
2593 r = -EFAULT;
2594 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2595 goto out_free;
2596
2597 r = n;
2598
2599out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002600 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002601out:
2602 return r;
2603}
2604
Alexander Graf784aa3d2014-07-14 18:27:35 +02002605int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002606{
2607 int r;
2608
2609 switch (ext) {
2610 case KVM_CAP_IRQCHIP:
2611 case KVM_CAP_HLT:
2612 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002613 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002614 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002615 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002616 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002617 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002618 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002619 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002620 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002621 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002622 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002623 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002624 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03002625 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002626 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002627 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002628 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002629 case KVM_CAP_XEN_HVM:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002630 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002631 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002632 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002633 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002634 case KVM_CAP_HYPERV_SYNIC:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002635 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002636 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002637 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002638 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002639 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002640 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002641 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002642 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01002643 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05002644 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01002645 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03002646 case KVM_CAP_ENABLE_CAP_VM:
2647 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02002648 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07002649 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01002650 case KVM_CAP_IMMEDIATE_EXIT:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002651 r = 1;
2652 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01002653 case KVM_CAP_ADJUST_CLOCK:
2654 r = KVM_CLOCK_TSC_STABLE;
2655 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02002656 case KVM_CAP_X86_SMM:
2657 /* SMBASE is usually relocated above 1M on modern chipsets,
2658 * and SMM handlers might indeed rely on 4G segment limits,
2659 * so do not report SMM to be available if real mode is
2660 * emulated via vm86 mode. Still, do not go to great lengths
2661 * to avoid userspace's usage of the feature, because it is a
2662 * fringe case that is not enabled except via specific settings
2663 * of the module parameters.
2664 */
2665 r = kvm_x86_ops->cpu_has_high_real_mode_segbase();
2666 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002667 case KVM_CAP_VAPIC:
2668 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2669 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002670 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002671 r = KVM_SOFT_MAX_VCPUS;
2672 break;
2673 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002674 r = KVM_MAX_VCPUS;
2675 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002676 case KVM_CAP_NR_MEMSLOTS:
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07002677 r = KVM_USER_MEM_SLOTS;
Avi Kivitya988b912008-02-20 11:59:20 +02002678 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002679 case KVM_CAP_PV_MMU: /* obsolete */
2680 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002681 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002682 case KVM_CAP_MCE:
2683 r = KVM_MAX_MCE_BANKS;
2684 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002685 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02002686 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002687 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002688 case KVM_CAP_TSC_CONTROL:
2689 r = kvm_has_tsc_control;
2690 break;
Radim Krčmář371313132016-07-12 22:09:27 +02002691 case KVM_CAP_X2APIC_API:
2692 r = KVM_X2APIC_API_VALID_FLAGS;
2693 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002694 default:
2695 r = 0;
2696 break;
2697 }
2698 return r;
2699
2700}
2701
Carsten Otte043405e2007-10-10 17:16:19 +02002702long kvm_arch_dev_ioctl(struct file *filp,
2703 unsigned int ioctl, unsigned long arg)
2704{
2705 void __user *argp = (void __user *)arg;
2706 long r;
2707
2708 switch (ioctl) {
2709 case KVM_GET_MSR_INDEX_LIST: {
2710 struct kvm_msr_list __user *user_msr_list = argp;
2711 struct kvm_msr_list msr_list;
2712 unsigned n;
2713
2714 r = -EFAULT;
2715 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2716 goto out;
2717 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002718 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Carsten Otte043405e2007-10-10 17:16:19 +02002719 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2720 goto out;
2721 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002722 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002723 goto out;
2724 r = -EFAULT;
2725 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2726 num_msrs_to_save * sizeof(u32)))
2727 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002728 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002729 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002730 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02002731 goto out;
2732 r = 0;
2733 break;
2734 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002735 case KVM_GET_SUPPORTED_CPUID:
2736 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02002737 struct kvm_cpuid2 __user *cpuid_arg = argp;
2738 struct kvm_cpuid2 cpuid;
2739
2740 r = -EFAULT;
2741 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2742 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002743
2744 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
2745 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02002746 if (r)
2747 goto out;
2748
2749 r = -EFAULT;
2750 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2751 goto out;
2752 r = 0;
2753 break;
2754 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002755 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
Huang Ying890ca9a2009-05-11 16:48:15 +08002756 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002757 if (copy_to_user(argp, &kvm_mce_cap_supported,
2758 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08002759 goto out;
2760 r = 0;
2761 break;
2762 }
Carsten Otte043405e2007-10-10 17:16:19 +02002763 default:
2764 r = -EINVAL;
2765 }
2766out:
2767 return r;
2768}
2769
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002770static void wbinvd_ipi(void *garbage)
2771{
2772 wbinvd();
2773}
2774
2775static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2776{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06002777 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002778}
2779
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002780static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2781{
2782 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
2783}
2784
Carsten Otte313a3dc2007-10-11 19:16:52 +02002785void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2786{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002787 /* Address WBINVD may be executed by guest */
2788 if (need_emulate_wbinvd(vcpu)) {
2789 if (kvm_x86_ops->has_wbinvd_exit())
2790 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2791 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2792 smp_call_function_single(vcpu->cpu,
2793 wbinvd_ipi, NULL, 1);
2794 }
2795
Carsten Otte313a3dc2007-10-11 19:16:52 +02002796 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002797
2798 /* Apply any externally detected TSC adjustments (due to suspend) */
2799 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
2800 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
2801 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002802 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002803 }
2804
Zachary Amsden48434c202010-08-19 22:07:24 -10002805 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002806 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002807 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10002808 if (tsc_delta < 0)
2809 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07002810
Zachary Amsdenc2855452010-09-18 14:38:15 -10002811 if (check_tsc_unstable()) {
Haozhong Zhang07c14192015-10-20 15:39:05 +08002812 u64 offset = kvm_compute_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002813 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002814 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002815 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002816 }
Wanpeng Lie12c8f32016-08-30 16:14:00 +08002817 if (kvm_lapic_hv_timer_in_use(vcpu) &&
2818 kvm_x86_ops->set_hv_timer(vcpu,
Wanpeng Li498f8162016-10-24 18:23:11 +08002819 kvm_get_lapic_target_expiration_tsc(vcpu)))
Wanpeng Lie12c8f32016-08-30 16:14:00 +08002820 kvm_lapic_switch_to_sw_timer(vcpu);
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02002821 /*
2822 * On a host with synchronized TSC, there is no need to update
2823 * kvmclock on vcpu->cpu migration
2824 */
2825 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002826 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002827 if (vcpu->cpu != cpu)
2828 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002829 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002830 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002831
Glauber Costac9aaa892011-07-11 15:28:14 -04002832 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002833}
2834
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002835static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
2836{
2837 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2838 return;
2839
2840 vcpu->arch.st.steal.preempted = 1;
2841
Cao, Leibbd64112017-02-03 20:04:35 +00002842 kvm_vcpu_write_guest_offset_cached(vcpu, &vcpu->arch.st.stime,
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002843 &vcpu->arch.st.steal.preempted,
2844 offsetof(struct kvm_steal_time, preempted),
2845 sizeof(vcpu->arch.st.steal.preempted));
2846}
2847
Carsten Otte313a3dc2007-10-11 19:16:52 +02002848void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2849{
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002850 int idx;
Andrea Arcangeli931f2612016-12-17 18:43:52 +01002851 /*
2852 * Disable page faults because we're in atomic context here.
2853 * kvm_write_guest_offset_cached() would call might_fault()
2854 * that relies on pagefault_disable() to tell if there's a
2855 * bug. NOTE: the write to guest memory may not go through if
2856 * during postcopy live migration or if there's heavy guest
2857 * paging.
2858 */
2859 pagefault_disable();
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002860 /*
2861 * kvm_memslots() will be called by
2862 * kvm_write_guest_offset_cached() so take the srcu lock.
2863 */
2864 idx = srcu_read_lock(&vcpu->kvm->srcu);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002865 kvm_steal_time_set_preempted(vcpu);
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002866 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Andrea Arcangeli931f2612016-12-17 18:43:52 +01002867 pagefault_enable();
Avi Kivity02daab22009-12-30 12:40:26 +02002868 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002869 kvm_put_guest_fpu(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002870 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02002871}
2872
Carsten Otte313a3dc2007-10-11 19:16:52 +02002873static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2874 struct kvm_lapic_state *s)
2875{
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01002876 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
Andrey Smetanind62caab2015-11-10 15:36:33 +03002877 kvm_x86_ops->sync_pir_to_irr(vcpu);
2878
Radim Krčmářa92e2542016-07-12 22:09:22 +02002879 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002880}
2881
2882static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2883 struct kvm_lapic_state *s)
2884{
Radim Krčmářa92e2542016-07-12 22:09:22 +02002885 int r;
2886
2887 r = kvm_apic_set_state(vcpu, s);
2888 if (r)
2889 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002890 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002891
2892 return 0;
2893}
2894
Matt Gingell127a4572015-11-17 17:32:05 +01002895static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
2896{
2897 return (!lapic_in_kernel(vcpu) ||
2898 kvm_apic_accept_pic_intr(vcpu));
2899}
2900
Matt Gingell782d4222015-11-16 15:26:00 -08002901/*
2902 * if userspace requested an interrupt window, check that the
2903 * interrupt window is open.
2904 *
2905 * No need to exit to userspace if we already have an interrupt queued.
2906 */
2907static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
2908{
2909 return kvm_arch_interrupt_allowed(vcpu) &&
2910 !kvm_cpu_has_interrupt(vcpu) &&
2911 !kvm_event_needs_reinjection(vcpu) &&
2912 kvm_cpu_accept_dm_intr(vcpu);
2913}
2914
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002915static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2916 struct kvm_interrupt *irq)
2917{
Chen Gang02cdb502013-02-27 11:33:25 +08002918 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002919 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002920
2921 if (!irqchip_in_kernel(vcpu->kvm)) {
2922 kvm_queue_interrupt(vcpu, irq->irq, false);
2923 kvm_make_request(KVM_REQ_EVENT, vcpu);
2924 return 0;
2925 }
2926
2927 /*
2928 * With in-kernel LAPIC, we only use this to inject EXTINT, so
2929 * fail for in-kernel 8259.
2930 */
2931 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002932 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002933
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002934 if (vcpu->arch.pending_external_vector != -1)
2935 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002936
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002937 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08002938 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002939 return 0;
2940}
2941
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002942static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2943{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002944 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002945
2946 return 0;
2947}
2948
Paolo Bonzinif0778252015-04-01 15:06:40 +02002949static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
2950{
Paolo Bonzini64d60672015-05-07 11:36:11 +02002951 kvm_make_request(KVM_REQ_SMI, vcpu);
2952
Paolo Bonzinif0778252015-04-01 15:06:40 +02002953 return 0;
2954}
2955
Avi Kivityb209749f2007-10-22 16:50:39 +02002956static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2957 struct kvm_tpr_access_ctl *tac)
2958{
2959 if (tac->flags)
2960 return -EINVAL;
2961 vcpu->arch.tpr_access_reporting = !!tac->enabled;
2962 return 0;
2963}
2964
Huang Ying890ca9a2009-05-11 16:48:15 +08002965static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
2966 u64 mcg_cap)
2967{
2968 int r;
2969 unsigned bank_num = mcg_cap & 0xff, bank;
2970
2971 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02002972 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08002973 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002974 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08002975 goto out;
2976 r = 0;
2977 vcpu->arch.mcg_cap = mcg_cap;
2978 /* Init IA32_MCG_CTL to all 1s */
2979 if (mcg_cap & MCG_CTL_P)
2980 vcpu->arch.mcg_ctl = ~(u64)0;
2981 /* Init IA32_MCi_CTL to all 1s */
2982 for (bank = 0; bank < bank_num; bank++)
2983 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002984
2985 if (kvm_x86_ops->setup_mce)
2986 kvm_x86_ops->setup_mce(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002987out:
2988 return r;
2989}
2990
2991static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
2992 struct kvm_x86_mce *mce)
2993{
2994 u64 mcg_cap = vcpu->arch.mcg_cap;
2995 unsigned bank_num = mcg_cap & 0xff;
2996 u64 *banks = vcpu->arch.mce_banks;
2997
2998 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
2999 return -EINVAL;
3000 /*
3001 * if IA32_MCG_CTL is not all 1s, the uncorrected error
3002 * reporting is disabled
3003 */
3004 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
3005 vcpu->arch.mcg_ctl != ~(u64)0)
3006 return 0;
3007 banks += 4 * mce->bank;
3008 /*
3009 * if IA32_MCi_CTL is not all 1s, the uncorrected error
3010 * reporting is disabled for the bank
3011 */
3012 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
3013 return 0;
3014 if (mce->status & MCI_STATUS_UC) {
3015 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02003016 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003017 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08003018 return 0;
3019 }
3020 if (banks[1] & MCI_STATUS_VAL)
3021 mce->status |= MCI_STATUS_OVER;
3022 banks[2] = mce->addr;
3023 banks[3] = mce->misc;
3024 vcpu->arch.mcg_status = mce->mcg_status;
3025 banks[1] = mce->status;
3026 kvm_queue_exception(vcpu, MC_VECTOR);
3027 } else if (!(banks[1] & MCI_STATUS_VAL)
3028 || !(banks[1] & MCI_STATUS_UC)) {
3029 if (banks[1] & MCI_STATUS_VAL)
3030 mce->status |= MCI_STATUS_OVER;
3031 banks[2] = mce->addr;
3032 banks[3] = mce->misc;
3033 banks[1] = mce->status;
3034 } else
3035 banks[1] |= MCI_STATUS_OVER;
3036 return 0;
3037}
3038
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003039static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
3040 struct kvm_vcpu_events *events)
3041{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003042 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01003043 events->exception.injected =
3044 vcpu->arch.exception.pending &&
3045 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003046 events->exception.nr = vcpu->arch.exception.nr;
3047 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003048 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003049 events->exception.error_code = vcpu->arch.exception.error_code;
3050
Jan Kiszka03b82a32010-02-15 10:45:41 +01003051 events->interrupt.injected =
3052 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003053 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01003054 events->interrupt.soft = 0;
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02003055 events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003056
3057 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003058 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003059 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003060 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003061
Jan Kiszka66450a22013-03-13 12:42:34 +01003062 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003063
Paolo Bonzinif0778252015-04-01 15:06:40 +02003064 events->smi.smm = is_smm(vcpu);
3065 events->smi.pending = vcpu->arch.smi_pending;
3066 events->smi.smm_inside_nmi =
3067 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
3068 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
3069
Jan Kiszkadab4b912009-12-06 18:24:15 +01003070 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02003071 | KVM_VCPUEVENT_VALID_SHADOW
3072 | KVM_VCPUEVENT_VALID_SMM);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003073 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003074}
3075
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003076static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags);
3077
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003078static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
3079 struct kvm_vcpu_events *events)
3080{
Jan Kiszkadab4b912009-12-06 18:24:15 +01003081 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01003082 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02003083 | KVM_VCPUEVENT_VALID_SHADOW
3084 | KVM_VCPUEVENT_VALID_SMM))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003085 return -EINVAL;
3086
Paolo Bonzini78e546c2016-06-01 14:09:20 +02003087 if (events->exception.injected &&
Jim Mattson28d06352017-04-05 09:14:40 -07003088 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR ||
3089 is_guest_mode(vcpu)))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02003090 return -EINVAL;
3091
David Hildenbrand28bf2882017-03-23 11:46:03 +01003092 /* INITs are latched while in SMM */
3093 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
3094 (events->smi.smm || events->smi.pending) &&
3095 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
3096 return -EINVAL;
3097
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003098 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003099 vcpu->arch.exception.pending = events->exception.injected;
3100 vcpu->arch.exception.nr = events->exception.nr;
3101 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
3102 vcpu->arch.exception.error_code = events->exception.error_code;
3103
3104 vcpu->arch.interrupt.pending = events->interrupt.injected;
3105 vcpu->arch.interrupt.nr = events->interrupt.nr;
3106 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01003107 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
3108 kvm_x86_ops->set_interrupt_shadow(vcpu,
3109 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003110
3111 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01003112 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
3113 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003114 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
3115
Jan Kiszka66450a22013-03-13 12:42:34 +01003116 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003117 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01003118 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003119
Paolo Bonzinif0778252015-04-01 15:06:40 +02003120 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003121 u32 hflags = vcpu->arch.hflags;
Paolo Bonzinif0778252015-04-01 15:06:40 +02003122 if (events->smi.smm)
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003123 hflags |= HF_SMM_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02003124 else
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003125 hflags &= ~HF_SMM_MASK;
3126 kvm_set_hflags(vcpu, hflags);
3127
Paolo Bonzinif0778252015-04-01 15:06:40 +02003128 vcpu->arch.smi_pending = events->smi.pending;
3129 if (events->smi.smm_inside_nmi)
3130 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
3131 else
3132 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003133 if (lapic_in_kernel(vcpu)) {
Paolo Bonzinif0778252015-04-01 15:06:40 +02003134 if (events->smi.latched_init)
3135 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3136 else
3137 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3138 }
3139 }
3140
Avi Kivity3842d132010-07-27 12:30:24 +03003141 kvm_make_request(KVM_REQ_EVENT, vcpu);
3142
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003143 return 0;
3144}
3145
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003146static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
3147 struct kvm_debugregs *dbgregs)
3148{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003149 unsigned long val;
3150
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003151 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003152 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003153 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003154 dbgregs->dr7 = vcpu->arch.dr7;
3155 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003156 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003157}
3158
3159static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
3160 struct kvm_debugregs *dbgregs)
3161{
3162 if (dbgregs->flags)
3163 return -EINVAL;
3164
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02003165 if (dbgregs->dr6 & ~0xffffffffull)
3166 return -EINVAL;
3167 if (dbgregs->dr7 & ~0xffffffffull)
3168 return -EINVAL;
3169
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003170 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03003171 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003172 vcpu->arch.dr6 = dbgregs->dr6;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003173 kvm_update_dr6(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003174 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01003175 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003176
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003177 return 0;
3178}
3179
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003180#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
3181
3182static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
3183{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003184 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02003185 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003186 u64 valid;
3187
3188 /*
3189 * Copy legacy XSAVE area, to avoid complications with CPUID
3190 * leaves 0 and 1 in the loop below.
3191 */
3192 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
3193
3194 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01003195 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003196 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
3197
3198 /*
3199 * Copy each region from the possibly compacted offset to the
3200 * non-compacted offset.
3201 */
Dave Hansend91cab72015-09-02 16:31:26 -07003202 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003203 while (valid) {
3204 u64 feature = valid & -valid;
3205 int index = fls64(feature) - 1;
3206 void *src = get_xsave_addr(xsave, feature);
3207
3208 if (src) {
3209 u32 size, offset, ecx, edx;
3210 cpuid_count(XSTATE_CPUID, index,
3211 &size, &offset, &ecx, &edx);
3212 memcpy(dest + offset, src, size);
3213 }
3214
3215 valid -= feature;
3216 }
3217}
3218
3219static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
3220{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003221 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003222 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
3223 u64 valid;
3224
3225 /*
3226 * Copy legacy XSAVE area, to avoid complications with CPUID
3227 * leaves 0 and 1 in the loop below.
3228 */
3229 memcpy(xsave, src, XSAVE_HDR_OFFSET);
3230
3231 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02003232 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02003233 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02003234 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003235
3236 /*
3237 * Copy each region from the non-compacted offset to the
3238 * possibly compacted offset.
3239 */
Dave Hansend91cab72015-09-02 16:31:26 -07003240 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003241 while (valid) {
3242 u64 feature = valid & -valid;
3243 int index = fls64(feature) - 1;
3244 void *dest = get_xsave_addr(xsave, feature);
3245
3246 if (dest) {
3247 u32 size, offset, ecx, edx;
3248 cpuid_count(XSTATE_CPUID, index,
3249 &size, &offset, &ecx, &edx);
3250 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08003251 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003252
3253 valid -= feature;
3254 }
3255}
3256
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003257static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
3258 struct kvm_xsave *guest_xsave)
3259{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003260 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003261 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
3262 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003263 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003264 memcpy(guest_xsave->region,
Ingo Molnar7366ed72015-04-27 04:19:39 +02003265 &vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003266 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003267 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07003268 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003269 }
3270}
3271
3272static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
3273 struct kvm_xsave *guest_xsave)
3274{
3275 u64 xstate_bv =
3276 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
3277
Borislav Petkovd366bf72016-04-04 22:25:02 +02003278 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003279 /*
3280 * Here we allow setting states that are not present in
3281 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
3282 * with old userspace.
3283 */
Paolo Bonzini4ff41732014-02-24 12:15:16 +01003284 if (xstate_bv & ~kvm_supported_xcr0())
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003285 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003286 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003287 } else {
Dave Hansend91cab72015-09-02 16:31:26 -07003288 if (xstate_bv & ~XFEATURE_MASK_FPSSE)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003289 return -EINVAL;
Ingo Molnar7366ed72015-04-27 04:19:39 +02003290 memcpy(&vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003291 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003292 }
3293 return 0;
3294}
3295
3296static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
3297 struct kvm_xcrs *guest_xcrs)
3298{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003299 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003300 guest_xcrs->nr_xcrs = 0;
3301 return;
3302 }
3303
3304 guest_xcrs->nr_xcrs = 1;
3305 guest_xcrs->flags = 0;
3306 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
3307 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
3308}
3309
3310static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
3311 struct kvm_xcrs *guest_xcrs)
3312{
3313 int i, r = 0;
3314
Borislav Petkovd366bf72016-04-04 22:25:02 +02003315 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003316 return -EINVAL;
3317
3318 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
3319 return -EINVAL;
3320
3321 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
3322 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003323 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003324 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003325 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003326 break;
3327 }
3328 if (r)
3329 r = -EINVAL;
3330 return r;
3331}
3332
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003333/*
3334 * kvm_set_guest_paused() indicates to the guest kernel that it has been
3335 * stopped by the hypervisor. This function will be called from the host only.
3336 * EINVAL is returned when the host attempts to set the flag for a guest that
3337 * does not support pv clocks.
3338 */
3339static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
3340{
Andy Honig0b794592013-02-20 14:48:10 -08003341 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003342 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003343 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003344 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
3345 return 0;
3346}
3347
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003348static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
3349 struct kvm_enable_cap *cap)
3350{
3351 if (cap->flags)
3352 return -EINVAL;
3353
3354 switch (cap->cap) {
3355 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08003356 if (!irqchip_in_kernel(vcpu->kvm))
3357 return -EINVAL;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003358 return kvm_hv_activate_synic(vcpu);
3359 default:
3360 return -EINVAL;
3361 }
3362}
3363
Carsten Otte313a3dc2007-10-11 19:16:52 +02003364long kvm_arch_vcpu_ioctl(struct file *filp,
3365 unsigned int ioctl, unsigned long arg)
3366{
3367 struct kvm_vcpu *vcpu = filp->private_data;
3368 void __user *argp = (void __user *)arg;
3369 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003370 union {
3371 struct kvm_lapic_state *lapic;
3372 struct kvm_xsave *xsave;
3373 struct kvm_xcrs *xcrs;
3374 void *buffer;
3375 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003376
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003377 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003378 switch (ioctl) {
3379 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003380 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003381 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003382 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003383 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003384
Dave Hansenb772ff32008-08-11 10:01:47 -07003385 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003386 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003387 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003388 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003389 if (r)
3390 goto out;
3391 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003392 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003393 goto out;
3394 r = 0;
3395 break;
3396 }
3397 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003398 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003399 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003400 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003401 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Guo Chao18595412012-11-02 18:33:21 +08003402 if (IS_ERR(u.lapic))
3403 return PTR_ERR(u.lapic);
Sasha Levinff5c2c02011-12-04 19:36:29 +02003404
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003405 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003406 break;
3407 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003408 case KVM_INTERRUPT: {
3409 struct kvm_interrupt irq;
3410
3411 r = -EFAULT;
3412 if (copy_from_user(&irq, argp, sizeof irq))
3413 goto out;
3414 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003415 break;
3416 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003417 case KVM_NMI: {
3418 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003419 break;
3420 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02003421 case KVM_SMI: {
3422 r = kvm_vcpu_ioctl_smi(vcpu);
3423 break;
3424 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003425 case KVM_SET_CPUID: {
3426 struct kvm_cpuid __user *cpuid_arg = argp;
3427 struct kvm_cpuid cpuid;
3428
3429 r = -EFAULT;
3430 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3431 goto out;
3432 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003433 break;
3434 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003435 case KVM_SET_CPUID2: {
3436 struct kvm_cpuid2 __user *cpuid_arg = argp;
3437 struct kvm_cpuid2 cpuid;
3438
3439 r = -EFAULT;
3440 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3441 goto out;
3442 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003443 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003444 break;
3445 }
3446 case KVM_GET_CPUID2: {
3447 struct kvm_cpuid2 __user *cpuid_arg = argp;
3448 struct kvm_cpuid2 cpuid;
3449
3450 r = -EFAULT;
3451 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3452 goto out;
3453 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003454 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003455 if (r)
3456 goto out;
3457 r = -EFAULT;
3458 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3459 goto out;
3460 r = 0;
3461 break;
3462 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003463 case KVM_GET_MSRS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003464 r = msr_io(vcpu, argp, do_get_msr, 1);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003465 break;
3466 case KVM_SET_MSRS:
3467 r = msr_io(vcpu, argp, do_set_msr, 0);
3468 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003469 case KVM_TPR_ACCESS_REPORTING: {
3470 struct kvm_tpr_access_ctl tac;
3471
3472 r = -EFAULT;
3473 if (copy_from_user(&tac, argp, sizeof tac))
3474 goto out;
3475 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3476 if (r)
3477 goto out;
3478 r = -EFAULT;
3479 if (copy_to_user(argp, &tac, sizeof tac))
3480 goto out;
3481 r = 0;
3482 break;
3483 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003484 case KVM_SET_VAPIC_ADDR: {
3485 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003486 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02003487
3488 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02003489 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02003490 goto out;
3491 r = -EFAULT;
3492 if (copy_from_user(&va, argp, sizeof va))
3493 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003494 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08003495 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003496 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02003497 break;
3498 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003499 case KVM_X86_SETUP_MCE: {
3500 u64 mcg_cap;
3501
3502 r = -EFAULT;
3503 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3504 goto out;
3505 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3506 break;
3507 }
3508 case KVM_X86_SET_MCE: {
3509 struct kvm_x86_mce mce;
3510
3511 r = -EFAULT;
3512 if (copy_from_user(&mce, argp, sizeof mce))
3513 goto out;
3514 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3515 break;
3516 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003517 case KVM_GET_VCPU_EVENTS: {
3518 struct kvm_vcpu_events events;
3519
3520 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3521
3522 r = -EFAULT;
3523 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3524 break;
3525 r = 0;
3526 break;
3527 }
3528 case KVM_SET_VCPU_EVENTS: {
3529 struct kvm_vcpu_events events;
3530
3531 r = -EFAULT;
3532 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3533 break;
3534
3535 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3536 break;
3537 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003538 case KVM_GET_DEBUGREGS: {
3539 struct kvm_debugregs dbgregs;
3540
3541 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3542
3543 r = -EFAULT;
3544 if (copy_to_user(argp, &dbgregs,
3545 sizeof(struct kvm_debugregs)))
3546 break;
3547 r = 0;
3548 break;
3549 }
3550 case KVM_SET_DEBUGREGS: {
3551 struct kvm_debugregs dbgregs;
3552
3553 r = -EFAULT;
3554 if (copy_from_user(&dbgregs, argp,
3555 sizeof(struct kvm_debugregs)))
3556 break;
3557
3558 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3559 break;
3560 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003561 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003562 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003563 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003564 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003565 break;
3566
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003567 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003568
3569 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003570 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003571 break;
3572 r = 0;
3573 break;
3574 }
3575 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003576 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Guo Chao18595412012-11-02 18:33:21 +08003577 if (IS_ERR(u.xsave))
3578 return PTR_ERR(u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003579
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003580 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003581 break;
3582 }
3583 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003584 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003585 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003586 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003587 break;
3588
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003589 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003590
3591 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003592 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003593 sizeof(struct kvm_xcrs)))
3594 break;
3595 r = 0;
3596 break;
3597 }
3598 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003599 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Guo Chao18595412012-11-02 18:33:21 +08003600 if (IS_ERR(u.xcrs))
3601 return PTR_ERR(u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003602
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003603 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003604 break;
3605 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003606 case KVM_SET_TSC_KHZ: {
3607 u32 user_tsc_khz;
3608
3609 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003610 user_tsc_khz = (u32)arg;
3611
3612 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3613 goto out;
3614
Zachary Amsdencc578282012-02-03 15:43:50 -02003615 if (user_tsc_khz == 0)
3616 user_tsc_khz = tsc_khz;
3617
Haozhong Zhang381d5852015-10-20 15:39:04 +08003618 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
3619 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003620
Joerg Roedel92a1f122011-03-25 09:44:51 +01003621 goto out;
3622 }
3623 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02003624 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003625 goto out;
3626 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003627 case KVM_KVMCLOCK_CTRL: {
3628 r = kvm_set_guest_paused(vcpu);
3629 goto out;
3630 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003631 case KVM_ENABLE_CAP: {
3632 struct kvm_enable_cap cap;
3633
3634 r = -EFAULT;
3635 if (copy_from_user(&cap, argp, sizeof(cap)))
3636 goto out;
3637 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3638 break;
3639 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003640 default:
3641 r = -EINVAL;
3642 }
3643out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003644 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003645 return r;
3646}
3647
Carsten Otte5b1c1492012-01-04 10:25:23 +01003648int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3649{
3650 return VM_FAULT_SIGBUS;
3651}
3652
Carsten Otte1fe779f2007-10-29 16:08:35 +01003653static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3654{
3655 int ret;
3656
3657 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08003658 return -EINVAL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003659 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3660 return ret;
3661}
3662
Sheng Yangb927a3c2009-07-21 10:42:48 +08003663static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3664 u64 ident_addr)
3665{
3666 kvm->arch.ept_identity_map_addr = ident_addr;
3667 return 0;
3668}
3669
Carsten Otte1fe779f2007-10-29 16:08:35 +01003670static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3671 u32 kvm_nr_mmu_pages)
3672{
3673 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3674 return -EINVAL;
3675
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003676 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003677
3678 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003679 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003680
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003681 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003682 return 0;
3683}
3684
3685static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3686{
Dave Hansen39de71e2010-08-19 18:11:14 -07003687 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003688}
3689
Carsten Otte1fe779f2007-10-29 16:08:35 +01003690static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3691{
David Hildenbrand90bca052017-04-07 10:50:23 +02003692 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003693 int r;
3694
3695 r = 0;
3696 switch (chip->chip_id) {
3697 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02003698 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01003699 sizeof(struct kvm_pic_state));
3700 break;
3701 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02003702 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01003703 sizeof(struct kvm_pic_state));
3704 break;
3705 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02003706 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003707 break;
3708 default:
3709 r = -EINVAL;
3710 break;
3711 }
3712 return r;
3713}
3714
3715static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3716{
David Hildenbrand90bca052017-04-07 10:50:23 +02003717 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003718 int r;
3719
3720 r = 0;
3721 switch (chip->chip_id) {
3722 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02003723 spin_lock(&pic->lock);
3724 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01003725 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02003726 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003727 break;
3728 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02003729 spin_lock(&pic->lock);
3730 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01003731 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02003732 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003733 break;
3734 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02003735 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003736 break;
3737 default:
3738 r = -EINVAL;
3739 break;
3740 }
David Hildenbrand90bca052017-04-07 10:50:23 +02003741 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003742 return r;
3743}
3744
Sheng Yange0f63cb2008-03-04 00:50:59 +08003745static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3746{
Radim Krčmář34f39412016-03-02 22:56:50 +01003747 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
3748
3749 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
3750
3751 mutex_lock(&kps->lock);
3752 memcpy(ps, &kps->channels, sizeof(*ps));
3753 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303754 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003755}
3756
3757static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3758{
Andrew Honig01856042015-11-18 14:50:23 -08003759 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01003760 struct kvm_pit *pit = kvm->arch.vpit;
3761
3762 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01003763 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08003764 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003765 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
3766 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303767 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003768}
3769
3770static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3771{
Beth Kone9f42752009-07-07 11:50:38 -04003772 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3773 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3774 sizeof(ps->channels));
3775 ps->flags = kvm->arch.vpit->pit_state.flags;
3776 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003777 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303778 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003779}
3780
3781static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3782{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303783 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08003784 int i;
Beth Kone9f42752009-07-07 11:50:38 -04003785 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01003786 struct kvm_pit *pit = kvm->arch.vpit;
3787
3788 mutex_lock(&pit->pit_state.lock);
3789 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04003790 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3791 if (!prev_legacy && cur_legacy)
3792 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01003793 memcpy(&pit->pit_state.channels, &ps->channels,
3794 sizeof(pit->pit_state.channels));
3795 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08003796 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003797 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01003798 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01003799 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303800 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003801}
3802
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003803static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3804 struct kvm_reinject_control *control)
3805{
Radim Krčmář71474e22016-03-02 22:56:45 +01003806 struct kvm_pit *pit = kvm->arch.vpit;
3807
3808 if (!pit)
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003809 return -ENXIO;
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003810
Radim Krčmář71474e22016-03-02 22:56:45 +01003811 /* pit->pit_state.lock was overloaded to prevent userspace from getting
3812 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
3813 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
3814 */
3815 mutex_lock(&pit->pit_state.lock);
3816 kvm_pit_set_reinject(pit, control->pit_reinject);
3817 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003818
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003819 return 0;
3820}
3821
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003822/**
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003823 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
3824 * @kvm: kvm instance
3825 * @log: slot id and address to which we copy the log
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003826 *
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003827 * Steps 1-4 below provide general overview of dirty page logging. See
3828 * kvm_get_dirty_log_protect() function description for additional details.
3829 *
3830 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
3831 * always flush the TLB (step 4) even if previous step failed and the dirty
3832 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
3833 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
3834 * writes will be marked dirty for next log read.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003835 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003836 * 1. Take a snapshot of the bit and clear it if needed.
3837 * 2. Write protect the corresponding page.
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003838 * 3. Copy the snapshot to the userspace.
3839 * 4. Flush TLB's if needed.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003840 */
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003841int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003842{
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003843 bool is_dirty = false;
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003844 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003845
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003846 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003847
Kai Huang88178fd2015-01-28 10:54:27 +08003848 /*
3849 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
3850 */
3851 if (kvm_x86_ops->flush_log_dirty)
3852 kvm_x86_ops->flush_log_dirty(kvm);
3853
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003854 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003855
3856 /*
3857 * All the TLBs can be flushed out of mmu lock, see the comments in
3858 * kvm_mmu_slot_remove_write_access().
3859 */
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003860 lockdep_assert_held(&kvm->slots_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003861 if (is_dirty)
3862 kvm_flush_remote_tlbs(kvm);
3863
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003864 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003865 return r;
3866}
3867
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003868int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
3869 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003870{
3871 if (!irqchip_in_kernel(kvm))
3872 return -ENXIO;
3873
3874 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003875 irq_event->irq, irq_event->level,
3876 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003877 return 0;
3878}
3879
Nadav Amit90de4a12015-04-13 01:53:41 +03003880static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3881 struct kvm_enable_cap *cap)
3882{
3883 int r;
3884
3885 if (cap->flags)
3886 return -EINVAL;
3887
3888 switch (cap->cap) {
3889 case KVM_CAP_DISABLE_QUIRKS:
3890 kvm->arch.disabled_quirks = cap->args[0];
3891 r = 0;
3892 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07003893 case KVM_CAP_SPLIT_IRQCHIP: {
3894 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003895 r = -EINVAL;
3896 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
3897 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07003898 r = -EEXIST;
3899 if (irqchip_in_kernel(kvm))
3900 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003901 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07003902 goto split_irqchip_unlock;
David Hildenbrand637e3f82017-04-07 10:50:19 +02003903 kvm->arch.irqchip_mode = KVM_IRQCHIP_INIT_IN_PROGRESS;
Steve Rutherford49df6392015-07-29 23:21:40 -07003904 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand637e3f82017-04-07 10:50:19 +02003905 if (r) {
3906 kvm->arch.irqchip_mode = KVM_IRQCHIP_NONE;
3907 /* Pairs with smp_rmb() when reading irqchip_mode */
3908 smp_wmb();
Steve Rutherford49df6392015-07-29 23:21:40 -07003909 goto split_irqchip_unlock;
David Hildenbrand637e3f82017-04-07 10:50:19 +02003910 }
Steve Rutherford49df6392015-07-29 23:21:40 -07003911 /* Pairs with irqchip_in_kernel. */
3912 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01003913 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003914 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07003915 r = 0;
3916split_irqchip_unlock:
3917 mutex_unlock(&kvm->lock);
3918 break;
3919 }
Radim Krčmář371313132016-07-12 22:09:27 +02003920 case KVM_CAP_X2APIC_API:
3921 r = -EINVAL;
3922 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
3923 break;
3924
3925 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
3926 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02003927 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
3928 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02003929
3930 r = 0;
3931 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03003932 default:
3933 r = -EINVAL;
3934 break;
3935 }
3936 return r;
3937}
3938
Carsten Otte1fe779f2007-10-29 16:08:35 +01003939long kvm_arch_vm_ioctl(struct file *filp,
3940 unsigned int ioctl, unsigned long arg)
3941{
3942 struct kvm *kvm = filp->private_data;
3943 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003944 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003945 /*
3946 * This union makes it completely explicit to gcc-3.x
3947 * that these two variables' stack usage should be
3948 * combined, not added together.
3949 */
3950 union {
3951 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003952 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003953 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003954 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003955
3956 switch (ioctl) {
3957 case KVM_SET_TSS_ADDR:
3958 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003959 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003960 case KVM_SET_IDENTITY_MAP_ADDR: {
3961 u64 ident_addr;
3962
3963 r = -EFAULT;
3964 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3965 goto out;
3966 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08003967 break;
3968 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003969 case KVM_SET_NR_MMU_PAGES:
3970 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003971 break;
3972 case KVM_GET_NR_MMU_PAGES:
3973 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
3974 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003975 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003976 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01003977
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003978 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01003979 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003980 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01003981
Avi Kivity3e515702012-03-05 14:23:29 +02003982 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003983 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02003984 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01003985
3986 r = kvm_pic_init(kvm);
3987 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003988 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01003989
3990 r = kvm_ioapic_init(kvm);
3991 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01003992 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01003993 goto create_irqchip_unlock;
3994 }
3995
David Hildenbrand637e3f82017-04-07 10:50:19 +02003996 kvm->arch.irqchip_mode = KVM_IRQCHIP_INIT_IN_PROGRESS;
Avi Kivity399ec802008-11-19 13:58:46 +02003997 r = kvm_setup_default_irq_routing(kvm);
3998 if (r) {
David Hildenbrand637e3f82017-04-07 10:50:19 +02003999 kvm->arch.irqchip_mode = KVM_IRQCHIP_NONE;
4000 /* Pairs with smp_rmb() when reading irqchip_mode */
4001 smp_wmb();
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08004002 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01004003 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02004004 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02004005 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01004006 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02004007 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01004008 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004009 create_irqchip_unlock:
4010 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004011 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004012 }
Sheng Yang78376992008-01-28 05:10:22 +08004013 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004014 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
4015 goto create_pit;
4016 case KVM_CREATE_PIT2:
4017 r = -EFAULT;
4018 if (copy_from_user(&u.pit_config, argp,
4019 sizeof(struct kvm_pit_config)))
4020 goto out;
4021 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02004022 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02004023 r = -EEXIST;
4024 if (kvm->arch.vpit)
4025 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08004026 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004027 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08004028 if (kvm->arch.vpit)
4029 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02004030 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02004031 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08004032 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004033 case KVM_GET_IRQCHIP: {
4034 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02004035 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004036
Sasha Levinff5c2c02011-12-04 19:36:29 +02004037 chip = memdup_user(argp, sizeof(*chip));
4038 if (IS_ERR(chip)) {
4039 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004040 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004041 }
4042
Carsten Otte1fe779f2007-10-29 16:08:35 +01004043 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01004044 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07004045 goto get_irqchip_out;
4046 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
4047 if (r)
4048 goto get_irqchip_out;
4049 r = -EFAULT;
4050 if (copy_to_user(argp, chip, sizeof *chip))
4051 goto get_irqchip_out;
4052 r = 0;
4053 get_irqchip_out:
4054 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004055 break;
4056 }
4057 case KVM_SET_IRQCHIP: {
4058 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02004059 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004060
Sasha Levinff5c2c02011-12-04 19:36:29 +02004061 chip = memdup_user(argp, sizeof(*chip));
4062 if (IS_ERR(chip)) {
4063 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004064 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004065 }
4066
Carsten Otte1fe779f2007-10-29 16:08:35 +01004067 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01004068 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07004069 goto set_irqchip_out;
4070 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
4071 if (r)
4072 goto set_irqchip_out;
4073 r = 0;
4074 set_irqchip_out:
4075 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004076 break;
4077 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08004078 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08004079 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004080 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004081 goto out;
4082 r = -ENXIO;
4083 if (!kvm->arch.vpit)
4084 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07004085 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08004086 if (r)
4087 goto out;
4088 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004089 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004090 goto out;
4091 r = 0;
4092 break;
4093 }
4094 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08004095 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004096 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004097 goto out;
4098 r = -ENXIO;
4099 if (!kvm->arch.vpit)
4100 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07004101 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08004102 break;
4103 }
Beth Kone9f42752009-07-07 11:50:38 -04004104 case KVM_GET_PIT2: {
4105 r = -ENXIO;
4106 if (!kvm->arch.vpit)
4107 goto out;
4108 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
4109 if (r)
4110 goto out;
4111 r = -EFAULT;
4112 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
4113 goto out;
4114 r = 0;
4115 break;
4116 }
4117 case KVM_SET_PIT2: {
4118 r = -EFAULT;
4119 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
4120 goto out;
4121 r = -ENXIO;
4122 if (!kvm->arch.vpit)
4123 goto out;
4124 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Beth Kone9f42752009-07-07 11:50:38 -04004125 break;
4126 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004127 case KVM_REINJECT_CONTROL: {
4128 struct kvm_reinject_control control;
4129 r = -EFAULT;
4130 if (copy_from_user(&control, argp, sizeof(control)))
4131 goto out;
4132 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004133 break;
4134 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004135 case KVM_SET_BOOT_CPU_ID:
4136 r = 0;
4137 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02004138 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004139 r = -EBUSY;
4140 else
4141 kvm->arch.bsp_vcpu_id = arg;
4142 mutex_unlock(&kvm->lock);
4143 break;
Ed Swierkffde22a2009-10-15 15:21:43 -07004144 case KVM_XEN_HVM_CONFIG: {
4145 r = -EFAULT;
4146 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
4147 sizeof(struct kvm_xen_hvm_config)))
4148 goto out;
4149 r = -EINVAL;
4150 if (kvm->arch.xen_hvm_config.flags)
4151 goto out;
4152 r = 0;
4153 break;
4154 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004155 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004156 struct kvm_clock_data user_ns;
4157 u64 now_ns;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004158
4159 r = -EFAULT;
4160 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
4161 goto out;
4162
4163 r = -EINVAL;
4164 if (user_ns.flags)
4165 goto out;
4166
4167 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02004168 local_irq_disable();
Paolo Bonzini108b2492016-09-01 14:21:03 +02004169 now_ns = __get_kvmclock_ns(kvm);
4170 kvm->arch.kvmclock_offset += user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004171 local_irq_enable();
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03004172 kvm_gen_update_masterclock(kvm);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004173 break;
4174 }
4175 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004176 struct kvm_clock_data user_ns;
4177 u64 now_ns;
4178
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004179 local_irq_disable();
4180 now_ns = __get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02004181 user_ns.clock = now_ns;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004182 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
4183 local_irq_enable();
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004184 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004185
4186 r = -EFAULT;
4187 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
4188 goto out;
4189 r = 0;
4190 break;
4191 }
Nadav Amit90de4a12015-04-13 01:53:41 +03004192 case KVM_ENABLE_CAP: {
4193 struct kvm_enable_cap cap;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004194
Nadav Amit90de4a12015-04-13 01:53:41 +03004195 r = -EFAULT;
4196 if (copy_from_user(&cap, argp, sizeof(cap)))
4197 goto out;
4198 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
4199 break;
4200 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01004201 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02004202 r = -ENOTTY;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004203 }
4204out:
4205 return r;
4206}
4207
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08004208static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02004209{
4210 u32 dummy[2];
4211 unsigned i, j;
4212
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004213 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02004214 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
4215 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004216
4217 /*
4218 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004219 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004220 */
4221 switch (msrs_to_save[i]) {
4222 case MSR_IA32_BNDCFGS:
4223 if (!kvm_x86_ops->mpx_supported())
4224 continue;
4225 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004226 case MSR_TSC_AUX:
4227 if (!kvm_x86_ops->rdtscp_supported())
4228 continue;
4229 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004230 default:
4231 break;
4232 }
4233
Carsten Otte043405e2007-10-10 17:16:19 +02004234 if (j < i)
4235 msrs_to_save[j] = msrs_to_save[i];
4236 j++;
4237 }
4238 num_msrs_to_save = j;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004239
4240 for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) {
4241 switch (emulated_msrs[i]) {
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004242 case MSR_IA32_SMBASE:
4243 if (!kvm_x86_ops->cpu_has_high_real_mode_segbase())
4244 continue;
4245 break;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004246 default:
4247 break;
4248 }
4249
4250 if (j < i)
4251 emulated_msrs[j] = emulated_msrs[i];
4252 j++;
4253 }
4254 num_emulated_msrs = j;
Carsten Otte043405e2007-10-10 17:16:19 +02004255}
4256
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004257static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
4258 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004259{
Avi Kivity70252a12010-01-19 12:51:22 +02004260 int handled = 0;
4261 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004262
Avi Kivity70252a12010-01-19 12:51:22 +02004263 do {
4264 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004265 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004266 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
4267 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004268 break;
4269 handled += n;
4270 addr += n;
4271 len -= n;
4272 v += n;
4273 } while (len);
4274
4275 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004276}
4277
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004278static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004279{
Avi Kivity70252a12010-01-19 12:51:22 +02004280 int handled = 0;
4281 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004282
Avi Kivity70252a12010-01-19 12:51:22 +02004283 do {
4284 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004285 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004286 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
4287 addr, n, v))
4288 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004289 break;
4290 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
4291 handled += n;
4292 addr += n;
4293 len -= n;
4294 v += n;
4295 } while (len);
4296
4297 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004298}
4299
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004300static void kvm_set_segment(struct kvm_vcpu *vcpu,
4301 struct kvm_segment *var, int seg)
4302{
4303 kvm_x86_ops->set_segment(vcpu, var, seg);
4304}
4305
4306void kvm_get_segment(struct kvm_vcpu *vcpu,
4307 struct kvm_segment *var, int seg)
4308{
4309 kvm_x86_ops->get_segment(vcpu, var, seg);
4310}
4311
Paolo Bonzini54987b72014-09-02 13:23:06 +02004312gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
4313 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004314{
4315 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004316
4317 BUG_ON(!mmu_is_nested(vcpu));
4318
4319 /* NPT walks are always user-walks */
4320 access |= PFERR_USER_MASK;
Paolo Bonzini54987b72014-09-02 13:23:06 +02004321 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004322
4323 return t_gpa;
4324}
4325
Avi Kivityab9ae312010-11-22 17:53:26 +02004326gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
4327 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004328{
4329 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02004330 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004331}
4332
Avi Kivityab9ae312010-11-22 17:53:26 +02004333 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
4334 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004335{
4336 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4337 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004338 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004339}
4340
Avi Kivityab9ae312010-11-22 17:53:26 +02004341gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
4342 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004343{
4344 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4345 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004346 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004347}
4348
4349/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02004350gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
4351 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004352{
Avi Kivityab9ae312010-11-22 17:53:26 +02004353 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004354}
4355
4356static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
4357 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004358 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004359{
4360 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004361 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004362
4363 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004364 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02004365 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004366 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02004367 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004368 int ret;
4369
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004370 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004371 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004372 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
4373 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004374 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004375 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004376 goto out;
4377 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01004378
Izik Eidus77c20022008-12-29 01:42:19 +02004379 bytes -= toread;
4380 data += toread;
4381 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004382 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004383out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004384 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004385}
Izik Eidus77c20022008-12-29 01:42:19 +02004386
Gleb Natapov1871c602010-02-10 14:21:32 +02004387/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03004388static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
4389 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004390 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004391{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004392 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004393 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004394 unsigned offset;
4395 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004396
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004397 /* Inline kvm_read_guest_virt_helper for speed. */
4398 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
4399 exception);
4400 if (unlikely(gpa == UNMAPPED_GVA))
4401 return X86EMUL_PROPAGATE_FAULT;
4402
4403 offset = addr & (PAGE_SIZE-1);
4404 if (WARN_ON(offset + bytes > PAGE_SIZE))
4405 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004406 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
4407 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004408 if (unlikely(ret < 0))
4409 return X86EMUL_IO_NEEDED;
4410
4411 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02004412}
4413
Nadav Har'El064aea72011-05-25 23:04:56 +03004414int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004415 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004416 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004417{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004418 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004419 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004420
Gleb Natapov1871c602010-02-10 14:21:32 +02004421 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004422 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004423}
Nadav Har'El064aea72011-05-25 23:04:56 +03004424EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004425
Avi Kivity0f65dd72011-04-20 13:37:53 +03004426static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4427 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004428 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004429{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004430 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004431 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004432}
4433
Radim Krčmář7a036a62015-10-30 16:36:24 +01004434static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
4435 unsigned long addr, void *val, unsigned int bytes)
4436{
4437 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4438 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
4439
4440 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
4441}
4442
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004443int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004444 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004445 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004446 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004447{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004448 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004449 void *data = val;
4450 int r = X86EMUL_CONTINUE;
4451
4452 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004453 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4454 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004455 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004456 unsigned offset = addr & (PAGE_SIZE-1);
4457 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4458 int ret;
4459
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004460 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004461 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004462 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02004463 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004464 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004465 goto out;
4466 }
4467
4468 bytes -= towrite;
4469 data += towrite;
4470 addr += towrite;
4471 }
4472out:
4473 return r;
4474}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004475EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004476
Tom Lendacky0f89b202016-12-14 14:59:23 -05004477static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4478 gpa_t gpa, bool write)
4479{
4480 /* For APIC access vmexit */
4481 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4482 return 1;
4483
4484 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
4485 trace_vcpu_match_mmio(gva, gpa, write, true);
4486 return 1;
4487 }
4488
4489 return 0;
4490}
4491
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004492static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4493 gpa_t *gpa, struct x86_exception *exception,
4494 bool write)
4495{
Avi Kivity97d64b72012-09-12 14:52:00 +03004496 u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
4497 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004498
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004499 /*
4500 * currently PKRU is only applied to ept enabled guest so
4501 * there is no pkey in EPT page table for L1 guest or EPT
4502 * shadow page table for L2 guest.
4503 */
Avi Kivity97d64b72012-09-12 14:52:00 +03004504 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08004505 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004506 vcpu->arch.access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004507 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4508 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004509 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004510 return 1;
4511 }
4512
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004513 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4514
4515 if (*gpa == UNMAPPED_GVA)
4516 return -1;
4517
Tom Lendacky0f89b202016-12-14 14:59:23 -05004518 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004519}
4520
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004521int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004522 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004523{
4524 int ret;
4525
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004526 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004527 if (ret < 0)
4528 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004529 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004530 return 1;
4531}
4532
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004533struct read_write_emulator_ops {
4534 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4535 int bytes);
4536 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4537 void *val, int bytes);
4538 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4539 int bytes, void *val);
4540 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4541 void *val, int bytes);
4542 bool write;
4543};
4544
4545static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4546{
4547 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004548 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Avi Kivityf78146b2012-04-18 19:22:47 +03004549 vcpu->mmio_fragments[0].gpa, *(u64 *)val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004550 vcpu->mmio_read_completed = 0;
4551 return 1;
4552 }
4553
4554 return 0;
4555}
4556
4557static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4558 void *val, int bytes)
4559{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004560 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004561}
4562
4563static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4564 void *val, int bytes)
4565{
4566 return emulator_write_phys(vcpu, gpa, val, bytes);
4567}
4568
4569static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4570{
4571 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4572 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4573}
4574
4575static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4576 void *val, int bytes)
4577{
4578 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4579 return X86EMUL_IO_NEEDED;
4580}
4581
4582static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4583 void *val, int bytes)
4584{
Avi Kivityf78146b2012-04-18 19:22:47 +03004585 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
4586
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004587 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004588 return X86EMUL_CONTINUE;
4589}
4590
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004591static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004592 .read_write_prepare = read_prepare,
4593 .read_write_emulate = read_emulate,
4594 .read_write_mmio = vcpu_mmio_read,
4595 .read_write_exit_mmio = read_exit_mmio,
4596};
4597
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004598static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004599 .read_write_emulate = write_emulate,
4600 .read_write_mmio = write_mmio,
4601 .read_write_exit_mmio = write_exit_mmio,
4602 .write = true,
4603};
4604
Xiao Guangrong22388a32011-07-13 14:32:31 +08004605static int emulator_read_write_onepage(unsigned long addr, void *val,
4606 unsigned int bytes,
4607 struct x86_exception *exception,
4608 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004609 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004610{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004611 gpa_t gpa;
4612 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004613 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03004614 struct kvm_mmio_fragment *frag;
Tom Lendacky0f89b202016-12-14 14:59:23 -05004615 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
4616
4617 /*
4618 * If the exit was due to a NPF we may already have a GPA.
4619 * If the GPA is present, use it to avoid the GVA to GPA table walk.
4620 * Note, this cannot be used on string operations since string
4621 * operation using rep will only have the initial GPA from the NPF
4622 * occurred.
4623 */
4624 if (vcpu->arch.gpa_available &&
4625 emulator_can_use_gpa(ctxt) &&
4626 vcpu_is_mmio_gpa(vcpu, addr, exception->address, write) &&
4627 (addr & ~PAGE_MASK) == (exception->address & ~PAGE_MASK)) {
4628 gpa = exception->address;
4629 goto mmio;
4630 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004631
4632 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004633
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004634 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004635 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004636
4637 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004638 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004639 goto mmio;
4640
Xiao Guangrong22388a32011-07-13 14:32:31 +08004641 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004642 return X86EMUL_CONTINUE;
4643
4644mmio:
4645 /*
4646 * Is this MMIO handled locally?
4647 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004648 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004649 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004650 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004651
Avi Kivity70252a12010-01-19 12:51:22 +02004652 gpa += handled;
4653 bytes -= handled;
4654 val += handled;
4655
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004656 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
4657 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
4658 frag->gpa = gpa;
4659 frag->data = val;
4660 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03004661 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004662}
4663
Xiubo Li52eb5a62015-03-13 17:39:45 +08004664static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
4665 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004666 void *val, unsigned int bytes,
4667 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004668 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004669{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004670 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03004671 gpa_t gpa;
4672 int rc;
4673
4674 if (ops->read_write_prepare &&
4675 ops->read_write_prepare(vcpu, val, bytes))
4676 return X86EMUL_CONTINUE;
4677
4678 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004679
Carsten Ottebbd9b642007-10-30 18:44:21 +01004680 /* Crossing a page boundary? */
4681 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03004682 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004683
4684 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004685 rc = emulator_read_write_onepage(addr, val, now, exception,
4686 vcpu, ops);
4687
Carsten Ottebbd9b642007-10-30 18:44:21 +01004688 if (rc != X86EMUL_CONTINUE)
4689 return rc;
4690 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02004691 if (ctxt->mode != X86EMUL_MODE_PROT64)
4692 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004693 val += now;
4694 bytes -= now;
4695 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004696
Avi Kivityf78146b2012-04-18 19:22:47 +03004697 rc = emulator_read_write_onepage(addr, val, bytes, exception,
4698 vcpu, ops);
4699 if (rc != X86EMUL_CONTINUE)
4700 return rc;
4701
4702 if (!vcpu->mmio_nr_fragments)
4703 return rc;
4704
4705 gpa = vcpu->mmio_fragments[0].gpa;
4706
4707 vcpu->mmio_needed = 1;
4708 vcpu->mmio_cur_fragment = 0;
4709
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004710 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03004711 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
4712 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4713 vcpu->run->mmio.phys_addr = gpa;
4714
4715 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004716}
4717
4718static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4719 unsigned long addr,
4720 void *val,
4721 unsigned int bytes,
4722 struct x86_exception *exception)
4723{
4724 return emulator_read_write(ctxt, addr, val, bytes,
4725 exception, &read_emultor);
4726}
4727
Xiubo Li52eb5a62015-03-13 17:39:45 +08004728static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004729 unsigned long addr,
4730 const void *val,
4731 unsigned int bytes,
4732 struct x86_exception *exception)
4733{
4734 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4735 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004736}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004737
Avi Kivitydaea3e72010-03-15 13:59:54 +02004738#define CMPXCHG_TYPE(t, ptr, old, new) \
4739 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4740
4741#ifdef CONFIG_X86_64
4742# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4743#else
4744# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004745 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004746#endif
4747
Avi Kivity0f65dd72011-04-20 13:37:53 +03004748static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4749 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004750 const void *old,
4751 const void *new,
4752 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004753 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004754{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004755 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004756 gpa_t gpa;
4757 struct page *page;
4758 char *kaddr;
4759 bool exchanged;
4760
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004761 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004762 if (bytes > 8 || (bytes & (bytes - 1)))
4763 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004764
Avi Kivitydaea3e72010-03-15 13:59:54 +02004765 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004766
Avi Kivitydaea3e72010-03-15 13:59:54 +02004767 if (gpa == UNMAPPED_GVA ||
4768 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4769 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004770
Avi Kivitydaea3e72010-03-15 13:59:54 +02004771 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4772 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004773
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004774 page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +08004775 if (is_error_page(page))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08004776 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004777
Cong Wang8fd75e12011-11-25 23:14:17 +08004778 kaddr = kmap_atomic(page);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004779 kaddr += offset_in_page(gpa);
4780 switch (bytes) {
4781 case 1:
4782 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4783 break;
4784 case 2:
4785 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4786 break;
4787 case 4:
4788 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4789 break;
4790 case 8:
4791 exchanged = CMPXCHG64(kaddr, old, new);
4792 break;
4793 default:
4794 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004795 }
Cong Wang8fd75e12011-11-25 23:14:17 +08004796 kunmap_atomic(kaddr);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004797 kvm_release_page_dirty(page);
4798
4799 if (!exchanged)
4800 return X86EMUL_CMPXCHG_FAILED;
4801
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004802 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004803 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004804
4805 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004806
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004807emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004808 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004809
Avi Kivity0f65dd72011-04-20 13:37:53 +03004810 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004811}
4812
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004813static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4814{
4815 /* TODO: String I/O for in kernel device */
4816 int r;
4817
4818 if (vcpu->arch.pio.in)
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004819 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004820 vcpu->arch.pio.size, pd);
4821 else
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004822 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004823 vcpu->arch.pio.port, vcpu->arch.pio.size,
4824 pd);
4825 return r;
4826}
4827
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004828static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4829 unsigned short port, void *val,
4830 unsigned int count, bool in)
4831{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004832 vcpu->arch.pio.port = port;
4833 vcpu->arch.pio.in = in;
4834 vcpu->arch.pio.count = count;
4835 vcpu->arch.pio.size = size;
4836
4837 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4838 vcpu->arch.pio.count = 0;
4839 return 1;
4840 }
4841
4842 vcpu->run->exit_reason = KVM_EXIT_IO;
4843 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4844 vcpu->run->io.size = size;
4845 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4846 vcpu->run->io.count = count;
4847 vcpu->run->io.port = port;
4848
4849 return 0;
4850}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004851
Avi Kivityca1d4a92011-04-20 13:37:53 +03004852static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4853 int size, unsigned short port, void *val,
4854 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004855{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004856 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004857 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004858
Gleb Natapov79729952010-03-18 15:20:24 +02004859 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004860 goto data_avail;
4861
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004862 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4863 if (ret) {
4864data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004865 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004866 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02004867 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004868 return 1;
4869 }
4870
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004871 return 0;
4872}
4873
Avi Kivityca1d4a92011-04-20 13:37:53 +03004874static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4875 int size, unsigned short port,
4876 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004877{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004878 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4879
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004880 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004881 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004882 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004883}
4884
Carsten Ottebbd9b642007-10-30 18:44:21 +01004885static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4886{
4887 return kvm_x86_ops->get_segment_base(vcpu, seg);
4888}
4889
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004890static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004891{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004892 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004893}
4894
Jiang Biaoae6a2372016-11-07 08:54:51 +08004895static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004896{
4897 if (!need_emulate_wbinvd(vcpu))
4898 return X86EMUL_CONTINUE;
4899
4900 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004901 int cpu = get_cpu();
4902
4903 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004904 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4905 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004906 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004907 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004908 } else
4909 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004910 return X86EMUL_CONTINUE;
4911}
Joel Schopp5cb56052015-03-02 13:43:31 -06004912
4913int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4914{
Kyle Huey6affcbe2016-11-29 12:40:40 -08004915 kvm_emulate_wbinvd_noskip(vcpu);
4916 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06004917}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004918EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4919
Joel Schopp5cb56052015-03-02 13:43:31 -06004920
4921
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004922static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4923{
Joel Schopp5cb56052015-03-02 13:43:31 -06004924 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004925}
4926
Xiubo Li52eb5a62015-03-13 17:39:45 +08004927static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
4928 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004929{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004930 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004931}
4932
Xiubo Li52eb5a62015-03-13 17:39:45 +08004933static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
4934 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004935{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004936
Avi Kivity717746e2011-04-20 13:37:53 +03004937 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004938}
4939
Gleb Natapov52a46612010-03-18 15:20:03 +02004940static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4941{
4942 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4943}
4944
Avi Kivity717746e2011-04-20 13:37:53 +03004945static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004946{
Avi Kivity717746e2011-04-20 13:37:53 +03004947 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004948 unsigned long value;
4949
4950 switch (cr) {
4951 case 0:
4952 value = kvm_read_cr0(vcpu);
4953 break;
4954 case 2:
4955 value = vcpu->arch.cr2;
4956 break;
4957 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004958 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004959 break;
4960 case 4:
4961 value = kvm_read_cr4(vcpu);
4962 break;
4963 case 8:
4964 value = kvm_get_cr8(vcpu);
4965 break;
4966 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004967 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02004968 return 0;
4969 }
4970
4971 return value;
4972}
4973
Avi Kivity717746e2011-04-20 13:37:53 +03004974static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02004975{
Avi Kivity717746e2011-04-20 13:37:53 +03004976 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03004977 int res = 0;
4978
Gleb Natapov52a46612010-03-18 15:20:03 +02004979 switch (cr) {
4980 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004981 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004982 break;
4983 case 2:
4984 vcpu->arch.cr2 = val;
4985 break;
4986 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004987 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004988 break;
4989 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004990 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004991 break;
4992 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004993 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004994 break;
4995 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004996 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03004997 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02004998 }
Gleb Natapov0f122442010-04-28 19:15:31 +03004999
5000 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02005001}
5002
Avi Kivity717746e2011-04-20 13:37:53 +03005003static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02005004{
Avi Kivity717746e2011-04-20 13:37:53 +03005005 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02005006}
5007
Avi Kivity4bff1e862011-04-20 13:37:53 +03005008static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005009{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005010 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005011}
5012
Avi Kivity4bff1e862011-04-20 13:37:53 +03005013static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005014{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005015 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005016}
5017
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005018static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
5019{
5020 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
5021}
5022
5023static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
5024{
5025 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
5026}
5027
Avi Kivity4bff1e862011-04-20 13:37:53 +03005028static unsigned long emulator_get_cached_segment_base(
5029 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03005030{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005031 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03005032}
5033
Avi Kivity1aa36612011-04-27 13:20:30 +03005034static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
5035 struct desc_struct *desc, u32 *base3,
5036 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005037{
5038 struct kvm_segment var;
5039
Avi Kivity4bff1e862011-04-20 13:37:53 +03005040 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03005041 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005042
Gleb Natapov378a8b02013-01-21 15:36:48 +02005043 if (var.unusable) {
5044 memset(desc, 0, sizeof(*desc));
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005045 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02005046 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005047
5048 if (var.g)
5049 var.limit >>= 12;
5050 set_desc_limit(desc, var.limit);
5051 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02005052#ifdef CONFIG_X86_64
5053 if (base3)
5054 *base3 = var.base >> 32;
5055#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005056 desc->type = var.type;
5057 desc->s = var.s;
5058 desc->dpl = var.dpl;
5059 desc->p = var.present;
5060 desc->avl = var.avl;
5061 desc->l = var.l;
5062 desc->d = var.db;
5063 desc->g = var.g;
5064
5065 return true;
5066}
5067
Avi Kivity1aa36612011-04-27 13:20:30 +03005068static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
5069 struct desc_struct *desc, u32 base3,
5070 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005071{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005072 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005073 struct kvm_segment var;
5074
Avi Kivity1aa36612011-04-27 13:20:30 +03005075 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005076 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02005077#ifdef CONFIG_X86_64
5078 var.base |= ((u64)base3) << 32;
5079#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005080 var.limit = get_desc_limit(desc);
5081 if (desc->g)
5082 var.limit = (var.limit << 12) | 0xfff;
5083 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005084 var.dpl = desc->dpl;
5085 var.db = desc->d;
5086 var.s = desc->s;
5087 var.l = desc->l;
5088 var.g = desc->g;
5089 var.avl = desc->avl;
5090 var.present = desc->p;
5091 var.unusable = !var.present;
5092 var.padding = 0;
5093
5094 kvm_set_segment(vcpu, &var, seg);
5095 return;
5096}
5097
Avi Kivity717746e2011-04-20 13:37:53 +03005098static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
5099 u32 msr_index, u64 *pdata)
5100{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005101 struct msr_data msr;
5102 int r;
5103
5104 msr.index = msr_index;
5105 msr.host_initiated = false;
5106 r = kvm_get_msr(emul_to_vcpu(ctxt), &msr);
5107 if (r)
5108 return r;
5109
5110 *pdata = msr.data;
5111 return 0;
Avi Kivity717746e2011-04-20 13:37:53 +03005112}
5113
5114static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
5115 u32 msr_index, u64 data)
5116{
Will Auld8fe8ab42012-11-29 12:42:12 -08005117 struct msr_data msr;
5118
5119 msr.data = data;
5120 msr.index = msr_index;
5121 msr.host_initiated = false;
5122 return kvm_set_msr(emul_to_vcpu(ctxt), &msr);
Avi Kivity717746e2011-04-20 13:37:53 +03005123}
5124
Paolo Bonzini64d60672015-05-07 11:36:11 +02005125static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
5126{
5127 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5128
5129 return vcpu->arch.smbase;
5130}
5131
5132static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
5133{
5134 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5135
5136 vcpu->arch.smbase = smbase;
5137}
5138
Nadav Amit67f4d422014-06-02 18:34:09 +03005139static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
5140 u32 pmc)
5141{
Wei Huangc6702c92015-06-19 13:44:45 +02005142 return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03005143}
5144
Avi Kivity222d21a2011-11-10 14:57:30 +02005145static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
5146 u32 pmc, u64 *pdata)
5147{
Wei Huangc6702c92015-06-19 13:44:45 +02005148 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02005149}
5150
Avi Kivity6c3287f2011-04-20 15:43:05 +03005151static void emulator_halt(struct x86_emulate_ctxt *ctxt)
5152{
5153 emul_to_vcpu(ctxt)->arch.halt_request = 1;
5154}
5155
Avi Kivity5037f6f2011-03-28 16:53:59 +02005156static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
5157{
5158 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03005159 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02005160}
5161
5162static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
5163{
5164 preempt_enable();
5165}
5166
Avi Kivity29535382011-04-20 13:37:53 +03005167static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005168 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005169 enum x86_intercept_stage stage)
5170{
Avi Kivity29535382011-04-20 13:37:53 +03005171 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02005172}
5173
Avi Kivity0017f932012-06-07 14:10:16 +03005174static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005175 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
5176{
Avi Kivity0017f932012-06-07 14:10:16 +03005177 kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005178}
5179
Avi Kivitydd856ef2012-08-27 23:46:17 +03005180static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
5181{
5182 return kvm_register_read(emul_to_vcpu(ctxt), reg);
5183}
5184
5185static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
5186{
5187 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
5188}
5189
Nadav Amit801806d2015-01-26 09:32:23 +02005190static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
5191{
5192 kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked);
5193}
5194
Mathias Krause0225fb52012-08-30 01:30:16 +02005195static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03005196 .read_gpr = emulator_read_gpr,
5197 .write_gpr = emulator_write_gpr,
Gleb Natapov1871c602010-02-10 14:21:32 +02005198 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005199 .write_std = kvm_write_guest_virt_system,
Radim Krčmář7a036a62015-10-30 16:36:24 +01005200 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02005201 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005202 .read_emulated = emulator_read_emulated,
5203 .write_emulated = emulator_write_emulated,
5204 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03005205 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005206 .pio_in_emulated = emulator_pio_in_emulated,
5207 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03005208 .get_segment = emulator_get_segment,
5209 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03005210 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005211 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005212 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005213 .set_gdt = emulator_set_gdt,
5214 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02005215 .get_cr = emulator_get_cr,
5216 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02005217 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03005218 .get_dr = emulator_get_dr,
5219 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02005220 .get_smbase = emulator_get_smbase,
5221 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03005222 .set_msr = emulator_set_msr,
5223 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03005224 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02005225 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03005226 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03005227 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03005228 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02005229 .get_fpu = emulator_get_fpu,
5230 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005231 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005232 .get_cpuid = emulator_get_cpuid,
Nadav Amit801806d2015-01-26 09:32:23 +02005233 .set_nmi_mask = emulator_set_nmi_mask,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005234};
5235
Gleb Natapov95cb2292010-04-28 19:15:43 +03005236static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
5237{
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005238 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03005239 /*
5240 * an sti; sti; sequence only disable interrupts for the first
5241 * instruction. So, if the last instruction, be it emulated or
5242 * not, left the system with the INT_STI flag enabled, it
5243 * means that the last instruction is an sti. We should not
5244 * leave the flag on in this case. The same goes for mov ss
5245 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005246 if (int_shadow & mask)
5247 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005248 if (unlikely(int_shadow || mask)) {
Gleb Natapov95cb2292010-04-28 19:15:43 +03005249 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005250 if (!mask)
5251 kvm_make_request(KVM_REQ_EVENT, vcpu);
5252 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03005253}
5254
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005255static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03005256{
5257 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02005258 if (ctxt->exception.vector == PF_VECTOR)
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005259 return kvm_propagate_fault(vcpu, &ctxt->exception);
5260
5261 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02005262 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
5263 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03005264 else
Avi Kivityda9cb572010-11-22 17:53:21 +02005265 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005266 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03005267}
5268
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005269static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
5270{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005271 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005272 int cs_db, cs_l;
5273
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005274 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5275
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005276 ctxt->eflags = kvm_get_rflags(vcpu);
5277 ctxt->eip = kvm_rip_read(vcpu);
5278 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
5279 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03005280 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005281 cs_db ? X86EMUL_MODE_PROT32 :
5282 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005283 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005284 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
5285 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005286 ctxt->emul_flags = vcpu->arch.hflags;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005287
Avi Kivitydd856ef2012-08-27 23:46:17 +03005288 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005289 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005290}
5291
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005292int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02005293{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005294 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02005295 int ret;
5296
5297 init_emulate_ctxt(vcpu);
5298
Avi Kivity9dac77f2011-06-01 15:34:25 +03005299 ctxt->op_bytes = 2;
5300 ctxt->ad_bytes = 2;
5301 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005302 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02005303
5304 if (ret != X86EMUL_CONTINUE)
5305 return EMULATE_FAIL;
5306
Avi Kivity9dac77f2011-06-01 15:34:25 +03005307 ctxt->eip = ctxt->_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005308 kvm_rip_write(vcpu, ctxt->eip);
5309 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02005310
5311 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005312 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02005313 else
5314 vcpu->arch.interrupt.pending = false;
5315
5316 return EMULATE_DONE;
5317}
5318EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
5319
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005320static int handle_emulation_failure(struct kvm_vcpu *vcpu)
5321{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005322 int r = EMULATE_DONE;
5323
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005324 ++vcpu->stat.insn_emulation_fail;
5325 trace_kvm_emulate_insn_failed(vcpu);
Nadav Amita2b9e6c2014-09-17 02:50:50 +03005326 if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005327 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5328 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5329 vcpu->run->internal.ndata = 0;
5330 r = EMULATE_FAIL;
5331 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005332 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005333
5334 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005335}
5336
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005337static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2,
Gleb Natapov991eebf2013-04-11 12:10:51 +03005338 bool write_fault_to_shadow_pgtable,
5339 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03005340{
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005341 gpa_t gpa = cr2;
Dan Williamsba049e92016-01-15 16:56:11 -08005342 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005343
Gleb Natapov991eebf2013-04-11 12:10:51 +03005344 if (emulation_type & EMULTYPE_NO_REEXECUTE)
5345 return false;
5346
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005347 if (!vcpu->arch.mmu.direct_map) {
5348 /*
5349 * Write permission should be allowed since only
5350 * write access need to be emulated.
5351 */
5352 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03005353
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005354 /*
5355 * If the mapping is invalid in guest, let cpu retry
5356 * it to generate fault.
5357 */
5358 if (gpa == UNMAPPED_GVA)
5359 return true;
5360 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005361
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005362 /*
5363 * Do not retry the unhandleable instruction if it faults on the
5364 * readonly host memory, otherwise it will goto a infinite loop:
5365 * retry instruction -> write #PF -> emulation fail -> retry
5366 * instruction -> ...
5367 */
5368 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005369
5370 /*
5371 * If the instruction failed on the error pfn, it can not be fixed,
5372 * report the error to userspace.
5373 */
5374 if (is_error_noslot_pfn(pfn))
5375 return false;
5376
5377 kvm_release_pfn_clean(pfn);
5378
5379 /* The instructions are well-emulated on direct mmu. */
5380 if (vcpu->arch.mmu.direct_map) {
5381 unsigned int indirect_shadow_pages;
5382
5383 spin_lock(&vcpu->kvm->mmu_lock);
5384 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
5385 spin_unlock(&vcpu->kvm->mmu_lock);
5386
5387 if (indirect_shadow_pages)
5388 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
5389
Gleb Natapova6f177e2010-07-08 12:41:12 +03005390 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005391 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005392
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005393 /*
5394 * if emulation was due to access to shadowed page table
5395 * and it failed try to unshadow page and re-enter the
5396 * guest to let CPU execute the instruction.
5397 */
5398 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005399
5400 /*
5401 * If the access faults on its page table, it can not
5402 * be fixed by unprotecting shadow page and it should
5403 * be reported to userspace.
5404 */
5405 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005406}
5407
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005408static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
5409 unsigned long cr2, int emulation_type)
5410{
5411 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5412 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
5413
5414 last_retry_eip = vcpu->arch.last_retry_eip;
5415 last_retry_addr = vcpu->arch.last_retry_addr;
5416
5417 /*
5418 * If the emulation is caused by #PF and it is non-page_table
5419 * writing instruction, it means the VM-EXIT is caused by shadow
5420 * page protected, we can zap the shadow page and retry this
5421 * instruction directly.
5422 *
5423 * Note: if the guest uses a non-page-table modifying instruction
5424 * on the PDE that points to the instruction, then we will unmap
5425 * the instruction and go to an infinite loop. So, we cache the
5426 * last retried eip and the last fault address, if we meet the eip
5427 * and the address again, we can break out of the potential infinite
5428 * loop.
5429 */
5430 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
5431
5432 if (!(emulation_type & EMULTYPE_RETRY))
5433 return false;
5434
5435 if (x86_page_table_writing_insn(ctxt))
5436 return false;
5437
5438 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
5439 return false;
5440
5441 vcpu->arch.last_retry_eip = ctxt->eip;
5442 vcpu->arch.last_retry_addr = cr2;
5443
5444 if (!vcpu->arch.mmu.direct_map)
5445 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
5446
Xiao Guangrong22368022013-01-13 23:44:12 +08005447 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005448
5449 return true;
5450}
5451
Gleb Natapov716d51a2012-09-03 15:24:26 +03005452static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
5453static int complete_emulated_pio(struct kvm_vcpu *vcpu);
5454
Paolo Bonzini64d60672015-05-07 11:36:11 +02005455static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02005456{
Paolo Bonzini64d60672015-05-07 11:36:11 +02005457 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02005458 /* This is a good place to trace that we are exiting SMM. */
5459 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
5460
Paolo Bonzinic43203c2016-06-01 22:26:00 +02005461 /* Process a latched INIT or SMI, if any. */
5462 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005463 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02005464
5465 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005466}
5467
5468static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags)
5469{
5470 unsigned changed = vcpu->arch.hflags ^ emul_flags;
5471
Paolo Bonzinia5845392015-04-01 18:18:53 +02005472 vcpu->arch.hflags = emul_flags;
Paolo Bonzini64d60672015-05-07 11:36:11 +02005473
5474 if (changed & HF_SMM_MASK)
5475 kvm_smm_changed(vcpu);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005476}
5477
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005478static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
5479 unsigned long *db)
5480{
5481 u32 dr6 = 0;
5482 int i;
5483 u32 enable, rwlen;
5484
5485 enable = dr7;
5486 rwlen = dr7 >> 16;
5487 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
5488 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
5489 dr6 |= (1 << i);
5490 return dr6;
5491}
5492
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005493static void kvm_vcpu_check_singlestep(struct kvm_vcpu *vcpu, unsigned long rflags, int *r)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005494{
5495 struct kvm_run *kvm_run = vcpu->run;
5496
5497 /*
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005498 * rflags is the old, "raw" value of the flags. The new value has
5499 * not been saved yet.
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005500 *
5501 * This is correct even for TF set by the guest, because "the
5502 * processor will not generate this exception after the instruction
5503 * that sets the TF flag".
5504 */
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005505 if (unlikely(rflags & X86_EFLAGS_TF)) {
5506 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005507 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 |
5508 DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005509 kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip;
5510 kvm_run->debug.arch.exception = DB_VECTOR;
5511 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5512 *r = EMULATE_USER_EXIT;
5513 } else {
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005514 /*
5515 * "Certain debug exceptions may clear bit 0-3. The
5516 * remaining contents of the DR6 register are never
5517 * cleared by the processor".
5518 */
5519 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005520 vcpu->arch.dr6 |= DR6_BS | DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005521 kvm_queue_exception(vcpu, DB_VECTOR);
5522 }
5523 }
5524}
5525
Kyle Huey6affcbe2016-11-29 12:40:40 -08005526int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
5527{
5528 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
5529 int r = EMULATE_DONE;
5530
5531 kvm_x86_ops->skip_emulated_instruction(vcpu);
5532 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
5533 return r == EMULATE_DONE;
5534}
5535EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
5536
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005537static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
5538{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005539 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
5540 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005541 struct kvm_run *kvm_run = vcpu->run;
5542 unsigned long eip = kvm_get_linear_rip(vcpu);
5543 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005544 vcpu->arch.guest_debug_dr7,
5545 vcpu->arch.eff_db);
5546
5547 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005548 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02005549 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005550 kvm_run->debug.arch.exception = DB_VECTOR;
5551 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5552 *r = EMULATE_USER_EXIT;
5553 return true;
5554 }
5555 }
5556
Nadav Amit4161a562014-07-17 01:19:31 +03005557 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
5558 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005559 unsigned long eip = kvm_get_linear_rip(vcpu);
5560 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005561 vcpu->arch.dr7,
5562 vcpu->arch.db);
5563
5564 if (dr6 != 0) {
5565 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005566 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005567 kvm_queue_exception(vcpu, DB_VECTOR);
5568 *r = EMULATE_DONE;
5569 return true;
5570 }
5571 }
5572
5573 return false;
5574}
5575
Andre Przywara51d8b662010-12-21 11:12:02 +01005576int x86_emulate_instruction(struct kvm_vcpu *vcpu,
5577 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01005578 int emulation_type,
5579 void *insn,
5580 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005581{
Gleb Natapov95cb2292010-04-28 19:15:43 +03005582 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005583 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005584 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005585 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005586
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005587 /*
5588 * Clear write_fault_to_shadow_pgtable here to ensure it is
5589 * never reused.
5590 */
5591 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03005592 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03005593
Sheng Yang571008d2008-01-02 14:49:22 +08005594 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005595 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005596
5597 /*
5598 * We will reenter on the same instruction since
5599 * we do not set complete_userspace_io. This does not
5600 * handle watchpoints yet, those would be handled in
5601 * the emulate_ops.
5602 */
5603 if (kvm_vcpu_check_breakpoint(vcpu, &r))
5604 return r;
5605
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005606 ctxt->interruptibility = 0;
5607 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02005608 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005609 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005610
Borislav Petkovb51e9742013-09-22 16:44:52 +02005611 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02005612
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005613 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02005614
Avi Kivitye46479f2010-04-11 13:05:16 +03005615 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02005616 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09005617 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02005618 if (emulation_type & EMULTYPE_TRAP_UD)
5619 return EMULATE_FAIL;
Gleb Natapov991eebf2013-04-11 12:10:51 +03005620 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5621 emulation_type))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005622 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005623 if (emulation_type & EMULTYPE_SKIP)
5624 return EMULATE_FAIL;
5625 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005626 }
5627 }
5628
Gleb Natapovba8afb62009-04-12 13:36:57 +03005629 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03005630 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03005631 if (ctxt->eflags & X86_EFLAGS_RF)
5632 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Gleb Natapovba8afb62009-04-12 13:36:57 +03005633 return EMULATE_DONE;
5634 }
5635
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005636 if (retry_instruction(ctxt, cr2, emulation_type))
5637 return EMULATE_DONE;
5638
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005639 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005640 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005641 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
5642 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03005643 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005644 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005645
Gleb Natapov5cd21912010-03-18 15:20:26 +02005646restart:
Tom Lendacky0f89b202016-12-14 14:59:23 -05005647 /* Save the faulting GPA (cr2) in the address field */
5648 ctxt->exception.address = cr2;
5649
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005650 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005651
Joerg Roedel775fde82011-04-04 12:39:24 +02005652 if (r == EMULATION_INTERCEPTED)
5653 return EMULATE_DONE;
5654
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005655 if (r == EMULATION_FAILED) {
Gleb Natapov991eebf2013-04-11 12:10:51 +03005656 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5657 emulation_type))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005658 return EMULATE_DONE;
5659
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005660 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005661 }
5662
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005663 if (ctxt->have_exception) {
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005664 r = EMULATE_DONE;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005665 if (inject_emulated_exception(vcpu))
5666 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005667 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02005668 if (!vcpu->arch.pio.in) {
5669 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03005670 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02005671 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005672 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005673 vcpu->arch.complete_userspace_io = complete_emulated_pio;
5674 }
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005675 r = EMULATE_USER_EXIT;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005676 } else if (vcpu->mmio_needed) {
5677 if (!vcpu->mmio_is_write)
5678 writeback = false;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005679 r = EMULATE_USER_EXIT;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005680 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005681 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03005682 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005683 else
5684 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03005685
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005686 if (writeback) {
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005687 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005688 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005689 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005690 if (vcpu->arch.hflags != ctxt->emul_flags)
5691 kvm_set_hflags(vcpu, ctxt->emul_flags);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005692 kvm_rip_write(vcpu, ctxt->eip);
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005693 if (r == EMULATE_DONE)
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005694 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
Nadav Amit38827db2014-11-02 11:54:53 +02005695 if (!ctxt->have_exception ||
5696 exception_type(ctxt->exception.vector) == EXCPT_TRAP)
5697 __kvm_set_rflags(vcpu, ctxt->eflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005698
5699 /*
5700 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
5701 * do nothing, and it will be requested again as soon as
5702 * the shadow expires. But we still need to check here,
5703 * because POPF has no interrupt shadow.
5704 */
5705 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
5706 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005707 } else
5708 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005709
Gleb Natapove85d28f2010-07-29 15:11:52 +03005710 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005711}
Andre Przywara51d8b662010-12-21 11:12:02 +01005712EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005713
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005714int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005715{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005716 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005717 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5718 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005719 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005720 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005721 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005722}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005723EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005724
Tom Lendacky8370c3d2016-11-23 12:01:50 -05005725static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
5726{
5727 unsigned long val;
5728
5729 /* We should only ever be called with arch.pio.count equal to 1 */
5730 BUG_ON(vcpu->arch.pio.count != 1);
5731
5732 /* For size less than 4 we merge, else we zero extend */
5733 val = (vcpu->arch.pio.size < 4) ? kvm_register_read(vcpu, VCPU_REGS_RAX)
5734 : 0;
5735
5736 /*
5737 * Since vcpu->arch.pio.count == 1 let emulator_pio_in_emulated perform
5738 * the copy and tracing
5739 */
5740 emulator_pio_in_emulated(&vcpu->arch.emulate_ctxt, vcpu->arch.pio.size,
5741 vcpu->arch.pio.port, &val, 1);
5742 kvm_register_write(vcpu, VCPU_REGS_RAX, val);
5743
5744 return 1;
5745}
5746
5747int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size, unsigned short port)
5748{
5749 unsigned long val;
5750 int ret;
5751
5752 /* For size less than 4 we merge, else we zero extend */
5753 val = (size < 4) ? kvm_register_read(vcpu, VCPU_REGS_RAX) : 0;
5754
5755 ret = emulator_pio_in_emulated(&vcpu->arch.emulate_ctxt, size, port,
5756 &val, 1);
5757 if (ret) {
5758 kvm_register_write(vcpu, VCPU_REGS_RAX, val);
5759 return ret;
5760 }
5761
5762 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
5763
5764 return 0;
5765}
5766EXPORT_SYMBOL_GPL(kvm_fast_pio_in);
5767
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005768static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005769{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005770 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005771 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005772}
5773
5774static void tsc_khz_changed(void *data)
5775{
5776 struct cpufreq_freqs *freq = data;
5777 unsigned long khz = 0;
5778
5779 if (data)
5780 khz = freq->new;
5781 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5782 khz = cpufreq_quick_get(raw_smp_processor_id());
5783 if (!khz)
5784 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005785 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005786}
5787
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005788static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5789 void *data)
5790{
5791 struct cpufreq_freqs *freq = data;
5792 struct kvm *kvm;
5793 struct kvm_vcpu *vcpu;
5794 int i, send_ipi = 0;
5795
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005796 /*
5797 * We allow guests to temporarily run on slowing clocks,
5798 * provided we notify them after, or to run on accelerating
5799 * clocks, provided we notify them before. Thus time never
5800 * goes backwards.
5801 *
5802 * However, we have a problem. We can't atomically update
5803 * the frequency of a given CPU from this function; it is
5804 * merely a notifier, which can be called from any CPU.
5805 * Changing the TSC frequency at arbitrary points in time
5806 * requires a recomputation of local variables related to
5807 * the TSC for each VCPU. We must flag these local variables
5808 * to be updated and be sure the update takes place with the
5809 * new frequency before any guests proceed.
5810 *
5811 * Unfortunately, the combination of hotplug CPU and frequency
5812 * change creates an intractable locking scenario; the order
5813 * of when these callouts happen is undefined with respect to
5814 * CPU hotplug, and they can race with each other. As such,
5815 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5816 * undefined; you can actually have a CPU frequency change take
5817 * place in between the computation of X and the setting of the
5818 * variable. To protect against this problem, all updates of
5819 * the per_cpu tsc_khz variable are done in an interrupt
5820 * protected IPI, and all callers wishing to update the value
5821 * must wait for a synchronous IPI to complete (which is trivial
5822 * if the caller is on the CPU already). This establishes the
5823 * necessary total order on variable updates.
5824 *
5825 * Note that because a guest time update may take place
5826 * anytime after the setting of the VCPU's request bit, the
5827 * correct TSC value must be set before the request. However,
5828 * to ensure the update actually makes it to any guest which
5829 * starts running in hardware virtualization between the set
5830 * and the acquisition of the spinlock, we must also ping the
5831 * CPU after setting the request bit.
5832 *
5833 */
5834
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005835 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5836 return 0;
5837 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5838 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005839
5840 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005841
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005842 spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005843 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005844 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005845 if (vcpu->cpu != freq->cpu)
5846 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005847 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005848 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005849 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005850 }
5851 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005852 spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005853
5854 if (freq->old < freq->new && send_ipi) {
5855 /*
5856 * We upscale the frequency. Must make the guest
5857 * doesn't see old kvmclock values while running with
5858 * the new frequency, otherwise we risk the guest sees
5859 * time go backwards.
5860 *
5861 * In case we update the frequency for another cpu
5862 * (which might be in guest context) send an interrupt
5863 * to kick the cpu out of guest context. Next time
5864 * guest context is entered kvmclock will be updated,
5865 * so the guest will not see stale values.
5866 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005867 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005868 }
5869 return 0;
5870}
5871
5872static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005873 .notifier_call = kvmclock_cpufreq_notifier
5874};
5875
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005876static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005877{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005878 tsc_khz_changed(NULL);
5879 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005880}
5881
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005882static void kvm_timer_init(void)
5883{
Zachary Amsdenc2855452010-09-18 14:38:15 -10005884 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305885
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005886 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005887#ifdef CONFIG_CPU_FREQ
5888 struct cpufreq_policy policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02005889 int cpu;
5890
Zachary Amsdenc2855452010-09-18 14:38:15 -10005891 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005892 cpu = get_cpu();
5893 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005894 if (policy.cpuinfo.max_freq)
5895 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005896 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005897#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005898 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5899 CPUFREQ_TRANSITION_NOTIFIER);
5900 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005901 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305902
Thomas Gleixner73c1b412016-12-21 20:19:54 +01005903 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005904 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005905}
5906
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005907static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5908
Gleb Natapovf5132b02011-11-10 14:57:22 +02005909int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005910{
Alex,Shi086c9852011-10-20 15:34:01 +08005911 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005912}
5913
5914static int kvm_is_user_mode(void)
5915{
5916 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005917
Alex,Shi086c9852011-10-20 15:34:01 +08005918 if (__this_cpu_read(current_vcpu))
5919 user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005920
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005921 return user_mode != 0;
5922}
5923
5924static unsigned long kvm_get_guest_ip(void)
5925{
5926 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005927
Alex,Shi086c9852011-10-20 15:34:01 +08005928 if (__this_cpu_read(current_vcpu))
5929 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005930
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005931 return ip;
5932}
5933
5934static struct perf_guest_info_callbacks kvm_guest_cbs = {
5935 .is_in_guest = kvm_is_in_guest,
5936 .is_user_mode = kvm_is_user_mode,
5937 .get_guest_ip = kvm_get_guest_ip,
5938};
5939
5940void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5941{
Alex,Shi086c9852011-10-20 15:34:01 +08005942 __this_cpu_write(current_vcpu, vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005943}
5944EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5945
5946void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5947{
Alex,Shi086c9852011-10-20 15:34:01 +08005948 __this_cpu_write(current_vcpu, NULL);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005949}
5950EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5951
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005952static void kvm_set_mmio_spte_mask(void)
5953{
5954 u64 mask;
5955 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5956
5957 /*
5958 * Set the reserved bits and the present bit of an paging-structure
5959 * entry to generate page fault with PFER.RSV = 1.
5960 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08005961 /* Mask the reserved physical address bits. */
Tiejun Chend1431482014-09-01 18:44:04 +08005962 mask = rsvd_bits(maxphyaddr, 51);
Xiao Guangrong885032b2013-06-07 16:51:23 +08005963
Xiao Guangrong885032b2013-06-07 16:51:23 +08005964 /* Set the present bit. */
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005965 mask |= 1ull;
5966
5967#ifdef CONFIG_X86_64
5968 /*
5969 * If reserved bit is not supported, clear the present bit to disable
5970 * mmio page fault.
5971 */
5972 if (maxphyaddr == 52)
5973 mask &= ~1ull;
5974#endif
5975
5976 kvm_mmu_set_mmio_spte_mask(mask);
5977}
5978
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005979#ifdef CONFIG_X86_64
5980static void pvclock_gtod_update_fn(struct work_struct *work)
5981{
Marcelo Tosattid8281992012-11-27 23:29:01 -02005982 struct kvm *kvm;
5983
5984 struct kvm_vcpu *vcpu;
5985 int i;
5986
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005987 spin_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005988 list_for_each_entry(kvm, &vm_list, vm_list)
5989 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08005990 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005991 atomic_set(&kvm_guest_has_master_clock, 0);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005992 spin_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005993}
5994
5995static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
5996
5997/*
5998 * Notification about pvclock gtod data update.
5999 */
6000static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
6001 void *priv)
6002{
6003 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
6004 struct timekeeper *tk = priv;
6005
6006 update_pvclock_gtod(tk);
6007
6008 /* disable master clock if host does not trust, or does not
6009 * use, TSC clocksource
6010 */
6011 if (gtod->clock.vclock_mode != VCLOCK_TSC &&
6012 atomic_read(&kvm_guest_has_master_clock) != 0)
6013 queue_work(system_long_wq, &pvclock_gtod_work);
6014
6015 return 0;
6016}
6017
6018static struct notifier_block pvclock_gtod_notifier = {
6019 .notifier_call = pvclock_gtod_notify,
6020};
6021#endif
6022
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006023int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02006024{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10006025 int r;
Mathias Krause6b61edf2013-06-26 20:36:23 +02006026 struct kvm_x86_ops *ops = opaque;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006027
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006028 if (kvm_x86_ops) {
6029 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006030 r = -EEXIST;
6031 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006032 }
6033
6034 if (!ops->cpu_has_kvm_support()) {
6035 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006036 r = -EOPNOTSUPP;
6037 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006038 }
6039 if (ops->disabled_by_bios()) {
6040 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006041 r = -EOPNOTSUPP;
6042 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006043 }
6044
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006045 r = -ENOMEM;
6046 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
6047 if (!shared_msrs) {
6048 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
6049 goto out;
6050 }
6051
Avi Kivity97db56c2008-01-13 13:23:56 +02006052 r = kvm_mmu_module_init();
6053 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006054 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02006055
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006056 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02006057
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006058 kvm_x86_ops = ops;
Paolo Bonzini920c8372014-03-26 15:54:00 +01006059
Sheng Yang7b523452008-04-25 21:13:50 +08006060 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Bandan Dasffb128c2016-07-12 18:18:49 -04006061 PT_DIRTY_MASK, PT64_NX_MASK, 0,
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006062 PT_PRESENT_MASK, 0);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10006063 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01006064
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08006065 perf_register_guest_info_callbacks(&kvm_guest_cbs);
6066
Borislav Petkovd366bf72016-04-04 22:25:02 +02006067 if (boot_cpu_has(X86_FEATURE_XSAVE))
Dexuan Cui2acf9232010-06-10 11:27:12 +08006068 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
6069
Gleb Natapovc5cc4212012-08-05 15:58:30 +03006070 kvm_lapic_init();
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006071#ifdef CONFIG_X86_64
6072 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
6073#endif
6074
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006075 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006076
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006077out_free_percpu:
6078 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006079out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006080 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02006081}
Hollis Blanchard8776e512007-10-31 17:24:24 -05006082
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006083void kvm_arch_exit(void)
6084{
David Matlackcef84c32016-12-16 14:30:36 -08006085 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08006086 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
6087
Jan Kiszka888d2562009-04-17 19:24:58 +02006088 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
6089 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
6090 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00006091 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006092#ifdef CONFIG_X86_64
6093 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
6094#endif
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006095 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006096 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006097 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006098}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006099
Joel Schopp5cb56052015-03-02 13:43:31 -06006100int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006101{
6102 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02006103 if (lapic_in_kernel(vcpu)) {
Avi Kivitya4535292008-04-13 17:54:35 +03006104 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006105 return 1;
6106 } else {
6107 vcpu->run->exit_reason = KVM_EXIT_HLT;
6108 return 0;
6109 }
6110}
Joel Schopp5cb56052015-03-02 13:43:31 -06006111EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
6112
6113int kvm_emulate_halt(struct kvm_vcpu *vcpu)
6114{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006115 int ret = kvm_skip_emulated_instruction(vcpu);
6116 /*
6117 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
6118 * KVM_EXIT_DEBUG here.
6119 */
6120 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06006121}
Hollis Blanchard8776e512007-10-31 17:24:24 -05006122EXPORT_SYMBOL_GPL(kvm_emulate_halt);
6123
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006124#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006125static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
6126 unsigned long clock_type)
6127{
6128 struct kvm_clock_pairing clock_pairing;
6129 struct timespec ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01006130 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006131 int ret;
6132
6133 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
6134 return -KVM_EOPNOTSUPP;
6135
6136 if (kvm_get_walltime_and_clockread(&ts, &cycle) == false)
6137 return -KVM_EOPNOTSUPP;
6138
6139 clock_pairing.sec = ts.tv_sec;
6140 clock_pairing.nsec = ts.tv_nsec;
6141 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
6142 clock_pairing.flags = 0;
6143
6144 ret = 0;
6145 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
6146 sizeof(struct kvm_clock_pairing)))
6147 ret = -KVM_EFAULT;
6148
6149 return ret;
6150}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006151#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006152
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306153/*
6154 * kvm_pv_kick_cpu_op: Kick a vcpu.
6155 *
6156 * @apicid - apicid of vcpu to be kicked.
6157 */
6158static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
6159{
Raghavendra K T24d21662013-08-26 14:18:35 +05306160 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306161
Raghavendra K T24d21662013-08-26 14:18:35 +05306162 lapic_irq.shorthand = 0;
6163 lapic_irq.dest_mode = 0;
6164 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06006165 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306166
Raghavendra K T24d21662013-08-26 14:18:35 +05306167 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08006168 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306169}
6170
Andrey Smetanind62caab2015-11-10 15:36:33 +03006171void kvm_vcpu_deactivate_apicv(struct kvm_vcpu *vcpu)
6172{
6173 vcpu->arch.apicv_active = false;
6174 kvm_x86_ops->refresh_apicv_exec_ctrl(vcpu);
6175}
6176
Hollis Blanchard8776e512007-10-31 17:24:24 -05006177int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
6178{
6179 unsigned long nr, a0, a1, a2, a3, ret;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006180 int op_64_bit, r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006181
Kyle Huey6affcbe2016-11-29 12:40:40 -08006182 r = kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06006183
Gleb Natapov55cd8e52010-01-17 15:51:22 +02006184 if (kvm_hv_hypercall_enabled(vcpu->kvm))
6185 return kvm_hv_hypercall(vcpu);
6186
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006187 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
6188 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
6189 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
6190 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
6191 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006192
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006193 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006194
Nadav Amita449c7a2014-06-18 17:19:24 +03006195 op_64_bit = is_64_bit_mode(vcpu);
6196 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05006197 nr &= 0xFFFFFFFF;
6198 a0 &= 0xFFFFFFFF;
6199 a1 &= 0xFFFFFFFF;
6200 a2 &= 0xFFFFFFFF;
6201 a3 &= 0xFFFFFFFF;
6202 }
6203
Jan Kiszka07708c42009-08-03 18:43:28 +02006204 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
6205 ret = -KVM_EPERM;
6206 goto out;
6207 }
6208
Hollis Blanchard8776e512007-10-31 17:24:24 -05006209 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02006210 case KVM_HC_VAPIC_POLL_IRQ:
6211 ret = 0;
6212 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306213 case KVM_HC_KICK_CPU:
6214 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
6215 ret = 0;
6216 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006217#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006218 case KVM_HC_CLOCK_PAIRING:
6219 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
6220 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006221#endif
Hollis Blanchard8776e512007-10-31 17:24:24 -05006222 default:
6223 ret = -KVM_ENOSYS;
6224 break;
6225 }
Jan Kiszka07708c42009-08-03 18:43:28 +02006226out:
Nadav Amita449c7a2014-06-18 17:19:24 +03006227 if (!op_64_bit)
6228 ret = (u32)ret;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006229 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05306230 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05006231 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006232}
6233EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
6234
Jan Kiszkab6785de2012-09-20 07:43:17 +02006235static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006236{
Avi Kivityd6aa1002011-04-20 15:47:13 +03006237 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006238 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006239 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006240
Hollis Blanchard8776e512007-10-31 17:24:24 -05006241 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006242
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01006243 return emulator_write_emulated(ctxt, rip, instruction, 3,
6244 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006245}
6246
Avi Kivity851ba692009-08-24 11:10:17 +03006247static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006248{
Matt Gingell782d4222015-11-16 15:26:00 -08006249 return vcpu->run->request_interrupt_window &&
6250 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006251}
6252
Avi Kivity851ba692009-08-24 11:10:17 +03006253static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006254{
Avi Kivity851ba692009-08-24 11:10:17 +03006255 struct kvm_run *kvm_run = vcpu->run;
6256
Jan Kiszka91586a32009-10-05 13:07:21 +02006257 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02006258 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006259 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006260 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01006261 kvm_run->ready_for_interrupt_injection =
6262 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08006263 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006264}
6265
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006266static void update_cr8_intercept(struct kvm_vcpu *vcpu)
6267{
6268 int max_irr, tpr;
6269
6270 if (!kvm_x86_ops->update_cr8_intercept)
6271 return;
6272
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006273 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03006274 return;
6275
Andrey Smetanind62caab2015-11-10 15:36:33 +03006276 if (vcpu->arch.apicv_active)
6277 return;
6278
Gleb Natapov8db3baa2009-05-11 13:35:54 +03006279 if (!vcpu->arch.apic->vapic_addr)
6280 max_irr = kvm_lapic_find_highest_irr(vcpu);
6281 else
6282 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006283
6284 if (max_irr != -1)
6285 max_irr >>= 4;
6286
6287 tpr = kvm_lapic_get_cr8(vcpu);
6288
6289 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
6290}
6291
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006292static int inject_pending_event(struct kvm_vcpu *vcpu, bool req_int_win)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006293{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006294 int r;
6295
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006296 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006297 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02006298 trace_kvm_inj_exception(vcpu->arch.exception.nr,
6299 vcpu->arch.exception.has_error_code,
6300 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03006301
6302 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
6303 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
6304 X86_EFLAGS_RF);
6305
Nadav Amit6bdf0662014-09-30 20:49:14 +03006306 if (vcpu->arch.exception.nr == DB_VECTOR &&
6307 (vcpu->arch.dr7 & DR7_GD)) {
6308 vcpu->arch.dr7 &= ~DR7_GD;
6309 kvm_update_dr7(vcpu);
6310 }
6311
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006312 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
6313 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02006314 vcpu->arch.exception.error_code,
6315 vcpu->arch.exception.reinject);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006316 return 0;
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006317 }
6318
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006319 if (vcpu->arch.nmi_injected) {
6320 kvm_x86_ops->set_nmi(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006321 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006322 }
6323
6324 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006325 kvm_x86_ops->set_irq(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006326 return 0;
6327 }
6328
6329 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6330 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6331 if (r != 0)
6332 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006333 }
6334
6335 /* try to inject new event if pending */
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006336 if (vcpu->arch.smi_pending && !is_smm(vcpu)) {
6337 vcpu->arch.smi_pending = false;
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006338 enter_smm(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006339 } else if (vcpu->arch.nmi_pending && kvm_x86_ops->nmi_allowed(vcpu)) {
Yuki Shibuya321c5652016-03-24 05:17:03 +00006340 --vcpu->arch.nmi_pending;
6341 vcpu->arch.nmi_injected = true;
6342 kvm_x86_ops->set_nmi(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006343 } else if (kvm_cpu_has_injectable_intr(vcpu)) {
Bandan Das9242b5b2014-07-08 00:30:23 -04006344 /*
6345 * Because interrupts can be injected asynchronously, we are
6346 * calling check_nested_events again here to avoid a race condition.
6347 * See https://lkml.org/lkml/2014/7/2/60 for discussion about this
6348 * proposal and current concerns. Perhaps we should be setting
6349 * KVM_REQ_EVENT only on certain events and not unconditionally?
6350 */
6351 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6352 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6353 if (r != 0)
6354 return r;
6355 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006356 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006357 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
6358 false);
6359 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006360 }
6361 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006362
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006363 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006364}
6365
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006366static void process_nmi(struct kvm_vcpu *vcpu)
6367{
6368 unsigned limit = 2;
6369
6370 /*
6371 * x86 is limited to one NMI running, and one NMI pending after it.
6372 * If an NMI is already in progress, limit further NMIs to just one.
6373 * Otherwise, allow two (and we'll inject the first one immediately).
6374 */
6375 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
6376 limit = 1;
6377
6378 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
6379 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
6380 kvm_make_request(KVM_REQ_EVENT, vcpu);
6381}
6382
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006383#define put_smstate(type, buf, offset, val) \
6384 *(type *)((buf) + (offset) - 0x7e00) = val
6385
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006386static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006387{
6388 u32 flags = 0;
6389 flags |= seg->g << 23;
6390 flags |= seg->db << 22;
6391 flags |= seg->l << 21;
6392 flags |= seg->avl << 20;
6393 flags |= seg->present << 15;
6394 flags |= seg->dpl << 13;
6395 flags |= seg->s << 12;
6396 flags |= seg->type << 8;
6397 return flags;
6398}
6399
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006400static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006401{
6402 struct kvm_segment seg;
6403 int offset;
6404
6405 kvm_get_segment(vcpu, &seg, n);
6406 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
6407
6408 if (n < 3)
6409 offset = 0x7f84 + n * 12;
6410 else
6411 offset = 0x7f2c + (n - 3) * 12;
6412
6413 put_smstate(u32, buf, offset + 8, seg.base);
6414 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006415 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006416}
6417
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006418#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006419static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006420{
6421 struct kvm_segment seg;
6422 int offset;
6423 u16 flags;
6424
6425 kvm_get_segment(vcpu, &seg, n);
6426 offset = 0x7e00 + n * 16;
6427
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006428 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006429 put_smstate(u16, buf, offset, seg.selector);
6430 put_smstate(u16, buf, offset + 2, flags);
6431 put_smstate(u32, buf, offset + 4, seg.limit);
6432 put_smstate(u64, buf, offset + 8, seg.base);
6433}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006434#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006435
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006436static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006437{
6438 struct desc_ptr dt;
6439 struct kvm_segment seg;
6440 unsigned long val;
6441 int i;
6442
6443 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
6444 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
6445 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
6446 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
6447
6448 for (i = 0; i < 8; i++)
6449 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
6450
6451 kvm_get_dr(vcpu, 6, &val);
6452 put_smstate(u32, buf, 0x7fcc, (u32)val);
6453 kvm_get_dr(vcpu, 7, &val);
6454 put_smstate(u32, buf, 0x7fc8, (u32)val);
6455
6456 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6457 put_smstate(u32, buf, 0x7fc4, seg.selector);
6458 put_smstate(u32, buf, 0x7f64, seg.base);
6459 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006460 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006461
6462 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6463 put_smstate(u32, buf, 0x7fc0, seg.selector);
6464 put_smstate(u32, buf, 0x7f80, seg.base);
6465 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006466 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006467
6468 kvm_x86_ops->get_gdt(vcpu, &dt);
6469 put_smstate(u32, buf, 0x7f74, dt.address);
6470 put_smstate(u32, buf, 0x7f70, dt.size);
6471
6472 kvm_x86_ops->get_idt(vcpu, &dt);
6473 put_smstate(u32, buf, 0x7f58, dt.address);
6474 put_smstate(u32, buf, 0x7f54, dt.size);
6475
6476 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006477 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006478
6479 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
6480
6481 /* revision id */
6482 put_smstate(u32, buf, 0x7efc, 0x00020000);
6483 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
6484}
6485
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006486static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006487{
6488#ifdef CONFIG_X86_64
6489 struct desc_ptr dt;
6490 struct kvm_segment seg;
6491 unsigned long val;
6492 int i;
6493
6494 for (i = 0; i < 16; i++)
6495 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
6496
6497 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
6498 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
6499
6500 kvm_get_dr(vcpu, 6, &val);
6501 put_smstate(u64, buf, 0x7f68, val);
6502 kvm_get_dr(vcpu, 7, &val);
6503 put_smstate(u64, buf, 0x7f60, val);
6504
6505 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
6506 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
6507 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
6508
6509 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
6510
6511 /* revision id */
6512 put_smstate(u32, buf, 0x7efc, 0x00020064);
6513
6514 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
6515
6516 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6517 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006518 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006519 put_smstate(u32, buf, 0x7e94, seg.limit);
6520 put_smstate(u64, buf, 0x7e98, seg.base);
6521
6522 kvm_x86_ops->get_idt(vcpu, &dt);
6523 put_smstate(u32, buf, 0x7e84, dt.size);
6524 put_smstate(u64, buf, 0x7e88, dt.address);
6525
6526 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6527 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006528 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006529 put_smstate(u32, buf, 0x7e74, seg.limit);
6530 put_smstate(u64, buf, 0x7e78, seg.base);
6531
6532 kvm_x86_ops->get_gdt(vcpu, &dt);
6533 put_smstate(u32, buf, 0x7e64, dt.size);
6534 put_smstate(u64, buf, 0x7e68, dt.address);
6535
6536 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006537 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006538#else
6539 WARN_ON_ONCE(1);
6540#endif
6541}
6542
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006543static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02006544{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006545 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02006546 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006547 char buf[512];
6548 u32 cr0;
6549
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006550 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
6551 vcpu->arch.hflags |= HF_SMM_MASK;
6552 memset(buf, 0, 512);
6553 if (guest_cpuid_has_longmode(vcpu))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006554 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006555 else
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006556 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006557
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006558 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006559
6560 if (kvm_x86_ops->get_nmi_mask(vcpu))
6561 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
6562 else
6563 kvm_x86_ops->set_nmi_mask(vcpu, true);
6564
6565 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
6566 kvm_rip_write(vcpu, 0x8000);
6567
6568 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
6569 kvm_x86_ops->set_cr0(vcpu, cr0);
6570 vcpu->arch.cr0 = cr0;
6571
6572 kvm_x86_ops->set_cr4(vcpu, 0);
6573
Paolo Bonzini18c36262015-08-07 12:27:54 +02006574 /* Undocumented: IDT limit is set to zero on entry to SMM. */
6575 dt.address = dt.size = 0;
6576 kvm_x86_ops->set_idt(vcpu, &dt);
6577
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006578 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
6579
6580 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
6581 cs.base = vcpu->arch.smbase;
6582
6583 ds.selector = 0;
6584 ds.base = 0;
6585
6586 cs.limit = ds.limit = 0xffffffff;
6587 cs.type = ds.type = 0x3;
6588 cs.dpl = ds.dpl = 0;
6589 cs.db = ds.db = 0;
6590 cs.s = ds.s = 1;
6591 cs.l = ds.l = 0;
6592 cs.g = ds.g = 1;
6593 cs.avl = ds.avl = 0;
6594 cs.present = ds.present = 1;
6595 cs.unusable = ds.unusable = 0;
6596 cs.padding = ds.padding = 0;
6597
6598 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
6599 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
6600 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
6601 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
6602 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
6603 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
6604
6605 if (guest_cpuid_has_longmode(vcpu))
6606 kvm_x86_ops->set_efer(vcpu, 0);
6607
6608 kvm_update_cpuid(vcpu);
6609 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006610}
6611
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006612static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006613{
6614 vcpu->arch.smi_pending = true;
6615 kvm_make_request(KVM_REQ_EVENT, vcpu);
6616}
6617
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01006618void kvm_make_scan_ioapic_request(struct kvm *kvm)
6619{
6620 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
6621}
6622
Yang Zhang3d81bc72013-04-11 19:25:13 +08006623static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006624{
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006625 u64 eoi_exit_bitmap[4];
6626
Yang Zhang3d81bc72013-04-11 19:25:13 +08006627 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
6628 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006629
Andrey Smetanin63086302015-11-10 15:36:32 +03006630 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006631
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07006632 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03006633 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006634 else {
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006635 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
Andrey Smetanind62caab2015-11-10 15:36:33 +03006636 kvm_x86_ops->sync_pir_to_irr(vcpu);
Andrey Smetanin63086302015-11-10 15:36:32 +03006637 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006638 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006639 bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors,
6640 vcpu_to_synic(vcpu)->vec_bitmap, 256);
6641 kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006642}
6643
Radim Krčmářa70656b2014-09-18 12:38:36 -04006644static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu)
6645{
6646 ++vcpu->stat.tlb_flush;
6647 kvm_x86_ops->tlb_flush(vcpu);
6648}
6649
Tang Chen4256f432014-09-24 15:57:54 +08006650void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
6651{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006652 struct page *page = NULL;
6653
Paolo Bonzini35754c92015-07-29 12:05:37 +02006654 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02006655 return;
6656
Tang Chen4256f432014-09-24 15:57:54 +08006657 if (!kvm_x86_ops->set_apic_access_page_addr)
6658 return;
6659
Tang Chenc24ae0d2014-09-24 15:57:58 +08006660 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Andrea Arcangelie8fd5e92015-05-08 14:32:56 +02006661 if (is_error_page(page))
6662 return;
Tang Chenc24ae0d2014-09-24 15:57:58 +08006663 kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page));
6664
6665 /*
6666 * Do not pin apic access page in memory, the MMU notifier
6667 * will call us again if it is migrated or swapped out.
6668 */
6669 put_page(page);
Tang Chen4256f432014-09-24 15:57:54 +08006670}
6671EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page);
6672
Tang Chenfe715572014-09-24 15:57:57 +08006673void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
6674 unsigned long address)
6675{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006676 /*
6677 * The physical address of apic access page is stored in the VMCS.
6678 * Update it when it becomes invalid.
6679 */
6680 if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT))
6681 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
Tang Chenfe715572014-09-24 15:57:57 +08006682}
6683
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006684/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01006685 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006686 * exiting to the userspace. Otherwise, the value will be returned to the
6687 * userspace.
6688 */
Avi Kivity851ba692009-08-24 11:10:17 +03006689static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006690{
6691 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08006692 bool req_int_win =
6693 dm_request_for_irq_injection(vcpu) &&
6694 kvm_cpu_accept_dm_intr(vcpu);
6695
Jan Kiszka730dca42013-04-28 10:50:52 +02006696 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006697
Avi Kivity3e007502010-06-23 14:26:18 +03006698 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03006699 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05006700 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006701 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03006702 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006703 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
6704 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03006705 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
6706 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10006707 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
6708 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10006709 if (unlikely(r))
6710 goto out;
6711 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006712 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03006713 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006714 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Radim Krčmářa70656b2014-09-18 12:38:36 -04006715 kvm_vcpu_flush_tlb(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006716 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006717 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02006718 r = 0;
6719 goto out;
6720 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006721 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006722 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01006723 r = 0;
6724 goto out;
6725 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006726 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
6727 /* Page is swapped out. Do synthetic halt */
6728 vcpu->arch.apf.halted = true;
6729 r = 1;
6730 goto out;
6731 }
Glauber Costac9aaa892011-07-11 15:28:14 -04006732 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
6733 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006734 if (kvm_check_request(KVM_REQ_SMI, vcpu))
6735 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006736 if (kvm_check_request(KVM_REQ_NMI, vcpu))
6737 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006738 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006739 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006740 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006741 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07006742 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
6743 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
6744 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03006745 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07006746 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
6747 vcpu->run->eoi.vector =
6748 vcpu->arch.pending_ioapic_eoi;
6749 r = 0;
6750 goto out;
6751 }
6752 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08006753 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
6754 vcpu_scan_ioapic(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08006755 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
6756 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03006757 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
6758 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6759 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
6760 r = 0;
6761 goto out;
6762 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03006763 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
6764 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6765 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
6766 r = 0;
6767 goto out;
6768 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03006769 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
6770 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
6771 vcpu->run->hyperv = vcpu->arch.hyperv.exit;
6772 r = 0;
6773 goto out;
6774 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03006775
6776 /*
6777 * KVM_REQ_HV_STIMER has to be processed after
6778 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
6779 * depend on the guest clock being up-to-date
6780 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03006781 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
6782 kvm_hv_process_stimers(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02006783 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006784
Avi Kivityb463a6f2010-07-20 15:06:17 +03006785 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01006786 ++vcpu->stat.req_event;
Jan Kiszka66450a22013-03-13 12:42:34 +01006787 kvm_apic_accept_events(vcpu);
6788 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
6789 r = 1;
6790 goto out;
6791 }
6792
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006793 if (inject_pending_event(vcpu, req_int_win) != 0)
6794 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006795 else {
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006796 /* Enable NMI/IRQ window open exits if needed.
6797 *
6798 * SMIs have two cases: 1) they can be nested, and
6799 * then there is nothing to do here because RSM will
6800 * cause a vmexit anyway; 2) or the SMI can be pending
6801 * because inject_pending_event has completed the
6802 * injection of an IRQ or NMI from the previous vmexit,
6803 * and then we request an immediate exit to inject the SMI.
6804 */
6805 if (vcpu->arch.smi_pending && !is_smm(vcpu))
6806 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006807 if (vcpu->arch.nmi_pending)
6808 kvm_x86_ops->enable_nmi_window(vcpu);
6809 if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win)
6810 kvm_x86_ops->enable_irq_window(vcpu);
6811 }
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03006812
Avi Kivity3842d132010-07-27 12:30:24 +03006813 if (kvm_lapic_enabled(vcpu)) {
6814 update_cr8_intercept(vcpu);
6815 kvm_lapic_sync_to_vapic(vcpu);
6816 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006817 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006818
Avi Kivityd8368af2012-05-14 18:07:56 +03006819 r = kvm_mmu_reload(vcpu);
6820 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006821 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03006822 }
6823
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006824 preempt_disable();
6825
6826 kvm_x86_ops->prepare_guest_switch(vcpu);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006827 kvm_load_guest_fpu(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006828
6829 /*
6830 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
6831 * IPI are then delayed after guest entry, which ensures that they
6832 * result in virtual interrupt delivery.
6833 */
6834 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006835 vcpu->mode = IN_GUEST_MODE;
6836
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006837 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6838
Lan Tianyu0f127d12016-03-13 11:10:29 +08006839 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006840 * 1) We should set ->mode before checking ->requests. Please see
6841 * the comment in kvm_make_all_cpus_request.
6842 *
6843 * 2) For APICv, we should set ->mode before checking PIR.ON. This
6844 * pairs with the memory barrier implicit in pi_test_and_set_on
6845 * (see vmx_deliver_posted_interrupt).
6846 *
6847 * 3) This also orders the write to mode from any reads to the page
6848 * tables done while the VCPU is running. Please see the comment
6849 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006850 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006851 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006852
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006853 /*
6854 * This handles the case where a posted interrupt was
6855 * notified with kvm_vcpu_kick.
6856 */
6857 if (kvm_lapic_enabled(vcpu)) {
6858 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
6859 kvm_x86_ops->sync_pir_to_irr(vcpu);
6860 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006861
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006862 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006863 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006864 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006865 smp_wmb();
6866 local_irq_enable();
6867 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006868 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006869 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006870 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006871 }
6872
David Matlackfc5b7f32016-03-30 12:24:47 -07006873 kvm_load_guest_xcr0(vcpu);
6874
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006875 if (req_immediate_exit) {
6876 kvm_make_request(KVM_REQ_EVENT, vcpu);
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006877 smp_send_reschedule(vcpu->cpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006878 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006879
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01006880 trace_kvm_entry(vcpu->vcpu_id);
6881 wait_lapic_expire(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02006882 guest_enter_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006883
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006884 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006885 set_debugreg(0, 7);
6886 set_debugreg(vcpu->arch.eff_db[0], 0);
6887 set_debugreg(vcpu->arch.eff_db[1], 1);
6888 set_debugreg(vcpu->arch.eff_db[2], 2);
6889 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006890 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03006891 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006892 }
6893
Avi Kivity851ba692009-08-24 11:10:17 +03006894 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006895
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006896 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006897 * Do this here before restoring debug registers on the host. And
6898 * since we do this before handling the vmexit, a DR access vmexit
6899 * can (a) read the correct value of the debug registers, (b) set
6900 * KVM_DEBUGREG_WONT_EXIT again.
6901 */
6902 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006903 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
6904 kvm_x86_ops->sync_dirty_debug_regs(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01006905 kvm_update_dr0123(vcpu);
6906 kvm_update_dr6(vcpu);
6907 kvm_update_dr7(vcpu);
6908 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006909 }
6910
6911 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006912 * If the guest has used debug registers, at least dr7
6913 * will be disabled while returning to the host.
6914 * If we don't have active breakpoints in the host, we don't
6915 * care about the messed up debug address registers. But if
6916 * we have some of them active, restore the old state.
6917 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01006918 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006919 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006920
Haozhong Zhang4ba76532015-10-20 15:39:07 +08006921 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10006922
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006923 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03006924 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006925
David Matlackfc5b7f32016-03-30 12:24:47 -07006926 kvm_put_guest_xcr0(vcpu);
6927
Yang Zhanga547c6d2013-04-11 19:25:10 +08006928 kvm_x86_ops->handle_external_intr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006929
6930 ++vcpu->stat.exits;
6931
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006932 guest_exit_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006933
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006934 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006935 preempt_enable();
6936
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006937 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006938
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006939 /*
6940 * Profile KVM exit RIPs:
6941 */
6942 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006943 unsigned long rip = kvm_rip_read(vcpu);
6944 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006945 }
6946
Zachary Amsdencc578282012-02-03 15:43:50 -02006947 if (unlikely(vcpu->arch.tsc_always_catchup))
6948 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02006949
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03006950 if (vcpu->arch.apic_attention)
6951 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02006952
Avi Kivity851ba692009-08-24 11:10:17 +03006953 r = kvm_x86_ops->handle_exit(vcpu);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006954 return r;
6955
6956cancel_injection:
6957 kvm_x86_ops->cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03006958 if (unlikely(vcpu->arch.apic_attention))
6959 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006960out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03006961 return r;
6962}
6963
Paolo Bonzini362c6982015-02-06 12:48:04 +01006964static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
6965{
Feng Wubf9f6ac2015-09-18 22:29:55 +08006966 if (!kvm_arch_vcpu_runnable(vcpu) &&
6967 (!kvm_x86_ops->pre_block || kvm_x86_ops->pre_block(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006968 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
6969 kvm_vcpu_block(vcpu);
6970 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006971
6972 if (kvm_x86_ops->post_block)
6973 kvm_x86_ops->post_block(vcpu);
6974
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006975 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
6976 return 1;
6977 }
Gleb Natapov09cec752009-03-23 15:11:44 +02006978
Paolo Bonzini362c6982015-02-06 12:48:04 +01006979 kvm_apic_accept_events(vcpu);
6980 switch(vcpu->arch.mp_state) {
6981 case KVM_MP_STATE_HALTED:
6982 vcpu->arch.pv.pv_unhalted = false;
6983 vcpu->arch.mp_state =
6984 KVM_MP_STATE_RUNNABLE;
6985 case KVM_MP_STATE_RUNNABLE:
6986 vcpu->arch.apf.halted = false;
6987 break;
6988 case KVM_MP_STATE_INIT_RECEIVED:
6989 break;
6990 default:
6991 return -EINTR;
6992 break;
6993 }
6994 return 1;
6995}
6996
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02006997static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
6998{
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01006999 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events)
7000 kvm_x86_ops->check_nested_events(vcpu, false);
7001
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02007002 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
7003 !vcpu->arch.apf.halted);
7004}
7005
Paolo Bonzini362c6982015-02-06 12:48:04 +01007006static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03007007{
7008 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007009 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03007010
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007011 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007012
Paolo Bonzini362c6982015-02-06 12:48:04 +01007013 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02007014 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03007015 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007016 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01007017 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007018 }
7019
Gleb Natapov09cec752009-03-23 15:11:44 +02007020 if (r <= 0)
7021 break;
7022
7023 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
7024 if (kvm_cpu_has_pending_timer(vcpu))
7025 kvm_inject_pending_timer_irqs(vcpu);
7026
Matt Gingell782d4222015-11-16 15:26:00 -08007027 if (dm_request_for_irq_injection(vcpu) &&
7028 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02007029 r = 0;
7030 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02007031 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01007032 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02007033 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02007034
7035 kvm_check_async_pf_completion(vcpu);
7036
Gleb Natapov09cec752009-03-23 15:11:44 +02007037 if (signal_pending(current)) {
7038 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03007039 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02007040 ++vcpu->stat.signal_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01007041 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02007042 }
7043 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007044 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Takuya Yoshikawac08ac062013-12-13 15:07:21 +09007045 cond_resched();
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007046 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007047 }
7048 }
7049
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007050 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007051
7052 return r;
7053}
7054
Gleb Natapov716d51a2012-09-03 15:24:26 +03007055static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
7056{
7057 int r;
7058 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
7059 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
7060 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
7061 if (r != EMULATE_DONE)
7062 return 0;
7063 return 1;
7064}
7065
7066static int complete_emulated_pio(struct kvm_vcpu *vcpu)
7067{
7068 BUG_ON(!vcpu->arch.pio.count);
7069
7070 return complete_emulated_io(vcpu);
7071}
7072
Avi Kivityf78146b2012-04-18 19:22:47 +03007073/*
7074 * Implements the following, as a state machine:
7075 *
7076 * read:
7077 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007078 * for each mmio piece in the fragment
7079 * write gpa, len
7080 * exit
7081 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03007082 * execute insn
7083 *
7084 * write:
7085 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007086 * for each mmio piece in the fragment
7087 * write gpa, len
7088 * copy data
7089 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03007090 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03007091static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02007092{
7093 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03007094 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007095 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02007096
Gleb Natapov716d51a2012-09-03 15:24:26 +03007097 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02007098
Gleb Natapov716d51a2012-09-03 15:24:26 +03007099 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007100 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
7101 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03007102 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007103 memcpy(frag->data, run->mmio.data, len);
7104
7105 if (frag->len <= 8) {
7106 /* Switch to the next fragment. */
7107 frag++;
7108 vcpu->mmio_cur_fragment++;
7109 } else {
7110 /* Go forward to the next mmio piece. */
7111 frag->data += len;
7112 frag->gpa += len;
7113 frag->len -= len;
7114 }
7115
Andrew Honiga08d3b32014-02-27 19:35:14 +01007116 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03007117 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02007118
7119 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02007120 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03007121 return 1;
7122 vcpu->mmio_read_completed = 1;
7123 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02007124 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007125
Gleb Natapov716d51a2012-09-03 15:24:26 +03007126 run->exit_reason = KVM_EXIT_MMIO;
7127 run->mmio.phys_addr = frag->gpa;
7128 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007129 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
7130 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03007131 run->mmio.is_write = vcpu->mmio_is_write;
7132 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
7133 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02007134}
7135
Gleb Natapov716d51a2012-09-03 15:24:26 +03007136
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007137int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
7138{
Ingo Molnarc5bedc62015-04-23 12:49:20 +02007139 struct fpu *fpu = &current->thread.fpu;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007140 int r;
7141 sigset_t sigsaved;
7142
Ingo Molnarc4d72e22015-04-27 07:18:17 +02007143 fpu__activate_curr(fpu);
Avi Kivitye5c30142011-01-11 12:15:54 +02007144
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007145 if (vcpu->sigset_active)
7146 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
7147
Avi Kivityac9f6dc2008-07-06 15:48:31 +03007148 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
7149 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01007150 kvm_apic_accept_events(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007151 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03007152 r = -EAGAIN;
7153 goto out;
7154 }
7155
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007156 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02007157 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007158 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
7159 r = -EINVAL;
7160 goto out;
7161 }
7162 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007163
Gleb Natapov716d51a2012-09-03 15:24:26 +03007164 if (unlikely(vcpu->arch.complete_userspace_io)) {
7165 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
7166 vcpu->arch.complete_userspace_io = NULL;
7167 r = cui(vcpu);
7168 if (r <= 0)
7169 goto out;
7170 } else
7171 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02007172
Paolo Bonzini460df4c2017-02-08 11:50:15 +01007173 if (kvm_run->immediate_exit)
7174 r = -EINTR;
7175 else
7176 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007177
7178out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03007179 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007180 if (vcpu->sigset_active)
7181 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
7182
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007183 return r;
7184}
7185
7186int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
7187{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007188 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
7189 /*
7190 * We are here if userspace calls get_regs() in the middle of
7191 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08007192 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007193 * that usually, but some bad designed PV devices (vmware
7194 * backdoor interface) need this to work
7195 */
Avi Kivitydd856ef2012-08-27 23:46:17 +03007196 emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007197 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
7198 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007199 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
7200 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
7201 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
7202 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
7203 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
7204 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
7205 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
7206 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007207#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007208 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
7209 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
7210 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
7211 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
7212 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
7213 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
7214 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
7215 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007216#endif
7217
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007218 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02007219 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007220
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007221 return 0;
7222}
7223
7224int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
7225{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007226 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
7227 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
7228
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007229 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
7230 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
7231 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
7232 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
7233 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
7234 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
7235 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
7236 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007237#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007238 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
7239 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
7240 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
7241 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
7242 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
7243 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
7244 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
7245 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007246#endif
7247
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007248 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02007249 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007250
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02007251 vcpu->arch.exception.pending = false;
7252
Avi Kivity3842d132010-07-27 12:30:24 +03007253 kvm_make_request(KVM_REQ_EVENT, vcpu);
7254
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007255 return 0;
7256}
7257
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007258void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
7259{
7260 struct kvm_segment cs;
7261
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007262 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007263 *db = cs.db;
7264 *l = cs.l;
7265}
7266EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
7267
7268int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
7269 struct kvm_sregs *sregs)
7270{
Gleb Natapov89a27f42010-02-16 10:51:48 +02007271 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007272
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007273 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7274 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7275 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7276 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7277 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7278 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007279
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007280 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7281 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007282
7283 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007284 sregs->idt.limit = dt.size;
7285 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007286 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007287 sregs->gdt.limit = dt.size;
7288 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007289
Avi Kivity4d4ec082009-12-29 18:07:30 +02007290 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007291 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007292 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02007293 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007294 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02007295 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007296 sregs->apic_base = kvm_get_apic_base(vcpu);
7297
Gleb Natapov923c61b2009-05-11 13:35:48 +03007298 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007299
Gleb Natapov36752c92009-05-11 13:35:53 +03007300 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03007301 set_bit(vcpu->arch.interrupt.nr,
7302 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03007303
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007304 return 0;
7305}
7306
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007307int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
7308 struct kvm_mp_state *mp_state)
7309{
Jan Kiszka66450a22013-03-13 12:42:34 +01007310 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307311 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
7312 vcpu->arch.pv.pv_unhalted)
7313 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
7314 else
7315 mp_state->mp_state = vcpu->arch.mp_state;
7316
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007317 return 0;
7318}
7319
7320int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
7321 struct kvm_mp_state *mp_state)
7322{
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007323 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01007324 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
7325 return -EINVAL;
7326
David Hildenbrand28bf2882017-03-23 11:46:03 +01007327 /* INITs are latched while in SMM */
7328 if ((is_smm(vcpu) || vcpu->arch.smi_pending) &&
7329 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
7330 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
7331 return -EINVAL;
7332
Jan Kiszka66450a22013-03-13 12:42:34 +01007333 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
7334 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
7335 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
7336 } else
7337 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03007338 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007339 return 0;
7340}
7341
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007342int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
7343 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007344{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007345 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007346 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007347
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007348 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007349
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007350 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007351 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02007352
Gleb Natapovc6975182010-02-18 12:15:01 +02007353 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03007354 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02007355
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007356 kvm_rip_write(vcpu, ctxt->eip);
7357 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03007358 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03007359 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02007360}
7361EXPORT_SYMBOL_GPL(kvm_task_switch);
7362
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007363int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
7364 struct kvm_sregs *sregs)
7365{
Jan Kiszka58cb6282014-01-24 16:48:44 +01007366 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007367 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007368 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02007369 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007370
Petr Matousek6d1068b2012-11-06 19:24:07 +01007371 if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE))
7372 return -EINVAL;
7373
Gleb Natapov89a27f42010-02-16 10:51:48 +02007374 dt.size = sregs->idt.limit;
7375 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007376 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007377 dt.size = sregs->gdt.limit;
7378 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007379 kvm_x86_ops->set_gdt(vcpu, &dt);
7380
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007381 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007382 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02007383 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02007384 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007385
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007386 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007387
Avi Kivityf6801df2010-01-21 15:31:50 +02007388 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007389 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Jan Kiszka58cb6282014-01-24 16:48:44 +01007390 apic_base_msr.data = sregs->apic_base;
7391 apic_base_msr.host_initiated = true;
7392 kvm_set_apic_base(vcpu, &apic_base_msr);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007393
Avi Kivity4d4ec082009-12-29 18:07:30 +02007394 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007395 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00007396 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007397
Avi Kivityfc78f512009-12-07 12:16:48 +02007398 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007399 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Huaitong Hanb9baba82016-03-22 16:51:21 +08007400 if (sregs->cr4 & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +02007401 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007402
7403 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02007404 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02007405 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02007406 mmu_reset_needed = 1;
7407 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007408 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007409
7410 if (mmu_reset_needed)
7411 kvm_mmu_reset_context(vcpu);
7412
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03007413 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03007414 pending_vec = find_first_bit(
7415 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
7416 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007417 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03007418 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007419 }
7420
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007421 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7422 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7423 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7424 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7425 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7426 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007427
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007428 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7429 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007430
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03007431 update_cr8_intercept(vcpu);
7432
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007433 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03007434 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007435 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02007436 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007437 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
7438
Avi Kivity3842d132010-07-27 12:30:24 +03007439 kvm_make_request(KVM_REQ_EVENT, vcpu);
7440
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007441 return 0;
7442}
7443
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007444int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
7445 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007446{
Jan Kiszka355be0b2009-10-03 00:31:21 +02007447 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007448 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007449
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007450 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
7451 r = -EBUSY;
7452 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03007453 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007454 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
7455 kvm_queue_exception(vcpu, DB_VECTOR);
7456 else
7457 kvm_queue_exception(vcpu, BP_VECTOR);
7458 }
7459
Jan Kiszka91586a32009-10-05 13:07:21 +02007460 /*
7461 * Read rflags as long as potentially injected trace flags are still
7462 * filtered out.
7463 */
7464 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007465
7466 vcpu->guest_debug = dbg->control;
7467 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
7468 vcpu->guest_debug = 0;
7469
7470 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007471 for (i = 0; i < KVM_NR_DB_REGS; ++i)
7472 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02007473 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007474 } else {
7475 for (i = 0; i < KVM_NR_DB_REGS; i++)
7476 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007477 }
Jan Kiszkac8639012012-09-21 05:42:55 +02007478 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007479
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007480 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
7481 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
7482 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007483
Jan Kiszka91586a32009-10-05 13:07:21 +02007484 /*
7485 * Trigger an rflags update that will inject or remove the trace
7486 * flags.
7487 */
7488 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007489
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007490 kvm_x86_ops->update_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007491
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007492 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007493
Avi Kivity2122ff52010-05-13 11:25:04 +03007494out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007495
7496 return r;
7497}
7498
7499/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08007500 * Translate a guest virtual address to a guest physical address.
7501 */
7502int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
7503 struct kvm_translation *tr)
7504{
7505 unsigned long vaddr = tr->linear_address;
7506 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007507 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007508
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007509 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02007510 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007511 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08007512 tr->physical_address = gpa;
7513 tr->valid = gpa != UNMAPPED_GVA;
7514 tr->writeable = 1;
7515 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007516
7517 return 0;
7518}
7519
Hollis Blanchardd0752062007-10-31 17:24:25 -05007520int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7521{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007522 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007523 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007524
Hollis Blanchardd0752062007-10-31 17:24:25 -05007525 memcpy(fpu->fpr, fxsave->st_space, 128);
7526 fpu->fcw = fxsave->cwd;
7527 fpu->fsw = fxsave->swd;
7528 fpu->ftwx = fxsave->twd;
7529 fpu->last_opcode = fxsave->fop;
7530 fpu->last_ip = fxsave->rip;
7531 fpu->last_dp = fxsave->rdp;
7532 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
7533
Hollis Blanchardd0752062007-10-31 17:24:25 -05007534 return 0;
7535}
7536
7537int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7538{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007539 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007540 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007541
Hollis Blanchardd0752062007-10-31 17:24:25 -05007542 memcpy(fxsave->st_space, fpu->fpr, 128);
7543 fxsave->cwd = fpu->fcw;
7544 fxsave->swd = fpu->fsw;
7545 fxsave->twd = fpu->ftwx;
7546 fxsave->fop = fpu->last_opcode;
7547 fxsave->rip = fpu->last_ip;
7548 fxsave->rdp = fpu->last_dp;
7549 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
7550
Hollis Blanchardd0752062007-10-31 17:24:25 -05007551 return 0;
7552}
7553
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007554static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007555{
Ingo Molnarbf935b02015-04-30 10:23:42 +02007556 fpstate_init(&vcpu->arch.guest_fpu.state);
Borislav Petkov782511b2016-04-04 22:25:03 +02007557 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar7366ed72015-04-27 04:19:39 +02007558 vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007559 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007560
Dexuan Cui2acf9232010-06-10 11:27:12 +08007561 /*
7562 * Ensure guest xcr0 is valid for loading
7563 */
Dave Hansend91cab72015-09-02 16:31:26 -07007564 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +08007565
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007566 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007567}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007568
7569void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
7570{
Avi Kivity2608d7a2010-01-21 15:31:45 +02007571 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007572 return;
7573
Dexuan Cui2acf9232010-06-10 11:27:12 +08007574 /*
7575 * Restore all possible states in the guest,
7576 * and assume host would use all available bits.
7577 * Guest xcr0 would be loaded later.
7578 */
Hollis Blanchardd0752062007-10-31 17:24:25 -05007579 vcpu->guest_fpu_loaded = 1;
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007580 __kernel_fpu_begin();
Ingo Molnar003e2e82015-05-25 11:59:35 +02007581 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state);
Avi Kivity0c048512010-01-21 15:31:52 +02007582 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007583}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007584
7585void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
7586{
Rik van Riel3d42de22016-10-04 20:34:35 -04007587 if (!vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007588 return;
7589
7590 vcpu->guest_fpu_loaded = 0;
Ingo Molnar4f836342015-04-27 02:53:16 +02007591 copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007592 __kernel_fpu_end();
Avi Kivityf096ed82007-11-18 13:54:33 +02007593 ++vcpu->stat.fpu_reload;
Avi Kivity0c048512010-01-21 15:31:52 +02007594 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007595}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007596
7597void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
7598{
Ido Yarivbd768e12016-10-21 12:39:57 -04007599 void *wbinvd_dirty_mask = vcpu->arch.wbinvd_dirty_mask;
7600
Glauber Costa12f9a482011-02-01 14:16:40 -05007601 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01007602
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007603 kvm_x86_ops->vcpu_free(vcpu);
Ido Yarivbd768e12016-10-21 12:39:57 -04007604 free_cpumask_var(wbinvd_dirty_mask);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007605}
7606
7607struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
7608 unsigned int id)
7609{
Liang Lic447e762015-05-21 04:41:25 +08007610 struct kvm_vcpu *vcpu;
7611
Zachary Amsden6755bae2010-08-19 22:07:22 -10007612 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
7613 printk_once(KERN_WARNING
7614 "kvm: SMP vm created on host with unstable TSC; "
7615 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08007616
7617 vcpu = kvm_x86_ops->vcpu_create(kvm, id);
7618
Liang Lic447e762015-05-21 04:41:25 +08007619 return vcpu;
Avi Kivity26e52152007-11-20 15:30:24 +02007620}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007621
Avi Kivity26e52152007-11-20 15:30:24 +02007622int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
7623{
7624 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007625
Xiao Guangrong19efffa2015-06-15 16:55:31 +08007626 kvm_vcpu_mtrr_init(vcpu);
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007627 r = vcpu_load(vcpu);
7628 if (r)
7629 return r;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007630 kvm_vcpu_reset(vcpu, false);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02007631 kvm_mmu_setup(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007632 vcpu_put(vcpu);
Avi Kivity26e52152007-11-20 15:30:24 +02007633 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007634}
7635
Dominik Dingel31928aa2014-12-04 15:47:07 +01007636void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007637{
Will Auld8fe8ab42012-11-29 12:42:12 -08007638 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01007639 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007640
Dominik Dingel31928aa2014-12-04 15:47:07 +01007641 if (vcpu_load(vcpu))
7642 return;
Will Auld8fe8ab42012-11-29 12:42:12 -08007643 msr.data = 0x0;
7644 msr.index = MSR_IA32_TSC;
7645 msr.host_initiated = true;
7646 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007647 vcpu_put(vcpu);
7648
Marcelo Tosatti630994b2015-05-12 22:42:04 -03007649 if (!kvmclock_periodic_sync)
7650 return;
7651
Andrew Jones332967a2014-02-28 12:52:55 +01007652 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
7653 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007654}
7655
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06007656void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007657{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007658 int r;
Gleb Natapov344d9582010-10-14 11:22:50 +02007659 vcpu->arch.apf.msr_val = 0;
7660
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007661 r = vcpu_load(vcpu);
7662 BUG_ON(r);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007663 kvm_mmu_unload(vcpu);
7664 vcpu_put(vcpu);
7665
7666 kvm_x86_ops->vcpu_free(vcpu);
7667}
7668
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007669void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007670{
Paolo Bonzinie69fab52015-06-04 10:44:44 +02007671 vcpu->arch.hflags = 0;
7672
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007673 vcpu->arch.smi_pending = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007674 atomic_set(&vcpu->arch.nmi_queued, 0);
7675 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007676 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03007677 kvm_clear_interrupt_queue(vcpu);
7678 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007679
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007680 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03007681 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03007682 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007683 kvm_update_dr6(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007684 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02007685 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007686
Nadav Amit11190222015-04-02 03:10:38 +03007687 vcpu->arch.cr2 = 0;
7688
Avi Kivity3842d132010-07-27 12:30:24 +03007689 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02007690 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04007691 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03007692
Glauber Costa12f9a482011-02-01 14:16:40 -05007693 kvmclock_reset(vcpu);
7694
Gleb Natapovaf585b92010-10-14 11:22:46 +02007695 kvm_clear_async_pf_completion_queue(vcpu);
7696 kvm_async_pf_hash_reset(vcpu);
7697 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007698
Paolo Bonzini64d60672015-05-07 11:36:11 +02007699 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007700 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007701 vcpu->arch.smbase = 0x30000;
7702 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02007703
Julian Stecklina66f7b722012-12-05 15:26:19 +01007704 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
7705 vcpu->arch.regs_avail = ~0;
7706 vcpu->arch.regs_dirty = ~0;
7707
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007708 kvm_x86_ops->vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007709}
7710
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01007711void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01007712{
7713 struct kvm_segment cs;
7714
7715 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
7716 cs.selector = vector << 8;
7717 cs.base = vector << 12;
7718 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
7719 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007720}
7721
Radim Krčmář13a34e02014-08-28 15:13:03 +02007722int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007723{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10007724 struct kvm *kvm;
7725 struct kvm_vcpu *vcpu;
7726 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007727 int ret;
7728 u64 local_tsc;
7729 u64 max_tsc = 0;
7730 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03007731
7732 kvm_shared_msr_cpu_online();
Radim Krčmář13a34e02014-08-28 15:13:03 +02007733 ret = kvm_x86_ops->hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007734 if (ret != 0)
7735 return ret;
7736
Andy Lutomirski4ea16362015-06-25 18:44:07 +02007737 local_tsc = rdtsc();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007738 stable = !check_tsc_unstable();
7739 list_for_each_entry(kvm, &vm_list, vm_list) {
7740 kvm_for_each_vcpu(i, vcpu, kvm) {
7741 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007742 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007743 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
7744 backwards_tsc = true;
7745 if (vcpu->arch.last_host_tsc > max_tsc)
7746 max_tsc = vcpu->arch.last_host_tsc;
7747 }
7748 }
7749 }
7750
7751 /*
7752 * Sometimes, even reliable TSCs go backwards. This happens on
7753 * platforms that reset TSC during suspend or hibernate actions, but
7754 * maintain synchronization. We must compensate. Fortunately, we can
7755 * detect that condition here, which happens early in CPU bringup,
7756 * before any KVM threads can be running. Unfortunately, we can't
7757 * bring the TSCs fully up to date with real time, as we aren't yet far
7758 * enough into CPU bringup that we know how much real time has actually
Paolo Bonzini108b2492016-09-01 14:21:03 +02007759 * elapsed; our helper function, ktime_get_boot_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007760 * variables that haven't been updated yet.
7761 *
7762 * So we simply find the maximum observed TSC above, then record the
7763 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
7764 * the adjustment will be applied. Note that we accumulate
7765 * adjustments, in case multiple suspend cycles happen before some VCPU
7766 * gets a chance to run again. In the event that no KVM threads get a
7767 * chance to run, we will miss the entire elapsed period, as we'll have
7768 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
7769 * loose cycle time. This isn't too big a deal, since the loss will be
7770 * uniform across all VCPUs (not to mention the scenario is extremely
7771 * unlikely). It is possible that a second hibernate recovery happens
7772 * much faster than a first, causing the observed TSC here to be
7773 * smaller; this would require additional padding adjustment, which is
7774 * why we set last_host_tsc to the local tsc observed here.
7775 *
7776 * N.B. - this code below runs only on platforms with reliable TSC,
7777 * as that is the only way backwards_tsc is set above. Also note
7778 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
7779 * have the same delta_cyc adjustment applied if backwards_tsc
7780 * is detected. Note further, this adjustment is only done once,
7781 * as we reset last_host_tsc on all VCPUs to stop this from being
7782 * called multiple times (one for each physical CPU bringup).
7783 *
Guo Chao4a969982012-06-28 15:17:27 +08007784 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007785 * will be compensated by the logic in vcpu_load, which sets the TSC to
7786 * catchup mode. This will catchup all VCPUs to real time, but cannot
7787 * guarantee that they stay in perfect synchronization.
7788 */
7789 if (backwards_tsc) {
7790 u64 delta_cyc = max_tsc - local_tsc;
Marcelo Tosatti16a96022014-05-14 12:43:24 -03007791 backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007792 list_for_each_entry(kvm, &vm_list, vm_list) {
7793 kvm_for_each_vcpu(i, vcpu, kvm) {
7794 vcpu->arch.tsc_offset_adjustment += delta_cyc;
7795 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007796 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007797 }
7798
7799 /*
7800 * We have to disable TSC offset matching.. if you were
7801 * booting a VM while issuing an S4 host suspend....
7802 * you may have some problem. Solving this issue is
7803 * left as an exercise to the reader.
7804 */
7805 kvm->arch.last_tsc_nsec = 0;
7806 kvm->arch.last_tsc_write = 0;
7807 }
7808
7809 }
7810 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007811}
7812
Radim Krčmář13a34e02014-08-28 15:13:03 +02007813void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007814{
Radim Krčmář13a34e02014-08-28 15:13:03 +02007815 kvm_x86_ops->hardware_disable();
7816 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007817}
7818
7819int kvm_arch_hardware_setup(void)
7820{
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007821 int r;
7822
7823 r = kvm_x86_ops->hardware_setup();
7824 if (r != 0)
7825 return r;
7826
Haozhong Zhang35181e82015-10-20 15:39:03 +08007827 if (kvm_has_tsc_control) {
7828 /*
7829 * Make sure the user can only configure tsc_khz values that
7830 * fit into a signed integer.
7831 * A min value is not calculated needed because it will always
7832 * be 1 on all machines.
7833 */
7834 u64 max = min(0x7fffffffULL,
7835 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
7836 kvm_max_guest_tsc_khz = max;
7837
Haozhong Zhangad721882015-10-20 15:39:02 +08007838 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +08007839 }
Haozhong Zhangad721882015-10-20 15:39:02 +08007840
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007841 kvm_init_msr_list();
7842 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007843}
7844
7845void kvm_arch_hardware_unsetup(void)
7846{
7847 kvm_x86_ops->hardware_unsetup();
7848}
7849
7850void kvm_arch_check_processor_compat(void *rtn)
7851{
7852 kvm_x86_ops->check_processor_compatibility(rtn);
7853}
7854
Paolo Bonzinid71ba782015-07-29 11:56:48 +02007855bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
7856{
7857 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
7858}
7859EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
7860
7861bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
7862{
7863 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
7864}
7865
Gleb Natapov54e98182012-08-05 15:58:32 +03007866struct static_key kvm_no_apic_vcpu __read_mostly;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007867EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +03007868
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007869int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
7870{
7871 struct page *page;
7872 struct kvm *kvm;
7873 int r;
7874
7875 BUG_ON(vcpu->kvm == NULL);
7876 kvm = vcpu->kvm;
7877
Andrey Smetanind62caab2015-11-10 15:36:33 +03007878 vcpu->arch.apicv_active = kvm_x86_ops->get_enable_apicv();
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307879 vcpu->arch.pv.pv_unhalted = false;
Avi Kivity9aabc88f2010-07-29 15:11:50 +03007880 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Nadav Amit58d269d2015-04-02 03:10:36 +03007881 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03007882 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007883 else
Avi Kivitya4535292008-04-13 17:54:35 +03007884 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007885
7886 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
7887 if (!page) {
7888 r = -ENOMEM;
7889 goto fail;
7890 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007891 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007892
Zachary Amsdencc578282012-02-03 15:43:50 -02007893 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10007894
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007895 r = kvm_mmu_create(vcpu);
7896 if (r < 0)
7897 goto fail_free_pio_data;
7898
7899 if (irqchip_in_kernel(kvm)) {
7900 r = kvm_create_lapic(vcpu);
7901 if (r < 0)
7902 goto fail_mmu_destroy;
Gleb Natapov54e98182012-08-05 15:58:32 +03007903 } else
7904 static_key_slow_inc(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007905
Huang Ying890ca9a2009-05-11 16:48:15 +08007906 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
7907 GFP_KERNEL);
7908 if (!vcpu->arch.mce_banks) {
7909 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08007910 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08007911 }
7912 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
7913
Wei Yongjunf1797352013-04-18 07:41:00 +08007914 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) {
7915 r = -ENOMEM;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007916 goto fail_free_mce_banks;
Wei Yongjunf1797352013-04-18 07:41:00 +08007917 }
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007918
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007919 fx_init(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01007920
Will Auldba904632012-11-29 12:42:50 -08007921 vcpu->arch.ia32_tsc_adjust_msr = 0x0;
Andy Honig0b794592013-02-20 14:48:10 -08007922 vcpu->arch.pv_time_enabled = false;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007923
7924 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +02007925 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007926
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +03007927 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
7928
Radim Krčmář74545702015-04-27 15:11:25 +02007929 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
7930
Gleb Natapovaf585b92010-10-14 11:22:46 +02007931 kvm_async_pf_hash_reset(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007932 kvm_pmu_init(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007933
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02007934 vcpu->arch.pending_external_vector = -1;
7935
Andrey Smetanin5c9194122015-11-10 15:36:34 +03007936 kvm_hv_vcpu_init(vcpu);
7937
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007938 return 0;
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007939
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007940fail_free_mce_banks:
7941 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08007942fail_free_lapic:
7943 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007944fail_mmu_destroy:
7945 kvm_mmu_destroy(vcpu);
7946fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007947 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007948fail:
7949 return r;
7950}
7951
7952void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
7953{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007954 int idx;
7955
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03007956 kvm_hv_vcpu_uninit(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007957 kvm_pmu_destroy(vcpu);
Wei Yongjun36cb93f2010-01-22 14:18:47 +08007958 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007959 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007960 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007961 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007962 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007963 free_page((unsigned long)vcpu->arch.pio_data);
Paolo Bonzini35754c92015-07-29 12:05:37 +02007964 if (!lapic_in_kernel(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03007965 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007966}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007967
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007968void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
7969{
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007970 kvm_x86_ops->sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007971}
7972
Carsten Ottee08b9632012-01-04 10:25:20 +01007973int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007974{
Carsten Ottee08b9632012-01-04 10:25:20 +01007975 if (type)
7976 return -EINVAL;
7977
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01007978 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08007979 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Xiao Guangrong365c8862013-05-31 08:36:29 +08007980 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03007981 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06007982 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007983
Sheng Yang5550af42008-10-15 20:15:06 +08007984 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
7985 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06007986 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
7987 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
7988 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08007989
Jan Kiszka038f8c12011-02-04 10:49:11 +01007990 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007991 mutex_init(&kvm->arch.apic_map_lock);
Paolo Bonzini3f5ad8b2016-12-12 10:12:53 +01007992 mutex_init(&kvm->arch.hyperv.hv_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007993 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
7994
Paolo Bonzini108b2492016-09-01 14:21:03 +02007995 kvm->arch.kvmclock_offset = -ktime_get_boot_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02007996 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01007997
Andrew Jones7e44e442014-02-28 12:52:54 +01007998 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01007999 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01008000
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08008001 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +08008002 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08008003
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05008004 if (kvm_x86_ops->vm_init)
8005 return kvm_x86_ops->vm_init(kvm);
8006
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01008007 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008008}
8009
8010static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
8011{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03008012 int r;
8013 r = vcpu_load(vcpu);
8014 BUG_ON(r);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008015 kvm_mmu_unload(vcpu);
8016 vcpu_put(vcpu);
8017}
8018
8019static void kvm_free_vcpus(struct kvm *kvm)
8020{
8021 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008022 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008023
8024 /*
8025 * Unpin any mmu pages first.
8026 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02008027 kvm_for_each_vcpu(i, vcpu, kvm) {
8028 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008029 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008030 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008031 kvm_for_each_vcpu(i, vcpu, kvm)
8032 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008033
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008034 mutex_lock(&kvm->lock);
8035 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
8036 kvm->vcpus[i] = NULL;
8037
8038 atomic_set(&kvm->online_vcpus, 0);
8039 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008040}
8041
Sheng Yangad8ba2c2009-01-06 10:03:02 +08008042void kvm_arch_sync_events(struct kvm *kvm)
8043{
Andrew Jones332967a2014-02-28 12:52:55 +01008044 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01008045 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08008046 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08008047}
8048
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008049int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008050{
8051 int i, r;
Paolo Bonzini25188b92015-10-14 15:51:08 +02008052 unsigned long hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008053 struct kvm_memslots *slots = kvm_memslots(kvm);
8054 struct kvm_memory_slot *slot, old;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008055
8056 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008057 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
8058 return -EINVAL;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008059
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008060 slot = id_to_memslot(slots, id);
8061 if (size) {
Paolo Bonzinib21629d2016-06-01 14:09:18 +02008062 if (slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008063 return -EEXIST;
8064
8065 /*
8066 * MAP_SHARED to prevent internal slot pages from being moved
8067 * by fork()/COW.
8068 */
8069 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
8070 MAP_SHARED | MAP_ANONYMOUS, 0);
8071 if (IS_ERR((void *)hva))
8072 return PTR_ERR((void *)hva);
8073 } else {
8074 if (!slot->npages)
8075 return 0;
8076
8077 hva = 0;
8078 }
8079
8080 old = *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008081 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008082 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008083
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008084 m.slot = id | (i << 16);
8085 m.flags = 0;
8086 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008087 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008088 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008089 r = __kvm_set_memory_region(kvm, &m);
8090 if (r < 0)
8091 return r;
8092 }
8093
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008094 if (!size) {
8095 r = vm_munmap(old.userspace_addr, old.npages * PAGE_SIZE);
8096 WARN_ON(r < 0);
8097 }
8098
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008099 return 0;
8100}
8101EXPORT_SYMBOL_GPL(__x86_set_memory_region);
8102
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008103int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008104{
8105 int r;
8106
8107 mutex_lock(&kvm->slots_lock);
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008108 r = __x86_set_memory_region(kvm, id, gpa, size);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008109 mutex_unlock(&kvm->slots_lock);
8110
8111 return r;
8112}
8113EXPORT_SYMBOL_GPL(x86_set_memory_region);
8114
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008115void kvm_arch_destroy_vm(struct kvm *kvm)
8116{
Andrew Honig27469d22013-04-18 09:38:14 -07008117 if (current->mm == kvm->mm) {
8118 /*
8119 * Free memory regions allocated on behalf of userspace,
8120 * unless the the memory map has changed due to process exit
8121 * or fd copying.
8122 */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008123 x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, 0, 0);
8124 x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, 0, 0);
8125 x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
Andrew Honig27469d22013-04-18 09:38:14 -07008126 }
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05008127 if (kvm_x86_ops->vm_destroy)
8128 kvm_x86_ops->vm_destroy(kvm);
Peter Xuc7611592017-03-15 16:01:19 +08008129 kvm_pic_destroy(kvm);
8130 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008131 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +02008132 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +08008133 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +02008134 kvm_page_track_cleanup(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008135}
Zhang Xiantao0de10342007-11-20 16:25:04 +08008136
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05308137void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008138 struct kvm_memory_slot *dont)
8139{
8140 int i;
8141
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008142 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
8143 if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) {
Thomas Huth548ef282015-02-24 21:29:25 +01008144 kvfree(free->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008145 free->arch.rmap[i] = NULL;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008146 }
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008147 if (i == 0)
8148 continue;
8149
8150 if (!dont || free->arch.lpage_info[i - 1] !=
8151 dont->arch.lpage_info[i - 1]) {
Thomas Huth548ef282015-02-24 21:29:25 +01008152 kvfree(free->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008153 free->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008154 }
8155 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08008156
8157 kvm_page_track_free_memslot(free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008158}
8159
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05308160int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
8161 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008162{
8163 int i;
8164
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008165 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008166 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008167 unsigned long ugfn;
8168 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008169 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008170
8171 lpages = gfn_to_index(slot->base_gfn + npages - 1,
8172 slot->base_gfn, level) + 1;
8173
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008174 slot->arch.rmap[i] =
8175 kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i]));
8176 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008177 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008178 if (i == 0)
8179 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008180
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008181 linfo = kvm_kvzalloc(lpages * sizeof(*linfo));
8182 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008183 goto out_free;
8184
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008185 slot->arch.lpage_info[i - 1] = linfo;
8186
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008187 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008188 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008189 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008190 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008191 ugfn = slot->userspace_addr >> PAGE_SHIFT;
8192 /*
8193 * If the gfn and userspace address are not aligned wrt each
8194 * other, or if explicitly asked to, disable large page
8195 * support for this slot
8196 */
8197 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
8198 !kvm_largepages_enabled()) {
8199 unsigned long j;
8200
8201 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008202 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008203 }
8204 }
8205
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08008206 if (kvm_page_track_create_memslot(slot, npages))
8207 goto out_free;
8208
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008209 return 0;
8210
8211out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008212 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +01008213 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008214 slot->arch.rmap[i] = NULL;
8215 if (i == 0)
8216 continue;
8217
Thomas Huth548ef282015-02-24 21:29:25 +01008218 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008219 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008220 }
8221 return -ENOMEM;
8222}
8223
Paolo Bonzini15f46012015-05-17 21:26:08 +02008224void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008225{
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09008226 /*
8227 * memslots->generation has been incremented.
8228 * mmio generation may have reached its maximum value.
8229 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008230 kvm_mmu_invalidate_mmio_sptes(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008231}
8232
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008233int kvm_arch_prepare_memory_region(struct kvm *kvm,
8234 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008235 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09008236 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +08008237{
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008238 return 0;
8239}
8240
Kai Huang88178fd2015-01-28 10:54:27 +08008241static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
8242 struct kvm_memory_slot *new)
8243{
8244 /* Still write protect RO slot */
8245 if (new->flags & KVM_MEM_READONLY) {
8246 kvm_mmu_slot_remove_write_access(kvm, new);
8247 return;
8248 }
8249
8250 /*
8251 * Call kvm_x86_ops dirty logging hooks when they are valid.
8252 *
8253 * kvm_x86_ops->slot_disable_log_dirty is called when:
8254 *
8255 * - KVM_MR_CREATE with dirty logging is disabled
8256 * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag
8257 *
8258 * The reason is, in case of PML, we need to set D-bit for any slots
8259 * with dirty logging disabled in order to eliminate unnecessary GPA
8260 * logging in PML buffer (and potential PML buffer full VMEXT). This
8261 * guarantees leaving PML enabled during guest's lifetime won't have
8262 * any additonal overhead from PML when guest is running with dirty
8263 * logging disabled for memory slots.
8264 *
8265 * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot
8266 * to dirty logging mode.
8267 *
8268 * If kvm_x86_ops dirty logging hooks are invalid, use write protect.
8269 *
8270 * In case of write protect:
8271 *
8272 * Write protect all pages for dirty logging.
8273 *
8274 * All the sptes including the large sptes which point to this
8275 * slot are set to readonly. We can not create any new large
8276 * spte on this slot until the end of the logging.
8277 *
8278 * See the comments in fast_page_fault().
8279 */
8280 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
8281 if (kvm_x86_ops->slot_enable_log_dirty)
8282 kvm_x86_ops->slot_enable_log_dirty(kvm, new);
8283 else
8284 kvm_mmu_slot_remove_write_access(kvm, new);
8285 } else {
8286 if (kvm_x86_ops->slot_disable_log_dirty)
8287 kvm_x86_ops->slot_disable_log_dirty(kvm, new);
8288 }
8289}
8290
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008291void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008292 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008293 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008294 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008295 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008296{
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008297 int nr_mmu_pages = 0;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008298
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008299 if (!kvm->arch.n_requested_mmu_pages)
8300 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008301
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008302 if (nr_mmu_pages)
8303 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Kai Huang1c91cad42015-01-28 10:54:26 +08008304
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008305 /*
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08008306 * Dirty logging tracks sptes in 4k granularity, meaning that large
8307 * sptes have to be split. If live migration is successful, the guest
8308 * in the source machine will be destroyed and large sptes will be
8309 * created in the destination. However, if the guest continues to run
8310 * in the source machine (for example if live migration fails), small
8311 * sptes will remain around and cause bad performance.
8312 *
8313 * Scan sptes if dirty logging has been stopped, dropping those
8314 * which can be collapsed into a single large-page spte. Later
8315 * page faults will create the large-page sptes.
8316 */
8317 if ((change != KVM_MR_DELETE) &&
8318 (old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
8319 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
8320 kvm_mmu_zap_collapsible_sptes(kvm, new);
8321
8322 /*
Kai Huang88178fd2015-01-28 10:54:27 +08008323 * Set up write protection and/or dirty logging for the new slot.
Xiao Guangrongc126d942014-04-17 17:06:14 +08008324 *
Kai Huang88178fd2015-01-28 10:54:27 +08008325 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have
8326 * been zapped so no dirty logging staff is needed for old slot. For
8327 * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the
8328 * new and it's also covered when dealing with the new slot.
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008329 *
8330 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008331 */
Kai Huang88178fd2015-01-28 10:54:27 +08008332 if (change != KVM_MR_DELETE)
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008333 kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008334}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008335
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008336void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008337{
Xiao Guangrong6ca18b62013-05-31 08:36:23 +08008338 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008339}
8340
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008341void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
8342 struct kvm_memory_slot *slot)
8343{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +08008344 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008345}
8346
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008347static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
8348{
8349 if (!list_empty_careful(&vcpu->async_pf.done))
8350 return true;
8351
8352 if (kvm_apic_has_events(vcpu))
8353 return true;
8354
8355 if (vcpu->arch.pv.pv_unhalted)
8356 return true;
8357
8358 if (atomic_read(&vcpu->arch.nmi_queued))
8359 return true;
8360
Paolo Bonzini73917732015-10-13 10:19:35 +02008361 if (test_bit(KVM_REQ_SMI, &vcpu->requests))
8362 return true;
8363
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008364 if (kvm_arch_interrupt_allowed(vcpu) &&
8365 kvm_cpu_has_interrupt(vcpu))
8366 return true;
8367
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03008368 if (kvm_hv_has_stimer_pending(vcpu))
8369 return true;
8370
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008371 return false;
8372}
8373
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008374int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
8375{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008376 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008377}
Zhang Xiantao57361992007-12-17 14:21:40 +08008378
Christoffer Dallb6d33832012-03-08 16:44:24 -05008379int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +08008380{
Christoffer Dallb6d33832012-03-08 16:44:24 -05008381 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +08008382}
Gleb Natapov78646122009-03-23 12:12:11 +02008383
8384int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
8385{
8386 return kvm_x86_ops->interrupt_allowed(vcpu);
8387}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008388
Nadav Amit82b32772014-11-02 11:54:45 +02008389unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
8390{
8391 if (is_64_bit_mode(vcpu))
8392 return kvm_rip_read(vcpu);
8393 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
8394 kvm_rip_read(vcpu));
8395}
8396EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
8397
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008398bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
8399{
Nadav Amit82b32772014-11-02 11:54:45 +02008400 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008401}
8402EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
8403
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008404unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
8405{
8406 unsigned long rflags;
8407
8408 rflags = kvm_x86_ops->get_rflags(vcpu);
8409 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01008410 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008411 return rflags;
8412}
8413EXPORT_SYMBOL_GPL(kvm_get_rflags);
8414
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008415static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008416{
8417 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008418 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01008419 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008420 kvm_x86_ops->set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008421}
8422
8423void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
8424{
8425 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03008426 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008427}
8428EXPORT_SYMBOL_GPL(kvm_set_rflags);
8429
Gleb Natapov56028d02010-10-17 18:13:42 +02008430void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
8431{
8432 int r;
8433
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008434 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +08008435 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +02008436 return;
8437
8438 r = kvm_mmu_reload(vcpu);
8439 if (unlikely(r))
8440 return;
8441
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008442 if (!vcpu->arch.mmu.direct_map &&
8443 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
8444 return;
8445
Gleb Natapov56028d02010-10-17 18:13:42 +02008446 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
8447}
8448
Gleb Natapovaf585b92010-10-14 11:22:46 +02008449static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
8450{
8451 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
8452}
8453
8454static inline u32 kvm_async_pf_next_probe(u32 key)
8455{
8456 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
8457}
8458
8459static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8460{
8461 u32 key = kvm_async_pf_hash_fn(gfn);
8462
8463 while (vcpu->arch.apf.gfns[key] != ~0)
8464 key = kvm_async_pf_next_probe(key);
8465
8466 vcpu->arch.apf.gfns[key] = gfn;
8467}
8468
8469static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
8470{
8471 int i;
8472 u32 key = kvm_async_pf_hash_fn(gfn);
8473
8474 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08008475 (vcpu->arch.apf.gfns[key] != gfn &&
8476 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02008477 key = kvm_async_pf_next_probe(key);
8478
8479 return key;
8480}
8481
8482bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8483{
8484 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
8485}
8486
8487static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8488{
8489 u32 i, j, k;
8490
8491 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
8492 while (true) {
8493 vcpu->arch.apf.gfns[i] = ~0;
8494 do {
8495 j = kvm_async_pf_next_probe(j);
8496 if (vcpu->arch.apf.gfns[j] == ~0)
8497 return;
8498 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
8499 /*
8500 * k lies cyclically in ]i,j]
8501 * | i.k.j |
8502 * |....j i.k.| or |.k..j i...|
8503 */
8504 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
8505 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
8506 i = j;
8507 }
8508}
8509
Gleb Natapov7c907052010-10-14 11:22:53 +02008510static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
8511{
Cao, Leibbd64112017-02-03 20:04:35 +00008512 return kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.apf.data, &val,
8513 sizeof(val));
Gleb Natapov7c907052010-10-14 11:22:53 +02008514}
8515
Gleb Natapovaf585b92010-10-14 11:22:46 +02008516void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
8517 struct kvm_async_pf *work)
8518{
Avi Kivity6389ee92010-11-29 16:12:30 +02008519 struct x86_exception fault;
8520
Gleb Natapov7c907052010-10-14 11:22:53 +02008521 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008522 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02008523
8524 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02008525 (vcpu->arch.apf.send_user_only &&
8526 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02008527 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
8528 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008529 fault.vector = PF_VECTOR;
8530 fault.error_code_valid = true;
8531 fault.error_code = 0;
8532 fault.nested_page_fault = false;
8533 fault.address = work->arch.token;
8534 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008535 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008536}
8537
8538void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
8539 struct kvm_async_pf *work)
8540{
Avi Kivity6389ee92010-11-29 16:12:30 +02008541 struct x86_exception fault;
8542
chai wenf2e10662013-10-14 22:22:33 +08008543 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +02008544 work->arch.token = ~0; /* broadcast wakeup */
8545 else
8546 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Wanpeng Li24dccf82017-03-20 21:18:55 -07008547 trace_kvm_async_pf_ready(work->arch.token, work->gva);
Gleb Natapov7c907052010-10-14 11:22:53 +02008548
8549 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
8550 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008551 fault.vector = PF_VECTOR;
8552 fault.error_code_valid = true;
8553 fault.error_code = 0;
8554 fault.nested_page_fault = false;
8555 fault.address = work->arch.token;
8556 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008557 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08008558 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +03008559 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +02008560}
8561
8562bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
8563{
8564 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
8565 return true;
8566 else
8567 return !kvm_event_needs_reinjection(vcpu) &&
8568 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008569}
8570
Paolo Bonzini5544eb92015-07-07 15:41:58 +02008571void kvm_arch_start_assignment(struct kvm *kvm)
8572{
8573 atomic_inc(&kvm->arch.assigned_device_count);
8574}
8575EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
8576
8577void kvm_arch_end_assignment(struct kvm *kvm)
8578{
8579 atomic_dec(&kvm->arch.assigned_device_count);
8580}
8581EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
8582
8583bool kvm_arch_has_assigned_device(struct kvm *kvm)
8584{
8585 return atomic_read(&kvm->arch.assigned_device_count);
8586}
8587EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
8588
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06008589void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
8590{
8591 atomic_inc(&kvm->arch.noncoherent_dma_count);
8592}
8593EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
8594
8595void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
8596{
8597 atomic_dec(&kvm->arch.noncoherent_dma_count);
8598}
8599EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
8600
8601bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
8602{
8603 return atomic_read(&kvm->arch.noncoherent_dma_count);
8604}
8605EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
8606
Alex Williamson14717e22016-05-05 11:58:35 -06008607bool kvm_arch_has_irq_bypass(void)
8608{
8609 return kvm_x86_ops->update_pi_irte != NULL;
8610}
8611
Feng Wu87276882015-09-18 22:29:40 +08008612int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
8613 struct irq_bypass_producer *prod)
8614{
8615 struct kvm_kernel_irqfd *irqfd =
8616 container_of(cons, struct kvm_kernel_irqfd, consumer);
8617
Alex Williamson14717e22016-05-05 11:58:35 -06008618 irqfd->producer = prod;
Feng Wu87276882015-09-18 22:29:40 +08008619
Alex Williamson14717e22016-05-05 11:58:35 -06008620 return kvm_x86_ops->update_pi_irte(irqfd->kvm,
8621 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +08008622}
8623
8624void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
8625 struct irq_bypass_producer *prod)
8626{
8627 int ret;
8628 struct kvm_kernel_irqfd *irqfd =
8629 container_of(cons, struct kvm_kernel_irqfd, consumer);
8630
Feng Wu87276882015-09-18 22:29:40 +08008631 WARN_ON(irqfd->producer != prod);
8632 irqfd->producer = NULL;
8633
8634 /*
8635 * When producer of consumer is unregistered, we change back to
8636 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +02008637 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +08008638 * int this case doesn't want to receive the interrupts.
8639 */
8640 ret = kvm_x86_ops->update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0);
8641 if (ret)
8642 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
8643 " fails: %d\n", irqfd->consumer.token, ret);
8644}
8645
8646int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
8647 uint32_t guest_irq, bool set)
8648{
8649 if (!kvm_x86_ops->update_pi_irte)
8650 return -EINVAL;
8651
8652 return kvm_x86_ops->update_pi_irte(kvm, host_irq, guest_irq, set);
8653}
8654
Feng Wu520040142016-01-25 16:53:33 +08008655bool kvm_vector_hashing_enabled(void)
8656{
8657 return vector_hashing;
8658}
8659EXPORT_SYMBOL_GPL(kvm_vector_hashing_enabled);
8660
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008661EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
Jason Wang931c33b2015-09-15 14:41:58 +08008662EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008663EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
8664EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
8665EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
8666EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02008667EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02008668EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02008669EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02008670EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02008671EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02008672EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01008673EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09008674EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Radim Krčmář7b462682014-08-21 18:08:09 +02008675EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window);
Kai Huang843e4332015-01-28 10:54:28 +08008676EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
Feng Wuefc64402015-09-18 22:29:51 +08008677EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05008678EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
8679EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);