blob: bbaf44e8f0d3cdd7100c40c98ccf2ab40ae1ea2f [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"
Carsten Otte313a3dc2007-10-11 19:16:52 +020032
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020033#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030034#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020035#include <linux/kvm.h>
36#include <linux/fs.h>
37#include <linux/vmalloc.h>
Carsten Otte5fb76f92007-10-29 16:08:51 +010038#include <linux/module.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080039#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050040#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010041#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030042#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010043#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030044#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020045#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080047#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080048#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020049#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020050#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020051#include <linux/timekeeper_internal.h>
52#include <linux/pvclock_gtod.h>
Avi Kivityaec51dc2009-07-01 16:01:02 +030053#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080054
Marcelo Tosatti229456f2009-06-17 09:22:14 -030055#define CREATE_TRACE_POINTS
56#include "trace.h"
Carsten Otte043405e2007-10-10 17:16:19 +020057
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020058#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080059#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020060#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080061#include <asm/mce.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020062#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020063#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100064#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030065#include <asm/div64.h>
Carsten Otte043405e2007-10-10 17:16:19 +020066
Carsten Otte313a3dc2007-10-11 19:16:52 +020067#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080068#define KVM_MAX_MCE_BANKS 32
Huang Ying5854dbc2010-10-08 16:24:14 +080069#define KVM_MCE_CAP_SUPPORTED (MCG_CTL_P | MCG_SER_P)
Huang Ying890ca9a2009-05-11 16:48:15 +080070
Avi Kivity0f65dd72011-04-20 13:37:53 +030071#define emul_to_vcpu(ctxt) \
72 container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt)
73
Joerg Roedel50a37eb2008-01-31 14:57:38 +010074/* EFER defaults:
75 * - enable syscall per default because its emulated by KVM
76 * - enable LME and LMA per default on 64 bit KVM
77 */
78#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080079static
80u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010081#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080082static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010083#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020084
Avi Kivityba1389b2007-11-18 16:24:12 +020085#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
86#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050087
Gleb Natapovcb142eb2009-08-09 15:17:40 +030088static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +030089static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010090static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Avi Kivity674eea02008-02-11 18:37:23 +020091
Zhang Xiantao97896d02007-11-14 20:09:30 +080092struct kvm_x86_ops *kvm_x86_ops;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030093EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +080094
Rusty Russell476bc002012-01-13 09:32:18 +103095static bool ignore_msrs = 0;
96module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +020097
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -020098unsigned int min_timer_period_us = 500;
99module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
100
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300101static bool __read_mostly kvmclock_periodic_sync = true;
102module_param(kvmclock_periodic_sync, bool, S_IRUGO);
103
Joerg Roedel92a1f122011-03-25 09:44:51 +0100104bool kvm_has_tsc_control;
105EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
106u32 kvm_max_guest_tsc_khz;
107EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
108
Zachary Amsdencc578282012-02-03 15:43:50 -0200109/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
110static u32 tsc_tolerance_ppm = 250;
111module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
112
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500113/* lapic timer advance (tscdeadline mode only) in nanoseconds */
114unsigned int lapic_timer_advance_ns = 0;
115module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR);
116
Marcelo Tosatti16a96022014-05-14 12:43:24 -0300117static bool backwards_tsc_observed = false;
118
Avi Kivity18863bd2009-09-07 11:12:18 +0300119#define KVM_NR_SHARED_MSRS 16
120
121struct kvm_shared_msrs_global {
122 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800123 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300124};
125
126struct kvm_shared_msrs {
127 struct user_return_notifier urn;
128 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800129 struct kvm_shared_msr_values {
130 u64 host;
131 u64 curr;
132 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300133};
134
135static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200136static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300137
Hollis Blanchard417bc302007-10-31 17:24:23 -0500138struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200139 { "pf_fixed", VCPU_STAT(pf_fixed) },
140 { "pf_guest", VCPU_STAT(pf_guest) },
141 { "tlb_flush", VCPU_STAT(tlb_flush) },
142 { "invlpg", VCPU_STAT(invlpg) },
143 { "exits", VCPU_STAT(exits) },
144 { "io_exits", VCPU_STAT(io_exits) },
145 { "mmio_exits", VCPU_STAT(mmio_exits) },
146 { "signal_exits", VCPU_STAT(signal_exits) },
147 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800148 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200149 { "halt_exits", VCPU_STAT(halt_exits) },
Paolo Bonzinif7819512015-02-04 18:20:58 +0100150 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200151 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530152 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200153 { "request_irq", VCPU_STAT(request_irq_exits) },
154 { "irq_exits", VCPU_STAT(irq_exits) },
155 { "host_state_reload", VCPU_STAT(host_state_reload) },
156 { "efer_reload", VCPU_STAT(efer_reload) },
157 { "fpu_reload", VCPU_STAT(fpu_reload) },
158 { "insn_emulation", VCPU_STAT(insn_emulation) },
159 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300160 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200161 { "nmi_injections", VCPU_STAT(nmi_injections) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200162 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
163 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
164 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
165 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
166 { "mmu_flooded", VM_STAT(mmu_flooded) },
167 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200168 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300169 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200170 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300171 { "largepages", VM_STAT(lpages) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500172 { NULL }
173};
174
Dexuan Cui2acf9232010-06-10 11:27:12 +0800175u64 __read_mostly host_xcr0;
176
Jan Kiszkab6785de2012-09-20 07:43:17 +0200177static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300178
Gleb Natapovaf585b92010-10-14 11:22:46 +0200179static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
180{
181 int i;
182 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
183 vcpu->arch.apf.gfns[i] = ~0;
184}
185
Avi Kivity18863bd2009-09-07 11:12:18 +0300186static void kvm_on_user_return(struct user_return_notifier *urn)
187{
188 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300189 struct kvm_shared_msrs *locals
190 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800191 struct kvm_shared_msr_values *values;
Avi Kivity18863bd2009-09-07 11:12:18 +0300192
193 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800194 values = &locals->values[slot];
195 if (values->host != values->curr) {
196 wrmsrl(shared_msrs_global.msrs[slot], values->host);
197 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300198 }
199 }
200 locals->registered = false;
201 user_return_notifier_unregister(urn);
202}
203
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800204static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300205{
Avi Kivity18863bd2009-09-07 11:12:18 +0300206 u64 value;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200207 unsigned int cpu = smp_processor_id();
208 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300209
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800210 /* only read, and nobody should modify it at this time,
211 * so don't need lock */
212 if (slot >= shared_msrs_global.nr) {
213 printk(KERN_ERR "kvm: invalid MSR slot!");
214 return;
215 }
216 rdmsrl_safe(msr, &value);
217 smsr->values[slot].host = value;
218 smsr->values[slot].curr = value;
219}
220
221void kvm_define_shared_msr(unsigned slot, u32 msr)
222{
Nadav Amit0123be42014-07-24 15:06:56 +0300223 BUG_ON(slot >= KVM_NR_SHARED_MSRS);
Avi Kivity18863bd2009-09-07 11:12:18 +0300224 if (slot >= shared_msrs_global.nr)
225 shared_msrs_global.nr = slot + 1;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800226 shared_msrs_global.msrs[slot] = msr;
227 /* we need ensured the shared_msr_global have been updated */
228 smp_wmb();
Avi Kivity18863bd2009-09-07 11:12:18 +0300229}
230EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
231
232static void kvm_shared_msr_cpu_online(void)
233{
234 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300235
236 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800237 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300238}
239
Andy Honig8b3c3102014-08-27 11:16:44 -0700240int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300241{
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);
Andy Honig8b3c3102014-08-27 11:16:44 -0700244 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300245
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800246 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Andy Honig8b3c3102014-08-27 11:16:44 -0700247 return 0;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800248 smsr->values[slot].curr = value;
Andy Honig8b3c3102014-08-27 11:16:44 -0700249 err = wrmsrl_safe(shared_msrs_global.msrs[slot], value);
250 if (err)
251 return 1;
252
Avi Kivity18863bd2009-09-07 11:12:18 +0300253 if (!smsr->registered) {
254 smsr->urn.on_user_return = kvm_on_user_return;
255 user_return_notifier_register(&smsr->urn);
256 smsr->registered = true;
257 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700258 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300259}
260EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
261
Radim Krčmář13a34e02014-08-28 15:13:03 +0200262static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200263{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200264 unsigned int cpu = smp_processor_id();
265 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200266
267 if (smsr->registered)
268 kvm_on_user_return(&smsr->urn);
269}
270
Carsten Otte6866b832007-10-29 16:09:10 +0100271u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
272{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300273 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100274}
275EXPORT_SYMBOL_GPL(kvm_get_apic_base);
276
Jan Kiszka58cb6282014-01-24 16:48:44 +0100277int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100278{
Jan Kiszka58cb6282014-01-24 16:48:44 +0100279 u64 old_state = vcpu->arch.apic_base &
280 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
281 u64 new_state = msr_info->data &
282 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
283 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) |
284 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE);
285
286 if (!msr_info->host_initiated &&
287 ((msr_info->data & reserved_bits) != 0 ||
288 new_state == X2APIC_ENABLE ||
289 (new_state == MSR_IA32_APICBASE_ENABLE &&
290 old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) ||
291 (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) &&
292 old_state == 0)))
293 return 1;
294
295 kvm_lapic_set_base(vcpu, msr_info->data);
296 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100297}
298EXPORT_SYMBOL_GPL(kvm_set_apic_base);
299
Andi Kleen2605fc22014-05-02 00:44:37 +0200300asmlinkage __visible void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000301{
302 /* Fault while not rebooting. We want the trace. */
303 BUG();
304}
305EXPORT_SYMBOL_GPL(kvm_spurious_fault);
306
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200307#define EXCPT_BENIGN 0
308#define EXCPT_CONTRIBUTORY 1
309#define EXCPT_PF 2
310
311static int exception_class(int vector)
312{
313 switch (vector) {
314 case PF_VECTOR:
315 return EXCPT_PF;
316 case DE_VECTOR:
317 case TS_VECTOR:
318 case NP_VECTOR:
319 case SS_VECTOR:
320 case GP_VECTOR:
321 return EXCPT_CONTRIBUTORY;
322 default:
323 break;
324 }
325 return EXCPT_BENIGN;
326}
327
Nadav Amitd6e8c852014-07-24 14:51:24 +0300328#define EXCPT_FAULT 0
329#define EXCPT_TRAP 1
330#define EXCPT_ABORT 2
331#define EXCPT_INTERRUPT 3
332
333static int exception_type(int vector)
334{
335 unsigned int mask;
336
337 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
338 return EXCPT_INTERRUPT;
339
340 mask = 1 << vector;
341
342 /* #DB is trap, as instruction watchpoints are handled elsewhere */
343 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
344 return EXCPT_TRAP;
345
346 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
347 return EXCPT_ABORT;
348
349 /* Reserved exceptions will result in fault */
350 return EXCPT_FAULT;
351}
352
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200353static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200354 unsigned nr, bool has_error, u32 error_code,
355 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200356{
357 u32 prev_nr;
358 int class1, class2;
359
Avi Kivity3842d132010-07-27 12:30:24 +0300360 kvm_make_request(KVM_REQ_EVENT, vcpu);
361
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200362 if (!vcpu->arch.exception.pending) {
363 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200364 if (has_error && !is_protmode(vcpu))
365 has_error = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200366 vcpu->arch.exception.pending = true;
367 vcpu->arch.exception.has_error_code = has_error;
368 vcpu->arch.exception.nr = nr;
369 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200370 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200371 return;
372 }
373
374 /* to check exception */
375 prev_nr = vcpu->arch.exception.nr;
376 if (prev_nr == DF_VECTOR) {
377 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300378 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200379 return;
380 }
381 class1 = exception_class(prev_nr);
382 class2 = exception_class(nr);
383 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
384 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
385 /* generate double fault per SDM Table 5-5 */
386 vcpu->arch.exception.pending = true;
387 vcpu->arch.exception.has_error_code = true;
388 vcpu->arch.exception.nr = DF_VECTOR;
389 vcpu->arch.exception.error_code = 0;
390 } else
391 /* replace previous exception with a new one in a hope
392 that instruction re-execution will regenerate lost
393 exception */
394 goto queue;
395}
396
Avi Kivity298101d2007-11-25 13:41:11 +0200397void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
398{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200399 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200400}
401EXPORT_SYMBOL_GPL(kvm_queue_exception);
402
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200403void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
404{
405 kvm_multiple_exception(vcpu, nr, false, 0, true);
406}
407EXPORT_SYMBOL_GPL(kvm_requeue_exception);
408
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100409void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200410{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100411 if (err)
412 kvm_inject_gp(vcpu, 0);
413 else
414 kvm_x86_ops->skip_emulated_instruction(vcpu);
415}
416EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200417
Avi Kivity6389ee92010-11-29 16:12:30 +0200418void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200419{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200420 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200421 vcpu->arch.cr2 = fault->address;
422 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200423}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300424EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200425
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200426static bool kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200427{
Avi Kivity6389ee92010-11-29 16:12:30 +0200428 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
429 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200430 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200431 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200432
433 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200434}
435
Sheng Yang3419ffc2008-05-15 09:52:48 +0800436void kvm_inject_nmi(struct kvm_vcpu *vcpu)
437{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300438 atomic_inc(&vcpu->arch.nmi_queued);
439 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800440}
441EXPORT_SYMBOL_GPL(kvm_inject_nmi);
442
Avi Kivity298101d2007-11-25 13:41:11 +0200443void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
444{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200445 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200446}
447EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
448
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200449void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
450{
451 kvm_multiple_exception(vcpu, nr, true, error_code, true);
452}
453EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
454
Carsten Ottea03490e2007-10-29 16:09:35 +0100455/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300456 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
457 * a #GP and return false.
458 */
459bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200460{
Avi Kivity0a79b002009-09-01 12:03:25 +0300461 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
462 return true;
463 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
464 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100465}
Avi Kivity0a79b002009-09-01 12:03:25 +0300466EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100467
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300468bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
469{
470 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
471 return true;
472
473 kvm_queue_exception(vcpu, UD_VECTOR);
474 return false;
475}
476EXPORT_SYMBOL_GPL(kvm_require_dr);
477
Carsten Ottea03490e2007-10-29 16:09:35 +0100478/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200479 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200480 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200481 * can read from guest physical or from the guest's guest physical memory.
482 */
483int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
484 gfn_t ngfn, void *data, int offset, int len,
485 u32 access)
486{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200487 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200488 gfn_t real_gfn;
489 gpa_t ngpa;
490
491 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200492 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200493 if (real_gfn == UNMAPPED_GVA)
494 return -EFAULT;
495
496 real_gfn = gpa_to_gfn(real_gfn);
497
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200498 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200499}
500EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
501
Fengguang Wu69b00492015-01-19 22:33:39 +0800502static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200503 void *data, int offset, int len, u32 access)
504{
505 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
506 data, offset, len, access);
507}
508
Joerg Roedelec92fe42010-09-10 17:30:51 +0200509/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100510 * Load the pae pdptrs. Return true is they are all valid.
511 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200512int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100513{
514 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
515 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
516 int i;
517 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200518 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100519
Joerg Roedelff03a072010-09-10 17:30:57 +0200520 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
521 offset * sizeof(u64), sizeof(pdpte),
522 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100523 if (ret < 0) {
524 ret = 0;
525 goto out;
526 }
527 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Avi Kivity43a37952009-06-10 14:12:05 +0300528 if (is_present_gpte(pdpte[i]) &&
Dong, Eddie20c466b2009-03-31 23:03:45 +0800529 (pdpte[i] & vcpu->arch.mmu.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100530 ret = 0;
531 goto out;
532 }
533 }
534 ret = 1;
535
Joerg Roedelff03a072010-09-10 17:30:57 +0200536 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300537 __set_bit(VCPU_EXREG_PDPTR,
538 (unsigned long *)&vcpu->arch.regs_avail);
539 __set_bit(VCPU_EXREG_PDPTR,
540 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100541out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100542
543 return ret;
544}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100545EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100546
Avi Kivityd835dfe2007-11-21 02:57:59 +0200547static bool pdptrs_changed(struct kvm_vcpu *vcpu)
548{
Joerg Roedelff03a072010-09-10 17:30:57 +0200549 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200550 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200551 int offset;
552 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200553 int r;
554
555 if (is_long_mode(vcpu) || !is_pae(vcpu))
556 return false;
557
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300558 if (!test_bit(VCPU_EXREG_PDPTR,
559 (unsigned long *)&vcpu->arch.regs_avail))
560 return true;
561
Avi Kivity9f8fe502010-12-05 17:30:00 +0200562 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
563 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200564 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
565 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200566 if (r < 0)
567 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200568 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200569out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200570
571 return changed;
572}
573
Avi Kivity49a9b072010-06-10 17:02:14 +0300574int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100575{
Sheng Yangaad82702010-05-12 16:40:42 +0800576 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800577 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800578
Avi Kivityf9a48e62010-01-06 19:10:22 +0200579 cr0 |= X86_CR0_ET;
580
Gleb Natapovab344822010-01-21 15:28:46 +0200581#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300582 if (cr0 & 0xffffffff00000000UL)
583 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200584#endif
585
586 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100587
Gleb Natapov0f122442010-04-28 19:15:31 +0300588 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
589 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100590
Gleb Natapov0f122442010-04-28 19:15:31 +0300591 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
592 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100593
594 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
595#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200596 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100597 int cs_db, cs_l;
598
Gleb Natapov0f122442010-04-28 19:15:31 +0300599 if (!is_pae(vcpu))
600 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100601 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300602 if (cs_l)
603 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100604 } else
605#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200606 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200607 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300608 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100609 }
610
Mao, Junjiead756a12012-07-02 01:18:48 +0000611 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
612 return 1;
613
Carsten Ottea03490e2007-10-29 16:09:35 +0100614 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100615
Lai Jiangshand170c412011-02-21 11:21:30 +0800616 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800617 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800618 kvm_async_pf_hash_reset(vcpu);
619 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800620
Sheng Yangaad82702010-05-12 16:40:42 +0800621 if ((cr0 ^ old_cr0) & update_bits)
622 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800623
624 if ((cr0 ^ old_cr0) & X86_CR0_CD)
625 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
626
Gleb Natapov0f122442010-04-28 19:15:31 +0300627 return 0;
628}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200629EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100630
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200631void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100632{
Avi Kivity49a9b072010-06-10 17:02:14 +0300633 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100634}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200635EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100636
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300637static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
638{
639 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
640 !vcpu->guest_xcr0_loaded) {
641 /* kvm_set_xcr() also depends on this */
642 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
643 vcpu->guest_xcr0_loaded = 1;
644 }
645}
646
647static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
648{
649 if (vcpu->guest_xcr0_loaded) {
650 if (vcpu->arch.xcr0 != host_xcr0)
651 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
652 vcpu->guest_xcr0_loaded = 0;
653 }
654}
655
Fengguang Wu69b00492015-01-19 22:33:39 +0800656static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800657{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000658 u64 xcr0 = xcr;
659 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200660 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800661
662 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
663 if (index != XCR_XFEATURE_ENABLED_MASK)
664 return 1;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800665 if (!(xcr0 & XSTATE_FP))
666 return 1;
667 if ((xcr0 & XSTATE_YMM) && !(xcr0 & XSTATE_SSE))
668 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200669
670 /*
671 * Do not allow the guest to set bits that we do not support
672 * saving. However, xcr0 bit 0 is always set, even if the
673 * emulated CPU does not support XSAVE (see fx_init).
674 */
675 valid_bits = vcpu->arch.guest_supported_xcr0 | XSTATE_FP;
676 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800677 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200678
Liu, Jinsong390bd522014-02-24 10:58:09 +0000679 if ((!(xcr0 & XSTATE_BNDREGS)) != (!(xcr0 & XSTATE_BNDCSR)))
680 return 1;
681
Chao Peng612263b2014-10-22 17:35:24 +0800682 if (xcr0 & XSTATE_AVX512) {
683 if (!(xcr0 & XSTATE_YMM))
684 return 1;
685 if ((xcr0 & XSTATE_AVX512) != XSTATE_AVX512)
686 return 1;
687 }
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300688 kvm_put_guest_xcr0(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800689 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000690
691 if ((xcr0 ^ old_xcr0) & XSTATE_EXTEND_MASK)
692 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800693 return 0;
694}
695
696int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
697{
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000698 if (kvm_x86_ops->get_cpl(vcpu) != 0 ||
699 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800700 kvm_inject_gp(vcpu, 0);
701 return 1;
702 }
703 return 0;
704}
705EXPORT_SYMBOL_GPL(kvm_set_xcr);
706
Avi Kivitya83b29c2010-06-10 17:02:15 +0300707int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100708{
Avi Kivityfc78f512009-12-07 12:16:48 +0200709 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800710 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
711 X86_CR4_SMEP | X86_CR4_SMAP;
712
Gleb Natapov0f122442010-04-28 19:15:31 +0300713 if (cr4 & CR4_RESERVED_BITS)
714 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100715
Dexuan Cui2acf9232010-06-10 11:27:12 +0800716 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
717 return 1;
718
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800719 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
720 return 1;
721
Feng Wu97ec8c02014-04-01 17:46:34 +0800722 if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP))
723 return 1;
724
H. Peter Anvinafcbf132013-04-27 16:37:47 -0700725 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE))
Yang, Wei74dc2b42011-06-14 20:10:18 +0800726 return 1;
727
Carsten Ottea03490e2007-10-29 16:09:35 +0100728 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300729 if (!(cr4 & X86_CR4_PAE))
730 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300731 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
732 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200733 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
734 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300735 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100736
Mao, Junjiead756a12012-07-02 01:18:48 +0000737 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
738 if (!guest_cpuid_has_pcid(vcpu))
739 return 1;
740
741 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
742 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
743 return 1;
744 }
745
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300746 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300747 return 1;
748
Mao, Junjiead756a12012-07-02 01:18:48 +0000749 if (((cr4 ^ old_cr4) & pdptr_bits) ||
750 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800751 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300752
Dexuan Cui2acf9232010-06-10 11:27:12 +0800753 if ((cr4 ^ old_cr4) & X86_CR4_OSXSAVE)
Avi Kivity00b27a32011-11-23 16:30:32 +0200754 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800755
Gleb Natapov0f122442010-04-28 19:15:31 +0300756 return 0;
757}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200758EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100759
Avi Kivity23902182010-06-10 17:02:16 +0300760int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100761{
Paolo Bonziniac146232014-11-10 13:53:25 +0100762#ifdef CONFIG_X86_64
Nadav Amit9d88fca2014-11-02 11:54:52 +0200763 cr3 &= ~CR3_PCID_INVD;
Paolo Bonziniac146232014-11-10 13:53:25 +0100764#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +0200765
Avi Kivity9f8fe502010-12-05 17:30:00 +0200766 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300767 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -0400768 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300769 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200770 }
771
Carsten Ottea03490e2007-10-29 16:09:35 +0100772 if (is_long_mode(vcpu)) {
Jan Kiszkad9f89b82014-05-10 09:24:34 +0200773 if (cr3 & CR3_L_MODE_RESERVED_BITS)
774 return 1;
775 } else if (is_pae(vcpu) && is_paging(vcpu) &&
776 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +0300777 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100778
Gleb Natapov0f122442010-04-28 19:15:31 +0300779 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200780 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Paolo Bonzinid8d173d2013-10-02 16:56:11 +0200781 kvm_mmu_new_cr3(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300782 return 0;
783}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200784EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100785
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100786int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100787{
Gleb Natapov0f122442010-04-28 19:15:31 +0300788 if (cr8 & CR8_RESERVED_BITS)
789 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100790 if (irqchip_in_kernel(vcpu->kvm))
791 kvm_lapic_set_tpr(vcpu, cr8);
792 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800793 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300794 return 0;
795}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200796EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100797
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200798unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100799{
800 if (irqchip_in_kernel(vcpu->kvm))
801 return kvm_lapic_get_cr8(vcpu);
802 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800803 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100804}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200805EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100806
Nadav Amitae561ed2015-04-02 03:10:37 +0300807static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
808{
809 int i;
810
811 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
812 for (i = 0; i < KVM_NR_DB_REGS; i++)
813 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
814 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
815 }
816}
817
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100818static void kvm_update_dr6(struct kvm_vcpu *vcpu)
819{
820 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
821 kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6);
822}
823
Jan Kiszkac8639012012-09-21 05:42:55 +0200824static void kvm_update_dr7(struct kvm_vcpu *vcpu)
825{
826 unsigned long dr7;
827
828 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
829 dr7 = vcpu->arch.guest_debug_dr7;
830 else
831 dr7 = vcpu->arch.dr7;
832 kvm_x86_ops->set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +0100833 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
834 if (dr7 & DR7_BP_EN_MASK)
835 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +0200836}
837
Nadav Amit6f43ed02014-07-15 17:37:46 +0300838static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
839{
840 u64 fixed = DR6_FIXED_1;
841
842 if (!guest_cpuid_has_rtm(vcpu))
843 fixed |= DR6_RTM;
844 return fixed;
845}
846
Gleb Natapov338dbc92010-04-28 19:15:32 +0300847static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300848{
849 switch (dr) {
850 case 0 ... 3:
851 vcpu->arch.db[dr] = val;
852 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
853 vcpu->arch.eff_db[dr] = val;
854 break;
855 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300856 /* fall through */
857 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300858 if (val & 0xffffffff00000000ULL)
859 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +0300860 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100861 kvm_update_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300862 break;
863 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300864 /* fall through */
865 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300866 if (val & 0xffffffff00000000ULL)
867 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300868 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +0200869 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300870 break;
871 }
872
873 return 0;
874}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300875
876int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
877{
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300878 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +0300879 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300880 return 1;
881 }
882 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +0300883}
Gleb Natapov020df072010-04-13 10:05:23 +0300884EXPORT_SYMBOL_GPL(kvm_set_dr);
885
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300886int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300887{
888 switch (dr) {
889 case 0 ... 3:
890 *val = vcpu->arch.db[dr];
891 break;
892 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300893 /* fall through */
894 case 6:
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100895 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
896 *val = vcpu->arch.dr6;
897 else
898 *val = kvm_x86_ops->get_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300899 break;
900 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300901 /* fall through */
902 default: /* 7 */
903 *val = vcpu->arch.dr7;
904 break;
905 }
Gleb Natapov338dbc92010-04-28 19:15:32 +0300906 return 0;
907}
Gleb Natapov020df072010-04-13 10:05:23 +0300908EXPORT_SYMBOL_GPL(kvm_get_dr);
909
Avi Kivity022cd0e2011-11-10 14:57:23 +0200910bool kvm_rdpmc(struct kvm_vcpu *vcpu)
911{
912 u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
913 u64 data;
914 int err;
915
Wei Huangc6702c92015-06-19 13:44:45 +0200916 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +0200917 if (err)
918 return err;
919 kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data);
920 kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32);
921 return err;
922}
923EXPORT_SYMBOL_GPL(kvm_rdpmc);
924
Carsten Otte043405e2007-10-10 17:16:19 +0200925/*
926 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
927 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
928 *
929 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400930 * capabilities of the host cpu. This capabilities test skips MSRs that are
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200931 * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs
932 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +0200933 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400934
Carsten Otte043405e2007-10-10 17:16:19 +0200935static u32 msrs_to_save[] = {
936 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400937 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200938#ifdef CONFIG_X86_64
939 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
940#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800941 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Liu, Jinsong0dd376e2014-02-24 10:56:53 +0000942 MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS
Carsten Otte043405e2007-10-10 17:16:19 +0200943};
944
945static unsigned num_msrs_to_save;
946
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200947static u32 emulated_msrs[] = {
948 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
949 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
950 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
951 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
952 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
953 MSR_KVM_PV_EOI_EN,
954
Will Auldba904632012-11-29 12:42:50 -0800955 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800956 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +0200957 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +0300958 MSR_IA32_MCG_STATUS,
959 MSR_IA32_MCG_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +0200960 MSR_IA32_SMBASE,
Carsten Otte043405e2007-10-10 17:16:19 +0200961};
962
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200963static unsigned num_emulated_msrs;
964
Jan Kiszka384bb782013-04-20 10:52:36 +0200965bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +0100966{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200967 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +0200968 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +0100969
Alexander Graf1b2fd702009-02-02 16:23:51 +0100970 if (efer & EFER_FFXSR) {
971 struct kvm_cpuid_entry2 *feat;
972
973 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200974 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
Jan Kiszka384bb782013-04-20 10:52:36 +0200975 return false;
Alexander Graf1b2fd702009-02-02 16:23:51 +0100976 }
977
Alexander Grafd8017472008-11-25 20:17:11 +0100978 if (efer & EFER_SVME) {
979 struct kvm_cpuid_entry2 *feat;
980
981 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200982 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
Jan Kiszka384bb782013-04-20 10:52:36 +0200983 return false;
Alexander Grafd8017472008-11-25 20:17:11 +0100984 }
985
Jan Kiszka384bb782013-04-20 10:52:36 +0200986 return true;
987}
988EXPORT_SYMBOL_GPL(kvm_valid_efer);
989
990static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
991{
992 u64 old_efer = vcpu->arch.efer;
993
994 if (!kvm_valid_efer(vcpu, efer))
995 return 1;
996
997 if (is_paging(vcpu)
998 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
999 return 1;
1000
Carsten Otte15c4a642007-10-30 18:44:17 +01001001 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001002 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001003
Sheng Yanga3d204e2010-05-12 16:40:40 +08001004 kvm_x86_ops->set_efer(vcpu, efer);
1005
Sheng Yangaad82702010-05-12 16:40:42 +08001006 /* Update reserved bits */
1007 if ((efer ^ old_efer) & EFER_NX)
1008 kvm_mmu_reset_context(vcpu);
1009
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001010 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001011}
1012
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001013void kvm_enable_efer_bits(u64 mask)
1014{
1015 efer_reserved_bits &= ~mask;
1016}
1017EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1018
Carsten Otte15c4a642007-10-30 18:44:17 +01001019/*
1020 * Writes msr value into into the appropriate "register".
1021 * Returns 0 on success, non-0 otherwise.
1022 * Assumes vcpu_load() was already called.
1023 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001024int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01001025{
Nadav Amit854e8bb2014-09-16 03:24:05 +03001026 switch (msr->index) {
1027 case MSR_FS_BASE:
1028 case MSR_GS_BASE:
1029 case MSR_KERNEL_GS_BASE:
1030 case MSR_CSTAR:
1031 case MSR_LSTAR:
1032 if (is_noncanonical_address(msr->data))
1033 return 1;
1034 break;
1035 case MSR_IA32_SYSENTER_EIP:
1036 case MSR_IA32_SYSENTER_ESP:
1037 /*
1038 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1039 * non-canonical address is written on Intel but not on
1040 * AMD (which ignores the top 32-bits, because it does
1041 * not implement 64-bit SYSENTER).
1042 *
1043 * 64-bit code should hence be able to write a non-canonical
1044 * value on AMD. Making the address canonical ensures that
1045 * vmentry does not fail on Intel after writing a non-canonical
1046 * value, and that something deterministic happens if the guest
1047 * invokes 64-bit SYSENTER.
1048 */
1049 msr->data = get_canonical(msr->data);
1050 }
Will Auld8fe8ab42012-11-29 12:42:12 -08001051 return kvm_x86_ops->set_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001052}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001053EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001054
Carsten Otte313a3dc2007-10-11 19:16:52 +02001055/*
1056 * Adapt set_msr() to msr_io()'s calling convention
1057 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001058static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1059{
1060 struct msr_data msr;
1061 int r;
1062
1063 msr.index = index;
1064 msr.host_initiated = true;
1065 r = kvm_get_msr(vcpu, &msr);
1066 if (r)
1067 return r;
1068
1069 *data = msr.data;
1070 return 0;
1071}
1072
Carsten Otte313a3dc2007-10-11 19:16:52 +02001073static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1074{
Will Auld8fe8ab42012-11-29 12:42:12 -08001075 struct msr_data msr;
1076
1077 msr.data = *data;
1078 msr.index = index;
1079 msr.host_initiated = true;
1080 return kvm_set_msr(vcpu, &msr);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001081}
1082
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001083#ifdef CONFIG_X86_64
1084struct pvclock_gtod_data {
1085 seqcount_t seq;
1086
1087 struct { /* extract of a clocksource struct */
1088 int vclock_mode;
1089 cycle_t cycle_last;
1090 cycle_t mask;
1091 u32 mult;
1092 u32 shift;
1093 } clock;
1094
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001095 u64 boot_ns;
1096 u64 nsec_base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001097};
1098
1099static struct pvclock_gtod_data pvclock_gtod_data;
1100
1101static void update_pvclock_gtod(struct timekeeper *tk)
1102{
1103 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001104 u64 boot_ns;
1105
Peter Zijlstra876e7882015-03-19 10:09:06 +01001106 boot_ns = ktime_to_ns(ktime_add(tk->tkr_mono.base, tk->offs_boot));
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001107
1108 write_seqcount_begin(&vdata->seq);
1109
1110 /* copy pvclock gtod data */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001111 vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode;
1112 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1113 vdata->clock.mask = tk->tkr_mono.mask;
1114 vdata->clock.mult = tk->tkr_mono.mult;
1115 vdata->clock.shift = tk->tkr_mono.shift;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001116
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001117 vdata->boot_ns = boot_ns;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001118 vdata->nsec_base = tk->tkr_mono.xtime_nsec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001119
1120 write_seqcount_end(&vdata->seq);
1121}
1122#endif
1123
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001124void kvm_set_pending_timer(struct kvm_vcpu *vcpu)
1125{
1126 /*
1127 * Note: KVM_REQ_PENDING_TIMER is implicitly checked in
1128 * vcpu_enter_guest. This function is only called from
1129 * the physical CPU that is running vcpu.
1130 */
1131 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1132}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001133
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001134static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1135{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001136 int version;
1137 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001138 struct pvclock_wall_clock wc;
Jason Wang923de3c2010-01-27 19:13:49 +08001139 struct timespec boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001140
1141 if (!wall_clock)
1142 return;
1143
Avi Kivity9ed3c442010-05-04 15:00:37 +03001144 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1145 if (r)
1146 return;
1147
1148 if (version & 1)
1149 ++version; /* first time write, random junk */
1150
1151 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001152
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001153 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
1154
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001155 /*
1156 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001157 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001158 * wall clock specified here. guest system time equals host
1159 * system time for us, thus we must fill in host boot time here.
1160 */
Jason Wang923de3c2010-01-27 19:13:49 +08001161 getboottime(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001162
Bruce Rogers4b648662012-07-20 10:44:24 -06001163 if (kvm->arch.kvmclock_offset) {
1164 struct timespec ts = ns_to_timespec(kvm->arch.kvmclock_offset);
1165 boot = timespec_sub(boot, ts);
1166 }
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001167 wc.sec = boot.tv_sec;
1168 wc.nsec = boot.tv_nsec;
1169 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001170
1171 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1172
1173 version++;
1174 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001175}
1176
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001177static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1178{
1179 uint32_t quotient, remainder;
1180
1181 /* Don't try to replace with do_div(), this one calculates
1182 * "(dividend << 32) / divisor" */
1183 __asm__ ( "divl %4"
1184 : "=a" (quotient), "=d" (remainder)
1185 : "0" (0), "1" (dividend), "r" (divisor) );
1186 return quotient;
1187}
1188
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001189static void kvm_get_time_scale(uint32_t scaled_khz, uint32_t base_khz,
1190 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001191{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001192 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001193 int32_t shift = 0;
1194 uint64_t tps64;
1195 uint32_t tps32;
1196
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001197 tps64 = base_khz * 1000LL;
1198 scaled64 = scaled_khz * 1000LL;
Jan Kiszka50933622010-09-26 13:00:53 +02001199 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001200 tps64 >>= 1;
1201 shift--;
1202 }
1203
1204 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001205 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1206 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001207 scaled64 >>= 1;
1208 else
1209 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001210 shift++;
1211 }
1212
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001213 *pshift = shift;
1214 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001215
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001216 pr_debug("%s: base_khz %u => %u, shift %d, mul %u\n",
1217 __func__, base_khz, scaled_khz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001218}
1219
Zachary Amsden759379d2010-08-19 22:07:25 -10001220static inline u64 get_kernel_ns(void)
1221{
Thomas Gleixnerbb0b5812014-07-16 21:04:52 +00001222 return ktime_get_boot_ns();
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001223}
1224
Marcelo Tosattid8281992012-11-27 23:29:01 -02001225#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001226static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001227#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001228
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001229static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001230static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001231
Joerg Roedel857e4092011-03-25 09:44:50 +01001232static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
Zachary Amsden759379d2010-08-19 22:07:25 -10001233{
Zachary Amsdencc578282012-02-03 15:43:50 -02001234 return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
1235 vcpu->arch.virtual_tsc_shift);
Zachary Amsden759379d2010-08-19 22:07:25 -10001236}
1237
Zachary Amsdencc578282012-02-03 15:43:50 -02001238static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001239{
Zachary Amsdencc578282012-02-03 15:43:50 -02001240 u64 v = (u64)khz * (1000000 + ppm);
1241 do_div(v, 1000000);
1242 return v;
1243}
1244
1245static void kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 this_tsc_khz)
1246{
1247 u32 thresh_lo, thresh_hi;
1248 int use_scaling = 0;
1249
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001250 /* tsc_khz can be zero if TSC calibration fails */
1251 if (this_tsc_khz == 0)
1252 return;
1253
Zachary Amsdenc2855452010-09-18 14:38:15 -10001254 /* Compute a scale to convert nanoseconds in TSC cycles */
1255 kvm_get_time_scale(this_tsc_khz, NSEC_PER_SEC / 1000,
Zachary Amsdencc578282012-02-03 15:43:50 -02001256 &vcpu->arch.virtual_tsc_shift,
1257 &vcpu->arch.virtual_tsc_mult);
1258 vcpu->arch.virtual_tsc_khz = this_tsc_khz;
1259
1260 /*
1261 * Compute the variation in TSC rate which is acceptable
1262 * within the range of tolerance and decide if the
1263 * rate being applied is within that bounds of the hardware
1264 * rate. If so, no scaling or compensation need be done.
1265 */
1266 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1267 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
1268 if (this_tsc_khz < thresh_lo || this_tsc_khz > thresh_hi) {
1269 pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", this_tsc_khz, thresh_lo, thresh_hi);
1270 use_scaling = 1;
1271 }
1272 kvm_x86_ops->set_tsc_khz(vcpu, this_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001273}
1274
1275static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1276{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001277 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001278 vcpu->arch.virtual_tsc_mult,
1279 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001280 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001281 return tsc;
1282}
1283
Fengguang Wu69b00492015-01-19 22:33:39 +08001284static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001285{
1286#ifdef CONFIG_X86_64
1287 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001288 struct kvm_arch *ka = &vcpu->kvm->arch;
1289 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1290
1291 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1292 atomic_read(&vcpu->kvm->online_vcpus));
1293
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001294 /*
1295 * Once the masterclock is enabled, always perform request in
1296 * order to update it.
1297 *
1298 * In order to enable masterclock, the host clocksource must be TSC
1299 * and the vcpus need to have matched TSCs. When that happens,
1300 * perform request to enable masterclock.
1301 */
1302 if (ka->use_master_clock ||
1303 (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001304 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1305
1306 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1307 atomic_read(&vcpu->kvm->online_vcpus),
1308 ka->use_master_clock, gtod->clock.vclock_mode);
1309#endif
1310}
1311
Will Auldba904632012-11-29 12:42:50 -08001312static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1313{
1314 u64 curr_offset = kvm_x86_ops->read_tsc_offset(vcpu);
1315 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1316}
1317
Will Auld8fe8ab42012-11-29 12:42:12 -08001318void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10001319{
1320 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001321 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001322 unsigned long flags;
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001323 s64 usdiff;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001324 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001325 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08001326 u64 data = msr->data;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001327
Jan Kiszka038f8c12011-02-04 10:49:11 +01001328 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Joerg Roedel857e4092011-03-25 09:44:50 +01001329 offset = kvm_x86_ops->compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001330 ns = get_kernel_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001331 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001332
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001333 if (vcpu->arch.virtual_tsc_khz) {
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001334 int faulted = 0;
1335
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001336 /* n.b - signed multiplication and division required */
1337 usdiff = data - kvm->arch.last_tsc_write;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001338#ifdef CONFIG_X86_64
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001339 usdiff = (usdiff * 1000) / vcpu->arch.virtual_tsc_khz;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001340#else
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001341 /* do_div() only does unsigned */
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001342 asm("1: idivl %[divisor]\n"
1343 "2: xor %%edx, %%edx\n"
1344 " movl $0, %[faulted]\n"
1345 "3:\n"
1346 ".section .fixup,\"ax\"\n"
1347 "4: movl $1, %[faulted]\n"
1348 " jmp 3b\n"
1349 ".previous\n"
1350
1351 _ASM_EXTABLE(1b, 4b)
1352
1353 : "=A"(usdiff), [faulted] "=r" (faulted)
1354 : "A"(usdiff * 1000), [divisor] "rm"(vcpu->arch.virtual_tsc_khz));
1355
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001356#endif
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001357 do_div(elapsed, 1000);
1358 usdiff -= elapsed;
1359 if (usdiff < 0)
1360 usdiff = -usdiff;
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001361
1362 /* idivl overflow => difference is larger than USEC_PER_SEC */
1363 if (faulted)
1364 usdiff = USEC_PER_SEC;
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001365 } else
1366 usdiff = USEC_PER_SEC; /* disable TSC match window below */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001367
1368 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001369 * Special case: TSC write with a small delta (1 second) of virtual
1370 * cycle time against real time is interpreted as an attempt to
1371 * synchronize the CPU.
1372 *
1373 * For a reliable TSC, we can match TSC offsets, and for an unstable
1374 * TSC, we add elapsed time in this computation. We could let the
1375 * compensation code attempt to catch up if we fall behind, but
1376 * it's better to try to match offsets from the beginning.
1377 */
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001378 if (usdiff < USEC_PER_SEC &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001379 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001380 if (!check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02001381 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001382 pr_debug("kvm: matched tsc offset for %llu\n", data);
1383 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001384 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001385 data += delta;
1386 offset = kvm_x86_ops->compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001387 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001388 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001389 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001390 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001391 } else {
1392 /*
1393 * We split periods of matched TSC writes into generations.
1394 * For each generation, we track the original measured
1395 * nanosecond time, offset, and write, so if TSCs are in
1396 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08001397 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02001398 *
1399 * These values are tracked in kvm->arch.cur_xxx variables.
1400 */
1401 kvm->arch.cur_tsc_generation++;
1402 kvm->arch.cur_tsc_nsec = ns;
1403 kvm->arch.cur_tsc_write = data;
1404 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001405 matched = false;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001406 pr_debug("kvm: new tsc generation %llu, clock %llu\n",
Zachary Amsdene26101b2012-02-03 15:43:57 -02001407 kvm->arch.cur_tsc_generation, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001408 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02001409
1410 /*
1411 * We also track th most recent recorded KHZ, write and time to
1412 * allow the matching interval to be extended at each write.
1413 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001414 kvm->arch.last_tsc_nsec = ns;
1415 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001416 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001417
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001418 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001419
1420 /* Keep track of which generation this VCPU has synchronized to */
1421 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
1422 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
1423 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
1424
Will Auldba904632012-11-29 12:42:50 -08001425 if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated)
1426 update_ia32_tsc_adjust_msr(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001427 kvm_x86_ops->write_tsc_offset(vcpu, offset);
1428 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001429
1430 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001431 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001432 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001433 } else if (!already_matched) {
1434 kvm->arch.nr_vcpus_matched_tsc++;
1435 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001436
1437 kvm_track_tsc_matching(vcpu);
1438 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001439}
Zachary Amsdene26101b2012-02-03 15:43:57 -02001440
Zachary Amsden99e3e302010-08-19 22:07:17 -10001441EXPORT_SYMBOL_GPL(kvm_write_tsc);
1442
Marcelo Tosattid8281992012-11-27 23:29:01 -02001443#ifdef CONFIG_X86_64
1444
1445static cycle_t read_tsc(void)
1446{
1447 cycle_t ret;
1448 u64 last;
1449
1450 /*
1451 * Empirically, a fence (of type that depends on the CPU)
1452 * before rdtsc is enough to ensure that rdtsc is ordered
1453 * with respect to loads. The various CPU manuals are unclear
1454 * as to whether rdtsc can be reordered with later loads,
1455 * but no one has ever seen it happen.
1456 */
1457 rdtsc_barrier();
1458 ret = (cycle_t)vget_cycles();
1459
1460 last = pvclock_gtod_data.clock.cycle_last;
1461
1462 if (likely(ret >= last))
1463 return ret;
1464
1465 /*
1466 * GCC likes to generate cmov here, but this branch is extremely
1467 * predictable (it's just a funciton of time and the likely is
1468 * very likely) and there's a data dependence, so force GCC
1469 * to generate a branch instead. I don't barrier() because
1470 * we don't actually need a barrier, and if this function
1471 * ever gets inlined it will generate worse code.
1472 */
1473 asm volatile ("");
1474 return last;
1475}
1476
1477static inline u64 vgettsc(cycle_t *cycle_now)
1478{
1479 long v;
1480 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1481
1482 *cycle_now = read_tsc();
1483
1484 v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask;
1485 return v * gtod->clock.mult;
1486}
1487
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001488static int do_monotonic_boot(s64 *t, cycle_t *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001489{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001490 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001491 unsigned long seq;
1492 int mode;
1493 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001494
Marcelo Tosattid8281992012-11-27 23:29:01 -02001495 do {
1496 seq = read_seqcount_begin(&gtod->seq);
1497 mode = gtod->clock.vclock_mode;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001498 ns = gtod->nsec_base;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001499 ns += vgettsc(cycle_now);
1500 ns >>= gtod->clock.shift;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001501 ns += gtod->boot_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001502 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001503 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001504
1505 return mode;
1506}
1507
1508/* returns true if host is using tsc clocksource */
1509static bool kvm_get_time_and_clockread(s64 *kernel_ns, cycle_t *cycle_now)
1510{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001511 /* checked again under seqlock below */
1512 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1513 return false;
1514
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001515 return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001516}
1517#endif
1518
1519/*
1520 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001521 * Assuming a stable TSC across physical CPUS, and a stable TSC
1522 * across virtual CPUs, the following condition is possible.
1523 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02001524 * CPUs at the next numbered event.
1525 *
1526 * "timespecX" represents host monotonic time. "tscX" represents
1527 * RDTSC value.
1528 *
1529 * VCPU0 on CPU0 | VCPU1 on CPU1
1530 *
1531 * 1. read timespec0,tsc0
1532 * 2. | timespec1 = timespec0 + N
1533 * | tsc1 = tsc0 + M
1534 * 3. transition to guest | transition to guest
1535 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
1536 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
1537 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
1538 *
1539 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
1540 *
1541 * - ret0 < ret1
1542 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
1543 * ...
1544 * - 0 < N - M => M < N
1545 *
1546 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
1547 * always the case (the difference between two distinct xtime instances
1548 * might be smaller then the difference between corresponding TSC reads,
1549 * when updating guest vcpus pvclock areas).
1550 *
1551 * To avoid that problem, do not allow visibility of distinct
1552 * system_timestamp/tsc_timestamp values simultaneously: use a master
1553 * copy of host monotonic time values. Update that master copy
1554 * in lockstep.
1555 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001556 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02001557 *
1558 */
1559
1560static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
1561{
1562#ifdef CONFIG_X86_64
1563 struct kvm_arch *ka = &kvm->arch;
1564 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001565 bool host_tsc_clocksource, vcpus_matched;
1566
1567 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1568 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02001569
1570 /*
1571 * If the host uses TSC clock, then passthrough TSC as stable
1572 * to the guest.
1573 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001574 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02001575 &ka->master_kernel_ns,
1576 &ka->master_cycle_now);
1577
Marcelo Tosatti16a96022014-05-14 12:43:24 -03001578 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Marcelo Tosatti54750f22015-01-20 15:54:52 -02001579 && !backwards_tsc_observed
1580 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001581
Marcelo Tosattid8281992012-11-27 23:29:01 -02001582 if (ka->use_master_clock)
1583 atomic_set(&kvm_guest_has_master_clock, 1);
1584
1585 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001586 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
1587 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001588#endif
1589}
1590
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001591static void kvm_gen_update_masterclock(struct kvm *kvm)
1592{
1593#ifdef CONFIG_X86_64
1594 int i;
1595 struct kvm_vcpu *vcpu;
1596 struct kvm_arch *ka = &kvm->arch;
1597
1598 spin_lock(&ka->pvclock_gtod_sync_lock);
1599 kvm_make_mclock_inprogress_request(kvm);
1600 /* no guest entries from this point */
1601 pvclock_update_vm_gtod_copy(kvm);
1602
1603 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001604 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001605
1606 /* guest entries allowed */
1607 kvm_for_each_vcpu(i, vcpu, kvm)
1608 clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests);
1609
1610 spin_unlock(&ka->pvclock_gtod_sync_lock);
1611#endif
1612}
1613
Zachary Amsden34c238a2010-09-18 14:38:14 -10001614static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001615{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001616 unsigned long flags, this_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001617 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001618 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02001619 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001620 u64 tsc_timestamp, host_tsc;
Andy Honig0b794592013-02-20 14:48:10 -08001621 struct pvclock_vcpu_time_info guest_hv_clock;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001622 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001623 bool use_master_clock;
1624
1625 kernel_ns = 0;
1626 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001627
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001628 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02001629 * If the host uses TSC clock, then passthrough TSC as stable
1630 * to the guest.
1631 */
1632 spin_lock(&ka->pvclock_gtod_sync_lock);
1633 use_master_clock = ka->use_master_clock;
1634 if (use_master_clock) {
1635 host_tsc = ka->master_cycle_now;
1636 kernel_ns = ka->master_kernel_ns;
1637 }
1638 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001639
1640 /* Keep irq disabled to prevent changes to the clock */
1641 local_irq_save(flags);
Christoph Lameter89cbc762014-08-17 12:30:40 -05001642 this_tsc_khz = __this_cpu_read(cpu_tsc_khz);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001643 if (unlikely(this_tsc_khz == 0)) {
1644 local_irq_restore(flags);
1645 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
1646 return 1;
1647 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02001648 if (!use_master_clock) {
1649 host_tsc = native_read_tsc();
1650 kernel_ns = get_kernel_ns();
1651 }
1652
1653 tsc_timestamp = kvm_x86_ops->read_l1_tsc(v, host_tsc);
1654
1655 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001656 * We may have to catch up the TSC to match elapsed wall clock
1657 * time for two reasons, even if kvmclock is used.
1658 * 1) CPU could have been running below the maximum TSC rate
1659 * 2) Broken TSC compensation resets the base at each VCPU
1660 * entry to avoid unknown leaps of TSC even when running
1661 * again on the same CPU. This may cause apparent elapsed
1662 * time to disappear, and the guest to stand still or run
1663 * very slowly.
1664 */
1665 if (vcpu->tsc_catchup) {
1666 u64 tsc = compute_guest_tsc(v, kernel_ns);
1667 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02001668 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001669 tsc_timestamp = tsc;
1670 }
1671 }
1672
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001673 local_irq_restore(flags);
1674
Andy Honig0b794592013-02-20 14:48:10 -08001675 if (!vcpu->pv_time_enabled)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001676 return 0;
1677
Zachary Amsdene48672f2010-08-19 22:07:23 -10001678 if (unlikely(vcpu->hw_tsc_khz != this_tsc_khz)) {
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001679 kvm_get_time_scale(NSEC_PER_SEC / 1000, this_tsc_khz,
1680 &vcpu->hv_clock.tsc_shift,
1681 &vcpu->hv_clock.tsc_to_system_mul);
Zachary Amsdene48672f2010-08-19 22:07:23 -10001682 vcpu->hw_tsc_khz = this_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001683 }
1684
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001685 /* With all the info we got, fill in the values */
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001686 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001687 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10001688 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001689
Owen Hofmann09a0c3f2014-11-03 16:57:18 -08001690 if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time,
1691 &guest_hv_clock, sizeof(guest_hv_clock))))
1692 return 0;
1693
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001694 /* This VCPU is paused, but it's legal for a guest to read another
1695 * VCPU's kvmclock, so we really have to follow the specification where
1696 * it says that version is odd if data is being modified, and even after
1697 * it is consistent.
1698 *
1699 * Version field updates must be kept separate. This is because
1700 * kvm_write_guest_cached might use a "rep movs" instruction, and
1701 * writes within a string instruction are weakly ordered. So there
1702 * are three writes overall.
1703 *
1704 * As a small optimization, only write the version field in the first
1705 * and third write. The vcpu->pv_time cache is still valid, because the
1706 * version field is the first in the struct.
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001707 */
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001708 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
1709
1710 vcpu->hv_clock.version = guest_hv_clock.version + 1;
1711 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1712 &vcpu->hv_clock,
1713 sizeof(vcpu->hv_clock.version));
1714
1715 smp_wmb();
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001716
1717 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
Andy Honig0b794592013-02-20 14:48:10 -08001718 pvclock_flags = (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001719
1720 if (vcpu->pvclock_set_guest_stopped_request) {
1721 pvclock_flags |= PVCLOCK_GUEST_STOPPED;
1722 vcpu->pvclock_set_guest_stopped_request = false;
1723 }
1724
Marcelo Tosattib7e60c52015-05-28 20:20:41 -03001725 pvclock_flags |= PVCLOCK_COUNTS_FROM_ZERO;
1726
Marcelo Tosattid8281992012-11-27 23:29:01 -02001727 /* If the host uses TSC clocksource, then it is stable */
1728 if (use_master_clock)
1729 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
1730
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001731 vcpu->hv_clock.flags = pvclock_flags;
1732
David Matlackce1a5e62014-11-05 11:46:42 -08001733 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
1734
Andy Honig0b794592013-02-20 14:48:10 -08001735 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1736 &vcpu->hv_clock,
1737 sizeof(vcpu->hv_clock));
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001738
1739 smp_wmb();
1740
1741 vcpu->hv_clock.version++;
1742 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1743 &vcpu->hv_clock,
1744 sizeof(vcpu->hv_clock.version));
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001745 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001746}
1747
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001748/*
1749 * kvmclock updates which are isolated to a given vcpu, such as
1750 * vcpu->cpu migration, should not allow system_timestamp from
1751 * the rest of the vcpus to remain static. Otherwise ntp frequency
1752 * correction applies to one vcpu's system_timestamp but not
1753 * the others.
1754 *
1755 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01001756 * We need to rate-limit these requests though, as they can
1757 * considerably slow guests that have a large number of vcpus.
1758 * The time for a remote vcpu to update its kvmclock is bound
1759 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001760 */
1761
Andrew Jones7e44e442014-02-28 12:52:54 +01001762#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
1763
1764static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001765{
1766 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01001767 struct delayed_work *dwork = to_delayed_work(work);
1768 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1769 kvmclock_update_work);
1770 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001771 struct kvm_vcpu *vcpu;
1772
1773 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001774 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001775 kvm_vcpu_kick(vcpu);
1776 }
1777}
1778
Andrew Jones7e44e442014-02-28 12:52:54 +01001779static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
1780{
1781 struct kvm *kvm = v->kvm;
1782
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001783 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01001784 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
1785 KVMCLOCK_UPDATE_DELAY);
1786}
1787
Andrew Jones332967a2014-02-28 12:52:55 +01001788#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
1789
1790static void kvmclock_sync_fn(struct work_struct *work)
1791{
1792 struct delayed_work *dwork = to_delayed_work(work);
1793 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1794 kvmclock_sync_work);
1795 struct kvm *kvm = container_of(ka, struct kvm, arch);
1796
Marcelo Tosatti630994b2015-05-12 22:42:04 -03001797 if (!kvmclock_periodic_sync)
1798 return;
1799
Andrew Jones332967a2014-02-28 12:52:55 +01001800 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
1801 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
1802 KVMCLOCK_SYNC_PERIOD);
1803}
1804
Huang Ying890ca9a2009-05-11 16:48:15 +08001805static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1806{
1807 u64 mcg_cap = vcpu->arch.mcg_cap;
1808 unsigned bank_num = mcg_cap & 0xff;
1809
1810 switch (msr) {
1811 case MSR_IA32_MCG_STATUS:
1812 vcpu->arch.mcg_status = data;
1813 break;
1814 case MSR_IA32_MCG_CTL:
1815 if (!(mcg_cap & MCG_CTL_P))
1816 return 1;
1817 if (data != 0 && data != ~(u64)0)
1818 return -1;
1819 vcpu->arch.mcg_ctl = data;
1820 break;
1821 default:
1822 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08001823 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08001824 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01001825 /* only 0 or all 1s can be written to IA32_MCi_CTL
1826 * some Linux kernels though clear bit 10 in bank 4 to
1827 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
1828 * this to avoid an uncatched #GP in the guest
1829 */
Huang Ying890ca9a2009-05-11 16:48:15 +08001830 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01001831 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08001832 return -1;
1833 vcpu->arch.mce_banks[offset] = data;
1834 break;
1835 }
1836 return 1;
1837 }
1838 return 0;
1839}
1840
Ed Swierkffde22a2009-10-15 15:21:43 -07001841static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
1842{
1843 struct kvm *kvm = vcpu->kvm;
1844 int lm = is_long_mode(vcpu);
1845 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
1846 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
1847 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
1848 : kvm->arch.xen_hvm_config.blob_size_32;
1849 u32 page_num = data & ~PAGE_MASK;
1850 u64 page_addr = data & PAGE_MASK;
1851 u8 *page;
1852 int r;
1853
1854 r = -E2BIG;
1855 if (page_num >= blob_size)
1856 goto out;
1857 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001858 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
1859 if (IS_ERR(page)) {
1860 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07001861 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001862 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001863 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07001864 goto out_free;
1865 r = 0;
1866out_free:
1867 kfree(page);
1868out:
1869 return r;
1870}
1871
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001872static bool kvm_hv_hypercall_enabled(struct kvm *kvm)
1873{
1874 return kvm->arch.hv_hypercall & HV_X64_MSR_HYPERCALL_ENABLE;
1875}
1876
1877static bool kvm_hv_msr_partition_wide(u32 msr)
1878{
1879 bool r = false;
1880 switch (msr) {
1881 case HV_X64_MSR_GUEST_OS_ID:
1882 case HV_X64_MSR_HYPERCALL:
Vadim Rozenfelde9840972014-01-16 20:18:37 +11001883 case HV_X64_MSR_REFERENCE_TSC:
1884 case HV_X64_MSR_TIME_REF_COUNT:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001885 r = true;
1886 break;
1887 }
1888
1889 return r;
1890}
1891
1892static int set_msr_hyperv_pw(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1893{
1894 struct kvm *kvm = vcpu->kvm;
1895
1896 switch (msr) {
1897 case HV_X64_MSR_GUEST_OS_ID:
1898 kvm->arch.hv_guest_os_id = data;
1899 /* setting guest os id to zero disables hypercall page */
1900 if (!kvm->arch.hv_guest_os_id)
1901 kvm->arch.hv_hypercall &= ~HV_X64_MSR_HYPERCALL_ENABLE;
1902 break;
1903 case HV_X64_MSR_HYPERCALL: {
1904 u64 gfn;
1905 unsigned long addr;
1906 u8 instructions[4];
1907
1908 /* if guest os id is not set hypercall should remain disabled */
1909 if (!kvm->arch.hv_guest_os_id)
1910 break;
1911 if (!(data & HV_X64_MSR_HYPERCALL_ENABLE)) {
1912 kvm->arch.hv_hypercall = data;
1913 break;
1914 }
1915 gfn = data >> HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_SHIFT;
1916 addr = gfn_to_hva(kvm, gfn);
1917 if (kvm_is_error_hva(addr))
1918 return 1;
1919 kvm_x86_ops->patch_hypercall(vcpu, instructions);
1920 ((unsigned char *)instructions)[3] = 0xc3; /* ret */
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001921 if (__copy_to_user((void __user *)addr, instructions, 4))
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001922 return 1;
1923 kvm->arch.hv_hypercall = data;
Vadim Rozenfeldb94b64c2014-01-23 18:12:52 +11001924 mark_page_dirty(kvm, gfn);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001925 break;
1926 }
Vadim Rozenfelde9840972014-01-16 20:18:37 +11001927 case HV_X64_MSR_REFERENCE_TSC: {
1928 u64 gfn;
1929 HV_REFERENCE_TSC_PAGE tsc_ref;
1930 memset(&tsc_ref, 0, sizeof(tsc_ref));
1931 kvm->arch.hv_tsc_page = data;
1932 if (!(data & HV_X64_MSR_TSC_REFERENCE_ENABLE))
1933 break;
1934 gfn = data >> HV_X64_MSR_TSC_REFERENCE_ADDRESS_SHIFT;
Xiaoming Gaoe1fa108d2014-06-19 19:14:57 +08001935 if (kvm_write_guest(kvm, gfn << HV_X64_MSR_TSC_REFERENCE_ADDRESS_SHIFT,
Vadim Rozenfelde9840972014-01-16 20:18:37 +11001936 &tsc_ref, sizeof(tsc_ref)))
1937 return 1;
1938 mark_page_dirty(kvm, gfn);
1939 break;
1940 }
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001941 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03001942 vcpu_unimpl(vcpu, "HYPER-V unimplemented wrmsr: 0x%x "
1943 "data 0x%llx\n", msr, data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001944 return 1;
1945 }
1946 return 0;
1947}
1948
1949static int set_msr_hyperv(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1950{
Gleb Natapov10388a02010-01-17 15:51:23 +02001951 switch (msr) {
1952 case HV_X64_MSR_APIC_ASSIST_PAGE: {
Vadim Rozenfeldb3af1e82014-01-23 18:12:53 +11001953 u64 gfn;
Gleb Natapov10388a02010-01-17 15:51:23 +02001954 unsigned long addr;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001955
Gleb Natapov10388a02010-01-17 15:51:23 +02001956 if (!(data & HV_X64_MSR_APIC_ASSIST_PAGE_ENABLE)) {
1957 vcpu->arch.hv_vapic = data;
Michael S. Tsirkinb63cf422014-05-07 16:29:48 +03001958 if (kvm_lapic_enable_pv_eoi(vcpu, 0))
1959 return 1;
Gleb Natapov10388a02010-01-17 15:51:23 +02001960 break;
1961 }
Vadim Rozenfeldb3af1e82014-01-23 18:12:53 +11001962 gfn = data >> HV_X64_MSR_APIC_ASSIST_PAGE_ADDRESS_SHIFT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001963 addr = kvm_vcpu_gfn_to_hva(vcpu, gfn);
Gleb Natapov10388a02010-01-17 15:51:23 +02001964 if (kvm_is_error_hva(addr))
1965 return 1;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001966 if (__clear_user((void __user *)addr, PAGE_SIZE))
Gleb Natapov10388a02010-01-17 15:51:23 +02001967 return 1;
1968 vcpu->arch.hv_vapic = data;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001969 kvm_vcpu_mark_page_dirty(vcpu, gfn);
Michael S. Tsirkinb63cf422014-05-07 16:29:48 +03001970 if (kvm_lapic_enable_pv_eoi(vcpu, gfn_to_gpa(gfn) | KVM_MSR_ENABLED))
1971 return 1;
Gleb Natapov10388a02010-01-17 15:51:23 +02001972 break;
1973 }
1974 case HV_X64_MSR_EOI:
1975 return kvm_hv_vapic_msr_write(vcpu, APIC_EOI, data);
1976 case HV_X64_MSR_ICR:
1977 return kvm_hv_vapic_msr_write(vcpu, APIC_ICR, data);
1978 case HV_X64_MSR_TPR:
1979 return kvm_hv_vapic_msr_write(vcpu, APIC_TASKPRI, data);
1980 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03001981 vcpu_unimpl(vcpu, "HYPER-V unimplemented wrmsr: 0x%x "
1982 "data 0x%llx\n", msr, data);
Gleb Natapov10388a02010-01-17 15:51:23 +02001983 return 1;
1984 }
1985
1986 return 0;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001987}
1988
Gleb Natapov344d9582010-10-14 11:22:50 +02001989static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
1990{
1991 gpa_t gpa = data & ~0x3f;
1992
Guo Chao4a969982012-06-28 15:17:27 +08001993 /* Bits 2:5 are reserved, Should be zero */
Gleb Natapov6adba522010-10-14 11:22:55 +02001994 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02001995 return 1;
1996
1997 vcpu->arch.apf.msr_val = data;
1998
1999 if (!(data & KVM_ASYNC_PF_ENABLED)) {
2000 kvm_clear_async_pf_completion_queue(vcpu);
2001 kvm_async_pf_hash_reset(vcpu);
2002 return 0;
2003 }
2004
Andrew Honig8f964522013-03-29 09:35:21 -07002005 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
2006 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02002007 return 1;
2008
Gleb Natapov6adba522010-10-14 11:22:55 +02002009 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02002010 kvm_async_pf_wakeup_all(vcpu);
2011 return 0;
2012}
2013
Glauber Costa12f9a482011-02-01 14:16:40 -05002014static void kvmclock_reset(struct kvm_vcpu *vcpu)
2015{
Andy Honig0b794592013-02-20 14:48:10 -08002016 vcpu->arch.pv_time_enabled = false;
Glauber Costa12f9a482011-02-01 14:16:40 -05002017}
2018
Glauber Costac9aaa892011-07-11 15:28:14 -04002019static void accumulate_steal_time(struct kvm_vcpu *vcpu)
2020{
2021 u64 delta;
2022
2023 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2024 return;
2025
2026 delta = current->sched_info.run_delay - vcpu->arch.st.last_steal;
2027 vcpu->arch.st.last_steal = current->sched_info.run_delay;
2028 vcpu->arch.st.accum_steal = delta;
2029}
2030
2031static void record_steal_time(struct kvm_vcpu *vcpu)
2032{
2033 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2034 return;
2035
2036 if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2037 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
2038 return;
2039
2040 vcpu->arch.st.steal.steal += vcpu->arch.st.accum_steal;
2041 vcpu->arch.st.steal.version += 2;
2042 vcpu->arch.st.accum_steal = 0;
2043
2044 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2045 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2046}
2047
Will Auld8fe8ab42012-11-29 12:42:12 -08002048int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002049{
Gleb Natapov57537852012-01-15 14:17:22 +02002050 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002051 u32 msr = msr_info->index;
2052 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002053
Carsten Otte15c4a642007-10-30 18:44:17 +01002054 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002055 case MSR_AMD64_NB_CFG:
2056 case MSR_IA32_UCODE_REV:
2057 case MSR_IA32_UCODE_WRITE:
2058 case MSR_VM_HSAVE_PA:
2059 case MSR_AMD64_PATCH_LOADER:
2060 case MSR_AMD64_BU_CFG2:
2061 break;
2062
Carsten Otte15c4a642007-10-30 18:44:17 +01002063 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02002064 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002065 case MSR_K7_HWCR:
2066 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002067 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002068 data &= ~(u64)0x8; /* ignore TLB cache disable */
Matthias Lange22d48b2d2014-06-26 13:50:15 +02002069 data &= ~(u64)0x40000; /* ignore Mc status write enable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02002070 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002071 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2072 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002073 return 1;
2074 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002075 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002076 case MSR_FAM10H_MMIO_CONF_BASE:
2077 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002078 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2079 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002080 return 1;
2081 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002082 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002083 case MSR_IA32_DEBUGCTLMSR:
2084 if (!data) {
2085 /* We support the non-activated case already */
2086 break;
2087 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2088 /* Values other than LBR and BTF are vendor-specific,
2089 thus reserved and should throw a #GP */
2090 return 1;
2091 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002092 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2093 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002094 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002095 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002096 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002097 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002098 return kvm_set_apic_base(vcpu, msr_info);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002099 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2100 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002101 case MSR_IA32_TSCDEADLINE:
2102 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2103 break;
Will Auldba904632012-11-29 12:42:50 -08002104 case MSR_IA32_TSC_ADJUST:
2105 if (guest_cpuid_has_tsc_adjust(vcpu)) {
2106 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002107 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08002108 kvm_x86_ops->adjust_tsc_offset(vcpu, adj, true);
2109 }
2110 vcpu->arch.ia32_tsc_adjust_msr = data;
2111 }
2112 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002113 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002114 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01002115 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002116 case MSR_IA32_SMBASE:
2117 if (!msr_info->host_initiated)
2118 return 1;
2119 vcpu->arch.smbase = data;
2120 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002121 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002122 case MSR_KVM_WALL_CLOCK:
2123 vcpu->kvm->arch.wall_clock = data;
2124 kvm_write_wall_clock(vcpu->kvm, data);
2125 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002126 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002127 case MSR_KVM_SYSTEM_TIME: {
Andy Honig0b794592013-02-20 14:48:10 -08002128 u64 gpa_offset;
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002129 struct kvm_arch *ka = &vcpu->kvm->arch;
2130
Glauber Costa12f9a482011-02-01 14:16:40 -05002131 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002132
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002133 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2134 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2135
2136 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
2137 set_bit(KVM_REQ_MASTERCLOCK_UPDATE,
2138 &vcpu->requests);
2139
2140 ka->boot_vcpu_runs_old_kvmclock = tmp;
Marcelo Tosattib7e60c52015-05-28 20:20:41 -03002141
2142 ka->kvmclock_offset = -get_kernel_ns();
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002143 }
2144
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002145 vcpu->arch.time = data;
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002146 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002147
2148 /* we verify if the enable bit is set... */
2149 if (!(data & 1))
2150 break;
2151
Andy Honig0b794592013-02-20 14:48:10 -08002152 gpa_offset = data & ~(PAGE_MASK | 1);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002153
Andy Honig0b794592013-02-20 14:48:10 -08002154 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andrew Honig8f964522013-03-29 09:35:21 -07002155 &vcpu->arch.pv_time, data & ~1ULL,
2156 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002157 vcpu->arch.pv_time_enabled = false;
2158 else
2159 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002160
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002161 break;
2162 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002163 case MSR_KVM_ASYNC_PF_EN:
2164 if (kvm_pv_enable_async_pf(vcpu, data))
2165 return 1;
2166 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002167 case MSR_KVM_STEAL_TIME:
2168
2169 if (unlikely(!sched_info_on()))
2170 return 1;
2171
2172 if (data & KVM_STEAL_RESERVED_MASK)
2173 return 1;
2174
2175 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.st.stime,
Andrew Honig8f964522013-03-29 09:35:21 -07002176 data & KVM_STEAL_VALID_BITS,
2177 sizeof(struct kvm_steal_time)))
Glauber Costac9aaa892011-07-11 15:28:14 -04002178 return 1;
2179
2180 vcpu->arch.st.msr_val = data;
2181
2182 if (!(data & KVM_MSR_ENABLED))
2183 break;
2184
2185 vcpu->arch.st.last_steal = current->sched_info.run_delay;
2186
2187 preempt_disable();
2188 accumulate_steal_time(vcpu);
2189 preempt_enable();
2190
2191 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2192
2193 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002194 case MSR_KVM_PV_EOI_EN:
2195 if (kvm_lapic_enable_pv_eoi(vcpu, data))
2196 return 1;
2197 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002198
Huang Ying890ca9a2009-05-11 16:48:15 +08002199 case MSR_IA32_MCG_CTL:
2200 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002201 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Huang Ying890ca9a2009-05-11 16:48:15 +08002202 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002203
Wei Huang6912ac32015-06-12 01:34:56 -04002204 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2205 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2206 pr = true; /* fall through */
2207 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2208 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002209 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002210 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002211
2212 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002213 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2214 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002215 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002216 case MSR_K7_CLK_CTL:
2217 /*
2218 * Ignore all writes to this no longer documented MSR.
2219 * Writes are only relevant for old K7 processors,
2220 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002221 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002222 * affected processor models on the command line, hence
2223 * the need to ignore the workaround.
2224 */
2225 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002226 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
2227 if (kvm_hv_msr_partition_wide(msr)) {
2228 int r;
2229 mutex_lock(&vcpu->kvm->lock);
2230 r = set_msr_hyperv_pw(vcpu, msr, data);
2231 mutex_unlock(&vcpu->kvm->lock);
2232 return r;
2233 } else
2234 return set_msr_hyperv(vcpu, msr, data);
2235 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002236 case MSR_IA32_BBL_CR_CTL3:
2237 /* Drop writes to this legacy MSR -- see rdmsr
2238 * counterpart for further detail.
2239 */
Christoffer Dalla737f252012-06-03 21:17:48 +03002240 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002241 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002242 case MSR_AMD64_OSVW_ID_LENGTH:
2243 if (!guest_cpuid_has_osvw(vcpu))
2244 return 1;
2245 vcpu->arch.osvw.length = data;
2246 break;
2247 case MSR_AMD64_OSVW_STATUS:
2248 if (!guest_cpuid_has_osvw(vcpu))
2249 return 1;
2250 vcpu->arch.osvw.status = data;
2251 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002252 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07002253 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
2254 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02002255 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002256 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02002257 if (!ignore_msrs) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002258 vcpu_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n",
2259 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002260 return 1;
2261 } else {
Christoffer Dalla737f252012-06-03 21:17:48 +03002262 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n",
2263 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002264 break;
2265 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002266 }
2267 return 0;
2268}
2269EXPORT_SYMBOL_GPL(kvm_set_msr_common);
2270
2271
2272/*
2273 * Reads an msr value (of 'msr_index') into 'pdata'.
2274 * Returns 0 on success, non-0 otherwise.
2275 * Assumes vcpu_load() was already called.
2276 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002277int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01002278{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002279 return kvm_x86_ops->get_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002280}
Wincy Vanff651cb2014-12-11 08:52:58 +03002281EXPORT_SYMBOL_GPL(kvm_get_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002282
Huang Ying890ca9a2009-05-11 16:48:15 +08002283static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2284{
2285 u64 data;
2286 u64 mcg_cap = vcpu->arch.mcg_cap;
2287 unsigned bank_num = mcg_cap & 0xff;
2288
2289 switch (msr) {
2290 case MSR_IA32_P5_MC_ADDR:
2291 case MSR_IA32_P5_MC_TYPE:
2292 data = 0;
2293 break;
2294 case MSR_IA32_MCG_CAP:
2295 data = vcpu->arch.mcg_cap;
2296 break;
2297 case MSR_IA32_MCG_CTL:
2298 if (!(mcg_cap & MCG_CTL_P))
2299 return 1;
2300 data = vcpu->arch.mcg_ctl;
2301 break;
2302 case MSR_IA32_MCG_STATUS:
2303 data = vcpu->arch.mcg_status;
2304 break;
2305 default:
2306 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002307 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002308 u32 offset = msr - MSR_IA32_MC0_CTL;
2309 data = vcpu->arch.mce_banks[offset];
2310 break;
2311 }
2312 return 1;
2313 }
2314 *pdata = data;
2315 return 0;
2316}
2317
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002318static int get_msr_hyperv_pw(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2319{
2320 u64 data = 0;
2321 struct kvm *kvm = vcpu->kvm;
2322
2323 switch (msr) {
2324 case HV_X64_MSR_GUEST_OS_ID:
2325 data = kvm->arch.hv_guest_os_id;
2326 break;
2327 case HV_X64_MSR_HYPERCALL:
2328 data = kvm->arch.hv_hypercall;
2329 break;
Vadim Rozenfelde9840972014-01-16 20:18:37 +11002330 case HV_X64_MSR_TIME_REF_COUNT: {
2331 data =
2332 div_u64(get_kernel_ns() + kvm->arch.kvmclock_offset, 100);
2333 break;
2334 }
2335 case HV_X64_MSR_REFERENCE_TSC:
2336 data = kvm->arch.hv_tsc_page;
2337 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002338 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03002339 vcpu_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002340 return 1;
2341 }
2342
2343 *pdata = data;
2344 return 0;
2345}
2346
2347static int get_msr_hyperv(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2348{
2349 u64 data = 0;
2350
2351 switch (msr) {
2352 case HV_X64_MSR_VP_INDEX: {
2353 int r;
2354 struct kvm_vcpu *v;
Takuya Yoshikawa684851a2014-02-27 15:08:31 +09002355 kvm_for_each_vcpu(r, v, vcpu->kvm) {
2356 if (v == vcpu) {
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002357 data = r;
Takuya Yoshikawa684851a2014-02-27 15:08:31 +09002358 break;
2359 }
2360 }
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002361 break;
2362 }
Gleb Natapov10388a02010-01-17 15:51:23 +02002363 case HV_X64_MSR_EOI:
2364 return kvm_hv_vapic_msr_read(vcpu, APIC_EOI, pdata);
2365 case HV_X64_MSR_ICR:
2366 return kvm_hv_vapic_msr_read(vcpu, APIC_ICR, pdata);
2367 case HV_X64_MSR_TPR:
2368 return kvm_hv_vapic_msr_read(vcpu, APIC_TASKPRI, pdata);
Mike Waychison14fa67e2011-07-21 15:38:10 -07002369 case HV_X64_MSR_APIC_ASSIST_PAGE:
Mike Waychisond1613ad2011-07-23 00:31:45 -07002370 data = vcpu->arch.hv_vapic;
2371 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002372 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03002373 vcpu_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002374 return 1;
2375 }
2376 *pdata = data;
2377 return 0;
2378}
2379
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002380int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002381{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002382 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01002383 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01002384 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002385 case MSR_IA32_DEBUGCTLMSR:
2386 case MSR_IA32_LASTBRANCHFROMIP:
2387 case MSR_IA32_LASTBRANCHTOIP:
2388 case MSR_IA32_LASTINTFROMIP:
2389 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302390 case MSR_K8_SYSCFG:
2391 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02002392 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02002393 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02002394 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002395 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002396 case MSR_AMD64_BU_CFG2:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002397 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01002398 break;
Wei Huang6912ac32015-06-12 01:34:56 -04002399 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2400 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2401 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2402 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002403 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002404 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
2405 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02002406 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002407 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002408 msr_info->data = 0x100000000ULL;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002409 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002410 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03002411 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002412 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002413 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002414 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01002415 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02002416 /*
2417 * MSR_EBC_FREQUENCY_ID
2418 * Conservative value valid for even the basic CPU models.
2419 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
2420 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
2421 * and 266MHz for model 3, or 4. Set Core Clock
2422 * Frequency to System Bus Frequency Ratio to 1 (bits
2423 * 31:24) even though these are only valid for CPU
2424 * models > 2, however guests may end up dividing or
2425 * multiplying by zero otherwise.
2426 */
2427 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002428 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02002429 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002430 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002431 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01002432 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002433 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002434 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002435 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002436 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002437 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002438 break;
Will Auldba904632012-11-29 12:42:50 -08002439 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002440 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08002441 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002442 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002443 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01002444 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002445 case MSR_IA32_SMBASE:
2446 if (!msr_info->host_initiated)
2447 return 1;
2448 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01002449 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002450 case MSR_IA32_PERF_STATUS:
2451 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002452 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002453 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08002454 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01002455 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002456 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002457 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01002458 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002459 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002460 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002461 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002462 break;
2463 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002464 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002465 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002466 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02002467 case MSR_KVM_ASYNC_PF_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002468 msr_info->data = vcpu->arch.apf.msr_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02002469 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002470 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002471 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04002472 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002473 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002474 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002475 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002476 case MSR_IA32_P5_MC_ADDR:
2477 case MSR_IA32_P5_MC_TYPE:
2478 case MSR_IA32_MCG_CAP:
2479 case MSR_IA32_MCG_CTL:
2480 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002481 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002482 return get_msr_mce(vcpu, msr_info->index, &msr_info->data);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002483 case MSR_K7_CLK_CTL:
2484 /*
2485 * Provide expected ramp-up count for K7. All other
2486 * are set to zero, indicating minimum divisors for
2487 * every field.
2488 *
2489 * This prevents guest kernels on AMD host with CPU
2490 * type 6, model 8 and higher from exploding due to
2491 * the rdmsr failing.
2492 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002493 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002494 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002495 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002496 if (kvm_hv_msr_partition_wide(msr_info->index)) {
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002497 int r;
2498 mutex_lock(&vcpu->kvm->lock);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002499 r = get_msr_hyperv_pw(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002500 mutex_unlock(&vcpu->kvm->lock);
2501 return r;
2502 } else
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002503 return get_msr_hyperv(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002504 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002505 case MSR_IA32_BBL_CR_CTL3:
2506 /* This legacy MSR exists but isn't fully documented in current
2507 * silicon. It is however accessed by winxp in very narrow
2508 * scenarios where it sets bit #19, itself documented as
2509 * a "reserved" bit. Best effort attempt to source coherent
2510 * read data here should the balance of the register be
2511 * interpreted by the guest:
2512 *
2513 * L2 cache control register 3: 64GB range, 256KB size,
2514 * enabled, latency 0x1, configured
2515 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002516 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05002517 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002518 case MSR_AMD64_OSVW_ID_LENGTH:
2519 if (!guest_cpuid_has_osvw(vcpu))
2520 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002521 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002522 break;
2523 case MSR_AMD64_OSVW_STATUS:
2524 if (!guest_cpuid_has_osvw(vcpu))
2525 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002526 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002527 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002528 default:
Wei Huangc6702c92015-06-19 13:44:45 +02002529 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002530 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002531 if (!ignore_msrs) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002532 vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr_info->index);
Andre Przywaraed85c062009-06-25 12:36:49 +02002533 return 1;
2534 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002535 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index);
2536 msr_info->data = 0;
Andre Przywaraed85c062009-06-25 12:36:49 +02002537 }
2538 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002539 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002540 return 0;
2541}
2542EXPORT_SYMBOL_GPL(kvm_get_msr_common);
2543
Carsten Otte313a3dc2007-10-11 19:16:52 +02002544/*
2545 * Read or write a bunch of msrs. All parameters are kernel addresses.
2546 *
2547 * @return number of msrs set successfully.
2548 */
2549static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2550 struct kvm_msr_entry *entries,
2551 int (*do_msr)(struct kvm_vcpu *vcpu,
2552 unsigned index, u64 *data))
2553{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002554 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002555
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002556 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002557 for (i = 0; i < msrs->nmsrs; ++i)
2558 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2559 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002560 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002561
Carsten Otte313a3dc2007-10-11 19:16:52 +02002562 return i;
2563}
2564
2565/*
2566 * Read or write a bunch of msrs. Parameters are user addresses.
2567 *
2568 * @return number of msrs set successfully.
2569 */
2570static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2571 int (*do_msr)(struct kvm_vcpu *vcpu,
2572 unsigned index, u64 *data),
2573 int writeback)
2574{
2575 struct kvm_msrs msrs;
2576 struct kvm_msr_entry *entries;
2577 int r, n;
2578 unsigned size;
2579
2580 r = -EFAULT;
2581 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2582 goto out;
2583
2584 r = -E2BIG;
2585 if (msrs.nmsrs >= MAX_IO_MSRS)
2586 goto out;
2587
Carsten Otte313a3dc2007-10-11 19:16:52 +02002588 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002589 entries = memdup_user(user_msrs->entries, size);
2590 if (IS_ERR(entries)) {
2591 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002592 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002593 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02002594
2595 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2596 if (r < 0)
2597 goto out_free;
2598
2599 r = -EFAULT;
2600 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2601 goto out_free;
2602
2603 r = n;
2604
2605out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002606 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002607out:
2608 return r;
2609}
2610
Alexander Graf784aa3d2014-07-14 18:27:35 +02002611int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002612{
2613 int r;
2614
2615 switch (ext) {
2616 case KVM_CAP_IRQCHIP:
2617 case KVM_CAP_HLT:
2618 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002619 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002620 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002621 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002622 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002623 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002624 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002625 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002626 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002627 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002628 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002629 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002630 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03002631 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002632 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002633 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002634 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002635 case KVM_CAP_XEN_HVM:
Glauber Costaafbcf7a2009-10-16 15:28:36 -04002636 case KVM_CAP_ADJUST_CLOCK:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002637 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002638 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002639 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002640 case KVM_CAP_HYPERV_SPIN:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002641 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002642 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002643 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002644 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002645 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002646 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002647 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002648 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01002649 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05002650 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01002651 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03002652 case KVM_CAP_ENABLE_CAP_VM:
2653 case KVM_CAP_DISABLE_QUIRKS:
Alex Williamson2a5bab12013-04-16 13:49:18 -06002654#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
2655 case KVM_CAP_ASSIGN_DEV_IRQ:
2656 case KVM_CAP_PCI_2_3:
2657#endif
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002658 r = 1;
2659 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02002660 case KVM_CAP_X86_SMM:
2661 /* SMBASE is usually relocated above 1M on modern chipsets,
2662 * and SMM handlers might indeed rely on 4G segment limits,
2663 * so do not report SMM to be available if real mode is
2664 * emulated via vm86 mode. Still, do not go to great lengths
2665 * to avoid userspace's usage of the feature, because it is a
2666 * fringe case that is not enabled except via specific settings
2667 * of the module parameters.
2668 */
2669 r = kvm_x86_ops->cpu_has_high_real_mode_segbase();
2670 break;
Laurent Vivier542472b2008-05-30 16:05:55 +02002671 case KVM_CAP_COALESCED_MMIO:
2672 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
2673 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002674 case KVM_CAP_VAPIC:
2675 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2676 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002677 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002678 r = KVM_SOFT_MAX_VCPUS;
2679 break;
2680 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002681 r = KVM_MAX_VCPUS;
2682 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002683 case KVM_CAP_NR_MEMSLOTS:
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07002684 r = KVM_USER_MEM_SLOTS;
Avi Kivitya988b912008-02-20 11:59:20 +02002685 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002686 case KVM_CAP_PV_MMU: /* obsolete */
2687 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002688 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002689#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002690 case KVM_CAP_IOMMU:
Joerg Roedela1b60c12011-09-06 18:46:34 +02002691 r = iommu_present(&pci_bus_type);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002692 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002693#endif
Huang Ying890ca9a2009-05-11 16:48:15 +08002694 case KVM_CAP_MCE:
2695 r = KVM_MAX_MCE_BANKS;
2696 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002697 case KVM_CAP_XCRS:
2698 r = cpu_has_xsave;
2699 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002700 case KVM_CAP_TSC_CONTROL:
2701 r = kvm_has_tsc_control;
2702 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002703 default:
2704 r = 0;
2705 break;
2706 }
2707 return r;
2708
2709}
2710
Carsten Otte043405e2007-10-10 17:16:19 +02002711long kvm_arch_dev_ioctl(struct file *filp,
2712 unsigned int ioctl, unsigned long arg)
2713{
2714 void __user *argp = (void __user *)arg;
2715 long r;
2716
2717 switch (ioctl) {
2718 case KVM_GET_MSR_INDEX_LIST: {
2719 struct kvm_msr_list __user *user_msr_list = argp;
2720 struct kvm_msr_list msr_list;
2721 unsigned n;
2722
2723 r = -EFAULT;
2724 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2725 goto out;
2726 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002727 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Carsten Otte043405e2007-10-10 17:16:19 +02002728 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2729 goto out;
2730 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002731 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002732 goto out;
2733 r = -EFAULT;
2734 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2735 num_msrs_to_save * sizeof(u32)))
2736 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002737 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002738 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002739 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02002740 goto out;
2741 r = 0;
2742 break;
2743 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002744 case KVM_GET_SUPPORTED_CPUID:
2745 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02002746 struct kvm_cpuid2 __user *cpuid_arg = argp;
2747 struct kvm_cpuid2 cpuid;
2748
2749 r = -EFAULT;
2750 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2751 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002752
2753 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
2754 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02002755 if (r)
2756 goto out;
2757
2758 r = -EFAULT;
2759 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2760 goto out;
2761 r = 0;
2762 break;
2763 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002764 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
2765 u64 mce_cap;
2766
2767 mce_cap = KVM_MCE_CAP_SUPPORTED;
2768 r = -EFAULT;
2769 if (copy_to_user(argp, &mce_cap, sizeof mce_cap))
2770 goto out;
2771 r = 0;
2772 break;
2773 }
Carsten Otte043405e2007-10-10 17:16:19 +02002774 default:
2775 r = -EINVAL;
2776 }
2777out:
2778 return r;
2779}
2780
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002781static void wbinvd_ipi(void *garbage)
2782{
2783 wbinvd();
2784}
2785
2786static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2787{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06002788 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002789}
2790
Carsten Otte313a3dc2007-10-11 19:16:52 +02002791void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2792{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002793 /* Address WBINVD may be executed by guest */
2794 if (need_emulate_wbinvd(vcpu)) {
2795 if (kvm_x86_ops->has_wbinvd_exit())
2796 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2797 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2798 smp_call_function_single(vcpu->cpu,
2799 wbinvd_ipi, NULL, 1);
2800 }
2801
Carsten Otte313a3dc2007-10-11 19:16:52 +02002802 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002803
2804 /* Apply any externally detected TSC adjustments (due to suspend) */
2805 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
2806 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
2807 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002808 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002809 }
2810
Zachary Amsden48434c202010-08-19 22:07:24 -10002811 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002812 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
2813 native_read_tsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10002814 if (tsc_delta < 0)
2815 mark_tsc_unstable("KVM discovered backwards TSC");
Zachary Amsdenc2855452010-09-18 14:38:15 -10002816 if (check_tsc_unstable()) {
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002817 u64 offset = kvm_x86_ops->compute_tsc_offset(vcpu,
2818 vcpu->arch.last_guest_tsc);
2819 kvm_x86_ops->write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002820 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002821 }
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02002822 /*
2823 * On a host with synchronized TSC, there is no need to update
2824 * kvmclock on vcpu->cpu migration
2825 */
2826 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002827 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002828 if (vcpu->cpu != cpu)
2829 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002830 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002831 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002832
2833 accumulate_steal_time(vcpu);
2834 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002835}
2836
2837void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2838{
Avi Kivity02daab22009-12-30 12:40:26 +02002839 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002840 kvm_put_guest_fpu(vcpu);
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002841 vcpu->arch.last_host_tsc = native_read_tsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02002842}
2843
Carsten Otte313a3dc2007-10-11 19:16:52 +02002844static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2845 struct kvm_lapic_state *s)
2846{
Yang Zhang5a717852013-04-11 19:25:16 +08002847 kvm_x86_ops->sync_pir_to_irr(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002848 memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002849
2850 return 0;
2851}
2852
2853static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2854 struct kvm_lapic_state *s)
2855{
Gleb Natapov64eb0622012-08-08 15:24:36 +03002856 kvm_apic_post_state_restore(vcpu, s);
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002857 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002858
2859 return 0;
2860}
2861
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002862static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2863 struct kvm_interrupt *irq)
2864{
Chen Gang02cdb502013-02-27 11:33:25 +08002865 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002866 return -EINVAL;
2867 if (irqchip_in_kernel(vcpu->kvm))
2868 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002869
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002870 kvm_queue_interrupt(vcpu, irq->irq, false);
Avi Kivity3842d132010-07-27 12:30:24 +03002871 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002872
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002873 return 0;
2874}
2875
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002876static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2877{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002878 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002879
2880 return 0;
2881}
2882
Paolo Bonzinif0778252015-04-01 15:06:40 +02002883static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
2884{
Paolo Bonzini64d60672015-05-07 11:36:11 +02002885 kvm_make_request(KVM_REQ_SMI, vcpu);
2886
Paolo Bonzinif0778252015-04-01 15:06:40 +02002887 return 0;
2888}
2889
Avi Kivityb209749f2007-10-22 16:50:39 +02002890static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2891 struct kvm_tpr_access_ctl *tac)
2892{
2893 if (tac->flags)
2894 return -EINVAL;
2895 vcpu->arch.tpr_access_reporting = !!tac->enabled;
2896 return 0;
2897}
2898
Huang Ying890ca9a2009-05-11 16:48:15 +08002899static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
2900 u64 mcg_cap)
2901{
2902 int r;
2903 unsigned bank_num = mcg_cap & 0xff, bank;
2904
2905 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02002906 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08002907 goto out;
2908 if (mcg_cap & ~(KVM_MCE_CAP_SUPPORTED | 0xff | 0xff0000))
2909 goto out;
2910 r = 0;
2911 vcpu->arch.mcg_cap = mcg_cap;
2912 /* Init IA32_MCG_CTL to all 1s */
2913 if (mcg_cap & MCG_CTL_P)
2914 vcpu->arch.mcg_ctl = ~(u64)0;
2915 /* Init IA32_MCi_CTL to all 1s */
2916 for (bank = 0; bank < bank_num; bank++)
2917 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
2918out:
2919 return r;
2920}
2921
2922static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
2923 struct kvm_x86_mce *mce)
2924{
2925 u64 mcg_cap = vcpu->arch.mcg_cap;
2926 unsigned bank_num = mcg_cap & 0xff;
2927 u64 *banks = vcpu->arch.mce_banks;
2928
2929 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
2930 return -EINVAL;
2931 /*
2932 * if IA32_MCG_CTL is not all 1s, the uncorrected error
2933 * reporting is disabled
2934 */
2935 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
2936 vcpu->arch.mcg_ctl != ~(u64)0)
2937 return 0;
2938 banks += 4 * mce->bank;
2939 /*
2940 * if IA32_MCi_CTL is not all 1s, the uncorrected error
2941 * reporting is disabled for the bank
2942 */
2943 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
2944 return 0;
2945 if (mce->status & MCI_STATUS_UC) {
2946 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02002947 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03002948 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002949 return 0;
2950 }
2951 if (banks[1] & MCI_STATUS_VAL)
2952 mce->status |= MCI_STATUS_OVER;
2953 banks[2] = mce->addr;
2954 banks[3] = mce->misc;
2955 vcpu->arch.mcg_status = mce->mcg_status;
2956 banks[1] = mce->status;
2957 kvm_queue_exception(vcpu, MC_VECTOR);
2958 } else if (!(banks[1] & MCI_STATUS_VAL)
2959 || !(banks[1] & MCI_STATUS_UC)) {
2960 if (banks[1] & MCI_STATUS_VAL)
2961 mce->status |= MCI_STATUS_OVER;
2962 banks[2] = mce->addr;
2963 banks[3] = mce->misc;
2964 banks[1] = mce->status;
2965 } else
2966 banks[1] |= MCI_STATUS_OVER;
2967 return 0;
2968}
2969
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002970static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
2971 struct kvm_vcpu_events *events)
2972{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002973 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01002974 events->exception.injected =
2975 vcpu->arch.exception.pending &&
2976 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002977 events->exception.nr = vcpu->arch.exception.nr;
2978 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002979 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002980 events->exception.error_code = vcpu->arch.exception.error_code;
2981
Jan Kiszka03b82a32010-02-15 10:45:41 +01002982 events->interrupt.injected =
2983 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002984 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01002985 events->interrupt.soft = 0;
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002986 events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002987
2988 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002989 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002990 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002991 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002992
Jan Kiszka66450a22013-03-13 12:42:34 +01002993 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002994
Paolo Bonzinif0778252015-04-01 15:06:40 +02002995 events->smi.smm = is_smm(vcpu);
2996 events->smi.pending = vcpu->arch.smi_pending;
2997 events->smi.smm_inside_nmi =
2998 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
2999 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
3000
Jan Kiszkadab4b912009-12-06 18:24:15 +01003001 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02003002 | KVM_VCPUEVENT_VALID_SHADOW
3003 | KVM_VCPUEVENT_VALID_SMM);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003004 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003005}
3006
3007static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
3008 struct kvm_vcpu_events *events)
3009{
Jan Kiszkadab4b912009-12-06 18:24:15 +01003010 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01003011 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02003012 | KVM_VCPUEVENT_VALID_SHADOW
3013 | KVM_VCPUEVENT_VALID_SMM))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003014 return -EINVAL;
3015
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003016 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003017 vcpu->arch.exception.pending = events->exception.injected;
3018 vcpu->arch.exception.nr = events->exception.nr;
3019 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
3020 vcpu->arch.exception.error_code = events->exception.error_code;
3021
3022 vcpu->arch.interrupt.pending = events->interrupt.injected;
3023 vcpu->arch.interrupt.nr = events->interrupt.nr;
3024 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01003025 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
3026 kvm_x86_ops->set_interrupt_shadow(vcpu,
3027 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003028
3029 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01003030 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
3031 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003032 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
3033
Jan Kiszka66450a22013-03-13 12:42:34 +01003034 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
3035 kvm_vcpu_has_lapic(vcpu))
3036 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003037
Paolo Bonzinif0778252015-04-01 15:06:40 +02003038 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
3039 if (events->smi.smm)
3040 vcpu->arch.hflags |= HF_SMM_MASK;
3041 else
3042 vcpu->arch.hflags &= ~HF_SMM_MASK;
3043 vcpu->arch.smi_pending = events->smi.pending;
3044 if (events->smi.smm_inside_nmi)
3045 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
3046 else
3047 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
3048 if (kvm_vcpu_has_lapic(vcpu)) {
3049 if (events->smi.latched_init)
3050 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3051 else
3052 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3053 }
3054 }
3055
Avi Kivity3842d132010-07-27 12:30:24 +03003056 kvm_make_request(KVM_REQ_EVENT, vcpu);
3057
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003058 return 0;
3059}
3060
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003061static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
3062 struct kvm_debugregs *dbgregs)
3063{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003064 unsigned long val;
3065
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003066 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003067 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003068 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003069 dbgregs->dr7 = vcpu->arch.dr7;
3070 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003071 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003072}
3073
3074static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
3075 struct kvm_debugregs *dbgregs)
3076{
3077 if (dbgregs->flags)
3078 return -EINVAL;
3079
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003080 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03003081 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003082 vcpu->arch.dr6 = dbgregs->dr6;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003083 kvm_update_dr6(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003084 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01003085 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003086
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003087 return 0;
3088}
3089
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003090#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
3091
3092static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
3093{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003094 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02003095 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003096 u64 valid;
3097
3098 /*
3099 * Copy legacy XSAVE area, to avoid complications with CPUID
3100 * leaves 0 and 1 in the loop below.
3101 */
3102 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
3103
3104 /* Set XSTATE_BV */
3105 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
3106
3107 /*
3108 * Copy each region from the possibly compacted offset to the
3109 * non-compacted offset.
3110 */
3111 valid = xstate_bv & ~XSTATE_FPSSE;
3112 while (valid) {
3113 u64 feature = valid & -valid;
3114 int index = fls64(feature) - 1;
3115 void *src = get_xsave_addr(xsave, feature);
3116
3117 if (src) {
3118 u32 size, offset, ecx, edx;
3119 cpuid_count(XSTATE_CPUID, index,
3120 &size, &offset, &ecx, &edx);
3121 memcpy(dest + offset, src, size);
3122 }
3123
3124 valid -= feature;
3125 }
3126}
3127
3128static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
3129{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003130 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003131 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
3132 u64 valid;
3133
3134 /*
3135 * Copy legacy XSAVE area, to avoid complications with CPUID
3136 * leaves 0 and 1 in the loop below.
3137 */
3138 memcpy(xsave, src, XSAVE_HDR_OFFSET);
3139
3140 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02003141 xsave->header.xfeatures = xstate_bv;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003142 if (cpu_has_xsaves)
Ingo Molnar3a544502015-04-24 10:14:36 +02003143 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003144
3145 /*
3146 * Copy each region from the non-compacted offset to the
3147 * possibly compacted offset.
3148 */
3149 valid = xstate_bv & ~XSTATE_FPSSE;
3150 while (valid) {
3151 u64 feature = valid & -valid;
3152 int index = fls64(feature) - 1;
3153 void *dest = get_xsave_addr(xsave, feature);
3154
3155 if (dest) {
3156 u32 size, offset, ecx, edx;
3157 cpuid_count(XSTATE_CPUID, index,
3158 &size, &offset, &ecx, &edx);
3159 memcpy(dest, src + offset, size);
3160 } else
3161 WARN_ON_ONCE(1);
3162
3163 valid -= feature;
3164 }
3165}
3166
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003167static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
3168 struct kvm_xsave *guest_xsave)
3169{
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003170 if (cpu_has_xsave) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003171 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
3172 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003173 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003174 memcpy(guest_xsave->region,
Ingo Molnar7366ed72015-04-27 04:19:39 +02003175 &vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003176 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003177 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
3178 XSTATE_FPSSE;
3179 }
3180}
3181
3182static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
3183 struct kvm_xsave *guest_xsave)
3184{
3185 u64 xstate_bv =
3186 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
3187
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003188 if (cpu_has_xsave) {
3189 /*
3190 * Here we allow setting states that are not present in
3191 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
3192 * with old userspace.
3193 */
Paolo Bonzini4ff41732014-02-24 12:15:16 +01003194 if (xstate_bv & ~kvm_supported_xcr0())
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003195 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003196 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003197 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003198 if (xstate_bv & ~XSTATE_FPSSE)
3199 return -EINVAL;
Ingo Molnar7366ed72015-04-27 04:19:39 +02003200 memcpy(&vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003201 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003202 }
3203 return 0;
3204}
3205
3206static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
3207 struct kvm_xcrs *guest_xcrs)
3208{
3209 if (!cpu_has_xsave) {
3210 guest_xcrs->nr_xcrs = 0;
3211 return;
3212 }
3213
3214 guest_xcrs->nr_xcrs = 1;
3215 guest_xcrs->flags = 0;
3216 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
3217 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
3218}
3219
3220static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
3221 struct kvm_xcrs *guest_xcrs)
3222{
3223 int i, r = 0;
3224
3225 if (!cpu_has_xsave)
3226 return -EINVAL;
3227
3228 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
3229 return -EINVAL;
3230
3231 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
3232 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003233 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003234 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003235 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003236 break;
3237 }
3238 if (r)
3239 r = -EINVAL;
3240 return r;
3241}
3242
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003243/*
3244 * kvm_set_guest_paused() indicates to the guest kernel that it has been
3245 * stopped by the hypervisor. This function will be called from the host only.
3246 * EINVAL is returned when the host attempts to set the flag for a guest that
3247 * does not support pv clocks.
3248 */
3249static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
3250{
Andy Honig0b794592013-02-20 14:48:10 -08003251 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003252 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003253 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003254 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
3255 return 0;
3256}
3257
Carsten Otte313a3dc2007-10-11 19:16:52 +02003258long kvm_arch_vcpu_ioctl(struct file *filp,
3259 unsigned int ioctl, unsigned long arg)
3260{
3261 struct kvm_vcpu *vcpu = filp->private_data;
3262 void __user *argp = (void __user *)arg;
3263 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003264 union {
3265 struct kvm_lapic_state *lapic;
3266 struct kvm_xsave *xsave;
3267 struct kvm_xcrs *xcrs;
3268 void *buffer;
3269 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003270
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003271 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003272 switch (ioctl) {
3273 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003274 r = -EINVAL;
3275 if (!vcpu->arch.apic)
3276 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003277 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003278
Dave Hansenb772ff32008-08-11 10:01:47 -07003279 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003280 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003281 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003282 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003283 if (r)
3284 goto out;
3285 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003286 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003287 goto out;
3288 r = 0;
3289 break;
3290 }
3291 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003292 r = -EINVAL;
3293 if (!vcpu->arch.apic)
3294 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003295 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Guo Chao18595412012-11-02 18:33:21 +08003296 if (IS_ERR(u.lapic))
3297 return PTR_ERR(u.lapic);
Sasha Levinff5c2c02011-12-04 19:36:29 +02003298
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003299 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003300 break;
3301 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003302 case KVM_INTERRUPT: {
3303 struct kvm_interrupt irq;
3304
3305 r = -EFAULT;
3306 if (copy_from_user(&irq, argp, sizeof irq))
3307 goto out;
3308 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003309 break;
3310 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003311 case KVM_NMI: {
3312 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003313 break;
3314 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02003315 case KVM_SMI: {
3316 r = kvm_vcpu_ioctl_smi(vcpu);
3317 break;
3318 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003319 case KVM_SET_CPUID: {
3320 struct kvm_cpuid __user *cpuid_arg = argp;
3321 struct kvm_cpuid cpuid;
3322
3323 r = -EFAULT;
3324 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3325 goto out;
3326 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003327 break;
3328 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003329 case KVM_SET_CPUID2: {
3330 struct kvm_cpuid2 __user *cpuid_arg = argp;
3331 struct kvm_cpuid2 cpuid;
3332
3333 r = -EFAULT;
3334 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3335 goto out;
3336 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003337 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003338 break;
3339 }
3340 case KVM_GET_CPUID2: {
3341 struct kvm_cpuid2 __user *cpuid_arg = argp;
3342 struct kvm_cpuid2 cpuid;
3343
3344 r = -EFAULT;
3345 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3346 goto out;
3347 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003348 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003349 if (r)
3350 goto out;
3351 r = -EFAULT;
3352 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3353 goto out;
3354 r = 0;
3355 break;
3356 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003357 case KVM_GET_MSRS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003358 r = msr_io(vcpu, argp, do_get_msr, 1);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003359 break;
3360 case KVM_SET_MSRS:
3361 r = msr_io(vcpu, argp, do_set_msr, 0);
3362 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003363 case KVM_TPR_ACCESS_REPORTING: {
3364 struct kvm_tpr_access_ctl tac;
3365
3366 r = -EFAULT;
3367 if (copy_from_user(&tac, argp, sizeof tac))
3368 goto out;
3369 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3370 if (r)
3371 goto out;
3372 r = -EFAULT;
3373 if (copy_to_user(argp, &tac, sizeof tac))
3374 goto out;
3375 r = 0;
3376 break;
3377 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003378 case KVM_SET_VAPIC_ADDR: {
3379 struct kvm_vapic_addr va;
3380
3381 r = -EINVAL;
3382 if (!irqchip_in_kernel(vcpu->kvm))
3383 goto out;
3384 r = -EFAULT;
3385 if (copy_from_user(&va, argp, sizeof va))
3386 goto out;
Andy Honigfda4e2e82013-11-20 10:23:22 -08003387 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Avi Kivityb93463a2007-10-25 16:52:32 +02003388 break;
3389 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003390 case KVM_X86_SETUP_MCE: {
3391 u64 mcg_cap;
3392
3393 r = -EFAULT;
3394 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3395 goto out;
3396 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3397 break;
3398 }
3399 case KVM_X86_SET_MCE: {
3400 struct kvm_x86_mce mce;
3401
3402 r = -EFAULT;
3403 if (copy_from_user(&mce, argp, sizeof mce))
3404 goto out;
3405 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3406 break;
3407 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003408 case KVM_GET_VCPU_EVENTS: {
3409 struct kvm_vcpu_events events;
3410
3411 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3412
3413 r = -EFAULT;
3414 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3415 break;
3416 r = 0;
3417 break;
3418 }
3419 case KVM_SET_VCPU_EVENTS: {
3420 struct kvm_vcpu_events events;
3421
3422 r = -EFAULT;
3423 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3424 break;
3425
3426 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3427 break;
3428 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003429 case KVM_GET_DEBUGREGS: {
3430 struct kvm_debugregs dbgregs;
3431
3432 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3433
3434 r = -EFAULT;
3435 if (copy_to_user(argp, &dbgregs,
3436 sizeof(struct kvm_debugregs)))
3437 break;
3438 r = 0;
3439 break;
3440 }
3441 case KVM_SET_DEBUGREGS: {
3442 struct kvm_debugregs dbgregs;
3443
3444 r = -EFAULT;
3445 if (copy_from_user(&dbgregs, argp,
3446 sizeof(struct kvm_debugregs)))
3447 break;
3448
3449 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3450 break;
3451 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003452 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003453 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003454 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003455 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003456 break;
3457
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003458 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003459
3460 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003461 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003462 break;
3463 r = 0;
3464 break;
3465 }
3466 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003467 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Guo Chao18595412012-11-02 18:33:21 +08003468 if (IS_ERR(u.xsave))
3469 return PTR_ERR(u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003470
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003471 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003472 break;
3473 }
3474 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003475 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003476 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003477 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003478 break;
3479
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003480 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003481
3482 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003483 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003484 sizeof(struct kvm_xcrs)))
3485 break;
3486 r = 0;
3487 break;
3488 }
3489 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003490 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Guo Chao18595412012-11-02 18:33:21 +08003491 if (IS_ERR(u.xcrs))
3492 return PTR_ERR(u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003493
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003494 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003495 break;
3496 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003497 case KVM_SET_TSC_KHZ: {
3498 u32 user_tsc_khz;
3499
3500 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003501 user_tsc_khz = (u32)arg;
3502
3503 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3504 goto out;
3505
Zachary Amsdencc578282012-02-03 15:43:50 -02003506 if (user_tsc_khz == 0)
3507 user_tsc_khz = tsc_khz;
3508
3509 kvm_set_tsc_khz(vcpu, user_tsc_khz);
Joerg Roedel92a1f122011-03-25 09:44:51 +01003510
3511 r = 0;
3512 goto out;
3513 }
3514 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02003515 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003516 goto out;
3517 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003518 case KVM_KVMCLOCK_CTRL: {
3519 r = kvm_set_guest_paused(vcpu);
3520 goto out;
3521 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003522 default:
3523 r = -EINVAL;
3524 }
3525out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003526 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003527 return r;
3528}
3529
Carsten Otte5b1c1492012-01-04 10:25:23 +01003530int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3531{
3532 return VM_FAULT_SIGBUS;
3533}
3534
Carsten Otte1fe779f2007-10-29 16:08:35 +01003535static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3536{
3537 int ret;
3538
3539 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08003540 return -EINVAL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003541 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3542 return ret;
3543}
3544
Sheng Yangb927a3c2009-07-21 10:42:48 +08003545static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3546 u64 ident_addr)
3547{
3548 kvm->arch.ept_identity_map_addr = ident_addr;
3549 return 0;
3550}
3551
Carsten Otte1fe779f2007-10-29 16:08:35 +01003552static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3553 u32 kvm_nr_mmu_pages)
3554{
3555 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3556 return -EINVAL;
3557
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003558 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003559
3560 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003561 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003562
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003563 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003564 return 0;
3565}
3566
3567static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3568{
Dave Hansen39de71e2010-08-19 18:11:14 -07003569 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003570}
3571
Carsten Otte1fe779f2007-10-29 16:08:35 +01003572static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3573{
3574 int r;
3575
3576 r = 0;
3577 switch (chip->chip_id) {
3578 case KVM_IRQCHIP_PIC_MASTER:
3579 memcpy(&chip->chip.pic,
3580 &pic_irqchip(kvm)->pics[0],
3581 sizeof(struct kvm_pic_state));
3582 break;
3583 case KVM_IRQCHIP_PIC_SLAVE:
3584 memcpy(&chip->chip.pic,
3585 &pic_irqchip(kvm)->pics[1],
3586 sizeof(struct kvm_pic_state));
3587 break;
3588 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003589 r = kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003590 break;
3591 default:
3592 r = -EINVAL;
3593 break;
3594 }
3595 return r;
3596}
3597
3598static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3599{
3600 int r;
3601
3602 r = 0;
3603 switch (chip->chip_id) {
3604 case KVM_IRQCHIP_PIC_MASTER:
Avi Kivityf4f51052010-09-19 18:44:07 +02003605 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003606 memcpy(&pic_irqchip(kvm)->pics[0],
3607 &chip->chip.pic,
3608 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003609 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003610 break;
3611 case KVM_IRQCHIP_PIC_SLAVE:
Avi Kivityf4f51052010-09-19 18:44:07 +02003612 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003613 memcpy(&pic_irqchip(kvm)->pics[1],
3614 &chip->chip.pic,
3615 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003616 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003617 break;
3618 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003619 r = kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003620 break;
3621 default:
3622 r = -EINVAL;
3623 break;
3624 }
3625 kvm_pic_update_irq(pic_irqchip(kvm));
3626 return r;
3627}
3628
Sheng Yange0f63cb2008-03-04 00:50:59 +08003629static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3630{
3631 int r = 0;
3632
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003633 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003634 memcpy(ps, &kvm->arch.vpit->pit_state, sizeof(struct kvm_pit_state));
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003635 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003636 return r;
3637}
3638
3639static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3640{
3641 int r = 0;
3642
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003643 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003644 memcpy(&kvm->arch.vpit->pit_state, ps, sizeof(struct kvm_pit_state));
Beth Kone9f42752009-07-07 11:50:38 -04003645 kvm_pit_load_count(kvm, 0, ps->channels[0].count, 0);
3646 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
3647 return r;
3648}
3649
3650static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3651{
3652 int r = 0;
3653
3654 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3655 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3656 sizeof(ps->channels));
3657 ps->flags = kvm->arch.vpit->pit_state.flags;
3658 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003659 memset(&ps->reserved, 0, sizeof(ps->reserved));
Beth Kone9f42752009-07-07 11:50:38 -04003660 return r;
3661}
3662
3663static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3664{
3665 int r = 0, start = 0;
3666 u32 prev_legacy, cur_legacy;
3667 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3668 prev_legacy = kvm->arch.vpit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
3669 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3670 if (!prev_legacy && cur_legacy)
3671 start = 1;
3672 memcpy(&kvm->arch.vpit->pit_state.channels, &ps->channels,
3673 sizeof(kvm->arch.vpit->pit_state.channels));
3674 kvm->arch.vpit->pit_state.flags = ps->flags;
3675 kvm_pit_load_count(kvm, 0, kvm->arch.vpit->pit_state.channels[0].count, start);
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003676 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003677 return r;
3678}
3679
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003680static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3681 struct kvm_reinject_control *control)
3682{
3683 if (!kvm->arch.vpit)
3684 return -ENXIO;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003685 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Avi Kivity26ef1922012-07-26 18:01:53 +03003686 kvm->arch.vpit->pit_state.reinject = control->pit_reinject;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003687 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003688 return 0;
3689}
3690
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003691/**
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003692 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
3693 * @kvm: kvm instance
3694 * @log: slot id and address to which we copy the log
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003695 *
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003696 * Steps 1-4 below provide general overview of dirty page logging. See
3697 * kvm_get_dirty_log_protect() function description for additional details.
3698 *
3699 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
3700 * always flush the TLB (step 4) even if previous step failed and the dirty
3701 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
3702 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
3703 * writes will be marked dirty for next log read.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003704 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003705 * 1. Take a snapshot of the bit and clear it if needed.
3706 * 2. Write protect the corresponding page.
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003707 * 3. Copy the snapshot to the userspace.
3708 * 4. Flush TLB's if needed.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003709 */
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003710int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003711{
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003712 bool is_dirty = false;
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003713 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003714
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003715 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003716
Kai Huang88178fd2015-01-28 10:54:27 +08003717 /*
3718 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
3719 */
3720 if (kvm_x86_ops->flush_log_dirty)
3721 kvm_x86_ops->flush_log_dirty(kvm);
3722
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003723 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003724
3725 /*
3726 * All the TLBs can be flushed out of mmu lock, see the comments in
3727 * kvm_mmu_slot_remove_write_access().
3728 */
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003729 lockdep_assert_held(&kvm->slots_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003730 if (is_dirty)
3731 kvm_flush_remote_tlbs(kvm);
3732
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003733 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003734 return r;
3735}
3736
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003737int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
3738 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003739{
3740 if (!irqchip_in_kernel(kvm))
3741 return -ENXIO;
3742
3743 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003744 irq_event->irq, irq_event->level,
3745 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003746 return 0;
3747}
3748
Nadav Amit90de4a12015-04-13 01:53:41 +03003749static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3750 struct kvm_enable_cap *cap)
3751{
3752 int r;
3753
3754 if (cap->flags)
3755 return -EINVAL;
3756
3757 switch (cap->cap) {
3758 case KVM_CAP_DISABLE_QUIRKS:
3759 kvm->arch.disabled_quirks = cap->args[0];
3760 r = 0;
3761 break;
3762 default:
3763 r = -EINVAL;
3764 break;
3765 }
3766 return r;
3767}
3768
Carsten Otte1fe779f2007-10-29 16:08:35 +01003769long kvm_arch_vm_ioctl(struct file *filp,
3770 unsigned int ioctl, unsigned long arg)
3771{
3772 struct kvm *kvm = filp->private_data;
3773 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003774 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003775 /*
3776 * This union makes it completely explicit to gcc-3.x
3777 * that these two variables' stack usage should be
3778 * combined, not added together.
3779 */
3780 union {
3781 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003782 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003783 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003784 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003785
3786 switch (ioctl) {
3787 case KVM_SET_TSS_ADDR:
3788 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003789 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003790 case KVM_SET_IDENTITY_MAP_ADDR: {
3791 u64 ident_addr;
3792
3793 r = -EFAULT;
3794 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3795 goto out;
3796 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08003797 break;
3798 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003799 case KVM_SET_NR_MMU_PAGES:
3800 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003801 break;
3802 case KVM_GET_NR_MMU_PAGES:
3803 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
3804 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003805 case KVM_CREATE_IRQCHIP: {
3806 struct kvm_pic *vpic;
3807
3808 mutex_lock(&kvm->lock);
3809 r = -EEXIST;
3810 if (kvm->arch.vpic)
3811 goto create_irqchip_unlock;
Avi Kivity3e515702012-03-05 14:23:29 +02003812 r = -EINVAL;
3813 if (atomic_read(&kvm->online_vcpus))
3814 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003815 r = -ENOMEM;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003816 vpic = kvm_create_pic(kvm);
3817 if (vpic) {
Carsten Otte1fe779f2007-10-29 16:08:35 +01003818 r = kvm_ioapic_init(kvm);
3819 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003820 mutex_lock(&kvm->slots_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003821 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
Sasha Levin743eeb02011-07-27 16:00:48 +03003822 &vpic->dev_master);
3823 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
3824 &vpic->dev_slave);
3825 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
3826 &vpic->dev_eclr);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003827 mutex_unlock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003828 kfree(vpic);
3829 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003830 }
3831 } else
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003832 goto create_irqchip_unlock;
3833 smp_wmb();
3834 kvm->arch.vpic = vpic;
3835 smp_wmb();
Avi Kivity399ec802008-11-19 13:58:46 +02003836 r = kvm_setup_default_irq_routing(kvm);
3837 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003838 mutex_lock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003839 mutex_lock(&kvm->irq_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003840 kvm_ioapic_destroy(kvm);
3841 kvm_destroy_pic(kvm);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003842 mutex_unlock(&kvm->irq_lock);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003843 mutex_unlock(&kvm->slots_lock);
Avi Kivity399ec802008-11-19 13:58:46 +02003844 }
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003845 create_irqchip_unlock:
3846 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003847 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003848 }
Sheng Yang78376992008-01-28 05:10:22 +08003849 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003850 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
3851 goto create_pit;
3852 case KVM_CREATE_PIT2:
3853 r = -EFAULT;
3854 if (copy_from_user(&u.pit_config, argp,
3855 sizeof(struct kvm_pit_config)))
3856 goto out;
3857 create_pit:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003858 mutex_lock(&kvm->slots_lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02003859 r = -EEXIST;
3860 if (kvm->arch.vpit)
3861 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08003862 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003863 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08003864 if (kvm->arch.vpit)
3865 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02003866 create_pit_unlock:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003867 mutex_unlock(&kvm->slots_lock);
Sheng Yang78376992008-01-28 05:10:22 +08003868 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003869 case KVM_GET_IRQCHIP: {
3870 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003871 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003872
Sasha Levinff5c2c02011-12-04 19:36:29 +02003873 chip = memdup_user(argp, sizeof(*chip));
3874 if (IS_ERR(chip)) {
3875 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003876 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003877 }
3878
Carsten Otte1fe779f2007-10-29 16:08:35 +01003879 r = -ENXIO;
3880 if (!irqchip_in_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003881 goto get_irqchip_out;
3882 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
3883 if (r)
3884 goto get_irqchip_out;
3885 r = -EFAULT;
3886 if (copy_to_user(argp, chip, sizeof *chip))
3887 goto get_irqchip_out;
3888 r = 0;
3889 get_irqchip_out:
3890 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003891 break;
3892 }
3893 case KVM_SET_IRQCHIP: {
3894 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003895 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003896
Sasha Levinff5c2c02011-12-04 19:36:29 +02003897 chip = memdup_user(argp, sizeof(*chip));
3898 if (IS_ERR(chip)) {
3899 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003900 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003901 }
3902
Carsten Otte1fe779f2007-10-29 16:08:35 +01003903 r = -ENXIO;
3904 if (!irqchip_in_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003905 goto set_irqchip_out;
3906 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
3907 if (r)
3908 goto set_irqchip_out;
3909 r = 0;
3910 set_irqchip_out:
3911 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003912 break;
3913 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08003914 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003915 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003916 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003917 goto out;
3918 r = -ENXIO;
3919 if (!kvm->arch.vpit)
3920 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003921 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003922 if (r)
3923 goto out;
3924 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003925 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003926 goto out;
3927 r = 0;
3928 break;
3929 }
3930 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003931 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003932 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003933 goto out;
3934 r = -ENXIO;
3935 if (!kvm->arch.vpit)
3936 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003937 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003938 break;
3939 }
Beth Kone9f42752009-07-07 11:50:38 -04003940 case KVM_GET_PIT2: {
3941 r = -ENXIO;
3942 if (!kvm->arch.vpit)
3943 goto out;
3944 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
3945 if (r)
3946 goto out;
3947 r = -EFAULT;
3948 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
3949 goto out;
3950 r = 0;
3951 break;
3952 }
3953 case KVM_SET_PIT2: {
3954 r = -EFAULT;
3955 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
3956 goto out;
3957 r = -ENXIO;
3958 if (!kvm->arch.vpit)
3959 goto out;
3960 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Beth Kone9f42752009-07-07 11:50:38 -04003961 break;
3962 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003963 case KVM_REINJECT_CONTROL: {
3964 struct kvm_reinject_control control;
3965 r = -EFAULT;
3966 if (copy_from_user(&control, argp, sizeof(control)))
3967 goto out;
3968 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003969 break;
3970 }
Ed Swierkffde22a2009-10-15 15:21:43 -07003971 case KVM_XEN_HVM_CONFIG: {
3972 r = -EFAULT;
3973 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
3974 sizeof(struct kvm_xen_hvm_config)))
3975 goto out;
3976 r = -EINVAL;
3977 if (kvm->arch.xen_hvm_config.flags)
3978 goto out;
3979 r = 0;
3980 break;
3981 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003982 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003983 struct kvm_clock_data user_ns;
3984 u64 now_ns;
3985 s64 delta;
3986
3987 r = -EFAULT;
3988 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
3989 goto out;
3990
3991 r = -EINVAL;
3992 if (user_ns.flags)
3993 goto out;
3994
3995 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02003996 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10003997 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003998 delta = user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02003999 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004000 kvm->arch.kvmclock_offset = delta;
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03004001 kvm_gen_update_masterclock(kvm);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004002 break;
4003 }
4004 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004005 struct kvm_clock_data user_ns;
4006 u64 now_ns;
4007
Avi Kivity395c6b02010-10-04 12:55:49 +02004008 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10004009 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004010 user_ns.clock = kvm->arch.kvmclock_offset + now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004011 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004012 user_ns.flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004013 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004014
4015 r = -EFAULT;
4016 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
4017 goto out;
4018 r = 0;
4019 break;
4020 }
Nadav Amit90de4a12015-04-13 01:53:41 +03004021 case KVM_ENABLE_CAP: {
4022 struct kvm_enable_cap cap;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004023
Nadav Amit90de4a12015-04-13 01:53:41 +03004024 r = -EFAULT;
4025 if (copy_from_user(&cap, argp, sizeof(cap)))
4026 goto out;
4027 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
4028 break;
4029 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01004030 default:
Radim Krčmářc274e032014-11-21 22:21:50 +01004031 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004032 }
4033out:
4034 return r;
4035}
4036
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08004037static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02004038{
4039 u32 dummy[2];
4040 unsigned i, j;
4041
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004042 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02004043 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
4044 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004045
4046 /*
4047 * Even MSRs that are valid in the host may not be exposed
4048 * to the guests in some cases. We could work around this
4049 * in VMX with the generic MSR save/load machinery, but it
4050 * is not really worthwhile since it will really only
4051 * happen with nested virtualization.
4052 */
4053 switch (msrs_to_save[i]) {
4054 case MSR_IA32_BNDCFGS:
4055 if (!kvm_x86_ops->mpx_supported())
4056 continue;
4057 break;
4058 default:
4059 break;
4060 }
4061
Carsten Otte043405e2007-10-10 17:16:19 +02004062 if (j < i)
4063 msrs_to_save[j] = msrs_to_save[i];
4064 j++;
4065 }
4066 num_msrs_to_save = j;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004067
4068 for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) {
4069 switch (emulated_msrs[i]) {
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004070 case MSR_IA32_SMBASE:
4071 if (!kvm_x86_ops->cpu_has_high_real_mode_segbase())
4072 continue;
4073 break;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004074 default:
4075 break;
4076 }
4077
4078 if (j < i)
4079 emulated_msrs[j] = emulated_msrs[i];
4080 j++;
4081 }
4082 num_emulated_msrs = j;
Carsten Otte043405e2007-10-10 17:16:19 +02004083}
4084
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004085static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
4086 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004087{
Avi Kivity70252a12010-01-19 12:51:22 +02004088 int handled = 0;
4089 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004090
Avi Kivity70252a12010-01-19 12:51:22 +02004091 do {
4092 n = min(len, 8);
4093 if (!(vcpu->arch.apic &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004094 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
4095 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004096 break;
4097 handled += n;
4098 addr += n;
4099 len -= n;
4100 v += n;
4101 } while (len);
4102
4103 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004104}
4105
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004106static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004107{
Avi Kivity70252a12010-01-19 12:51:22 +02004108 int handled = 0;
4109 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004110
Avi Kivity70252a12010-01-19 12:51:22 +02004111 do {
4112 n = min(len, 8);
4113 if (!(vcpu->arch.apic &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004114 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
4115 addr, n, v))
4116 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004117 break;
4118 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
4119 handled += n;
4120 addr += n;
4121 len -= n;
4122 v += n;
4123 } while (len);
4124
4125 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004126}
4127
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004128static void kvm_set_segment(struct kvm_vcpu *vcpu,
4129 struct kvm_segment *var, int seg)
4130{
4131 kvm_x86_ops->set_segment(vcpu, var, seg);
4132}
4133
4134void kvm_get_segment(struct kvm_vcpu *vcpu,
4135 struct kvm_segment *var, int seg)
4136{
4137 kvm_x86_ops->get_segment(vcpu, var, seg);
4138}
4139
Paolo Bonzini54987b72014-09-02 13:23:06 +02004140gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
4141 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004142{
4143 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004144
4145 BUG_ON(!mmu_is_nested(vcpu));
4146
4147 /* NPT walks are always user-walks */
4148 access |= PFERR_USER_MASK;
Paolo Bonzini54987b72014-09-02 13:23:06 +02004149 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004150
4151 return t_gpa;
4152}
4153
Avi Kivityab9ae312010-11-22 17:53:26 +02004154gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
4155 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004156{
4157 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02004158 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004159}
4160
Avi Kivityab9ae312010-11-22 17:53:26 +02004161 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
4162 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004163{
4164 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4165 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004166 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004167}
4168
Avi Kivityab9ae312010-11-22 17:53:26 +02004169gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
4170 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004171{
4172 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4173 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004174 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004175}
4176
4177/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02004178gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
4179 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004180{
Avi Kivityab9ae312010-11-22 17:53:26 +02004181 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004182}
4183
4184static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
4185 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004186 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004187{
4188 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004189 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004190
4191 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004192 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02004193 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004194 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02004195 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004196 int ret;
4197
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004198 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004199 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004200 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
4201 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004202 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004203 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004204 goto out;
4205 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01004206
Izik Eidus77c20022008-12-29 01:42:19 +02004207 bytes -= toread;
4208 data += toread;
4209 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004210 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004211out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004212 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004213}
Izik Eidus77c20022008-12-29 01:42:19 +02004214
Gleb Natapov1871c602010-02-10 14:21:32 +02004215/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03004216static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
4217 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004218 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004219{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004220 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004221 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004222 unsigned offset;
4223 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004224
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004225 /* Inline kvm_read_guest_virt_helper for speed. */
4226 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
4227 exception);
4228 if (unlikely(gpa == UNMAPPED_GVA))
4229 return X86EMUL_PROPAGATE_FAULT;
4230
4231 offset = addr & (PAGE_SIZE-1);
4232 if (WARN_ON(offset + bytes > PAGE_SIZE))
4233 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004234 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
4235 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004236 if (unlikely(ret < 0))
4237 return X86EMUL_IO_NEEDED;
4238
4239 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02004240}
4241
Nadav Har'El064aea72011-05-25 23:04:56 +03004242int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004243 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004244 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004245{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004246 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004247 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004248
Gleb Natapov1871c602010-02-10 14:21:32 +02004249 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004250 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004251}
Nadav Har'El064aea72011-05-25 23:04:56 +03004252EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004253
Avi Kivity0f65dd72011-04-20 13:37:53 +03004254static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4255 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004256 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004257{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004258 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004259 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004260}
4261
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004262int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004263 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004264 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004265 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004266{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004267 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004268 void *data = val;
4269 int r = X86EMUL_CONTINUE;
4270
4271 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004272 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4273 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004274 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004275 unsigned offset = addr & (PAGE_SIZE-1);
4276 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4277 int ret;
4278
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004279 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004280 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004281 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02004282 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004283 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004284 goto out;
4285 }
4286
4287 bytes -= towrite;
4288 data += towrite;
4289 addr += towrite;
4290 }
4291out:
4292 return r;
4293}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004294EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004295
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004296static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4297 gpa_t *gpa, struct x86_exception *exception,
4298 bool write)
4299{
Avi Kivity97d64b72012-09-12 14:52:00 +03004300 u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
4301 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004302
Avi Kivity97d64b72012-09-12 14:52:00 +03004303 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08004304 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
4305 vcpu->arch.access, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004306 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4307 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004308 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004309 return 1;
4310 }
4311
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004312 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4313
4314 if (*gpa == UNMAPPED_GVA)
4315 return -1;
4316
4317 /* For APIC access vmexit */
4318 if ((*gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4319 return 1;
4320
Xiao Guangrong4f022642011-07-12 03:34:24 +08004321 if (vcpu_match_mmio_gpa(vcpu, *gpa)) {
4322 trace_vcpu_match_mmio(gva, *gpa, write, true);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004323 return 1;
Xiao Guangrong4f022642011-07-12 03:34:24 +08004324 }
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004325
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004326 return 0;
4327}
4328
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004329int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004330 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004331{
4332 int ret;
4333
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004334 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004335 if (ret < 0)
4336 return 0;
Xiao Guangrongf57f2ef2011-09-22 16:56:39 +08004337 kvm_mmu_pte_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004338 return 1;
4339}
4340
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004341struct read_write_emulator_ops {
4342 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4343 int bytes);
4344 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4345 void *val, int bytes);
4346 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4347 int bytes, void *val);
4348 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4349 void *val, int bytes);
4350 bool write;
4351};
4352
4353static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4354{
4355 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004356 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Avi Kivityf78146b2012-04-18 19:22:47 +03004357 vcpu->mmio_fragments[0].gpa, *(u64 *)val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004358 vcpu->mmio_read_completed = 0;
4359 return 1;
4360 }
4361
4362 return 0;
4363}
4364
4365static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4366 void *val, int bytes)
4367{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004368 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004369}
4370
4371static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4372 void *val, int bytes)
4373{
4374 return emulator_write_phys(vcpu, gpa, val, bytes);
4375}
4376
4377static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4378{
4379 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4380 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4381}
4382
4383static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4384 void *val, int bytes)
4385{
4386 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4387 return X86EMUL_IO_NEEDED;
4388}
4389
4390static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4391 void *val, int bytes)
4392{
Avi Kivityf78146b2012-04-18 19:22:47 +03004393 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
4394
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004395 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004396 return X86EMUL_CONTINUE;
4397}
4398
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004399static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004400 .read_write_prepare = read_prepare,
4401 .read_write_emulate = read_emulate,
4402 .read_write_mmio = vcpu_mmio_read,
4403 .read_write_exit_mmio = read_exit_mmio,
4404};
4405
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004406static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004407 .read_write_emulate = write_emulate,
4408 .read_write_mmio = write_mmio,
4409 .read_write_exit_mmio = write_exit_mmio,
4410 .write = true,
4411};
4412
Xiao Guangrong22388a32011-07-13 14:32:31 +08004413static int emulator_read_write_onepage(unsigned long addr, void *val,
4414 unsigned int bytes,
4415 struct x86_exception *exception,
4416 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004417 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004418{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004419 gpa_t gpa;
4420 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004421 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03004422 struct kvm_mmio_fragment *frag;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004423
4424 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004425
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004426 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004427 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004428
4429 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004430 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004431 goto mmio;
4432
Xiao Guangrong22388a32011-07-13 14:32:31 +08004433 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004434 return X86EMUL_CONTINUE;
4435
4436mmio:
4437 /*
4438 * Is this MMIO handled locally?
4439 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004440 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004441 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004442 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004443
Avi Kivity70252a12010-01-19 12:51:22 +02004444 gpa += handled;
4445 bytes -= handled;
4446 val += handled;
4447
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004448 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
4449 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
4450 frag->gpa = gpa;
4451 frag->data = val;
4452 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03004453 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004454}
4455
Xiubo Li52eb5a62015-03-13 17:39:45 +08004456static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
4457 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004458 void *val, unsigned int bytes,
4459 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004460 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004461{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004462 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03004463 gpa_t gpa;
4464 int rc;
4465
4466 if (ops->read_write_prepare &&
4467 ops->read_write_prepare(vcpu, val, bytes))
4468 return X86EMUL_CONTINUE;
4469
4470 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004471
Carsten Ottebbd9b642007-10-30 18:44:21 +01004472 /* Crossing a page boundary? */
4473 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03004474 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004475
4476 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004477 rc = emulator_read_write_onepage(addr, val, now, exception,
4478 vcpu, ops);
4479
Carsten Ottebbd9b642007-10-30 18:44:21 +01004480 if (rc != X86EMUL_CONTINUE)
4481 return rc;
4482 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02004483 if (ctxt->mode != X86EMUL_MODE_PROT64)
4484 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004485 val += now;
4486 bytes -= now;
4487 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004488
Avi Kivityf78146b2012-04-18 19:22:47 +03004489 rc = emulator_read_write_onepage(addr, val, bytes, exception,
4490 vcpu, ops);
4491 if (rc != X86EMUL_CONTINUE)
4492 return rc;
4493
4494 if (!vcpu->mmio_nr_fragments)
4495 return rc;
4496
4497 gpa = vcpu->mmio_fragments[0].gpa;
4498
4499 vcpu->mmio_needed = 1;
4500 vcpu->mmio_cur_fragment = 0;
4501
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004502 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03004503 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
4504 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4505 vcpu->run->mmio.phys_addr = gpa;
4506
4507 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004508}
4509
4510static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4511 unsigned long addr,
4512 void *val,
4513 unsigned int bytes,
4514 struct x86_exception *exception)
4515{
4516 return emulator_read_write(ctxt, addr, val, bytes,
4517 exception, &read_emultor);
4518}
4519
Xiubo Li52eb5a62015-03-13 17:39:45 +08004520static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004521 unsigned long addr,
4522 const void *val,
4523 unsigned int bytes,
4524 struct x86_exception *exception)
4525{
4526 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4527 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004528}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004529
Avi Kivitydaea3e72010-03-15 13:59:54 +02004530#define CMPXCHG_TYPE(t, ptr, old, new) \
4531 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4532
4533#ifdef CONFIG_X86_64
4534# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4535#else
4536# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004537 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004538#endif
4539
Avi Kivity0f65dd72011-04-20 13:37:53 +03004540static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4541 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004542 const void *old,
4543 const void *new,
4544 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004545 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004546{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004547 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004548 gpa_t gpa;
4549 struct page *page;
4550 char *kaddr;
4551 bool exchanged;
4552
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004553 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004554 if (bytes > 8 || (bytes & (bytes - 1)))
4555 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004556
Avi Kivitydaea3e72010-03-15 13:59:54 +02004557 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004558
Avi Kivitydaea3e72010-03-15 13:59:54 +02004559 if (gpa == UNMAPPED_GVA ||
4560 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4561 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004562
Avi Kivitydaea3e72010-03-15 13:59:54 +02004563 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4564 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004565
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004566 page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +08004567 if (is_error_page(page))
Wei Yongjunc19b8bd62010-07-15 08:51:58 +08004568 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004569
Cong Wang8fd75e12011-11-25 23:14:17 +08004570 kaddr = kmap_atomic(page);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004571 kaddr += offset_in_page(gpa);
4572 switch (bytes) {
4573 case 1:
4574 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4575 break;
4576 case 2:
4577 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4578 break;
4579 case 4:
4580 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4581 break;
4582 case 8:
4583 exchanged = CMPXCHG64(kaddr, old, new);
4584 break;
4585 default:
4586 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004587 }
Cong Wang8fd75e12011-11-25 23:14:17 +08004588 kunmap_atomic(kaddr);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004589 kvm_release_page_dirty(page);
4590
4591 if (!exchanged)
4592 return X86EMUL_CMPXCHG_FAILED;
4593
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004594 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrongf57f2ef2011-09-22 16:56:39 +08004595 kvm_mmu_pte_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004596
4597 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004598
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004599emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004600 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004601
Avi Kivity0f65dd72011-04-20 13:37:53 +03004602 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004603}
4604
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004605static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4606{
4607 /* TODO: String I/O for in kernel device */
4608 int r;
4609
4610 if (vcpu->arch.pio.in)
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004611 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004612 vcpu->arch.pio.size, pd);
4613 else
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004614 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004615 vcpu->arch.pio.port, vcpu->arch.pio.size,
4616 pd);
4617 return r;
4618}
4619
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004620static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4621 unsigned short port, void *val,
4622 unsigned int count, bool in)
4623{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004624 vcpu->arch.pio.port = port;
4625 vcpu->arch.pio.in = in;
4626 vcpu->arch.pio.count = count;
4627 vcpu->arch.pio.size = size;
4628
4629 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4630 vcpu->arch.pio.count = 0;
4631 return 1;
4632 }
4633
4634 vcpu->run->exit_reason = KVM_EXIT_IO;
4635 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4636 vcpu->run->io.size = size;
4637 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4638 vcpu->run->io.count = count;
4639 vcpu->run->io.port = port;
4640
4641 return 0;
4642}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004643
Avi Kivityca1d4a92011-04-20 13:37:53 +03004644static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4645 int size, unsigned short port, void *val,
4646 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004647{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004648 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004649 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004650
Gleb Natapov79729952010-03-18 15:20:24 +02004651 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004652 goto data_avail;
4653
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004654 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4655 if (ret) {
4656data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004657 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004658 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02004659 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004660 return 1;
4661 }
4662
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004663 return 0;
4664}
4665
Avi Kivityca1d4a92011-04-20 13:37:53 +03004666static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4667 int size, unsigned short port,
4668 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004669{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004670 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4671
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004672 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004673 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004674 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004675}
4676
Carsten Ottebbd9b642007-10-30 18:44:21 +01004677static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4678{
4679 return kvm_x86_ops->get_segment_base(vcpu, seg);
4680}
4681
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004682static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004683{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004684 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004685}
4686
Joel Schopp5cb56052015-03-02 13:43:31 -06004687int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004688{
4689 if (!need_emulate_wbinvd(vcpu))
4690 return X86EMUL_CONTINUE;
4691
4692 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004693 int cpu = get_cpu();
4694
4695 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004696 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4697 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004698 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004699 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004700 } else
4701 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004702 return X86EMUL_CONTINUE;
4703}
Joel Schopp5cb56052015-03-02 13:43:31 -06004704
4705int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4706{
4707 kvm_x86_ops->skip_emulated_instruction(vcpu);
4708 return kvm_emulate_wbinvd_noskip(vcpu);
4709}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004710EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4711
Joel Schopp5cb56052015-03-02 13:43:31 -06004712
4713
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004714static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4715{
Joel Schopp5cb56052015-03-02 13:43:31 -06004716 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004717}
4718
Xiubo Li52eb5a62015-03-13 17:39:45 +08004719static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
4720 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004721{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004722 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004723}
4724
Xiubo Li52eb5a62015-03-13 17:39:45 +08004725static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
4726 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004727{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004728
Avi Kivity717746e2011-04-20 13:37:53 +03004729 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004730}
4731
Gleb Natapov52a46612010-03-18 15:20:03 +02004732static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4733{
4734 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4735}
4736
Avi Kivity717746e2011-04-20 13:37:53 +03004737static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004738{
Avi Kivity717746e2011-04-20 13:37:53 +03004739 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004740 unsigned long value;
4741
4742 switch (cr) {
4743 case 0:
4744 value = kvm_read_cr0(vcpu);
4745 break;
4746 case 2:
4747 value = vcpu->arch.cr2;
4748 break;
4749 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004750 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004751 break;
4752 case 4:
4753 value = kvm_read_cr4(vcpu);
4754 break;
4755 case 8:
4756 value = kvm_get_cr8(vcpu);
4757 break;
4758 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004759 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02004760 return 0;
4761 }
4762
4763 return value;
4764}
4765
Avi Kivity717746e2011-04-20 13:37:53 +03004766static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02004767{
Avi Kivity717746e2011-04-20 13:37:53 +03004768 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03004769 int res = 0;
4770
Gleb Natapov52a46612010-03-18 15:20:03 +02004771 switch (cr) {
4772 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004773 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004774 break;
4775 case 2:
4776 vcpu->arch.cr2 = val;
4777 break;
4778 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004779 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004780 break;
4781 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004782 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004783 break;
4784 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004785 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004786 break;
4787 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004788 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03004789 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02004790 }
Gleb Natapov0f122442010-04-28 19:15:31 +03004791
4792 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02004793}
4794
Avi Kivity717746e2011-04-20 13:37:53 +03004795static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02004796{
Avi Kivity717746e2011-04-20 13:37:53 +03004797 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02004798}
4799
Avi Kivity4bff1e862011-04-20 13:37:53 +03004800static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004801{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004802 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004803}
4804
Avi Kivity4bff1e862011-04-20 13:37:53 +03004805static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004806{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004807 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004808}
4809
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03004810static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4811{
4812 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
4813}
4814
4815static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4816{
4817 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
4818}
4819
Avi Kivity4bff1e862011-04-20 13:37:53 +03004820static unsigned long emulator_get_cached_segment_base(
4821 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03004822{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004823 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03004824}
4825
Avi Kivity1aa36612011-04-27 13:20:30 +03004826static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
4827 struct desc_struct *desc, u32 *base3,
4828 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004829{
4830 struct kvm_segment var;
4831
Avi Kivity4bff1e862011-04-20 13:37:53 +03004832 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03004833 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004834
Gleb Natapov378a8b02013-01-21 15:36:48 +02004835 if (var.unusable) {
4836 memset(desc, 0, sizeof(*desc));
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004837 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02004838 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004839
4840 if (var.g)
4841 var.limit >>= 12;
4842 set_desc_limit(desc, var.limit);
4843 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02004844#ifdef CONFIG_X86_64
4845 if (base3)
4846 *base3 = var.base >> 32;
4847#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004848 desc->type = var.type;
4849 desc->s = var.s;
4850 desc->dpl = var.dpl;
4851 desc->p = var.present;
4852 desc->avl = var.avl;
4853 desc->l = var.l;
4854 desc->d = var.db;
4855 desc->g = var.g;
4856
4857 return true;
4858}
4859
Avi Kivity1aa36612011-04-27 13:20:30 +03004860static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
4861 struct desc_struct *desc, u32 base3,
4862 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004863{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004864 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004865 struct kvm_segment var;
4866
Avi Kivity1aa36612011-04-27 13:20:30 +03004867 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004868 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02004869#ifdef CONFIG_X86_64
4870 var.base |= ((u64)base3) << 32;
4871#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004872 var.limit = get_desc_limit(desc);
4873 if (desc->g)
4874 var.limit = (var.limit << 12) | 0xfff;
4875 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004876 var.dpl = desc->dpl;
4877 var.db = desc->d;
4878 var.s = desc->s;
4879 var.l = desc->l;
4880 var.g = desc->g;
4881 var.avl = desc->avl;
4882 var.present = desc->p;
4883 var.unusable = !var.present;
4884 var.padding = 0;
4885
4886 kvm_set_segment(vcpu, &var, seg);
4887 return;
4888}
4889
Avi Kivity717746e2011-04-20 13:37:53 +03004890static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
4891 u32 msr_index, u64 *pdata)
4892{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004893 struct msr_data msr;
4894 int r;
4895
4896 msr.index = msr_index;
4897 msr.host_initiated = false;
4898 r = kvm_get_msr(emul_to_vcpu(ctxt), &msr);
4899 if (r)
4900 return r;
4901
4902 *pdata = msr.data;
4903 return 0;
Avi Kivity717746e2011-04-20 13:37:53 +03004904}
4905
4906static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
4907 u32 msr_index, u64 data)
4908{
Will Auld8fe8ab42012-11-29 12:42:12 -08004909 struct msr_data msr;
4910
4911 msr.data = data;
4912 msr.index = msr_index;
4913 msr.host_initiated = false;
4914 return kvm_set_msr(emul_to_vcpu(ctxt), &msr);
Avi Kivity717746e2011-04-20 13:37:53 +03004915}
4916
Paolo Bonzini64d60672015-05-07 11:36:11 +02004917static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
4918{
4919 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4920
4921 return vcpu->arch.smbase;
4922}
4923
4924static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
4925{
4926 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4927
4928 vcpu->arch.smbase = smbase;
4929}
4930
Nadav Amit67f4d422014-06-02 18:34:09 +03004931static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
4932 u32 pmc)
4933{
Wei Huangc6702c92015-06-19 13:44:45 +02004934 return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03004935}
4936
Avi Kivity222d21a2011-11-10 14:57:30 +02004937static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
4938 u32 pmc, u64 *pdata)
4939{
Wei Huangc6702c92015-06-19 13:44:45 +02004940 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02004941}
4942
Avi Kivity6c3287f2011-04-20 15:43:05 +03004943static void emulator_halt(struct x86_emulate_ctxt *ctxt)
4944{
4945 emul_to_vcpu(ctxt)->arch.halt_request = 1;
4946}
4947
Avi Kivity5037f6f2011-03-28 16:53:59 +02004948static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
4949{
4950 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03004951 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02004952 /*
4953 * CR0.TS may reference the host fpu state, not the guest fpu state,
4954 * so it may be clear at this point.
4955 */
4956 clts();
4957}
4958
4959static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
4960{
4961 preempt_enable();
4962}
4963
Avi Kivity29535382011-04-20 13:37:53 +03004964static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004965 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02004966 enum x86_intercept_stage stage)
4967{
Avi Kivity29535382011-04-20 13:37:53 +03004968 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02004969}
4970
Avi Kivity0017f932012-06-07 14:10:16 +03004971static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01004972 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
4973{
Avi Kivity0017f932012-06-07 14:10:16 +03004974 kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01004975}
4976
Avi Kivitydd856ef2012-08-27 23:46:17 +03004977static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
4978{
4979 return kvm_register_read(emul_to_vcpu(ctxt), reg);
4980}
4981
4982static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
4983{
4984 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
4985}
4986
Nadav Amit801806d2015-01-26 09:32:23 +02004987static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
4988{
4989 kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked);
4990}
4991
Mathias Krause0225fb52012-08-30 01:30:16 +02004992static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03004993 .read_gpr = emulator_read_gpr,
4994 .write_gpr = emulator_write_gpr,
Gleb Natapov1871c602010-02-10 14:21:32 +02004995 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004996 .write_std = kvm_write_guest_virt_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02004997 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004998 .read_emulated = emulator_read_emulated,
4999 .write_emulated = emulator_write_emulated,
5000 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03005001 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005002 .pio_in_emulated = emulator_pio_in_emulated,
5003 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03005004 .get_segment = emulator_get_segment,
5005 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03005006 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005007 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005008 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005009 .set_gdt = emulator_set_gdt,
5010 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02005011 .get_cr = emulator_get_cr,
5012 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02005013 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03005014 .get_dr = emulator_get_dr,
5015 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02005016 .get_smbase = emulator_get_smbase,
5017 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03005018 .set_msr = emulator_set_msr,
5019 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03005020 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02005021 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03005022 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03005023 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03005024 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02005025 .get_fpu = emulator_get_fpu,
5026 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005027 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005028 .get_cpuid = emulator_get_cpuid,
Nadav Amit801806d2015-01-26 09:32:23 +02005029 .set_nmi_mask = emulator_set_nmi_mask,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005030};
5031
Gleb Natapov95cb2292010-04-28 19:15:43 +03005032static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
5033{
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005034 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03005035 /*
5036 * an sti; sti; sequence only disable interrupts for the first
5037 * instruction. So, if the last instruction, be it emulated or
5038 * not, left the system with the INT_STI flag enabled, it
5039 * means that the last instruction is an sti. We should not
5040 * leave the flag on in this case. The same goes for mov ss
5041 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005042 if (int_shadow & mask)
5043 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005044 if (unlikely(int_shadow || mask)) {
Gleb Natapov95cb2292010-04-28 19:15:43 +03005045 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005046 if (!mask)
5047 kvm_make_request(KVM_REQ_EVENT, vcpu);
5048 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03005049}
5050
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005051static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03005052{
5053 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02005054 if (ctxt->exception.vector == PF_VECTOR)
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005055 return kvm_propagate_fault(vcpu, &ctxt->exception);
5056
5057 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02005058 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
5059 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03005060 else
Avi Kivityda9cb572010-11-22 17:53:21 +02005061 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005062 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03005063}
5064
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005065static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
5066{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005067 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005068 int cs_db, cs_l;
5069
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005070 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5071
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005072 ctxt->eflags = kvm_get_rflags(vcpu);
5073 ctxt->eip = kvm_rip_read(vcpu);
5074 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
5075 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03005076 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005077 cs_db ? X86EMUL_MODE_PROT32 :
5078 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005079 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005080 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
5081 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005082 ctxt->emul_flags = vcpu->arch.hflags;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005083
Avi Kivitydd856ef2012-08-27 23:46:17 +03005084 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005085 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005086}
5087
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005088int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02005089{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005090 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02005091 int ret;
5092
5093 init_emulate_ctxt(vcpu);
5094
Avi Kivity9dac77f2011-06-01 15:34:25 +03005095 ctxt->op_bytes = 2;
5096 ctxt->ad_bytes = 2;
5097 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005098 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02005099
5100 if (ret != X86EMUL_CONTINUE)
5101 return EMULATE_FAIL;
5102
Avi Kivity9dac77f2011-06-01 15:34:25 +03005103 ctxt->eip = ctxt->_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005104 kvm_rip_write(vcpu, ctxt->eip);
5105 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02005106
5107 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005108 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02005109 else
5110 vcpu->arch.interrupt.pending = false;
5111
5112 return EMULATE_DONE;
5113}
5114EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
5115
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005116static int handle_emulation_failure(struct kvm_vcpu *vcpu)
5117{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005118 int r = EMULATE_DONE;
5119
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005120 ++vcpu->stat.insn_emulation_fail;
5121 trace_kvm_emulate_insn_failed(vcpu);
Nadav Amita2b9e6c2014-09-17 02:50:50 +03005122 if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005123 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5124 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5125 vcpu->run->internal.ndata = 0;
5126 r = EMULATE_FAIL;
5127 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005128 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005129
5130 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005131}
5132
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005133static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2,
Gleb Natapov991eebf2013-04-11 12:10:51 +03005134 bool write_fault_to_shadow_pgtable,
5135 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03005136{
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005137 gpa_t gpa = cr2;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005138 pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005139
Gleb Natapov991eebf2013-04-11 12:10:51 +03005140 if (emulation_type & EMULTYPE_NO_REEXECUTE)
5141 return false;
5142
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005143 if (!vcpu->arch.mmu.direct_map) {
5144 /*
5145 * Write permission should be allowed since only
5146 * write access need to be emulated.
5147 */
5148 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03005149
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005150 /*
5151 * If the mapping is invalid in guest, let cpu retry
5152 * it to generate fault.
5153 */
5154 if (gpa == UNMAPPED_GVA)
5155 return true;
5156 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005157
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005158 /*
5159 * Do not retry the unhandleable instruction if it faults on the
5160 * readonly host memory, otherwise it will goto a infinite loop:
5161 * retry instruction -> write #PF -> emulation fail -> retry
5162 * instruction -> ...
5163 */
5164 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005165
5166 /*
5167 * If the instruction failed on the error pfn, it can not be fixed,
5168 * report the error to userspace.
5169 */
5170 if (is_error_noslot_pfn(pfn))
5171 return false;
5172
5173 kvm_release_pfn_clean(pfn);
5174
5175 /* The instructions are well-emulated on direct mmu. */
5176 if (vcpu->arch.mmu.direct_map) {
5177 unsigned int indirect_shadow_pages;
5178
5179 spin_lock(&vcpu->kvm->mmu_lock);
5180 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
5181 spin_unlock(&vcpu->kvm->mmu_lock);
5182
5183 if (indirect_shadow_pages)
5184 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
5185
Gleb Natapova6f177e2010-07-08 12:41:12 +03005186 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005187 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005188
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005189 /*
5190 * if emulation was due to access to shadowed page table
5191 * and it failed try to unshadow page and re-enter the
5192 * guest to let CPU execute the instruction.
5193 */
5194 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005195
5196 /*
5197 * If the access faults on its page table, it can not
5198 * be fixed by unprotecting shadow page and it should
5199 * be reported to userspace.
5200 */
5201 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005202}
5203
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005204static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
5205 unsigned long cr2, int emulation_type)
5206{
5207 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5208 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
5209
5210 last_retry_eip = vcpu->arch.last_retry_eip;
5211 last_retry_addr = vcpu->arch.last_retry_addr;
5212
5213 /*
5214 * If the emulation is caused by #PF and it is non-page_table
5215 * writing instruction, it means the VM-EXIT is caused by shadow
5216 * page protected, we can zap the shadow page and retry this
5217 * instruction directly.
5218 *
5219 * Note: if the guest uses a non-page-table modifying instruction
5220 * on the PDE that points to the instruction, then we will unmap
5221 * the instruction and go to an infinite loop. So, we cache the
5222 * last retried eip and the last fault address, if we meet the eip
5223 * and the address again, we can break out of the potential infinite
5224 * loop.
5225 */
5226 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
5227
5228 if (!(emulation_type & EMULTYPE_RETRY))
5229 return false;
5230
5231 if (x86_page_table_writing_insn(ctxt))
5232 return false;
5233
5234 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
5235 return false;
5236
5237 vcpu->arch.last_retry_eip = ctxt->eip;
5238 vcpu->arch.last_retry_addr = cr2;
5239
5240 if (!vcpu->arch.mmu.direct_map)
5241 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
5242
Xiao Guangrong22368022013-01-13 23:44:12 +08005243 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005244
5245 return true;
5246}
5247
Gleb Natapov716d51a2012-09-03 15:24:26 +03005248static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
5249static int complete_emulated_pio(struct kvm_vcpu *vcpu);
5250
Paolo Bonzini64d60672015-05-07 11:36:11 +02005251static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02005252{
Paolo Bonzini64d60672015-05-07 11:36:11 +02005253 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02005254 /* This is a good place to trace that we are exiting SMM. */
5255 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
5256
Paolo Bonzini64d60672015-05-07 11:36:11 +02005257 if (unlikely(vcpu->arch.smi_pending)) {
5258 kvm_make_request(KVM_REQ_SMI, vcpu);
5259 vcpu->arch.smi_pending = 0;
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02005260 } else {
5261 /* Process a latched INIT, if any. */
5262 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005263 }
5264 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02005265
5266 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005267}
5268
5269static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags)
5270{
5271 unsigned changed = vcpu->arch.hflags ^ emul_flags;
5272
Paolo Bonzinia5845392015-04-01 18:18:53 +02005273 vcpu->arch.hflags = emul_flags;
Paolo Bonzini64d60672015-05-07 11:36:11 +02005274
5275 if (changed & HF_SMM_MASK)
5276 kvm_smm_changed(vcpu);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005277}
5278
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005279static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
5280 unsigned long *db)
5281{
5282 u32 dr6 = 0;
5283 int i;
5284 u32 enable, rwlen;
5285
5286 enable = dr7;
5287 rwlen = dr7 >> 16;
5288 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
5289 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
5290 dr6 |= (1 << i);
5291 return dr6;
5292}
5293
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005294static void kvm_vcpu_check_singlestep(struct kvm_vcpu *vcpu, unsigned long rflags, int *r)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005295{
5296 struct kvm_run *kvm_run = vcpu->run;
5297
5298 /*
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005299 * rflags is the old, "raw" value of the flags. The new value has
5300 * not been saved yet.
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005301 *
5302 * This is correct even for TF set by the guest, because "the
5303 * processor will not generate this exception after the instruction
5304 * that sets the TF flag".
5305 */
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005306 if (unlikely(rflags & X86_EFLAGS_TF)) {
5307 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005308 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 |
5309 DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005310 kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip;
5311 kvm_run->debug.arch.exception = DB_VECTOR;
5312 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5313 *r = EMULATE_USER_EXIT;
5314 } else {
5315 vcpu->arch.emulate_ctxt.eflags &= ~X86_EFLAGS_TF;
5316 /*
5317 * "Certain debug exceptions may clear bit 0-3. The
5318 * remaining contents of the DR6 register are never
5319 * cleared by the processor".
5320 */
5321 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005322 vcpu->arch.dr6 |= DR6_BS | DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005323 kvm_queue_exception(vcpu, DB_VECTOR);
5324 }
5325 }
5326}
5327
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005328static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
5329{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005330 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
5331 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005332 struct kvm_run *kvm_run = vcpu->run;
5333 unsigned long eip = kvm_get_linear_rip(vcpu);
5334 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005335 vcpu->arch.guest_debug_dr7,
5336 vcpu->arch.eff_db);
5337
5338 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005339 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02005340 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005341 kvm_run->debug.arch.exception = DB_VECTOR;
5342 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5343 *r = EMULATE_USER_EXIT;
5344 return true;
5345 }
5346 }
5347
Nadav Amit4161a562014-07-17 01:19:31 +03005348 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
5349 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005350 unsigned long eip = kvm_get_linear_rip(vcpu);
5351 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005352 vcpu->arch.dr7,
5353 vcpu->arch.db);
5354
5355 if (dr6 != 0) {
5356 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005357 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005358 kvm_queue_exception(vcpu, DB_VECTOR);
5359 *r = EMULATE_DONE;
5360 return true;
5361 }
5362 }
5363
5364 return false;
5365}
5366
Andre Przywara51d8b662010-12-21 11:12:02 +01005367int x86_emulate_instruction(struct kvm_vcpu *vcpu,
5368 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01005369 int emulation_type,
5370 void *insn,
5371 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005372{
Gleb Natapov95cb2292010-04-28 19:15:43 +03005373 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005374 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005375 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005376 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005377
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005378 /*
5379 * Clear write_fault_to_shadow_pgtable here to ensure it is
5380 * never reused.
5381 */
5382 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03005383 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03005384
Sheng Yang571008d2008-01-02 14:49:22 +08005385 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005386 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005387
5388 /*
5389 * We will reenter on the same instruction since
5390 * we do not set complete_userspace_io. This does not
5391 * handle watchpoints yet, those would be handled in
5392 * the emulate_ops.
5393 */
5394 if (kvm_vcpu_check_breakpoint(vcpu, &r))
5395 return r;
5396
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005397 ctxt->interruptibility = 0;
5398 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02005399 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005400 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005401
Borislav Petkovb51e9742013-09-22 16:44:52 +02005402 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02005403
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005404 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02005405
Avi Kivitye46479f2010-04-11 13:05:16 +03005406 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02005407 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09005408 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02005409 if (emulation_type & EMULTYPE_TRAP_UD)
5410 return EMULATE_FAIL;
Gleb Natapov991eebf2013-04-11 12:10:51 +03005411 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5412 emulation_type))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005413 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005414 if (emulation_type & EMULTYPE_SKIP)
5415 return EMULATE_FAIL;
5416 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005417 }
5418 }
5419
Gleb Natapovba8afb62009-04-12 13:36:57 +03005420 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03005421 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03005422 if (ctxt->eflags & X86_EFLAGS_RF)
5423 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Gleb Natapovba8afb62009-04-12 13:36:57 +03005424 return EMULATE_DONE;
5425 }
5426
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005427 if (retry_instruction(ctxt, cr2, emulation_type))
5428 return EMULATE_DONE;
5429
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005430 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005431 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005432 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
5433 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03005434 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005435 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005436
Gleb Natapov5cd21912010-03-18 15:20:26 +02005437restart:
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005438 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005439
Joerg Roedel775fde82011-04-04 12:39:24 +02005440 if (r == EMULATION_INTERCEPTED)
5441 return EMULATE_DONE;
5442
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005443 if (r == EMULATION_FAILED) {
Gleb Natapov991eebf2013-04-11 12:10:51 +03005444 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5445 emulation_type))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005446 return EMULATE_DONE;
5447
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005448 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005449 }
5450
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005451 if (ctxt->have_exception) {
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005452 r = EMULATE_DONE;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005453 if (inject_emulated_exception(vcpu))
5454 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005455 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02005456 if (!vcpu->arch.pio.in) {
5457 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03005458 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02005459 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005460 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005461 vcpu->arch.complete_userspace_io = complete_emulated_pio;
5462 }
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005463 r = EMULATE_USER_EXIT;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005464 } else if (vcpu->mmio_needed) {
5465 if (!vcpu->mmio_is_write)
5466 writeback = false;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005467 r = EMULATE_USER_EXIT;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005468 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005469 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03005470 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005471 else
5472 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03005473
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005474 if (writeback) {
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005475 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005476 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005477 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005478 if (vcpu->arch.hflags != ctxt->emul_flags)
5479 kvm_set_hflags(vcpu, ctxt->emul_flags);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005480 kvm_rip_write(vcpu, ctxt->eip);
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005481 if (r == EMULATE_DONE)
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005482 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
Nadav Amit38827db2014-11-02 11:54:53 +02005483 if (!ctxt->have_exception ||
5484 exception_type(ctxt->exception.vector) == EXCPT_TRAP)
5485 __kvm_set_rflags(vcpu, ctxt->eflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005486
5487 /*
5488 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
5489 * do nothing, and it will be requested again as soon as
5490 * the shadow expires. But we still need to check here,
5491 * because POPF has no interrupt shadow.
5492 */
5493 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
5494 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005495 } else
5496 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005497
Gleb Natapove85d28f2010-07-29 15:11:52 +03005498 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005499}
Andre Przywara51d8b662010-12-21 11:12:02 +01005500EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005501
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005502int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005503{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005504 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005505 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5506 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005507 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005508 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005509 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005510}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005511EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005512
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005513static void tsc_bad(void *info)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005514{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005515 __this_cpu_write(cpu_tsc_khz, 0);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005516}
5517
5518static void tsc_khz_changed(void *data)
5519{
5520 struct cpufreq_freqs *freq = data;
5521 unsigned long khz = 0;
5522
5523 if (data)
5524 khz = freq->new;
5525 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5526 khz = cpufreq_quick_get(raw_smp_processor_id());
5527 if (!khz)
5528 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005529 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005530}
5531
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005532static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5533 void *data)
5534{
5535 struct cpufreq_freqs *freq = data;
5536 struct kvm *kvm;
5537 struct kvm_vcpu *vcpu;
5538 int i, send_ipi = 0;
5539
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005540 /*
5541 * We allow guests to temporarily run on slowing clocks,
5542 * provided we notify them after, or to run on accelerating
5543 * clocks, provided we notify them before. Thus time never
5544 * goes backwards.
5545 *
5546 * However, we have a problem. We can't atomically update
5547 * the frequency of a given CPU from this function; it is
5548 * merely a notifier, which can be called from any CPU.
5549 * Changing the TSC frequency at arbitrary points in time
5550 * requires a recomputation of local variables related to
5551 * the TSC for each VCPU. We must flag these local variables
5552 * to be updated and be sure the update takes place with the
5553 * new frequency before any guests proceed.
5554 *
5555 * Unfortunately, the combination of hotplug CPU and frequency
5556 * change creates an intractable locking scenario; the order
5557 * of when these callouts happen is undefined with respect to
5558 * CPU hotplug, and they can race with each other. As such,
5559 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5560 * undefined; you can actually have a CPU frequency change take
5561 * place in between the computation of X and the setting of the
5562 * variable. To protect against this problem, all updates of
5563 * the per_cpu tsc_khz variable are done in an interrupt
5564 * protected IPI, and all callers wishing to update the value
5565 * must wait for a synchronous IPI to complete (which is trivial
5566 * if the caller is on the CPU already). This establishes the
5567 * necessary total order on variable updates.
5568 *
5569 * Note that because a guest time update may take place
5570 * anytime after the setting of the VCPU's request bit, the
5571 * correct TSC value must be set before the request. However,
5572 * to ensure the update actually makes it to any guest which
5573 * starts running in hardware virtualization between the set
5574 * and the acquisition of the spinlock, we must also ping the
5575 * CPU after setting the request bit.
5576 *
5577 */
5578
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005579 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5580 return 0;
5581 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5582 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005583
5584 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005585
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005586 spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005587 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005588 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005589 if (vcpu->cpu != freq->cpu)
5590 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005591 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005592 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005593 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005594 }
5595 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005596 spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005597
5598 if (freq->old < freq->new && send_ipi) {
5599 /*
5600 * We upscale the frequency. Must make the guest
5601 * doesn't see old kvmclock values while running with
5602 * the new frequency, otherwise we risk the guest sees
5603 * time go backwards.
5604 *
5605 * In case we update the frequency for another cpu
5606 * (which might be in guest context) send an interrupt
5607 * to kick the cpu out of guest context. Next time
5608 * guest context is entered kvmclock will be updated,
5609 * so the guest will not see stale values.
5610 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005611 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005612 }
5613 return 0;
5614}
5615
5616static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005617 .notifier_call = kvmclock_cpufreq_notifier
5618};
5619
5620static int kvmclock_cpu_notifier(struct notifier_block *nfb,
5621 unsigned long action, void *hcpu)
5622{
5623 unsigned int cpu = (unsigned long)hcpu;
5624
5625 switch (action) {
5626 case CPU_ONLINE:
5627 case CPU_DOWN_FAILED:
5628 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
5629 break;
5630 case CPU_DOWN_PREPARE:
5631 smp_call_function_single(cpu, tsc_bad, NULL, 1);
5632 break;
5633 }
5634 return NOTIFY_OK;
5635}
5636
5637static struct notifier_block kvmclock_cpu_notifier_block = {
5638 .notifier_call = kvmclock_cpu_notifier,
5639 .priority = -INT_MAX
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005640};
5641
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005642static void kvm_timer_init(void)
5643{
5644 int cpu;
5645
Zachary Amsdenc2855452010-09-18 14:38:15 -10005646 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305647
5648 cpu_notifier_register_begin();
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005649 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005650#ifdef CONFIG_CPU_FREQ
5651 struct cpufreq_policy policy;
5652 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005653 cpu = get_cpu();
5654 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005655 if (policy.cpuinfo.max_freq)
5656 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005657 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005658#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005659 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5660 CPUFREQ_TRANSITION_NOTIFIER);
5661 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005662 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005663 for_each_online_cpu(cpu)
5664 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305665
5666 __register_hotcpu_notifier(&kvmclock_cpu_notifier_block);
5667 cpu_notifier_register_done();
5668
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005669}
5670
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005671static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5672
Gleb Natapovf5132b02011-11-10 14:57:22 +02005673int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005674{
Alex,Shi086c9852011-10-20 15:34:01 +08005675 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005676}
5677
5678static int kvm_is_user_mode(void)
5679{
5680 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005681
Alex,Shi086c9852011-10-20 15:34:01 +08005682 if (__this_cpu_read(current_vcpu))
5683 user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005684
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005685 return user_mode != 0;
5686}
5687
5688static unsigned long kvm_get_guest_ip(void)
5689{
5690 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005691
Alex,Shi086c9852011-10-20 15:34:01 +08005692 if (__this_cpu_read(current_vcpu))
5693 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005694
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005695 return ip;
5696}
5697
5698static struct perf_guest_info_callbacks kvm_guest_cbs = {
5699 .is_in_guest = kvm_is_in_guest,
5700 .is_user_mode = kvm_is_user_mode,
5701 .get_guest_ip = kvm_get_guest_ip,
5702};
5703
5704void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5705{
Alex,Shi086c9852011-10-20 15:34:01 +08005706 __this_cpu_write(current_vcpu, vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005707}
5708EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5709
5710void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5711{
Alex,Shi086c9852011-10-20 15:34:01 +08005712 __this_cpu_write(current_vcpu, NULL);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005713}
5714EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5715
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005716static void kvm_set_mmio_spte_mask(void)
5717{
5718 u64 mask;
5719 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5720
5721 /*
5722 * Set the reserved bits and the present bit of an paging-structure
5723 * entry to generate page fault with PFER.RSV = 1.
5724 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08005725 /* Mask the reserved physical address bits. */
Tiejun Chend1431482014-09-01 18:44:04 +08005726 mask = rsvd_bits(maxphyaddr, 51);
Xiao Guangrong885032b2013-06-07 16:51:23 +08005727
5728 /* Bit 62 is always reserved for 32bit host. */
5729 mask |= 0x3ull << 62;
5730
5731 /* Set the present bit. */
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005732 mask |= 1ull;
5733
5734#ifdef CONFIG_X86_64
5735 /*
5736 * If reserved bit is not supported, clear the present bit to disable
5737 * mmio page fault.
5738 */
5739 if (maxphyaddr == 52)
5740 mask &= ~1ull;
5741#endif
5742
5743 kvm_mmu_set_mmio_spte_mask(mask);
5744}
5745
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005746#ifdef CONFIG_X86_64
5747static void pvclock_gtod_update_fn(struct work_struct *work)
5748{
Marcelo Tosattid8281992012-11-27 23:29:01 -02005749 struct kvm *kvm;
5750
5751 struct kvm_vcpu *vcpu;
5752 int i;
5753
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005754 spin_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005755 list_for_each_entry(kvm, &vm_list, vm_list)
5756 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08005757 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005758 atomic_set(&kvm_guest_has_master_clock, 0);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005759 spin_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005760}
5761
5762static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
5763
5764/*
5765 * Notification about pvclock gtod data update.
5766 */
5767static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
5768 void *priv)
5769{
5770 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
5771 struct timekeeper *tk = priv;
5772
5773 update_pvclock_gtod(tk);
5774
5775 /* disable master clock if host does not trust, or does not
5776 * use, TSC clocksource
5777 */
5778 if (gtod->clock.vclock_mode != VCLOCK_TSC &&
5779 atomic_read(&kvm_guest_has_master_clock) != 0)
5780 queue_work(system_long_wq, &pvclock_gtod_work);
5781
5782 return 0;
5783}
5784
5785static struct notifier_block pvclock_gtod_notifier = {
5786 .notifier_call = pvclock_gtod_notify,
5787};
5788#endif
5789
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005790int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02005791{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005792 int r;
Mathias Krause6b61edf2013-06-26 20:36:23 +02005793 struct kvm_x86_ops *ops = opaque;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005794
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005795 if (kvm_x86_ops) {
5796 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005797 r = -EEXIST;
5798 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005799 }
5800
5801 if (!ops->cpu_has_kvm_support()) {
5802 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005803 r = -EOPNOTSUPP;
5804 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005805 }
5806 if (ops->disabled_by_bios()) {
5807 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005808 r = -EOPNOTSUPP;
5809 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005810 }
5811
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005812 r = -ENOMEM;
5813 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
5814 if (!shared_msrs) {
5815 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
5816 goto out;
5817 }
5818
Avi Kivity97db56c2008-01-13 13:23:56 +02005819 r = kvm_mmu_module_init();
5820 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005821 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02005822
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005823 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02005824
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005825 kvm_x86_ops = ops;
Paolo Bonzini920c8372014-03-26 15:54:00 +01005826
Sheng Yang7b523452008-04-25 21:13:50 +08005827 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005828 PT_DIRTY_MASK, PT64_NX_MASK, 0);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005829
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005830 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005831
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005832 perf_register_guest_info_callbacks(&kvm_guest_cbs);
5833
Dexuan Cui2acf9232010-06-10 11:27:12 +08005834 if (cpu_has_xsave)
5835 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
5836
Gleb Natapovc5cc4212012-08-05 15:58:30 +03005837 kvm_lapic_init();
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005838#ifdef CONFIG_X86_64
5839 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
5840#endif
5841
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005842 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005843
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005844out_free_percpu:
5845 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005846out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005847 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02005848}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005849
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005850void kvm_arch_exit(void)
5851{
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005852 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
5853
Jan Kiszka888d2562009-04-17 19:24:58 +02005854 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5855 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
5856 CPUFREQ_TRANSITION_NOTIFIER);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005857 unregister_hotcpu_notifier(&kvmclock_cpu_notifier_block);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005858#ifdef CONFIG_X86_64
5859 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
5860#endif
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005861 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005862 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005863 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005864}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005865
Joel Schopp5cb56052015-03-02 13:43:31 -06005866int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05005867{
5868 ++vcpu->stat.halt_exits;
5869 if (irqchip_in_kernel(vcpu->kvm)) {
Avi Kivitya4535292008-04-13 17:54:35 +03005870 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005871 return 1;
5872 } else {
5873 vcpu->run->exit_reason = KVM_EXIT_HLT;
5874 return 0;
5875 }
5876}
Joel Schopp5cb56052015-03-02 13:43:31 -06005877EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
5878
5879int kvm_emulate_halt(struct kvm_vcpu *vcpu)
5880{
5881 kvm_x86_ops->skip_emulated_instruction(vcpu);
5882 return kvm_vcpu_halt(vcpu);
5883}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005884EXPORT_SYMBOL_GPL(kvm_emulate_halt);
5885
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005886int kvm_hv_hypercall(struct kvm_vcpu *vcpu)
5887{
5888 u64 param, ingpa, outgpa, ret;
5889 uint16_t code, rep_idx, rep_cnt, res = HV_STATUS_SUCCESS, rep_done = 0;
5890 bool fast, longmode;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005891
5892 /*
5893 * hypercall generates UD from non zero cpl and real mode
5894 * per HYPER-V spec
5895 */
Avi Kivity3eeb3282010-01-21 15:31:48 +02005896 if (kvm_x86_ops->get_cpl(vcpu) != 0 || !is_protmode(vcpu)) {
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005897 kvm_queue_exception(vcpu, UD_VECTOR);
5898 return 0;
5899 }
5900
Nadav Amita449c7a2014-06-18 17:19:24 +03005901 longmode = is_64_bit_mode(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005902
5903 if (!longmode) {
Gleb Natapovccd46932010-01-19 15:06:38 +02005904 param = ((u64)kvm_register_read(vcpu, VCPU_REGS_RDX) << 32) |
5905 (kvm_register_read(vcpu, VCPU_REGS_RAX) & 0xffffffff);
5906 ingpa = ((u64)kvm_register_read(vcpu, VCPU_REGS_RBX) << 32) |
5907 (kvm_register_read(vcpu, VCPU_REGS_RCX) & 0xffffffff);
5908 outgpa = ((u64)kvm_register_read(vcpu, VCPU_REGS_RDI) << 32) |
5909 (kvm_register_read(vcpu, VCPU_REGS_RSI) & 0xffffffff);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005910 }
5911#ifdef CONFIG_X86_64
5912 else {
5913 param = kvm_register_read(vcpu, VCPU_REGS_RCX);
5914 ingpa = kvm_register_read(vcpu, VCPU_REGS_RDX);
5915 outgpa = kvm_register_read(vcpu, VCPU_REGS_R8);
5916 }
5917#endif
5918
5919 code = param & 0xffff;
5920 fast = (param >> 16) & 0x1;
5921 rep_cnt = (param >> 32) & 0xfff;
5922 rep_idx = (param >> 48) & 0xfff;
5923
5924 trace_kvm_hv_hypercall(code, fast, rep_cnt, rep_idx, ingpa, outgpa);
5925
Gleb Natapovc25bc162010-01-17 15:51:24 +02005926 switch (code) {
5927 case HV_X64_HV_NOTIFY_LONG_SPIN_WAIT:
5928 kvm_vcpu_on_spin(vcpu);
5929 break;
5930 default:
5931 res = HV_STATUS_INVALID_HYPERCALL_CODE;
5932 break;
5933 }
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005934
5935 ret = res | (((u64)rep_done & 0xfff) << 32);
5936 if (longmode) {
5937 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
5938 } else {
5939 kvm_register_write(vcpu, VCPU_REGS_RDX, ret >> 32);
5940 kvm_register_write(vcpu, VCPU_REGS_RAX, ret & 0xffffffff);
5941 }
5942
5943 return 1;
5944}
5945
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305946/*
5947 * kvm_pv_kick_cpu_op: Kick a vcpu.
5948 *
5949 * @apicid - apicid of vcpu to be kicked.
5950 */
5951static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
5952{
Raghavendra K T24d21662013-08-26 14:18:35 +05305953 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305954
Raghavendra K T24d21662013-08-26 14:18:35 +05305955 lapic_irq.shorthand = 0;
5956 lapic_irq.dest_mode = 0;
5957 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06005958 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305959
Raghavendra K T24d21662013-08-26 14:18:35 +05305960 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08005961 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305962}
5963
Hollis Blanchard8776e512007-10-31 17:24:24 -05005964int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
5965{
5966 unsigned long nr, a0, a1, a2, a3, ret;
Nadav Amita449c7a2014-06-18 17:19:24 +03005967 int op_64_bit, r = 1;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005968
Joel Schopp5cb56052015-03-02 13:43:31 -06005969 kvm_x86_ops->skip_emulated_instruction(vcpu);
5970
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005971 if (kvm_hv_hypercall_enabled(vcpu->kvm))
5972 return kvm_hv_hypercall(vcpu);
5973
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005974 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
5975 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
5976 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
5977 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
5978 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005979
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005980 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005981
Nadav Amita449c7a2014-06-18 17:19:24 +03005982 op_64_bit = is_64_bit_mode(vcpu);
5983 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05005984 nr &= 0xFFFFFFFF;
5985 a0 &= 0xFFFFFFFF;
5986 a1 &= 0xFFFFFFFF;
5987 a2 &= 0xFFFFFFFF;
5988 a3 &= 0xFFFFFFFF;
5989 }
5990
Jan Kiszka07708c42009-08-03 18:43:28 +02005991 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
5992 ret = -KVM_EPERM;
5993 goto out;
5994 }
5995
Hollis Blanchard8776e512007-10-31 17:24:24 -05005996 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02005997 case KVM_HC_VAPIC_POLL_IRQ:
5998 ret = 0;
5999 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306000 case KVM_HC_KICK_CPU:
6001 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
6002 ret = 0;
6003 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006004 default:
6005 ret = -KVM_ENOSYS;
6006 break;
6007 }
Jan Kiszka07708c42009-08-03 18:43:28 +02006008out:
Nadav Amita449c7a2014-06-18 17:19:24 +03006009 if (!op_64_bit)
6010 ret = (u32)ret;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006011 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05306012 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05006013 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006014}
6015EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
6016
Jan Kiszkab6785de2012-09-20 07:43:17 +02006017static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006018{
Avi Kivityd6aa1002011-04-20 15:47:13 +03006019 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006020 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006021 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006022
Hollis Blanchard8776e512007-10-31 17:24:24 -05006023 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006024
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006025 return emulator_write_emulated(ctxt, rip, instruction, 3, NULL);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006026}
6027
Hollis Blanchardd0752062007-10-31 17:24:25 -05006028/*
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006029 * Check if userspace requested an interrupt window, and that the
6030 * interrupt window is open.
6031 *
6032 * No need to exit to userspace if we already have an interrupt queued.
6033 */
Avi Kivity851ba692009-08-24 11:10:17 +03006034static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006035{
Gleb Natapov80618232009-04-21 17:44:56 +03006036 return (!irqchip_in_kernel(vcpu->kvm) && !kvm_cpu_has_interrupt(vcpu) &&
Avi Kivity851ba692009-08-24 11:10:17 +03006037 vcpu->run->request_interrupt_window &&
Gleb Natapov5df56642009-04-21 17:44:59 +03006038 kvm_arch_interrupt_allowed(vcpu));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006039}
6040
Avi Kivity851ba692009-08-24 11:10:17 +03006041static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006042{
Avi Kivity851ba692009-08-24 11:10:17 +03006043 struct kvm_run *kvm_run = vcpu->run;
6044
Jan Kiszka91586a32009-10-05 13:07:21 +02006045 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02006046 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006047 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006048 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Jan Kiszka45312202008-12-11 16:54:54 +01006049 if (irqchip_in_kernel(vcpu->kvm))
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006050 kvm_run->ready_for_interrupt_injection = 1;
Jan Kiszka45312202008-12-11 16:54:54 +01006051 else
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006052 kvm_run->ready_for_interrupt_injection =
Gleb Natapovfa9726b2009-05-11 13:35:47 +03006053 kvm_arch_interrupt_allowed(vcpu) &&
6054 !kvm_cpu_has_interrupt(vcpu) &&
6055 !kvm_event_needs_reinjection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006056}
6057
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006058static void update_cr8_intercept(struct kvm_vcpu *vcpu)
6059{
6060 int max_irr, tpr;
6061
6062 if (!kvm_x86_ops->update_cr8_intercept)
6063 return;
6064
Avi Kivity88c808f2009-08-17 22:49:40 +03006065 if (!vcpu->arch.apic)
6066 return;
6067
Gleb Natapov8db3baa2009-05-11 13:35:54 +03006068 if (!vcpu->arch.apic->vapic_addr)
6069 max_irr = kvm_lapic_find_highest_irr(vcpu);
6070 else
6071 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006072
6073 if (max_irr != -1)
6074 max_irr >>= 4;
6075
6076 tpr = kvm_lapic_get_cr8(vcpu);
6077
6078 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
6079}
6080
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006081static int inject_pending_event(struct kvm_vcpu *vcpu, bool req_int_win)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006082{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006083 int r;
6084
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006085 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006086 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d2010-03-11 13:01:59 +02006087 trace_kvm_inj_exception(vcpu->arch.exception.nr,
6088 vcpu->arch.exception.has_error_code,
6089 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03006090
6091 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
6092 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
6093 X86_EFLAGS_RF);
6094
Nadav Amit6bdf0662014-09-30 20:49:14 +03006095 if (vcpu->arch.exception.nr == DB_VECTOR &&
6096 (vcpu->arch.dr7 & DR7_GD)) {
6097 vcpu->arch.dr7 &= ~DR7_GD;
6098 kvm_update_dr7(vcpu);
6099 }
6100
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006101 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
6102 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02006103 vcpu->arch.exception.error_code,
6104 vcpu->arch.exception.reinject);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006105 return 0;
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006106 }
6107
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006108 if (vcpu->arch.nmi_injected) {
6109 kvm_x86_ops->set_nmi(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006110 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006111 }
6112
6113 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006114 kvm_x86_ops->set_irq(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006115 return 0;
6116 }
6117
6118 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6119 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6120 if (r != 0)
6121 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006122 }
6123
6124 /* try to inject new event if pending */
6125 if (vcpu->arch.nmi_pending) {
6126 if (kvm_x86_ops->nmi_allowed(vcpu)) {
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006127 --vcpu->arch.nmi_pending;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006128 vcpu->arch.nmi_injected = true;
6129 kvm_x86_ops->set_nmi(vcpu);
6130 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08006131 } else if (kvm_cpu_has_injectable_intr(vcpu)) {
Bandan Das9242b5b2014-07-08 00:30:23 -04006132 /*
6133 * Because interrupts can be injected asynchronously, we are
6134 * calling check_nested_events again here to avoid a race condition.
6135 * See https://lkml.org/lkml/2014/7/2/60 for discussion about this
6136 * proposal and current concerns. Perhaps we should be setting
6137 * KVM_REQ_EVENT only on certain events and not unconditionally?
6138 */
6139 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6140 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6141 if (r != 0)
6142 return r;
6143 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006144 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006145 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
6146 false);
6147 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006148 }
6149 }
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006150 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006151}
6152
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006153static void process_nmi(struct kvm_vcpu *vcpu)
6154{
6155 unsigned limit = 2;
6156
6157 /*
6158 * x86 is limited to one NMI running, and one NMI pending after it.
6159 * If an NMI is already in progress, limit further NMIs to just one.
6160 * Otherwise, allow two (and we'll inject the first one immediately).
6161 */
6162 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
6163 limit = 1;
6164
6165 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
6166 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
6167 kvm_make_request(KVM_REQ_EVENT, vcpu);
6168}
6169
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006170#define put_smstate(type, buf, offset, val) \
6171 *(type *)((buf) + (offset) - 0x7e00) = val
6172
6173static u32 process_smi_get_segment_flags(struct kvm_segment *seg)
6174{
6175 u32 flags = 0;
6176 flags |= seg->g << 23;
6177 flags |= seg->db << 22;
6178 flags |= seg->l << 21;
6179 flags |= seg->avl << 20;
6180 flags |= seg->present << 15;
6181 flags |= seg->dpl << 13;
6182 flags |= seg->s << 12;
6183 flags |= seg->type << 8;
6184 return flags;
6185}
6186
6187static void process_smi_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
6188{
6189 struct kvm_segment seg;
6190 int offset;
6191
6192 kvm_get_segment(vcpu, &seg, n);
6193 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
6194
6195 if (n < 3)
6196 offset = 0x7f84 + n * 12;
6197 else
6198 offset = 0x7f2c + (n - 3) * 12;
6199
6200 put_smstate(u32, buf, offset + 8, seg.base);
6201 put_smstate(u32, buf, offset + 4, seg.limit);
6202 put_smstate(u32, buf, offset, process_smi_get_segment_flags(&seg));
6203}
6204
6205static void process_smi_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
6206{
6207 struct kvm_segment seg;
6208 int offset;
6209 u16 flags;
6210
6211 kvm_get_segment(vcpu, &seg, n);
6212 offset = 0x7e00 + n * 16;
6213
6214 flags = process_smi_get_segment_flags(&seg) >> 8;
6215 put_smstate(u16, buf, offset, seg.selector);
6216 put_smstate(u16, buf, offset + 2, flags);
6217 put_smstate(u32, buf, offset + 4, seg.limit);
6218 put_smstate(u64, buf, offset + 8, seg.base);
6219}
6220
6221static void process_smi_save_state_32(struct kvm_vcpu *vcpu, char *buf)
6222{
6223 struct desc_ptr dt;
6224 struct kvm_segment seg;
6225 unsigned long val;
6226 int i;
6227
6228 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
6229 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
6230 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
6231 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
6232
6233 for (i = 0; i < 8; i++)
6234 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
6235
6236 kvm_get_dr(vcpu, 6, &val);
6237 put_smstate(u32, buf, 0x7fcc, (u32)val);
6238 kvm_get_dr(vcpu, 7, &val);
6239 put_smstate(u32, buf, 0x7fc8, (u32)val);
6240
6241 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6242 put_smstate(u32, buf, 0x7fc4, seg.selector);
6243 put_smstate(u32, buf, 0x7f64, seg.base);
6244 put_smstate(u32, buf, 0x7f60, seg.limit);
6245 put_smstate(u32, buf, 0x7f5c, process_smi_get_segment_flags(&seg));
6246
6247 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6248 put_smstate(u32, buf, 0x7fc0, seg.selector);
6249 put_smstate(u32, buf, 0x7f80, seg.base);
6250 put_smstate(u32, buf, 0x7f7c, seg.limit);
6251 put_smstate(u32, buf, 0x7f78, process_smi_get_segment_flags(&seg));
6252
6253 kvm_x86_ops->get_gdt(vcpu, &dt);
6254 put_smstate(u32, buf, 0x7f74, dt.address);
6255 put_smstate(u32, buf, 0x7f70, dt.size);
6256
6257 kvm_x86_ops->get_idt(vcpu, &dt);
6258 put_smstate(u32, buf, 0x7f58, dt.address);
6259 put_smstate(u32, buf, 0x7f54, dt.size);
6260
6261 for (i = 0; i < 6; i++)
6262 process_smi_save_seg_32(vcpu, buf, i);
6263
6264 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
6265
6266 /* revision id */
6267 put_smstate(u32, buf, 0x7efc, 0x00020000);
6268 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
6269}
6270
6271static void process_smi_save_state_64(struct kvm_vcpu *vcpu, char *buf)
6272{
6273#ifdef CONFIG_X86_64
6274 struct desc_ptr dt;
6275 struct kvm_segment seg;
6276 unsigned long val;
6277 int i;
6278
6279 for (i = 0; i < 16; i++)
6280 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
6281
6282 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
6283 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
6284
6285 kvm_get_dr(vcpu, 6, &val);
6286 put_smstate(u64, buf, 0x7f68, val);
6287 kvm_get_dr(vcpu, 7, &val);
6288 put_smstate(u64, buf, 0x7f60, val);
6289
6290 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
6291 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
6292 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
6293
6294 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
6295
6296 /* revision id */
6297 put_smstate(u32, buf, 0x7efc, 0x00020064);
6298
6299 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
6300
6301 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6302 put_smstate(u16, buf, 0x7e90, seg.selector);
6303 put_smstate(u16, buf, 0x7e92, process_smi_get_segment_flags(&seg) >> 8);
6304 put_smstate(u32, buf, 0x7e94, seg.limit);
6305 put_smstate(u64, buf, 0x7e98, seg.base);
6306
6307 kvm_x86_ops->get_idt(vcpu, &dt);
6308 put_smstate(u32, buf, 0x7e84, dt.size);
6309 put_smstate(u64, buf, 0x7e88, dt.address);
6310
6311 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6312 put_smstate(u16, buf, 0x7e70, seg.selector);
6313 put_smstate(u16, buf, 0x7e72, process_smi_get_segment_flags(&seg) >> 8);
6314 put_smstate(u32, buf, 0x7e74, seg.limit);
6315 put_smstate(u64, buf, 0x7e78, seg.base);
6316
6317 kvm_x86_ops->get_gdt(vcpu, &dt);
6318 put_smstate(u32, buf, 0x7e64, dt.size);
6319 put_smstate(u64, buf, 0x7e68, dt.address);
6320
6321 for (i = 0; i < 6; i++)
6322 process_smi_save_seg_64(vcpu, buf, i);
6323#else
6324 WARN_ON_ONCE(1);
6325#endif
6326}
6327
Paolo Bonzini64d60672015-05-07 11:36:11 +02006328static void process_smi(struct kvm_vcpu *vcpu)
6329{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006330 struct kvm_segment cs, ds;
6331 char buf[512];
6332 u32 cr0;
6333
Paolo Bonzini64d60672015-05-07 11:36:11 +02006334 if (is_smm(vcpu)) {
6335 vcpu->arch.smi_pending = true;
6336 return;
6337 }
6338
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006339 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
6340 vcpu->arch.hflags |= HF_SMM_MASK;
6341 memset(buf, 0, 512);
6342 if (guest_cpuid_has_longmode(vcpu))
6343 process_smi_save_state_64(vcpu, buf);
6344 else
6345 process_smi_save_state_32(vcpu, buf);
6346
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006347 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006348
6349 if (kvm_x86_ops->get_nmi_mask(vcpu))
6350 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
6351 else
6352 kvm_x86_ops->set_nmi_mask(vcpu, true);
6353
6354 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
6355 kvm_rip_write(vcpu, 0x8000);
6356
6357 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
6358 kvm_x86_ops->set_cr0(vcpu, cr0);
6359 vcpu->arch.cr0 = cr0;
6360
6361 kvm_x86_ops->set_cr4(vcpu, 0);
6362
6363 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
6364
6365 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
6366 cs.base = vcpu->arch.smbase;
6367
6368 ds.selector = 0;
6369 ds.base = 0;
6370
6371 cs.limit = ds.limit = 0xffffffff;
6372 cs.type = ds.type = 0x3;
6373 cs.dpl = ds.dpl = 0;
6374 cs.db = ds.db = 0;
6375 cs.s = ds.s = 1;
6376 cs.l = ds.l = 0;
6377 cs.g = ds.g = 1;
6378 cs.avl = ds.avl = 0;
6379 cs.present = ds.present = 1;
6380 cs.unusable = ds.unusable = 0;
6381 cs.padding = ds.padding = 0;
6382
6383 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
6384 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
6385 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
6386 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
6387 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
6388 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
6389
6390 if (guest_cpuid_has_longmode(vcpu))
6391 kvm_x86_ops->set_efer(vcpu, 0);
6392
6393 kvm_update_cpuid(vcpu);
6394 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006395}
6396
Yang Zhang3d81bc72013-04-11 19:25:13 +08006397static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006398{
6399 u64 eoi_exit_bitmap[4];
Yang Zhangcf9e65b2013-04-11 19:25:14 +08006400 u32 tmr[8];
Yang Zhangc7c9c562013-01-25 10:18:51 +08006401
Yang Zhang3d81bc72013-04-11 19:25:13 +08006402 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
6403 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006404
6405 memset(eoi_exit_bitmap, 0, 32);
Yang Zhangcf9e65b2013-04-11 19:25:14 +08006406 memset(tmr, 0, 32);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006407
Yang Zhangcf9e65b2013-04-11 19:25:14 +08006408 kvm_ioapic_scan_entry(vcpu, eoi_exit_bitmap, tmr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006409 kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangcf9e65b2013-04-11 19:25:14 +08006410 kvm_apic_update_tmr(vcpu, tmr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006411}
6412
Radim Krčmářa70656b2014-09-18 12:38:36 -04006413static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu)
6414{
6415 ++vcpu->stat.tlb_flush;
6416 kvm_x86_ops->tlb_flush(vcpu);
6417}
6418
Tang Chen4256f432014-09-24 15:57:54 +08006419void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
6420{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006421 struct page *page = NULL;
6422
Paolo Bonzinif439ed22014-10-02 13:53:24 +02006423 if (!irqchip_in_kernel(vcpu->kvm))
6424 return;
6425
Tang Chen4256f432014-09-24 15:57:54 +08006426 if (!kvm_x86_ops->set_apic_access_page_addr)
6427 return;
6428
Tang Chenc24ae0d2014-09-24 15:57:58 +08006429 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Andrea Arcangelie8fd5e92015-05-08 14:32:56 +02006430 if (is_error_page(page))
6431 return;
Tang Chenc24ae0d2014-09-24 15:57:58 +08006432 kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page));
6433
6434 /*
6435 * Do not pin apic access page in memory, the MMU notifier
6436 * will call us again if it is migrated or swapped out.
6437 */
6438 put_page(page);
Tang Chen4256f432014-09-24 15:57:54 +08006439}
6440EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page);
6441
Tang Chenfe715572014-09-24 15:57:57 +08006442void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
6443 unsigned long address)
6444{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006445 /*
6446 * The physical address of apic access page is stored in the VMCS.
6447 * Update it when it becomes invalid.
6448 */
6449 if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT))
6450 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
Tang Chenfe715572014-09-24 15:57:57 +08006451}
6452
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006453/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01006454 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006455 * exiting to the userspace. Otherwise, the value will be returned to the
6456 * userspace.
6457 */
Avi Kivity851ba692009-08-24 11:10:17 +03006458static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006459{
6460 int r;
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03006461 bool req_int_win = !irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03006462 vcpu->run->request_interrupt_window;
Jan Kiszka730dca42013-04-28 10:50:52 +02006463 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006464
Avi Kivity3e007502010-06-23 14:26:18 +03006465 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03006466 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05006467 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006468 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03006469 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006470 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
6471 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03006472 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
6473 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10006474 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
6475 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10006476 if (unlikely(r))
6477 goto out;
6478 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006479 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03006480 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006481 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Radim Krčmářa70656b2014-09-18 12:38:36 -04006482 kvm_vcpu_flush_tlb(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006483 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006484 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02006485 r = 0;
6486 goto out;
6487 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006488 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006489 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01006490 r = 0;
6491 goto out;
6492 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006493 if (kvm_check_request(KVM_REQ_DEACTIVATE_FPU, vcpu)) {
Avi Kivity02daab22009-12-30 12:40:26 +02006494 vcpu->fpu_active = 0;
6495 kvm_x86_ops->fpu_deactivate(vcpu);
6496 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006497 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
6498 /* Page is swapped out. Do synthetic halt */
6499 vcpu->arch.apf.halted = true;
6500 r = 1;
6501 goto out;
6502 }
Glauber Costac9aaa892011-07-11 15:28:14 -04006503 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
6504 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006505 if (kvm_check_request(KVM_REQ_SMI, vcpu))
6506 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006507 if (kvm_check_request(KVM_REQ_NMI, vcpu))
6508 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006509 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006510 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006511 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006512 kvm_pmu_deliver_pmi(vcpu);
Yang Zhang3d81bc72013-04-11 19:25:13 +08006513 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
6514 vcpu_scan_ioapic(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08006515 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
6516 kvm_vcpu_reload_apic_access_page(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02006517 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006518
Avi Kivityb463a6f2010-07-20 15:06:17 +03006519 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Jan Kiszka66450a22013-03-13 12:42:34 +01006520 kvm_apic_accept_events(vcpu);
6521 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
6522 r = 1;
6523 goto out;
6524 }
6525
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006526 if (inject_pending_event(vcpu, req_int_win) != 0)
6527 req_immediate_exit = true;
Avi Kivity3842d132010-07-27 12:30:24 +03006528 /* enable NMI/IRQ window open exits if needed */
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006529 else if (vcpu->arch.nmi_pending)
Jan Kiszkac9a79532014-03-07 20:03:15 +01006530 kvm_x86_ops->enable_nmi_window(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006531 else if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win)
Jan Kiszkac9a79532014-03-07 20:03:15 +01006532 kvm_x86_ops->enable_irq_window(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03006533
Avi Kivity3842d132010-07-27 12:30:24 +03006534 if (kvm_lapic_enabled(vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006535 /*
6536 * Update architecture specific hints for APIC
6537 * virtual interrupt delivery.
6538 */
6539 if (kvm_x86_ops->hwapic_irr_update)
6540 kvm_x86_ops->hwapic_irr_update(vcpu,
6541 kvm_lapic_find_highest_irr(vcpu));
Avi Kivity3842d132010-07-27 12:30:24 +03006542 update_cr8_intercept(vcpu);
6543 kvm_lapic_sync_to_vapic(vcpu);
6544 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006545 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006546
Avi Kivityd8368af2012-05-14 18:07:56 +03006547 r = kvm_mmu_reload(vcpu);
6548 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006549 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03006550 }
6551
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006552 preempt_disable();
6553
6554 kvm_x86_ops->prepare_guest_switch(vcpu);
6555 if (vcpu->fpu_active)
6556 kvm_load_guest_fpu(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006557 kvm_load_guest_xcr0(vcpu);
6558
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006559 vcpu->mode = IN_GUEST_MODE;
6560
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006561 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6562
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006563 /* We should set ->mode before check ->requests,
6564 * see the comment in make_all_cpus_request.
6565 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006566 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006567
6568 local_irq_disable();
6569
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006570 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006571 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006572 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006573 smp_wmb();
6574 local_irq_enable();
6575 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006576 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006577 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006578 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006579 }
6580
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006581 if (req_immediate_exit)
6582 smp_send_reschedule(vcpu->cpu);
6583
Christian Borntraegerccf73aaf2015-04-30 13:43:31 +02006584 __kvm_guest_enter();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006585
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006586 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006587 set_debugreg(0, 7);
6588 set_debugreg(vcpu->arch.eff_db[0], 0);
6589 set_debugreg(vcpu->arch.eff_db[1], 1);
6590 set_debugreg(vcpu->arch.eff_db[2], 2);
6591 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006592 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03006593 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006594 }
6595
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006596 trace_kvm_entry(vcpu->vcpu_id);
Marcelo Tosattid0659d92014-12-16 09:08:15 -05006597 wait_lapic_expire(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006598 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006599
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006600 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006601 * Do this here before restoring debug registers on the host. And
6602 * since we do this before handling the vmexit, a DR access vmexit
6603 * can (a) read the correct value of the debug registers, (b) set
6604 * KVM_DEBUGREG_WONT_EXIT again.
6605 */
6606 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
6607 int i;
6608
6609 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
6610 kvm_x86_ops->sync_dirty_debug_regs(vcpu);
6611 for (i = 0; i < KVM_NR_DB_REGS; i++)
6612 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
6613 }
6614
6615 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006616 * If the guest has used debug registers, at least dr7
6617 * will be disabled while returning to the host.
6618 * If we don't have active breakpoints in the host, we don't
6619 * care about the messed up debug address registers. But if
6620 * we have some of them active, restore the old state.
6621 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01006622 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006623 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006624
Marcelo Tosatti886b4702012-11-27 23:28:58 -02006625 vcpu->arch.last_guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu,
6626 native_read_tsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10006627
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006628 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03006629 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006630
6631 /* Interrupt is enabled by handle_external_intr() */
6632 kvm_x86_ops->handle_external_intr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006633
6634 ++vcpu->stat.exits;
6635
6636 /*
6637 * We must have an instruction between local_irq_enable() and
6638 * kvm_guest_exit(), so the timer interrupt isn't delayed by
6639 * the interrupt shadow. The stat.exits increment will do nicely.
6640 * But we need to prevent reordering, hence this barrier():
6641 */
6642 barrier();
6643
6644 kvm_guest_exit();
6645
6646 preempt_enable();
6647
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006648 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006649
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006650 /*
6651 * Profile KVM exit RIPs:
6652 */
6653 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006654 unsigned long rip = kvm_rip_read(vcpu);
6655 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006656 }
6657
Zachary Amsdencc578282012-02-03 15:43:50 -02006658 if (unlikely(vcpu->arch.tsc_always_catchup))
6659 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02006660
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03006661 if (vcpu->arch.apic_attention)
6662 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02006663
Avi Kivity851ba692009-08-24 11:10:17 +03006664 r = kvm_x86_ops->handle_exit(vcpu);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006665 return r;
6666
6667cancel_injection:
6668 kvm_x86_ops->cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03006669 if (unlikely(vcpu->arch.apic_attention))
6670 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006671out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03006672 return r;
6673}
6674
Paolo Bonzini362c6982015-02-06 12:48:04 +01006675static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
6676{
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006677 if (!kvm_arch_vcpu_runnable(vcpu)) {
6678 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
6679 kvm_vcpu_block(vcpu);
6680 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
6681 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
6682 return 1;
6683 }
Gleb Natapov09cec752009-03-23 15:11:44 +02006684
Paolo Bonzini362c6982015-02-06 12:48:04 +01006685 kvm_apic_accept_events(vcpu);
6686 switch(vcpu->arch.mp_state) {
6687 case KVM_MP_STATE_HALTED:
6688 vcpu->arch.pv.pv_unhalted = false;
6689 vcpu->arch.mp_state =
6690 KVM_MP_STATE_RUNNABLE;
6691 case KVM_MP_STATE_RUNNABLE:
6692 vcpu->arch.apf.halted = false;
6693 break;
6694 case KVM_MP_STATE_INIT_RECEIVED:
6695 break;
6696 default:
6697 return -EINTR;
6698 break;
6699 }
6700 return 1;
6701}
6702
6703static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03006704{
6705 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006706 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03006707
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006708 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006709
Paolo Bonzini362c6982015-02-06 12:48:04 +01006710 for (;;) {
Gleb Natapovaf585b92010-10-14 11:22:46 +02006711 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
6712 !vcpu->arch.apf.halted)
Avi Kivity851ba692009-08-24 11:10:17 +03006713 r = vcpu_enter_guest(vcpu);
Paolo Bonzini362c6982015-02-06 12:48:04 +01006714 else
6715 r = vcpu_block(kvm, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +02006716 if (r <= 0)
6717 break;
6718
6719 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
6720 if (kvm_cpu_has_pending_timer(vcpu))
6721 kvm_inject_pending_timer_irqs(vcpu);
6722
Avi Kivity851ba692009-08-24 11:10:17 +03006723 if (dm_request_for_irq_injection(vcpu)) {
Gleb Natapov09cec752009-03-23 15:11:44 +02006724 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03006725 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02006726 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01006727 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006728 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006729
6730 kvm_check_async_pf_completion(vcpu);
6731
Gleb Natapov09cec752009-03-23 15:11:44 +02006732 if (signal_pending(current)) {
6733 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03006734 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02006735 ++vcpu->stat.signal_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01006736 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006737 }
6738 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006739 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Takuya Yoshikawac08ac062013-12-13 15:07:21 +09006740 cond_resched();
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006741 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006742 }
6743 }
6744
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006745 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006746
6747 return r;
6748}
6749
Gleb Natapov716d51a2012-09-03 15:24:26 +03006750static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
6751{
6752 int r;
6753 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
6754 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
6755 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6756 if (r != EMULATE_DONE)
6757 return 0;
6758 return 1;
6759}
6760
6761static int complete_emulated_pio(struct kvm_vcpu *vcpu)
6762{
6763 BUG_ON(!vcpu->arch.pio.count);
6764
6765 return complete_emulated_io(vcpu);
6766}
6767
Avi Kivityf78146b2012-04-18 19:22:47 +03006768/*
6769 * Implements the following, as a state machine:
6770 *
6771 * read:
6772 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006773 * for each mmio piece in the fragment
6774 * write gpa, len
6775 * exit
6776 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03006777 * execute insn
6778 *
6779 * write:
6780 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006781 * for each mmio piece in the fragment
6782 * write gpa, len
6783 * copy data
6784 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03006785 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03006786static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02006787{
6788 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03006789 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006790 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02006791
Gleb Natapov716d51a2012-09-03 15:24:26 +03006792 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006793
Gleb Natapov716d51a2012-09-03 15:24:26 +03006794 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006795 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
6796 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006797 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006798 memcpy(frag->data, run->mmio.data, len);
6799
6800 if (frag->len <= 8) {
6801 /* Switch to the next fragment. */
6802 frag++;
6803 vcpu->mmio_cur_fragment++;
6804 } else {
6805 /* Go forward to the next mmio piece. */
6806 frag->data += len;
6807 frag->gpa += len;
6808 frag->len -= len;
6809 }
6810
Andrew Honiga08d3b32014-02-27 19:35:14 +01006811 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03006812 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02006813
6814 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02006815 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03006816 return 1;
6817 vcpu->mmio_read_completed = 1;
6818 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02006819 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006820
Gleb Natapov716d51a2012-09-03 15:24:26 +03006821 run->exit_reason = KVM_EXIT_MMIO;
6822 run->mmio.phys_addr = frag->gpa;
6823 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006824 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
6825 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006826 run->mmio.is_write = vcpu->mmio_is_write;
6827 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
6828 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02006829}
6830
Gleb Natapov716d51a2012-09-03 15:24:26 +03006831
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006832int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
6833{
Ingo Molnarc5bedc62015-04-23 12:49:20 +02006834 struct fpu *fpu = &current->thread.fpu;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006835 int r;
6836 sigset_t sigsaved;
6837
Ingo Molnarc4d72e22015-04-27 07:18:17 +02006838 fpu__activate_curr(fpu);
Avi Kivitye5c30142011-01-11 12:15:54 +02006839
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006840 if (vcpu->sigset_active)
6841 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
6842
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006843 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
6844 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01006845 kvm_apic_accept_events(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006846 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006847 r = -EAGAIN;
6848 goto out;
6849 }
6850
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006851 /* re-sync apic's tpr */
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006852 if (!irqchip_in_kernel(vcpu->kvm)) {
6853 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
6854 r = -EINVAL;
6855 goto out;
6856 }
6857 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006858
Gleb Natapov716d51a2012-09-03 15:24:26 +03006859 if (unlikely(vcpu->arch.complete_userspace_io)) {
6860 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
6861 vcpu->arch.complete_userspace_io = NULL;
6862 r = cui(vcpu);
6863 if (r <= 0)
6864 goto out;
6865 } else
6866 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006867
Paolo Bonzini362c6982015-02-06 12:48:04 +01006868 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006869
6870out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03006871 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006872 if (vcpu->sigset_active)
6873 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
6874
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006875 return r;
6876}
6877
6878int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6879{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006880 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
6881 /*
6882 * We are here if userspace calls get_regs() in the middle of
6883 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08006884 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006885 * that usually, but some bad designed PV devices (vmware
6886 * backdoor interface) need this to work
6887 */
Avi Kivitydd856ef2012-08-27 23:46:17 +03006888 emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006889 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6890 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006891 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
6892 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
6893 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
6894 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
6895 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
6896 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
6897 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
6898 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006899#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006900 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
6901 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
6902 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
6903 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
6904 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
6905 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
6906 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
6907 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006908#endif
6909
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006910 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02006911 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006912
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006913 return 0;
6914}
6915
6916int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6917{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006918 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
6919 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6920
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006921 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
6922 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
6923 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
6924 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
6925 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
6926 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
6927 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
6928 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006929#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006930 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
6931 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
6932 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
6933 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
6934 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
6935 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
6936 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
6937 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006938#endif
6939
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006940 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02006941 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006942
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02006943 vcpu->arch.exception.pending = false;
6944
Avi Kivity3842d132010-07-27 12:30:24 +03006945 kvm_make_request(KVM_REQ_EVENT, vcpu);
6946
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006947 return 0;
6948}
6949
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006950void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
6951{
6952 struct kvm_segment cs;
6953
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006954 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006955 *db = cs.db;
6956 *l = cs.l;
6957}
6958EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
6959
6960int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
6961 struct kvm_sregs *sregs)
6962{
Gleb Natapov89a27f42010-02-16 10:51:48 +02006963 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006964
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006965 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
6966 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
6967 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
6968 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
6969 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
6970 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006971
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006972 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
6973 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006974
6975 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02006976 sregs->idt.limit = dt.size;
6977 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006978 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02006979 sregs->gdt.limit = dt.size;
6980 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006981
Avi Kivity4d4ec082009-12-29 18:07:30 +02006982 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006983 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02006984 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02006985 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006986 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02006987 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006988 sregs->apic_base = kvm_get_apic_base(vcpu);
6989
Gleb Natapov923c61b2009-05-11 13:35:48 +03006990 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006991
Gleb Natapov36752c92009-05-11 13:35:53 +03006992 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03006993 set_bit(vcpu->arch.interrupt.nr,
6994 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03006995
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006996 return 0;
6997}
6998
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006999int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
7000 struct kvm_mp_state *mp_state)
7001{
Jan Kiszka66450a22013-03-13 12:42:34 +01007002 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307003 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
7004 vcpu->arch.pv.pv_unhalted)
7005 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
7006 else
7007 mp_state->mp_state = vcpu->arch.mp_state;
7008
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007009 return 0;
7010}
7011
7012int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
7013 struct kvm_mp_state *mp_state)
7014{
Jan Kiszka66450a22013-03-13 12:42:34 +01007015 if (!kvm_vcpu_has_lapic(vcpu) &&
7016 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
7017 return -EINVAL;
7018
7019 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
7020 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
7021 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
7022 } else
7023 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03007024 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007025 return 0;
7026}
7027
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007028int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
7029 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007030{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007031 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007032 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007033
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007034 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007035
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007036 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007037 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02007038
Gleb Natapovc6975182010-02-18 12:15:01 +02007039 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03007040 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02007041
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007042 kvm_rip_write(vcpu, ctxt->eip);
7043 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03007044 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03007045 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02007046}
7047EXPORT_SYMBOL_GPL(kvm_task_switch);
7048
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007049int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
7050 struct kvm_sregs *sregs)
7051{
Jan Kiszka58cb6282014-01-24 16:48:44 +01007052 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007053 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007054 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02007055 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007056
Petr Matousek6d1068b2012-11-06 19:24:07 +01007057 if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE))
7058 return -EINVAL;
7059
Gleb Natapov89a27f42010-02-16 10:51:48 +02007060 dt.size = sregs->idt.limit;
7061 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007062 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007063 dt.size = sregs->gdt.limit;
7064 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007065 kvm_x86_ops->set_gdt(vcpu, &dt);
7066
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007067 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007068 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02007069 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02007070 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007071
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007072 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007073
Avi Kivityf6801df2010-01-21 15:31:50 +02007074 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007075 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Jan Kiszka58cb6282014-01-24 16:48:44 +01007076 apic_base_msr.data = sregs->apic_base;
7077 apic_base_msr.host_initiated = true;
7078 kvm_set_apic_base(vcpu, &apic_base_msr);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007079
Avi Kivity4d4ec082009-12-29 18:07:30 +02007080 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007081 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00007082 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007083
Avi Kivityfc78f512009-12-07 12:16:48 +02007084 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007085 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Sheng Yang3ea3aa82010-12-08 10:49:43 +08007086 if (sregs->cr4 & X86_CR4_OSXSAVE)
Avi Kivity00b27a32011-11-23 16:30:32 +02007087 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007088
7089 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02007090 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02007091 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02007092 mmu_reset_needed = 1;
7093 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007094 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007095
7096 if (mmu_reset_needed)
7097 kvm_mmu_reset_context(vcpu);
7098
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03007099 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03007100 pending_vec = find_first_bit(
7101 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
7102 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007103 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03007104 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007105 }
7106
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007107 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7108 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7109 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7110 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7111 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7112 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007113
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007114 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7115 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007116
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03007117 update_cr8_intercept(vcpu);
7118
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007119 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03007120 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007121 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02007122 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007123 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
7124
Avi Kivity3842d132010-07-27 12:30:24 +03007125 kvm_make_request(KVM_REQ_EVENT, vcpu);
7126
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007127 return 0;
7128}
7129
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007130int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
7131 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007132{
Jan Kiszka355be0b2009-10-03 00:31:21 +02007133 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007134 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007135
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007136 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
7137 r = -EBUSY;
7138 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03007139 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007140 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
7141 kvm_queue_exception(vcpu, DB_VECTOR);
7142 else
7143 kvm_queue_exception(vcpu, BP_VECTOR);
7144 }
7145
Jan Kiszka91586a32009-10-05 13:07:21 +02007146 /*
7147 * Read rflags as long as potentially injected trace flags are still
7148 * filtered out.
7149 */
7150 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007151
7152 vcpu->guest_debug = dbg->control;
7153 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
7154 vcpu->guest_debug = 0;
7155
7156 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007157 for (i = 0; i < KVM_NR_DB_REGS; ++i)
7158 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02007159 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007160 } else {
7161 for (i = 0; i < KVM_NR_DB_REGS; i++)
7162 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007163 }
Jan Kiszkac8639012012-09-21 05:42:55 +02007164 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007165
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007166 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
7167 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
7168 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007169
Jan Kiszka91586a32009-10-05 13:07:21 +02007170 /*
7171 * Trigger an rflags update that will inject or remove the trace
7172 * flags.
7173 */
7174 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007175
Jan Kiszkac8639012012-09-21 05:42:55 +02007176 kvm_x86_ops->update_db_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007177
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007178 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007179
Avi Kivity2122ff52010-05-13 11:25:04 +03007180out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007181
7182 return r;
7183}
7184
7185/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08007186 * Translate a guest virtual address to a guest physical address.
7187 */
7188int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
7189 struct kvm_translation *tr)
7190{
7191 unsigned long vaddr = tr->linear_address;
7192 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007193 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007194
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007195 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02007196 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007197 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08007198 tr->physical_address = gpa;
7199 tr->valid = gpa != UNMAPPED_GVA;
7200 tr->writeable = 1;
7201 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007202
7203 return 0;
7204}
7205
Hollis Blanchardd0752062007-10-31 17:24:25 -05007206int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7207{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007208 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007209 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007210
Hollis Blanchardd0752062007-10-31 17:24:25 -05007211 memcpy(fpu->fpr, fxsave->st_space, 128);
7212 fpu->fcw = fxsave->cwd;
7213 fpu->fsw = fxsave->swd;
7214 fpu->ftwx = fxsave->twd;
7215 fpu->last_opcode = fxsave->fop;
7216 fpu->last_ip = fxsave->rip;
7217 fpu->last_dp = fxsave->rdp;
7218 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
7219
Hollis Blanchardd0752062007-10-31 17:24:25 -05007220 return 0;
7221}
7222
7223int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7224{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007225 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007226 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007227
Hollis Blanchardd0752062007-10-31 17:24:25 -05007228 memcpy(fxsave->st_space, fpu->fpr, 128);
7229 fxsave->cwd = fpu->fcw;
7230 fxsave->swd = fpu->fsw;
7231 fxsave->twd = fpu->ftwx;
7232 fxsave->fop = fpu->last_opcode;
7233 fxsave->rip = fpu->last_ip;
7234 fxsave->rdp = fpu->last_dp;
7235 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
7236
Hollis Blanchardd0752062007-10-31 17:24:25 -05007237 return 0;
7238}
7239
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007240static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007241{
Ingo Molnarbf935b02015-04-30 10:23:42 +02007242 fpstate_init(&vcpu->arch.guest_fpu.state);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007243 if (cpu_has_xsaves)
Ingo Molnar7366ed72015-04-27 04:19:39 +02007244 vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007245 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007246
Dexuan Cui2acf9232010-06-10 11:27:12 +08007247 /*
7248 * Ensure guest xcr0 is valid for loading
7249 */
7250 vcpu->arch.xcr0 = XSTATE_FP;
7251
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007252 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007253}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007254
7255void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
7256{
Avi Kivity2608d7a2010-01-21 15:31:45 +02007257 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007258 return;
7259
Dexuan Cui2acf9232010-06-10 11:27:12 +08007260 /*
7261 * Restore all possible states in the guest,
7262 * and assume host would use all available bits.
7263 * Guest xcr0 would be loaded later.
7264 */
7265 kvm_put_guest_xcr0(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007266 vcpu->guest_fpu_loaded = 1;
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007267 __kernel_fpu_begin();
Ingo Molnar003e2e82015-05-25 11:59:35 +02007268 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state);
Avi Kivity0c048512010-01-21 15:31:52 +02007269 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007270}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007271
7272void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
7273{
Dexuan Cui2acf9232010-06-10 11:27:12 +08007274 kvm_put_guest_xcr0(vcpu);
7275
Rik van Riel653f52c2015-04-23 11:52:37 -04007276 if (!vcpu->guest_fpu_loaded) {
7277 vcpu->fpu_counter = 0;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007278 return;
Rik van Riel653f52c2015-04-23 11:52:37 -04007279 }
Hollis Blanchardd0752062007-10-31 17:24:25 -05007280
7281 vcpu->guest_fpu_loaded = 0;
Ingo Molnar4f836342015-04-27 02:53:16 +02007282 copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007283 __kernel_fpu_end();
Avi Kivityf096ed82007-11-18 13:54:33 +02007284 ++vcpu->stat.fpu_reload;
Rik van Riel653f52c2015-04-23 11:52:37 -04007285 /*
7286 * If using eager FPU mode, or if the guest is a frequent user
7287 * of the FPU, just leave the FPU active for next time.
7288 * Every 255 times fpu_counter rolls over to 0; a guest that uses
7289 * the FPU in bursts will revert to loading it on demand.
7290 */
Paolo Bonzinia9b4fb72015-05-20 11:46:12 +02007291 if (!vcpu->arch.eager_fpu) {
Rik van Riel653f52c2015-04-23 11:52:37 -04007292 if (++vcpu->fpu_counter < 5)
7293 kvm_make_request(KVM_REQ_DEACTIVATE_FPU, vcpu);
7294 }
Avi Kivity0c048512010-01-21 15:31:52 +02007295 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007296}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007297
7298void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
7299{
Glauber Costa12f9a482011-02-01 14:16:40 -05007300 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01007301
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007302 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007303 kvm_x86_ops->vcpu_free(vcpu);
7304}
7305
7306struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
7307 unsigned int id)
7308{
Liang Lic447e762015-05-21 04:41:25 +08007309 struct kvm_vcpu *vcpu;
7310
Zachary Amsden6755bae2010-08-19 22:07:22 -10007311 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
7312 printk_once(KERN_WARNING
7313 "kvm: SMP vm created on host with unstable TSC; "
7314 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08007315
7316 vcpu = kvm_x86_ops->vcpu_create(kvm, id);
7317
7318 /*
7319 * Activate fpu unconditionally in case the guest needs eager FPU. It will be
7320 * deactivated soon if it doesn't.
7321 */
7322 kvm_x86_ops->fpu_activate(vcpu);
7323 return vcpu;
Avi Kivity26e52152007-11-20 15:30:24 +02007324}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007325
Avi Kivity26e52152007-11-20 15:30:24 +02007326int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
7327{
7328 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007329
Xiao Guangrong19efffa2015-06-15 16:55:31 +08007330 kvm_vcpu_mtrr_init(vcpu);
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007331 r = vcpu_load(vcpu);
7332 if (r)
7333 return r;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007334 kvm_vcpu_reset(vcpu, false);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02007335 kvm_mmu_setup(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007336 vcpu_put(vcpu);
Avi Kivity26e52152007-11-20 15:30:24 +02007337 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007338}
7339
Dominik Dingel31928aa2014-12-04 15:47:07 +01007340void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007341{
Will Auld8fe8ab42012-11-29 12:42:12 -08007342 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01007343 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007344
Dominik Dingel31928aa2014-12-04 15:47:07 +01007345 if (vcpu_load(vcpu))
7346 return;
Will Auld8fe8ab42012-11-29 12:42:12 -08007347 msr.data = 0x0;
7348 msr.index = MSR_IA32_TSC;
7349 msr.host_initiated = true;
7350 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007351 vcpu_put(vcpu);
7352
Marcelo Tosatti630994b2015-05-12 22:42:04 -03007353 if (!kvmclock_periodic_sync)
7354 return;
7355
Andrew Jones332967a2014-02-28 12:52:55 +01007356 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
7357 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007358}
7359
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06007360void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007361{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007362 int r;
Gleb Natapov344d9582010-10-14 11:22:50 +02007363 vcpu->arch.apf.msr_val = 0;
7364
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007365 r = vcpu_load(vcpu);
7366 BUG_ON(r);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007367 kvm_mmu_unload(vcpu);
7368 vcpu_put(vcpu);
7369
7370 kvm_x86_ops->vcpu_free(vcpu);
7371}
7372
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007373void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007374{
Paolo Bonzinie69fab52015-06-04 10:44:44 +02007375 vcpu->arch.hflags = 0;
7376
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007377 atomic_set(&vcpu->arch.nmi_queued, 0);
7378 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007379 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03007380 kvm_clear_interrupt_queue(vcpu);
7381 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007382
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007383 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03007384 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03007385 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007386 kvm_update_dr6(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007387 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02007388 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007389
Nadav Amit11190222015-04-02 03:10:38 +03007390 vcpu->arch.cr2 = 0;
7391
Avi Kivity3842d132010-07-27 12:30:24 +03007392 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02007393 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04007394 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03007395
Glauber Costa12f9a482011-02-01 14:16:40 -05007396 kvmclock_reset(vcpu);
7397
Gleb Natapovaf585b92010-10-14 11:22:46 +02007398 kvm_clear_async_pf_completion_queue(vcpu);
7399 kvm_async_pf_hash_reset(vcpu);
7400 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007401
Paolo Bonzini64d60672015-05-07 11:36:11 +02007402 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007403 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007404 vcpu->arch.smbase = 0x30000;
7405 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02007406
Julian Stecklina66f7b722012-12-05 15:26:19 +01007407 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
7408 vcpu->arch.regs_avail = ~0;
7409 vcpu->arch.regs_dirty = ~0;
7410
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007411 kvm_x86_ops->vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007412}
7413
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01007414void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01007415{
7416 struct kvm_segment cs;
7417
7418 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
7419 cs.selector = vector << 8;
7420 cs.base = vector << 12;
7421 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
7422 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007423}
7424
Radim Krčmář13a34e02014-08-28 15:13:03 +02007425int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007426{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10007427 struct kvm *kvm;
7428 struct kvm_vcpu *vcpu;
7429 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007430 int ret;
7431 u64 local_tsc;
7432 u64 max_tsc = 0;
7433 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03007434
7435 kvm_shared_msr_cpu_online();
Radim Krčmář13a34e02014-08-28 15:13:03 +02007436 ret = kvm_x86_ops->hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007437 if (ret != 0)
7438 return ret;
7439
7440 local_tsc = native_read_tsc();
7441 stable = !check_tsc_unstable();
7442 list_for_each_entry(kvm, &vm_list, vm_list) {
7443 kvm_for_each_vcpu(i, vcpu, kvm) {
7444 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007445 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007446 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
7447 backwards_tsc = true;
7448 if (vcpu->arch.last_host_tsc > max_tsc)
7449 max_tsc = vcpu->arch.last_host_tsc;
7450 }
7451 }
7452 }
7453
7454 /*
7455 * Sometimes, even reliable TSCs go backwards. This happens on
7456 * platforms that reset TSC during suspend or hibernate actions, but
7457 * maintain synchronization. We must compensate. Fortunately, we can
7458 * detect that condition here, which happens early in CPU bringup,
7459 * before any KVM threads can be running. Unfortunately, we can't
7460 * bring the TSCs fully up to date with real time, as we aren't yet far
7461 * enough into CPU bringup that we know how much real time has actually
7462 * elapsed; our helper function, get_kernel_ns() will be using boot
7463 * variables that haven't been updated yet.
7464 *
7465 * So we simply find the maximum observed TSC above, then record the
7466 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
7467 * the adjustment will be applied. Note that we accumulate
7468 * adjustments, in case multiple suspend cycles happen before some VCPU
7469 * gets a chance to run again. In the event that no KVM threads get a
7470 * chance to run, we will miss the entire elapsed period, as we'll have
7471 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
7472 * loose cycle time. This isn't too big a deal, since the loss will be
7473 * uniform across all VCPUs (not to mention the scenario is extremely
7474 * unlikely). It is possible that a second hibernate recovery happens
7475 * much faster than a first, causing the observed TSC here to be
7476 * smaller; this would require additional padding adjustment, which is
7477 * why we set last_host_tsc to the local tsc observed here.
7478 *
7479 * N.B. - this code below runs only on platforms with reliable TSC,
7480 * as that is the only way backwards_tsc is set above. Also note
7481 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
7482 * have the same delta_cyc adjustment applied if backwards_tsc
7483 * is detected. Note further, this adjustment is only done once,
7484 * as we reset last_host_tsc on all VCPUs to stop this from being
7485 * called multiple times (one for each physical CPU bringup).
7486 *
Guo Chao4a969982012-06-28 15:17:27 +08007487 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007488 * will be compensated by the logic in vcpu_load, which sets the TSC to
7489 * catchup mode. This will catchup all VCPUs to real time, but cannot
7490 * guarantee that they stay in perfect synchronization.
7491 */
7492 if (backwards_tsc) {
7493 u64 delta_cyc = max_tsc - local_tsc;
Marcelo Tosatti16a96022014-05-14 12:43:24 -03007494 backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007495 list_for_each_entry(kvm, &vm_list, vm_list) {
7496 kvm_for_each_vcpu(i, vcpu, kvm) {
7497 vcpu->arch.tsc_offset_adjustment += delta_cyc;
7498 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007499 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007500 }
7501
7502 /*
7503 * We have to disable TSC offset matching.. if you were
7504 * booting a VM while issuing an S4 host suspend....
7505 * you may have some problem. Solving this issue is
7506 * left as an exercise to the reader.
7507 */
7508 kvm->arch.last_tsc_nsec = 0;
7509 kvm->arch.last_tsc_write = 0;
7510 }
7511
7512 }
7513 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007514}
7515
Radim Krčmář13a34e02014-08-28 15:13:03 +02007516void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007517{
Radim Krčmář13a34e02014-08-28 15:13:03 +02007518 kvm_x86_ops->hardware_disable();
7519 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007520}
7521
7522int kvm_arch_hardware_setup(void)
7523{
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007524 int r;
7525
7526 r = kvm_x86_ops->hardware_setup();
7527 if (r != 0)
7528 return r;
7529
7530 kvm_init_msr_list();
7531 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007532}
7533
7534void kvm_arch_hardware_unsetup(void)
7535{
7536 kvm_x86_ops->hardware_unsetup();
7537}
7538
7539void kvm_arch_check_processor_compat(void *rtn)
7540{
7541 kvm_x86_ops->check_processor_compatibility(rtn);
7542}
7543
Avi Kivity3e515702012-03-05 14:23:29 +02007544bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu)
7545{
7546 return irqchip_in_kernel(vcpu->kvm) == (vcpu->arch.apic != NULL);
7547}
7548
Gleb Natapov54e98182012-08-05 15:58:32 +03007549struct static_key kvm_no_apic_vcpu __read_mostly;
7550
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007551int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
7552{
7553 struct page *page;
7554 struct kvm *kvm;
7555 int r;
7556
7557 BUG_ON(vcpu->kvm == NULL);
7558 kvm = vcpu->kvm;
7559
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307560 vcpu->arch.pv.pv_unhalted = false;
Avi Kivity9aabc88f2010-07-29 15:11:50 +03007561 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Nadav Amit58d269d2015-04-02 03:10:36 +03007562 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03007563 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007564 else
Avi Kivitya4535292008-04-13 17:54:35 +03007565 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007566
7567 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
7568 if (!page) {
7569 r = -ENOMEM;
7570 goto fail;
7571 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007572 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007573
Zachary Amsdencc578282012-02-03 15:43:50 -02007574 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10007575
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007576 r = kvm_mmu_create(vcpu);
7577 if (r < 0)
7578 goto fail_free_pio_data;
7579
7580 if (irqchip_in_kernel(kvm)) {
7581 r = kvm_create_lapic(vcpu);
7582 if (r < 0)
7583 goto fail_mmu_destroy;
Gleb Natapov54e98182012-08-05 15:58:32 +03007584 } else
7585 static_key_slow_inc(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007586
Huang Ying890ca9a2009-05-11 16:48:15 +08007587 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
7588 GFP_KERNEL);
7589 if (!vcpu->arch.mce_banks) {
7590 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08007591 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08007592 }
7593 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
7594
Wei Yongjunf1797352013-04-18 07:41:00 +08007595 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) {
7596 r = -ENOMEM;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007597 goto fail_free_mce_banks;
Wei Yongjunf1797352013-04-18 07:41:00 +08007598 }
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007599
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007600 fx_init(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01007601
Will Auldba904632012-11-29 12:42:50 -08007602 vcpu->arch.ia32_tsc_adjust_msr = 0x0;
Andy Honig0b794592013-02-20 14:48:10 -08007603 vcpu->arch.pv_time_enabled = false;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007604
7605 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +02007606 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007607
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +03007608 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
7609
Radim Krčmář74545702015-04-27 15:11:25 +02007610 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
7611
Gleb Natapovaf585b92010-10-14 11:22:46 +02007612 kvm_async_pf_hash_reset(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007613 kvm_pmu_init(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007614
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007615 return 0;
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007616
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007617fail_free_mce_banks:
7618 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08007619fail_free_lapic:
7620 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007621fail_mmu_destroy:
7622 kvm_mmu_destroy(vcpu);
7623fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007624 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007625fail:
7626 return r;
7627}
7628
7629void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
7630{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007631 int idx;
7632
Gleb Natapovf5132b02011-11-10 14:57:22 +02007633 kvm_pmu_destroy(vcpu);
Wei Yongjun36cb93f2010-01-22 14:18:47 +08007634 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007635 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007636 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007637 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007638 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007639 free_page((unsigned long)vcpu->arch.pio_data);
Gleb Natapov54e98182012-08-05 15:58:32 +03007640 if (!irqchip_in_kernel(vcpu->kvm))
7641 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007642}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007643
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007644void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
7645{
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007646 kvm_x86_ops->sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007647}
7648
Carsten Ottee08b9632012-01-04 10:25:20 +01007649int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007650{
Carsten Ottee08b9632012-01-04 10:25:20 +01007651 if (type)
7652 return -EINVAL;
7653
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01007654 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08007655 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Xiao Guangrong365c8862013-05-31 08:36:29 +08007656 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03007657 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06007658 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007659
Sheng Yang5550af42008-10-15 20:15:06 +08007660 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
7661 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06007662 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
7663 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
7664 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08007665
Jan Kiszka038f8c12011-02-04 10:49:11 +01007666 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007667 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007668 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
7669
7670 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01007671
Andrew Jones7e44e442014-02-28 12:52:54 +01007672 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01007673 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01007674
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01007675 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007676}
7677
7678static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
7679{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007680 int r;
7681 r = vcpu_load(vcpu);
7682 BUG_ON(r);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007683 kvm_mmu_unload(vcpu);
7684 vcpu_put(vcpu);
7685}
7686
7687static void kvm_free_vcpus(struct kvm *kvm)
7688{
7689 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007690 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007691
7692 /*
7693 * Unpin any mmu pages first.
7694 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02007695 kvm_for_each_vcpu(i, vcpu, kvm) {
7696 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007697 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007698 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007699 kvm_for_each_vcpu(i, vcpu, kvm)
7700 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007701
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007702 mutex_lock(&kvm->lock);
7703 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
7704 kvm->vcpus[i] = NULL;
7705
7706 atomic_set(&kvm->online_vcpus, 0);
7707 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007708}
7709
Sheng Yangad8ba2c2009-01-06 10:03:02 +08007710void kvm_arch_sync_events(struct kvm *kvm)
7711{
Andrew Jones332967a2014-02-28 12:52:55 +01007712 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01007713 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Sheng Yangba4cef32009-01-06 10:03:03 +08007714 kvm_free_all_assigned_devices(kvm);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08007715 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08007716}
7717
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007718int __x86_set_memory_region(struct kvm *kvm,
7719 const struct kvm_userspace_memory_region *mem)
7720{
7721 int i, r;
7722
7723 /* Called with kvm->slots_lock held. */
7724 BUG_ON(mem->slot >= KVM_MEM_SLOTS_NUM);
7725
7726 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
7727 struct kvm_userspace_memory_region m = *mem;
7728
7729 m.slot |= i << 16;
7730 r = __kvm_set_memory_region(kvm, &m);
7731 if (r < 0)
7732 return r;
7733 }
7734
7735 return 0;
7736}
7737EXPORT_SYMBOL_GPL(__x86_set_memory_region);
7738
7739int x86_set_memory_region(struct kvm *kvm,
7740 const struct kvm_userspace_memory_region *mem)
7741{
7742 int r;
7743
7744 mutex_lock(&kvm->slots_lock);
7745 r = __x86_set_memory_region(kvm, mem);
7746 mutex_unlock(&kvm->slots_lock);
7747
7748 return r;
7749}
7750EXPORT_SYMBOL_GPL(x86_set_memory_region);
7751
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007752void kvm_arch_destroy_vm(struct kvm *kvm)
7753{
Andrew Honig27469d22013-04-18 09:38:14 -07007754 if (current->mm == kvm->mm) {
7755 /*
7756 * Free memory regions allocated on behalf of userspace,
7757 * unless the the memory map has changed due to process exit
7758 * or fd copying.
7759 */
7760 struct kvm_userspace_memory_region mem;
7761 memset(&mem, 0, sizeof(mem));
7762 mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007763 x86_set_memory_region(kvm, &mem);
Andrew Honig27469d22013-04-18 09:38:14 -07007764
7765 mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007766 x86_set_memory_region(kvm, &mem);
Andrew Honig27469d22013-04-18 09:38:14 -07007767
7768 mem.slot = TSS_PRIVATE_MEMSLOT;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007769 x86_set_memory_region(kvm, &mem);
Andrew Honig27469d22013-04-18 09:38:14 -07007770 }
Sheng Yang6eb55812008-10-31 12:37:41 +08007771 kvm_iommu_unmap_guest(kvm);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08007772 kfree(kvm->arch.vpic);
7773 kfree(kvm->arch.vioapic);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007774 kvm_free_vcpus(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007775 kfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007776}
Zhang Xiantao0de10342007-11-20 16:25:04 +08007777
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05307778void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007779 struct kvm_memory_slot *dont)
7780{
7781 int i;
7782
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007783 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
7784 if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) {
Thomas Huth548ef282015-02-24 21:29:25 +01007785 kvfree(free->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007786 free->arch.rmap[i] = NULL;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007787 }
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007788 if (i == 0)
7789 continue;
7790
7791 if (!dont || free->arch.lpage_info[i - 1] !=
7792 dont->arch.lpage_info[i - 1]) {
Thomas Huth548ef282015-02-24 21:29:25 +01007793 kvfree(free->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007794 free->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007795 }
7796 }
7797}
7798
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05307799int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
7800 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007801{
7802 int i;
7803
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007804 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007805 unsigned long ugfn;
7806 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007807 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007808
7809 lpages = gfn_to_index(slot->base_gfn + npages - 1,
7810 slot->base_gfn, level) + 1;
7811
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007812 slot->arch.rmap[i] =
7813 kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i]));
7814 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007815 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007816 if (i == 0)
7817 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007818
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007819 slot->arch.lpage_info[i - 1] = kvm_kvzalloc(lpages *
7820 sizeof(*slot->arch.lpage_info[i - 1]));
7821 if (!slot->arch.lpage_info[i - 1])
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007822 goto out_free;
7823
7824 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007825 slot->arch.lpage_info[i - 1][0].write_count = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007826 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007827 slot->arch.lpage_info[i - 1][lpages - 1].write_count = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007828 ugfn = slot->userspace_addr >> PAGE_SHIFT;
7829 /*
7830 * If the gfn and userspace address are not aligned wrt each
7831 * other, or if explicitly asked to, disable large page
7832 * support for this slot
7833 */
7834 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
7835 !kvm_largepages_enabled()) {
7836 unsigned long j;
7837
7838 for (j = 0; j < lpages; ++j)
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007839 slot->arch.lpage_info[i - 1][j].write_count = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007840 }
7841 }
7842
7843 return 0;
7844
7845out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007846 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +01007847 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007848 slot->arch.rmap[i] = NULL;
7849 if (i == 0)
7850 continue;
7851
Thomas Huth548ef282015-02-24 21:29:25 +01007852 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007853 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007854 }
7855 return -ENOMEM;
7856}
7857
Paolo Bonzini15f46012015-05-17 21:26:08 +02007858void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09007859{
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09007860 /*
7861 * memslots->generation has been incremented.
7862 * mmio generation may have reached its maximum value.
7863 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007864 kvm_mmu_invalidate_mmio_sptes(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09007865}
7866
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007867int kvm_arch_prepare_memory_region(struct kvm *kvm,
7868 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02007869 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09007870 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +08007871{
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007872 /*
7873 * Only private memory slots need to be mapped here since
7874 * KVM_SET_MEMORY_REGION ioctl is no longer supported.
Zhang Xiantao0de10342007-11-20 16:25:04 +08007875 */
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09007876 if ((memslot->id >= KVM_USER_MEM_SLOTS) && (change == KVM_MR_CREATE)) {
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007877 unsigned long userspace_addr;
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02007878
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007879 /*
7880 * MAP_SHARED to prevent internal slot pages from being moved
7881 * by fork()/COW.
7882 */
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09007883 userspace_addr = vm_mmap(NULL, 0, memslot->npages * PAGE_SIZE,
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007884 PROT_READ | PROT_WRITE,
7885 MAP_SHARED | MAP_ANONYMOUS, 0);
Zhang Xiantao0de10342007-11-20 16:25:04 +08007886
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007887 if (IS_ERR((void *)userspace_addr))
7888 return PTR_ERR((void *)userspace_addr);
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02007889
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007890 memslot->userspace_addr = userspace_addr;
Zhang Xiantao0de10342007-11-20 16:25:04 +08007891 }
7892
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007893 return 0;
7894}
7895
Kai Huang88178fd2015-01-28 10:54:27 +08007896static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
7897 struct kvm_memory_slot *new)
7898{
7899 /* Still write protect RO slot */
7900 if (new->flags & KVM_MEM_READONLY) {
7901 kvm_mmu_slot_remove_write_access(kvm, new);
7902 return;
7903 }
7904
7905 /*
7906 * Call kvm_x86_ops dirty logging hooks when they are valid.
7907 *
7908 * kvm_x86_ops->slot_disable_log_dirty is called when:
7909 *
7910 * - KVM_MR_CREATE with dirty logging is disabled
7911 * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag
7912 *
7913 * The reason is, in case of PML, we need to set D-bit for any slots
7914 * with dirty logging disabled in order to eliminate unnecessary GPA
7915 * logging in PML buffer (and potential PML buffer full VMEXT). This
7916 * guarantees leaving PML enabled during guest's lifetime won't have
7917 * any additonal overhead from PML when guest is running with dirty
7918 * logging disabled for memory slots.
7919 *
7920 * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot
7921 * to dirty logging mode.
7922 *
7923 * If kvm_x86_ops dirty logging hooks are invalid, use write protect.
7924 *
7925 * In case of write protect:
7926 *
7927 * Write protect all pages for dirty logging.
7928 *
7929 * All the sptes including the large sptes which point to this
7930 * slot are set to readonly. We can not create any new large
7931 * spte on this slot until the end of the logging.
7932 *
7933 * See the comments in fast_page_fault().
7934 */
7935 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
7936 if (kvm_x86_ops->slot_enable_log_dirty)
7937 kvm_x86_ops->slot_enable_log_dirty(kvm, new);
7938 else
7939 kvm_mmu_slot_remove_write_access(kvm, new);
7940 } else {
7941 if (kvm_x86_ops->slot_disable_log_dirty)
7942 kvm_x86_ops->slot_disable_log_dirty(kvm, new);
7943 }
7944}
7945
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007946void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02007947 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007948 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02007949 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007950 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007951{
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007952 int nr_mmu_pages = 0;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007953
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02007954 if (change == KVM_MR_DELETE && old->id >= KVM_USER_MEM_SLOTS) {
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007955 int ret;
7956
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007957 ret = vm_munmap(old->userspace_addr,
7958 old->npages * PAGE_SIZE);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007959 if (ret < 0)
7960 printk(KERN_WARNING
7961 "kvm_vm_ioctl_set_memory_region: "
7962 "failed to munmap memory\n");
7963 }
7964
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08007965 if (!kvm->arch.n_requested_mmu_pages)
7966 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08007967
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08007968 if (nr_mmu_pages)
7969 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Kai Huang1c91cad42015-01-28 10:54:26 +08007970
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09007971 /*
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08007972 * Dirty logging tracks sptes in 4k granularity, meaning that large
7973 * sptes have to be split. If live migration is successful, the guest
7974 * in the source machine will be destroyed and large sptes will be
7975 * created in the destination. However, if the guest continues to run
7976 * in the source machine (for example if live migration fails), small
7977 * sptes will remain around and cause bad performance.
7978 *
7979 * Scan sptes if dirty logging has been stopped, dropping those
7980 * which can be collapsed into a single large-page spte. Later
7981 * page faults will create the large-page sptes.
7982 */
7983 if ((change != KVM_MR_DELETE) &&
7984 (old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
7985 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
7986 kvm_mmu_zap_collapsible_sptes(kvm, new);
7987
7988 /*
Kai Huang88178fd2015-01-28 10:54:27 +08007989 * Set up write protection and/or dirty logging for the new slot.
Xiao Guangrongc126d942014-04-17 17:06:14 +08007990 *
Kai Huang88178fd2015-01-28 10:54:27 +08007991 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have
7992 * been zapped so no dirty logging staff is needed for old slot. For
7993 * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the
7994 * new and it's also covered when dealing with the new slot.
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02007995 *
7996 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09007997 */
Kai Huang88178fd2015-01-28 10:54:27 +08007998 if (change != KVM_MR_DELETE)
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02007999 kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008000}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008001
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008002void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008003{
Xiao Guangrong6ca18b62013-05-31 08:36:23 +08008004 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008005}
8006
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008007void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
8008 struct kvm_memory_slot *slot)
8009{
Xiao Guangrong6ca18b62013-05-31 08:36:23 +08008010 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008011}
8012
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008013int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
8014{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008015 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events)
8016 kvm_x86_ops->check_nested_events(vcpu, false);
8017
Gleb Natapovaf585b92010-10-14 11:22:46 +02008018 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
8019 !vcpu->arch.apf.halted)
8020 || !list_empty_careful(&vcpu->async_pf.done)
Jan Kiszka66450a22013-03-13 12:42:34 +01008021 || kvm_apic_has_events(vcpu)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308022 || vcpu->arch.pv.pv_unhalted
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008023 || atomic_read(&vcpu->arch.nmi_queued) ||
Gleb Natapova1b37102009-07-09 15:33:52 +03008024 (kvm_arch_interrupt_allowed(vcpu) &&
8025 kvm_cpu_has_interrupt(vcpu));
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008026}
Zhang Xiantao57361992007-12-17 14:21:40 +08008027
Christoffer Dallb6d33832012-03-08 16:44:24 -05008028int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +08008029{
Christoffer Dallb6d33832012-03-08 16:44:24 -05008030 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +08008031}
Gleb Natapov78646122009-03-23 12:12:11 +02008032
8033int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
8034{
8035 return kvm_x86_ops->interrupt_allowed(vcpu);
8036}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008037
Nadav Amit82b32772014-11-02 11:54:45 +02008038unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
8039{
8040 if (is_64_bit_mode(vcpu))
8041 return kvm_rip_read(vcpu);
8042 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
8043 kvm_rip_read(vcpu));
8044}
8045EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
8046
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008047bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
8048{
Nadav Amit82b32772014-11-02 11:54:45 +02008049 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008050}
8051EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
8052
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008053unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
8054{
8055 unsigned long rflags;
8056
8057 rflags = kvm_x86_ops->get_rflags(vcpu);
8058 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01008059 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008060 return rflags;
8061}
8062EXPORT_SYMBOL_GPL(kvm_get_rflags);
8063
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008064static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008065{
8066 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008067 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01008068 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008069 kvm_x86_ops->set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008070}
8071
8072void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
8073{
8074 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03008075 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008076}
8077EXPORT_SYMBOL_GPL(kvm_set_rflags);
8078
Gleb Natapov56028d02010-10-17 18:13:42 +02008079void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
8080{
8081 int r;
8082
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008083 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +08008084 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +02008085 return;
8086
8087 r = kvm_mmu_reload(vcpu);
8088 if (unlikely(r))
8089 return;
8090
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008091 if (!vcpu->arch.mmu.direct_map &&
8092 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
8093 return;
8094
Gleb Natapov56028d02010-10-17 18:13:42 +02008095 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
8096}
8097
Gleb Natapovaf585b92010-10-14 11:22:46 +02008098static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
8099{
8100 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
8101}
8102
8103static inline u32 kvm_async_pf_next_probe(u32 key)
8104{
8105 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
8106}
8107
8108static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8109{
8110 u32 key = kvm_async_pf_hash_fn(gfn);
8111
8112 while (vcpu->arch.apf.gfns[key] != ~0)
8113 key = kvm_async_pf_next_probe(key);
8114
8115 vcpu->arch.apf.gfns[key] = gfn;
8116}
8117
8118static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
8119{
8120 int i;
8121 u32 key = kvm_async_pf_hash_fn(gfn);
8122
8123 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08008124 (vcpu->arch.apf.gfns[key] != gfn &&
8125 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02008126 key = kvm_async_pf_next_probe(key);
8127
8128 return key;
8129}
8130
8131bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8132{
8133 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
8134}
8135
8136static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8137{
8138 u32 i, j, k;
8139
8140 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
8141 while (true) {
8142 vcpu->arch.apf.gfns[i] = ~0;
8143 do {
8144 j = kvm_async_pf_next_probe(j);
8145 if (vcpu->arch.apf.gfns[j] == ~0)
8146 return;
8147 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
8148 /*
8149 * k lies cyclically in ]i,j]
8150 * | i.k.j |
8151 * |....j i.k.| or |.k..j i...|
8152 */
8153 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
8154 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
8155 i = j;
8156 }
8157}
8158
Gleb Natapov7c907052010-10-14 11:22:53 +02008159static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
8160{
8161
8162 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val,
8163 sizeof(val));
8164}
8165
Gleb Natapovaf585b92010-10-14 11:22:46 +02008166void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
8167 struct kvm_async_pf *work)
8168{
Avi Kivity6389ee92010-11-29 16:12:30 +02008169 struct x86_exception fault;
8170
Gleb Natapov7c907052010-10-14 11:22:53 +02008171 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008172 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02008173
8174 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02008175 (vcpu->arch.apf.send_user_only &&
8176 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02008177 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
8178 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008179 fault.vector = PF_VECTOR;
8180 fault.error_code_valid = true;
8181 fault.error_code = 0;
8182 fault.nested_page_fault = false;
8183 fault.address = work->arch.token;
8184 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008185 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008186}
8187
8188void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
8189 struct kvm_async_pf *work)
8190{
Avi Kivity6389ee92010-11-29 16:12:30 +02008191 struct x86_exception fault;
8192
Gleb Natapov7c907052010-10-14 11:22:53 +02008193 trace_kvm_async_pf_ready(work->arch.token, work->gva);
chai wenf2e10662013-10-14 22:22:33 +08008194 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +02008195 work->arch.token = ~0; /* broadcast wakeup */
8196 else
8197 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
8198
8199 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
8200 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008201 fault.vector = PF_VECTOR;
8202 fault.error_code_valid = true;
8203 fault.error_code = 0;
8204 fault.nested_page_fault = false;
8205 fault.address = work->arch.token;
8206 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008207 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08008208 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +03008209 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +02008210}
8211
8212bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
8213{
8214 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
8215 return true;
8216 else
8217 return !kvm_event_needs_reinjection(vcpu) &&
8218 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008219}
8220
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06008221void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
8222{
8223 atomic_inc(&kvm->arch.noncoherent_dma_count);
8224}
8225EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
8226
8227void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
8228{
8229 atomic_dec(&kvm->arch.noncoherent_dma_count);
8230}
8231EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
8232
8233bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
8234{
8235 return atomic_read(&kvm->arch.noncoherent_dma_count);
8236}
8237EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
8238
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008239EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
8240EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
8241EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
8242EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
8243EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02008244EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02008245EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02008246EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02008247EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02008248EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02008249EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01008250EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09008251EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Radim Krčmář7b462682014-08-21 18:08:09 +02008252EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window);
Kai Huang843e4332015-01-28 10:54:28 +08008253EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);