blob: ccbd45ecd41a3fa5c850cf924cccbb2723aecc92 [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"
Paolo Bonzinic9eab582014-11-24 15:27:17 +010030#include "assigned-dev.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020031#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030032#include "hyperv.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020033
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020034#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030035#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020036#include <linux/kvm.h>
37#include <linux/fs.h>
38#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040039#include <linux/export.h>
40#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080041#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050042#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010043#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030044#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010045#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030046#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020047#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080049#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080050#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020051#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020052#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020053#include <linux/timekeeper_internal.h>
54#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080055#include <linux/kvm_irqfd.h>
56#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010057#include <linux/sched/stat.h>
58
Avi Kivityaec51dc2009-07-01 16:01:02 +030059#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080060
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020061#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080062#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020063#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080064#include <asm/mce.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020065#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020066#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100067#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030068#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080069#include <asm/irq_remapping.h>
Carsten Otte043405e2007-10-10 17:16:19 +020070
Dave Hansend1898b72016-06-01 10:42:20 -070071#define CREATE_TRACE_POINTS
72#include "trace.h"
73
Carsten Otte313a3dc2007-10-11 19:16:52 +020074#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080075#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080076u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
77EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080078
Avi Kivity0f65dd72011-04-20 13:37:53 +030079#define emul_to_vcpu(ctxt) \
80 container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt)
81
Joerg Roedel50a37eb2008-01-31 14:57:38 +010082/* EFER defaults:
83 * - enable syscall per default because its emulated by KVM
84 * - enable LME and LMA per default on 64 bit KVM
85 */
86#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080087static
88u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010089#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080090static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010091#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020092
Avi Kivityba1389b2007-11-18 16:24:12 +020093#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
94#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050095
Radim Krčmářc5192652016-07-12 22:09:28 +020096#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
97 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +020098
Gleb Natapovcb142eb2009-08-09 15:17:40 +030099static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300100static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200101static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100102static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Avi Kivity674eea02008-02-11 18:37:23 +0200103
Paolo Bonzini893590c2015-11-06 11:46:24 +0100104struct kvm_x86_ops *kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300105EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800106
Paolo Bonzini893590c2015-11-06 11:46:24 +0100107static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030108module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200109
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200110unsigned int min_timer_period_us = 500;
111module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
112
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300113static bool __read_mostly kvmclock_periodic_sync = true;
114module_param(kvmclock_periodic_sync, bool, S_IRUGO);
115
Paolo Bonzini893590c2015-11-06 11:46:24 +0100116bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100117EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100118u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100119EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800120u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
121EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
122u64 __read_mostly kvm_max_tsc_scaling_ratio;
123EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700124u64 __read_mostly kvm_default_tsc_scaling_ratio;
125EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100126
Zachary Amsdencc578282012-02-03 15:43:50 -0200127/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100128static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200129module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
130
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500131/* lapic timer advance (tscdeadline mode only) in nanoseconds */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100132unsigned int __read_mostly lapic_timer_advance_ns = 0;
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500133module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR);
134
Feng Wu520040142016-01-25 16:53:33 +0800135static bool __read_mostly vector_hashing = true;
136module_param(vector_hashing, bool, S_IRUGO);
137
Paolo Bonzini893590c2015-11-06 11:46:24 +0100138static bool __read_mostly backwards_tsc_observed = false;
Marcelo Tosatti16a96022014-05-14 12:43:24 -0300139
Avi Kivity18863bd2009-09-07 11:12:18 +0300140#define KVM_NR_SHARED_MSRS 16
141
142struct kvm_shared_msrs_global {
143 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800144 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300145};
146
147struct kvm_shared_msrs {
148 struct user_return_notifier urn;
149 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800150 struct kvm_shared_msr_values {
151 u64 host;
152 u64 curr;
153 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300154};
155
156static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200157static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300158
Hollis Blanchard417bc302007-10-31 17:24:23 -0500159struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200160 { "pf_fixed", VCPU_STAT(pf_fixed) },
161 { "pf_guest", VCPU_STAT(pf_guest) },
162 { "tlb_flush", VCPU_STAT(tlb_flush) },
163 { "invlpg", VCPU_STAT(invlpg) },
164 { "exits", VCPU_STAT(exits) },
165 { "io_exits", VCPU_STAT(io_exits) },
166 { "mmio_exits", VCPU_STAT(mmio_exits) },
167 { "signal_exits", VCPU_STAT(signal_exits) },
168 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800169 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200170 { "halt_exits", VCPU_STAT(halt_exits) },
Paolo Bonzinif7819512015-02-04 18:20:58 +0100171 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +0200172 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200173 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200174 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530175 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200176 { "request_irq", VCPU_STAT(request_irq_exits) },
177 { "irq_exits", VCPU_STAT(irq_exits) },
178 { "host_state_reload", VCPU_STAT(host_state_reload) },
179 { "efer_reload", VCPU_STAT(efer_reload) },
180 { "fpu_reload", VCPU_STAT(fpu_reload) },
181 { "insn_emulation", VCPU_STAT(insn_emulation) },
182 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300183 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200184 { "nmi_injections", VCPU_STAT(nmi_injections) },
Paolo Bonzini0f1e2612016-12-17 16:05:19 +0100185 { "req_event", VCPU_STAT(req_event) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200186 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
187 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
188 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
189 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
190 { "mmu_flooded", VM_STAT(mmu_flooded) },
191 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200192 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300193 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200194 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300195 { "largepages", VM_STAT(lpages) },
David Matlackf3414bc2016-12-20 15:25:57 -0800196 { "max_mmu_page_hash_collisions",
197 VM_STAT(max_mmu_page_hash_collisions) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500198 { NULL }
199};
200
Dexuan Cui2acf9232010-06-10 11:27:12 +0800201u64 __read_mostly host_xcr0;
202
Jan Kiszkab6785de2012-09-20 07:43:17 +0200203static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300204
Gleb Natapovaf585b92010-10-14 11:22:46 +0200205static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
206{
207 int i;
208 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
209 vcpu->arch.apf.gfns[i] = ~0;
210}
211
Avi Kivity18863bd2009-09-07 11:12:18 +0300212static void kvm_on_user_return(struct user_return_notifier *urn)
213{
214 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300215 struct kvm_shared_msrs *locals
216 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800217 struct kvm_shared_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700218 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300219
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700220 /*
221 * Disabling irqs at this point since the following code could be
222 * interrupted and executed through kvm_arch_hardware_disable()
223 */
224 local_irq_save(flags);
225 if (locals->registered) {
226 locals->registered = false;
227 user_return_notifier_unregister(urn);
228 }
229 local_irq_restore(flags);
Avi Kivity18863bd2009-09-07 11:12:18 +0300230 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800231 values = &locals->values[slot];
232 if (values->host != values->curr) {
233 wrmsrl(shared_msrs_global.msrs[slot], values->host);
234 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300235 }
236 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300237}
238
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800239static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300240{
Avi Kivity18863bd2009-09-07 11:12:18 +0300241 u64 value;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200242 unsigned int cpu = smp_processor_id();
243 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300244
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800245 /* only read, and nobody should modify it at this time,
246 * so don't need lock */
247 if (slot >= shared_msrs_global.nr) {
248 printk(KERN_ERR "kvm: invalid MSR slot!");
249 return;
250 }
251 rdmsrl_safe(msr, &value);
252 smsr->values[slot].host = value;
253 smsr->values[slot].curr = value;
254}
255
256void kvm_define_shared_msr(unsigned slot, u32 msr)
257{
Nadav Amit0123be42014-07-24 15:06:56 +0300258 BUG_ON(slot >= KVM_NR_SHARED_MSRS);
Paolo Bonzinic847fe82015-07-29 11:06:34 +0200259 shared_msrs_global.msrs[slot] = msr;
Avi Kivity18863bd2009-09-07 11:12:18 +0300260 if (slot >= shared_msrs_global.nr)
261 shared_msrs_global.nr = slot + 1;
Avi Kivity18863bd2009-09-07 11:12:18 +0300262}
263EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
264
265static void kvm_shared_msr_cpu_online(void)
266{
267 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300268
269 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800270 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300271}
272
Andy Honig8b3c3102014-08-27 11:16:44 -0700273int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300274{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200275 unsigned int cpu = smp_processor_id();
276 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700277 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300278
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800279 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Andy Honig8b3c3102014-08-27 11:16:44 -0700280 return 0;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800281 smsr->values[slot].curr = value;
Andy Honig8b3c3102014-08-27 11:16:44 -0700282 err = wrmsrl_safe(shared_msrs_global.msrs[slot], value);
283 if (err)
284 return 1;
285
Avi Kivity18863bd2009-09-07 11:12:18 +0300286 if (!smsr->registered) {
287 smsr->urn.on_user_return = kvm_on_user_return;
288 user_return_notifier_register(&smsr->urn);
289 smsr->registered = true;
290 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700291 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300292}
293EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
294
Radim Krčmář13a34e02014-08-28 15:13:03 +0200295static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200296{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200297 unsigned int cpu = smp_processor_id();
298 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200299
300 if (smsr->registered)
301 kvm_on_user_return(&smsr->urn);
302}
303
Carsten Otte6866b832007-10-29 16:09:10 +0100304u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
305{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300306 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100307}
308EXPORT_SYMBOL_GPL(kvm_get_apic_base);
309
Jan Kiszka58cb6282014-01-24 16:48:44 +0100310int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100311{
Jan Kiszka58cb6282014-01-24 16:48:44 +0100312 u64 old_state = vcpu->arch.apic_base &
313 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
314 u64 new_state = msr_info->data &
315 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
316 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) |
317 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE);
318
319 if (!msr_info->host_initiated &&
320 ((msr_info->data & reserved_bits) != 0 ||
321 new_state == X2APIC_ENABLE ||
322 (new_state == MSR_IA32_APICBASE_ENABLE &&
323 old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) ||
324 (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) &&
325 old_state == 0)))
326 return 1;
327
328 kvm_lapic_set_base(vcpu, msr_info->data);
329 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100330}
331EXPORT_SYMBOL_GPL(kvm_set_apic_base);
332
Andi Kleen2605fc22014-05-02 00:44:37 +0200333asmlinkage __visible void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000334{
335 /* Fault while not rebooting. We want the trace. */
336 BUG();
337}
338EXPORT_SYMBOL_GPL(kvm_spurious_fault);
339
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200340#define EXCPT_BENIGN 0
341#define EXCPT_CONTRIBUTORY 1
342#define EXCPT_PF 2
343
344static int exception_class(int vector)
345{
346 switch (vector) {
347 case PF_VECTOR:
348 return EXCPT_PF;
349 case DE_VECTOR:
350 case TS_VECTOR:
351 case NP_VECTOR:
352 case SS_VECTOR:
353 case GP_VECTOR:
354 return EXCPT_CONTRIBUTORY;
355 default:
356 break;
357 }
358 return EXCPT_BENIGN;
359}
360
Nadav Amitd6e8c852014-07-24 14:51:24 +0300361#define EXCPT_FAULT 0
362#define EXCPT_TRAP 1
363#define EXCPT_ABORT 2
364#define EXCPT_INTERRUPT 3
365
366static int exception_type(int vector)
367{
368 unsigned int mask;
369
370 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
371 return EXCPT_INTERRUPT;
372
373 mask = 1 << vector;
374
375 /* #DB is trap, as instruction watchpoints are handled elsewhere */
376 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
377 return EXCPT_TRAP;
378
379 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
380 return EXCPT_ABORT;
381
382 /* Reserved exceptions will result in fault */
383 return EXCPT_FAULT;
384}
385
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200386static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200387 unsigned nr, bool has_error, u32 error_code,
388 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200389{
390 u32 prev_nr;
391 int class1, class2;
392
Avi Kivity3842d132010-07-27 12:30:24 +0300393 kvm_make_request(KVM_REQ_EVENT, vcpu);
394
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200395 if (!vcpu->arch.exception.pending) {
396 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200397 if (has_error && !is_protmode(vcpu))
398 has_error = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200399 vcpu->arch.exception.pending = true;
400 vcpu->arch.exception.has_error_code = has_error;
401 vcpu->arch.exception.nr = nr;
402 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200403 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200404 return;
405 }
406
407 /* to check exception */
408 prev_nr = vcpu->arch.exception.nr;
409 if (prev_nr == DF_VECTOR) {
410 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300411 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200412 return;
413 }
414 class1 = exception_class(prev_nr);
415 class2 = exception_class(nr);
416 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
417 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
418 /* generate double fault per SDM Table 5-5 */
419 vcpu->arch.exception.pending = true;
420 vcpu->arch.exception.has_error_code = true;
421 vcpu->arch.exception.nr = DF_VECTOR;
422 vcpu->arch.exception.error_code = 0;
423 } else
424 /* replace previous exception with a new one in a hope
425 that instruction re-execution will regenerate lost
426 exception */
427 goto queue;
428}
429
Avi Kivity298101d2007-11-25 13:41:11 +0200430void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
431{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200432 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200433}
434EXPORT_SYMBOL_GPL(kvm_queue_exception);
435
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200436void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
437{
438 kvm_multiple_exception(vcpu, nr, false, 0, true);
439}
440EXPORT_SYMBOL_GPL(kvm_requeue_exception);
441
Kyle Huey6affcbe2016-11-29 12:40:40 -0800442int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200443{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100444 if (err)
445 kvm_inject_gp(vcpu, 0);
446 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800447 return kvm_skip_emulated_instruction(vcpu);
448
449 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100450}
451EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200452
Avi Kivity6389ee92010-11-29 16:12:30 +0200453void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200454{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200455 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200456 vcpu->arch.cr2 = fault->address;
457 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200458}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300459EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200460
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200461static bool kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200462{
Avi Kivity6389ee92010-11-29 16:12:30 +0200463 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
464 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200465 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200466 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200467
468 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200469}
470
Sheng Yang3419ffc2008-05-15 09:52:48 +0800471void kvm_inject_nmi(struct kvm_vcpu *vcpu)
472{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300473 atomic_inc(&vcpu->arch.nmi_queued);
474 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800475}
476EXPORT_SYMBOL_GPL(kvm_inject_nmi);
477
Avi Kivity298101d2007-11-25 13:41:11 +0200478void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
479{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200480 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200481}
482EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
483
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200484void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
485{
486 kvm_multiple_exception(vcpu, nr, true, error_code, true);
487}
488EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
489
Carsten Ottea03490e2007-10-29 16:09:35 +0100490/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300491 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
492 * a #GP and return false.
493 */
494bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200495{
Avi Kivity0a79b002009-09-01 12:03:25 +0300496 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
497 return true;
498 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
499 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100500}
Avi Kivity0a79b002009-09-01 12:03:25 +0300501EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100502
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300503bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
504{
505 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
506 return true;
507
508 kvm_queue_exception(vcpu, UD_VECTOR);
509 return false;
510}
511EXPORT_SYMBOL_GPL(kvm_require_dr);
512
Carsten Ottea03490e2007-10-29 16:09:35 +0100513/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200514 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200515 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200516 * can read from guest physical or from the guest's guest physical memory.
517 */
518int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
519 gfn_t ngfn, void *data, int offset, int len,
520 u32 access)
521{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200522 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200523 gfn_t real_gfn;
524 gpa_t ngpa;
525
526 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200527 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200528 if (real_gfn == UNMAPPED_GVA)
529 return -EFAULT;
530
531 real_gfn = gpa_to_gfn(real_gfn);
532
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200533 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200534}
535EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
536
Fengguang Wu69b00492015-01-19 22:33:39 +0800537static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200538 void *data, int offset, int len, u32 access)
539{
540 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
541 data, offset, len, access);
542}
543
Joerg Roedelec92fe42010-09-10 17:30:51 +0200544/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100545 * Load the pae pdptrs. Return true is they are all valid.
546 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200547int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100548{
549 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
550 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
551 int i;
552 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200553 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100554
Joerg Roedelff03a072010-09-10 17:30:57 +0200555 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
556 offset * sizeof(u64), sizeof(pdpte),
557 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100558 if (ret < 0) {
559 ret = 0;
560 goto out;
561 }
562 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400563 if ((pdpte[i] & PT_PRESENT_MASK) &&
Xiao Guangronga0a64f52015-08-05 12:04:21 +0800564 (pdpte[i] &
565 vcpu->arch.mmu.guest_rsvd_check.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100566 ret = 0;
567 goto out;
568 }
569 }
570 ret = 1;
571
Joerg Roedelff03a072010-09-10 17:30:57 +0200572 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300573 __set_bit(VCPU_EXREG_PDPTR,
574 (unsigned long *)&vcpu->arch.regs_avail);
575 __set_bit(VCPU_EXREG_PDPTR,
576 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100577out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100578
579 return ret;
580}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100581EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100582
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100583bool pdptrs_changed(struct kvm_vcpu *vcpu)
Avi Kivityd835dfe2007-11-21 02:57:59 +0200584{
Joerg Roedelff03a072010-09-10 17:30:57 +0200585 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200586 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200587 int offset;
588 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200589 int r;
590
591 if (is_long_mode(vcpu) || !is_pae(vcpu))
592 return false;
593
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300594 if (!test_bit(VCPU_EXREG_PDPTR,
595 (unsigned long *)&vcpu->arch.regs_avail))
596 return true;
597
Avi Kivity9f8fe502010-12-05 17:30:00 +0200598 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
599 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200600 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
601 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200602 if (r < 0)
603 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200604 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200605out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200606
607 return changed;
608}
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100609EXPORT_SYMBOL_GPL(pdptrs_changed);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200610
Avi Kivity49a9b072010-06-10 17:02:14 +0300611int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100612{
Sheng Yangaad82702010-05-12 16:40:42 +0800613 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800614 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800615
Avi Kivityf9a48e62010-01-06 19:10:22 +0200616 cr0 |= X86_CR0_ET;
617
Gleb Natapovab344822010-01-21 15:28:46 +0200618#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300619 if (cr0 & 0xffffffff00000000UL)
620 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200621#endif
622
623 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100624
Gleb Natapov0f122442010-04-28 19:15:31 +0300625 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
626 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100627
Gleb Natapov0f122442010-04-28 19:15:31 +0300628 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
629 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100630
631 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
632#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200633 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100634 int cs_db, cs_l;
635
Gleb Natapov0f122442010-04-28 19:15:31 +0300636 if (!is_pae(vcpu))
637 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100638 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300639 if (cs_l)
640 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100641 } else
642#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200643 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200644 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300645 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100646 }
647
Mao, Junjiead756a12012-07-02 01:18:48 +0000648 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
649 return 1;
650
Carsten Ottea03490e2007-10-29 16:09:35 +0100651 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100652
Lai Jiangshand170c412011-02-21 11:21:30 +0800653 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800654 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800655 kvm_async_pf_hash_reset(vcpu);
656 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800657
Sheng Yangaad82702010-05-12 16:40:42 +0800658 if ((cr0 ^ old_cr0) & update_bits)
659 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800660
Laszlo Ersek879ae182015-11-04 12:54:41 +0100661 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
662 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
663 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800664 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
665
Gleb Natapov0f122442010-04-28 19:15:31 +0300666 return 0;
667}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200668EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100669
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200670void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100671{
Avi Kivity49a9b072010-06-10 17:02:14 +0300672 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100673}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200674EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100675
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300676static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
677{
678 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
679 !vcpu->guest_xcr0_loaded) {
680 /* kvm_set_xcr() also depends on this */
681 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
682 vcpu->guest_xcr0_loaded = 1;
683 }
684}
685
686static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
687{
688 if (vcpu->guest_xcr0_loaded) {
689 if (vcpu->arch.xcr0 != host_xcr0)
690 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
691 vcpu->guest_xcr0_loaded = 0;
692 }
693}
694
Fengguang Wu69b00492015-01-19 22:33:39 +0800695static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800696{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000697 u64 xcr0 = xcr;
698 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200699 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800700
701 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
702 if (index != XCR_XFEATURE_ENABLED_MASK)
703 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700704 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800705 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700706 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800707 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200708
709 /*
710 * Do not allow the guest to set bits that we do not support
711 * saving. However, xcr0 bit 0 is always set, even if the
712 * emulated CPU does not support XSAVE (see fx_init).
713 */
Dave Hansend91cab72015-09-02 16:31:26 -0700714 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200715 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800716 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200717
Dave Hansend91cab72015-09-02 16:31:26 -0700718 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
719 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000720 return 1;
721
Dave Hansend91cab72015-09-02 16:31:26 -0700722 if (xcr0 & XFEATURE_MASK_AVX512) {
723 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800724 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700725 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800726 return 1;
727 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800728 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000729
Dave Hansend91cab72015-09-02 16:31:26 -0700730 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000731 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800732 return 0;
733}
734
735int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
736{
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000737 if (kvm_x86_ops->get_cpl(vcpu) != 0 ||
738 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800739 kvm_inject_gp(vcpu, 0);
740 return 1;
741 }
742 return 0;
743}
744EXPORT_SYMBOL_GPL(kvm_set_xcr);
745
Avi Kivitya83b29c2010-06-10 17:02:15 +0300746int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100747{
Avi Kivityfc78f512009-12-07 12:16:48 +0200748 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800749 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Huaitong Hanb9baba82016-03-22 16:51:21 +0800750 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE;
Xiao Guangrong0be02262015-05-11 22:55:21 +0800751
Gleb Natapov0f122442010-04-28 19:15:31 +0300752 if (cr4 & CR4_RESERVED_BITS)
753 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100754
Dexuan Cui2acf9232010-06-10 11:27:12 +0800755 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
756 return 1;
757
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800758 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
759 return 1;
760
Feng Wu97ec8c02014-04-01 17:46:34 +0800761 if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP))
762 return 1;
763
H. Peter Anvinafcbf132013-04-27 16:37:47 -0700764 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE))
Yang, Wei74dc2b42011-06-14 20:10:18 +0800765 return 1;
766
Huaitong Hanb9baba82016-03-22 16:51:21 +0800767 if (!guest_cpuid_has_pku(vcpu) && (cr4 & X86_CR4_PKE))
768 return 1;
769
Carsten Ottea03490e2007-10-29 16:09:35 +0100770 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300771 if (!(cr4 & X86_CR4_PAE))
772 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300773 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
774 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200775 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
776 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300777 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100778
Mao, Junjiead756a12012-07-02 01:18:48 +0000779 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
780 if (!guest_cpuid_has_pcid(vcpu))
781 return 1;
782
783 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
784 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
785 return 1;
786 }
787
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300788 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300789 return 1;
790
Mao, Junjiead756a12012-07-02 01:18:48 +0000791 if (((cr4 ^ old_cr4) & pdptr_bits) ||
792 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800793 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300794
Huaitong Hanb9baba82016-03-22 16:51:21 +0800795 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +0200796 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800797
Gleb Natapov0f122442010-04-28 19:15:31 +0300798 return 0;
799}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200800EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100801
Avi Kivity23902182010-06-10 17:02:16 +0300802int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100803{
Paolo Bonziniac146232014-11-10 13:53:25 +0100804#ifdef CONFIG_X86_64
Nadav Amit9d88fca2014-11-02 11:54:52 +0200805 cr3 &= ~CR3_PCID_INVD;
Paolo Bonziniac146232014-11-10 13:53:25 +0100806#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +0200807
Avi Kivity9f8fe502010-12-05 17:30:00 +0200808 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300809 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -0400810 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300811 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200812 }
813
Carsten Ottea03490e2007-10-29 16:09:35 +0100814 if (is_long_mode(vcpu)) {
Jan Kiszkad9f89b82014-05-10 09:24:34 +0200815 if (cr3 & CR3_L_MODE_RESERVED_BITS)
816 return 1;
817 } else if (is_pae(vcpu) && is_paging(vcpu) &&
818 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +0300819 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100820
Gleb Natapov0f122442010-04-28 19:15:31 +0300821 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200822 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Paolo Bonzinid8d173d2013-10-02 16:56:11 +0200823 kvm_mmu_new_cr3(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300824 return 0;
825}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200826EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100827
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100828int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100829{
Gleb Natapov0f122442010-04-28 19:15:31 +0300830 if (cr8 & CR8_RESERVED_BITS)
831 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +0200832 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100833 kvm_lapic_set_tpr(vcpu, cr8);
834 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800835 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300836 return 0;
837}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200838EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100839
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200840unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100841{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200842 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100843 return kvm_lapic_get_cr8(vcpu);
844 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800845 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100846}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200847EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100848
Nadav Amitae561ed2015-04-02 03:10:37 +0300849static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
850{
851 int i;
852
853 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
854 for (i = 0; i < KVM_NR_DB_REGS; i++)
855 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
856 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
857 }
858}
859
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100860static void kvm_update_dr6(struct kvm_vcpu *vcpu)
861{
862 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
863 kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6);
864}
865
Jan Kiszkac8639012012-09-21 05:42:55 +0200866static void kvm_update_dr7(struct kvm_vcpu *vcpu)
867{
868 unsigned long dr7;
869
870 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
871 dr7 = vcpu->arch.guest_debug_dr7;
872 else
873 dr7 = vcpu->arch.dr7;
874 kvm_x86_ops->set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +0100875 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
876 if (dr7 & DR7_BP_EN_MASK)
877 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +0200878}
879
Nadav Amit6f43ed02014-07-15 17:37:46 +0300880static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
881{
882 u64 fixed = DR6_FIXED_1;
883
884 if (!guest_cpuid_has_rtm(vcpu))
885 fixed |= DR6_RTM;
886 return fixed;
887}
888
Gleb Natapov338dbc92010-04-28 19:15:32 +0300889static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300890{
891 switch (dr) {
892 case 0 ... 3:
893 vcpu->arch.db[dr] = val;
894 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
895 vcpu->arch.eff_db[dr] = val;
896 break;
897 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300898 /* fall through */
899 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300900 if (val & 0xffffffff00000000ULL)
901 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +0300902 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100903 kvm_update_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300904 break;
905 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300906 /* fall through */
907 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300908 if (val & 0xffffffff00000000ULL)
909 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300910 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +0200911 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300912 break;
913 }
914
915 return 0;
916}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300917
918int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
919{
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300920 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +0300921 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300922 return 1;
923 }
924 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +0300925}
Gleb Natapov020df072010-04-13 10:05:23 +0300926EXPORT_SYMBOL_GPL(kvm_set_dr);
927
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300928int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300929{
930 switch (dr) {
931 case 0 ... 3:
932 *val = vcpu->arch.db[dr];
933 break;
934 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300935 /* fall through */
936 case 6:
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100937 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
938 *val = vcpu->arch.dr6;
939 else
940 *val = kvm_x86_ops->get_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300941 break;
942 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300943 /* fall through */
944 default: /* 7 */
945 *val = vcpu->arch.dr7;
946 break;
947 }
Gleb Natapov338dbc92010-04-28 19:15:32 +0300948 return 0;
949}
Gleb Natapov020df072010-04-13 10:05:23 +0300950EXPORT_SYMBOL_GPL(kvm_get_dr);
951
Avi Kivity022cd0e2011-11-10 14:57:23 +0200952bool kvm_rdpmc(struct kvm_vcpu *vcpu)
953{
954 u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
955 u64 data;
956 int err;
957
Wei Huangc6702c92015-06-19 13:44:45 +0200958 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +0200959 if (err)
960 return err;
961 kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data);
962 kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32);
963 return err;
964}
965EXPORT_SYMBOL_GPL(kvm_rdpmc);
966
Carsten Otte043405e2007-10-10 17:16:19 +0200967/*
968 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
969 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
970 *
971 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400972 * capabilities of the host cpu. This capabilities test skips MSRs that are
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200973 * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs
974 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +0200975 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400976
Carsten Otte043405e2007-10-10 17:16:19 +0200977static u32 msrs_to_save[] = {
978 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400979 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200980#ifdef CONFIG_X86_64
981 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
982#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800983 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +0100984 MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Carsten Otte043405e2007-10-10 17:16:19 +0200985};
986
987static unsigned num_msrs_to_save;
988
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200989static u32 emulated_msrs[] = {
990 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
991 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
992 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
993 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Andrey Smetanine7d95132015-07-03 15:01:37 +0300994 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
995 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +0300996 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +0300997 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300998 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300999 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001000 HV_X64_MSR_STIMER0_CONFIG,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001001 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
1002 MSR_KVM_PV_EOI_EN,
1003
Will Auldba904632012-11-29 12:42:50 -08001004 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001005 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +02001006 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001007 MSR_IA32_MCG_STATUS,
1008 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001009 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001010 MSR_IA32_SMBASE,
Carsten Otte043405e2007-10-10 17:16:19 +02001011};
1012
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001013static unsigned num_emulated_msrs;
1014
Jan Kiszka384bb782013-04-20 10:52:36 +02001015bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001016{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001017 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001018 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001019
Alexander Graf1b2fd702009-02-02 16:23:51 +01001020 if (efer & EFER_FFXSR) {
1021 struct kvm_cpuid_entry2 *feat;
1022
1023 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001024 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001025 return false;
Alexander Graf1b2fd702009-02-02 16:23:51 +01001026 }
1027
Alexander Grafd8017472008-11-25 20:17:11 +01001028 if (efer & EFER_SVME) {
1029 struct kvm_cpuid_entry2 *feat;
1030
1031 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001032 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001033 return false;
Alexander Grafd8017472008-11-25 20:17:11 +01001034 }
1035
Jan Kiszka384bb782013-04-20 10:52:36 +02001036 return true;
1037}
1038EXPORT_SYMBOL_GPL(kvm_valid_efer);
1039
1040static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
1041{
1042 u64 old_efer = vcpu->arch.efer;
1043
1044 if (!kvm_valid_efer(vcpu, efer))
1045 return 1;
1046
1047 if (is_paging(vcpu)
1048 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1049 return 1;
1050
Carsten Otte15c4a642007-10-30 18:44:17 +01001051 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001052 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001053
Sheng Yanga3d204e2010-05-12 16:40:40 +08001054 kvm_x86_ops->set_efer(vcpu, efer);
1055
Sheng Yangaad82702010-05-12 16:40:42 +08001056 /* Update reserved bits */
1057 if ((efer ^ old_efer) & EFER_NX)
1058 kvm_mmu_reset_context(vcpu);
1059
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001060 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001061}
1062
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001063void kvm_enable_efer_bits(u64 mask)
1064{
1065 efer_reserved_bits &= ~mask;
1066}
1067EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1068
Carsten Otte15c4a642007-10-30 18:44:17 +01001069/*
1070 * Writes msr value into into the appropriate "register".
1071 * Returns 0 on success, non-0 otherwise.
1072 * Assumes vcpu_load() was already called.
1073 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001074int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01001075{
Nadav Amit854e8bb2014-09-16 03:24:05 +03001076 switch (msr->index) {
1077 case MSR_FS_BASE:
1078 case MSR_GS_BASE:
1079 case MSR_KERNEL_GS_BASE:
1080 case MSR_CSTAR:
1081 case MSR_LSTAR:
1082 if (is_noncanonical_address(msr->data))
1083 return 1;
1084 break;
1085 case MSR_IA32_SYSENTER_EIP:
1086 case MSR_IA32_SYSENTER_ESP:
1087 /*
1088 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1089 * non-canonical address is written on Intel but not on
1090 * AMD (which ignores the top 32-bits, because it does
1091 * not implement 64-bit SYSENTER).
1092 *
1093 * 64-bit code should hence be able to write a non-canonical
1094 * value on AMD. Making the address canonical ensures that
1095 * vmentry does not fail on Intel after writing a non-canonical
1096 * value, and that something deterministic happens if the guest
1097 * invokes 64-bit SYSENTER.
1098 */
1099 msr->data = get_canonical(msr->data);
1100 }
Will Auld8fe8ab42012-11-29 12:42:12 -08001101 return kvm_x86_ops->set_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001102}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001103EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001104
Carsten Otte313a3dc2007-10-11 19:16:52 +02001105/*
1106 * Adapt set_msr() to msr_io()'s calling convention
1107 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001108static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1109{
1110 struct msr_data msr;
1111 int r;
1112
1113 msr.index = index;
1114 msr.host_initiated = true;
1115 r = kvm_get_msr(vcpu, &msr);
1116 if (r)
1117 return r;
1118
1119 *data = msr.data;
1120 return 0;
1121}
1122
Carsten Otte313a3dc2007-10-11 19:16:52 +02001123static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1124{
Will Auld8fe8ab42012-11-29 12:42:12 -08001125 struct msr_data msr;
1126
1127 msr.data = *data;
1128 msr.index = index;
1129 msr.host_initiated = true;
1130 return kvm_set_msr(vcpu, &msr);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001131}
1132
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001133#ifdef CONFIG_X86_64
1134struct pvclock_gtod_data {
1135 seqcount_t seq;
1136
1137 struct { /* extract of a clocksource struct */
1138 int vclock_mode;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001139 u64 cycle_last;
1140 u64 mask;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001141 u32 mult;
1142 u32 shift;
1143 } clock;
1144
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001145 u64 boot_ns;
1146 u64 nsec_base;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001147 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001148};
1149
1150static struct pvclock_gtod_data pvclock_gtod_data;
1151
1152static void update_pvclock_gtod(struct timekeeper *tk)
1153{
1154 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001155 u64 boot_ns;
1156
Peter Zijlstra876e7882015-03-19 10:09:06 +01001157 boot_ns = ktime_to_ns(ktime_add(tk->tkr_mono.base, tk->offs_boot));
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001158
1159 write_seqcount_begin(&vdata->seq);
1160
1161 /* copy pvclock gtod data */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001162 vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode;
1163 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1164 vdata->clock.mask = tk->tkr_mono.mask;
1165 vdata->clock.mult = tk->tkr_mono.mult;
1166 vdata->clock.shift = tk->tkr_mono.shift;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001167
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001168 vdata->boot_ns = boot_ns;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001169 vdata->nsec_base = tk->tkr_mono.xtime_nsec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001170
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001171 vdata->wall_time_sec = tk->xtime_sec;
1172
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001173 write_seqcount_end(&vdata->seq);
1174}
1175#endif
1176
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001177void kvm_set_pending_timer(struct kvm_vcpu *vcpu)
1178{
1179 /*
1180 * Note: KVM_REQ_PENDING_TIMER is implicitly checked in
1181 * vcpu_enter_guest. This function is only called from
1182 * the physical CPU that is running vcpu.
1183 */
1184 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1185}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001186
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001187static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1188{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001189 int version;
1190 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001191 struct pvclock_wall_clock wc;
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001192 struct timespec64 boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001193
1194 if (!wall_clock)
1195 return;
1196
Avi Kivity9ed3c442010-05-04 15:00:37 +03001197 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1198 if (r)
1199 return;
1200
1201 if (version & 1)
1202 ++version; /* first time write, random junk */
1203
1204 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001205
Nicholas Krause1dab1342015-12-30 13:08:46 -05001206 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
1207 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001208
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001209 /*
1210 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001211 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001212 * wall clock specified here. guest system time equals host
1213 * system time for us, thus we must fill in host boot time here.
1214 */
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001215 getboottime64(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001216
Bruce Rogers4b648662012-07-20 10:44:24 -06001217 if (kvm->arch.kvmclock_offset) {
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001218 struct timespec64 ts = ns_to_timespec64(kvm->arch.kvmclock_offset);
1219 boot = timespec64_sub(boot, ts);
Bruce Rogers4b648662012-07-20 10:44:24 -06001220 }
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001221 wc.sec = (u32)boot.tv_sec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001222 wc.nsec = boot.tv_nsec;
1223 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001224
1225 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1226
1227 version++;
1228 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001229}
1230
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001231static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1232{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01001233 do_shl32_div32(dividend, divisor);
1234 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001235}
1236
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001237static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001238 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001239{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001240 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001241 int32_t shift = 0;
1242 uint64_t tps64;
1243 uint32_t tps32;
1244
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001245 tps64 = base_hz;
1246 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02001247 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001248 tps64 >>= 1;
1249 shift--;
1250 }
1251
1252 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001253 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1254 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001255 scaled64 >>= 1;
1256 else
1257 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001258 shift++;
1259 }
1260
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001261 *pshift = shift;
1262 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001263
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001264 pr_debug("%s: base_hz %llu => %llu, shift %d, mul %u\n",
1265 __func__, base_hz, scaled_hz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001266}
1267
Marcelo Tosattid8281992012-11-27 23:29:01 -02001268#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001269static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001270#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001271
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001272static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001273static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001274
Zachary Amsdencc578282012-02-03 15:43:50 -02001275static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001276{
Zachary Amsdencc578282012-02-03 15:43:50 -02001277 u64 v = (u64)khz * (1000000 + ppm);
1278 do_div(v, 1000000);
1279 return v;
1280}
1281
Haozhong Zhang381d5852015-10-20 15:39:04 +08001282static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
1283{
1284 u64 ratio;
1285
1286 /* Guest TSC same frequency as host TSC? */
1287 if (!scale) {
1288 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
1289 return 0;
1290 }
1291
1292 /* TSC scaling supported? */
1293 if (!kvm_has_tsc_control) {
1294 if (user_tsc_khz > tsc_khz) {
1295 vcpu->arch.tsc_catchup = 1;
1296 vcpu->arch.tsc_always_catchup = 1;
1297 return 0;
1298 } else {
1299 WARN(1, "user requested TSC rate below hardware speed\n");
1300 return -1;
1301 }
1302 }
1303
1304 /* TSC scaling required - calculate ratio */
1305 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
1306 user_tsc_khz, tsc_khz);
1307
1308 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
1309 WARN_ONCE(1, "Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
1310 user_tsc_khz);
1311 return -1;
1312 }
1313
1314 vcpu->arch.tsc_scaling_ratio = ratio;
1315 return 0;
1316}
1317
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001318static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02001319{
1320 u32 thresh_lo, thresh_hi;
1321 int use_scaling = 0;
1322
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001323 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001324 if (user_tsc_khz == 0) {
Haozhong Zhangad721882015-10-20 15:39:02 +08001325 /* set tsc_scaling_ratio to a safe value */
1326 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
Haozhong Zhang381d5852015-10-20 15:39:04 +08001327 return -1;
Haozhong Zhangad721882015-10-20 15:39:02 +08001328 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001329
Zachary Amsdenc2855452010-09-18 14:38:15 -10001330 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001331 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02001332 &vcpu->arch.virtual_tsc_shift,
1333 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001334 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02001335
1336 /*
1337 * Compute the variation in TSC rate which is acceptable
1338 * within the range of tolerance and decide if the
1339 * rate being applied is within that bounds of the hardware
1340 * rate. If so, no scaling or compensation need be done.
1341 */
1342 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1343 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001344 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
1345 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 -02001346 use_scaling = 1;
1347 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001348 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001349}
1350
1351static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1352{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001353 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001354 vcpu->arch.virtual_tsc_mult,
1355 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001356 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001357 return tsc;
1358}
1359
Fengguang Wu69b00492015-01-19 22:33:39 +08001360static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001361{
1362#ifdef CONFIG_X86_64
1363 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001364 struct kvm_arch *ka = &vcpu->kvm->arch;
1365 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1366
1367 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1368 atomic_read(&vcpu->kvm->online_vcpus));
1369
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001370 /*
1371 * Once the masterclock is enabled, always perform request in
1372 * order to update it.
1373 *
1374 * In order to enable masterclock, the host clocksource must be TSC
1375 * and the vcpus need to have matched TSCs. When that happens,
1376 * perform request to enable masterclock.
1377 */
1378 if (ka->use_master_clock ||
1379 (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001380 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1381
1382 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1383 atomic_read(&vcpu->kvm->online_vcpus),
1384 ka->use_master_clock, gtod->clock.vclock_mode);
1385#endif
1386}
1387
Will Auldba904632012-11-29 12:42:50 -08001388static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1389{
Luiz Capitulino3e3f5022016-09-07 14:47:20 -04001390 u64 curr_offset = vcpu->arch.tsc_offset;
Will Auldba904632012-11-29 12:42:50 -08001391 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1392}
1393
Haozhong Zhang35181e82015-10-20 15:39:03 +08001394/*
1395 * Multiply tsc by a fixed point number represented by ratio.
1396 *
1397 * The most significant 64-N bits (mult) of ratio represent the
1398 * integral part of the fixed point number; the remaining N bits
1399 * (frac) represent the fractional part, ie. ratio represents a fixed
1400 * point number (mult + frac * 2^(-N)).
1401 *
1402 * N equals to kvm_tsc_scaling_ratio_frac_bits.
1403 */
1404static inline u64 __scale_tsc(u64 ratio, u64 tsc)
1405{
1406 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
1407}
1408
1409u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
1410{
1411 u64 _tsc = tsc;
1412 u64 ratio = vcpu->arch.tsc_scaling_ratio;
1413
1414 if (ratio != kvm_default_tsc_scaling_ratio)
1415 _tsc = __scale_tsc(ratio, tsc);
1416
1417 return _tsc;
1418}
1419EXPORT_SYMBOL_GPL(kvm_scale_tsc);
1420
Haozhong Zhang07c14192015-10-20 15:39:05 +08001421static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1422{
1423 u64 tsc;
1424
1425 tsc = kvm_scale_tsc(vcpu, rdtsc());
1426
1427 return target_tsc - tsc;
1428}
1429
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001430u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
1431{
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001432 return vcpu->arch.tsc_offset + kvm_scale_tsc(vcpu, host_tsc);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001433}
1434EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
1435
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04001436static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1437{
1438 kvm_x86_ops->write_tsc_offset(vcpu, offset);
1439 vcpu->arch.tsc_offset = offset;
1440}
1441
Will Auld8fe8ab42012-11-29 12:42:12 -08001442void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10001443{
1444 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001445 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001446 unsigned long flags;
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001447 s64 usdiff;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001448 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001449 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08001450 u64 data = msr->data;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001451
Jan Kiszka038f8c12011-02-04 10:49:11 +01001452 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Haozhong Zhang07c14192015-10-20 15:39:05 +08001453 offset = kvm_compute_tsc_offset(vcpu, data);
Paolo Bonzini108b2492016-09-01 14:21:03 +02001454 ns = ktime_get_boot_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001455 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001456
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001457 if (vcpu->arch.virtual_tsc_khz) {
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001458 int faulted = 0;
1459
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001460 /* n.b - signed multiplication and division required */
1461 usdiff = data - kvm->arch.last_tsc_write;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001462#ifdef CONFIG_X86_64
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001463 usdiff = (usdiff * 1000) / vcpu->arch.virtual_tsc_khz;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001464#else
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001465 /* do_div() only does unsigned */
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001466 asm("1: idivl %[divisor]\n"
1467 "2: xor %%edx, %%edx\n"
1468 " movl $0, %[faulted]\n"
1469 "3:\n"
1470 ".section .fixup,\"ax\"\n"
1471 "4: movl $1, %[faulted]\n"
1472 " jmp 3b\n"
1473 ".previous\n"
1474
1475 _ASM_EXTABLE(1b, 4b)
1476
1477 : "=A"(usdiff), [faulted] "=r" (faulted)
1478 : "A"(usdiff * 1000), [divisor] "rm"(vcpu->arch.virtual_tsc_khz));
1479
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001480#endif
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001481 do_div(elapsed, 1000);
1482 usdiff -= elapsed;
1483 if (usdiff < 0)
1484 usdiff = -usdiff;
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001485
1486 /* idivl overflow => difference is larger than USEC_PER_SEC */
1487 if (faulted)
1488 usdiff = USEC_PER_SEC;
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001489 } else
1490 usdiff = USEC_PER_SEC; /* disable TSC match window below */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001491
1492 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001493 * Special case: TSC write with a small delta (1 second) of virtual
1494 * cycle time against real time is interpreted as an attempt to
1495 * synchronize the CPU.
1496 *
1497 * For a reliable TSC, we can match TSC offsets, and for an unstable
1498 * TSC, we add elapsed time in this computation. We could let the
1499 * compensation code attempt to catch up if we fall behind, but
1500 * it's better to try to match offsets from the beginning.
1501 */
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001502 if (usdiff < USEC_PER_SEC &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001503 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001504 if (!check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02001505 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001506 pr_debug("kvm: matched tsc offset for %llu\n", data);
1507 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001508 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001509 data += delta;
Haozhong Zhang07c14192015-10-20 15:39:05 +08001510 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001511 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001512 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001513 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001514 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001515 } else {
1516 /*
1517 * We split periods of matched TSC writes into generations.
1518 * For each generation, we track the original measured
1519 * nanosecond time, offset, and write, so if TSCs are in
1520 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08001521 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02001522 *
1523 * These values are tracked in kvm->arch.cur_xxx variables.
1524 */
1525 kvm->arch.cur_tsc_generation++;
1526 kvm->arch.cur_tsc_nsec = ns;
1527 kvm->arch.cur_tsc_write = data;
1528 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001529 matched = false;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001530 pr_debug("kvm: new tsc generation %llu, clock %llu\n",
Zachary Amsdene26101b2012-02-03 15:43:57 -02001531 kvm->arch.cur_tsc_generation, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001532 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02001533
1534 /*
1535 * We also track th most recent recorded KHZ, write and time to
1536 * allow the matching interval to be extended at each write.
1537 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001538 kvm->arch.last_tsc_nsec = ns;
1539 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001540 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001541
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001542 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001543
1544 /* Keep track of which generation this VCPU has synchronized to */
1545 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
1546 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
1547 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
1548
Will Auldba904632012-11-29 12:42:50 -08001549 if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated)
1550 update_ia32_tsc_adjust_msr(vcpu, offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04001551 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001552 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001553
1554 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001555 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001556 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001557 } else if (!already_matched) {
1558 kvm->arch.nr_vcpus_matched_tsc++;
1559 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001560
1561 kvm_track_tsc_matching(vcpu);
1562 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001563}
Zachary Amsdene26101b2012-02-03 15:43:57 -02001564
Zachary Amsden99e3e302010-08-19 22:07:17 -10001565EXPORT_SYMBOL_GPL(kvm_write_tsc);
1566
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001567static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
1568 s64 adjustment)
1569{
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001570 kvm_vcpu_write_tsc_offset(vcpu, vcpu->arch.tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001571}
1572
1573static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
1574{
1575 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
1576 WARN_ON(adjustment < 0);
1577 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001578 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001579}
1580
Marcelo Tosattid8281992012-11-27 23:29:01 -02001581#ifdef CONFIG_X86_64
1582
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001583static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001584{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001585 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02001586 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001587
1588 if (likely(ret >= last))
1589 return ret;
1590
1591 /*
1592 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08001593 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02001594 * very likely) and there's a data dependence, so force GCC
1595 * to generate a branch instead. I don't barrier() because
1596 * we don't actually need a barrier, and if this function
1597 * ever gets inlined it will generate worse code.
1598 */
1599 asm volatile ("");
1600 return last;
1601}
1602
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001603static inline u64 vgettsc(u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001604{
1605 long v;
1606 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1607
1608 *cycle_now = read_tsc();
1609
1610 v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask;
1611 return v * gtod->clock.mult;
1612}
1613
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001614static int do_monotonic_boot(s64 *t, u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001615{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001616 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001617 unsigned long seq;
1618 int mode;
1619 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001620
Marcelo Tosattid8281992012-11-27 23:29:01 -02001621 do {
1622 seq = read_seqcount_begin(&gtod->seq);
1623 mode = gtod->clock.vclock_mode;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001624 ns = gtod->nsec_base;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001625 ns += vgettsc(cycle_now);
1626 ns >>= gtod->clock.shift;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001627 ns += gtod->boot_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001628 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001629 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001630
1631 return mode;
1632}
1633
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001634static int do_realtime(struct timespec *ts, u64 *cycle_now)
1635{
1636 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1637 unsigned long seq;
1638 int mode;
1639 u64 ns;
1640
1641 do {
1642 seq = read_seqcount_begin(&gtod->seq);
1643 mode = gtod->clock.vclock_mode;
1644 ts->tv_sec = gtod->wall_time_sec;
1645 ns = gtod->nsec_base;
1646 ns += vgettsc(cycle_now);
1647 ns >>= gtod->clock.shift;
1648 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
1649
1650 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
1651 ts->tv_nsec = ns;
1652
1653 return mode;
1654}
1655
Marcelo Tosattid8281992012-11-27 23:29:01 -02001656/* returns true if host is using tsc clocksource */
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001657static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001658{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001659 /* checked again under seqlock below */
1660 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1661 return false;
1662
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001663 return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001664}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001665
1666/* returns true if host is using tsc clocksource */
1667static bool kvm_get_walltime_and_clockread(struct timespec *ts,
1668 u64 *cycle_now)
1669{
1670 /* checked again under seqlock below */
1671 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1672 return false;
1673
1674 return do_realtime(ts, cycle_now) == VCLOCK_TSC;
1675}
Marcelo Tosattid8281992012-11-27 23:29:01 -02001676#endif
1677
1678/*
1679 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001680 * Assuming a stable TSC across physical CPUS, and a stable TSC
1681 * across virtual CPUs, the following condition is possible.
1682 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02001683 * CPUs at the next numbered event.
1684 *
1685 * "timespecX" represents host monotonic time. "tscX" represents
1686 * RDTSC value.
1687 *
1688 * VCPU0 on CPU0 | VCPU1 on CPU1
1689 *
1690 * 1. read timespec0,tsc0
1691 * 2. | timespec1 = timespec0 + N
1692 * | tsc1 = tsc0 + M
1693 * 3. transition to guest | transition to guest
1694 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
1695 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
1696 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
1697 *
1698 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
1699 *
1700 * - ret0 < ret1
1701 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
1702 * ...
1703 * - 0 < N - M => M < N
1704 *
1705 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
1706 * always the case (the difference between two distinct xtime instances
1707 * might be smaller then the difference between corresponding TSC reads,
1708 * when updating guest vcpus pvclock areas).
1709 *
1710 * To avoid that problem, do not allow visibility of distinct
1711 * system_timestamp/tsc_timestamp values simultaneously: use a master
1712 * copy of host monotonic time values. Update that master copy
1713 * in lockstep.
1714 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001715 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02001716 *
1717 */
1718
1719static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
1720{
1721#ifdef CONFIG_X86_64
1722 struct kvm_arch *ka = &kvm->arch;
1723 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001724 bool host_tsc_clocksource, vcpus_matched;
1725
1726 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1727 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02001728
1729 /*
1730 * If the host uses TSC clock, then passthrough TSC as stable
1731 * to the guest.
1732 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001733 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02001734 &ka->master_kernel_ns,
1735 &ka->master_cycle_now);
1736
Marcelo Tosatti16a96022014-05-14 12:43:24 -03001737 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Marcelo Tosatti54750f22015-01-20 15:54:52 -02001738 && !backwards_tsc_observed
1739 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001740
Marcelo Tosattid8281992012-11-27 23:29:01 -02001741 if (ka->use_master_clock)
1742 atomic_set(&kvm_guest_has_master_clock, 1);
1743
1744 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001745 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
1746 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001747#endif
1748}
1749
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01001750void kvm_make_mclock_inprogress_request(struct kvm *kvm)
1751{
1752 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
1753}
1754
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001755static void kvm_gen_update_masterclock(struct kvm *kvm)
1756{
1757#ifdef CONFIG_X86_64
1758 int i;
1759 struct kvm_vcpu *vcpu;
1760 struct kvm_arch *ka = &kvm->arch;
1761
1762 spin_lock(&ka->pvclock_gtod_sync_lock);
1763 kvm_make_mclock_inprogress_request(kvm);
1764 /* no guest entries from this point */
1765 pvclock_update_vm_gtod_copy(kvm);
1766
1767 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001768 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001769
1770 /* guest entries allowed */
1771 kvm_for_each_vcpu(i, vcpu, kvm)
1772 clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests);
1773
1774 spin_unlock(&ka->pvclock_gtod_sync_lock);
1775#endif
1776}
1777
Paolo Bonzini108b2492016-09-01 14:21:03 +02001778static u64 __get_kvmclock_ns(struct kvm *kvm)
1779{
Paolo Bonzini108b2492016-09-01 14:21:03 +02001780 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01001781 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02001782
Paolo Bonzini8b953442016-11-16 18:31:30 +01001783 spin_lock(&ka->pvclock_gtod_sync_lock);
1784 if (!ka->use_master_clock) {
1785 spin_unlock(&ka->pvclock_gtod_sync_lock);
1786 return ktime_get_boot_ns() + ka->kvmclock_offset;
Paolo Bonzini108b2492016-09-01 14:21:03 +02001787 }
1788
Paolo Bonzini8b953442016-11-16 18:31:30 +01001789 hv_clock.tsc_timestamp = ka->master_cycle_now;
1790 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
1791 spin_unlock(&ka->pvclock_gtod_sync_lock);
1792
1793 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
1794 &hv_clock.tsc_shift,
1795 &hv_clock.tsc_to_system_mul);
1796 return __pvclock_read_cycles(&hv_clock, rdtsc());
Paolo Bonzini108b2492016-09-01 14:21:03 +02001797}
1798
1799u64 get_kvmclock_ns(struct kvm *kvm)
1800{
1801 unsigned long flags;
1802 s64 ns;
1803
1804 local_irq_save(flags);
1805 ns = __get_kvmclock_ns(kvm);
1806 local_irq_restore(flags);
1807
1808 return ns;
1809}
1810
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001811static void kvm_setup_pvclock_page(struct kvm_vcpu *v)
1812{
1813 struct kvm_vcpu_arch *vcpu = &v->arch;
1814 struct pvclock_vcpu_time_info guest_hv_clock;
1815
Cao, Leibbd64112017-02-03 20:04:35 +00001816 if (unlikely(kvm_vcpu_read_guest_cached(v, &vcpu->pv_time,
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001817 &guest_hv_clock, sizeof(guest_hv_clock))))
1818 return;
1819
1820 /* This VCPU is paused, but it's legal for a guest to read another
1821 * VCPU's kvmclock, so we really have to follow the specification where
1822 * it says that version is odd if data is being modified, and even after
1823 * it is consistent.
1824 *
1825 * Version field updates must be kept separate. This is because
1826 * kvm_write_guest_cached might use a "rep movs" instruction, and
1827 * writes within a string instruction are weakly ordered. So there
1828 * are three writes overall.
1829 *
1830 * As a small optimization, only write the version field in the first
1831 * and third write. The vcpu->pv_time cache is still valid, because the
1832 * version field is the first in the struct.
1833 */
1834 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
1835
1836 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Cao, Leibbd64112017-02-03 20:04:35 +00001837 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1838 &vcpu->hv_clock,
1839 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001840
1841 smp_wmb();
1842
1843 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
1844 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
1845
1846 if (vcpu->pvclock_set_guest_stopped_request) {
1847 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
1848 vcpu->pvclock_set_guest_stopped_request = false;
1849 }
1850
1851 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
1852
Cao, Leibbd64112017-02-03 20:04:35 +00001853 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1854 &vcpu->hv_clock,
1855 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001856
1857 smp_wmb();
1858
1859 vcpu->hv_clock.version++;
Cao, Leibbd64112017-02-03 20:04:35 +00001860 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1861 &vcpu->hv_clock,
1862 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001863}
1864
Zachary Amsden34c238a2010-09-18 14:38:14 -10001865static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001866{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001867 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001868 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001869 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02001870 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001871 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001872 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001873 bool use_master_clock;
1874
1875 kernel_ns = 0;
1876 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001877
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001878 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02001879 * If the host uses TSC clock, then passthrough TSC as stable
1880 * to the guest.
1881 */
1882 spin_lock(&ka->pvclock_gtod_sync_lock);
1883 use_master_clock = ka->use_master_clock;
1884 if (use_master_clock) {
1885 host_tsc = ka->master_cycle_now;
1886 kernel_ns = ka->master_kernel_ns;
1887 }
1888 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001889
1890 /* Keep irq disabled to prevent changes to the clock */
1891 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001892 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
1893 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001894 local_irq_restore(flags);
1895 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
1896 return 1;
1897 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02001898 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02001899 host_tsc = rdtsc();
Paolo Bonzini108b2492016-09-01 14:21:03 +02001900 kernel_ns = ktime_get_boot_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02001901 }
1902
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001903 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001904
1905 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001906 * We may have to catch up the TSC to match elapsed wall clock
1907 * time for two reasons, even if kvmclock is used.
1908 * 1) CPU could have been running below the maximum TSC rate
1909 * 2) Broken TSC compensation resets the base at each VCPU
1910 * entry to avoid unknown leaps of TSC even when running
1911 * again on the same CPU. This may cause apparent elapsed
1912 * time to disappear, and the guest to stand still or run
1913 * very slowly.
1914 */
1915 if (vcpu->tsc_catchup) {
1916 u64 tsc = compute_guest_tsc(v, kernel_ns);
1917 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02001918 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001919 tsc_timestamp = tsc;
1920 }
1921 }
1922
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001923 local_irq_restore(flags);
1924
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001925 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10001926
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001927 if (kvm_has_tsc_control)
1928 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
1929
1930 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001931 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001932 &vcpu->hv_clock.tsc_shift,
1933 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001934 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001935 }
1936
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001937 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001938 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10001939 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001940
Marcelo Tosattid8281992012-11-27 23:29:01 -02001941 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001942 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001943 if (use_master_clock)
1944 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
1945
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001946 vcpu->hv_clock.flags = pvclock_flags;
1947
Paolo Bonzini095cf552016-02-08 12:54:12 +01001948 if (vcpu->pv_time_enabled)
1949 kvm_setup_pvclock_page(v);
1950 if (v == kvm_get_vcpu(v->kvm, 0))
1951 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001952 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001953}
1954
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001955/*
1956 * kvmclock updates which are isolated to a given vcpu, such as
1957 * vcpu->cpu migration, should not allow system_timestamp from
1958 * the rest of the vcpus to remain static. Otherwise ntp frequency
1959 * correction applies to one vcpu's system_timestamp but not
1960 * the others.
1961 *
1962 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01001963 * We need to rate-limit these requests though, as they can
1964 * considerably slow guests that have a large number of vcpus.
1965 * The time for a remote vcpu to update its kvmclock is bound
1966 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001967 */
1968
Andrew Jones7e44e442014-02-28 12:52:54 +01001969#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
1970
1971static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001972{
1973 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01001974 struct delayed_work *dwork = to_delayed_work(work);
1975 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1976 kvmclock_update_work);
1977 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001978 struct kvm_vcpu *vcpu;
1979
1980 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001981 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001982 kvm_vcpu_kick(vcpu);
1983 }
1984}
1985
Andrew Jones7e44e442014-02-28 12:52:54 +01001986static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
1987{
1988 struct kvm *kvm = v->kvm;
1989
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001990 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01001991 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
1992 KVMCLOCK_UPDATE_DELAY);
1993}
1994
Andrew Jones332967a2014-02-28 12:52:55 +01001995#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
1996
1997static void kvmclock_sync_fn(struct work_struct *work)
1998{
1999 struct delayed_work *dwork = to_delayed_work(work);
2000 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2001 kvmclock_sync_work);
2002 struct kvm *kvm = container_of(ka, struct kvm, arch);
2003
Marcelo Tosatti630994b2015-05-12 22:42:04 -03002004 if (!kvmclock_periodic_sync)
2005 return;
2006
Andrew Jones332967a2014-02-28 12:52:55 +01002007 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
2008 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
2009 KVMCLOCK_SYNC_PERIOD);
2010}
2011
Huang Ying890ca9a2009-05-11 16:48:15 +08002012static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
2013{
2014 u64 mcg_cap = vcpu->arch.mcg_cap;
2015 unsigned bank_num = mcg_cap & 0xff;
2016
2017 switch (msr) {
2018 case MSR_IA32_MCG_STATUS:
2019 vcpu->arch.mcg_status = data;
2020 break;
2021 case MSR_IA32_MCG_CTL:
2022 if (!(mcg_cap & MCG_CTL_P))
2023 return 1;
2024 if (data != 0 && data != ~(u64)0)
2025 return -1;
2026 vcpu->arch.mcg_ctl = data;
2027 break;
2028 default:
2029 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002030 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002031 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01002032 /* only 0 or all 1s can be written to IA32_MCi_CTL
2033 * some Linux kernels though clear bit 10 in bank 4 to
2034 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
2035 * this to avoid an uncatched #GP in the guest
2036 */
Huang Ying890ca9a2009-05-11 16:48:15 +08002037 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01002038 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08002039 return -1;
2040 vcpu->arch.mce_banks[offset] = data;
2041 break;
2042 }
2043 return 1;
2044 }
2045 return 0;
2046}
2047
Ed Swierkffde22a2009-10-15 15:21:43 -07002048static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
2049{
2050 struct kvm *kvm = vcpu->kvm;
2051 int lm = is_long_mode(vcpu);
2052 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
2053 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
2054 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
2055 : kvm->arch.xen_hvm_config.blob_size_32;
2056 u32 page_num = data & ~PAGE_MASK;
2057 u64 page_addr = data & PAGE_MASK;
2058 u8 *page;
2059 int r;
2060
2061 r = -E2BIG;
2062 if (page_num >= blob_size)
2063 goto out;
2064 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002065 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
2066 if (IS_ERR(page)) {
2067 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07002068 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002069 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002070 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07002071 goto out_free;
2072 r = 0;
2073out_free:
2074 kfree(page);
2075out:
2076 return r;
2077}
2078
Gleb Natapov344d9582010-10-14 11:22:50 +02002079static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
2080{
2081 gpa_t gpa = data & ~0x3f;
2082
Guo Chao4a969982012-06-28 15:17:27 +08002083 /* Bits 2:5 are reserved, Should be zero */
Gleb Natapov6adba522010-10-14 11:22:55 +02002084 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02002085 return 1;
2086
2087 vcpu->arch.apf.msr_val = data;
2088
2089 if (!(data & KVM_ASYNC_PF_ENABLED)) {
2090 kvm_clear_async_pf_completion_queue(vcpu);
2091 kvm_async_pf_hash_reset(vcpu);
2092 return 0;
2093 }
2094
Cao, Leibbd64112017-02-03 20:04:35 +00002095 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu, &vcpu->arch.apf.data, gpa,
Andrew Honig8f964522013-03-29 09:35:21 -07002096 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02002097 return 1;
2098
Gleb Natapov6adba522010-10-14 11:22:55 +02002099 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02002100 kvm_async_pf_wakeup_all(vcpu);
2101 return 0;
2102}
2103
Glauber Costa12f9a482011-02-01 14:16:40 -05002104static void kvmclock_reset(struct kvm_vcpu *vcpu)
2105{
Andy Honig0b794592013-02-20 14:48:10 -08002106 vcpu->arch.pv_time_enabled = false;
Glauber Costa12f9a482011-02-01 14:16:40 -05002107}
2108
Glauber Costac9aaa892011-07-11 15:28:14 -04002109static void record_steal_time(struct kvm_vcpu *vcpu)
2110{
2111 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2112 return;
2113
Cao, Leibbd64112017-02-03 20:04:35 +00002114 if (unlikely(kvm_vcpu_read_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 return;
2117
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002118 vcpu->arch.st.steal.preempted = 0;
2119
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002120 if (vcpu->arch.st.steal.version & 1)
2121 vcpu->arch.st.steal.version += 1; /* first time write, random junk */
2122
2123 vcpu->arch.st.steal.version += 1;
2124
Cao, Leibbd64112017-02-03 20:04:35 +00002125 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002126 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2127
2128 smp_wmb();
2129
Liang Chenc54cdf12016-03-16 19:33:16 +08002130 vcpu->arch.st.steal.steal += current->sched_info.run_delay -
2131 vcpu->arch.st.last_steal;
2132 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002133
Cao, Leibbd64112017-02-03 20:04:35 +00002134 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002135 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2136
2137 smp_wmb();
2138
2139 vcpu->arch.st.steal.version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04002140
Cao, Leibbd64112017-02-03 20:04:35 +00002141 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Glauber Costac9aaa892011-07-11 15:28:14 -04002142 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2143}
2144
Will Auld8fe8ab42012-11-29 12:42:12 -08002145int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002146{
Gleb Natapov57537852012-01-15 14:17:22 +02002147 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002148 u32 msr = msr_info->index;
2149 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002150
Carsten Otte15c4a642007-10-30 18:44:17 +01002151 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002152 case MSR_AMD64_NB_CFG:
2153 case MSR_IA32_UCODE_REV:
2154 case MSR_IA32_UCODE_WRITE:
2155 case MSR_VM_HSAVE_PA:
2156 case MSR_AMD64_PATCH_LOADER:
2157 case MSR_AMD64_BU_CFG2:
2158 break;
2159
Carsten Otte15c4a642007-10-30 18:44:17 +01002160 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02002161 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002162 case MSR_K7_HWCR:
2163 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002164 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002165 data &= ~(u64)0x8; /* ignore TLB cache disable */
Matthias Lange22d48b2d2014-06-26 13:50:15 +02002166 data &= ~(u64)0x40000; /* ignore Mc status write enable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02002167 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002168 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2169 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002170 return 1;
2171 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002172 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002173 case MSR_FAM10H_MMIO_CONF_BASE:
2174 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002175 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2176 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002177 return 1;
2178 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002179 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002180 case MSR_IA32_DEBUGCTLMSR:
2181 if (!data) {
2182 /* We support the non-activated case already */
2183 break;
2184 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2185 /* Values other than LBR and BTF are vendor-specific,
2186 thus reserved and should throw a #GP */
2187 return 1;
2188 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002189 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2190 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002191 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002192 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002193 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002194 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002195 return kvm_set_apic_base(vcpu, msr_info);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002196 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2197 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002198 case MSR_IA32_TSCDEADLINE:
2199 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2200 break;
Will Auldba904632012-11-29 12:42:50 -08002201 case MSR_IA32_TSC_ADJUST:
2202 if (guest_cpuid_has_tsc_adjust(vcpu)) {
2203 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002204 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08002205 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08002206 }
2207 vcpu->arch.ia32_tsc_adjust_msr = data;
2208 }
2209 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002210 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002211 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01002212 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002213 case MSR_IA32_SMBASE:
2214 if (!msr_info->host_initiated)
2215 return 1;
2216 vcpu->arch.smbase = data;
2217 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002218 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002219 case MSR_KVM_WALL_CLOCK:
2220 vcpu->kvm->arch.wall_clock = data;
2221 kvm_write_wall_clock(vcpu->kvm, data);
2222 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002223 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002224 case MSR_KVM_SYSTEM_TIME: {
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002225 struct kvm_arch *ka = &vcpu->kvm->arch;
2226
Glauber Costa12f9a482011-02-01 14:16:40 -05002227 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002228
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002229 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2230 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2231
2232 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
2233 set_bit(KVM_REQ_MASTERCLOCK_UPDATE,
2234 &vcpu->requests);
2235
2236 ka->boot_vcpu_runs_old_kvmclock = tmp;
2237 }
2238
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002239 vcpu->arch.time = data;
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002240 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002241
2242 /* we verify if the enable bit is set... */
2243 if (!(data & 1))
2244 break;
2245
Cao, Leibbd64112017-02-03 20:04:35 +00002246 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu,
Andrew Honig8f964522013-03-29 09:35:21 -07002247 &vcpu->arch.pv_time, data & ~1ULL,
2248 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002249 vcpu->arch.pv_time_enabled = false;
2250 else
2251 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002252
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002253 break;
2254 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002255 case MSR_KVM_ASYNC_PF_EN:
2256 if (kvm_pv_enable_async_pf(vcpu, data))
2257 return 1;
2258 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002259 case MSR_KVM_STEAL_TIME:
2260
2261 if (unlikely(!sched_info_on()))
2262 return 1;
2263
2264 if (data & KVM_STEAL_RESERVED_MASK)
2265 return 1;
2266
Cao, Leibbd64112017-02-03 20:04:35 +00002267 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu, &vcpu->arch.st.stime,
Andrew Honig8f964522013-03-29 09:35:21 -07002268 data & KVM_STEAL_VALID_BITS,
2269 sizeof(struct kvm_steal_time)))
Glauber Costac9aaa892011-07-11 15:28:14 -04002270 return 1;
2271
2272 vcpu->arch.st.msr_val = data;
2273
2274 if (!(data & KVM_MSR_ENABLED))
2275 break;
2276
Glauber Costac9aaa892011-07-11 15:28:14 -04002277 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2278
2279 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002280 case MSR_KVM_PV_EOI_EN:
2281 if (kvm_lapic_enable_pv_eoi(vcpu, data))
2282 return 1;
2283 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002284
Huang Ying890ca9a2009-05-11 16:48:15 +08002285 case MSR_IA32_MCG_CTL:
2286 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002287 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Huang Ying890ca9a2009-05-11 16:48:15 +08002288 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002289
Wei Huang6912ac32015-06-12 01:34:56 -04002290 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2291 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2292 pr = true; /* fall through */
2293 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2294 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002295 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002296 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002297
2298 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002299 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2300 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002301 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002302 case MSR_K7_CLK_CTL:
2303 /*
2304 * Ignore all writes to this no longer documented MSR.
2305 * Writes are only relevant for old K7 processors,
2306 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002307 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002308 * affected processor models on the command line, hence
2309 * the need to ignore the workaround.
2310 */
2311 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002312 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002313 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2314 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002315 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002316 return kvm_hv_set_msr_common(vcpu, msr, data,
2317 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05002318 case MSR_IA32_BBL_CR_CTL3:
2319 /* Drop writes to this legacy MSR -- see rdmsr
2320 * counterpart for further detail.
2321 */
Borislav Petkov796f4682016-10-27 20:14:45 +02002322 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n", msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002323 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002324 case MSR_AMD64_OSVW_ID_LENGTH:
2325 if (!guest_cpuid_has_osvw(vcpu))
2326 return 1;
2327 vcpu->arch.osvw.length = data;
2328 break;
2329 case MSR_AMD64_OSVW_STATUS:
2330 if (!guest_cpuid_has_osvw(vcpu))
2331 return 1;
2332 vcpu->arch.osvw.status = data;
2333 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002334 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07002335 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
2336 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02002337 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002338 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02002339 if (!ignore_msrs) {
Bandan Dasae0f5492016-11-15 01:36:18 -05002340 vcpu_debug_ratelimited(vcpu, "unhandled wrmsr: 0x%x data 0x%llx\n",
Christoffer Dalla737f252012-06-03 21:17:48 +03002341 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002342 return 1;
2343 } else {
Borislav Petkov796f4682016-10-27 20:14:45 +02002344 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
Christoffer Dalla737f252012-06-03 21:17:48 +03002345 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002346 break;
2347 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002348 }
2349 return 0;
2350}
2351EXPORT_SYMBOL_GPL(kvm_set_msr_common);
2352
2353
2354/*
2355 * Reads an msr value (of 'msr_index') into 'pdata'.
2356 * Returns 0 on success, non-0 otherwise.
2357 * Assumes vcpu_load() was already called.
2358 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002359int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01002360{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002361 return kvm_x86_ops->get_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002362}
Wincy Vanff651cb2014-12-11 08:52:58 +03002363EXPORT_SYMBOL_GPL(kvm_get_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002364
Huang Ying890ca9a2009-05-11 16:48:15 +08002365static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2366{
2367 u64 data;
2368 u64 mcg_cap = vcpu->arch.mcg_cap;
2369 unsigned bank_num = mcg_cap & 0xff;
2370
2371 switch (msr) {
2372 case MSR_IA32_P5_MC_ADDR:
2373 case MSR_IA32_P5_MC_TYPE:
2374 data = 0;
2375 break;
2376 case MSR_IA32_MCG_CAP:
2377 data = vcpu->arch.mcg_cap;
2378 break;
2379 case MSR_IA32_MCG_CTL:
2380 if (!(mcg_cap & MCG_CTL_P))
2381 return 1;
2382 data = vcpu->arch.mcg_ctl;
2383 break;
2384 case MSR_IA32_MCG_STATUS:
2385 data = vcpu->arch.mcg_status;
2386 break;
2387 default:
2388 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002389 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002390 u32 offset = msr - MSR_IA32_MC0_CTL;
2391 data = vcpu->arch.mce_banks[offset];
2392 break;
2393 }
2394 return 1;
2395 }
2396 *pdata = data;
2397 return 0;
2398}
2399
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002400int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002401{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002402 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01002403 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01002404 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002405 case MSR_IA32_DEBUGCTLMSR:
2406 case MSR_IA32_LASTBRANCHFROMIP:
2407 case MSR_IA32_LASTBRANCHTOIP:
2408 case MSR_IA32_LASTINTFROMIP:
2409 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302410 case MSR_K8_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02002411 case MSR_K8_TSEG_ADDR:
2412 case MSR_K8_TSEG_MASK:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302413 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02002414 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02002415 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02002416 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002417 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002418 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03002419 case MSR_IA32_PERF_CTL:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002420 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01002421 break;
Wei Huang6912ac32015-06-12 01:34:56 -04002422 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2423 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2424 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2425 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002426 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002427 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
2428 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02002429 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002430 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002431 msr_info->data = 0x100000000ULL;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002432 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002433 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03002434 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002435 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002436 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002437 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01002438 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02002439 /*
2440 * MSR_EBC_FREQUENCY_ID
2441 * Conservative value valid for even the basic CPU models.
2442 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
2443 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
2444 * and 266MHz for model 3, or 4. Set Core Clock
2445 * Frequency to System Bus Frequency Ratio to 1 (bits
2446 * 31:24) even though these are only valid for CPU
2447 * models > 2, however guests may end up dividing or
2448 * multiplying by zero otherwise.
2449 */
2450 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002451 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02002452 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002453 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002454 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01002455 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002456 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002457 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002458 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002459 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002460 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002461 break;
Will Auldba904632012-11-29 12:42:50 -08002462 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002463 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08002464 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002465 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002466 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01002467 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002468 case MSR_IA32_SMBASE:
2469 if (!msr_info->host_initiated)
2470 return 1;
2471 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01002472 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002473 case MSR_IA32_PERF_STATUS:
2474 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002475 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002476 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08002477 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01002478 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002479 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002480 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01002481 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002482 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002483 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002484 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002485 break;
2486 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002487 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002488 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002489 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02002490 case MSR_KVM_ASYNC_PF_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002491 msr_info->data = vcpu->arch.apf.msr_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02002492 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002493 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002494 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04002495 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002496 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002497 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002498 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002499 case MSR_IA32_P5_MC_ADDR:
2500 case MSR_IA32_P5_MC_TYPE:
2501 case MSR_IA32_MCG_CAP:
2502 case MSR_IA32_MCG_CTL:
2503 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002504 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002505 return get_msr_mce(vcpu, msr_info->index, &msr_info->data);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002506 case MSR_K7_CLK_CTL:
2507 /*
2508 * Provide expected ramp-up count for K7. All other
2509 * are set to zero, indicating minimum divisors for
2510 * every field.
2511 *
2512 * This prevents guest kernels on AMD host with CPU
2513 * type 6, model 8 and higher from exploding due to
2514 * the rdmsr failing.
2515 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002516 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002517 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002518 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002519 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2520 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002521 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine83d5882015-07-03 15:01:34 +03002522 return kvm_hv_get_msr_common(vcpu,
2523 msr_info->index, &msr_info->data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002524 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002525 case MSR_IA32_BBL_CR_CTL3:
2526 /* This legacy MSR exists but isn't fully documented in current
2527 * silicon. It is however accessed by winxp in very narrow
2528 * scenarios where it sets bit #19, itself documented as
2529 * a "reserved" bit. Best effort attempt to source coherent
2530 * read data here should the balance of the register be
2531 * interpreted by the guest:
2532 *
2533 * L2 cache control register 3: 64GB range, 256KB size,
2534 * enabled, latency 0x1, configured
2535 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002536 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05002537 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002538 case MSR_AMD64_OSVW_ID_LENGTH:
2539 if (!guest_cpuid_has_osvw(vcpu))
2540 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002541 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002542 break;
2543 case MSR_AMD64_OSVW_STATUS:
2544 if (!guest_cpuid_has_osvw(vcpu))
2545 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002546 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002547 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002548 default:
Wei Huangc6702c92015-06-19 13:44:45 +02002549 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002550 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002551 if (!ignore_msrs) {
Bandan Dasae0f5492016-11-15 01:36:18 -05002552 vcpu_debug_ratelimited(vcpu, "unhandled rdmsr: 0x%x\n",
2553 msr_info->index);
Andre Przywaraed85c062009-06-25 12:36:49 +02002554 return 1;
2555 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002556 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index);
2557 msr_info->data = 0;
Andre Przywaraed85c062009-06-25 12:36:49 +02002558 }
2559 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002560 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002561 return 0;
2562}
2563EXPORT_SYMBOL_GPL(kvm_get_msr_common);
2564
Carsten Otte313a3dc2007-10-11 19:16:52 +02002565/*
2566 * Read or write a bunch of msrs. All parameters are kernel addresses.
2567 *
2568 * @return number of msrs set successfully.
2569 */
2570static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2571 struct kvm_msr_entry *entries,
2572 int (*do_msr)(struct kvm_vcpu *vcpu,
2573 unsigned index, u64 *data))
2574{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002575 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002576
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002577 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002578 for (i = 0; i < msrs->nmsrs; ++i)
2579 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2580 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002581 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002582
Carsten Otte313a3dc2007-10-11 19:16:52 +02002583 return i;
2584}
2585
2586/*
2587 * Read or write a bunch of msrs. Parameters are user addresses.
2588 *
2589 * @return number of msrs set successfully.
2590 */
2591static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2592 int (*do_msr)(struct kvm_vcpu *vcpu,
2593 unsigned index, u64 *data),
2594 int writeback)
2595{
2596 struct kvm_msrs msrs;
2597 struct kvm_msr_entry *entries;
2598 int r, n;
2599 unsigned size;
2600
2601 r = -EFAULT;
2602 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2603 goto out;
2604
2605 r = -E2BIG;
2606 if (msrs.nmsrs >= MAX_IO_MSRS)
2607 goto out;
2608
Carsten Otte313a3dc2007-10-11 19:16:52 +02002609 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002610 entries = memdup_user(user_msrs->entries, size);
2611 if (IS_ERR(entries)) {
2612 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002613 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002614 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02002615
2616 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2617 if (r < 0)
2618 goto out_free;
2619
2620 r = -EFAULT;
2621 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2622 goto out_free;
2623
2624 r = n;
2625
2626out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002627 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002628out:
2629 return r;
2630}
2631
Alexander Graf784aa3d2014-07-14 18:27:35 +02002632int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002633{
2634 int r;
2635
2636 switch (ext) {
2637 case KVM_CAP_IRQCHIP:
2638 case KVM_CAP_HLT:
2639 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002640 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002641 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002642 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002643 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002644 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002645 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002646 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002647 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002648 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002649 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002650 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002651 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03002652 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002653 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002654 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002655 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002656 case KVM_CAP_XEN_HVM:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002657 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002658 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002659 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002660 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002661 case KVM_CAP_HYPERV_SYNIC:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002662 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002663 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002664 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002665 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002666 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002667 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002668 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002669 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01002670 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05002671 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01002672 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03002673 case KVM_CAP_ENABLE_CAP_VM:
2674 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02002675 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07002676 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01002677 case KVM_CAP_IMMEDIATE_EXIT:
Alex Williamson2a5bab12013-04-16 13:49:18 -06002678#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
2679 case KVM_CAP_ASSIGN_DEV_IRQ:
2680 case KVM_CAP_PCI_2_3:
2681#endif
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002682 r = 1;
2683 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01002684 case KVM_CAP_ADJUST_CLOCK:
2685 r = KVM_CLOCK_TSC_STABLE;
2686 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02002687 case KVM_CAP_X86_SMM:
2688 /* SMBASE is usually relocated above 1M on modern chipsets,
2689 * and SMM handlers might indeed rely on 4G segment limits,
2690 * so do not report SMM to be available if real mode is
2691 * emulated via vm86 mode. Still, do not go to great lengths
2692 * to avoid userspace's usage of the feature, because it is a
2693 * fringe case that is not enabled except via specific settings
2694 * of the module parameters.
2695 */
2696 r = kvm_x86_ops->cpu_has_high_real_mode_segbase();
2697 break;
Laurent Vivier542472b2008-05-30 16:05:55 +02002698 case KVM_CAP_COALESCED_MMIO:
2699 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
2700 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002701 case KVM_CAP_VAPIC:
2702 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2703 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002704 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002705 r = KVM_SOFT_MAX_VCPUS;
2706 break;
2707 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002708 r = KVM_MAX_VCPUS;
2709 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002710 case KVM_CAP_NR_MEMSLOTS:
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07002711 r = KVM_USER_MEM_SLOTS;
Avi Kivitya988b912008-02-20 11:59:20 +02002712 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002713 case KVM_CAP_PV_MMU: /* obsolete */
2714 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002715 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002716#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002717 case KVM_CAP_IOMMU:
Joerg Roedela1b60c12011-09-06 18:46:34 +02002718 r = iommu_present(&pci_bus_type);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002719 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002720#endif
Huang Ying890ca9a2009-05-11 16:48:15 +08002721 case KVM_CAP_MCE:
2722 r = KVM_MAX_MCE_BANKS;
2723 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002724 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02002725 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002726 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002727 case KVM_CAP_TSC_CONTROL:
2728 r = kvm_has_tsc_control;
2729 break;
Radim Krčmář371313132016-07-12 22:09:27 +02002730 case KVM_CAP_X2APIC_API:
2731 r = KVM_X2APIC_API_VALID_FLAGS;
2732 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002733 default:
2734 r = 0;
2735 break;
2736 }
2737 return r;
2738
2739}
2740
Carsten Otte043405e2007-10-10 17:16:19 +02002741long kvm_arch_dev_ioctl(struct file *filp,
2742 unsigned int ioctl, unsigned long arg)
2743{
2744 void __user *argp = (void __user *)arg;
2745 long r;
2746
2747 switch (ioctl) {
2748 case KVM_GET_MSR_INDEX_LIST: {
2749 struct kvm_msr_list __user *user_msr_list = argp;
2750 struct kvm_msr_list msr_list;
2751 unsigned n;
2752
2753 r = -EFAULT;
2754 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2755 goto out;
2756 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002757 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Carsten Otte043405e2007-10-10 17:16:19 +02002758 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2759 goto out;
2760 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002761 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002762 goto out;
2763 r = -EFAULT;
2764 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2765 num_msrs_to_save * sizeof(u32)))
2766 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002767 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002768 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002769 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02002770 goto out;
2771 r = 0;
2772 break;
2773 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002774 case KVM_GET_SUPPORTED_CPUID:
2775 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02002776 struct kvm_cpuid2 __user *cpuid_arg = argp;
2777 struct kvm_cpuid2 cpuid;
2778
2779 r = -EFAULT;
2780 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2781 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002782
2783 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
2784 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02002785 if (r)
2786 goto out;
2787
2788 r = -EFAULT;
2789 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2790 goto out;
2791 r = 0;
2792 break;
2793 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002794 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
Huang Ying890ca9a2009-05-11 16:48:15 +08002795 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002796 if (copy_to_user(argp, &kvm_mce_cap_supported,
2797 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08002798 goto out;
2799 r = 0;
2800 break;
2801 }
Carsten Otte043405e2007-10-10 17:16:19 +02002802 default:
2803 r = -EINVAL;
2804 }
2805out:
2806 return r;
2807}
2808
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002809static void wbinvd_ipi(void *garbage)
2810{
2811 wbinvd();
2812}
2813
2814static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2815{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06002816 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002817}
2818
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002819static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2820{
2821 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
2822}
2823
Carsten Otte313a3dc2007-10-11 19:16:52 +02002824void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2825{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002826 /* Address WBINVD may be executed by guest */
2827 if (need_emulate_wbinvd(vcpu)) {
2828 if (kvm_x86_ops->has_wbinvd_exit())
2829 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2830 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2831 smp_call_function_single(vcpu->cpu,
2832 wbinvd_ipi, NULL, 1);
2833 }
2834
Carsten Otte313a3dc2007-10-11 19:16:52 +02002835 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002836
2837 /* Apply any externally detected TSC adjustments (due to suspend) */
2838 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
2839 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
2840 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002841 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002842 }
2843
Zachary Amsden48434c202010-08-19 22:07:24 -10002844 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002845 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002846 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10002847 if (tsc_delta < 0)
2848 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07002849
Zachary Amsdenc2855452010-09-18 14:38:15 -10002850 if (check_tsc_unstable()) {
Haozhong Zhang07c14192015-10-20 15:39:05 +08002851 u64 offset = kvm_compute_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002852 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002853 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002854 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002855 }
Wanpeng Lie12c8f32016-08-30 16:14:00 +08002856 if (kvm_lapic_hv_timer_in_use(vcpu) &&
2857 kvm_x86_ops->set_hv_timer(vcpu,
Wanpeng Li498f8162016-10-24 18:23:11 +08002858 kvm_get_lapic_target_expiration_tsc(vcpu)))
Wanpeng Lie12c8f32016-08-30 16:14:00 +08002859 kvm_lapic_switch_to_sw_timer(vcpu);
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02002860 /*
2861 * On a host with synchronized TSC, there is no need to update
2862 * kvmclock on vcpu->cpu migration
2863 */
2864 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002865 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002866 if (vcpu->cpu != cpu)
2867 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002868 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002869 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002870
Glauber Costac9aaa892011-07-11 15:28:14 -04002871 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002872}
2873
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002874static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
2875{
2876 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2877 return;
2878
2879 vcpu->arch.st.steal.preempted = 1;
2880
Cao, Leibbd64112017-02-03 20:04:35 +00002881 kvm_vcpu_write_guest_offset_cached(vcpu, &vcpu->arch.st.stime,
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002882 &vcpu->arch.st.steal.preempted,
2883 offsetof(struct kvm_steal_time, preempted),
2884 sizeof(vcpu->arch.st.steal.preempted));
2885}
2886
Carsten Otte313a3dc2007-10-11 19:16:52 +02002887void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2888{
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002889 int idx;
Andrea Arcangeli931f2612016-12-17 18:43:52 +01002890 /*
2891 * Disable page faults because we're in atomic context here.
2892 * kvm_write_guest_offset_cached() would call might_fault()
2893 * that relies on pagefault_disable() to tell if there's a
2894 * bug. NOTE: the write to guest memory may not go through if
2895 * during postcopy live migration or if there's heavy guest
2896 * paging.
2897 */
2898 pagefault_disable();
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002899 /*
2900 * kvm_memslots() will be called by
2901 * kvm_write_guest_offset_cached() so take the srcu lock.
2902 */
2903 idx = srcu_read_lock(&vcpu->kvm->srcu);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002904 kvm_steal_time_set_preempted(vcpu);
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002905 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Andrea Arcangeli931f2612016-12-17 18:43:52 +01002906 pagefault_enable();
Avi Kivity02daab22009-12-30 12:40:26 +02002907 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002908 kvm_put_guest_fpu(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002909 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02002910}
2911
Carsten Otte313a3dc2007-10-11 19:16:52 +02002912static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2913 struct kvm_lapic_state *s)
2914{
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01002915 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
Andrey Smetanind62caab2015-11-10 15:36:33 +03002916 kvm_x86_ops->sync_pir_to_irr(vcpu);
2917
Radim Krčmářa92e2542016-07-12 22:09:22 +02002918 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002919}
2920
2921static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2922 struct kvm_lapic_state *s)
2923{
Radim Krčmářa92e2542016-07-12 22:09:22 +02002924 int r;
2925
2926 r = kvm_apic_set_state(vcpu, s);
2927 if (r)
2928 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002929 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002930
2931 return 0;
2932}
2933
Matt Gingell127a4572015-11-17 17:32:05 +01002934static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
2935{
2936 return (!lapic_in_kernel(vcpu) ||
2937 kvm_apic_accept_pic_intr(vcpu));
2938}
2939
Matt Gingell782d4222015-11-16 15:26:00 -08002940/*
2941 * if userspace requested an interrupt window, check that the
2942 * interrupt window is open.
2943 *
2944 * No need to exit to userspace if we already have an interrupt queued.
2945 */
2946static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
2947{
2948 return kvm_arch_interrupt_allowed(vcpu) &&
2949 !kvm_cpu_has_interrupt(vcpu) &&
2950 !kvm_event_needs_reinjection(vcpu) &&
2951 kvm_cpu_accept_dm_intr(vcpu);
2952}
2953
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002954static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2955 struct kvm_interrupt *irq)
2956{
Chen Gang02cdb502013-02-27 11:33:25 +08002957 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002958 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002959
2960 if (!irqchip_in_kernel(vcpu->kvm)) {
2961 kvm_queue_interrupt(vcpu, irq->irq, false);
2962 kvm_make_request(KVM_REQ_EVENT, vcpu);
2963 return 0;
2964 }
2965
2966 /*
2967 * With in-kernel LAPIC, we only use this to inject EXTINT, so
2968 * fail for in-kernel 8259.
2969 */
2970 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002971 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002972
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002973 if (vcpu->arch.pending_external_vector != -1)
2974 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002975
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002976 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08002977 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002978 return 0;
2979}
2980
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002981static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2982{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002983 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002984
2985 return 0;
2986}
2987
Paolo Bonzinif0778252015-04-01 15:06:40 +02002988static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
2989{
Paolo Bonzini64d60672015-05-07 11:36:11 +02002990 kvm_make_request(KVM_REQ_SMI, vcpu);
2991
Paolo Bonzinif0778252015-04-01 15:06:40 +02002992 return 0;
2993}
2994
Avi Kivityb209749f2007-10-22 16:50:39 +02002995static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2996 struct kvm_tpr_access_ctl *tac)
2997{
2998 if (tac->flags)
2999 return -EINVAL;
3000 vcpu->arch.tpr_access_reporting = !!tac->enabled;
3001 return 0;
3002}
3003
Huang Ying890ca9a2009-05-11 16:48:15 +08003004static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
3005 u64 mcg_cap)
3006{
3007 int r;
3008 unsigned bank_num = mcg_cap & 0xff, bank;
3009
3010 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02003011 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08003012 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003013 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08003014 goto out;
3015 r = 0;
3016 vcpu->arch.mcg_cap = mcg_cap;
3017 /* Init IA32_MCG_CTL to all 1s */
3018 if (mcg_cap & MCG_CTL_P)
3019 vcpu->arch.mcg_ctl = ~(u64)0;
3020 /* Init IA32_MCi_CTL to all 1s */
3021 for (bank = 0; bank < bank_num; bank++)
3022 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003023
3024 if (kvm_x86_ops->setup_mce)
3025 kvm_x86_ops->setup_mce(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08003026out:
3027 return r;
3028}
3029
3030static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
3031 struct kvm_x86_mce *mce)
3032{
3033 u64 mcg_cap = vcpu->arch.mcg_cap;
3034 unsigned bank_num = mcg_cap & 0xff;
3035 u64 *banks = vcpu->arch.mce_banks;
3036
3037 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
3038 return -EINVAL;
3039 /*
3040 * if IA32_MCG_CTL is not all 1s, the uncorrected error
3041 * reporting is disabled
3042 */
3043 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
3044 vcpu->arch.mcg_ctl != ~(u64)0)
3045 return 0;
3046 banks += 4 * mce->bank;
3047 /*
3048 * if IA32_MCi_CTL is not all 1s, the uncorrected error
3049 * reporting is disabled for the bank
3050 */
3051 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
3052 return 0;
3053 if (mce->status & MCI_STATUS_UC) {
3054 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02003055 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003056 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08003057 return 0;
3058 }
3059 if (banks[1] & MCI_STATUS_VAL)
3060 mce->status |= MCI_STATUS_OVER;
3061 banks[2] = mce->addr;
3062 banks[3] = mce->misc;
3063 vcpu->arch.mcg_status = mce->mcg_status;
3064 banks[1] = mce->status;
3065 kvm_queue_exception(vcpu, MC_VECTOR);
3066 } else if (!(banks[1] & MCI_STATUS_VAL)
3067 || !(banks[1] & MCI_STATUS_UC)) {
3068 if (banks[1] & MCI_STATUS_VAL)
3069 mce->status |= MCI_STATUS_OVER;
3070 banks[2] = mce->addr;
3071 banks[3] = mce->misc;
3072 banks[1] = mce->status;
3073 } else
3074 banks[1] |= MCI_STATUS_OVER;
3075 return 0;
3076}
3077
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003078static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
3079 struct kvm_vcpu_events *events)
3080{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003081 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01003082 events->exception.injected =
3083 vcpu->arch.exception.pending &&
3084 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003085 events->exception.nr = vcpu->arch.exception.nr;
3086 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003087 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003088 events->exception.error_code = vcpu->arch.exception.error_code;
3089
Jan Kiszka03b82a32010-02-15 10:45:41 +01003090 events->interrupt.injected =
3091 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003092 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01003093 events->interrupt.soft = 0;
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02003094 events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003095
3096 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003097 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003098 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003099 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003100
Jan Kiszka66450a22013-03-13 12:42:34 +01003101 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003102
Paolo Bonzinif0778252015-04-01 15:06:40 +02003103 events->smi.smm = is_smm(vcpu);
3104 events->smi.pending = vcpu->arch.smi_pending;
3105 events->smi.smm_inside_nmi =
3106 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
3107 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
3108
Jan Kiszkadab4b912009-12-06 18:24:15 +01003109 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02003110 | KVM_VCPUEVENT_VALID_SHADOW
3111 | KVM_VCPUEVENT_VALID_SMM);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003112 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003113}
3114
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003115static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags);
3116
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003117static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
3118 struct kvm_vcpu_events *events)
3119{
Jan Kiszkadab4b912009-12-06 18:24:15 +01003120 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01003121 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02003122 | KVM_VCPUEVENT_VALID_SHADOW
3123 | KVM_VCPUEVENT_VALID_SMM))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003124 return -EINVAL;
3125
Paolo Bonzini78e546c2016-06-01 14:09:20 +02003126 if (events->exception.injected &&
3127 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
3128 return -EINVAL;
3129
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003130 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003131 vcpu->arch.exception.pending = events->exception.injected;
3132 vcpu->arch.exception.nr = events->exception.nr;
3133 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
3134 vcpu->arch.exception.error_code = events->exception.error_code;
3135
3136 vcpu->arch.interrupt.pending = events->interrupt.injected;
3137 vcpu->arch.interrupt.nr = events->interrupt.nr;
3138 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01003139 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
3140 kvm_x86_ops->set_interrupt_shadow(vcpu,
3141 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003142
3143 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01003144 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
3145 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003146 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
3147
Jan Kiszka66450a22013-03-13 12:42:34 +01003148 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003149 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01003150 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003151
Paolo Bonzinif0778252015-04-01 15:06:40 +02003152 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003153 u32 hflags = vcpu->arch.hflags;
Paolo Bonzinif0778252015-04-01 15:06:40 +02003154 if (events->smi.smm)
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003155 hflags |= HF_SMM_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02003156 else
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003157 hflags &= ~HF_SMM_MASK;
3158 kvm_set_hflags(vcpu, hflags);
3159
Paolo Bonzinif0778252015-04-01 15:06:40 +02003160 vcpu->arch.smi_pending = events->smi.pending;
3161 if (events->smi.smm_inside_nmi)
3162 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
3163 else
3164 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003165 if (lapic_in_kernel(vcpu)) {
Paolo Bonzinif0778252015-04-01 15:06:40 +02003166 if (events->smi.latched_init)
3167 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3168 else
3169 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3170 }
3171 }
3172
Avi Kivity3842d132010-07-27 12:30:24 +03003173 kvm_make_request(KVM_REQ_EVENT, vcpu);
3174
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003175 return 0;
3176}
3177
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003178static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
3179 struct kvm_debugregs *dbgregs)
3180{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003181 unsigned long val;
3182
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003183 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003184 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003185 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003186 dbgregs->dr7 = vcpu->arch.dr7;
3187 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003188 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003189}
3190
3191static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
3192 struct kvm_debugregs *dbgregs)
3193{
3194 if (dbgregs->flags)
3195 return -EINVAL;
3196
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02003197 if (dbgregs->dr6 & ~0xffffffffull)
3198 return -EINVAL;
3199 if (dbgregs->dr7 & ~0xffffffffull)
3200 return -EINVAL;
3201
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003202 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03003203 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003204 vcpu->arch.dr6 = dbgregs->dr6;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003205 kvm_update_dr6(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003206 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01003207 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003208
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003209 return 0;
3210}
3211
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003212#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
3213
3214static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
3215{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003216 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02003217 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003218 u64 valid;
3219
3220 /*
3221 * Copy legacy XSAVE area, to avoid complications with CPUID
3222 * leaves 0 and 1 in the loop below.
3223 */
3224 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
3225
3226 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01003227 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003228 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
3229
3230 /*
3231 * Copy each region from the possibly compacted offset to the
3232 * non-compacted offset.
3233 */
Dave Hansend91cab72015-09-02 16:31:26 -07003234 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003235 while (valid) {
3236 u64 feature = valid & -valid;
3237 int index = fls64(feature) - 1;
3238 void *src = get_xsave_addr(xsave, feature);
3239
3240 if (src) {
3241 u32 size, offset, ecx, edx;
3242 cpuid_count(XSTATE_CPUID, index,
3243 &size, &offset, &ecx, &edx);
3244 memcpy(dest + offset, src, size);
3245 }
3246
3247 valid -= feature;
3248 }
3249}
3250
3251static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
3252{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003253 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003254 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
3255 u64 valid;
3256
3257 /*
3258 * Copy legacy XSAVE area, to avoid complications with CPUID
3259 * leaves 0 and 1 in the loop below.
3260 */
3261 memcpy(xsave, src, XSAVE_HDR_OFFSET);
3262
3263 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02003264 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02003265 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02003266 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003267
3268 /*
3269 * Copy each region from the non-compacted offset to the
3270 * possibly compacted offset.
3271 */
Dave Hansend91cab72015-09-02 16:31:26 -07003272 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003273 while (valid) {
3274 u64 feature = valid & -valid;
3275 int index = fls64(feature) - 1;
3276 void *dest = get_xsave_addr(xsave, feature);
3277
3278 if (dest) {
3279 u32 size, offset, ecx, edx;
3280 cpuid_count(XSTATE_CPUID, index,
3281 &size, &offset, &ecx, &edx);
3282 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08003283 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003284
3285 valid -= feature;
3286 }
3287}
3288
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003289static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
3290 struct kvm_xsave *guest_xsave)
3291{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003292 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003293 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
3294 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003295 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003296 memcpy(guest_xsave->region,
Ingo Molnar7366ed72015-04-27 04:19:39 +02003297 &vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003298 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003299 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07003300 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003301 }
3302}
3303
3304static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
3305 struct kvm_xsave *guest_xsave)
3306{
3307 u64 xstate_bv =
3308 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
3309
Borislav Petkovd366bf72016-04-04 22:25:02 +02003310 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003311 /*
3312 * Here we allow setting states that are not present in
3313 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
3314 * with old userspace.
3315 */
Paolo Bonzini4ff41732014-02-24 12:15:16 +01003316 if (xstate_bv & ~kvm_supported_xcr0())
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003317 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003318 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003319 } else {
Dave Hansend91cab72015-09-02 16:31:26 -07003320 if (xstate_bv & ~XFEATURE_MASK_FPSSE)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003321 return -EINVAL;
Ingo Molnar7366ed72015-04-27 04:19:39 +02003322 memcpy(&vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003323 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003324 }
3325 return 0;
3326}
3327
3328static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
3329 struct kvm_xcrs *guest_xcrs)
3330{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003331 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003332 guest_xcrs->nr_xcrs = 0;
3333 return;
3334 }
3335
3336 guest_xcrs->nr_xcrs = 1;
3337 guest_xcrs->flags = 0;
3338 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
3339 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
3340}
3341
3342static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
3343 struct kvm_xcrs *guest_xcrs)
3344{
3345 int i, r = 0;
3346
Borislav Petkovd366bf72016-04-04 22:25:02 +02003347 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003348 return -EINVAL;
3349
3350 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
3351 return -EINVAL;
3352
3353 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
3354 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003355 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003356 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003357 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003358 break;
3359 }
3360 if (r)
3361 r = -EINVAL;
3362 return r;
3363}
3364
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003365/*
3366 * kvm_set_guest_paused() indicates to the guest kernel that it has been
3367 * stopped by the hypervisor. This function will be called from the host only.
3368 * EINVAL is returned when the host attempts to set the flag for a guest that
3369 * does not support pv clocks.
3370 */
3371static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
3372{
Andy Honig0b794592013-02-20 14:48:10 -08003373 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003374 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003375 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003376 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
3377 return 0;
3378}
3379
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003380static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
3381 struct kvm_enable_cap *cap)
3382{
3383 if (cap->flags)
3384 return -EINVAL;
3385
3386 switch (cap->cap) {
3387 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08003388 if (!irqchip_in_kernel(vcpu->kvm))
3389 return -EINVAL;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003390 return kvm_hv_activate_synic(vcpu);
3391 default:
3392 return -EINVAL;
3393 }
3394}
3395
Carsten Otte313a3dc2007-10-11 19:16:52 +02003396long kvm_arch_vcpu_ioctl(struct file *filp,
3397 unsigned int ioctl, unsigned long arg)
3398{
3399 struct kvm_vcpu *vcpu = filp->private_data;
3400 void __user *argp = (void __user *)arg;
3401 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003402 union {
3403 struct kvm_lapic_state *lapic;
3404 struct kvm_xsave *xsave;
3405 struct kvm_xcrs *xcrs;
3406 void *buffer;
3407 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003408
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003409 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003410 switch (ioctl) {
3411 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003412 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003413 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003414 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003415 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003416
Dave Hansenb772ff32008-08-11 10:01:47 -07003417 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003418 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003419 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003420 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003421 if (r)
3422 goto out;
3423 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003424 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003425 goto out;
3426 r = 0;
3427 break;
3428 }
3429 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003430 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003431 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003432 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003433 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Guo Chao18595412012-11-02 18:33:21 +08003434 if (IS_ERR(u.lapic))
3435 return PTR_ERR(u.lapic);
Sasha Levinff5c2c02011-12-04 19:36:29 +02003436
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003437 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003438 break;
3439 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003440 case KVM_INTERRUPT: {
3441 struct kvm_interrupt irq;
3442
3443 r = -EFAULT;
3444 if (copy_from_user(&irq, argp, sizeof irq))
3445 goto out;
3446 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003447 break;
3448 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003449 case KVM_NMI: {
3450 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003451 break;
3452 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02003453 case KVM_SMI: {
3454 r = kvm_vcpu_ioctl_smi(vcpu);
3455 break;
3456 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003457 case KVM_SET_CPUID: {
3458 struct kvm_cpuid __user *cpuid_arg = argp;
3459 struct kvm_cpuid cpuid;
3460
3461 r = -EFAULT;
3462 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3463 goto out;
3464 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003465 break;
3466 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003467 case KVM_SET_CPUID2: {
3468 struct kvm_cpuid2 __user *cpuid_arg = argp;
3469 struct kvm_cpuid2 cpuid;
3470
3471 r = -EFAULT;
3472 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3473 goto out;
3474 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003475 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003476 break;
3477 }
3478 case KVM_GET_CPUID2: {
3479 struct kvm_cpuid2 __user *cpuid_arg = argp;
3480 struct kvm_cpuid2 cpuid;
3481
3482 r = -EFAULT;
3483 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3484 goto out;
3485 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003486 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003487 if (r)
3488 goto out;
3489 r = -EFAULT;
3490 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3491 goto out;
3492 r = 0;
3493 break;
3494 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003495 case KVM_GET_MSRS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003496 r = msr_io(vcpu, argp, do_get_msr, 1);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003497 break;
3498 case KVM_SET_MSRS:
3499 r = msr_io(vcpu, argp, do_set_msr, 0);
3500 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003501 case KVM_TPR_ACCESS_REPORTING: {
3502 struct kvm_tpr_access_ctl tac;
3503
3504 r = -EFAULT;
3505 if (copy_from_user(&tac, argp, sizeof tac))
3506 goto out;
3507 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3508 if (r)
3509 goto out;
3510 r = -EFAULT;
3511 if (copy_to_user(argp, &tac, sizeof tac))
3512 goto out;
3513 r = 0;
3514 break;
3515 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003516 case KVM_SET_VAPIC_ADDR: {
3517 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003518 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02003519
3520 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02003521 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02003522 goto out;
3523 r = -EFAULT;
3524 if (copy_from_user(&va, argp, sizeof va))
3525 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003526 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08003527 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003528 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02003529 break;
3530 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003531 case KVM_X86_SETUP_MCE: {
3532 u64 mcg_cap;
3533
3534 r = -EFAULT;
3535 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3536 goto out;
3537 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3538 break;
3539 }
3540 case KVM_X86_SET_MCE: {
3541 struct kvm_x86_mce mce;
3542
3543 r = -EFAULT;
3544 if (copy_from_user(&mce, argp, sizeof mce))
3545 goto out;
3546 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3547 break;
3548 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003549 case KVM_GET_VCPU_EVENTS: {
3550 struct kvm_vcpu_events events;
3551
3552 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3553
3554 r = -EFAULT;
3555 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3556 break;
3557 r = 0;
3558 break;
3559 }
3560 case KVM_SET_VCPU_EVENTS: {
3561 struct kvm_vcpu_events events;
3562
3563 r = -EFAULT;
3564 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3565 break;
3566
3567 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3568 break;
3569 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003570 case KVM_GET_DEBUGREGS: {
3571 struct kvm_debugregs dbgregs;
3572
3573 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3574
3575 r = -EFAULT;
3576 if (copy_to_user(argp, &dbgregs,
3577 sizeof(struct kvm_debugregs)))
3578 break;
3579 r = 0;
3580 break;
3581 }
3582 case KVM_SET_DEBUGREGS: {
3583 struct kvm_debugregs dbgregs;
3584
3585 r = -EFAULT;
3586 if (copy_from_user(&dbgregs, argp,
3587 sizeof(struct kvm_debugregs)))
3588 break;
3589
3590 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3591 break;
3592 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003593 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003594 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003595 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003596 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003597 break;
3598
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003599 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003600
3601 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003602 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003603 break;
3604 r = 0;
3605 break;
3606 }
3607 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003608 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Guo Chao18595412012-11-02 18:33:21 +08003609 if (IS_ERR(u.xsave))
3610 return PTR_ERR(u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003611
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003612 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003613 break;
3614 }
3615 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003616 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003617 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003618 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003619 break;
3620
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003621 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003622
3623 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003624 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003625 sizeof(struct kvm_xcrs)))
3626 break;
3627 r = 0;
3628 break;
3629 }
3630 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003631 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Guo Chao18595412012-11-02 18:33:21 +08003632 if (IS_ERR(u.xcrs))
3633 return PTR_ERR(u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003634
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003635 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003636 break;
3637 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003638 case KVM_SET_TSC_KHZ: {
3639 u32 user_tsc_khz;
3640
3641 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003642 user_tsc_khz = (u32)arg;
3643
3644 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3645 goto out;
3646
Zachary Amsdencc578282012-02-03 15:43:50 -02003647 if (user_tsc_khz == 0)
3648 user_tsc_khz = tsc_khz;
3649
Haozhong Zhang381d5852015-10-20 15:39:04 +08003650 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
3651 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003652
Joerg Roedel92a1f122011-03-25 09:44:51 +01003653 goto out;
3654 }
3655 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02003656 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003657 goto out;
3658 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003659 case KVM_KVMCLOCK_CTRL: {
3660 r = kvm_set_guest_paused(vcpu);
3661 goto out;
3662 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003663 case KVM_ENABLE_CAP: {
3664 struct kvm_enable_cap cap;
3665
3666 r = -EFAULT;
3667 if (copy_from_user(&cap, argp, sizeof(cap)))
3668 goto out;
3669 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3670 break;
3671 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003672 default:
3673 r = -EINVAL;
3674 }
3675out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003676 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003677 return r;
3678}
3679
Carsten Otte5b1c1492012-01-04 10:25:23 +01003680int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3681{
3682 return VM_FAULT_SIGBUS;
3683}
3684
Carsten Otte1fe779f2007-10-29 16:08:35 +01003685static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3686{
3687 int ret;
3688
3689 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08003690 return -EINVAL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003691 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3692 return ret;
3693}
3694
Sheng Yangb927a3c2009-07-21 10:42:48 +08003695static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3696 u64 ident_addr)
3697{
3698 kvm->arch.ept_identity_map_addr = ident_addr;
3699 return 0;
3700}
3701
Carsten Otte1fe779f2007-10-29 16:08:35 +01003702static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3703 u32 kvm_nr_mmu_pages)
3704{
3705 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3706 return -EINVAL;
3707
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003708 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003709
3710 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003711 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003712
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003713 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003714 return 0;
3715}
3716
3717static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3718{
Dave Hansen39de71e2010-08-19 18:11:14 -07003719 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003720}
3721
Carsten Otte1fe779f2007-10-29 16:08:35 +01003722static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3723{
3724 int r;
3725
3726 r = 0;
3727 switch (chip->chip_id) {
3728 case KVM_IRQCHIP_PIC_MASTER:
3729 memcpy(&chip->chip.pic,
3730 &pic_irqchip(kvm)->pics[0],
3731 sizeof(struct kvm_pic_state));
3732 break;
3733 case KVM_IRQCHIP_PIC_SLAVE:
3734 memcpy(&chip->chip.pic,
3735 &pic_irqchip(kvm)->pics[1],
3736 sizeof(struct kvm_pic_state));
3737 break;
3738 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003739 r = kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003740 break;
3741 default:
3742 r = -EINVAL;
3743 break;
3744 }
3745 return r;
3746}
3747
3748static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3749{
3750 int r;
3751
3752 r = 0;
3753 switch (chip->chip_id) {
3754 case KVM_IRQCHIP_PIC_MASTER:
Avi Kivityf4f51052010-09-19 18:44:07 +02003755 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003756 memcpy(&pic_irqchip(kvm)->pics[0],
3757 &chip->chip.pic,
3758 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003759 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003760 break;
3761 case KVM_IRQCHIP_PIC_SLAVE:
Avi Kivityf4f51052010-09-19 18:44:07 +02003762 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003763 memcpy(&pic_irqchip(kvm)->pics[1],
3764 &chip->chip.pic,
3765 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003766 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003767 break;
3768 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003769 r = kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003770 break;
3771 default:
3772 r = -EINVAL;
3773 break;
3774 }
3775 kvm_pic_update_irq(pic_irqchip(kvm));
3776 return r;
3777}
3778
Sheng Yange0f63cb2008-03-04 00:50:59 +08003779static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3780{
Radim Krčmář34f39412016-03-02 22:56:50 +01003781 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
3782
3783 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
3784
3785 mutex_lock(&kps->lock);
3786 memcpy(ps, &kps->channels, sizeof(*ps));
3787 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303788 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003789}
3790
3791static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3792{
Andrew Honig01856042015-11-18 14:50:23 -08003793 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01003794 struct kvm_pit *pit = kvm->arch.vpit;
3795
3796 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01003797 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08003798 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003799 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
3800 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303801 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003802}
3803
3804static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3805{
Beth Kone9f42752009-07-07 11:50:38 -04003806 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3807 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3808 sizeof(ps->channels));
3809 ps->flags = kvm->arch.vpit->pit_state.flags;
3810 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003811 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303812 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003813}
3814
3815static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3816{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303817 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08003818 int i;
Beth Kone9f42752009-07-07 11:50:38 -04003819 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01003820 struct kvm_pit *pit = kvm->arch.vpit;
3821
3822 mutex_lock(&pit->pit_state.lock);
3823 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04003824 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3825 if (!prev_legacy && cur_legacy)
3826 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01003827 memcpy(&pit->pit_state.channels, &ps->channels,
3828 sizeof(pit->pit_state.channels));
3829 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08003830 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003831 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01003832 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01003833 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303834 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003835}
3836
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003837static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3838 struct kvm_reinject_control *control)
3839{
Radim Krčmář71474e22016-03-02 22:56:45 +01003840 struct kvm_pit *pit = kvm->arch.vpit;
3841
3842 if (!pit)
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003843 return -ENXIO;
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003844
Radim Krčmář71474e22016-03-02 22:56:45 +01003845 /* pit->pit_state.lock was overloaded to prevent userspace from getting
3846 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
3847 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
3848 */
3849 mutex_lock(&pit->pit_state.lock);
3850 kvm_pit_set_reinject(pit, control->pit_reinject);
3851 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003852
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003853 return 0;
3854}
3855
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003856/**
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003857 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
3858 * @kvm: kvm instance
3859 * @log: slot id and address to which we copy the log
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003860 *
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003861 * Steps 1-4 below provide general overview of dirty page logging. See
3862 * kvm_get_dirty_log_protect() function description for additional details.
3863 *
3864 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
3865 * always flush the TLB (step 4) even if previous step failed and the dirty
3866 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
3867 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
3868 * writes will be marked dirty for next log read.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003869 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003870 * 1. Take a snapshot of the bit and clear it if needed.
3871 * 2. Write protect the corresponding page.
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003872 * 3. Copy the snapshot to the userspace.
3873 * 4. Flush TLB's if needed.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003874 */
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003875int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003876{
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003877 bool is_dirty = false;
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003878 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003879
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003880 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003881
Kai Huang88178fd2015-01-28 10:54:27 +08003882 /*
3883 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
3884 */
3885 if (kvm_x86_ops->flush_log_dirty)
3886 kvm_x86_ops->flush_log_dirty(kvm);
3887
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003888 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003889
3890 /*
3891 * All the TLBs can be flushed out of mmu lock, see the comments in
3892 * kvm_mmu_slot_remove_write_access().
3893 */
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003894 lockdep_assert_held(&kvm->slots_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003895 if (is_dirty)
3896 kvm_flush_remote_tlbs(kvm);
3897
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003898 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003899 return r;
3900}
3901
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003902int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
3903 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003904{
3905 if (!irqchip_in_kernel(kvm))
3906 return -ENXIO;
3907
3908 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003909 irq_event->irq, irq_event->level,
3910 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003911 return 0;
3912}
3913
Nadav Amit90de4a12015-04-13 01:53:41 +03003914static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3915 struct kvm_enable_cap *cap)
3916{
3917 int r;
3918
3919 if (cap->flags)
3920 return -EINVAL;
3921
3922 switch (cap->cap) {
3923 case KVM_CAP_DISABLE_QUIRKS:
3924 kvm->arch.disabled_quirks = cap->args[0];
3925 r = 0;
3926 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07003927 case KVM_CAP_SPLIT_IRQCHIP: {
3928 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003929 r = -EINVAL;
3930 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
3931 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07003932 r = -EEXIST;
3933 if (irqchip_in_kernel(kvm))
3934 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003935 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07003936 goto split_irqchip_unlock;
3937 r = kvm_setup_empty_irq_routing(kvm);
3938 if (r)
3939 goto split_irqchip_unlock;
3940 /* Pairs with irqchip_in_kernel. */
3941 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01003942 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003943 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07003944 r = 0;
3945split_irqchip_unlock:
3946 mutex_unlock(&kvm->lock);
3947 break;
3948 }
Radim Krčmář371313132016-07-12 22:09:27 +02003949 case KVM_CAP_X2APIC_API:
3950 r = -EINVAL;
3951 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
3952 break;
3953
3954 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
3955 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02003956 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
3957 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02003958
3959 r = 0;
3960 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03003961 default:
3962 r = -EINVAL;
3963 break;
3964 }
3965 return r;
3966}
3967
Carsten Otte1fe779f2007-10-29 16:08:35 +01003968long kvm_arch_vm_ioctl(struct file *filp,
3969 unsigned int ioctl, unsigned long arg)
3970{
3971 struct kvm *kvm = filp->private_data;
3972 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003973 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003974 /*
3975 * This union makes it completely explicit to gcc-3.x
3976 * that these two variables' stack usage should be
3977 * combined, not added together.
3978 */
3979 union {
3980 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003981 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003982 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003983 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003984
3985 switch (ioctl) {
3986 case KVM_SET_TSS_ADDR:
3987 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003988 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003989 case KVM_SET_IDENTITY_MAP_ADDR: {
3990 u64 ident_addr;
3991
3992 r = -EFAULT;
3993 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3994 goto out;
3995 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08003996 break;
3997 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003998 case KVM_SET_NR_MMU_PAGES:
3999 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004000 break;
4001 case KVM_GET_NR_MMU_PAGES:
4002 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
4003 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004004 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004005 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01004006
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004007 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01004008 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004009 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01004010
Avi Kivity3e515702012-03-05 14:23:29 +02004011 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02004012 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02004013 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01004014
4015 r = kvm_pic_init(kvm);
4016 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004017 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01004018
4019 r = kvm_ioapic_init(kvm);
4020 if (r) {
4021 mutex_lock(&kvm->slots_lock);
4022 kvm_pic_destroy(kvm);
4023 mutex_unlock(&kvm->slots_lock);
4024 goto create_irqchip_unlock;
4025 }
4026
Avi Kivity399ec802008-11-19 13:58:46 +02004027 r = kvm_setup_default_irq_routing(kvm);
4028 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09004029 mutex_lock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004030 mutex_lock(&kvm->irq_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08004031 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01004032 kvm_pic_destroy(kvm);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004033 mutex_unlock(&kvm->irq_lock);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09004034 mutex_unlock(&kvm->slots_lock);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02004035 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02004036 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01004037 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02004038 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01004039 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004040 create_irqchip_unlock:
4041 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004042 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004043 }
Sheng Yang78376992008-01-28 05:10:22 +08004044 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004045 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
4046 goto create_pit;
4047 case KVM_CREATE_PIT2:
4048 r = -EFAULT;
4049 if (copy_from_user(&u.pit_config, argp,
4050 sizeof(struct kvm_pit_config)))
4051 goto out;
4052 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02004053 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02004054 r = -EEXIST;
4055 if (kvm->arch.vpit)
4056 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08004057 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004058 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08004059 if (kvm->arch.vpit)
4060 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02004061 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02004062 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08004063 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004064 case KVM_GET_IRQCHIP: {
4065 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02004066 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004067
Sasha Levinff5c2c02011-12-04 19:36:29 +02004068 chip = memdup_user(argp, sizeof(*chip));
4069 if (IS_ERR(chip)) {
4070 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004071 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004072 }
4073
Carsten Otte1fe779f2007-10-29 16:08:35 +01004074 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01004075 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07004076 goto get_irqchip_out;
4077 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
4078 if (r)
4079 goto get_irqchip_out;
4080 r = -EFAULT;
4081 if (copy_to_user(argp, chip, sizeof *chip))
4082 goto get_irqchip_out;
4083 r = 0;
4084 get_irqchip_out:
4085 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004086 break;
4087 }
4088 case KVM_SET_IRQCHIP: {
4089 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02004090 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004091
Sasha Levinff5c2c02011-12-04 19:36:29 +02004092 chip = memdup_user(argp, sizeof(*chip));
4093 if (IS_ERR(chip)) {
4094 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004095 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004096 }
4097
Carsten Otte1fe779f2007-10-29 16:08:35 +01004098 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01004099 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07004100 goto set_irqchip_out;
4101 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
4102 if (r)
4103 goto set_irqchip_out;
4104 r = 0;
4105 set_irqchip_out:
4106 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004107 break;
4108 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08004109 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08004110 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004111 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004112 goto out;
4113 r = -ENXIO;
4114 if (!kvm->arch.vpit)
4115 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07004116 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08004117 if (r)
4118 goto out;
4119 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004120 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004121 goto out;
4122 r = 0;
4123 break;
4124 }
4125 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08004126 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004127 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004128 goto out;
4129 r = -ENXIO;
4130 if (!kvm->arch.vpit)
4131 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07004132 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08004133 break;
4134 }
Beth Kone9f42752009-07-07 11:50:38 -04004135 case KVM_GET_PIT2: {
4136 r = -ENXIO;
4137 if (!kvm->arch.vpit)
4138 goto out;
4139 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
4140 if (r)
4141 goto out;
4142 r = -EFAULT;
4143 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
4144 goto out;
4145 r = 0;
4146 break;
4147 }
4148 case KVM_SET_PIT2: {
4149 r = -EFAULT;
4150 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
4151 goto out;
4152 r = -ENXIO;
4153 if (!kvm->arch.vpit)
4154 goto out;
4155 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Beth Kone9f42752009-07-07 11:50:38 -04004156 break;
4157 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004158 case KVM_REINJECT_CONTROL: {
4159 struct kvm_reinject_control control;
4160 r = -EFAULT;
4161 if (copy_from_user(&control, argp, sizeof(control)))
4162 goto out;
4163 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004164 break;
4165 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004166 case KVM_SET_BOOT_CPU_ID:
4167 r = 0;
4168 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02004169 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004170 r = -EBUSY;
4171 else
4172 kvm->arch.bsp_vcpu_id = arg;
4173 mutex_unlock(&kvm->lock);
4174 break;
Ed Swierkffde22a2009-10-15 15:21:43 -07004175 case KVM_XEN_HVM_CONFIG: {
4176 r = -EFAULT;
4177 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
4178 sizeof(struct kvm_xen_hvm_config)))
4179 goto out;
4180 r = -EINVAL;
4181 if (kvm->arch.xen_hvm_config.flags)
4182 goto out;
4183 r = 0;
4184 break;
4185 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004186 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004187 struct kvm_clock_data user_ns;
4188 u64 now_ns;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004189
4190 r = -EFAULT;
4191 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
4192 goto out;
4193
4194 r = -EINVAL;
4195 if (user_ns.flags)
4196 goto out;
4197
4198 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02004199 local_irq_disable();
Paolo Bonzini108b2492016-09-01 14:21:03 +02004200 now_ns = __get_kvmclock_ns(kvm);
4201 kvm->arch.kvmclock_offset += user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004202 local_irq_enable();
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03004203 kvm_gen_update_masterclock(kvm);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004204 break;
4205 }
4206 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004207 struct kvm_clock_data user_ns;
4208 u64 now_ns;
4209
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004210 local_irq_disable();
4211 now_ns = __get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02004212 user_ns.clock = now_ns;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004213 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
4214 local_irq_enable();
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004215 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004216
4217 r = -EFAULT;
4218 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
4219 goto out;
4220 r = 0;
4221 break;
4222 }
Nadav Amit90de4a12015-04-13 01:53:41 +03004223 case KVM_ENABLE_CAP: {
4224 struct kvm_enable_cap cap;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004225
Nadav Amit90de4a12015-04-13 01:53:41 +03004226 r = -EFAULT;
4227 if (copy_from_user(&cap, argp, sizeof(cap)))
4228 goto out;
4229 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
4230 break;
4231 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01004232 default:
Radim Krčmářc274e032014-11-21 22:21:50 +01004233 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004234 }
4235out:
4236 return r;
4237}
4238
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08004239static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02004240{
4241 u32 dummy[2];
4242 unsigned i, j;
4243
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004244 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02004245 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
4246 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004247
4248 /*
4249 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004250 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004251 */
4252 switch (msrs_to_save[i]) {
4253 case MSR_IA32_BNDCFGS:
4254 if (!kvm_x86_ops->mpx_supported())
4255 continue;
4256 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004257 case MSR_TSC_AUX:
4258 if (!kvm_x86_ops->rdtscp_supported())
4259 continue;
4260 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004261 default:
4262 break;
4263 }
4264
Carsten Otte043405e2007-10-10 17:16:19 +02004265 if (j < i)
4266 msrs_to_save[j] = msrs_to_save[i];
4267 j++;
4268 }
4269 num_msrs_to_save = j;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004270
4271 for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) {
4272 switch (emulated_msrs[i]) {
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004273 case MSR_IA32_SMBASE:
4274 if (!kvm_x86_ops->cpu_has_high_real_mode_segbase())
4275 continue;
4276 break;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004277 default:
4278 break;
4279 }
4280
4281 if (j < i)
4282 emulated_msrs[j] = emulated_msrs[i];
4283 j++;
4284 }
4285 num_emulated_msrs = j;
Carsten Otte043405e2007-10-10 17:16:19 +02004286}
4287
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004288static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
4289 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004290{
Avi Kivity70252a12010-01-19 12:51:22 +02004291 int handled = 0;
4292 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004293
Avi Kivity70252a12010-01-19 12:51:22 +02004294 do {
4295 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004296 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004297 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
4298 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004299 break;
4300 handled += n;
4301 addr += n;
4302 len -= n;
4303 v += n;
4304 } while (len);
4305
4306 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004307}
4308
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004309static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004310{
Avi Kivity70252a12010-01-19 12:51:22 +02004311 int handled = 0;
4312 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004313
Avi Kivity70252a12010-01-19 12:51:22 +02004314 do {
4315 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004316 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004317 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
4318 addr, n, v))
4319 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004320 break;
4321 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
4322 handled += n;
4323 addr += n;
4324 len -= n;
4325 v += n;
4326 } while (len);
4327
4328 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004329}
4330
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004331static void kvm_set_segment(struct kvm_vcpu *vcpu,
4332 struct kvm_segment *var, int seg)
4333{
4334 kvm_x86_ops->set_segment(vcpu, var, seg);
4335}
4336
4337void kvm_get_segment(struct kvm_vcpu *vcpu,
4338 struct kvm_segment *var, int seg)
4339{
4340 kvm_x86_ops->get_segment(vcpu, var, seg);
4341}
4342
Paolo Bonzini54987b72014-09-02 13:23:06 +02004343gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
4344 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004345{
4346 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004347
4348 BUG_ON(!mmu_is_nested(vcpu));
4349
4350 /* NPT walks are always user-walks */
4351 access |= PFERR_USER_MASK;
Paolo Bonzini54987b72014-09-02 13:23:06 +02004352 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004353
4354 return t_gpa;
4355}
4356
Avi Kivityab9ae312010-11-22 17:53:26 +02004357gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
4358 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004359{
4360 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02004361 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004362}
4363
Avi Kivityab9ae312010-11-22 17:53:26 +02004364 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
4365 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004366{
4367 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4368 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004369 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004370}
4371
Avi Kivityab9ae312010-11-22 17:53:26 +02004372gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
4373 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004374{
4375 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4376 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004377 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004378}
4379
4380/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02004381gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
4382 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004383{
Avi Kivityab9ae312010-11-22 17:53:26 +02004384 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004385}
4386
4387static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
4388 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004389 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004390{
4391 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004392 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004393
4394 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004395 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02004396 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004397 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02004398 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004399 int ret;
4400
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004401 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004402 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004403 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
4404 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004405 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004406 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004407 goto out;
4408 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01004409
Izik Eidus77c20022008-12-29 01:42:19 +02004410 bytes -= toread;
4411 data += toread;
4412 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004413 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004414out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004415 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004416}
Izik Eidus77c20022008-12-29 01:42:19 +02004417
Gleb Natapov1871c602010-02-10 14:21:32 +02004418/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03004419static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
4420 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004421 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004422{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004423 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004424 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004425 unsigned offset;
4426 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004427
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004428 /* Inline kvm_read_guest_virt_helper for speed. */
4429 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
4430 exception);
4431 if (unlikely(gpa == UNMAPPED_GVA))
4432 return X86EMUL_PROPAGATE_FAULT;
4433
4434 offset = addr & (PAGE_SIZE-1);
4435 if (WARN_ON(offset + bytes > PAGE_SIZE))
4436 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004437 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
4438 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004439 if (unlikely(ret < 0))
4440 return X86EMUL_IO_NEEDED;
4441
4442 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02004443}
4444
Nadav Har'El064aea72011-05-25 23:04:56 +03004445int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004446 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004447 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004448{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004449 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004450 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004451
Gleb Natapov1871c602010-02-10 14:21:32 +02004452 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004453 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004454}
Nadav Har'El064aea72011-05-25 23:04:56 +03004455EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004456
Avi Kivity0f65dd72011-04-20 13:37:53 +03004457static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4458 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004459 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004460{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004461 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004462 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004463}
4464
Radim Krčmář7a036a62015-10-30 16:36:24 +01004465static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
4466 unsigned long addr, void *val, unsigned int bytes)
4467{
4468 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4469 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
4470
4471 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
4472}
4473
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004474int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004475 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004476 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004477 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004478{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004479 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004480 void *data = val;
4481 int r = X86EMUL_CONTINUE;
4482
4483 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004484 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4485 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004486 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004487 unsigned offset = addr & (PAGE_SIZE-1);
4488 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4489 int ret;
4490
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004491 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004492 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004493 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02004494 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004495 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004496 goto out;
4497 }
4498
4499 bytes -= towrite;
4500 data += towrite;
4501 addr += towrite;
4502 }
4503out:
4504 return r;
4505}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004506EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004507
Tom Lendacky0f89b202016-12-14 14:59:23 -05004508static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4509 gpa_t gpa, bool write)
4510{
4511 /* For APIC access vmexit */
4512 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4513 return 1;
4514
4515 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
4516 trace_vcpu_match_mmio(gva, gpa, write, true);
4517 return 1;
4518 }
4519
4520 return 0;
4521}
4522
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004523static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4524 gpa_t *gpa, struct x86_exception *exception,
4525 bool write)
4526{
Avi Kivity97d64b72012-09-12 14:52:00 +03004527 u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
4528 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004529
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004530 /*
4531 * currently PKRU is only applied to ept enabled guest so
4532 * there is no pkey in EPT page table for L1 guest or EPT
4533 * shadow page table for L2 guest.
4534 */
Avi Kivity97d64b72012-09-12 14:52:00 +03004535 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08004536 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004537 vcpu->arch.access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004538 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4539 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004540 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004541 return 1;
4542 }
4543
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004544 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4545
4546 if (*gpa == UNMAPPED_GVA)
4547 return -1;
4548
Tom Lendacky0f89b202016-12-14 14:59:23 -05004549 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004550}
4551
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004552int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004553 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004554{
4555 int ret;
4556
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004557 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004558 if (ret < 0)
4559 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004560 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004561 return 1;
4562}
4563
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004564struct read_write_emulator_ops {
4565 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4566 int bytes);
4567 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4568 void *val, int bytes);
4569 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4570 int bytes, void *val);
4571 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4572 void *val, int bytes);
4573 bool write;
4574};
4575
4576static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4577{
4578 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004579 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Avi Kivityf78146b2012-04-18 19:22:47 +03004580 vcpu->mmio_fragments[0].gpa, *(u64 *)val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004581 vcpu->mmio_read_completed = 0;
4582 return 1;
4583 }
4584
4585 return 0;
4586}
4587
4588static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4589 void *val, int bytes)
4590{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004591 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004592}
4593
4594static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4595 void *val, int bytes)
4596{
4597 return emulator_write_phys(vcpu, gpa, val, bytes);
4598}
4599
4600static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4601{
4602 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4603 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4604}
4605
4606static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4607 void *val, int bytes)
4608{
4609 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4610 return X86EMUL_IO_NEEDED;
4611}
4612
4613static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4614 void *val, int bytes)
4615{
Avi Kivityf78146b2012-04-18 19:22:47 +03004616 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
4617
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004618 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004619 return X86EMUL_CONTINUE;
4620}
4621
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004622static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004623 .read_write_prepare = read_prepare,
4624 .read_write_emulate = read_emulate,
4625 .read_write_mmio = vcpu_mmio_read,
4626 .read_write_exit_mmio = read_exit_mmio,
4627};
4628
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004629static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004630 .read_write_emulate = write_emulate,
4631 .read_write_mmio = write_mmio,
4632 .read_write_exit_mmio = write_exit_mmio,
4633 .write = true,
4634};
4635
Xiao Guangrong22388a32011-07-13 14:32:31 +08004636static int emulator_read_write_onepage(unsigned long addr, void *val,
4637 unsigned int bytes,
4638 struct x86_exception *exception,
4639 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004640 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004641{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004642 gpa_t gpa;
4643 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004644 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03004645 struct kvm_mmio_fragment *frag;
Tom Lendacky0f89b202016-12-14 14:59:23 -05004646 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
4647
4648 /*
4649 * If the exit was due to a NPF we may already have a GPA.
4650 * If the GPA is present, use it to avoid the GVA to GPA table walk.
4651 * Note, this cannot be used on string operations since string
4652 * operation using rep will only have the initial GPA from the NPF
4653 * occurred.
4654 */
4655 if (vcpu->arch.gpa_available &&
4656 emulator_can_use_gpa(ctxt) &&
4657 vcpu_is_mmio_gpa(vcpu, addr, exception->address, write) &&
4658 (addr & ~PAGE_MASK) == (exception->address & ~PAGE_MASK)) {
4659 gpa = exception->address;
4660 goto mmio;
4661 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004662
4663 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004664
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004665 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004666 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004667
4668 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004669 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004670 goto mmio;
4671
Xiao Guangrong22388a32011-07-13 14:32:31 +08004672 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004673 return X86EMUL_CONTINUE;
4674
4675mmio:
4676 /*
4677 * Is this MMIO handled locally?
4678 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004679 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004680 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004681 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004682
Avi Kivity70252a12010-01-19 12:51:22 +02004683 gpa += handled;
4684 bytes -= handled;
4685 val += handled;
4686
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004687 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
4688 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
4689 frag->gpa = gpa;
4690 frag->data = val;
4691 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03004692 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004693}
4694
Xiubo Li52eb5a62015-03-13 17:39:45 +08004695static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
4696 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004697 void *val, unsigned int bytes,
4698 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004699 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004700{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004701 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03004702 gpa_t gpa;
4703 int rc;
4704
4705 if (ops->read_write_prepare &&
4706 ops->read_write_prepare(vcpu, val, bytes))
4707 return X86EMUL_CONTINUE;
4708
4709 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004710
Carsten Ottebbd9b642007-10-30 18:44:21 +01004711 /* Crossing a page boundary? */
4712 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03004713 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004714
4715 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004716 rc = emulator_read_write_onepage(addr, val, now, exception,
4717 vcpu, ops);
4718
Carsten Ottebbd9b642007-10-30 18:44:21 +01004719 if (rc != X86EMUL_CONTINUE)
4720 return rc;
4721 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02004722 if (ctxt->mode != X86EMUL_MODE_PROT64)
4723 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004724 val += now;
4725 bytes -= now;
4726 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004727
Avi Kivityf78146b2012-04-18 19:22:47 +03004728 rc = emulator_read_write_onepage(addr, val, bytes, exception,
4729 vcpu, ops);
4730 if (rc != X86EMUL_CONTINUE)
4731 return rc;
4732
4733 if (!vcpu->mmio_nr_fragments)
4734 return rc;
4735
4736 gpa = vcpu->mmio_fragments[0].gpa;
4737
4738 vcpu->mmio_needed = 1;
4739 vcpu->mmio_cur_fragment = 0;
4740
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004741 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03004742 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
4743 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4744 vcpu->run->mmio.phys_addr = gpa;
4745
4746 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004747}
4748
4749static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4750 unsigned long addr,
4751 void *val,
4752 unsigned int bytes,
4753 struct x86_exception *exception)
4754{
4755 return emulator_read_write(ctxt, addr, val, bytes,
4756 exception, &read_emultor);
4757}
4758
Xiubo Li52eb5a62015-03-13 17:39:45 +08004759static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004760 unsigned long addr,
4761 const void *val,
4762 unsigned int bytes,
4763 struct x86_exception *exception)
4764{
4765 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4766 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004767}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004768
Avi Kivitydaea3e72010-03-15 13:59:54 +02004769#define CMPXCHG_TYPE(t, ptr, old, new) \
4770 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4771
4772#ifdef CONFIG_X86_64
4773# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4774#else
4775# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004776 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004777#endif
4778
Avi Kivity0f65dd72011-04-20 13:37:53 +03004779static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4780 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004781 const void *old,
4782 const void *new,
4783 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004784 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004785{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004786 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004787 gpa_t gpa;
4788 struct page *page;
4789 char *kaddr;
4790 bool exchanged;
4791
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004792 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004793 if (bytes > 8 || (bytes & (bytes - 1)))
4794 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004795
Avi Kivitydaea3e72010-03-15 13:59:54 +02004796 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004797
Avi Kivitydaea3e72010-03-15 13:59:54 +02004798 if (gpa == UNMAPPED_GVA ||
4799 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4800 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004801
Avi Kivitydaea3e72010-03-15 13:59:54 +02004802 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4803 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004804
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004805 page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +08004806 if (is_error_page(page))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08004807 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004808
Cong Wang8fd75e12011-11-25 23:14:17 +08004809 kaddr = kmap_atomic(page);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004810 kaddr += offset_in_page(gpa);
4811 switch (bytes) {
4812 case 1:
4813 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4814 break;
4815 case 2:
4816 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4817 break;
4818 case 4:
4819 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4820 break;
4821 case 8:
4822 exchanged = CMPXCHG64(kaddr, old, new);
4823 break;
4824 default:
4825 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004826 }
Cong Wang8fd75e12011-11-25 23:14:17 +08004827 kunmap_atomic(kaddr);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004828 kvm_release_page_dirty(page);
4829
4830 if (!exchanged)
4831 return X86EMUL_CMPXCHG_FAILED;
4832
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004833 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004834 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004835
4836 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004837
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004838emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004839 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004840
Avi Kivity0f65dd72011-04-20 13:37:53 +03004841 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004842}
4843
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004844static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4845{
4846 /* TODO: String I/O for in kernel device */
4847 int r;
4848
4849 if (vcpu->arch.pio.in)
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004850 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004851 vcpu->arch.pio.size, pd);
4852 else
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004853 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004854 vcpu->arch.pio.port, vcpu->arch.pio.size,
4855 pd);
4856 return r;
4857}
4858
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004859static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4860 unsigned short port, void *val,
4861 unsigned int count, bool in)
4862{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004863 vcpu->arch.pio.port = port;
4864 vcpu->arch.pio.in = in;
4865 vcpu->arch.pio.count = count;
4866 vcpu->arch.pio.size = size;
4867
4868 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4869 vcpu->arch.pio.count = 0;
4870 return 1;
4871 }
4872
4873 vcpu->run->exit_reason = KVM_EXIT_IO;
4874 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4875 vcpu->run->io.size = size;
4876 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4877 vcpu->run->io.count = count;
4878 vcpu->run->io.port = port;
4879
4880 return 0;
4881}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004882
Avi Kivityca1d4a92011-04-20 13:37:53 +03004883static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4884 int size, unsigned short port, void *val,
4885 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004886{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004887 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004888 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004889
Gleb Natapov79729952010-03-18 15:20:24 +02004890 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004891 goto data_avail;
4892
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004893 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4894 if (ret) {
4895data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004896 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004897 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02004898 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004899 return 1;
4900 }
4901
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004902 return 0;
4903}
4904
Avi Kivityca1d4a92011-04-20 13:37:53 +03004905static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4906 int size, unsigned short port,
4907 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004908{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004909 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4910
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004911 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004912 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004913 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004914}
4915
Carsten Ottebbd9b642007-10-30 18:44:21 +01004916static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4917{
4918 return kvm_x86_ops->get_segment_base(vcpu, seg);
4919}
4920
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004921static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004922{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004923 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004924}
4925
Jiang Biaoae6a2372016-11-07 08:54:51 +08004926static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004927{
4928 if (!need_emulate_wbinvd(vcpu))
4929 return X86EMUL_CONTINUE;
4930
4931 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004932 int cpu = get_cpu();
4933
4934 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004935 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4936 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004937 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004938 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004939 } else
4940 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004941 return X86EMUL_CONTINUE;
4942}
Joel Schopp5cb56052015-03-02 13:43:31 -06004943
4944int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4945{
Kyle Huey6affcbe2016-11-29 12:40:40 -08004946 kvm_emulate_wbinvd_noskip(vcpu);
4947 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06004948}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004949EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4950
Joel Schopp5cb56052015-03-02 13:43:31 -06004951
4952
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004953static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4954{
Joel Schopp5cb56052015-03-02 13:43:31 -06004955 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004956}
4957
Xiubo Li52eb5a62015-03-13 17:39:45 +08004958static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
4959 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004960{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004961 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004962}
4963
Xiubo Li52eb5a62015-03-13 17:39:45 +08004964static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
4965 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004966{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004967
Avi Kivity717746e2011-04-20 13:37:53 +03004968 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004969}
4970
Gleb Natapov52a46612010-03-18 15:20:03 +02004971static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4972{
4973 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4974}
4975
Avi Kivity717746e2011-04-20 13:37:53 +03004976static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004977{
Avi Kivity717746e2011-04-20 13:37:53 +03004978 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004979 unsigned long value;
4980
4981 switch (cr) {
4982 case 0:
4983 value = kvm_read_cr0(vcpu);
4984 break;
4985 case 2:
4986 value = vcpu->arch.cr2;
4987 break;
4988 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004989 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004990 break;
4991 case 4:
4992 value = kvm_read_cr4(vcpu);
4993 break;
4994 case 8:
4995 value = kvm_get_cr8(vcpu);
4996 break;
4997 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004998 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02004999 return 0;
5000 }
5001
5002 return value;
5003}
5004
Avi Kivity717746e2011-04-20 13:37:53 +03005005static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02005006{
Avi Kivity717746e2011-04-20 13:37:53 +03005007 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03005008 int res = 0;
5009
Gleb Natapov52a46612010-03-18 15:20:03 +02005010 switch (cr) {
5011 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03005012 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02005013 break;
5014 case 2:
5015 vcpu->arch.cr2 = val;
5016 break;
5017 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005018 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02005019 break;
5020 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03005021 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02005022 break;
5023 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005024 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02005025 break;
5026 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03005027 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03005028 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02005029 }
Gleb Natapov0f122442010-04-28 19:15:31 +03005030
5031 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02005032}
5033
Avi Kivity717746e2011-04-20 13:37:53 +03005034static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02005035{
Avi Kivity717746e2011-04-20 13:37:53 +03005036 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02005037}
5038
Avi Kivity4bff1e862011-04-20 13:37:53 +03005039static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005040{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005041 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005042}
5043
Avi Kivity4bff1e862011-04-20 13:37:53 +03005044static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005045{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005046 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005047}
5048
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005049static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
5050{
5051 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
5052}
5053
5054static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
5055{
5056 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
5057}
5058
Avi Kivity4bff1e862011-04-20 13:37:53 +03005059static unsigned long emulator_get_cached_segment_base(
5060 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03005061{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005062 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03005063}
5064
Avi Kivity1aa36612011-04-27 13:20:30 +03005065static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
5066 struct desc_struct *desc, u32 *base3,
5067 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005068{
5069 struct kvm_segment var;
5070
Avi Kivity4bff1e862011-04-20 13:37:53 +03005071 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03005072 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005073
Gleb Natapov378a8b02013-01-21 15:36:48 +02005074 if (var.unusable) {
5075 memset(desc, 0, sizeof(*desc));
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005076 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02005077 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005078
5079 if (var.g)
5080 var.limit >>= 12;
5081 set_desc_limit(desc, var.limit);
5082 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02005083#ifdef CONFIG_X86_64
5084 if (base3)
5085 *base3 = var.base >> 32;
5086#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005087 desc->type = var.type;
5088 desc->s = var.s;
5089 desc->dpl = var.dpl;
5090 desc->p = var.present;
5091 desc->avl = var.avl;
5092 desc->l = var.l;
5093 desc->d = var.db;
5094 desc->g = var.g;
5095
5096 return true;
5097}
5098
Avi Kivity1aa36612011-04-27 13:20:30 +03005099static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
5100 struct desc_struct *desc, u32 base3,
5101 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005102{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005103 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005104 struct kvm_segment var;
5105
Avi Kivity1aa36612011-04-27 13:20:30 +03005106 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005107 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02005108#ifdef CONFIG_X86_64
5109 var.base |= ((u64)base3) << 32;
5110#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005111 var.limit = get_desc_limit(desc);
5112 if (desc->g)
5113 var.limit = (var.limit << 12) | 0xfff;
5114 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005115 var.dpl = desc->dpl;
5116 var.db = desc->d;
5117 var.s = desc->s;
5118 var.l = desc->l;
5119 var.g = desc->g;
5120 var.avl = desc->avl;
5121 var.present = desc->p;
5122 var.unusable = !var.present;
5123 var.padding = 0;
5124
5125 kvm_set_segment(vcpu, &var, seg);
5126 return;
5127}
5128
Avi Kivity717746e2011-04-20 13:37:53 +03005129static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
5130 u32 msr_index, u64 *pdata)
5131{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005132 struct msr_data msr;
5133 int r;
5134
5135 msr.index = msr_index;
5136 msr.host_initiated = false;
5137 r = kvm_get_msr(emul_to_vcpu(ctxt), &msr);
5138 if (r)
5139 return r;
5140
5141 *pdata = msr.data;
5142 return 0;
Avi Kivity717746e2011-04-20 13:37:53 +03005143}
5144
5145static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
5146 u32 msr_index, u64 data)
5147{
Will Auld8fe8ab42012-11-29 12:42:12 -08005148 struct msr_data msr;
5149
5150 msr.data = data;
5151 msr.index = msr_index;
5152 msr.host_initiated = false;
5153 return kvm_set_msr(emul_to_vcpu(ctxt), &msr);
Avi Kivity717746e2011-04-20 13:37:53 +03005154}
5155
Paolo Bonzini64d60672015-05-07 11:36:11 +02005156static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
5157{
5158 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5159
5160 return vcpu->arch.smbase;
5161}
5162
5163static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
5164{
5165 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5166
5167 vcpu->arch.smbase = smbase;
5168}
5169
Nadav Amit67f4d422014-06-02 18:34:09 +03005170static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
5171 u32 pmc)
5172{
Wei Huangc6702c92015-06-19 13:44:45 +02005173 return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03005174}
5175
Avi Kivity222d21a2011-11-10 14:57:30 +02005176static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
5177 u32 pmc, u64 *pdata)
5178{
Wei Huangc6702c92015-06-19 13:44:45 +02005179 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02005180}
5181
Avi Kivity6c3287f2011-04-20 15:43:05 +03005182static void emulator_halt(struct x86_emulate_ctxt *ctxt)
5183{
5184 emul_to_vcpu(ctxt)->arch.halt_request = 1;
5185}
5186
Avi Kivity5037f6f2011-03-28 16:53:59 +02005187static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
5188{
5189 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03005190 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02005191}
5192
5193static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
5194{
5195 preempt_enable();
5196}
5197
Avi Kivity29535382011-04-20 13:37:53 +03005198static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005199 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005200 enum x86_intercept_stage stage)
5201{
Avi Kivity29535382011-04-20 13:37:53 +03005202 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02005203}
5204
Avi Kivity0017f932012-06-07 14:10:16 +03005205static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005206 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
5207{
Avi Kivity0017f932012-06-07 14:10:16 +03005208 kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005209}
5210
Avi Kivitydd856ef2012-08-27 23:46:17 +03005211static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
5212{
5213 return kvm_register_read(emul_to_vcpu(ctxt), reg);
5214}
5215
5216static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
5217{
5218 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
5219}
5220
Nadav Amit801806d2015-01-26 09:32:23 +02005221static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
5222{
5223 kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked);
5224}
5225
Mathias Krause0225fb52012-08-30 01:30:16 +02005226static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03005227 .read_gpr = emulator_read_gpr,
5228 .write_gpr = emulator_write_gpr,
Gleb Natapov1871c602010-02-10 14:21:32 +02005229 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005230 .write_std = kvm_write_guest_virt_system,
Radim Krčmář7a036a62015-10-30 16:36:24 +01005231 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02005232 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005233 .read_emulated = emulator_read_emulated,
5234 .write_emulated = emulator_write_emulated,
5235 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03005236 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005237 .pio_in_emulated = emulator_pio_in_emulated,
5238 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03005239 .get_segment = emulator_get_segment,
5240 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03005241 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005242 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005243 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005244 .set_gdt = emulator_set_gdt,
5245 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02005246 .get_cr = emulator_get_cr,
5247 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02005248 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03005249 .get_dr = emulator_get_dr,
5250 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02005251 .get_smbase = emulator_get_smbase,
5252 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03005253 .set_msr = emulator_set_msr,
5254 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03005255 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02005256 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03005257 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03005258 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03005259 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02005260 .get_fpu = emulator_get_fpu,
5261 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005262 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005263 .get_cpuid = emulator_get_cpuid,
Nadav Amit801806d2015-01-26 09:32:23 +02005264 .set_nmi_mask = emulator_set_nmi_mask,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005265};
5266
Gleb Natapov95cb2292010-04-28 19:15:43 +03005267static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
5268{
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005269 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03005270 /*
5271 * an sti; sti; sequence only disable interrupts for the first
5272 * instruction. So, if the last instruction, be it emulated or
5273 * not, left the system with the INT_STI flag enabled, it
5274 * means that the last instruction is an sti. We should not
5275 * leave the flag on in this case. The same goes for mov ss
5276 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005277 if (int_shadow & mask)
5278 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005279 if (unlikely(int_shadow || mask)) {
Gleb Natapov95cb2292010-04-28 19:15:43 +03005280 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005281 if (!mask)
5282 kvm_make_request(KVM_REQ_EVENT, vcpu);
5283 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03005284}
5285
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005286static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03005287{
5288 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02005289 if (ctxt->exception.vector == PF_VECTOR)
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005290 return kvm_propagate_fault(vcpu, &ctxt->exception);
5291
5292 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02005293 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
5294 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03005295 else
Avi Kivityda9cb572010-11-22 17:53:21 +02005296 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005297 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03005298}
5299
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005300static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
5301{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005302 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005303 int cs_db, cs_l;
5304
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005305 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5306
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005307 ctxt->eflags = kvm_get_rflags(vcpu);
5308 ctxt->eip = kvm_rip_read(vcpu);
5309 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
5310 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03005311 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005312 cs_db ? X86EMUL_MODE_PROT32 :
5313 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005314 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005315 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
5316 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005317 ctxt->emul_flags = vcpu->arch.hflags;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005318
Avi Kivitydd856ef2012-08-27 23:46:17 +03005319 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005320 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005321}
5322
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005323int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02005324{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005325 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02005326 int ret;
5327
5328 init_emulate_ctxt(vcpu);
5329
Avi Kivity9dac77f2011-06-01 15:34:25 +03005330 ctxt->op_bytes = 2;
5331 ctxt->ad_bytes = 2;
5332 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005333 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02005334
5335 if (ret != X86EMUL_CONTINUE)
5336 return EMULATE_FAIL;
5337
Avi Kivity9dac77f2011-06-01 15:34:25 +03005338 ctxt->eip = ctxt->_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005339 kvm_rip_write(vcpu, ctxt->eip);
5340 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02005341
5342 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005343 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02005344 else
5345 vcpu->arch.interrupt.pending = false;
5346
5347 return EMULATE_DONE;
5348}
5349EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
5350
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005351static int handle_emulation_failure(struct kvm_vcpu *vcpu)
5352{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005353 int r = EMULATE_DONE;
5354
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005355 ++vcpu->stat.insn_emulation_fail;
5356 trace_kvm_emulate_insn_failed(vcpu);
Nadav Amita2b9e6c2014-09-17 02:50:50 +03005357 if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005358 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5359 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5360 vcpu->run->internal.ndata = 0;
5361 r = EMULATE_FAIL;
5362 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005363 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005364
5365 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005366}
5367
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005368static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2,
Gleb Natapov991eebf2013-04-11 12:10:51 +03005369 bool write_fault_to_shadow_pgtable,
5370 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03005371{
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005372 gpa_t gpa = cr2;
Dan Williamsba049e92016-01-15 16:56:11 -08005373 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005374
Gleb Natapov991eebf2013-04-11 12:10:51 +03005375 if (emulation_type & EMULTYPE_NO_REEXECUTE)
5376 return false;
5377
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005378 if (!vcpu->arch.mmu.direct_map) {
5379 /*
5380 * Write permission should be allowed since only
5381 * write access need to be emulated.
5382 */
5383 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03005384
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005385 /*
5386 * If the mapping is invalid in guest, let cpu retry
5387 * it to generate fault.
5388 */
5389 if (gpa == UNMAPPED_GVA)
5390 return true;
5391 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005392
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005393 /*
5394 * Do not retry the unhandleable instruction if it faults on the
5395 * readonly host memory, otherwise it will goto a infinite loop:
5396 * retry instruction -> write #PF -> emulation fail -> retry
5397 * instruction -> ...
5398 */
5399 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005400
5401 /*
5402 * If the instruction failed on the error pfn, it can not be fixed,
5403 * report the error to userspace.
5404 */
5405 if (is_error_noslot_pfn(pfn))
5406 return false;
5407
5408 kvm_release_pfn_clean(pfn);
5409
5410 /* The instructions are well-emulated on direct mmu. */
5411 if (vcpu->arch.mmu.direct_map) {
5412 unsigned int indirect_shadow_pages;
5413
5414 spin_lock(&vcpu->kvm->mmu_lock);
5415 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
5416 spin_unlock(&vcpu->kvm->mmu_lock);
5417
5418 if (indirect_shadow_pages)
5419 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
5420
Gleb Natapova6f177e2010-07-08 12:41:12 +03005421 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005422 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005423
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005424 /*
5425 * if emulation was due to access to shadowed page table
5426 * and it failed try to unshadow page and re-enter the
5427 * guest to let CPU execute the instruction.
5428 */
5429 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005430
5431 /*
5432 * If the access faults on its page table, it can not
5433 * be fixed by unprotecting shadow page and it should
5434 * be reported to userspace.
5435 */
5436 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005437}
5438
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005439static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
5440 unsigned long cr2, int emulation_type)
5441{
5442 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5443 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
5444
5445 last_retry_eip = vcpu->arch.last_retry_eip;
5446 last_retry_addr = vcpu->arch.last_retry_addr;
5447
5448 /*
5449 * If the emulation is caused by #PF and it is non-page_table
5450 * writing instruction, it means the VM-EXIT is caused by shadow
5451 * page protected, we can zap the shadow page and retry this
5452 * instruction directly.
5453 *
5454 * Note: if the guest uses a non-page-table modifying instruction
5455 * on the PDE that points to the instruction, then we will unmap
5456 * the instruction and go to an infinite loop. So, we cache the
5457 * last retried eip and the last fault address, if we meet the eip
5458 * and the address again, we can break out of the potential infinite
5459 * loop.
5460 */
5461 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
5462
5463 if (!(emulation_type & EMULTYPE_RETRY))
5464 return false;
5465
5466 if (x86_page_table_writing_insn(ctxt))
5467 return false;
5468
5469 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
5470 return false;
5471
5472 vcpu->arch.last_retry_eip = ctxt->eip;
5473 vcpu->arch.last_retry_addr = cr2;
5474
5475 if (!vcpu->arch.mmu.direct_map)
5476 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
5477
Xiao Guangrong22368022013-01-13 23:44:12 +08005478 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005479
5480 return true;
5481}
5482
Gleb Natapov716d51a2012-09-03 15:24:26 +03005483static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
5484static int complete_emulated_pio(struct kvm_vcpu *vcpu);
5485
Paolo Bonzini64d60672015-05-07 11:36:11 +02005486static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02005487{
Paolo Bonzini64d60672015-05-07 11:36:11 +02005488 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02005489 /* This is a good place to trace that we are exiting SMM. */
5490 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
5491
Paolo Bonzinic43203c2016-06-01 22:26:00 +02005492 /* Process a latched INIT or SMI, if any. */
5493 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005494 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02005495
5496 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005497}
5498
5499static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags)
5500{
5501 unsigned changed = vcpu->arch.hflags ^ emul_flags;
5502
Paolo Bonzinia5845392015-04-01 18:18:53 +02005503 vcpu->arch.hflags = emul_flags;
Paolo Bonzini64d60672015-05-07 11:36:11 +02005504
5505 if (changed & HF_SMM_MASK)
5506 kvm_smm_changed(vcpu);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005507}
5508
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005509static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
5510 unsigned long *db)
5511{
5512 u32 dr6 = 0;
5513 int i;
5514 u32 enable, rwlen;
5515
5516 enable = dr7;
5517 rwlen = dr7 >> 16;
5518 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
5519 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
5520 dr6 |= (1 << i);
5521 return dr6;
5522}
5523
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005524static void kvm_vcpu_check_singlestep(struct kvm_vcpu *vcpu, unsigned long rflags, int *r)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005525{
5526 struct kvm_run *kvm_run = vcpu->run;
5527
5528 /*
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005529 * rflags is the old, "raw" value of the flags. The new value has
5530 * not been saved yet.
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005531 *
5532 * This is correct even for TF set by the guest, because "the
5533 * processor will not generate this exception after the instruction
5534 * that sets the TF flag".
5535 */
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005536 if (unlikely(rflags & X86_EFLAGS_TF)) {
5537 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005538 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 |
5539 DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005540 kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip;
5541 kvm_run->debug.arch.exception = DB_VECTOR;
5542 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5543 *r = EMULATE_USER_EXIT;
5544 } else {
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005545 /*
5546 * "Certain debug exceptions may clear bit 0-3. The
5547 * remaining contents of the DR6 register are never
5548 * cleared by the processor".
5549 */
5550 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005551 vcpu->arch.dr6 |= DR6_BS | DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005552 kvm_queue_exception(vcpu, DB_VECTOR);
5553 }
5554 }
5555}
5556
Kyle Huey6affcbe2016-11-29 12:40:40 -08005557int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
5558{
5559 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
5560 int r = EMULATE_DONE;
5561
5562 kvm_x86_ops->skip_emulated_instruction(vcpu);
5563 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
5564 return r == EMULATE_DONE;
5565}
5566EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
5567
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005568static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
5569{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005570 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
5571 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005572 struct kvm_run *kvm_run = vcpu->run;
5573 unsigned long eip = kvm_get_linear_rip(vcpu);
5574 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005575 vcpu->arch.guest_debug_dr7,
5576 vcpu->arch.eff_db);
5577
5578 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005579 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02005580 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005581 kvm_run->debug.arch.exception = DB_VECTOR;
5582 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5583 *r = EMULATE_USER_EXIT;
5584 return true;
5585 }
5586 }
5587
Nadav Amit4161a562014-07-17 01:19:31 +03005588 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
5589 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005590 unsigned long eip = kvm_get_linear_rip(vcpu);
5591 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005592 vcpu->arch.dr7,
5593 vcpu->arch.db);
5594
5595 if (dr6 != 0) {
5596 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005597 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005598 kvm_queue_exception(vcpu, DB_VECTOR);
5599 *r = EMULATE_DONE;
5600 return true;
5601 }
5602 }
5603
5604 return false;
5605}
5606
Andre Przywara51d8b662010-12-21 11:12:02 +01005607int x86_emulate_instruction(struct kvm_vcpu *vcpu,
5608 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01005609 int emulation_type,
5610 void *insn,
5611 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005612{
Gleb Natapov95cb2292010-04-28 19:15:43 +03005613 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005614 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005615 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005616 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005617
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005618 /*
5619 * Clear write_fault_to_shadow_pgtable here to ensure it is
5620 * never reused.
5621 */
5622 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03005623 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03005624
Sheng Yang571008d2008-01-02 14:49:22 +08005625 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005626 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005627
5628 /*
5629 * We will reenter on the same instruction since
5630 * we do not set complete_userspace_io. This does not
5631 * handle watchpoints yet, those would be handled in
5632 * the emulate_ops.
5633 */
5634 if (kvm_vcpu_check_breakpoint(vcpu, &r))
5635 return r;
5636
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005637 ctxt->interruptibility = 0;
5638 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02005639 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005640 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005641
Borislav Petkovb51e9742013-09-22 16:44:52 +02005642 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02005643
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005644 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02005645
Avi Kivitye46479f2010-04-11 13:05:16 +03005646 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02005647 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09005648 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02005649 if (emulation_type & EMULTYPE_TRAP_UD)
5650 return EMULATE_FAIL;
Gleb Natapov991eebf2013-04-11 12:10:51 +03005651 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5652 emulation_type))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005653 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005654 if (emulation_type & EMULTYPE_SKIP)
5655 return EMULATE_FAIL;
5656 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005657 }
5658 }
5659
Gleb Natapovba8afb62009-04-12 13:36:57 +03005660 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03005661 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03005662 if (ctxt->eflags & X86_EFLAGS_RF)
5663 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Gleb Natapovba8afb62009-04-12 13:36:57 +03005664 return EMULATE_DONE;
5665 }
5666
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005667 if (retry_instruction(ctxt, cr2, emulation_type))
5668 return EMULATE_DONE;
5669
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005670 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005671 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005672 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
5673 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03005674 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005675 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005676
Gleb Natapov5cd21912010-03-18 15:20:26 +02005677restart:
Tom Lendacky0f89b202016-12-14 14:59:23 -05005678 /* Save the faulting GPA (cr2) in the address field */
5679 ctxt->exception.address = cr2;
5680
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005681 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005682
Joerg Roedel775fde82011-04-04 12:39:24 +02005683 if (r == EMULATION_INTERCEPTED)
5684 return EMULATE_DONE;
5685
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005686 if (r == EMULATION_FAILED) {
Gleb Natapov991eebf2013-04-11 12:10:51 +03005687 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5688 emulation_type))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005689 return EMULATE_DONE;
5690
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005691 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005692 }
5693
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005694 if (ctxt->have_exception) {
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005695 r = EMULATE_DONE;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005696 if (inject_emulated_exception(vcpu))
5697 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005698 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02005699 if (!vcpu->arch.pio.in) {
5700 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03005701 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02005702 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005703 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005704 vcpu->arch.complete_userspace_io = complete_emulated_pio;
5705 }
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005706 r = EMULATE_USER_EXIT;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005707 } else if (vcpu->mmio_needed) {
5708 if (!vcpu->mmio_is_write)
5709 writeback = false;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005710 r = EMULATE_USER_EXIT;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005711 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005712 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03005713 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005714 else
5715 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03005716
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005717 if (writeback) {
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005718 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005719 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005720 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005721 if (vcpu->arch.hflags != ctxt->emul_flags)
5722 kvm_set_hflags(vcpu, ctxt->emul_flags);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005723 kvm_rip_write(vcpu, ctxt->eip);
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005724 if (r == EMULATE_DONE)
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005725 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
Nadav Amit38827db2014-11-02 11:54:53 +02005726 if (!ctxt->have_exception ||
5727 exception_type(ctxt->exception.vector) == EXCPT_TRAP)
5728 __kvm_set_rflags(vcpu, ctxt->eflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005729
5730 /*
5731 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
5732 * do nothing, and it will be requested again as soon as
5733 * the shadow expires. But we still need to check here,
5734 * because POPF has no interrupt shadow.
5735 */
5736 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
5737 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005738 } else
5739 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005740
Gleb Natapove85d28f2010-07-29 15:11:52 +03005741 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005742}
Andre Przywara51d8b662010-12-21 11:12:02 +01005743EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005744
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005745int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005746{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005747 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005748 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5749 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005750 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005751 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005752 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005753}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005754EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005755
Tom Lendacky8370c3d2016-11-23 12:01:50 -05005756static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
5757{
5758 unsigned long val;
5759
5760 /* We should only ever be called with arch.pio.count equal to 1 */
5761 BUG_ON(vcpu->arch.pio.count != 1);
5762
5763 /* For size less than 4 we merge, else we zero extend */
5764 val = (vcpu->arch.pio.size < 4) ? kvm_register_read(vcpu, VCPU_REGS_RAX)
5765 : 0;
5766
5767 /*
5768 * Since vcpu->arch.pio.count == 1 let emulator_pio_in_emulated perform
5769 * the copy and tracing
5770 */
5771 emulator_pio_in_emulated(&vcpu->arch.emulate_ctxt, vcpu->arch.pio.size,
5772 vcpu->arch.pio.port, &val, 1);
5773 kvm_register_write(vcpu, VCPU_REGS_RAX, val);
5774
5775 return 1;
5776}
5777
5778int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size, unsigned short port)
5779{
5780 unsigned long val;
5781 int ret;
5782
5783 /* For size less than 4 we merge, else we zero extend */
5784 val = (size < 4) ? kvm_register_read(vcpu, VCPU_REGS_RAX) : 0;
5785
5786 ret = emulator_pio_in_emulated(&vcpu->arch.emulate_ctxt, size, port,
5787 &val, 1);
5788 if (ret) {
5789 kvm_register_write(vcpu, VCPU_REGS_RAX, val);
5790 return ret;
5791 }
5792
5793 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
5794
5795 return 0;
5796}
5797EXPORT_SYMBOL_GPL(kvm_fast_pio_in);
5798
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005799static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005800{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005801 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005802 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005803}
5804
5805static void tsc_khz_changed(void *data)
5806{
5807 struct cpufreq_freqs *freq = data;
5808 unsigned long khz = 0;
5809
5810 if (data)
5811 khz = freq->new;
5812 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5813 khz = cpufreq_quick_get(raw_smp_processor_id());
5814 if (!khz)
5815 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005816 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005817}
5818
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005819static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5820 void *data)
5821{
5822 struct cpufreq_freqs *freq = data;
5823 struct kvm *kvm;
5824 struct kvm_vcpu *vcpu;
5825 int i, send_ipi = 0;
5826
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005827 /*
5828 * We allow guests to temporarily run on slowing clocks,
5829 * provided we notify them after, or to run on accelerating
5830 * clocks, provided we notify them before. Thus time never
5831 * goes backwards.
5832 *
5833 * However, we have a problem. We can't atomically update
5834 * the frequency of a given CPU from this function; it is
5835 * merely a notifier, which can be called from any CPU.
5836 * Changing the TSC frequency at arbitrary points in time
5837 * requires a recomputation of local variables related to
5838 * the TSC for each VCPU. We must flag these local variables
5839 * to be updated and be sure the update takes place with the
5840 * new frequency before any guests proceed.
5841 *
5842 * Unfortunately, the combination of hotplug CPU and frequency
5843 * change creates an intractable locking scenario; the order
5844 * of when these callouts happen is undefined with respect to
5845 * CPU hotplug, and they can race with each other. As such,
5846 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5847 * undefined; you can actually have a CPU frequency change take
5848 * place in between the computation of X and the setting of the
5849 * variable. To protect against this problem, all updates of
5850 * the per_cpu tsc_khz variable are done in an interrupt
5851 * protected IPI, and all callers wishing to update the value
5852 * must wait for a synchronous IPI to complete (which is trivial
5853 * if the caller is on the CPU already). This establishes the
5854 * necessary total order on variable updates.
5855 *
5856 * Note that because a guest time update may take place
5857 * anytime after the setting of the VCPU's request bit, the
5858 * correct TSC value must be set before the request. However,
5859 * to ensure the update actually makes it to any guest which
5860 * starts running in hardware virtualization between the set
5861 * and the acquisition of the spinlock, we must also ping the
5862 * CPU after setting the request bit.
5863 *
5864 */
5865
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005866 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5867 return 0;
5868 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5869 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005870
5871 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005872
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005873 spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005874 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005875 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005876 if (vcpu->cpu != freq->cpu)
5877 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005878 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005879 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005880 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005881 }
5882 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005883 spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005884
5885 if (freq->old < freq->new && send_ipi) {
5886 /*
5887 * We upscale the frequency. Must make the guest
5888 * doesn't see old kvmclock values while running with
5889 * the new frequency, otherwise we risk the guest sees
5890 * time go backwards.
5891 *
5892 * In case we update the frequency for another cpu
5893 * (which might be in guest context) send an interrupt
5894 * to kick the cpu out of guest context. Next time
5895 * guest context is entered kvmclock will be updated,
5896 * so the guest will not see stale values.
5897 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005898 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005899 }
5900 return 0;
5901}
5902
5903static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005904 .notifier_call = kvmclock_cpufreq_notifier
5905};
5906
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005907static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005908{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005909 tsc_khz_changed(NULL);
5910 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005911}
5912
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005913static void kvm_timer_init(void)
5914{
Zachary Amsdenc2855452010-09-18 14:38:15 -10005915 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305916
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005917 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005918#ifdef CONFIG_CPU_FREQ
5919 struct cpufreq_policy policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02005920 int cpu;
5921
Zachary Amsdenc2855452010-09-18 14:38:15 -10005922 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005923 cpu = get_cpu();
5924 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005925 if (policy.cpuinfo.max_freq)
5926 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005927 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005928#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005929 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5930 CPUFREQ_TRANSITION_NOTIFIER);
5931 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005932 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305933
Thomas Gleixner73c1b412016-12-21 20:19:54 +01005934 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005935 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005936}
5937
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005938static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5939
Gleb Natapovf5132b02011-11-10 14:57:22 +02005940int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005941{
Alex,Shi086c9852011-10-20 15:34:01 +08005942 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005943}
5944
5945static int kvm_is_user_mode(void)
5946{
5947 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005948
Alex,Shi086c9852011-10-20 15:34:01 +08005949 if (__this_cpu_read(current_vcpu))
5950 user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005951
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005952 return user_mode != 0;
5953}
5954
5955static unsigned long kvm_get_guest_ip(void)
5956{
5957 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005958
Alex,Shi086c9852011-10-20 15:34:01 +08005959 if (__this_cpu_read(current_vcpu))
5960 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005961
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005962 return ip;
5963}
5964
5965static struct perf_guest_info_callbacks kvm_guest_cbs = {
5966 .is_in_guest = kvm_is_in_guest,
5967 .is_user_mode = kvm_is_user_mode,
5968 .get_guest_ip = kvm_get_guest_ip,
5969};
5970
5971void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5972{
Alex,Shi086c9852011-10-20 15:34:01 +08005973 __this_cpu_write(current_vcpu, vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005974}
5975EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5976
5977void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5978{
Alex,Shi086c9852011-10-20 15:34:01 +08005979 __this_cpu_write(current_vcpu, NULL);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005980}
5981EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5982
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005983static void kvm_set_mmio_spte_mask(void)
5984{
5985 u64 mask;
5986 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5987
5988 /*
5989 * Set the reserved bits and the present bit of an paging-structure
5990 * entry to generate page fault with PFER.RSV = 1.
5991 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08005992 /* Mask the reserved physical address bits. */
Tiejun Chend1431482014-09-01 18:44:04 +08005993 mask = rsvd_bits(maxphyaddr, 51);
Xiao Guangrong885032b2013-06-07 16:51:23 +08005994
Xiao Guangrong885032b2013-06-07 16:51:23 +08005995 /* Set the present bit. */
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005996 mask |= 1ull;
5997
5998#ifdef CONFIG_X86_64
5999 /*
6000 * If reserved bit is not supported, clear the present bit to disable
6001 * mmio page fault.
6002 */
6003 if (maxphyaddr == 52)
6004 mask &= ~1ull;
6005#endif
6006
6007 kvm_mmu_set_mmio_spte_mask(mask);
6008}
6009
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006010#ifdef CONFIG_X86_64
6011static void pvclock_gtod_update_fn(struct work_struct *work)
6012{
Marcelo Tosattid8281992012-11-27 23:29:01 -02006013 struct kvm *kvm;
6014
6015 struct kvm_vcpu *vcpu;
6016 int i;
6017
Paolo Bonzini2f303b72013-09-25 13:53:07 +02006018 spin_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006019 list_for_each_entry(kvm, &vm_list, vm_list)
6020 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08006021 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006022 atomic_set(&kvm_guest_has_master_clock, 0);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02006023 spin_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006024}
6025
6026static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
6027
6028/*
6029 * Notification about pvclock gtod data update.
6030 */
6031static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
6032 void *priv)
6033{
6034 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
6035 struct timekeeper *tk = priv;
6036
6037 update_pvclock_gtod(tk);
6038
6039 /* disable master clock if host does not trust, or does not
6040 * use, TSC clocksource
6041 */
6042 if (gtod->clock.vclock_mode != VCLOCK_TSC &&
6043 atomic_read(&kvm_guest_has_master_clock) != 0)
6044 queue_work(system_long_wq, &pvclock_gtod_work);
6045
6046 return 0;
6047}
6048
6049static struct notifier_block pvclock_gtod_notifier = {
6050 .notifier_call = pvclock_gtod_notify,
6051};
6052#endif
6053
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006054int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02006055{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10006056 int r;
Mathias Krause6b61edf2013-06-26 20:36:23 +02006057 struct kvm_x86_ops *ops = opaque;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006058
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006059 if (kvm_x86_ops) {
6060 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006061 r = -EEXIST;
6062 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006063 }
6064
6065 if (!ops->cpu_has_kvm_support()) {
6066 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006067 r = -EOPNOTSUPP;
6068 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006069 }
6070 if (ops->disabled_by_bios()) {
6071 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006072 r = -EOPNOTSUPP;
6073 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006074 }
6075
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006076 r = -ENOMEM;
6077 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
6078 if (!shared_msrs) {
6079 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
6080 goto out;
6081 }
6082
Avi Kivity97db56c2008-01-13 13:23:56 +02006083 r = kvm_mmu_module_init();
6084 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006085 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02006086
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006087 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02006088
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006089 kvm_x86_ops = ops;
Paolo Bonzini920c8372014-03-26 15:54:00 +01006090
Sheng Yang7b523452008-04-25 21:13:50 +08006091 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Bandan Dasffb128c2016-07-12 18:18:49 -04006092 PT_DIRTY_MASK, PT64_NX_MASK, 0,
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006093 PT_PRESENT_MASK, 0);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10006094 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01006095
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08006096 perf_register_guest_info_callbacks(&kvm_guest_cbs);
6097
Borislav Petkovd366bf72016-04-04 22:25:02 +02006098 if (boot_cpu_has(X86_FEATURE_XSAVE))
Dexuan Cui2acf9232010-06-10 11:27:12 +08006099 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
6100
Gleb Natapovc5cc4212012-08-05 15:58:30 +03006101 kvm_lapic_init();
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006102#ifdef CONFIG_X86_64
6103 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
6104#endif
6105
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006106 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006107
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006108out_free_percpu:
6109 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006110out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006111 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02006112}
Hollis Blanchard8776e512007-10-31 17:24:24 -05006113
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006114void kvm_arch_exit(void)
6115{
David Matlackcef84c32016-12-16 14:30:36 -08006116 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08006117 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
6118
Jan Kiszka888d2562009-04-17 19:24:58 +02006119 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
6120 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
6121 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00006122 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006123#ifdef CONFIG_X86_64
6124 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
6125#endif
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006126 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006127 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006128 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006129}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006130
Joel Schopp5cb56052015-03-02 13:43:31 -06006131int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006132{
6133 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02006134 if (lapic_in_kernel(vcpu)) {
Avi Kivitya4535292008-04-13 17:54:35 +03006135 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006136 return 1;
6137 } else {
6138 vcpu->run->exit_reason = KVM_EXIT_HLT;
6139 return 0;
6140 }
6141}
Joel Schopp5cb56052015-03-02 13:43:31 -06006142EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
6143
6144int kvm_emulate_halt(struct kvm_vcpu *vcpu)
6145{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006146 int ret = kvm_skip_emulated_instruction(vcpu);
6147 /*
6148 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
6149 * KVM_EXIT_DEBUG here.
6150 */
6151 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06006152}
Hollis Blanchard8776e512007-10-31 17:24:24 -05006153EXPORT_SYMBOL_GPL(kvm_emulate_halt);
6154
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006155#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006156static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
6157 unsigned long clock_type)
6158{
6159 struct kvm_clock_pairing clock_pairing;
6160 struct timespec ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01006161 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006162 int ret;
6163
6164 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
6165 return -KVM_EOPNOTSUPP;
6166
6167 if (kvm_get_walltime_and_clockread(&ts, &cycle) == false)
6168 return -KVM_EOPNOTSUPP;
6169
6170 clock_pairing.sec = ts.tv_sec;
6171 clock_pairing.nsec = ts.tv_nsec;
6172 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
6173 clock_pairing.flags = 0;
6174
6175 ret = 0;
6176 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
6177 sizeof(struct kvm_clock_pairing)))
6178 ret = -KVM_EFAULT;
6179
6180 return ret;
6181}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006182#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006183
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306184/*
6185 * kvm_pv_kick_cpu_op: Kick a vcpu.
6186 *
6187 * @apicid - apicid of vcpu to be kicked.
6188 */
6189static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
6190{
Raghavendra K T24d21662013-08-26 14:18:35 +05306191 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306192
Raghavendra K T24d21662013-08-26 14:18:35 +05306193 lapic_irq.shorthand = 0;
6194 lapic_irq.dest_mode = 0;
6195 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06006196 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306197
Raghavendra K T24d21662013-08-26 14:18:35 +05306198 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08006199 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306200}
6201
Andrey Smetanind62caab2015-11-10 15:36:33 +03006202void kvm_vcpu_deactivate_apicv(struct kvm_vcpu *vcpu)
6203{
6204 vcpu->arch.apicv_active = false;
6205 kvm_x86_ops->refresh_apicv_exec_ctrl(vcpu);
6206}
6207
Hollis Blanchard8776e512007-10-31 17:24:24 -05006208int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
6209{
6210 unsigned long nr, a0, a1, a2, a3, ret;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006211 int op_64_bit, r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006212
Kyle Huey6affcbe2016-11-29 12:40:40 -08006213 r = kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06006214
Gleb Natapov55cd8e52010-01-17 15:51:22 +02006215 if (kvm_hv_hypercall_enabled(vcpu->kvm))
6216 return kvm_hv_hypercall(vcpu);
6217
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006218 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
6219 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
6220 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
6221 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
6222 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006223
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006224 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006225
Nadav Amita449c7a2014-06-18 17:19:24 +03006226 op_64_bit = is_64_bit_mode(vcpu);
6227 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05006228 nr &= 0xFFFFFFFF;
6229 a0 &= 0xFFFFFFFF;
6230 a1 &= 0xFFFFFFFF;
6231 a2 &= 0xFFFFFFFF;
6232 a3 &= 0xFFFFFFFF;
6233 }
6234
Jan Kiszka07708c42009-08-03 18:43:28 +02006235 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
6236 ret = -KVM_EPERM;
6237 goto out;
6238 }
6239
Hollis Blanchard8776e512007-10-31 17:24:24 -05006240 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02006241 case KVM_HC_VAPIC_POLL_IRQ:
6242 ret = 0;
6243 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306244 case KVM_HC_KICK_CPU:
6245 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
6246 ret = 0;
6247 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006248#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006249 case KVM_HC_CLOCK_PAIRING:
6250 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
6251 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006252#endif
Hollis Blanchard8776e512007-10-31 17:24:24 -05006253 default:
6254 ret = -KVM_ENOSYS;
6255 break;
6256 }
Jan Kiszka07708c42009-08-03 18:43:28 +02006257out:
Nadav Amita449c7a2014-06-18 17:19:24 +03006258 if (!op_64_bit)
6259 ret = (u32)ret;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006260 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05306261 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05006262 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006263}
6264EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
6265
Jan Kiszkab6785de2012-09-20 07:43:17 +02006266static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006267{
Avi Kivityd6aa1002011-04-20 15:47:13 +03006268 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006269 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006270 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006271
Hollis Blanchard8776e512007-10-31 17:24:24 -05006272 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006273
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01006274 return emulator_write_emulated(ctxt, rip, instruction, 3,
6275 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006276}
6277
Avi Kivity851ba692009-08-24 11:10:17 +03006278static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006279{
Matt Gingell782d4222015-11-16 15:26:00 -08006280 return vcpu->run->request_interrupt_window &&
6281 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006282}
6283
Avi Kivity851ba692009-08-24 11:10:17 +03006284static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006285{
Avi Kivity851ba692009-08-24 11:10:17 +03006286 struct kvm_run *kvm_run = vcpu->run;
6287
Jan Kiszka91586a32009-10-05 13:07:21 +02006288 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02006289 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006290 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006291 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01006292 kvm_run->ready_for_interrupt_injection =
6293 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08006294 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006295}
6296
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006297static void update_cr8_intercept(struct kvm_vcpu *vcpu)
6298{
6299 int max_irr, tpr;
6300
6301 if (!kvm_x86_ops->update_cr8_intercept)
6302 return;
6303
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006304 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03006305 return;
6306
Andrey Smetanind62caab2015-11-10 15:36:33 +03006307 if (vcpu->arch.apicv_active)
6308 return;
6309
Gleb Natapov8db3baa2009-05-11 13:35:54 +03006310 if (!vcpu->arch.apic->vapic_addr)
6311 max_irr = kvm_lapic_find_highest_irr(vcpu);
6312 else
6313 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006314
6315 if (max_irr != -1)
6316 max_irr >>= 4;
6317
6318 tpr = kvm_lapic_get_cr8(vcpu);
6319
6320 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
6321}
6322
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006323static int inject_pending_event(struct kvm_vcpu *vcpu, bool req_int_win)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006324{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006325 int r;
6326
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006327 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006328 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02006329 trace_kvm_inj_exception(vcpu->arch.exception.nr,
6330 vcpu->arch.exception.has_error_code,
6331 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03006332
6333 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
6334 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
6335 X86_EFLAGS_RF);
6336
Nadav Amit6bdf0662014-09-30 20:49:14 +03006337 if (vcpu->arch.exception.nr == DB_VECTOR &&
6338 (vcpu->arch.dr7 & DR7_GD)) {
6339 vcpu->arch.dr7 &= ~DR7_GD;
6340 kvm_update_dr7(vcpu);
6341 }
6342
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006343 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
6344 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02006345 vcpu->arch.exception.error_code,
6346 vcpu->arch.exception.reinject);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006347 return 0;
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006348 }
6349
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006350 if (vcpu->arch.nmi_injected) {
6351 kvm_x86_ops->set_nmi(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006352 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006353 }
6354
6355 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006356 kvm_x86_ops->set_irq(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006357 return 0;
6358 }
6359
6360 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6361 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6362 if (r != 0)
6363 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006364 }
6365
6366 /* try to inject new event if pending */
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006367 if (vcpu->arch.smi_pending && !is_smm(vcpu)) {
6368 vcpu->arch.smi_pending = false;
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006369 enter_smm(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006370 } else if (vcpu->arch.nmi_pending && kvm_x86_ops->nmi_allowed(vcpu)) {
Yuki Shibuya321c5652016-03-24 05:17:03 +00006371 --vcpu->arch.nmi_pending;
6372 vcpu->arch.nmi_injected = true;
6373 kvm_x86_ops->set_nmi(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006374 } else if (kvm_cpu_has_injectable_intr(vcpu)) {
Bandan Das9242b5b2014-07-08 00:30:23 -04006375 /*
6376 * Because interrupts can be injected asynchronously, we are
6377 * calling check_nested_events again here to avoid a race condition.
6378 * See https://lkml.org/lkml/2014/7/2/60 for discussion about this
6379 * proposal and current concerns. Perhaps we should be setting
6380 * KVM_REQ_EVENT only on certain events and not unconditionally?
6381 */
6382 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6383 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6384 if (r != 0)
6385 return r;
6386 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006387 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006388 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
6389 false);
6390 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006391 }
6392 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006393
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006394 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006395}
6396
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006397static void process_nmi(struct kvm_vcpu *vcpu)
6398{
6399 unsigned limit = 2;
6400
6401 /*
6402 * x86 is limited to one NMI running, and one NMI pending after it.
6403 * If an NMI is already in progress, limit further NMIs to just one.
6404 * Otherwise, allow two (and we'll inject the first one immediately).
6405 */
6406 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
6407 limit = 1;
6408
6409 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
6410 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
6411 kvm_make_request(KVM_REQ_EVENT, vcpu);
6412}
6413
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006414#define put_smstate(type, buf, offset, val) \
6415 *(type *)((buf) + (offset) - 0x7e00) = val
6416
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006417static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006418{
6419 u32 flags = 0;
6420 flags |= seg->g << 23;
6421 flags |= seg->db << 22;
6422 flags |= seg->l << 21;
6423 flags |= seg->avl << 20;
6424 flags |= seg->present << 15;
6425 flags |= seg->dpl << 13;
6426 flags |= seg->s << 12;
6427 flags |= seg->type << 8;
6428 return flags;
6429}
6430
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006431static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006432{
6433 struct kvm_segment seg;
6434 int offset;
6435
6436 kvm_get_segment(vcpu, &seg, n);
6437 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
6438
6439 if (n < 3)
6440 offset = 0x7f84 + n * 12;
6441 else
6442 offset = 0x7f2c + (n - 3) * 12;
6443
6444 put_smstate(u32, buf, offset + 8, seg.base);
6445 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006446 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006447}
6448
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006449#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006450static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006451{
6452 struct kvm_segment seg;
6453 int offset;
6454 u16 flags;
6455
6456 kvm_get_segment(vcpu, &seg, n);
6457 offset = 0x7e00 + n * 16;
6458
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006459 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006460 put_smstate(u16, buf, offset, seg.selector);
6461 put_smstate(u16, buf, offset + 2, flags);
6462 put_smstate(u32, buf, offset + 4, seg.limit);
6463 put_smstate(u64, buf, offset + 8, seg.base);
6464}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006465#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006466
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006467static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006468{
6469 struct desc_ptr dt;
6470 struct kvm_segment seg;
6471 unsigned long val;
6472 int i;
6473
6474 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
6475 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
6476 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
6477 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
6478
6479 for (i = 0; i < 8; i++)
6480 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
6481
6482 kvm_get_dr(vcpu, 6, &val);
6483 put_smstate(u32, buf, 0x7fcc, (u32)val);
6484 kvm_get_dr(vcpu, 7, &val);
6485 put_smstate(u32, buf, 0x7fc8, (u32)val);
6486
6487 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6488 put_smstate(u32, buf, 0x7fc4, seg.selector);
6489 put_smstate(u32, buf, 0x7f64, seg.base);
6490 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006491 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006492
6493 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6494 put_smstate(u32, buf, 0x7fc0, seg.selector);
6495 put_smstate(u32, buf, 0x7f80, seg.base);
6496 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006497 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006498
6499 kvm_x86_ops->get_gdt(vcpu, &dt);
6500 put_smstate(u32, buf, 0x7f74, dt.address);
6501 put_smstate(u32, buf, 0x7f70, dt.size);
6502
6503 kvm_x86_ops->get_idt(vcpu, &dt);
6504 put_smstate(u32, buf, 0x7f58, dt.address);
6505 put_smstate(u32, buf, 0x7f54, dt.size);
6506
6507 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006508 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006509
6510 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
6511
6512 /* revision id */
6513 put_smstate(u32, buf, 0x7efc, 0x00020000);
6514 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
6515}
6516
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006517static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006518{
6519#ifdef CONFIG_X86_64
6520 struct desc_ptr dt;
6521 struct kvm_segment seg;
6522 unsigned long val;
6523 int i;
6524
6525 for (i = 0; i < 16; i++)
6526 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
6527
6528 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
6529 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
6530
6531 kvm_get_dr(vcpu, 6, &val);
6532 put_smstate(u64, buf, 0x7f68, val);
6533 kvm_get_dr(vcpu, 7, &val);
6534 put_smstate(u64, buf, 0x7f60, val);
6535
6536 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
6537 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
6538 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
6539
6540 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
6541
6542 /* revision id */
6543 put_smstate(u32, buf, 0x7efc, 0x00020064);
6544
6545 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
6546
6547 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6548 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006549 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006550 put_smstate(u32, buf, 0x7e94, seg.limit);
6551 put_smstate(u64, buf, 0x7e98, seg.base);
6552
6553 kvm_x86_ops->get_idt(vcpu, &dt);
6554 put_smstate(u32, buf, 0x7e84, dt.size);
6555 put_smstate(u64, buf, 0x7e88, dt.address);
6556
6557 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6558 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006559 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006560 put_smstate(u32, buf, 0x7e74, seg.limit);
6561 put_smstate(u64, buf, 0x7e78, seg.base);
6562
6563 kvm_x86_ops->get_gdt(vcpu, &dt);
6564 put_smstate(u32, buf, 0x7e64, dt.size);
6565 put_smstate(u64, buf, 0x7e68, dt.address);
6566
6567 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006568 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006569#else
6570 WARN_ON_ONCE(1);
6571#endif
6572}
6573
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006574static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02006575{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006576 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02006577 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006578 char buf[512];
6579 u32 cr0;
6580
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006581 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
6582 vcpu->arch.hflags |= HF_SMM_MASK;
6583 memset(buf, 0, 512);
6584 if (guest_cpuid_has_longmode(vcpu))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006585 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006586 else
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006587 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006588
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006589 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006590
6591 if (kvm_x86_ops->get_nmi_mask(vcpu))
6592 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
6593 else
6594 kvm_x86_ops->set_nmi_mask(vcpu, true);
6595
6596 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
6597 kvm_rip_write(vcpu, 0x8000);
6598
6599 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
6600 kvm_x86_ops->set_cr0(vcpu, cr0);
6601 vcpu->arch.cr0 = cr0;
6602
6603 kvm_x86_ops->set_cr4(vcpu, 0);
6604
Paolo Bonzini18c36262015-08-07 12:27:54 +02006605 /* Undocumented: IDT limit is set to zero on entry to SMM. */
6606 dt.address = dt.size = 0;
6607 kvm_x86_ops->set_idt(vcpu, &dt);
6608
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006609 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
6610
6611 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
6612 cs.base = vcpu->arch.smbase;
6613
6614 ds.selector = 0;
6615 ds.base = 0;
6616
6617 cs.limit = ds.limit = 0xffffffff;
6618 cs.type = ds.type = 0x3;
6619 cs.dpl = ds.dpl = 0;
6620 cs.db = ds.db = 0;
6621 cs.s = ds.s = 1;
6622 cs.l = ds.l = 0;
6623 cs.g = ds.g = 1;
6624 cs.avl = ds.avl = 0;
6625 cs.present = ds.present = 1;
6626 cs.unusable = ds.unusable = 0;
6627 cs.padding = ds.padding = 0;
6628
6629 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
6630 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
6631 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
6632 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
6633 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
6634 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
6635
6636 if (guest_cpuid_has_longmode(vcpu))
6637 kvm_x86_ops->set_efer(vcpu, 0);
6638
6639 kvm_update_cpuid(vcpu);
6640 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006641}
6642
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006643static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006644{
6645 vcpu->arch.smi_pending = true;
6646 kvm_make_request(KVM_REQ_EVENT, vcpu);
6647}
6648
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01006649void kvm_make_scan_ioapic_request(struct kvm *kvm)
6650{
6651 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
6652}
6653
Yang Zhang3d81bc72013-04-11 19:25:13 +08006654static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006655{
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006656 u64 eoi_exit_bitmap[4];
6657
Yang Zhang3d81bc72013-04-11 19:25:13 +08006658 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
6659 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006660
Andrey Smetanin63086302015-11-10 15:36:32 +03006661 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006662
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07006663 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03006664 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006665 else {
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006666 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
Andrey Smetanind62caab2015-11-10 15:36:33 +03006667 kvm_x86_ops->sync_pir_to_irr(vcpu);
Andrey Smetanin63086302015-11-10 15:36:32 +03006668 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006669 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006670 bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors,
6671 vcpu_to_synic(vcpu)->vec_bitmap, 256);
6672 kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006673}
6674
Radim Krčmářa70656b2014-09-18 12:38:36 -04006675static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu)
6676{
6677 ++vcpu->stat.tlb_flush;
6678 kvm_x86_ops->tlb_flush(vcpu);
6679}
6680
Tang Chen4256f432014-09-24 15:57:54 +08006681void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
6682{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006683 struct page *page = NULL;
6684
Paolo Bonzini35754c92015-07-29 12:05:37 +02006685 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02006686 return;
6687
Tang Chen4256f432014-09-24 15:57:54 +08006688 if (!kvm_x86_ops->set_apic_access_page_addr)
6689 return;
6690
Tang Chenc24ae0d2014-09-24 15:57:58 +08006691 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Andrea Arcangelie8fd5e92015-05-08 14:32:56 +02006692 if (is_error_page(page))
6693 return;
Tang Chenc24ae0d2014-09-24 15:57:58 +08006694 kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page));
6695
6696 /*
6697 * Do not pin apic access page in memory, the MMU notifier
6698 * will call us again if it is migrated or swapped out.
6699 */
6700 put_page(page);
Tang Chen4256f432014-09-24 15:57:54 +08006701}
6702EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page);
6703
Tang Chenfe715572014-09-24 15:57:57 +08006704void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
6705 unsigned long address)
6706{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006707 /*
6708 * The physical address of apic access page is stored in the VMCS.
6709 * Update it when it becomes invalid.
6710 */
6711 if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT))
6712 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
Tang Chenfe715572014-09-24 15:57:57 +08006713}
6714
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006715/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01006716 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006717 * exiting to the userspace. Otherwise, the value will be returned to the
6718 * userspace.
6719 */
Avi Kivity851ba692009-08-24 11:10:17 +03006720static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006721{
6722 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08006723 bool req_int_win =
6724 dm_request_for_irq_injection(vcpu) &&
6725 kvm_cpu_accept_dm_intr(vcpu);
6726
Jan Kiszka730dca42013-04-28 10:50:52 +02006727 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006728
Avi Kivity3e007502010-06-23 14:26:18 +03006729 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03006730 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05006731 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006732 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03006733 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006734 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
6735 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03006736 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
6737 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10006738 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
6739 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10006740 if (unlikely(r))
6741 goto out;
6742 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006743 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03006744 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006745 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Radim Krčmářa70656b2014-09-18 12:38:36 -04006746 kvm_vcpu_flush_tlb(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006747 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006748 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02006749 r = 0;
6750 goto out;
6751 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006752 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006753 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01006754 r = 0;
6755 goto out;
6756 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006757 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
6758 /* Page is swapped out. Do synthetic halt */
6759 vcpu->arch.apf.halted = true;
6760 r = 1;
6761 goto out;
6762 }
Glauber Costac9aaa892011-07-11 15:28:14 -04006763 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
6764 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006765 if (kvm_check_request(KVM_REQ_SMI, vcpu))
6766 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006767 if (kvm_check_request(KVM_REQ_NMI, vcpu))
6768 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006769 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006770 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006771 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006772 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07006773 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
6774 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
6775 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03006776 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07006777 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
6778 vcpu->run->eoi.vector =
6779 vcpu->arch.pending_ioapic_eoi;
6780 r = 0;
6781 goto out;
6782 }
6783 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08006784 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
6785 vcpu_scan_ioapic(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08006786 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
6787 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03006788 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
6789 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6790 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
6791 r = 0;
6792 goto out;
6793 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03006794 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
6795 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6796 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
6797 r = 0;
6798 goto out;
6799 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03006800 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
6801 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
6802 vcpu->run->hyperv = vcpu->arch.hyperv.exit;
6803 r = 0;
6804 goto out;
6805 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03006806
6807 /*
6808 * KVM_REQ_HV_STIMER has to be processed after
6809 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
6810 * depend on the guest clock being up-to-date
6811 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03006812 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
6813 kvm_hv_process_stimers(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02006814 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006815
Avi Kivityb463a6f2010-07-20 15:06:17 +03006816 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01006817 ++vcpu->stat.req_event;
Jan Kiszka66450a22013-03-13 12:42:34 +01006818 kvm_apic_accept_events(vcpu);
6819 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
6820 r = 1;
6821 goto out;
6822 }
6823
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006824 if (inject_pending_event(vcpu, req_int_win) != 0)
6825 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006826 else {
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006827 /* Enable NMI/IRQ window open exits if needed.
6828 *
6829 * SMIs have two cases: 1) they can be nested, and
6830 * then there is nothing to do here because RSM will
6831 * cause a vmexit anyway; 2) or the SMI can be pending
6832 * because inject_pending_event has completed the
6833 * injection of an IRQ or NMI from the previous vmexit,
6834 * and then we request an immediate exit to inject the SMI.
6835 */
6836 if (vcpu->arch.smi_pending && !is_smm(vcpu))
6837 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006838 if (vcpu->arch.nmi_pending)
6839 kvm_x86_ops->enable_nmi_window(vcpu);
6840 if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win)
6841 kvm_x86_ops->enable_irq_window(vcpu);
6842 }
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03006843
Avi Kivity3842d132010-07-27 12:30:24 +03006844 if (kvm_lapic_enabled(vcpu)) {
6845 update_cr8_intercept(vcpu);
6846 kvm_lapic_sync_to_vapic(vcpu);
6847 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006848 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006849
Avi Kivityd8368af2012-05-14 18:07:56 +03006850 r = kvm_mmu_reload(vcpu);
6851 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006852 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03006853 }
6854
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006855 preempt_disable();
6856
6857 kvm_x86_ops->prepare_guest_switch(vcpu);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006858 kvm_load_guest_fpu(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006859
6860 /*
6861 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
6862 * IPI are then delayed after guest entry, which ensures that they
6863 * result in virtual interrupt delivery.
6864 */
6865 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006866 vcpu->mode = IN_GUEST_MODE;
6867
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006868 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6869
Lan Tianyu0f127d12016-03-13 11:10:29 +08006870 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006871 * 1) We should set ->mode before checking ->requests. Please see
6872 * the comment in kvm_make_all_cpus_request.
6873 *
6874 * 2) For APICv, we should set ->mode before checking PIR.ON. This
6875 * pairs with the memory barrier implicit in pi_test_and_set_on
6876 * (see vmx_deliver_posted_interrupt).
6877 *
6878 * 3) This also orders the write to mode from any reads to the page
6879 * tables done while the VCPU is running. Please see the comment
6880 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006881 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006882 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006883
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006884 /*
6885 * This handles the case where a posted interrupt was
6886 * notified with kvm_vcpu_kick.
6887 */
6888 if (kvm_lapic_enabled(vcpu)) {
6889 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
6890 kvm_x86_ops->sync_pir_to_irr(vcpu);
6891 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006892
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006893 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006894 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006895 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006896 smp_wmb();
6897 local_irq_enable();
6898 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006899 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006900 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006901 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006902 }
6903
David Matlackfc5b7f32016-03-30 12:24:47 -07006904 kvm_load_guest_xcr0(vcpu);
6905
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006906 if (req_immediate_exit) {
6907 kvm_make_request(KVM_REQ_EVENT, vcpu);
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006908 smp_send_reschedule(vcpu->cpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006909 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006910
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01006911 trace_kvm_entry(vcpu->vcpu_id);
6912 wait_lapic_expire(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02006913 guest_enter_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006914
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006915 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006916 set_debugreg(0, 7);
6917 set_debugreg(vcpu->arch.eff_db[0], 0);
6918 set_debugreg(vcpu->arch.eff_db[1], 1);
6919 set_debugreg(vcpu->arch.eff_db[2], 2);
6920 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006921 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03006922 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006923 }
6924
Avi Kivity851ba692009-08-24 11:10:17 +03006925 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006926
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006927 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006928 * Do this here before restoring debug registers on the host. And
6929 * since we do this before handling the vmexit, a DR access vmexit
6930 * can (a) read the correct value of the debug registers, (b) set
6931 * KVM_DEBUGREG_WONT_EXIT again.
6932 */
6933 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006934 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
6935 kvm_x86_ops->sync_dirty_debug_regs(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01006936 kvm_update_dr0123(vcpu);
6937 kvm_update_dr6(vcpu);
6938 kvm_update_dr7(vcpu);
6939 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006940 }
6941
6942 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006943 * If the guest has used debug registers, at least dr7
6944 * will be disabled while returning to the host.
6945 * If we don't have active breakpoints in the host, we don't
6946 * care about the messed up debug address registers. But if
6947 * we have some of them active, restore the old state.
6948 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01006949 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006950 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006951
Haozhong Zhang4ba76532015-10-20 15:39:07 +08006952 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10006953
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006954 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03006955 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006956
David Matlackfc5b7f32016-03-30 12:24:47 -07006957 kvm_put_guest_xcr0(vcpu);
6958
Yang Zhanga547c6d2013-04-11 19:25:10 +08006959 kvm_x86_ops->handle_external_intr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006960
6961 ++vcpu->stat.exits;
6962
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006963 guest_exit_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006964
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006965 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006966 preempt_enable();
6967
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006968 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006969
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006970 /*
6971 * Profile KVM exit RIPs:
6972 */
6973 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006974 unsigned long rip = kvm_rip_read(vcpu);
6975 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006976 }
6977
Zachary Amsdencc578282012-02-03 15:43:50 -02006978 if (unlikely(vcpu->arch.tsc_always_catchup))
6979 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02006980
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03006981 if (vcpu->arch.apic_attention)
6982 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02006983
Avi Kivity851ba692009-08-24 11:10:17 +03006984 r = kvm_x86_ops->handle_exit(vcpu);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006985 return r;
6986
6987cancel_injection:
6988 kvm_x86_ops->cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03006989 if (unlikely(vcpu->arch.apic_attention))
6990 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006991out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03006992 return r;
6993}
6994
Paolo Bonzini362c6982015-02-06 12:48:04 +01006995static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
6996{
Feng Wubf9f6ac2015-09-18 22:29:55 +08006997 if (!kvm_arch_vcpu_runnable(vcpu) &&
6998 (!kvm_x86_ops->pre_block || kvm_x86_ops->pre_block(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006999 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
7000 kvm_vcpu_block(vcpu);
7001 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007002
7003 if (kvm_x86_ops->post_block)
7004 kvm_x86_ops->post_block(vcpu);
7005
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01007006 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
7007 return 1;
7008 }
Gleb Natapov09cec752009-03-23 15:11:44 +02007009
Paolo Bonzini362c6982015-02-06 12:48:04 +01007010 kvm_apic_accept_events(vcpu);
7011 switch(vcpu->arch.mp_state) {
7012 case KVM_MP_STATE_HALTED:
7013 vcpu->arch.pv.pv_unhalted = false;
7014 vcpu->arch.mp_state =
7015 KVM_MP_STATE_RUNNABLE;
7016 case KVM_MP_STATE_RUNNABLE:
7017 vcpu->arch.apf.halted = false;
7018 break;
7019 case KVM_MP_STATE_INIT_RECEIVED:
7020 break;
7021 default:
7022 return -EINTR;
7023 break;
7024 }
7025 return 1;
7026}
7027
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02007028static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
7029{
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01007030 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events)
7031 kvm_x86_ops->check_nested_events(vcpu, false);
7032
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02007033 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
7034 !vcpu->arch.apf.halted);
7035}
7036
Paolo Bonzini362c6982015-02-06 12:48:04 +01007037static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03007038{
7039 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007040 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03007041
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007042 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007043
Paolo Bonzini362c6982015-02-06 12:48:04 +01007044 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02007045 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03007046 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007047 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01007048 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007049 }
7050
Gleb Natapov09cec752009-03-23 15:11:44 +02007051 if (r <= 0)
7052 break;
7053
7054 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
7055 if (kvm_cpu_has_pending_timer(vcpu))
7056 kvm_inject_pending_timer_irqs(vcpu);
7057
Matt Gingell782d4222015-11-16 15:26:00 -08007058 if (dm_request_for_irq_injection(vcpu) &&
7059 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02007060 r = 0;
7061 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02007062 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01007063 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02007064 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02007065
7066 kvm_check_async_pf_completion(vcpu);
7067
Gleb Natapov09cec752009-03-23 15:11:44 +02007068 if (signal_pending(current)) {
7069 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03007070 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02007071 ++vcpu->stat.signal_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01007072 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02007073 }
7074 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007075 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Takuya Yoshikawac08ac062013-12-13 15:07:21 +09007076 cond_resched();
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007077 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007078 }
7079 }
7080
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007081 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007082
7083 return r;
7084}
7085
Gleb Natapov716d51a2012-09-03 15:24:26 +03007086static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
7087{
7088 int r;
7089 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
7090 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
7091 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
7092 if (r != EMULATE_DONE)
7093 return 0;
7094 return 1;
7095}
7096
7097static int complete_emulated_pio(struct kvm_vcpu *vcpu)
7098{
7099 BUG_ON(!vcpu->arch.pio.count);
7100
7101 return complete_emulated_io(vcpu);
7102}
7103
Avi Kivityf78146b2012-04-18 19:22:47 +03007104/*
7105 * Implements the following, as a state machine:
7106 *
7107 * read:
7108 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007109 * for each mmio piece in the fragment
7110 * write gpa, len
7111 * exit
7112 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03007113 * execute insn
7114 *
7115 * write:
7116 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007117 * for each mmio piece in the fragment
7118 * write gpa, len
7119 * copy data
7120 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03007121 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03007122static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02007123{
7124 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03007125 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007126 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02007127
Gleb Natapov716d51a2012-09-03 15:24:26 +03007128 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02007129
Gleb Natapov716d51a2012-09-03 15:24:26 +03007130 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007131 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
7132 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03007133 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007134 memcpy(frag->data, run->mmio.data, len);
7135
7136 if (frag->len <= 8) {
7137 /* Switch to the next fragment. */
7138 frag++;
7139 vcpu->mmio_cur_fragment++;
7140 } else {
7141 /* Go forward to the next mmio piece. */
7142 frag->data += len;
7143 frag->gpa += len;
7144 frag->len -= len;
7145 }
7146
Andrew Honiga08d3b32014-02-27 19:35:14 +01007147 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03007148 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02007149
7150 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02007151 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03007152 return 1;
7153 vcpu->mmio_read_completed = 1;
7154 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02007155 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007156
Gleb Natapov716d51a2012-09-03 15:24:26 +03007157 run->exit_reason = KVM_EXIT_MMIO;
7158 run->mmio.phys_addr = frag->gpa;
7159 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007160 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
7161 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03007162 run->mmio.is_write = vcpu->mmio_is_write;
7163 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
7164 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02007165}
7166
Gleb Natapov716d51a2012-09-03 15:24:26 +03007167
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007168int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
7169{
Ingo Molnarc5bedc62015-04-23 12:49:20 +02007170 struct fpu *fpu = &current->thread.fpu;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007171 int r;
7172 sigset_t sigsaved;
7173
Ingo Molnarc4d72e22015-04-27 07:18:17 +02007174 fpu__activate_curr(fpu);
Avi Kivitye5c30142011-01-11 12:15:54 +02007175
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007176 if (vcpu->sigset_active)
7177 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
7178
Avi Kivityac9f6dc2008-07-06 15:48:31 +03007179 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
7180 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01007181 kvm_apic_accept_events(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007182 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03007183 r = -EAGAIN;
7184 goto out;
7185 }
7186
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007187 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02007188 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007189 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
7190 r = -EINVAL;
7191 goto out;
7192 }
7193 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007194
Gleb Natapov716d51a2012-09-03 15:24:26 +03007195 if (unlikely(vcpu->arch.complete_userspace_io)) {
7196 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
7197 vcpu->arch.complete_userspace_io = NULL;
7198 r = cui(vcpu);
7199 if (r <= 0)
7200 goto out;
7201 } else
7202 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02007203
Paolo Bonzini460df4c2017-02-08 11:50:15 +01007204 if (kvm_run->immediate_exit)
7205 r = -EINTR;
7206 else
7207 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007208
7209out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03007210 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007211 if (vcpu->sigset_active)
7212 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
7213
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007214 return r;
7215}
7216
7217int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
7218{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007219 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
7220 /*
7221 * We are here if userspace calls get_regs() in the middle of
7222 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08007223 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007224 * that usually, but some bad designed PV devices (vmware
7225 * backdoor interface) need this to work
7226 */
Avi Kivitydd856ef2012-08-27 23:46:17 +03007227 emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007228 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
7229 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007230 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
7231 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
7232 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
7233 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
7234 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
7235 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
7236 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
7237 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007238#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007239 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
7240 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
7241 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
7242 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
7243 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
7244 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
7245 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
7246 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007247#endif
7248
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007249 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02007250 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007251
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007252 return 0;
7253}
7254
7255int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
7256{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007257 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
7258 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
7259
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007260 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
7261 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
7262 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
7263 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
7264 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
7265 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
7266 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
7267 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007268#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007269 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
7270 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
7271 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
7272 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
7273 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
7274 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
7275 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
7276 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007277#endif
7278
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007279 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02007280 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007281
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02007282 vcpu->arch.exception.pending = false;
7283
Avi Kivity3842d132010-07-27 12:30:24 +03007284 kvm_make_request(KVM_REQ_EVENT, vcpu);
7285
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007286 return 0;
7287}
7288
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007289void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
7290{
7291 struct kvm_segment cs;
7292
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007293 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007294 *db = cs.db;
7295 *l = cs.l;
7296}
7297EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
7298
7299int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
7300 struct kvm_sregs *sregs)
7301{
Gleb Natapov89a27f42010-02-16 10:51:48 +02007302 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007303
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007304 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7305 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7306 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7307 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7308 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7309 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007310
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007311 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7312 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007313
7314 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007315 sregs->idt.limit = dt.size;
7316 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007317 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007318 sregs->gdt.limit = dt.size;
7319 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007320
Avi Kivity4d4ec082009-12-29 18:07:30 +02007321 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007322 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007323 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02007324 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007325 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02007326 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007327 sregs->apic_base = kvm_get_apic_base(vcpu);
7328
Gleb Natapov923c61b2009-05-11 13:35:48 +03007329 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007330
Gleb Natapov36752c92009-05-11 13:35:53 +03007331 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03007332 set_bit(vcpu->arch.interrupt.nr,
7333 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03007334
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007335 return 0;
7336}
7337
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007338int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
7339 struct kvm_mp_state *mp_state)
7340{
Jan Kiszka66450a22013-03-13 12:42:34 +01007341 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307342 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
7343 vcpu->arch.pv.pv_unhalted)
7344 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
7345 else
7346 mp_state->mp_state = vcpu->arch.mp_state;
7347
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007348 return 0;
7349}
7350
7351int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
7352 struct kvm_mp_state *mp_state)
7353{
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007354 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01007355 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
7356 return -EINVAL;
7357
7358 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
7359 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
7360 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
7361 } else
7362 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03007363 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007364 return 0;
7365}
7366
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007367int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
7368 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007369{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007370 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007371 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007372
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007373 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007374
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007375 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007376 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02007377
Gleb Natapovc6975182010-02-18 12:15:01 +02007378 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03007379 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02007380
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007381 kvm_rip_write(vcpu, ctxt->eip);
7382 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03007383 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03007384 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02007385}
7386EXPORT_SYMBOL_GPL(kvm_task_switch);
7387
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007388int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
7389 struct kvm_sregs *sregs)
7390{
Jan Kiszka58cb6282014-01-24 16:48:44 +01007391 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007392 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007393 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02007394 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007395
Petr Matousek6d1068b2012-11-06 19:24:07 +01007396 if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE))
7397 return -EINVAL;
7398
Gleb Natapov89a27f42010-02-16 10:51:48 +02007399 dt.size = sregs->idt.limit;
7400 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007401 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007402 dt.size = sregs->gdt.limit;
7403 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007404 kvm_x86_ops->set_gdt(vcpu, &dt);
7405
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007406 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007407 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02007408 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02007409 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007410
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007411 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007412
Avi Kivityf6801df2010-01-21 15:31:50 +02007413 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007414 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Jan Kiszka58cb6282014-01-24 16:48:44 +01007415 apic_base_msr.data = sregs->apic_base;
7416 apic_base_msr.host_initiated = true;
7417 kvm_set_apic_base(vcpu, &apic_base_msr);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007418
Avi Kivity4d4ec082009-12-29 18:07:30 +02007419 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007420 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00007421 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007422
Avi Kivityfc78f512009-12-07 12:16:48 +02007423 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007424 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Huaitong Hanb9baba82016-03-22 16:51:21 +08007425 if (sregs->cr4 & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +02007426 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007427
7428 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02007429 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02007430 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02007431 mmu_reset_needed = 1;
7432 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007433 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007434
7435 if (mmu_reset_needed)
7436 kvm_mmu_reset_context(vcpu);
7437
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03007438 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03007439 pending_vec = find_first_bit(
7440 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
7441 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007442 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03007443 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007444 }
7445
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007446 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7447 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7448 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7449 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7450 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7451 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007452
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007453 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7454 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007455
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03007456 update_cr8_intercept(vcpu);
7457
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007458 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03007459 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007460 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02007461 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007462 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
7463
Avi Kivity3842d132010-07-27 12:30:24 +03007464 kvm_make_request(KVM_REQ_EVENT, vcpu);
7465
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007466 return 0;
7467}
7468
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007469int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
7470 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007471{
Jan Kiszka355be0b2009-10-03 00:31:21 +02007472 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007473 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007474
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007475 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
7476 r = -EBUSY;
7477 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03007478 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007479 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
7480 kvm_queue_exception(vcpu, DB_VECTOR);
7481 else
7482 kvm_queue_exception(vcpu, BP_VECTOR);
7483 }
7484
Jan Kiszka91586a32009-10-05 13:07:21 +02007485 /*
7486 * Read rflags as long as potentially injected trace flags are still
7487 * filtered out.
7488 */
7489 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007490
7491 vcpu->guest_debug = dbg->control;
7492 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
7493 vcpu->guest_debug = 0;
7494
7495 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007496 for (i = 0; i < KVM_NR_DB_REGS; ++i)
7497 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02007498 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007499 } else {
7500 for (i = 0; i < KVM_NR_DB_REGS; i++)
7501 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007502 }
Jan Kiszkac8639012012-09-21 05:42:55 +02007503 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007504
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007505 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
7506 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
7507 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007508
Jan Kiszka91586a32009-10-05 13:07:21 +02007509 /*
7510 * Trigger an rflags update that will inject or remove the trace
7511 * flags.
7512 */
7513 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007514
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007515 kvm_x86_ops->update_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007516
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007517 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007518
Avi Kivity2122ff52010-05-13 11:25:04 +03007519out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007520
7521 return r;
7522}
7523
7524/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08007525 * Translate a guest virtual address to a guest physical address.
7526 */
7527int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
7528 struct kvm_translation *tr)
7529{
7530 unsigned long vaddr = tr->linear_address;
7531 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007532 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007533
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007534 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02007535 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007536 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08007537 tr->physical_address = gpa;
7538 tr->valid = gpa != UNMAPPED_GVA;
7539 tr->writeable = 1;
7540 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007541
7542 return 0;
7543}
7544
Hollis Blanchardd0752062007-10-31 17:24:25 -05007545int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7546{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007547 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007548 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007549
Hollis Blanchardd0752062007-10-31 17:24:25 -05007550 memcpy(fpu->fpr, fxsave->st_space, 128);
7551 fpu->fcw = fxsave->cwd;
7552 fpu->fsw = fxsave->swd;
7553 fpu->ftwx = fxsave->twd;
7554 fpu->last_opcode = fxsave->fop;
7555 fpu->last_ip = fxsave->rip;
7556 fpu->last_dp = fxsave->rdp;
7557 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
7558
Hollis Blanchardd0752062007-10-31 17:24:25 -05007559 return 0;
7560}
7561
7562int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7563{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007564 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007565 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007566
Hollis Blanchardd0752062007-10-31 17:24:25 -05007567 memcpy(fxsave->st_space, fpu->fpr, 128);
7568 fxsave->cwd = fpu->fcw;
7569 fxsave->swd = fpu->fsw;
7570 fxsave->twd = fpu->ftwx;
7571 fxsave->fop = fpu->last_opcode;
7572 fxsave->rip = fpu->last_ip;
7573 fxsave->rdp = fpu->last_dp;
7574 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
7575
Hollis Blanchardd0752062007-10-31 17:24:25 -05007576 return 0;
7577}
7578
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007579static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007580{
Ingo Molnarbf935b02015-04-30 10:23:42 +02007581 fpstate_init(&vcpu->arch.guest_fpu.state);
Borislav Petkov782511b2016-04-04 22:25:03 +02007582 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar7366ed72015-04-27 04:19:39 +02007583 vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007584 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007585
Dexuan Cui2acf9232010-06-10 11:27:12 +08007586 /*
7587 * Ensure guest xcr0 is valid for loading
7588 */
Dave Hansend91cab72015-09-02 16:31:26 -07007589 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +08007590
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007591 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007592}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007593
7594void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
7595{
Avi Kivity2608d7a2010-01-21 15:31:45 +02007596 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007597 return;
7598
Dexuan Cui2acf9232010-06-10 11:27:12 +08007599 /*
7600 * Restore all possible states in the guest,
7601 * and assume host would use all available bits.
7602 * Guest xcr0 would be loaded later.
7603 */
Hollis Blanchardd0752062007-10-31 17:24:25 -05007604 vcpu->guest_fpu_loaded = 1;
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007605 __kernel_fpu_begin();
Ingo Molnar003e2e82015-05-25 11:59:35 +02007606 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state);
Avi Kivity0c048512010-01-21 15:31:52 +02007607 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007608}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007609
7610void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
7611{
Rik van Riel3d42de22016-10-04 20:34:35 -04007612 if (!vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007613 return;
7614
7615 vcpu->guest_fpu_loaded = 0;
Ingo Molnar4f836342015-04-27 02:53:16 +02007616 copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007617 __kernel_fpu_end();
Avi Kivityf096ed82007-11-18 13:54:33 +02007618 ++vcpu->stat.fpu_reload;
Avi Kivity0c048512010-01-21 15:31:52 +02007619 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007620}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007621
7622void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
7623{
Ido Yarivbd768e12016-10-21 12:39:57 -04007624 void *wbinvd_dirty_mask = vcpu->arch.wbinvd_dirty_mask;
7625
Glauber Costa12f9a482011-02-01 14:16:40 -05007626 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01007627
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007628 kvm_x86_ops->vcpu_free(vcpu);
Ido Yarivbd768e12016-10-21 12:39:57 -04007629 free_cpumask_var(wbinvd_dirty_mask);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007630}
7631
7632struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
7633 unsigned int id)
7634{
Liang Lic447e762015-05-21 04:41:25 +08007635 struct kvm_vcpu *vcpu;
7636
Zachary Amsden6755bae2010-08-19 22:07:22 -10007637 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
7638 printk_once(KERN_WARNING
7639 "kvm: SMP vm created on host with unstable TSC; "
7640 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08007641
7642 vcpu = kvm_x86_ops->vcpu_create(kvm, id);
7643
Liang Lic447e762015-05-21 04:41:25 +08007644 return vcpu;
Avi Kivity26e52152007-11-20 15:30:24 +02007645}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007646
Avi Kivity26e52152007-11-20 15:30:24 +02007647int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
7648{
7649 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007650
Xiao Guangrong19efffa2015-06-15 16:55:31 +08007651 kvm_vcpu_mtrr_init(vcpu);
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007652 r = vcpu_load(vcpu);
7653 if (r)
7654 return r;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007655 kvm_vcpu_reset(vcpu, false);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02007656 kvm_mmu_setup(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007657 vcpu_put(vcpu);
Avi Kivity26e52152007-11-20 15:30:24 +02007658 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007659}
7660
Dominik Dingel31928aa2014-12-04 15:47:07 +01007661void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007662{
Will Auld8fe8ab42012-11-29 12:42:12 -08007663 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01007664 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007665
Dominik Dingel31928aa2014-12-04 15:47:07 +01007666 if (vcpu_load(vcpu))
7667 return;
Will Auld8fe8ab42012-11-29 12:42:12 -08007668 msr.data = 0x0;
7669 msr.index = MSR_IA32_TSC;
7670 msr.host_initiated = true;
7671 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007672 vcpu_put(vcpu);
7673
Marcelo Tosatti630994b2015-05-12 22:42:04 -03007674 if (!kvmclock_periodic_sync)
7675 return;
7676
Andrew Jones332967a2014-02-28 12:52:55 +01007677 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
7678 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007679}
7680
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06007681void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007682{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007683 int r;
Gleb Natapov344d9582010-10-14 11:22:50 +02007684 vcpu->arch.apf.msr_val = 0;
7685
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007686 r = vcpu_load(vcpu);
7687 BUG_ON(r);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007688 kvm_mmu_unload(vcpu);
7689 vcpu_put(vcpu);
7690
7691 kvm_x86_ops->vcpu_free(vcpu);
7692}
7693
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007694void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007695{
Paolo Bonzinie69fab52015-06-04 10:44:44 +02007696 vcpu->arch.hflags = 0;
7697
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007698 vcpu->arch.smi_pending = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007699 atomic_set(&vcpu->arch.nmi_queued, 0);
7700 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007701 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03007702 kvm_clear_interrupt_queue(vcpu);
7703 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007704
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007705 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03007706 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03007707 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007708 kvm_update_dr6(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007709 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02007710 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007711
Nadav Amit11190222015-04-02 03:10:38 +03007712 vcpu->arch.cr2 = 0;
7713
Avi Kivity3842d132010-07-27 12:30:24 +03007714 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02007715 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04007716 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03007717
Glauber Costa12f9a482011-02-01 14:16:40 -05007718 kvmclock_reset(vcpu);
7719
Gleb Natapovaf585b92010-10-14 11:22:46 +02007720 kvm_clear_async_pf_completion_queue(vcpu);
7721 kvm_async_pf_hash_reset(vcpu);
7722 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007723
Paolo Bonzini64d60672015-05-07 11:36:11 +02007724 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007725 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007726 vcpu->arch.smbase = 0x30000;
7727 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02007728
Julian Stecklina66f7b722012-12-05 15:26:19 +01007729 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
7730 vcpu->arch.regs_avail = ~0;
7731 vcpu->arch.regs_dirty = ~0;
7732
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007733 kvm_x86_ops->vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007734}
7735
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01007736void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01007737{
7738 struct kvm_segment cs;
7739
7740 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
7741 cs.selector = vector << 8;
7742 cs.base = vector << 12;
7743 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
7744 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007745}
7746
Radim Krčmář13a34e02014-08-28 15:13:03 +02007747int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007748{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10007749 struct kvm *kvm;
7750 struct kvm_vcpu *vcpu;
7751 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007752 int ret;
7753 u64 local_tsc;
7754 u64 max_tsc = 0;
7755 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03007756
7757 kvm_shared_msr_cpu_online();
Radim Krčmář13a34e02014-08-28 15:13:03 +02007758 ret = kvm_x86_ops->hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007759 if (ret != 0)
7760 return ret;
7761
Andy Lutomirski4ea16362015-06-25 18:44:07 +02007762 local_tsc = rdtsc();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007763 stable = !check_tsc_unstable();
7764 list_for_each_entry(kvm, &vm_list, vm_list) {
7765 kvm_for_each_vcpu(i, vcpu, kvm) {
7766 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007767 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007768 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
7769 backwards_tsc = true;
7770 if (vcpu->arch.last_host_tsc > max_tsc)
7771 max_tsc = vcpu->arch.last_host_tsc;
7772 }
7773 }
7774 }
7775
7776 /*
7777 * Sometimes, even reliable TSCs go backwards. This happens on
7778 * platforms that reset TSC during suspend or hibernate actions, but
7779 * maintain synchronization. We must compensate. Fortunately, we can
7780 * detect that condition here, which happens early in CPU bringup,
7781 * before any KVM threads can be running. Unfortunately, we can't
7782 * bring the TSCs fully up to date with real time, as we aren't yet far
7783 * enough into CPU bringup that we know how much real time has actually
Paolo Bonzini108b2492016-09-01 14:21:03 +02007784 * elapsed; our helper function, ktime_get_boot_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007785 * variables that haven't been updated yet.
7786 *
7787 * So we simply find the maximum observed TSC above, then record the
7788 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
7789 * the adjustment will be applied. Note that we accumulate
7790 * adjustments, in case multiple suspend cycles happen before some VCPU
7791 * gets a chance to run again. In the event that no KVM threads get a
7792 * chance to run, we will miss the entire elapsed period, as we'll have
7793 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
7794 * loose cycle time. This isn't too big a deal, since the loss will be
7795 * uniform across all VCPUs (not to mention the scenario is extremely
7796 * unlikely). It is possible that a second hibernate recovery happens
7797 * much faster than a first, causing the observed TSC here to be
7798 * smaller; this would require additional padding adjustment, which is
7799 * why we set last_host_tsc to the local tsc observed here.
7800 *
7801 * N.B. - this code below runs only on platforms with reliable TSC,
7802 * as that is the only way backwards_tsc is set above. Also note
7803 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
7804 * have the same delta_cyc adjustment applied if backwards_tsc
7805 * is detected. Note further, this adjustment is only done once,
7806 * as we reset last_host_tsc on all VCPUs to stop this from being
7807 * called multiple times (one for each physical CPU bringup).
7808 *
Guo Chao4a969982012-06-28 15:17:27 +08007809 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007810 * will be compensated by the logic in vcpu_load, which sets the TSC to
7811 * catchup mode. This will catchup all VCPUs to real time, but cannot
7812 * guarantee that they stay in perfect synchronization.
7813 */
7814 if (backwards_tsc) {
7815 u64 delta_cyc = max_tsc - local_tsc;
Marcelo Tosatti16a96022014-05-14 12:43:24 -03007816 backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007817 list_for_each_entry(kvm, &vm_list, vm_list) {
7818 kvm_for_each_vcpu(i, vcpu, kvm) {
7819 vcpu->arch.tsc_offset_adjustment += delta_cyc;
7820 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007821 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007822 }
7823
7824 /*
7825 * We have to disable TSC offset matching.. if you were
7826 * booting a VM while issuing an S4 host suspend....
7827 * you may have some problem. Solving this issue is
7828 * left as an exercise to the reader.
7829 */
7830 kvm->arch.last_tsc_nsec = 0;
7831 kvm->arch.last_tsc_write = 0;
7832 }
7833
7834 }
7835 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007836}
7837
Radim Krčmář13a34e02014-08-28 15:13:03 +02007838void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007839{
Radim Krčmář13a34e02014-08-28 15:13:03 +02007840 kvm_x86_ops->hardware_disable();
7841 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007842}
7843
7844int kvm_arch_hardware_setup(void)
7845{
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007846 int r;
7847
7848 r = kvm_x86_ops->hardware_setup();
7849 if (r != 0)
7850 return r;
7851
Haozhong Zhang35181e82015-10-20 15:39:03 +08007852 if (kvm_has_tsc_control) {
7853 /*
7854 * Make sure the user can only configure tsc_khz values that
7855 * fit into a signed integer.
7856 * A min value is not calculated needed because it will always
7857 * be 1 on all machines.
7858 */
7859 u64 max = min(0x7fffffffULL,
7860 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
7861 kvm_max_guest_tsc_khz = max;
7862
Haozhong Zhangad721882015-10-20 15:39:02 +08007863 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +08007864 }
Haozhong Zhangad721882015-10-20 15:39:02 +08007865
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007866 kvm_init_msr_list();
7867 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007868}
7869
7870void kvm_arch_hardware_unsetup(void)
7871{
7872 kvm_x86_ops->hardware_unsetup();
7873}
7874
7875void kvm_arch_check_processor_compat(void *rtn)
7876{
7877 kvm_x86_ops->check_processor_compatibility(rtn);
7878}
7879
Paolo Bonzinid71ba782015-07-29 11:56:48 +02007880bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
7881{
7882 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
7883}
7884EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
7885
7886bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
7887{
7888 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
7889}
7890
Gleb Natapov54e98182012-08-05 15:58:32 +03007891struct static_key kvm_no_apic_vcpu __read_mostly;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007892EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +03007893
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007894int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
7895{
7896 struct page *page;
7897 struct kvm *kvm;
7898 int r;
7899
7900 BUG_ON(vcpu->kvm == NULL);
7901 kvm = vcpu->kvm;
7902
Andrey Smetanind62caab2015-11-10 15:36:33 +03007903 vcpu->arch.apicv_active = kvm_x86_ops->get_enable_apicv();
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307904 vcpu->arch.pv.pv_unhalted = false;
Avi Kivity9aabc88f2010-07-29 15:11:50 +03007905 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Nadav Amit58d269d2015-04-02 03:10:36 +03007906 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03007907 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007908 else
Avi Kivitya4535292008-04-13 17:54:35 +03007909 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007910
7911 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
7912 if (!page) {
7913 r = -ENOMEM;
7914 goto fail;
7915 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007916 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007917
Zachary Amsdencc578282012-02-03 15:43:50 -02007918 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10007919
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007920 r = kvm_mmu_create(vcpu);
7921 if (r < 0)
7922 goto fail_free_pio_data;
7923
7924 if (irqchip_in_kernel(kvm)) {
7925 r = kvm_create_lapic(vcpu);
7926 if (r < 0)
7927 goto fail_mmu_destroy;
Gleb Natapov54e98182012-08-05 15:58:32 +03007928 } else
7929 static_key_slow_inc(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007930
Huang Ying890ca9a2009-05-11 16:48:15 +08007931 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
7932 GFP_KERNEL);
7933 if (!vcpu->arch.mce_banks) {
7934 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08007935 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08007936 }
7937 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
7938
Wei Yongjunf1797352013-04-18 07:41:00 +08007939 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) {
7940 r = -ENOMEM;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007941 goto fail_free_mce_banks;
Wei Yongjunf1797352013-04-18 07:41:00 +08007942 }
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007943
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007944 fx_init(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01007945
Will Auldba904632012-11-29 12:42:50 -08007946 vcpu->arch.ia32_tsc_adjust_msr = 0x0;
Andy Honig0b794592013-02-20 14:48:10 -08007947 vcpu->arch.pv_time_enabled = false;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007948
7949 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +02007950 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007951
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +03007952 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
7953
Radim Krčmář74545702015-04-27 15:11:25 +02007954 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
7955
Gleb Natapovaf585b92010-10-14 11:22:46 +02007956 kvm_async_pf_hash_reset(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007957 kvm_pmu_init(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007958
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02007959 vcpu->arch.pending_external_vector = -1;
7960
Andrey Smetanin5c9194122015-11-10 15:36:34 +03007961 kvm_hv_vcpu_init(vcpu);
7962
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007963 return 0;
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007964
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007965fail_free_mce_banks:
7966 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08007967fail_free_lapic:
7968 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007969fail_mmu_destroy:
7970 kvm_mmu_destroy(vcpu);
7971fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007972 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007973fail:
7974 return r;
7975}
7976
7977void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
7978{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007979 int idx;
7980
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03007981 kvm_hv_vcpu_uninit(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007982 kvm_pmu_destroy(vcpu);
Wei Yongjun36cb93f2010-01-22 14:18:47 +08007983 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007984 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007985 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007986 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007987 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007988 free_page((unsigned long)vcpu->arch.pio_data);
Paolo Bonzini35754c92015-07-29 12:05:37 +02007989 if (!lapic_in_kernel(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03007990 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007991}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007992
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007993void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
7994{
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007995 kvm_x86_ops->sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007996}
7997
Carsten Ottee08b9632012-01-04 10:25:20 +01007998int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007999{
Carsten Ottee08b9632012-01-04 10:25:20 +01008000 if (type)
8001 return -EINVAL;
8002
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01008003 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08008004 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Xiao Guangrong365c8862013-05-31 08:36:29 +08008005 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03008006 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06008007 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008008
Sheng Yang5550af42008-10-15 20:15:06 +08008009 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
8010 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06008011 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
8012 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
8013 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08008014
Jan Kiszka038f8c12011-02-04 10:49:11 +01008015 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03008016 mutex_init(&kvm->arch.apic_map_lock);
Paolo Bonzini3f5ad8b2016-12-12 10:12:53 +01008017 mutex_init(&kvm->arch.hyperv.hv_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008018 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
8019
Paolo Bonzini108b2492016-09-01 14:21:03 +02008020 kvm->arch.kvmclock_offset = -ktime_get_boot_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02008021 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01008022
Andrew Jones7e44e442014-02-28 12:52:54 +01008023 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01008024 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01008025
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08008026 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +08008027 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08008028
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05008029 if (kvm_x86_ops->vm_init)
8030 return kvm_x86_ops->vm_init(kvm);
8031
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01008032 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008033}
8034
8035static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
8036{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03008037 int r;
8038 r = vcpu_load(vcpu);
8039 BUG_ON(r);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008040 kvm_mmu_unload(vcpu);
8041 vcpu_put(vcpu);
8042}
8043
8044static void kvm_free_vcpus(struct kvm *kvm)
8045{
8046 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008047 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008048
8049 /*
8050 * Unpin any mmu pages first.
8051 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02008052 kvm_for_each_vcpu(i, vcpu, kvm) {
8053 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008054 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008055 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008056 kvm_for_each_vcpu(i, vcpu, kvm)
8057 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008058
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008059 mutex_lock(&kvm->lock);
8060 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
8061 kvm->vcpus[i] = NULL;
8062
8063 atomic_set(&kvm->online_vcpus, 0);
8064 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008065}
8066
Sheng Yangad8ba2c2009-01-06 10:03:02 +08008067void kvm_arch_sync_events(struct kvm *kvm)
8068{
Andrew Jones332967a2014-02-28 12:52:55 +01008069 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01008070 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Sheng Yangba4cef32009-01-06 10:03:03 +08008071 kvm_free_all_assigned_devices(kvm);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08008072 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08008073}
8074
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008075int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008076{
8077 int i, r;
Paolo Bonzini25188b92015-10-14 15:51:08 +02008078 unsigned long hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008079 struct kvm_memslots *slots = kvm_memslots(kvm);
8080 struct kvm_memory_slot *slot, old;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008081
8082 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008083 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
8084 return -EINVAL;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008085
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008086 slot = id_to_memslot(slots, id);
8087 if (size) {
Paolo Bonzinib21629d2016-06-01 14:09:18 +02008088 if (slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008089 return -EEXIST;
8090
8091 /*
8092 * MAP_SHARED to prevent internal slot pages from being moved
8093 * by fork()/COW.
8094 */
8095 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
8096 MAP_SHARED | MAP_ANONYMOUS, 0);
8097 if (IS_ERR((void *)hva))
8098 return PTR_ERR((void *)hva);
8099 } else {
8100 if (!slot->npages)
8101 return 0;
8102
8103 hva = 0;
8104 }
8105
8106 old = *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008107 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008108 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008109
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008110 m.slot = id | (i << 16);
8111 m.flags = 0;
8112 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008113 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008114 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008115 r = __kvm_set_memory_region(kvm, &m);
8116 if (r < 0)
8117 return r;
8118 }
8119
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008120 if (!size) {
8121 r = vm_munmap(old.userspace_addr, old.npages * PAGE_SIZE);
8122 WARN_ON(r < 0);
8123 }
8124
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008125 return 0;
8126}
8127EXPORT_SYMBOL_GPL(__x86_set_memory_region);
8128
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008129int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008130{
8131 int r;
8132
8133 mutex_lock(&kvm->slots_lock);
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008134 r = __x86_set_memory_region(kvm, id, gpa, size);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008135 mutex_unlock(&kvm->slots_lock);
8136
8137 return r;
8138}
8139EXPORT_SYMBOL_GPL(x86_set_memory_region);
8140
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008141void kvm_arch_destroy_vm(struct kvm *kvm)
8142{
Andrew Honig27469d22013-04-18 09:38:14 -07008143 if (current->mm == kvm->mm) {
8144 /*
8145 * Free memory regions allocated on behalf of userspace,
8146 * unless the the memory map has changed due to process exit
8147 * or fd copying.
8148 */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008149 x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, 0, 0);
8150 x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, 0, 0);
8151 x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
Andrew Honig27469d22013-04-18 09:38:14 -07008152 }
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05008153 if (kvm_x86_ops->vm_destroy)
8154 kvm_x86_ops->vm_destroy(kvm);
Sheng Yang6eb55812008-10-31 12:37:41 +08008155 kvm_iommu_unmap_guest(kvm);
Peter Xuc7611592017-03-15 16:01:19 +08008156 kvm_pic_destroy(kvm);
8157 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008158 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +02008159 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +08008160 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +02008161 kvm_page_track_cleanup(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008162}
Zhang Xiantao0de10342007-11-20 16:25:04 +08008163
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05308164void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008165 struct kvm_memory_slot *dont)
8166{
8167 int i;
8168
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008169 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
8170 if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) {
Thomas Huth548ef282015-02-24 21:29:25 +01008171 kvfree(free->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008172 free->arch.rmap[i] = NULL;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008173 }
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008174 if (i == 0)
8175 continue;
8176
8177 if (!dont || free->arch.lpage_info[i - 1] !=
8178 dont->arch.lpage_info[i - 1]) {
Thomas Huth548ef282015-02-24 21:29:25 +01008179 kvfree(free->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008180 free->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008181 }
8182 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08008183
8184 kvm_page_track_free_memslot(free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008185}
8186
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05308187int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
8188 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008189{
8190 int i;
8191
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008192 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008193 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008194 unsigned long ugfn;
8195 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008196 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008197
8198 lpages = gfn_to_index(slot->base_gfn + npages - 1,
8199 slot->base_gfn, level) + 1;
8200
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008201 slot->arch.rmap[i] =
8202 kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i]));
8203 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008204 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008205 if (i == 0)
8206 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008207
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008208 linfo = kvm_kvzalloc(lpages * sizeof(*linfo));
8209 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008210 goto out_free;
8211
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008212 slot->arch.lpage_info[i - 1] = linfo;
8213
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008214 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008215 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008216 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008217 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008218 ugfn = slot->userspace_addr >> PAGE_SHIFT;
8219 /*
8220 * If the gfn and userspace address are not aligned wrt each
8221 * other, or if explicitly asked to, disable large page
8222 * support for this slot
8223 */
8224 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
8225 !kvm_largepages_enabled()) {
8226 unsigned long j;
8227
8228 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008229 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008230 }
8231 }
8232
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08008233 if (kvm_page_track_create_memslot(slot, npages))
8234 goto out_free;
8235
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008236 return 0;
8237
8238out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008239 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +01008240 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008241 slot->arch.rmap[i] = NULL;
8242 if (i == 0)
8243 continue;
8244
Thomas Huth548ef282015-02-24 21:29:25 +01008245 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008246 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008247 }
8248 return -ENOMEM;
8249}
8250
Paolo Bonzini15f46012015-05-17 21:26:08 +02008251void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008252{
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09008253 /*
8254 * memslots->generation has been incremented.
8255 * mmio generation may have reached its maximum value.
8256 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008257 kvm_mmu_invalidate_mmio_sptes(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008258}
8259
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008260int kvm_arch_prepare_memory_region(struct kvm *kvm,
8261 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008262 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09008263 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +08008264{
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008265 return 0;
8266}
8267
Kai Huang88178fd2015-01-28 10:54:27 +08008268static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
8269 struct kvm_memory_slot *new)
8270{
8271 /* Still write protect RO slot */
8272 if (new->flags & KVM_MEM_READONLY) {
8273 kvm_mmu_slot_remove_write_access(kvm, new);
8274 return;
8275 }
8276
8277 /*
8278 * Call kvm_x86_ops dirty logging hooks when they are valid.
8279 *
8280 * kvm_x86_ops->slot_disable_log_dirty is called when:
8281 *
8282 * - KVM_MR_CREATE with dirty logging is disabled
8283 * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag
8284 *
8285 * The reason is, in case of PML, we need to set D-bit for any slots
8286 * with dirty logging disabled in order to eliminate unnecessary GPA
8287 * logging in PML buffer (and potential PML buffer full VMEXT). This
8288 * guarantees leaving PML enabled during guest's lifetime won't have
8289 * any additonal overhead from PML when guest is running with dirty
8290 * logging disabled for memory slots.
8291 *
8292 * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot
8293 * to dirty logging mode.
8294 *
8295 * If kvm_x86_ops dirty logging hooks are invalid, use write protect.
8296 *
8297 * In case of write protect:
8298 *
8299 * Write protect all pages for dirty logging.
8300 *
8301 * All the sptes including the large sptes which point to this
8302 * slot are set to readonly. We can not create any new large
8303 * spte on this slot until the end of the logging.
8304 *
8305 * See the comments in fast_page_fault().
8306 */
8307 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
8308 if (kvm_x86_ops->slot_enable_log_dirty)
8309 kvm_x86_ops->slot_enable_log_dirty(kvm, new);
8310 else
8311 kvm_mmu_slot_remove_write_access(kvm, new);
8312 } else {
8313 if (kvm_x86_ops->slot_disable_log_dirty)
8314 kvm_x86_ops->slot_disable_log_dirty(kvm, new);
8315 }
8316}
8317
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008318void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008319 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008320 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008321 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008322 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008323{
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008324 int nr_mmu_pages = 0;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008325
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008326 if (!kvm->arch.n_requested_mmu_pages)
8327 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008328
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008329 if (nr_mmu_pages)
8330 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Kai Huang1c91cad42015-01-28 10:54:26 +08008331
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008332 /*
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08008333 * Dirty logging tracks sptes in 4k granularity, meaning that large
8334 * sptes have to be split. If live migration is successful, the guest
8335 * in the source machine will be destroyed and large sptes will be
8336 * created in the destination. However, if the guest continues to run
8337 * in the source machine (for example if live migration fails), small
8338 * sptes will remain around and cause bad performance.
8339 *
8340 * Scan sptes if dirty logging has been stopped, dropping those
8341 * which can be collapsed into a single large-page spte. Later
8342 * page faults will create the large-page sptes.
8343 */
8344 if ((change != KVM_MR_DELETE) &&
8345 (old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
8346 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
8347 kvm_mmu_zap_collapsible_sptes(kvm, new);
8348
8349 /*
Kai Huang88178fd2015-01-28 10:54:27 +08008350 * Set up write protection and/or dirty logging for the new slot.
Xiao Guangrongc126d942014-04-17 17:06:14 +08008351 *
Kai Huang88178fd2015-01-28 10:54:27 +08008352 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have
8353 * been zapped so no dirty logging staff is needed for old slot. For
8354 * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the
8355 * new and it's also covered when dealing with the new slot.
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008356 *
8357 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008358 */
Kai Huang88178fd2015-01-28 10:54:27 +08008359 if (change != KVM_MR_DELETE)
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008360 kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008361}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008362
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008363void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008364{
Xiao Guangrong6ca18b62013-05-31 08:36:23 +08008365 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008366}
8367
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008368void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
8369 struct kvm_memory_slot *slot)
8370{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +08008371 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008372}
8373
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008374static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
8375{
8376 if (!list_empty_careful(&vcpu->async_pf.done))
8377 return true;
8378
8379 if (kvm_apic_has_events(vcpu))
8380 return true;
8381
8382 if (vcpu->arch.pv.pv_unhalted)
8383 return true;
8384
8385 if (atomic_read(&vcpu->arch.nmi_queued))
8386 return true;
8387
Paolo Bonzini73917732015-10-13 10:19:35 +02008388 if (test_bit(KVM_REQ_SMI, &vcpu->requests))
8389 return true;
8390
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008391 if (kvm_arch_interrupt_allowed(vcpu) &&
8392 kvm_cpu_has_interrupt(vcpu))
8393 return true;
8394
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03008395 if (kvm_hv_has_stimer_pending(vcpu))
8396 return true;
8397
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008398 return false;
8399}
8400
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008401int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
8402{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008403 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008404}
Zhang Xiantao57361992007-12-17 14:21:40 +08008405
Christoffer Dallb6d33832012-03-08 16:44:24 -05008406int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +08008407{
Christoffer Dallb6d33832012-03-08 16:44:24 -05008408 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +08008409}
Gleb Natapov78646122009-03-23 12:12:11 +02008410
8411int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
8412{
8413 return kvm_x86_ops->interrupt_allowed(vcpu);
8414}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008415
Nadav Amit82b32772014-11-02 11:54:45 +02008416unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
8417{
8418 if (is_64_bit_mode(vcpu))
8419 return kvm_rip_read(vcpu);
8420 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
8421 kvm_rip_read(vcpu));
8422}
8423EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
8424
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008425bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
8426{
Nadav Amit82b32772014-11-02 11:54:45 +02008427 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008428}
8429EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
8430
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008431unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
8432{
8433 unsigned long rflags;
8434
8435 rflags = kvm_x86_ops->get_rflags(vcpu);
8436 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01008437 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008438 return rflags;
8439}
8440EXPORT_SYMBOL_GPL(kvm_get_rflags);
8441
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008442static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008443{
8444 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008445 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01008446 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008447 kvm_x86_ops->set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008448}
8449
8450void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
8451{
8452 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03008453 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008454}
8455EXPORT_SYMBOL_GPL(kvm_set_rflags);
8456
Gleb Natapov56028d02010-10-17 18:13:42 +02008457void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
8458{
8459 int r;
8460
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008461 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +08008462 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +02008463 return;
8464
8465 r = kvm_mmu_reload(vcpu);
8466 if (unlikely(r))
8467 return;
8468
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008469 if (!vcpu->arch.mmu.direct_map &&
8470 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
8471 return;
8472
Gleb Natapov56028d02010-10-17 18:13:42 +02008473 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
8474}
8475
Gleb Natapovaf585b92010-10-14 11:22:46 +02008476static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
8477{
8478 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
8479}
8480
8481static inline u32 kvm_async_pf_next_probe(u32 key)
8482{
8483 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
8484}
8485
8486static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8487{
8488 u32 key = kvm_async_pf_hash_fn(gfn);
8489
8490 while (vcpu->arch.apf.gfns[key] != ~0)
8491 key = kvm_async_pf_next_probe(key);
8492
8493 vcpu->arch.apf.gfns[key] = gfn;
8494}
8495
8496static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
8497{
8498 int i;
8499 u32 key = kvm_async_pf_hash_fn(gfn);
8500
8501 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08008502 (vcpu->arch.apf.gfns[key] != gfn &&
8503 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02008504 key = kvm_async_pf_next_probe(key);
8505
8506 return key;
8507}
8508
8509bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8510{
8511 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
8512}
8513
8514static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8515{
8516 u32 i, j, k;
8517
8518 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
8519 while (true) {
8520 vcpu->arch.apf.gfns[i] = ~0;
8521 do {
8522 j = kvm_async_pf_next_probe(j);
8523 if (vcpu->arch.apf.gfns[j] == ~0)
8524 return;
8525 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
8526 /*
8527 * k lies cyclically in ]i,j]
8528 * | i.k.j |
8529 * |....j i.k.| or |.k..j i...|
8530 */
8531 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
8532 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
8533 i = j;
8534 }
8535}
8536
Gleb Natapov7c907052010-10-14 11:22:53 +02008537static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
8538{
Cao, Leibbd64112017-02-03 20:04:35 +00008539 return kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.apf.data, &val,
8540 sizeof(val));
Gleb Natapov7c907052010-10-14 11:22:53 +02008541}
8542
Gleb Natapovaf585b92010-10-14 11:22:46 +02008543void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
8544 struct kvm_async_pf *work)
8545{
Avi Kivity6389ee92010-11-29 16:12:30 +02008546 struct x86_exception fault;
8547
Gleb Natapov7c907052010-10-14 11:22:53 +02008548 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008549 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02008550
8551 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02008552 (vcpu->arch.apf.send_user_only &&
8553 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02008554 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
8555 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008556 fault.vector = PF_VECTOR;
8557 fault.error_code_valid = true;
8558 fault.error_code = 0;
8559 fault.nested_page_fault = false;
8560 fault.address = work->arch.token;
8561 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008562 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008563}
8564
8565void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
8566 struct kvm_async_pf *work)
8567{
Avi Kivity6389ee92010-11-29 16:12:30 +02008568 struct x86_exception fault;
8569
chai wenf2e10662013-10-14 22:22:33 +08008570 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +02008571 work->arch.token = ~0; /* broadcast wakeup */
8572 else
8573 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Wanpeng Li24dccf82017-03-20 21:18:55 -07008574 trace_kvm_async_pf_ready(work->arch.token, work->gva);
Gleb Natapov7c907052010-10-14 11:22:53 +02008575
8576 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
8577 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008578 fault.vector = PF_VECTOR;
8579 fault.error_code_valid = true;
8580 fault.error_code = 0;
8581 fault.nested_page_fault = false;
8582 fault.address = work->arch.token;
8583 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008584 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08008585 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +03008586 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +02008587}
8588
8589bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
8590{
8591 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
8592 return true;
8593 else
8594 return !kvm_event_needs_reinjection(vcpu) &&
8595 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008596}
8597
Paolo Bonzini5544eb92015-07-07 15:41:58 +02008598void kvm_arch_start_assignment(struct kvm *kvm)
8599{
8600 atomic_inc(&kvm->arch.assigned_device_count);
8601}
8602EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
8603
8604void kvm_arch_end_assignment(struct kvm *kvm)
8605{
8606 atomic_dec(&kvm->arch.assigned_device_count);
8607}
8608EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
8609
8610bool kvm_arch_has_assigned_device(struct kvm *kvm)
8611{
8612 return atomic_read(&kvm->arch.assigned_device_count);
8613}
8614EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
8615
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06008616void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
8617{
8618 atomic_inc(&kvm->arch.noncoherent_dma_count);
8619}
8620EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
8621
8622void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
8623{
8624 atomic_dec(&kvm->arch.noncoherent_dma_count);
8625}
8626EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
8627
8628bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
8629{
8630 return atomic_read(&kvm->arch.noncoherent_dma_count);
8631}
8632EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
8633
Alex Williamson14717e22016-05-05 11:58:35 -06008634bool kvm_arch_has_irq_bypass(void)
8635{
8636 return kvm_x86_ops->update_pi_irte != NULL;
8637}
8638
Feng Wu87276882015-09-18 22:29:40 +08008639int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
8640 struct irq_bypass_producer *prod)
8641{
8642 struct kvm_kernel_irqfd *irqfd =
8643 container_of(cons, struct kvm_kernel_irqfd, consumer);
8644
Alex Williamson14717e22016-05-05 11:58:35 -06008645 irqfd->producer = prod;
Feng Wu87276882015-09-18 22:29:40 +08008646
Alex Williamson14717e22016-05-05 11:58:35 -06008647 return kvm_x86_ops->update_pi_irte(irqfd->kvm,
8648 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +08008649}
8650
8651void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
8652 struct irq_bypass_producer *prod)
8653{
8654 int ret;
8655 struct kvm_kernel_irqfd *irqfd =
8656 container_of(cons, struct kvm_kernel_irqfd, consumer);
8657
Feng Wu87276882015-09-18 22:29:40 +08008658 WARN_ON(irqfd->producer != prod);
8659 irqfd->producer = NULL;
8660
8661 /*
8662 * When producer of consumer is unregistered, we change back to
8663 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +02008664 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +08008665 * int this case doesn't want to receive the interrupts.
8666 */
8667 ret = kvm_x86_ops->update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0);
8668 if (ret)
8669 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
8670 " fails: %d\n", irqfd->consumer.token, ret);
8671}
8672
8673int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
8674 uint32_t guest_irq, bool set)
8675{
8676 if (!kvm_x86_ops->update_pi_irte)
8677 return -EINVAL;
8678
8679 return kvm_x86_ops->update_pi_irte(kvm, host_irq, guest_irq, set);
8680}
8681
Feng Wu520040142016-01-25 16:53:33 +08008682bool kvm_vector_hashing_enabled(void)
8683{
8684 return vector_hashing;
8685}
8686EXPORT_SYMBOL_GPL(kvm_vector_hashing_enabled);
8687
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008688EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
Jason Wang931c33b2015-09-15 14:41:58 +08008689EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008690EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
8691EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
8692EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
8693EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02008694EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02008695EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02008696EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02008697EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02008698EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02008699EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01008700EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09008701EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Radim Krčmář7b462682014-08-21 18:08:09 +02008702EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window);
Kai Huang843e4332015-01-28 10:54:28 +08008703EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
Feng Wuefc64402015-09-18 22:29:51 +08008704EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05008705EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
8706EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);