blob: 618463abeec5b2479dab5900e0a573ceddcd8a15 [file] [log] [blame]
Carsten Otte043405e2007-10-10 17:16:19 +02001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * derived from drivers/kvm/kvm_main.c
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03007 * Copyright (C) 2008 Qumranet, Inc.
8 * Copyright IBM Corporation, 2008
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Carsten Otte043405e2007-10-10 17:16:19 +020010 *
11 * Authors:
12 * Avi Kivity <avi@qumranet.com>
13 * Yaniv Kamay <yaniv@qumranet.com>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030014 * Amit Shah <amit.shah@qumranet.com>
15 * Ben-Ami Yassour <benami@il.ibm.com>
Carsten Otte043405e2007-10-10 17:16:19 +020016 *
17 * This work is licensed under the terms of the GNU GPL, version 2. See
18 * the COPYING file in the top-level directory.
19 *
20 */
21
Avi Kivityedf88412007-12-16 11:02:48 +020022#include <linux/kvm_host.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020023#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080024#include "mmu.h"
Sheng Yang78376992008-01-28 05:10:22 +080025#include "i8254.h"
Izik Eidus37817f22008-03-24 23:14:53 +020026#include "tss.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030027#include "kvm_cache_regs.h"
Avi Kivity26eef702008-07-03 14:59:22 +030028#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020029#include "cpuid.h"
Paolo Bonzinic9eab582014-11-24 15:27:17 +010030#include "assigned-dev.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020031#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030032#include "hyperv.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020033
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020034#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030035#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020036#include <linux/kvm.h>
37#include <linux/fs.h>
38#include <linux/vmalloc.h>
Carsten Otte5fb76f92007-10-29 16:08:51 +010039#include <linux/module.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080040#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050041#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010042#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030043#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010044#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030045#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020046#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080048#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080049#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020050#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020051#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020052#include <linux/timekeeper_internal.h>
53#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080054#include <linux/kvm_irqfd.h>
55#include <linux/irqbypass.h>
Avi Kivityaec51dc2009-07-01 16:01:02 +030056#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080057
Marcelo Tosatti229456f2009-06-17 09:22:14 -030058#define CREATE_TRACE_POINTS
59#include "trace.h"
Carsten Otte043405e2007-10-10 17:16:19 +020060
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020061#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080062#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020063#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080064#include <asm/mce.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020065#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020066#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100067#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030068#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080069#include <asm/irq_remapping.h>
Carsten Otte043405e2007-10-10 17:16:19 +020070
Carsten Otte313a3dc2007-10-11 19:16:52 +020071#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080072#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080073u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
74EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080075
Avi Kivity0f65dd72011-04-20 13:37:53 +030076#define emul_to_vcpu(ctxt) \
77 container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt)
78
Joerg Roedel50a37eb2008-01-31 14:57:38 +010079/* EFER defaults:
80 * - enable syscall per default because its emulated by KVM
81 * - enable LME and LMA per default on 64 bit KVM
82 */
83#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080084static
85u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010086#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080087static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010088#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020089
Avi Kivityba1389b2007-11-18 16:24:12 +020090#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
91#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050092
Gleb Natapovcb142eb2009-08-09 15:17:40 +030093static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +030094static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +020095static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010096static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Avi Kivity674eea02008-02-11 18:37:23 +020097
Paolo Bonzini893590c2015-11-06 11:46:24 +010098struct kvm_x86_ops *kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030099EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800100
Paolo Bonzini893590c2015-11-06 11:46:24 +0100101static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030102module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200103
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200104unsigned int min_timer_period_us = 500;
105module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
106
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300107static bool __read_mostly kvmclock_periodic_sync = true;
108module_param(kvmclock_periodic_sync, bool, S_IRUGO);
109
Paolo Bonzini893590c2015-11-06 11:46:24 +0100110bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100111EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100112u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100113EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800114u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
115EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
116u64 __read_mostly kvm_max_tsc_scaling_ratio;
117EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700118u64 __read_mostly kvm_default_tsc_scaling_ratio;
119EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100120
Zachary Amsdencc578282012-02-03 15:43:50 -0200121/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100122static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200123module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
124
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500125/* lapic timer advance (tscdeadline mode only) in nanoseconds */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100126unsigned int __read_mostly lapic_timer_advance_ns = 0;
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500127module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR);
128
Feng Wu520040142016-01-25 16:53:33 +0800129static bool __read_mostly vector_hashing = true;
130module_param(vector_hashing, bool, S_IRUGO);
131
Paolo Bonzini893590c2015-11-06 11:46:24 +0100132static bool __read_mostly backwards_tsc_observed = false;
Marcelo Tosatti16a96022014-05-14 12:43:24 -0300133
Avi Kivity18863bd2009-09-07 11:12:18 +0300134#define KVM_NR_SHARED_MSRS 16
135
136struct kvm_shared_msrs_global {
137 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800138 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300139};
140
141struct kvm_shared_msrs {
142 struct user_return_notifier urn;
143 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800144 struct kvm_shared_msr_values {
145 u64 host;
146 u64 curr;
147 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300148};
149
150static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200151static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300152
Hollis Blanchard417bc302007-10-31 17:24:23 -0500153struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200154 { "pf_fixed", VCPU_STAT(pf_fixed) },
155 { "pf_guest", VCPU_STAT(pf_guest) },
156 { "tlb_flush", VCPU_STAT(tlb_flush) },
157 { "invlpg", VCPU_STAT(invlpg) },
158 { "exits", VCPU_STAT(exits) },
159 { "io_exits", VCPU_STAT(io_exits) },
160 { "mmio_exits", VCPU_STAT(mmio_exits) },
161 { "signal_exits", VCPU_STAT(signal_exits) },
162 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800163 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200164 { "halt_exits", VCPU_STAT(halt_exits) },
Paolo Bonzinif7819512015-02-04 18:20:58 +0100165 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +0200166 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200167 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200168 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530169 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200170 { "request_irq", VCPU_STAT(request_irq_exits) },
171 { "irq_exits", VCPU_STAT(irq_exits) },
172 { "host_state_reload", VCPU_STAT(host_state_reload) },
173 { "efer_reload", VCPU_STAT(efer_reload) },
174 { "fpu_reload", VCPU_STAT(fpu_reload) },
175 { "insn_emulation", VCPU_STAT(insn_emulation) },
176 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300177 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200178 { "nmi_injections", VCPU_STAT(nmi_injections) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200179 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
180 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
181 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
182 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
183 { "mmu_flooded", VM_STAT(mmu_flooded) },
184 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200185 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300186 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200187 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300188 { "largepages", VM_STAT(lpages) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500189 { NULL }
190};
191
Dexuan Cui2acf9232010-06-10 11:27:12 +0800192u64 __read_mostly host_xcr0;
193
Jan Kiszkab6785de2012-09-20 07:43:17 +0200194static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300195
Gleb Natapovaf585b92010-10-14 11:22:46 +0200196static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
197{
198 int i;
199 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
200 vcpu->arch.apf.gfns[i] = ~0;
201}
202
Avi Kivity18863bd2009-09-07 11:12:18 +0300203static void kvm_on_user_return(struct user_return_notifier *urn)
204{
205 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300206 struct kvm_shared_msrs *locals
207 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800208 struct kvm_shared_msr_values *values;
Avi Kivity18863bd2009-09-07 11:12:18 +0300209
210 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800211 values = &locals->values[slot];
212 if (values->host != values->curr) {
213 wrmsrl(shared_msrs_global.msrs[slot], values->host);
214 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300215 }
216 }
217 locals->registered = false;
218 user_return_notifier_unregister(urn);
219}
220
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800221static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300222{
Avi Kivity18863bd2009-09-07 11:12:18 +0300223 u64 value;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200224 unsigned int cpu = smp_processor_id();
225 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300226
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800227 /* only read, and nobody should modify it at this time,
228 * so don't need lock */
229 if (slot >= shared_msrs_global.nr) {
230 printk(KERN_ERR "kvm: invalid MSR slot!");
231 return;
232 }
233 rdmsrl_safe(msr, &value);
234 smsr->values[slot].host = value;
235 smsr->values[slot].curr = value;
236}
237
238void kvm_define_shared_msr(unsigned slot, u32 msr)
239{
Nadav Amit0123be42014-07-24 15:06:56 +0300240 BUG_ON(slot >= KVM_NR_SHARED_MSRS);
Paolo Bonzinic847fe82015-07-29 11:06:34 +0200241 shared_msrs_global.msrs[slot] = msr;
Avi Kivity18863bd2009-09-07 11:12:18 +0300242 if (slot >= shared_msrs_global.nr)
243 shared_msrs_global.nr = slot + 1;
Avi Kivity18863bd2009-09-07 11:12:18 +0300244}
245EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
246
247static void kvm_shared_msr_cpu_online(void)
248{
249 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300250
251 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800252 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300253}
254
Andy Honig8b3c3102014-08-27 11:16:44 -0700255int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300256{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200257 unsigned int cpu = smp_processor_id();
258 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700259 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300260
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800261 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Andy Honig8b3c3102014-08-27 11:16:44 -0700262 return 0;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800263 smsr->values[slot].curr = value;
Andy Honig8b3c3102014-08-27 11:16:44 -0700264 err = wrmsrl_safe(shared_msrs_global.msrs[slot], value);
265 if (err)
266 return 1;
267
Avi Kivity18863bd2009-09-07 11:12:18 +0300268 if (!smsr->registered) {
269 smsr->urn.on_user_return = kvm_on_user_return;
270 user_return_notifier_register(&smsr->urn);
271 smsr->registered = true;
272 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700273 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300274}
275EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
276
Radim Krčmář13a34e02014-08-28 15:13:03 +0200277static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200278{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200279 unsigned int cpu = smp_processor_id();
280 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200281
282 if (smsr->registered)
283 kvm_on_user_return(&smsr->urn);
284}
285
Carsten Otte6866b832007-10-29 16:09:10 +0100286u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
287{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300288 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100289}
290EXPORT_SYMBOL_GPL(kvm_get_apic_base);
291
Jan Kiszka58cb6282014-01-24 16:48:44 +0100292int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100293{
Jan Kiszka58cb6282014-01-24 16:48:44 +0100294 u64 old_state = vcpu->arch.apic_base &
295 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
296 u64 new_state = msr_info->data &
297 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
298 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) |
299 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE);
300
301 if (!msr_info->host_initiated &&
302 ((msr_info->data & reserved_bits) != 0 ||
303 new_state == X2APIC_ENABLE ||
304 (new_state == MSR_IA32_APICBASE_ENABLE &&
305 old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) ||
306 (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) &&
307 old_state == 0)))
308 return 1;
309
310 kvm_lapic_set_base(vcpu, msr_info->data);
311 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100312}
313EXPORT_SYMBOL_GPL(kvm_set_apic_base);
314
Andi Kleen2605fc22014-05-02 00:44:37 +0200315asmlinkage __visible void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000316{
317 /* Fault while not rebooting. We want the trace. */
318 BUG();
319}
320EXPORT_SYMBOL_GPL(kvm_spurious_fault);
321
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200322#define EXCPT_BENIGN 0
323#define EXCPT_CONTRIBUTORY 1
324#define EXCPT_PF 2
325
326static int exception_class(int vector)
327{
328 switch (vector) {
329 case PF_VECTOR:
330 return EXCPT_PF;
331 case DE_VECTOR:
332 case TS_VECTOR:
333 case NP_VECTOR:
334 case SS_VECTOR:
335 case GP_VECTOR:
336 return EXCPT_CONTRIBUTORY;
337 default:
338 break;
339 }
340 return EXCPT_BENIGN;
341}
342
Nadav Amitd6e8c852014-07-24 14:51:24 +0300343#define EXCPT_FAULT 0
344#define EXCPT_TRAP 1
345#define EXCPT_ABORT 2
346#define EXCPT_INTERRUPT 3
347
348static int exception_type(int vector)
349{
350 unsigned int mask;
351
352 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
353 return EXCPT_INTERRUPT;
354
355 mask = 1 << vector;
356
357 /* #DB is trap, as instruction watchpoints are handled elsewhere */
358 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
359 return EXCPT_TRAP;
360
361 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
362 return EXCPT_ABORT;
363
364 /* Reserved exceptions will result in fault */
365 return EXCPT_FAULT;
366}
367
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200368static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200369 unsigned nr, bool has_error, u32 error_code,
370 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200371{
372 u32 prev_nr;
373 int class1, class2;
374
Avi Kivity3842d132010-07-27 12:30:24 +0300375 kvm_make_request(KVM_REQ_EVENT, vcpu);
376
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200377 if (!vcpu->arch.exception.pending) {
378 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200379 if (has_error && !is_protmode(vcpu))
380 has_error = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200381 vcpu->arch.exception.pending = true;
382 vcpu->arch.exception.has_error_code = has_error;
383 vcpu->arch.exception.nr = nr;
384 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200385 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200386 return;
387 }
388
389 /* to check exception */
390 prev_nr = vcpu->arch.exception.nr;
391 if (prev_nr == DF_VECTOR) {
392 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300393 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200394 return;
395 }
396 class1 = exception_class(prev_nr);
397 class2 = exception_class(nr);
398 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
399 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
400 /* generate double fault per SDM Table 5-5 */
401 vcpu->arch.exception.pending = true;
402 vcpu->arch.exception.has_error_code = true;
403 vcpu->arch.exception.nr = DF_VECTOR;
404 vcpu->arch.exception.error_code = 0;
405 } else
406 /* replace previous exception with a new one in a hope
407 that instruction re-execution will regenerate lost
408 exception */
409 goto queue;
410}
411
Avi Kivity298101d2007-11-25 13:41:11 +0200412void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
413{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200414 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200415}
416EXPORT_SYMBOL_GPL(kvm_queue_exception);
417
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200418void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
419{
420 kvm_multiple_exception(vcpu, nr, false, 0, true);
421}
422EXPORT_SYMBOL_GPL(kvm_requeue_exception);
423
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100424void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200425{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100426 if (err)
427 kvm_inject_gp(vcpu, 0);
428 else
429 kvm_x86_ops->skip_emulated_instruction(vcpu);
430}
431EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200432
Avi Kivity6389ee92010-11-29 16:12:30 +0200433void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200434{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200435 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200436 vcpu->arch.cr2 = fault->address;
437 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200438}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300439EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200440
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200441static bool kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200442{
Avi Kivity6389ee92010-11-29 16:12:30 +0200443 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
444 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200445 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200446 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200447
448 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200449}
450
Sheng Yang3419ffc2008-05-15 09:52:48 +0800451void kvm_inject_nmi(struct kvm_vcpu *vcpu)
452{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300453 atomic_inc(&vcpu->arch.nmi_queued);
454 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800455}
456EXPORT_SYMBOL_GPL(kvm_inject_nmi);
457
Avi Kivity298101d2007-11-25 13:41:11 +0200458void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
459{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200460 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200461}
462EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
463
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200464void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
465{
466 kvm_multiple_exception(vcpu, nr, true, error_code, true);
467}
468EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
469
Carsten Ottea03490e2007-10-29 16:09:35 +0100470/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300471 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
472 * a #GP and return false.
473 */
474bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200475{
Avi Kivity0a79b002009-09-01 12:03:25 +0300476 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
477 return true;
478 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
479 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100480}
Avi Kivity0a79b002009-09-01 12:03:25 +0300481EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100482
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300483bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
484{
485 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
486 return true;
487
488 kvm_queue_exception(vcpu, UD_VECTOR);
489 return false;
490}
491EXPORT_SYMBOL_GPL(kvm_require_dr);
492
Carsten Ottea03490e2007-10-29 16:09:35 +0100493/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200494 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200495 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200496 * can read from guest physical or from the guest's guest physical memory.
497 */
498int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
499 gfn_t ngfn, void *data, int offset, int len,
500 u32 access)
501{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200502 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200503 gfn_t real_gfn;
504 gpa_t ngpa;
505
506 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200507 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200508 if (real_gfn == UNMAPPED_GVA)
509 return -EFAULT;
510
511 real_gfn = gpa_to_gfn(real_gfn);
512
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200513 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200514}
515EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
516
Fengguang Wu69b00492015-01-19 22:33:39 +0800517static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200518 void *data, int offset, int len, u32 access)
519{
520 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
521 data, offset, len, access);
522}
523
Joerg Roedelec92fe42010-09-10 17:30:51 +0200524/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100525 * Load the pae pdptrs. Return true is they are all valid.
526 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200527int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100528{
529 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
530 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
531 int i;
532 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200533 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100534
Joerg Roedelff03a072010-09-10 17:30:57 +0200535 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
536 offset * sizeof(u64), sizeof(pdpte),
537 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100538 if (ret < 0) {
539 ret = 0;
540 goto out;
541 }
542 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Avi Kivity43a37952009-06-10 14:12:05 +0300543 if (is_present_gpte(pdpte[i]) &&
Xiao Guangronga0a64f52015-08-05 12:04:21 +0800544 (pdpte[i] &
545 vcpu->arch.mmu.guest_rsvd_check.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100546 ret = 0;
547 goto out;
548 }
549 }
550 ret = 1;
551
Joerg Roedelff03a072010-09-10 17:30:57 +0200552 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300553 __set_bit(VCPU_EXREG_PDPTR,
554 (unsigned long *)&vcpu->arch.regs_avail);
555 __set_bit(VCPU_EXREG_PDPTR,
556 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100557out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100558
559 return ret;
560}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100561EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100562
Avi Kivityd835dfe2007-11-21 02:57:59 +0200563static bool pdptrs_changed(struct kvm_vcpu *vcpu)
564{
Joerg Roedelff03a072010-09-10 17:30:57 +0200565 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200566 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200567 int offset;
568 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200569 int r;
570
571 if (is_long_mode(vcpu) || !is_pae(vcpu))
572 return false;
573
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300574 if (!test_bit(VCPU_EXREG_PDPTR,
575 (unsigned long *)&vcpu->arch.regs_avail))
576 return true;
577
Avi Kivity9f8fe502010-12-05 17:30:00 +0200578 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
579 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200580 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
581 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200582 if (r < 0)
583 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200584 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200585out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200586
587 return changed;
588}
589
Avi Kivity49a9b072010-06-10 17:02:14 +0300590int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100591{
Sheng Yangaad82702010-05-12 16:40:42 +0800592 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800593 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800594
Avi Kivityf9a48e62010-01-06 19:10:22 +0200595 cr0 |= X86_CR0_ET;
596
Gleb Natapovab344822010-01-21 15:28:46 +0200597#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300598 if (cr0 & 0xffffffff00000000UL)
599 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200600#endif
601
602 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100603
Gleb Natapov0f122442010-04-28 19:15:31 +0300604 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
605 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100606
Gleb Natapov0f122442010-04-28 19:15:31 +0300607 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
608 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100609
610 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
611#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200612 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100613 int cs_db, cs_l;
614
Gleb Natapov0f122442010-04-28 19:15:31 +0300615 if (!is_pae(vcpu))
616 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100617 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300618 if (cs_l)
619 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100620 } else
621#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200622 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200623 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300624 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100625 }
626
Mao, Junjiead756a12012-07-02 01:18:48 +0000627 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
628 return 1;
629
Carsten Ottea03490e2007-10-29 16:09:35 +0100630 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100631
Lai Jiangshand170c412011-02-21 11:21:30 +0800632 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800633 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800634 kvm_async_pf_hash_reset(vcpu);
635 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800636
Sheng Yangaad82702010-05-12 16:40:42 +0800637 if ((cr0 ^ old_cr0) & update_bits)
638 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800639
Laszlo Ersek879ae182015-11-04 12:54:41 +0100640 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
641 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
642 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800643 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
644
Gleb Natapov0f122442010-04-28 19:15:31 +0300645 return 0;
646}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200647EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100648
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200649void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100650{
Avi Kivity49a9b072010-06-10 17:02:14 +0300651 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100652}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200653EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100654
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300655static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
656{
657 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
658 !vcpu->guest_xcr0_loaded) {
659 /* kvm_set_xcr() also depends on this */
660 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
661 vcpu->guest_xcr0_loaded = 1;
662 }
663}
664
665static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
666{
667 if (vcpu->guest_xcr0_loaded) {
668 if (vcpu->arch.xcr0 != host_xcr0)
669 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
670 vcpu->guest_xcr0_loaded = 0;
671 }
672}
673
Fengguang Wu69b00492015-01-19 22:33:39 +0800674static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800675{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000676 u64 xcr0 = xcr;
677 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200678 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800679
680 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
681 if (index != XCR_XFEATURE_ENABLED_MASK)
682 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700683 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800684 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700685 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800686 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200687
688 /*
689 * Do not allow the guest to set bits that we do not support
690 * saving. However, xcr0 bit 0 is always set, even if the
691 * emulated CPU does not support XSAVE (see fx_init).
692 */
Dave Hansend91cab72015-09-02 16:31:26 -0700693 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200694 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800695 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200696
Dave Hansend91cab72015-09-02 16:31:26 -0700697 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
698 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000699 return 1;
700
Dave Hansend91cab72015-09-02 16:31:26 -0700701 if (xcr0 & XFEATURE_MASK_AVX512) {
702 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800703 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700704 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800705 return 1;
706 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800707 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000708
Dave Hansend91cab72015-09-02 16:31:26 -0700709 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000710 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800711 return 0;
712}
713
714int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
715{
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000716 if (kvm_x86_ops->get_cpl(vcpu) != 0 ||
717 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800718 kvm_inject_gp(vcpu, 0);
719 return 1;
720 }
721 return 0;
722}
723EXPORT_SYMBOL_GPL(kvm_set_xcr);
724
Avi Kivitya83b29c2010-06-10 17:02:15 +0300725int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100726{
Avi Kivityfc78f512009-12-07 12:16:48 +0200727 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800728 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Huaitong Hanb9baba82016-03-22 16:51:21 +0800729 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE;
Xiao Guangrong0be02262015-05-11 22:55:21 +0800730
Gleb Natapov0f122442010-04-28 19:15:31 +0300731 if (cr4 & CR4_RESERVED_BITS)
732 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100733
Dexuan Cui2acf9232010-06-10 11:27:12 +0800734 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
735 return 1;
736
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800737 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
738 return 1;
739
Feng Wu97ec8c02014-04-01 17:46:34 +0800740 if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP))
741 return 1;
742
H. Peter Anvinafcbf132013-04-27 16:37:47 -0700743 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE))
Yang, Wei74dc2b42011-06-14 20:10:18 +0800744 return 1;
745
Huaitong Hanb9baba82016-03-22 16:51:21 +0800746 if (!guest_cpuid_has_pku(vcpu) && (cr4 & X86_CR4_PKE))
747 return 1;
748
Carsten Ottea03490e2007-10-29 16:09:35 +0100749 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300750 if (!(cr4 & X86_CR4_PAE))
751 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300752 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
753 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200754 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
755 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300756 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100757
Mao, Junjiead756a12012-07-02 01:18:48 +0000758 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
759 if (!guest_cpuid_has_pcid(vcpu))
760 return 1;
761
762 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
763 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
764 return 1;
765 }
766
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300767 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300768 return 1;
769
Mao, Junjiead756a12012-07-02 01:18:48 +0000770 if (((cr4 ^ old_cr4) & pdptr_bits) ||
771 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800772 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300773
Huaitong Hanb9baba82016-03-22 16:51:21 +0800774 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +0200775 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800776
Gleb Natapov0f122442010-04-28 19:15:31 +0300777 return 0;
778}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200779EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100780
Avi Kivity23902182010-06-10 17:02:16 +0300781int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100782{
Paolo Bonziniac146232014-11-10 13:53:25 +0100783#ifdef CONFIG_X86_64
Nadav Amit9d88fca2014-11-02 11:54:52 +0200784 cr3 &= ~CR3_PCID_INVD;
Paolo Bonziniac146232014-11-10 13:53:25 +0100785#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +0200786
Avi Kivity9f8fe502010-12-05 17:30:00 +0200787 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300788 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -0400789 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300790 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200791 }
792
Carsten Ottea03490e2007-10-29 16:09:35 +0100793 if (is_long_mode(vcpu)) {
Jan Kiszkad9f89b82014-05-10 09:24:34 +0200794 if (cr3 & CR3_L_MODE_RESERVED_BITS)
795 return 1;
796 } else if (is_pae(vcpu) && is_paging(vcpu) &&
797 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +0300798 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100799
Gleb Natapov0f122442010-04-28 19:15:31 +0300800 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200801 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Paolo Bonzinid8d173d2013-10-02 16:56:11 +0200802 kvm_mmu_new_cr3(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300803 return 0;
804}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200805EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100806
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100807int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100808{
Gleb Natapov0f122442010-04-28 19:15:31 +0300809 if (cr8 & CR8_RESERVED_BITS)
810 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +0200811 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100812 kvm_lapic_set_tpr(vcpu, cr8);
813 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800814 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300815 return 0;
816}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200817EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100818
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200819unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100820{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200821 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100822 return kvm_lapic_get_cr8(vcpu);
823 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800824 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100825}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200826EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100827
Nadav Amitae561ed2015-04-02 03:10:37 +0300828static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
829{
830 int i;
831
832 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
833 for (i = 0; i < KVM_NR_DB_REGS; i++)
834 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
835 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
836 }
837}
838
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100839static void kvm_update_dr6(struct kvm_vcpu *vcpu)
840{
841 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
842 kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6);
843}
844
Jan Kiszkac8639012012-09-21 05:42:55 +0200845static void kvm_update_dr7(struct kvm_vcpu *vcpu)
846{
847 unsigned long dr7;
848
849 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
850 dr7 = vcpu->arch.guest_debug_dr7;
851 else
852 dr7 = vcpu->arch.dr7;
853 kvm_x86_ops->set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +0100854 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
855 if (dr7 & DR7_BP_EN_MASK)
856 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +0200857}
858
Nadav Amit6f43ed02014-07-15 17:37:46 +0300859static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
860{
861 u64 fixed = DR6_FIXED_1;
862
863 if (!guest_cpuid_has_rtm(vcpu))
864 fixed |= DR6_RTM;
865 return fixed;
866}
867
Gleb Natapov338dbc92010-04-28 19:15:32 +0300868static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300869{
870 switch (dr) {
871 case 0 ... 3:
872 vcpu->arch.db[dr] = val;
873 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
874 vcpu->arch.eff_db[dr] = val;
875 break;
876 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300877 /* fall through */
878 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300879 if (val & 0xffffffff00000000ULL)
880 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +0300881 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100882 kvm_update_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300883 break;
884 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300885 /* fall through */
886 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300887 if (val & 0xffffffff00000000ULL)
888 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300889 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +0200890 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300891 break;
892 }
893
894 return 0;
895}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300896
897int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
898{
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300899 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +0300900 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300901 return 1;
902 }
903 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +0300904}
Gleb Natapov020df072010-04-13 10:05:23 +0300905EXPORT_SYMBOL_GPL(kvm_set_dr);
906
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300907int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300908{
909 switch (dr) {
910 case 0 ... 3:
911 *val = vcpu->arch.db[dr];
912 break;
913 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300914 /* fall through */
915 case 6:
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100916 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
917 *val = vcpu->arch.dr6;
918 else
919 *val = kvm_x86_ops->get_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300920 break;
921 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300922 /* fall through */
923 default: /* 7 */
924 *val = vcpu->arch.dr7;
925 break;
926 }
Gleb Natapov338dbc92010-04-28 19:15:32 +0300927 return 0;
928}
Gleb Natapov020df072010-04-13 10:05:23 +0300929EXPORT_SYMBOL_GPL(kvm_get_dr);
930
Avi Kivity022cd0e2011-11-10 14:57:23 +0200931bool kvm_rdpmc(struct kvm_vcpu *vcpu)
932{
933 u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
934 u64 data;
935 int err;
936
Wei Huangc6702c92015-06-19 13:44:45 +0200937 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +0200938 if (err)
939 return err;
940 kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data);
941 kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32);
942 return err;
943}
944EXPORT_SYMBOL_GPL(kvm_rdpmc);
945
Carsten Otte043405e2007-10-10 17:16:19 +0200946/*
947 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
948 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
949 *
950 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400951 * capabilities of the host cpu. This capabilities test skips MSRs that are
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200952 * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs
953 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +0200954 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400955
Carsten Otte043405e2007-10-10 17:16:19 +0200956static u32 msrs_to_save[] = {
957 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400958 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200959#ifdef CONFIG_X86_64
960 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
961#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800962 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +0100963 MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Carsten Otte043405e2007-10-10 17:16:19 +0200964};
965
966static unsigned num_msrs_to_save;
967
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200968static u32 emulated_msrs[] = {
969 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
970 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
971 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
972 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Andrey Smetanine7d95132015-07-03 15:01:37 +0300973 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
974 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +0300975 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +0300976 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300977 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300978 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +0300979 HV_X64_MSR_STIMER0_CONFIG,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200980 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
981 MSR_KVM_PV_EOI_EN,
982
Will Auldba904632012-11-29 12:42:50 -0800983 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800984 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +0200985 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +0300986 MSR_IA32_MCG_STATUS,
987 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +0800988 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +0200989 MSR_IA32_SMBASE,
Carsten Otte043405e2007-10-10 17:16:19 +0200990};
991
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200992static unsigned num_emulated_msrs;
993
Jan Kiszka384bb782013-04-20 10:52:36 +0200994bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +0100995{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200996 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +0200997 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +0100998
Alexander Graf1b2fd702009-02-02 16:23:51 +0100999 if (efer & EFER_FFXSR) {
1000 struct kvm_cpuid_entry2 *feat;
1001
1002 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001003 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001004 return false;
Alexander Graf1b2fd702009-02-02 16:23:51 +01001005 }
1006
Alexander Grafd8017472008-11-25 20:17:11 +01001007 if (efer & EFER_SVME) {
1008 struct kvm_cpuid_entry2 *feat;
1009
1010 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001011 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001012 return false;
Alexander Grafd8017472008-11-25 20:17:11 +01001013 }
1014
Jan Kiszka384bb782013-04-20 10:52:36 +02001015 return true;
1016}
1017EXPORT_SYMBOL_GPL(kvm_valid_efer);
1018
1019static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
1020{
1021 u64 old_efer = vcpu->arch.efer;
1022
1023 if (!kvm_valid_efer(vcpu, efer))
1024 return 1;
1025
1026 if (is_paging(vcpu)
1027 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1028 return 1;
1029
Carsten Otte15c4a642007-10-30 18:44:17 +01001030 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001031 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001032
Sheng Yanga3d204e2010-05-12 16:40:40 +08001033 kvm_x86_ops->set_efer(vcpu, efer);
1034
Sheng Yangaad82702010-05-12 16:40:42 +08001035 /* Update reserved bits */
1036 if ((efer ^ old_efer) & EFER_NX)
1037 kvm_mmu_reset_context(vcpu);
1038
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001039 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001040}
1041
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001042void kvm_enable_efer_bits(u64 mask)
1043{
1044 efer_reserved_bits &= ~mask;
1045}
1046EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1047
Carsten Otte15c4a642007-10-30 18:44:17 +01001048/*
1049 * Writes msr value into into the appropriate "register".
1050 * Returns 0 on success, non-0 otherwise.
1051 * Assumes vcpu_load() was already called.
1052 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001053int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01001054{
Nadav Amit854e8bb2014-09-16 03:24:05 +03001055 switch (msr->index) {
1056 case MSR_FS_BASE:
1057 case MSR_GS_BASE:
1058 case MSR_KERNEL_GS_BASE:
1059 case MSR_CSTAR:
1060 case MSR_LSTAR:
1061 if (is_noncanonical_address(msr->data))
1062 return 1;
1063 break;
1064 case MSR_IA32_SYSENTER_EIP:
1065 case MSR_IA32_SYSENTER_ESP:
1066 /*
1067 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1068 * non-canonical address is written on Intel but not on
1069 * AMD (which ignores the top 32-bits, because it does
1070 * not implement 64-bit SYSENTER).
1071 *
1072 * 64-bit code should hence be able to write a non-canonical
1073 * value on AMD. Making the address canonical ensures that
1074 * vmentry does not fail on Intel after writing a non-canonical
1075 * value, and that something deterministic happens if the guest
1076 * invokes 64-bit SYSENTER.
1077 */
1078 msr->data = get_canonical(msr->data);
1079 }
Will Auld8fe8ab42012-11-29 12:42:12 -08001080 return kvm_x86_ops->set_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001081}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001082EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001083
Carsten Otte313a3dc2007-10-11 19:16:52 +02001084/*
1085 * Adapt set_msr() to msr_io()'s calling convention
1086 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001087static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1088{
1089 struct msr_data msr;
1090 int r;
1091
1092 msr.index = index;
1093 msr.host_initiated = true;
1094 r = kvm_get_msr(vcpu, &msr);
1095 if (r)
1096 return r;
1097
1098 *data = msr.data;
1099 return 0;
1100}
1101
Carsten Otte313a3dc2007-10-11 19:16:52 +02001102static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1103{
Will Auld8fe8ab42012-11-29 12:42:12 -08001104 struct msr_data msr;
1105
1106 msr.data = *data;
1107 msr.index = index;
1108 msr.host_initiated = true;
1109 return kvm_set_msr(vcpu, &msr);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001110}
1111
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001112#ifdef CONFIG_X86_64
1113struct pvclock_gtod_data {
1114 seqcount_t seq;
1115
1116 struct { /* extract of a clocksource struct */
1117 int vclock_mode;
1118 cycle_t cycle_last;
1119 cycle_t mask;
1120 u32 mult;
1121 u32 shift;
1122 } clock;
1123
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001124 u64 boot_ns;
1125 u64 nsec_base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001126};
1127
1128static struct pvclock_gtod_data pvclock_gtod_data;
1129
1130static void update_pvclock_gtod(struct timekeeper *tk)
1131{
1132 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001133 u64 boot_ns;
1134
Peter Zijlstra876e7882015-03-19 10:09:06 +01001135 boot_ns = ktime_to_ns(ktime_add(tk->tkr_mono.base, tk->offs_boot));
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001136
1137 write_seqcount_begin(&vdata->seq);
1138
1139 /* copy pvclock gtod data */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001140 vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode;
1141 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1142 vdata->clock.mask = tk->tkr_mono.mask;
1143 vdata->clock.mult = tk->tkr_mono.mult;
1144 vdata->clock.shift = tk->tkr_mono.shift;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001145
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001146 vdata->boot_ns = boot_ns;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001147 vdata->nsec_base = tk->tkr_mono.xtime_nsec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001148
1149 write_seqcount_end(&vdata->seq);
1150}
1151#endif
1152
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001153void kvm_set_pending_timer(struct kvm_vcpu *vcpu)
1154{
1155 /*
1156 * Note: KVM_REQ_PENDING_TIMER is implicitly checked in
1157 * vcpu_enter_guest. This function is only called from
1158 * the physical CPU that is running vcpu.
1159 */
1160 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1161}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001162
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001163static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1164{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001165 int version;
1166 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001167 struct pvclock_wall_clock wc;
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001168 struct timespec64 boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001169
1170 if (!wall_clock)
1171 return;
1172
Avi Kivity9ed3c442010-05-04 15:00:37 +03001173 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1174 if (r)
1175 return;
1176
1177 if (version & 1)
1178 ++version; /* first time write, random junk */
1179
1180 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001181
Nicholas Krause1dab1342015-12-30 13:08:46 -05001182 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
1183 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001184
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001185 /*
1186 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001187 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001188 * wall clock specified here. guest system time equals host
1189 * system time for us, thus we must fill in host boot time here.
1190 */
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001191 getboottime64(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001192
Bruce Rogers4b648662012-07-20 10:44:24 -06001193 if (kvm->arch.kvmclock_offset) {
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001194 struct timespec64 ts = ns_to_timespec64(kvm->arch.kvmclock_offset);
1195 boot = timespec64_sub(boot, ts);
Bruce Rogers4b648662012-07-20 10:44:24 -06001196 }
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001197 wc.sec = (u32)boot.tv_sec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001198 wc.nsec = boot.tv_nsec;
1199 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001200
1201 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1202
1203 version++;
1204 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001205}
1206
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001207static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1208{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01001209 do_shl32_div32(dividend, divisor);
1210 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001211}
1212
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001213static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001214 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001215{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001216 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001217 int32_t shift = 0;
1218 uint64_t tps64;
1219 uint32_t tps32;
1220
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001221 tps64 = base_hz;
1222 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02001223 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001224 tps64 >>= 1;
1225 shift--;
1226 }
1227
1228 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001229 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1230 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001231 scaled64 >>= 1;
1232 else
1233 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001234 shift++;
1235 }
1236
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001237 *pshift = shift;
1238 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001239
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001240 pr_debug("%s: base_hz %llu => %llu, shift %d, mul %u\n",
1241 __func__, base_hz, scaled_hz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001242}
1243
Marcelo Tosattid8281992012-11-27 23:29:01 -02001244#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001245static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001246#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001247
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001248static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001249static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001250
Joerg Roedel857e4092011-03-25 09:44:50 +01001251static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
Zachary Amsden759379d2010-08-19 22:07:25 -10001252{
Zachary Amsdencc578282012-02-03 15:43:50 -02001253 return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
1254 vcpu->arch.virtual_tsc_shift);
Zachary Amsden759379d2010-08-19 22:07:25 -10001255}
1256
Zachary Amsdencc578282012-02-03 15:43:50 -02001257static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001258{
Zachary Amsdencc578282012-02-03 15:43:50 -02001259 u64 v = (u64)khz * (1000000 + ppm);
1260 do_div(v, 1000000);
1261 return v;
1262}
1263
Haozhong Zhang381d5852015-10-20 15:39:04 +08001264static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
1265{
1266 u64 ratio;
1267
1268 /* Guest TSC same frequency as host TSC? */
1269 if (!scale) {
1270 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
1271 return 0;
1272 }
1273
1274 /* TSC scaling supported? */
1275 if (!kvm_has_tsc_control) {
1276 if (user_tsc_khz > tsc_khz) {
1277 vcpu->arch.tsc_catchup = 1;
1278 vcpu->arch.tsc_always_catchup = 1;
1279 return 0;
1280 } else {
1281 WARN(1, "user requested TSC rate below hardware speed\n");
1282 return -1;
1283 }
1284 }
1285
1286 /* TSC scaling required - calculate ratio */
1287 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
1288 user_tsc_khz, tsc_khz);
1289
1290 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
1291 WARN_ONCE(1, "Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
1292 user_tsc_khz);
1293 return -1;
1294 }
1295
1296 vcpu->arch.tsc_scaling_ratio = ratio;
1297 return 0;
1298}
1299
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001300static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02001301{
1302 u32 thresh_lo, thresh_hi;
1303 int use_scaling = 0;
1304
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001305 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001306 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08001307 /* set tsc_scaling_ratio to a safe value */
1308 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
Haozhong Zhang381d5852015-10-20 15:39:04 +08001309 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08001310 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001311
Zachary Amsdenc2855452010-09-18 14:38:15 -10001312 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001313 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02001314 &vcpu->arch.virtual_tsc_shift,
1315 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001316 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02001317
1318 /*
1319 * Compute the variation in TSC rate which is acceptable
1320 * within the range of tolerance and decide if the
1321 * rate being applied is within that bounds of the hardware
1322 * rate. If so, no scaling or compensation need be done.
1323 */
1324 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1325 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001326 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
1327 pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", user_tsc_khz, thresh_lo, thresh_hi);
Zachary Amsdencc578282012-02-03 15:43:50 -02001328 use_scaling = 1;
1329 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001330 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001331}
1332
1333static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1334{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001335 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001336 vcpu->arch.virtual_tsc_mult,
1337 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001338 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001339 return tsc;
1340}
1341
Fengguang Wu69b00492015-01-19 22:33:39 +08001342static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001343{
1344#ifdef CONFIG_X86_64
1345 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001346 struct kvm_arch *ka = &vcpu->kvm->arch;
1347 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1348
1349 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1350 atomic_read(&vcpu->kvm->online_vcpus));
1351
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001352 /*
1353 * Once the masterclock is enabled, always perform request in
1354 * order to update it.
1355 *
1356 * In order to enable masterclock, the host clocksource must be TSC
1357 * and the vcpus need to have matched TSCs. When that happens,
1358 * perform request to enable masterclock.
1359 */
1360 if (ka->use_master_clock ||
1361 (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001362 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1363
1364 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1365 atomic_read(&vcpu->kvm->online_vcpus),
1366 ka->use_master_clock, gtod->clock.vclock_mode);
1367#endif
1368}
1369
Will Auldba904632012-11-29 12:42:50 -08001370static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1371{
1372 u64 curr_offset = kvm_x86_ops->read_tsc_offset(vcpu);
1373 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1374}
1375
Haozhong Zhang35181e82015-10-20 15:39:03 +08001376/*
1377 * Multiply tsc by a fixed point number represented by ratio.
1378 *
1379 * The most significant 64-N bits (mult) of ratio represent the
1380 * integral part of the fixed point number; the remaining N bits
1381 * (frac) represent the fractional part, ie. ratio represents a fixed
1382 * point number (mult + frac * 2^(-N)).
1383 *
1384 * N equals to kvm_tsc_scaling_ratio_frac_bits.
1385 */
1386static inline u64 __scale_tsc(u64 ratio, u64 tsc)
1387{
1388 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
1389}
1390
1391u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
1392{
1393 u64 _tsc = tsc;
1394 u64 ratio = vcpu->arch.tsc_scaling_ratio;
1395
1396 if (ratio != kvm_default_tsc_scaling_ratio)
1397 _tsc = __scale_tsc(ratio, tsc);
1398
1399 return _tsc;
1400}
1401EXPORT_SYMBOL_GPL(kvm_scale_tsc);
1402
Haozhong Zhang07c14192015-10-20 15:39:05 +08001403static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1404{
1405 u64 tsc;
1406
1407 tsc = kvm_scale_tsc(vcpu, rdtsc());
1408
1409 return target_tsc - tsc;
1410}
1411
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001412u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
1413{
1414 return kvm_x86_ops->read_l1_tsc(vcpu, kvm_scale_tsc(vcpu, host_tsc));
1415}
1416EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
1417
Will Auld8fe8ab42012-11-29 12:42:12 -08001418void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10001419{
1420 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001421 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001422 unsigned long flags;
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001423 s64 usdiff;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001424 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001425 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08001426 u64 data = msr->data;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001427
Jan Kiszka038f8c12011-02-04 10:49:11 +01001428 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Haozhong Zhang07c14192015-10-20 15:39:05 +08001429 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001430 ns = get_kernel_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001431 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001432
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001433 if (vcpu->arch.virtual_tsc_khz) {
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001434 int faulted = 0;
1435
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001436 /* n.b - signed multiplication and division required */
1437 usdiff = data - kvm->arch.last_tsc_write;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001438#ifdef CONFIG_X86_64
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001439 usdiff = (usdiff * 1000) / vcpu->arch.virtual_tsc_khz;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001440#else
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001441 /* do_div() only does unsigned */
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001442 asm("1: idivl %[divisor]\n"
1443 "2: xor %%edx, %%edx\n"
1444 " movl $0, %[faulted]\n"
1445 "3:\n"
1446 ".section .fixup,\"ax\"\n"
1447 "4: movl $1, %[faulted]\n"
1448 " jmp 3b\n"
1449 ".previous\n"
1450
1451 _ASM_EXTABLE(1b, 4b)
1452
1453 : "=A"(usdiff), [faulted] "=r" (faulted)
1454 : "A"(usdiff * 1000), [divisor] "rm"(vcpu->arch.virtual_tsc_khz));
1455
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001456#endif
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001457 do_div(elapsed, 1000);
1458 usdiff -= elapsed;
1459 if (usdiff < 0)
1460 usdiff = -usdiff;
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001461
1462 /* idivl overflow => difference is larger than USEC_PER_SEC */
1463 if (faulted)
1464 usdiff = USEC_PER_SEC;
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001465 } else
1466 usdiff = USEC_PER_SEC; /* disable TSC match window below */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001467
1468 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001469 * Special case: TSC write with a small delta (1 second) of virtual
1470 * cycle time against real time is interpreted as an attempt to
1471 * synchronize the CPU.
1472 *
1473 * For a reliable TSC, we can match TSC offsets, and for an unstable
1474 * TSC, we add elapsed time in this computation. We could let the
1475 * compensation code attempt to catch up if we fall behind, but
1476 * it's better to try to match offsets from the beginning.
1477 */
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001478 if (usdiff < USEC_PER_SEC &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001479 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001480 if (!check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02001481 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001482 pr_debug("kvm: matched tsc offset for %llu\n", data);
1483 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001484 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001485 data += delta;
Haozhong Zhang07c14192015-10-20 15:39:05 +08001486 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001487 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001488 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001489 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001490 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001491 } else {
1492 /*
1493 * We split periods of matched TSC writes into generations.
1494 * For each generation, we track the original measured
1495 * nanosecond time, offset, and write, so if TSCs are in
1496 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08001497 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02001498 *
1499 * These values are tracked in kvm->arch.cur_xxx variables.
1500 */
1501 kvm->arch.cur_tsc_generation++;
1502 kvm->arch.cur_tsc_nsec = ns;
1503 kvm->arch.cur_tsc_write = data;
1504 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001505 matched = false;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001506 pr_debug("kvm: new tsc generation %llu, clock %llu\n",
Zachary Amsdene26101b2012-02-03 15:43:57 -02001507 kvm->arch.cur_tsc_generation, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001508 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02001509
1510 /*
1511 * We also track th most recent recorded KHZ, write and time to
1512 * allow the matching interval to be extended at each write.
1513 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001514 kvm->arch.last_tsc_nsec = ns;
1515 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001516 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001517
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001518 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001519
1520 /* Keep track of which generation this VCPU has synchronized to */
1521 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
1522 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
1523 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
1524
Will Auldba904632012-11-29 12:42:50 -08001525 if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated)
1526 update_ia32_tsc_adjust_msr(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001527 kvm_x86_ops->write_tsc_offset(vcpu, offset);
1528 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001529
1530 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001531 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001532 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001533 } else if (!already_matched) {
1534 kvm->arch.nr_vcpus_matched_tsc++;
1535 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001536
1537 kvm_track_tsc_matching(vcpu);
1538 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001539}
Zachary Amsdene26101b2012-02-03 15:43:57 -02001540
Zachary Amsden99e3e302010-08-19 22:07:17 -10001541EXPORT_SYMBOL_GPL(kvm_write_tsc);
1542
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001543static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
1544 s64 adjustment)
1545{
1546 kvm_x86_ops->adjust_tsc_offset_guest(vcpu, adjustment);
1547}
1548
1549static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
1550{
1551 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
1552 WARN_ON(adjustment < 0);
1553 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
1554 kvm_x86_ops->adjust_tsc_offset_guest(vcpu, adjustment);
1555}
1556
Marcelo Tosattid8281992012-11-27 23:29:01 -02001557#ifdef CONFIG_X86_64
1558
1559static cycle_t read_tsc(void)
1560{
Andy Lutomirski03b97302015-06-25 18:44:08 +02001561 cycle_t ret = (cycle_t)rdtsc_ordered();
1562 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001563
1564 if (likely(ret >= last))
1565 return ret;
1566
1567 /*
1568 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08001569 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02001570 * very likely) and there's a data dependence, so force GCC
1571 * to generate a branch instead. I don't barrier() because
1572 * we don't actually need a barrier, and if this function
1573 * ever gets inlined it will generate worse code.
1574 */
1575 asm volatile ("");
1576 return last;
1577}
1578
1579static inline u64 vgettsc(cycle_t *cycle_now)
1580{
1581 long v;
1582 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1583
1584 *cycle_now = read_tsc();
1585
1586 v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask;
1587 return v * gtod->clock.mult;
1588}
1589
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001590static int do_monotonic_boot(s64 *t, cycle_t *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001591{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001592 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001593 unsigned long seq;
1594 int mode;
1595 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001596
Marcelo Tosattid8281992012-11-27 23:29:01 -02001597 do {
1598 seq = read_seqcount_begin(&gtod->seq);
1599 mode = gtod->clock.vclock_mode;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001600 ns = gtod->nsec_base;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001601 ns += vgettsc(cycle_now);
1602 ns >>= gtod->clock.shift;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001603 ns += gtod->boot_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001604 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001605 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001606
1607 return mode;
1608}
1609
1610/* returns true if host is using tsc clocksource */
1611static bool kvm_get_time_and_clockread(s64 *kernel_ns, cycle_t *cycle_now)
1612{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001613 /* checked again under seqlock below */
1614 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1615 return false;
1616
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001617 return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001618}
1619#endif
1620
1621/*
1622 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001623 * Assuming a stable TSC across physical CPUS, and a stable TSC
1624 * across virtual CPUs, the following condition is possible.
1625 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02001626 * CPUs at the next numbered event.
1627 *
1628 * "timespecX" represents host monotonic time. "tscX" represents
1629 * RDTSC value.
1630 *
1631 * VCPU0 on CPU0 | VCPU1 on CPU1
1632 *
1633 * 1. read timespec0,tsc0
1634 * 2. | timespec1 = timespec0 + N
1635 * | tsc1 = tsc0 + M
1636 * 3. transition to guest | transition to guest
1637 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
1638 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
1639 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
1640 *
1641 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
1642 *
1643 * - ret0 < ret1
1644 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
1645 * ...
1646 * - 0 < N - M => M < N
1647 *
1648 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
1649 * always the case (the difference between two distinct xtime instances
1650 * might be smaller then the difference between corresponding TSC reads,
1651 * when updating guest vcpus pvclock areas).
1652 *
1653 * To avoid that problem, do not allow visibility of distinct
1654 * system_timestamp/tsc_timestamp values simultaneously: use a master
1655 * copy of host monotonic time values. Update that master copy
1656 * in lockstep.
1657 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001658 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02001659 *
1660 */
1661
1662static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
1663{
1664#ifdef CONFIG_X86_64
1665 struct kvm_arch *ka = &kvm->arch;
1666 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001667 bool host_tsc_clocksource, vcpus_matched;
1668
1669 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1670 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02001671
1672 /*
1673 * If the host uses TSC clock, then passthrough TSC as stable
1674 * to the guest.
1675 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001676 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02001677 &ka->master_kernel_ns,
1678 &ka->master_cycle_now);
1679
Marcelo Tosatti16a96022014-05-14 12:43:24 -03001680 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Marcelo Tosatti54750f22015-01-20 15:54:52 -02001681 && !backwards_tsc_observed
1682 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001683
Marcelo Tosattid8281992012-11-27 23:29:01 -02001684 if (ka->use_master_clock)
1685 atomic_set(&kvm_guest_has_master_clock, 1);
1686
1687 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001688 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
1689 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001690#endif
1691}
1692
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01001693void kvm_make_mclock_inprogress_request(struct kvm *kvm)
1694{
1695 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
1696}
1697
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001698static void kvm_gen_update_masterclock(struct kvm *kvm)
1699{
1700#ifdef CONFIG_X86_64
1701 int i;
1702 struct kvm_vcpu *vcpu;
1703 struct kvm_arch *ka = &kvm->arch;
1704
1705 spin_lock(&ka->pvclock_gtod_sync_lock);
1706 kvm_make_mclock_inprogress_request(kvm);
1707 /* no guest entries from this point */
1708 pvclock_update_vm_gtod_copy(kvm);
1709
1710 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001711 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001712
1713 /* guest entries allowed */
1714 kvm_for_each_vcpu(i, vcpu, kvm)
1715 clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests);
1716
1717 spin_unlock(&ka->pvclock_gtod_sync_lock);
1718#endif
1719}
1720
Zachary Amsden34c238a2010-09-18 14:38:14 -10001721static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001722{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001723 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001724 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001725 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02001726 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001727 u64 tsc_timestamp, host_tsc;
Andy Honig0b794592013-02-20 14:48:10 -08001728 struct pvclock_vcpu_time_info guest_hv_clock;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001729 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001730 bool use_master_clock;
1731
1732 kernel_ns = 0;
1733 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001734
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001735 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02001736 * If the host uses TSC clock, then passthrough TSC as stable
1737 * to the guest.
1738 */
1739 spin_lock(&ka->pvclock_gtod_sync_lock);
1740 use_master_clock = ka->use_master_clock;
1741 if (use_master_clock) {
1742 host_tsc = ka->master_cycle_now;
1743 kernel_ns = ka->master_kernel_ns;
1744 }
1745 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001746
1747 /* Keep irq disabled to prevent changes to the clock */
1748 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001749 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
1750 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001751 local_irq_restore(flags);
1752 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
1753 return 1;
1754 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02001755 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02001756 host_tsc = rdtsc();
Marcelo Tosattid8281992012-11-27 23:29:01 -02001757 kernel_ns = get_kernel_ns();
1758 }
1759
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001760 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001761
1762 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001763 * We may have to catch up the TSC to match elapsed wall clock
1764 * time for two reasons, even if kvmclock is used.
1765 * 1) CPU could have been running below the maximum TSC rate
1766 * 2) Broken TSC compensation resets the base at each VCPU
1767 * entry to avoid unknown leaps of TSC even when running
1768 * again on the same CPU. This may cause apparent elapsed
1769 * time to disappear, and the guest to stand still or run
1770 * very slowly.
1771 */
1772 if (vcpu->tsc_catchup) {
1773 u64 tsc = compute_guest_tsc(v, kernel_ns);
1774 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02001775 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001776 tsc_timestamp = tsc;
1777 }
1778 }
1779
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001780 local_irq_restore(flags);
1781
Andy Honig0b794592013-02-20 14:48:10 -08001782 if (!vcpu->pv_time_enabled)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001783 return 0;
1784
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001785 if (kvm_has_tsc_control)
1786 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
1787
1788 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001789 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001790 &vcpu->hv_clock.tsc_shift,
1791 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001792 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001793 }
1794
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001795 /* With all the info we got, fill in the values */
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001796 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001797 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10001798 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001799
Owen Hofmann09a0c3f2014-11-03 16:57:18 -08001800 if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time,
1801 &guest_hv_clock, sizeof(guest_hv_clock))))
1802 return 0;
1803
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001804 /* This VCPU is paused, but it's legal for a guest to read another
1805 * VCPU's kvmclock, so we really have to follow the specification where
1806 * it says that version is odd if data is being modified, and even after
1807 * it is consistent.
1808 *
1809 * Version field updates must be kept separate. This is because
1810 * kvm_write_guest_cached might use a "rep movs" instruction, and
1811 * writes within a string instruction are weakly ordered. So there
1812 * are three writes overall.
1813 *
1814 * As a small optimization, only write the version field in the first
1815 * and third write. The vcpu->pv_time cache is still valid, because the
1816 * version field is the first in the struct.
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001817 */
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001818 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
1819
1820 vcpu->hv_clock.version = guest_hv_clock.version + 1;
1821 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1822 &vcpu->hv_clock,
1823 sizeof(vcpu->hv_clock.version));
1824
1825 smp_wmb();
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001826
1827 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
Andy Honig0b794592013-02-20 14:48:10 -08001828 pvclock_flags = (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001829
1830 if (vcpu->pvclock_set_guest_stopped_request) {
1831 pvclock_flags |= PVCLOCK_GUEST_STOPPED;
1832 vcpu->pvclock_set_guest_stopped_request = false;
1833 }
1834
Marcelo Tosattid8281992012-11-27 23:29:01 -02001835 /* If the host uses TSC clocksource, then it is stable */
1836 if (use_master_clock)
1837 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
1838
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001839 vcpu->hv_clock.flags = pvclock_flags;
1840
David Matlackce1a5e62014-11-05 11:46:42 -08001841 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
1842
Andy Honig0b794592013-02-20 14:48:10 -08001843 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1844 &vcpu->hv_clock,
1845 sizeof(vcpu->hv_clock));
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001846
1847 smp_wmb();
1848
1849 vcpu->hv_clock.version++;
1850 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1851 &vcpu->hv_clock,
1852 sizeof(vcpu->hv_clock.version));
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001853 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001854}
1855
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001856/*
1857 * kvmclock updates which are isolated to a given vcpu, such as
1858 * vcpu->cpu migration, should not allow system_timestamp from
1859 * the rest of the vcpus to remain static. Otherwise ntp frequency
1860 * correction applies to one vcpu's system_timestamp but not
1861 * the others.
1862 *
1863 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01001864 * We need to rate-limit these requests though, as they can
1865 * considerably slow guests that have a large number of vcpus.
1866 * The time for a remote vcpu to update its kvmclock is bound
1867 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001868 */
1869
Andrew Jones7e44e442014-02-28 12:52:54 +01001870#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
1871
1872static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001873{
1874 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01001875 struct delayed_work *dwork = to_delayed_work(work);
1876 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1877 kvmclock_update_work);
1878 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001879 struct kvm_vcpu *vcpu;
1880
1881 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001882 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001883 kvm_vcpu_kick(vcpu);
1884 }
1885}
1886
Andrew Jones7e44e442014-02-28 12:52:54 +01001887static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
1888{
1889 struct kvm *kvm = v->kvm;
1890
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001891 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01001892 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
1893 KVMCLOCK_UPDATE_DELAY);
1894}
1895
Andrew Jones332967a2014-02-28 12:52:55 +01001896#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
1897
1898static void kvmclock_sync_fn(struct work_struct *work)
1899{
1900 struct delayed_work *dwork = to_delayed_work(work);
1901 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1902 kvmclock_sync_work);
1903 struct kvm *kvm = container_of(ka, struct kvm, arch);
1904
Marcelo Tosatti630994b2015-05-12 22:42:04 -03001905 if (!kvmclock_periodic_sync)
1906 return;
1907
Andrew Jones332967a2014-02-28 12:52:55 +01001908 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
1909 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
1910 KVMCLOCK_SYNC_PERIOD);
1911}
1912
Huang Ying890ca9a2009-05-11 16:48:15 +08001913static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1914{
1915 u64 mcg_cap = vcpu->arch.mcg_cap;
1916 unsigned bank_num = mcg_cap & 0xff;
1917
1918 switch (msr) {
1919 case MSR_IA32_MCG_STATUS:
1920 vcpu->arch.mcg_status = data;
1921 break;
1922 case MSR_IA32_MCG_CTL:
1923 if (!(mcg_cap & MCG_CTL_P))
1924 return 1;
1925 if (data != 0 && data != ~(u64)0)
1926 return -1;
1927 vcpu->arch.mcg_ctl = data;
1928 break;
1929 default:
1930 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08001931 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08001932 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01001933 /* only 0 or all 1s can be written to IA32_MCi_CTL
1934 * some Linux kernels though clear bit 10 in bank 4 to
1935 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
1936 * this to avoid an uncatched #GP in the guest
1937 */
Huang Ying890ca9a2009-05-11 16:48:15 +08001938 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01001939 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08001940 return -1;
1941 vcpu->arch.mce_banks[offset] = data;
1942 break;
1943 }
1944 return 1;
1945 }
1946 return 0;
1947}
1948
Ed Swierkffde22a2009-10-15 15:21:43 -07001949static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
1950{
1951 struct kvm *kvm = vcpu->kvm;
1952 int lm = is_long_mode(vcpu);
1953 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
1954 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
1955 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
1956 : kvm->arch.xen_hvm_config.blob_size_32;
1957 u32 page_num = data & ~PAGE_MASK;
1958 u64 page_addr = data & PAGE_MASK;
1959 u8 *page;
1960 int r;
1961
1962 r = -E2BIG;
1963 if (page_num >= blob_size)
1964 goto out;
1965 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001966 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
1967 if (IS_ERR(page)) {
1968 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07001969 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001970 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001971 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07001972 goto out_free;
1973 r = 0;
1974out_free:
1975 kfree(page);
1976out:
1977 return r;
1978}
1979
Gleb Natapov344d9582010-10-14 11:22:50 +02001980static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
1981{
1982 gpa_t gpa = data & ~0x3f;
1983
Guo Chao4a969982012-06-28 15:17:27 +08001984 /* Bits 2:5 are reserved, Should be zero */
Gleb Natapov6adba522010-10-14 11:22:55 +02001985 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02001986 return 1;
1987
1988 vcpu->arch.apf.msr_val = data;
1989
1990 if (!(data & KVM_ASYNC_PF_ENABLED)) {
1991 kvm_clear_async_pf_completion_queue(vcpu);
1992 kvm_async_pf_hash_reset(vcpu);
1993 return 0;
1994 }
1995
Andrew Honig8f964522013-03-29 09:35:21 -07001996 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
1997 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02001998 return 1;
1999
Gleb Natapov6adba522010-10-14 11:22:55 +02002000 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02002001 kvm_async_pf_wakeup_all(vcpu);
2002 return 0;
2003}
2004
Glauber Costa12f9a482011-02-01 14:16:40 -05002005static void kvmclock_reset(struct kvm_vcpu *vcpu)
2006{
Andy Honig0b794592013-02-20 14:48:10 -08002007 vcpu->arch.pv_time_enabled = false;
Glauber Costa12f9a482011-02-01 14:16:40 -05002008}
2009
Glauber Costac9aaa892011-07-11 15:28:14 -04002010static void record_steal_time(struct kvm_vcpu *vcpu)
2011{
2012 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2013 return;
2014
2015 if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2016 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
2017 return;
2018
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002019 if (vcpu->arch.st.steal.version & 1)
2020 vcpu->arch.st.steal.version += 1; /* first time write, random junk */
2021
2022 vcpu->arch.st.steal.version += 1;
2023
2024 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2025 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2026
2027 smp_wmb();
2028
Liang Chenc54cdf12016-03-16 19:33:16 +08002029 vcpu->arch.st.steal.steal += current->sched_info.run_delay -
2030 vcpu->arch.st.last_steal;
2031 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002032
2033 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2034 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2035
2036 smp_wmb();
2037
2038 vcpu->arch.st.steal.version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04002039
2040 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2041 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2042}
2043
Will Auld8fe8ab42012-11-29 12:42:12 -08002044int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002045{
Gleb Natapov57537852012-01-15 14:17:22 +02002046 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002047 u32 msr = msr_info->index;
2048 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002049
Carsten Otte15c4a642007-10-30 18:44:17 +01002050 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002051 case MSR_AMD64_NB_CFG:
2052 case MSR_IA32_UCODE_REV:
2053 case MSR_IA32_UCODE_WRITE:
2054 case MSR_VM_HSAVE_PA:
2055 case MSR_AMD64_PATCH_LOADER:
2056 case MSR_AMD64_BU_CFG2:
2057 break;
2058
Carsten Otte15c4a642007-10-30 18:44:17 +01002059 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02002060 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002061 case MSR_K7_HWCR:
2062 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002063 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002064 data &= ~(u64)0x8; /* ignore TLB cache disable */
Matthias Lange22d48b2d2014-06-26 13:50:15 +02002065 data &= ~(u64)0x40000; /* ignore Mc status write enable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02002066 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002067 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2068 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002069 return 1;
2070 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002071 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002072 case MSR_FAM10H_MMIO_CONF_BASE:
2073 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002074 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2075 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002076 return 1;
2077 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002078 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002079 case MSR_IA32_DEBUGCTLMSR:
2080 if (!data) {
2081 /* We support the non-activated case already */
2082 break;
2083 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2084 /* Values other than LBR and BTF are vendor-specific,
2085 thus reserved and should throw a #GP */
2086 return 1;
2087 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002088 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2089 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002090 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002091 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002092 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002093 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002094 return kvm_set_apic_base(vcpu, msr_info);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002095 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2096 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002097 case MSR_IA32_TSCDEADLINE:
2098 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2099 break;
Will Auldba904632012-11-29 12:42:50 -08002100 case MSR_IA32_TSC_ADJUST:
2101 if (guest_cpuid_has_tsc_adjust(vcpu)) {
2102 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002103 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08002104 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08002105 }
2106 vcpu->arch.ia32_tsc_adjust_msr = data;
2107 }
2108 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002109 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002110 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01002111 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002112 case MSR_IA32_SMBASE:
2113 if (!msr_info->host_initiated)
2114 return 1;
2115 vcpu->arch.smbase = data;
2116 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002117 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002118 case MSR_KVM_WALL_CLOCK:
2119 vcpu->kvm->arch.wall_clock = data;
2120 kvm_write_wall_clock(vcpu->kvm, data);
2121 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002122 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002123 case MSR_KVM_SYSTEM_TIME: {
Andy Honig0b794592013-02-20 14:48:10 -08002124 u64 gpa_offset;
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002125 struct kvm_arch *ka = &vcpu->kvm->arch;
2126
Glauber Costa12f9a482011-02-01 14:16:40 -05002127 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002128
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002129 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2130 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2131
2132 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
2133 set_bit(KVM_REQ_MASTERCLOCK_UPDATE,
2134 &vcpu->requests);
2135
2136 ka->boot_vcpu_runs_old_kvmclock = tmp;
2137 }
2138
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002139 vcpu->arch.time = data;
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002140 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002141
2142 /* we verify if the enable bit is set... */
2143 if (!(data & 1))
2144 break;
2145
Andy Honig0b794592013-02-20 14:48:10 -08002146 gpa_offset = data & ~(PAGE_MASK | 1);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002147
Andy Honig0b794592013-02-20 14:48:10 -08002148 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andrew Honig8f964522013-03-29 09:35:21 -07002149 &vcpu->arch.pv_time, data & ~1ULL,
2150 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002151 vcpu->arch.pv_time_enabled = false;
2152 else
2153 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002154
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002155 break;
2156 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002157 case MSR_KVM_ASYNC_PF_EN:
2158 if (kvm_pv_enable_async_pf(vcpu, data))
2159 return 1;
2160 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002161 case MSR_KVM_STEAL_TIME:
2162
2163 if (unlikely(!sched_info_on()))
2164 return 1;
2165
2166 if (data & KVM_STEAL_RESERVED_MASK)
2167 return 1;
2168
2169 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.st.stime,
Andrew Honig8f964522013-03-29 09:35:21 -07002170 data & KVM_STEAL_VALID_BITS,
2171 sizeof(struct kvm_steal_time)))
Glauber Costac9aaa892011-07-11 15:28:14 -04002172 return 1;
2173
2174 vcpu->arch.st.msr_val = data;
2175
2176 if (!(data & KVM_MSR_ENABLED))
2177 break;
2178
Glauber Costac9aaa892011-07-11 15:28:14 -04002179 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2180
2181 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002182 case MSR_KVM_PV_EOI_EN:
2183 if (kvm_lapic_enable_pv_eoi(vcpu, data))
2184 return 1;
2185 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002186
Huang Ying890ca9a2009-05-11 16:48:15 +08002187 case MSR_IA32_MCG_CTL:
2188 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002189 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Huang Ying890ca9a2009-05-11 16:48:15 +08002190 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002191
Wei Huang6912ac32015-06-12 01:34:56 -04002192 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2193 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2194 pr = true; /* fall through */
2195 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2196 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002197 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002198 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002199
2200 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002201 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2202 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002203 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002204 case MSR_K7_CLK_CTL:
2205 /*
2206 * Ignore all writes to this no longer documented MSR.
2207 * Writes are only relevant for old K7 processors,
2208 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002209 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002210 * affected processor models on the command line, hence
2211 * the need to ignore the workaround.
2212 */
2213 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002214 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002215 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2216 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002217 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002218 return kvm_hv_set_msr_common(vcpu, msr, data,
2219 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05002220 case MSR_IA32_BBL_CR_CTL3:
2221 /* Drop writes to this legacy MSR -- see rdmsr
2222 * counterpart for further detail.
2223 */
Christoffer Dalla737f252012-06-03 21:17:48 +03002224 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002225 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002226 case MSR_AMD64_OSVW_ID_LENGTH:
2227 if (!guest_cpuid_has_osvw(vcpu))
2228 return 1;
2229 vcpu->arch.osvw.length = data;
2230 break;
2231 case MSR_AMD64_OSVW_STATUS:
2232 if (!guest_cpuid_has_osvw(vcpu))
2233 return 1;
2234 vcpu->arch.osvw.status = data;
2235 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002236 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07002237 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
2238 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02002239 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002240 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02002241 if (!ignore_msrs) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002242 vcpu_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n",
2243 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002244 return 1;
2245 } else {
Christoffer Dalla737f252012-06-03 21:17:48 +03002246 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n",
2247 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002248 break;
2249 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002250 }
2251 return 0;
2252}
2253EXPORT_SYMBOL_GPL(kvm_set_msr_common);
2254
2255
2256/*
2257 * Reads an msr value (of 'msr_index') into 'pdata'.
2258 * Returns 0 on success, non-0 otherwise.
2259 * Assumes vcpu_load() was already called.
2260 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002261int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01002262{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002263 return kvm_x86_ops->get_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002264}
Wincy Vanff651cb2014-12-11 08:52:58 +03002265EXPORT_SYMBOL_GPL(kvm_get_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002266
Huang Ying890ca9a2009-05-11 16:48:15 +08002267static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2268{
2269 u64 data;
2270 u64 mcg_cap = vcpu->arch.mcg_cap;
2271 unsigned bank_num = mcg_cap & 0xff;
2272
2273 switch (msr) {
2274 case MSR_IA32_P5_MC_ADDR:
2275 case MSR_IA32_P5_MC_TYPE:
2276 data = 0;
2277 break;
2278 case MSR_IA32_MCG_CAP:
2279 data = vcpu->arch.mcg_cap;
2280 break;
2281 case MSR_IA32_MCG_CTL:
2282 if (!(mcg_cap & MCG_CTL_P))
2283 return 1;
2284 data = vcpu->arch.mcg_ctl;
2285 break;
2286 case MSR_IA32_MCG_STATUS:
2287 data = vcpu->arch.mcg_status;
2288 break;
2289 default:
2290 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002291 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002292 u32 offset = msr - MSR_IA32_MC0_CTL;
2293 data = vcpu->arch.mce_banks[offset];
2294 break;
2295 }
2296 return 1;
2297 }
2298 *pdata = data;
2299 return 0;
2300}
2301
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002302int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002303{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002304 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01002305 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01002306 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002307 case MSR_IA32_DEBUGCTLMSR:
2308 case MSR_IA32_LASTBRANCHFROMIP:
2309 case MSR_IA32_LASTBRANCHTOIP:
2310 case MSR_IA32_LASTINTFROMIP:
2311 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302312 case MSR_K8_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02002313 case MSR_K8_TSEG_ADDR:
2314 case MSR_K8_TSEG_MASK:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302315 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02002316 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02002317 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02002318 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002319 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002320 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03002321 case MSR_IA32_PERF_CTL:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002322 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01002323 break;
Wei Huang6912ac32015-06-12 01:34:56 -04002324 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2325 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2326 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2327 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002328 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002329 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
2330 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02002331 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002332 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002333 msr_info->data = 0x100000000ULL;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002334 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002335 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03002336 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002337 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002338 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002339 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01002340 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02002341 /*
2342 * MSR_EBC_FREQUENCY_ID
2343 * Conservative value valid for even the basic CPU models.
2344 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
2345 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
2346 * and 266MHz for model 3, or 4. Set Core Clock
2347 * Frequency to System Bus Frequency Ratio to 1 (bits
2348 * 31:24) even though these are only valid for CPU
2349 * models > 2, however guests may end up dividing or
2350 * multiplying by zero otherwise.
2351 */
2352 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002353 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02002354 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002355 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002356 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01002357 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002358 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002359 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002360 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002361 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002362 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002363 break;
Will Auldba904632012-11-29 12:42:50 -08002364 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002365 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08002366 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002367 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002368 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01002369 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002370 case MSR_IA32_SMBASE:
2371 if (!msr_info->host_initiated)
2372 return 1;
2373 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01002374 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002375 case MSR_IA32_PERF_STATUS:
2376 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002377 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002378 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08002379 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01002380 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002381 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002382 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01002383 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002384 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002385 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002386 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002387 break;
2388 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002389 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002390 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002391 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02002392 case MSR_KVM_ASYNC_PF_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002393 msr_info->data = vcpu->arch.apf.msr_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02002394 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002395 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002396 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04002397 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002398 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002399 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002400 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002401 case MSR_IA32_P5_MC_ADDR:
2402 case MSR_IA32_P5_MC_TYPE:
2403 case MSR_IA32_MCG_CAP:
2404 case MSR_IA32_MCG_CTL:
2405 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002406 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002407 return get_msr_mce(vcpu, msr_info->index, &msr_info->data);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002408 case MSR_K7_CLK_CTL:
2409 /*
2410 * Provide expected ramp-up count for K7. All other
2411 * are set to zero, indicating minimum divisors for
2412 * every field.
2413 *
2414 * This prevents guest kernels on AMD host with CPU
2415 * type 6, model 8 and higher from exploding due to
2416 * the rdmsr failing.
2417 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002418 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002419 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002420 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002421 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2422 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002423 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine83d5882015-07-03 15:01:34 +03002424 return kvm_hv_get_msr_common(vcpu,
2425 msr_info->index, &msr_info->data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002426 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002427 case MSR_IA32_BBL_CR_CTL3:
2428 /* This legacy MSR exists but isn't fully documented in current
2429 * silicon. It is however accessed by winxp in very narrow
2430 * scenarios where it sets bit #19, itself documented as
2431 * a "reserved" bit. Best effort attempt to source coherent
2432 * read data here should the balance of the register be
2433 * interpreted by the guest:
2434 *
2435 * L2 cache control register 3: 64GB range, 256KB size,
2436 * enabled, latency 0x1, configured
2437 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002438 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05002439 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002440 case MSR_AMD64_OSVW_ID_LENGTH:
2441 if (!guest_cpuid_has_osvw(vcpu))
2442 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002443 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002444 break;
2445 case MSR_AMD64_OSVW_STATUS:
2446 if (!guest_cpuid_has_osvw(vcpu))
2447 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002448 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002449 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002450 default:
Wei Huangc6702c92015-06-19 13:44:45 +02002451 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002452 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002453 if (!ignore_msrs) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002454 vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr_info->index);
Andre Przywaraed85c062009-06-25 12:36:49 +02002455 return 1;
2456 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002457 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index);
2458 msr_info->data = 0;
Andre Przywaraed85c062009-06-25 12:36:49 +02002459 }
2460 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002461 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002462 return 0;
2463}
2464EXPORT_SYMBOL_GPL(kvm_get_msr_common);
2465
Carsten Otte313a3dc2007-10-11 19:16:52 +02002466/*
2467 * Read or write a bunch of msrs. All parameters are kernel addresses.
2468 *
2469 * @return number of msrs set successfully.
2470 */
2471static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2472 struct kvm_msr_entry *entries,
2473 int (*do_msr)(struct kvm_vcpu *vcpu,
2474 unsigned index, u64 *data))
2475{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002476 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002477
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002478 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002479 for (i = 0; i < msrs->nmsrs; ++i)
2480 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2481 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002482 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002483
Carsten Otte313a3dc2007-10-11 19:16:52 +02002484 return i;
2485}
2486
2487/*
2488 * Read or write a bunch of msrs. Parameters are user addresses.
2489 *
2490 * @return number of msrs set successfully.
2491 */
2492static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2493 int (*do_msr)(struct kvm_vcpu *vcpu,
2494 unsigned index, u64 *data),
2495 int writeback)
2496{
2497 struct kvm_msrs msrs;
2498 struct kvm_msr_entry *entries;
2499 int r, n;
2500 unsigned size;
2501
2502 r = -EFAULT;
2503 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2504 goto out;
2505
2506 r = -E2BIG;
2507 if (msrs.nmsrs >= MAX_IO_MSRS)
2508 goto out;
2509
Carsten Otte313a3dc2007-10-11 19:16:52 +02002510 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002511 entries = memdup_user(user_msrs->entries, size);
2512 if (IS_ERR(entries)) {
2513 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002514 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002515 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02002516
2517 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2518 if (r < 0)
2519 goto out_free;
2520
2521 r = -EFAULT;
2522 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2523 goto out_free;
2524
2525 r = n;
2526
2527out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002528 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002529out:
2530 return r;
2531}
2532
Alexander Graf784aa3d2014-07-14 18:27:35 +02002533int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002534{
2535 int r;
2536
2537 switch (ext) {
2538 case KVM_CAP_IRQCHIP:
2539 case KVM_CAP_HLT:
2540 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002541 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002542 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002543 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002544 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002545 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002546 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002547 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002548 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002549 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002550 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002551 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002552 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03002553 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002554 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002555 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002556 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002557 case KVM_CAP_XEN_HVM:
Glauber Costaafbcf7a2009-10-16 15:28:36 -04002558 case KVM_CAP_ADJUST_CLOCK:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002559 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002560 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002561 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002562 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002563 case KVM_CAP_HYPERV_SYNIC:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002564 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002565 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002566 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002567 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002568 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002569 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002570 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002571 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01002572 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05002573 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01002574 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03002575 case KVM_CAP_ENABLE_CAP_VM:
2576 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02002577 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07002578 case KVM_CAP_SPLIT_IRQCHIP:
Alex Williamson2a5bab12013-04-16 13:49:18 -06002579#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
2580 case KVM_CAP_ASSIGN_DEV_IRQ:
2581 case KVM_CAP_PCI_2_3:
2582#endif
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002583 r = 1;
2584 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02002585 case KVM_CAP_X86_SMM:
2586 /* SMBASE is usually relocated above 1M on modern chipsets,
2587 * and SMM handlers might indeed rely on 4G segment limits,
2588 * so do not report SMM to be available if real mode is
2589 * emulated via vm86 mode. Still, do not go to great lengths
2590 * to avoid userspace's usage of the feature, because it is a
2591 * fringe case that is not enabled except via specific settings
2592 * of the module parameters.
2593 */
2594 r = kvm_x86_ops->cpu_has_high_real_mode_segbase();
2595 break;
Laurent Vivier542472b2008-05-30 16:05:55 +02002596 case KVM_CAP_COALESCED_MMIO:
2597 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
2598 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002599 case KVM_CAP_VAPIC:
2600 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2601 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002602 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002603 r = KVM_SOFT_MAX_VCPUS;
2604 break;
2605 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002606 r = KVM_MAX_VCPUS;
2607 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002608 case KVM_CAP_NR_MEMSLOTS:
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07002609 r = KVM_USER_MEM_SLOTS;
Avi Kivitya988b912008-02-20 11:59:20 +02002610 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002611 case KVM_CAP_PV_MMU: /* obsolete */
2612 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002613 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002614#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002615 case KVM_CAP_IOMMU:
Joerg Roedela1b60c12011-09-06 18:46:34 +02002616 r = iommu_present(&pci_bus_type);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002617 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002618#endif
Huang Ying890ca9a2009-05-11 16:48:15 +08002619 case KVM_CAP_MCE:
2620 r = KVM_MAX_MCE_BANKS;
2621 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002622 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02002623 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002624 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002625 case KVM_CAP_TSC_CONTROL:
2626 r = kvm_has_tsc_control;
2627 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002628 default:
2629 r = 0;
2630 break;
2631 }
2632 return r;
2633
2634}
2635
Carsten Otte043405e2007-10-10 17:16:19 +02002636long kvm_arch_dev_ioctl(struct file *filp,
2637 unsigned int ioctl, unsigned long arg)
2638{
2639 void __user *argp = (void __user *)arg;
2640 long r;
2641
2642 switch (ioctl) {
2643 case KVM_GET_MSR_INDEX_LIST: {
2644 struct kvm_msr_list __user *user_msr_list = argp;
2645 struct kvm_msr_list msr_list;
2646 unsigned n;
2647
2648 r = -EFAULT;
2649 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2650 goto out;
2651 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002652 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Carsten Otte043405e2007-10-10 17:16:19 +02002653 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2654 goto out;
2655 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002656 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002657 goto out;
2658 r = -EFAULT;
2659 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2660 num_msrs_to_save * sizeof(u32)))
2661 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002662 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002663 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002664 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02002665 goto out;
2666 r = 0;
2667 break;
2668 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002669 case KVM_GET_SUPPORTED_CPUID:
2670 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02002671 struct kvm_cpuid2 __user *cpuid_arg = argp;
2672 struct kvm_cpuid2 cpuid;
2673
2674 r = -EFAULT;
2675 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2676 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002677
2678 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
2679 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02002680 if (r)
2681 goto out;
2682
2683 r = -EFAULT;
2684 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2685 goto out;
2686 r = 0;
2687 break;
2688 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002689 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
Huang Ying890ca9a2009-05-11 16:48:15 +08002690 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002691 if (copy_to_user(argp, &kvm_mce_cap_supported,
2692 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08002693 goto out;
2694 r = 0;
2695 break;
2696 }
Carsten Otte043405e2007-10-10 17:16:19 +02002697 default:
2698 r = -EINVAL;
2699 }
2700out:
2701 return r;
2702}
2703
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002704static void wbinvd_ipi(void *garbage)
2705{
2706 wbinvd();
2707}
2708
2709static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2710{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06002711 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002712}
2713
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002714static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2715{
2716 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
2717}
2718
Carsten Otte313a3dc2007-10-11 19:16:52 +02002719void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2720{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002721 /* Address WBINVD may be executed by guest */
2722 if (need_emulate_wbinvd(vcpu)) {
2723 if (kvm_x86_ops->has_wbinvd_exit())
2724 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2725 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2726 smp_call_function_single(vcpu->cpu,
2727 wbinvd_ipi, NULL, 1);
2728 }
2729
Carsten Otte313a3dc2007-10-11 19:16:52 +02002730 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002731
2732 /* Apply any externally detected TSC adjustments (due to suspend) */
2733 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
2734 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
2735 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002736 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002737 }
2738
Zachary Amsden48434c202010-08-19 22:07:24 -10002739 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002740 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002741 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10002742 if (tsc_delta < 0)
2743 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07002744
2745 if (kvm_lapic_hv_timer_in_use(vcpu) &&
2746 kvm_x86_ops->set_hv_timer(vcpu,
2747 kvm_get_lapic_tscdeadline_msr(vcpu)))
2748 kvm_lapic_switch_to_sw_timer(vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002749 if (check_tsc_unstable()) {
Haozhong Zhang07c14192015-10-20 15:39:05 +08002750 u64 offset = kvm_compute_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002751 vcpu->arch.last_guest_tsc);
2752 kvm_x86_ops->write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002753 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002754 }
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02002755 /*
2756 * On a host with synchronized TSC, there is no need to update
2757 * kvmclock on vcpu->cpu migration
2758 */
2759 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002760 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002761 if (vcpu->cpu != cpu)
2762 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002763 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002764 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002765
Glauber Costac9aaa892011-07-11 15:28:14 -04002766 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002767}
2768
2769void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2770{
Avi Kivity02daab22009-12-30 12:40:26 +02002771 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002772 kvm_put_guest_fpu(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002773 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02002774}
2775
Carsten Otte313a3dc2007-10-11 19:16:52 +02002776static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2777 struct kvm_lapic_state *s)
2778{
Andrey Smetanind62caab2015-11-10 15:36:33 +03002779 if (vcpu->arch.apicv_active)
2780 kvm_x86_ops->sync_pir_to_irr(vcpu);
2781
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002782 memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002783
2784 return 0;
2785}
2786
2787static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2788 struct kvm_lapic_state *s)
2789{
Gleb Natapov64eb0622012-08-08 15:24:36 +03002790 kvm_apic_post_state_restore(vcpu, s);
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002791 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002792
2793 return 0;
2794}
2795
Matt Gingell127a4572015-11-17 17:32:05 +01002796static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
2797{
2798 return (!lapic_in_kernel(vcpu) ||
2799 kvm_apic_accept_pic_intr(vcpu));
2800}
2801
Matt Gingell782d4222015-11-16 15:26:00 -08002802/*
2803 * if userspace requested an interrupt window, check that the
2804 * interrupt window is open.
2805 *
2806 * No need to exit to userspace if we already have an interrupt queued.
2807 */
2808static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
2809{
2810 return kvm_arch_interrupt_allowed(vcpu) &&
2811 !kvm_cpu_has_interrupt(vcpu) &&
2812 !kvm_event_needs_reinjection(vcpu) &&
2813 kvm_cpu_accept_dm_intr(vcpu);
2814}
2815
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002816static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2817 struct kvm_interrupt *irq)
2818{
Chen Gang02cdb502013-02-27 11:33:25 +08002819 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002820 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002821
2822 if (!irqchip_in_kernel(vcpu->kvm)) {
2823 kvm_queue_interrupt(vcpu, irq->irq, false);
2824 kvm_make_request(KVM_REQ_EVENT, vcpu);
2825 return 0;
2826 }
2827
2828 /*
2829 * With in-kernel LAPIC, we only use this to inject EXTINT, so
2830 * fail for in-kernel 8259.
2831 */
2832 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002833 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002834
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002835 if (vcpu->arch.pending_external_vector != -1)
2836 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002837
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002838 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08002839 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002840 return 0;
2841}
2842
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002843static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2844{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002845 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002846
2847 return 0;
2848}
2849
Paolo Bonzinif0778252015-04-01 15:06:40 +02002850static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
2851{
Paolo Bonzini64d60672015-05-07 11:36:11 +02002852 kvm_make_request(KVM_REQ_SMI, vcpu);
2853
Paolo Bonzinif0778252015-04-01 15:06:40 +02002854 return 0;
2855}
2856
Avi Kivityb209749f2007-10-22 16:50:39 +02002857static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2858 struct kvm_tpr_access_ctl *tac)
2859{
2860 if (tac->flags)
2861 return -EINVAL;
2862 vcpu->arch.tpr_access_reporting = !!tac->enabled;
2863 return 0;
2864}
2865
Huang Ying890ca9a2009-05-11 16:48:15 +08002866static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
2867 u64 mcg_cap)
2868{
2869 int r;
2870 unsigned bank_num = mcg_cap & 0xff, bank;
2871
2872 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02002873 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08002874 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002875 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08002876 goto out;
2877 r = 0;
2878 vcpu->arch.mcg_cap = mcg_cap;
2879 /* Init IA32_MCG_CTL to all 1s */
2880 if (mcg_cap & MCG_CTL_P)
2881 vcpu->arch.mcg_ctl = ~(u64)0;
2882 /* Init IA32_MCi_CTL to all 1s */
2883 for (bank = 0; bank < bank_num; bank++)
2884 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002885
2886 if (kvm_x86_ops->setup_mce)
2887 kvm_x86_ops->setup_mce(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002888out:
2889 return r;
2890}
2891
2892static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
2893 struct kvm_x86_mce *mce)
2894{
2895 u64 mcg_cap = vcpu->arch.mcg_cap;
2896 unsigned bank_num = mcg_cap & 0xff;
2897 u64 *banks = vcpu->arch.mce_banks;
2898
2899 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
2900 return -EINVAL;
2901 /*
2902 * if IA32_MCG_CTL is not all 1s, the uncorrected error
2903 * reporting is disabled
2904 */
2905 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
2906 vcpu->arch.mcg_ctl != ~(u64)0)
2907 return 0;
2908 banks += 4 * mce->bank;
2909 /*
2910 * if IA32_MCi_CTL is not all 1s, the uncorrected error
2911 * reporting is disabled for the bank
2912 */
2913 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
2914 return 0;
2915 if (mce->status & MCI_STATUS_UC) {
2916 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02002917 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03002918 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002919 return 0;
2920 }
2921 if (banks[1] & MCI_STATUS_VAL)
2922 mce->status |= MCI_STATUS_OVER;
2923 banks[2] = mce->addr;
2924 banks[3] = mce->misc;
2925 vcpu->arch.mcg_status = mce->mcg_status;
2926 banks[1] = mce->status;
2927 kvm_queue_exception(vcpu, MC_VECTOR);
2928 } else if (!(banks[1] & MCI_STATUS_VAL)
2929 || !(banks[1] & MCI_STATUS_UC)) {
2930 if (banks[1] & MCI_STATUS_VAL)
2931 mce->status |= MCI_STATUS_OVER;
2932 banks[2] = mce->addr;
2933 banks[3] = mce->misc;
2934 banks[1] = mce->status;
2935 } else
2936 banks[1] |= MCI_STATUS_OVER;
2937 return 0;
2938}
2939
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002940static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
2941 struct kvm_vcpu_events *events)
2942{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002943 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01002944 events->exception.injected =
2945 vcpu->arch.exception.pending &&
2946 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002947 events->exception.nr = vcpu->arch.exception.nr;
2948 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002949 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002950 events->exception.error_code = vcpu->arch.exception.error_code;
2951
Jan Kiszka03b82a32010-02-15 10:45:41 +01002952 events->interrupt.injected =
2953 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002954 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01002955 events->interrupt.soft = 0;
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002956 events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002957
2958 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002959 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002960 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002961 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002962
Jan Kiszka66450a22013-03-13 12:42:34 +01002963 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002964
Paolo Bonzinif0778252015-04-01 15:06:40 +02002965 events->smi.smm = is_smm(vcpu);
2966 events->smi.pending = vcpu->arch.smi_pending;
2967 events->smi.smm_inside_nmi =
2968 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
2969 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
2970
Jan Kiszkadab4b912009-12-06 18:24:15 +01002971 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02002972 | KVM_VCPUEVENT_VALID_SHADOW
2973 | KVM_VCPUEVENT_VALID_SMM);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002974 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002975}
2976
2977static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
2978 struct kvm_vcpu_events *events)
2979{
Jan Kiszkadab4b912009-12-06 18:24:15 +01002980 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01002981 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02002982 | KVM_VCPUEVENT_VALID_SHADOW
2983 | KVM_VCPUEVENT_VALID_SMM))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002984 return -EINVAL;
2985
Paolo Bonzini78e546c2016-06-01 14:09:20 +02002986 if (events->exception.injected &&
2987 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
2988 return -EINVAL;
2989
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002990 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002991 vcpu->arch.exception.pending = events->exception.injected;
2992 vcpu->arch.exception.nr = events->exception.nr;
2993 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
2994 vcpu->arch.exception.error_code = events->exception.error_code;
2995
2996 vcpu->arch.interrupt.pending = events->interrupt.injected;
2997 vcpu->arch.interrupt.nr = events->interrupt.nr;
2998 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01002999 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
3000 kvm_x86_ops->set_interrupt_shadow(vcpu,
3001 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003002
3003 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01003004 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
3005 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003006 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
3007
Jan Kiszka66450a22013-03-13 12:42:34 +01003008 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003009 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01003010 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003011
Paolo Bonzinif0778252015-04-01 15:06:40 +02003012 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
3013 if (events->smi.smm)
3014 vcpu->arch.hflags |= HF_SMM_MASK;
3015 else
3016 vcpu->arch.hflags &= ~HF_SMM_MASK;
3017 vcpu->arch.smi_pending = events->smi.pending;
3018 if (events->smi.smm_inside_nmi)
3019 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
3020 else
3021 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003022 if (lapic_in_kernel(vcpu)) {
Paolo Bonzinif0778252015-04-01 15:06:40 +02003023 if (events->smi.latched_init)
3024 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3025 else
3026 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3027 }
3028 }
3029
Avi Kivity3842d132010-07-27 12:30:24 +03003030 kvm_make_request(KVM_REQ_EVENT, vcpu);
3031
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003032 return 0;
3033}
3034
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003035static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
3036 struct kvm_debugregs *dbgregs)
3037{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003038 unsigned long val;
3039
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003040 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003041 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003042 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003043 dbgregs->dr7 = vcpu->arch.dr7;
3044 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003045 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003046}
3047
3048static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
3049 struct kvm_debugregs *dbgregs)
3050{
3051 if (dbgregs->flags)
3052 return -EINVAL;
3053
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02003054 if (dbgregs->dr6 & ~0xffffffffull)
3055 return -EINVAL;
3056 if (dbgregs->dr7 & ~0xffffffffull)
3057 return -EINVAL;
3058
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003059 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03003060 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003061 vcpu->arch.dr6 = dbgregs->dr6;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003062 kvm_update_dr6(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003063 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01003064 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003065
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003066 return 0;
3067}
3068
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003069#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
3070
3071static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
3072{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003073 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02003074 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003075 u64 valid;
3076
3077 /*
3078 * Copy legacy XSAVE area, to avoid complications with CPUID
3079 * leaves 0 and 1 in the loop below.
3080 */
3081 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
3082
3083 /* Set XSTATE_BV */
3084 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
3085
3086 /*
3087 * Copy each region from the possibly compacted offset to the
3088 * non-compacted offset.
3089 */
Dave Hansend91cab72015-09-02 16:31:26 -07003090 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003091 while (valid) {
3092 u64 feature = valid & -valid;
3093 int index = fls64(feature) - 1;
3094 void *src = get_xsave_addr(xsave, feature);
3095
3096 if (src) {
3097 u32 size, offset, ecx, edx;
3098 cpuid_count(XSTATE_CPUID, index,
3099 &size, &offset, &ecx, &edx);
3100 memcpy(dest + offset, src, size);
3101 }
3102
3103 valid -= feature;
3104 }
3105}
3106
3107static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
3108{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003109 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003110 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
3111 u64 valid;
3112
3113 /*
3114 * Copy legacy XSAVE area, to avoid complications with CPUID
3115 * leaves 0 and 1 in the loop below.
3116 */
3117 memcpy(xsave, src, XSAVE_HDR_OFFSET);
3118
3119 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02003120 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02003121 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02003122 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003123
3124 /*
3125 * Copy each region from the non-compacted offset to the
3126 * possibly compacted offset.
3127 */
Dave Hansend91cab72015-09-02 16:31:26 -07003128 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003129 while (valid) {
3130 u64 feature = valid & -valid;
3131 int index = fls64(feature) - 1;
3132 void *dest = get_xsave_addr(xsave, feature);
3133
3134 if (dest) {
3135 u32 size, offset, ecx, edx;
3136 cpuid_count(XSTATE_CPUID, index,
3137 &size, &offset, &ecx, &edx);
3138 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08003139 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003140
3141 valid -= feature;
3142 }
3143}
3144
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003145static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
3146 struct kvm_xsave *guest_xsave)
3147{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003148 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003149 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
3150 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003151 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003152 memcpy(guest_xsave->region,
Ingo Molnar7366ed72015-04-27 04:19:39 +02003153 &vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003154 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003155 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07003156 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003157 }
3158}
3159
3160static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
3161 struct kvm_xsave *guest_xsave)
3162{
3163 u64 xstate_bv =
3164 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
3165
Borislav Petkovd366bf72016-04-04 22:25:02 +02003166 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003167 /*
3168 * Here we allow setting states that are not present in
3169 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
3170 * with old userspace.
3171 */
Paolo Bonzini4ff41732014-02-24 12:15:16 +01003172 if (xstate_bv & ~kvm_supported_xcr0())
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003173 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003174 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003175 } else {
Dave Hansend91cab72015-09-02 16:31:26 -07003176 if (xstate_bv & ~XFEATURE_MASK_FPSSE)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003177 return -EINVAL;
Ingo Molnar7366ed72015-04-27 04:19:39 +02003178 memcpy(&vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003179 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003180 }
3181 return 0;
3182}
3183
3184static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
3185 struct kvm_xcrs *guest_xcrs)
3186{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003187 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003188 guest_xcrs->nr_xcrs = 0;
3189 return;
3190 }
3191
3192 guest_xcrs->nr_xcrs = 1;
3193 guest_xcrs->flags = 0;
3194 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
3195 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
3196}
3197
3198static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
3199 struct kvm_xcrs *guest_xcrs)
3200{
3201 int i, r = 0;
3202
Borislav Petkovd366bf72016-04-04 22:25:02 +02003203 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003204 return -EINVAL;
3205
3206 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
3207 return -EINVAL;
3208
3209 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
3210 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003211 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003212 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003213 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003214 break;
3215 }
3216 if (r)
3217 r = -EINVAL;
3218 return r;
3219}
3220
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003221/*
3222 * kvm_set_guest_paused() indicates to the guest kernel that it has been
3223 * stopped by the hypervisor. This function will be called from the host only.
3224 * EINVAL is returned when the host attempts to set the flag for a guest that
3225 * does not support pv clocks.
3226 */
3227static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
3228{
Andy Honig0b794592013-02-20 14:48:10 -08003229 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003230 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003231 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003232 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
3233 return 0;
3234}
3235
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003236static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
3237 struct kvm_enable_cap *cap)
3238{
3239 if (cap->flags)
3240 return -EINVAL;
3241
3242 switch (cap->cap) {
3243 case KVM_CAP_HYPERV_SYNIC:
3244 return kvm_hv_activate_synic(vcpu);
3245 default:
3246 return -EINVAL;
3247 }
3248}
3249
Carsten Otte313a3dc2007-10-11 19:16:52 +02003250long kvm_arch_vcpu_ioctl(struct file *filp,
3251 unsigned int ioctl, unsigned long arg)
3252{
3253 struct kvm_vcpu *vcpu = filp->private_data;
3254 void __user *argp = (void __user *)arg;
3255 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003256 union {
3257 struct kvm_lapic_state *lapic;
3258 struct kvm_xsave *xsave;
3259 struct kvm_xcrs *xcrs;
3260 void *buffer;
3261 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003262
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003263 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003264 switch (ioctl) {
3265 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003266 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003267 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003268 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003269 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003270
Dave Hansenb772ff32008-08-11 10:01:47 -07003271 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003272 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003273 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003274 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003275 if (r)
3276 goto out;
3277 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003278 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003279 goto out;
3280 r = 0;
3281 break;
3282 }
3283 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003284 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003285 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003286 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003287 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Guo Chao18595412012-11-02 18:33:21 +08003288 if (IS_ERR(u.lapic))
3289 return PTR_ERR(u.lapic);
Sasha Levinff5c2c02011-12-04 19:36:29 +02003290
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003291 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003292 break;
3293 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003294 case KVM_INTERRUPT: {
3295 struct kvm_interrupt irq;
3296
3297 r = -EFAULT;
3298 if (copy_from_user(&irq, argp, sizeof irq))
3299 goto out;
3300 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003301 break;
3302 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003303 case KVM_NMI: {
3304 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003305 break;
3306 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02003307 case KVM_SMI: {
3308 r = kvm_vcpu_ioctl_smi(vcpu);
3309 break;
3310 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003311 case KVM_SET_CPUID: {
3312 struct kvm_cpuid __user *cpuid_arg = argp;
3313 struct kvm_cpuid cpuid;
3314
3315 r = -EFAULT;
3316 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3317 goto out;
3318 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003319 break;
3320 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003321 case KVM_SET_CPUID2: {
3322 struct kvm_cpuid2 __user *cpuid_arg = argp;
3323 struct kvm_cpuid2 cpuid;
3324
3325 r = -EFAULT;
3326 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3327 goto out;
3328 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003329 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003330 break;
3331 }
3332 case KVM_GET_CPUID2: {
3333 struct kvm_cpuid2 __user *cpuid_arg = argp;
3334 struct kvm_cpuid2 cpuid;
3335
3336 r = -EFAULT;
3337 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3338 goto out;
3339 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003340 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003341 if (r)
3342 goto out;
3343 r = -EFAULT;
3344 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3345 goto out;
3346 r = 0;
3347 break;
3348 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003349 case KVM_GET_MSRS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003350 r = msr_io(vcpu, argp, do_get_msr, 1);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003351 break;
3352 case KVM_SET_MSRS:
3353 r = msr_io(vcpu, argp, do_set_msr, 0);
3354 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003355 case KVM_TPR_ACCESS_REPORTING: {
3356 struct kvm_tpr_access_ctl tac;
3357
3358 r = -EFAULT;
3359 if (copy_from_user(&tac, argp, sizeof tac))
3360 goto out;
3361 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3362 if (r)
3363 goto out;
3364 r = -EFAULT;
3365 if (copy_to_user(argp, &tac, sizeof tac))
3366 goto out;
3367 r = 0;
3368 break;
3369 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003370 case KVM_SET_VAPIC_ADDR: {
3371 struct kvm_vapic_addr va;
3372
3373 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02003374 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02003375 goto out;
3376 r = -EFAULT;
3377 if (copy_from_user(&va, argp, sizeof va))
3378 goto out;
Andy Honigfda4e2e2013-11-20 10:23:22 -08003379 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Avi Kivityb93463a2007-10-25 16:52:32 +02003380 break;
3381 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003382 case KVM_X86_SETUP_MCE: {
3383 u64 mcg_cap;
3384
3385 r = -EFAULT;
3386 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3387 goto out;
3388 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3389 break;
3390 }
3391 case KVM_X86_SET_MCE: {
3392 struct kvm_x86_mce mce;
3393
3394 r = -EFAULT;
3395 if (copy_from_user(&mce, argp, sizeof mce))
3396 goto out;
3397 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3398 break;
3399 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003400 case KVM_GET_VCPU_EVENTS: {
3401 struct kvm_vcpu_events events;
3402
3403 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3404
3405 r = -EFAULT;
3406 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3407 break;
3408 r = 0;
3409 break;
3410 }
3411 case KVM_SET_VCPU_EVENTS: {
3412 struct kvm_vcpu_events events;
3413
3414 r = -EFAULT;
3415 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3416 break;
3417
3418 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3419 break;
3420 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003421 case KVM_GET_DEBUGREGS: {
3422 struct kvm_debugregs dbgregs;
3423
3424 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3425
3426 r = -EFAULT;
3427 if (copy_to_user(argp, &dbgregs,
3428 sizeof(struct kvm_debugregs)))
3429 break;
3430 r = 0;
3431 break;
3432 }
3433 case KVM_SET_DEBUGREGS: {
3434 struct kvm_debugregs dbgregs;
3435
3436 r = -EFAULT;
3437 if (copy_from_user(&dbgregs, argp,
3438 sizeof(struct kvm_debugregs)))
3439 break;
3440
3441 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3442 break;
3443 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003444 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003445 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003446 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003447 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003448 break;
3449
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003450 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003451
3452 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003453 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003454 break;
3455 r = 0;
3456 break;
3457 }
3458 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003459 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Guo Chao18595412012-11-02 18:33:21 +08003460 if (IS_ERR(u.xsave))
3461 return PTR_ERR(u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003462
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003463 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003464 break;
3465 }
3466 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003467 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003468 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003469 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003470 break;
3471
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003472 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003473
3474 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003475 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003476 sizeof(struct kvm_xcrs)))
3477 break;
3478 r = 0;
3479 break;
3480 }
3481 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003482 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Guo Chao18595412012-11-02 18:33:21 +08003483 if (IS_ERR(u.xcrs))
3484 return PTR_ERR(u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003485
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003486 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003487 break;
3488 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003489 case KVM_SET_TSC_KHZ: {
3490 u32 user_tsc_khz;
3491
3492 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003493 user_tsc_khz = (u32)arg;
3494
3495 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3496 goto out;
3497
Zachary Amsdencc578282012-02-03 15:43:50 -02003498 if (user_tsc_khz == 0)
3499 user_tsc_khz = tsc_khz;
3500
Haozhong Zhang381d5852015-10-20 15:39:04 +08003501 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
3502 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003503
Joerg Roedel92a1f122011-03-25 09:44:51 +01003504 goto out;
3505 }
3506 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02003507 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003508 goto out;
3509 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003510 case KVM_KVMCLOCK_CTRL: {
3511 r = kvm_set_guest_paused(vcpu);
3512 goto out;
3513 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003514 case KVM_ENABLE_CAP: {
3515 struct kvm_enable_cap cap;
3516
3517 r = -EFAULT;
3518 if (copy_from_user(&cap, argp, sizeof(cap)))
3519 goto out;
3520 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3521 break;
3522 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003523 default:
3524 r = -EINVAL;
3525 }
3526out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003527 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003528 return r;
3529}
3530
Carsten Otte5b1c1492012-01-04 10:25:23 +01003531int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3532{
3533 return VM_FAULT_SIGBUS;
3534}
3535
Carsten Otte1fe779f2007-10-29 16:08:35 +01003536static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3537{
3538 int ret;
3539
3540 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08003541 return -EINVAL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003542 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3543 return ret;
3544}
3545
Sheng Yangb927a3c2009-07-21 10:42:48 +08003546static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3547 u64 ident_addr)
3548{
3549 kvm->arch.ept_identity_map_addr = ident_addr;
3550 return 0;
3551}
3552
Carsten Otte1fe779f2007-10-29 16:08:35 +01003553static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3554 u32 kvm_nr_mmu_pages)
3555{
3556 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3557 return -EINVAL;
3558
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003559 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003560
3561 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003562 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003563
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003564 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003565 return 0;
3566}
3567
3568static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3569{
Dave Hansen39de71e2010-08-19 18:11:14 -07003570 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003571}
3572
Carsten Otte1fe779f2007-10-29 16:08:35 +01003573static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3574{
3575 int r;
3576
3577 r = 0;
3578 switch (chip->chip_id) {
3579 case KVM_IRQCHIP_PIC_MASTER:
3580 memcpy(&chip->chip.pic,
3581 &pic_irqchip(kvm)->pics[0],
3582 sizeof(struct kvm_pic_state));
3583 break;
3584 case KVM_IRQCHIP_PIC_SLAVE:
3585 memcpy(&chip->chip.pic,
3586 &pic_irqchip(kvm)->pics[1],
3587 sizeof(struct kvm_pic_state));
3588 break;
3589 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003590 r = kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003591 break;
3592 default:
3593 r = -EINVAL;
3594 break;
3595 }
3596 return r;
3597}
3598
3599static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3600{
3601 int r;
3602
3603 r = 0;
3604 switch (chip->chip_id) {
3605 case KVM_IRQCHIP_PIC_MASTER:
Avi Kivityf4f51052010-09-19 18:44:07 +02003606 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003607 memcpy(&pic_irqchip(kvm)->pics[0],
3608 &chip->chip.pic,
3609 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003610 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003611 break;
3612 case KVM_IRQCHIP_PIC_SLAVE:
Avi Kivityf4f51052010-09-19 18:44:07 +02003613 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003614 memcpy(&pic_irqchip(kvm)->pics[1],
3615 &chip->chip.pic,
3616 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003617 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003618 break;
3619 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003620 r = kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003621 break;
3622 default:
3623 r = -EINVAL;
3624 break;
3625 }
3626 kvm_pic_update_irq(pic_irqchip(kvm));
3627 return r;
3628}
3629
Sheng Yange0f63cb2008-03-04 00:50:59 +08003630static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3631{
Radim Krčmář34f39412016-03-02 22:56:50 +01003632 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
3633
3634 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
3635
3636 mutex_lock(&kps->lock);
3637 memcpy(ps, &kps->channels, sizeof(*ps));
3638 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303639 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003640}
3641
3642static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3643{
Andrew Honig01856042015-11-18 14:50:23 -08003644 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01003645 struct kvm_pit *pit = kvm->arch.vpit;
3646
3647 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01003648 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08003649 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003650 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
3651 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303652 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003653}
3654
3655static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3656{
Beth Kone9f42752009-07-07 11:50:38 -04003657 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3658 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3659 sizeof(ps->channels));
3660 ps->flags = kvm->arch.vpit->pit_state.flags;
3661 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003662 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303663 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003664}
3665
3666static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3667{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303668 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08003669 int i;
Beth Kone9f42752009-07-07 11:50:38 -04003670 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01003671 struct kvm_pit *pit = kvm->arch.vpit;
3672
3673 mutex_lock(&pit->pit_state.lock);
3674 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04003675 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3676 if (!prev_legacy && cur_legacy)
3677 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01003678 memcpy(&pit->pit_state.channels, &ps->channels,
3679 sizeof(pit->pit_state.channels));
3680 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08003681 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003682 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01003683 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01003684 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303685 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003686}
3687
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003688static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3689 struct kvm_reinject_control *control)
3690{
Radim Krčmář71474e22016-03-02 22:56:45 +01003691 struct kvm_pit *pit = kvm->arch.vpit;
3692
3693 if (!pit)
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003694 return -ENXIO;
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003695
Radim Krčmář71474e22016-03-02 22:56:45 +01003696 /* pit->pit_state.lock was overloaded to prevent userspace from getting
3697 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
3698 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
3699 */
3700 mutex_lock(&pit->pit_state.lock);
3701 kvm_pit_set_reinject(pit, control->pit_reinject);
3702 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003703
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003704 return 0;
3705}
3706
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003707/**
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003708 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
3709 * @kvm: kvm instance
3710 * @log: slot id and address to which we copy the log
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003711 *
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003712 * Steps 1-4 below provide general overview of dirty page logging. See
3713 * kvm_get_dirty_log_protect() function description for additional details.
3714 *
3715 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
3716 * always flush the TLB (step 4) even if previous step failed and the dirty
3717 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
3718 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
3719 * writes will be marked dirty for next log read.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003720 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003721 * 1. Take a snapshot of the bit and clear it if needed.
3722 * 2. Write protect the corresponding page.
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003723 * 3. Copy the snapshot to the userspace.
3724 * 4. Flush TLB's if needed.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003725 */
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003726int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003727{
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003728 bool is_dirty = false;
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003729 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003730
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003731 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003732
Kai Huang88178fd2015-01-28 10:54:27 +08003733 /*
3734 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
3735 */
3736 if (kvm_x86_ops->flush_log_dirty)
3737 kvm_x86_ops->flush_log_dirty(kvm);
3738
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003739 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003740
3741 /*
3742 * All the TLBs can be flushed out of mmu lock, see the comments in
3743 * kvm_mmu_slot_remove_write_access().
3744 */
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003745 lockdep_assert_held(&kvm->slots_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003746 if (is_dirty)
3747 kvm_flush_remote_tlbs(kvm);
3748
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003749 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003750 return r;
3751}
3752
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003753int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
3754 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003755{
3756 if (!irqchip_in_kernel(kvm))
3757 return -ENXIO;
3758
3759 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003760 irq_event->irq, irq_event->level,
3761 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003762 return 0;
3763}
3764
Nadav Amit90de4a12015-04-13 01:53:41 +03003765static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3766 struct kvm_enable_cap *cap)
3767{
3768 int r;
3769
3770 if (cap->flags)
3771 return -EINVAL;
3772
3773 switch (cap->cap) {
3774 case KVM_CAP_DISABLE_QUIRKS:
3775 kvm->arch.disabled_quirks = cap->args[0];
3776 r = 0;
3777 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07003778 case KVM_CAP_SPLIT_IRQCHIP: {
3779 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003780 r = -EINVAL;
3781 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
3782 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07003783 r = -EEXIST;
3784 if (irqchip_in_kernel(kvm))
3785 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003786 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07003787 goto split_irqchip_unlock;
3788 r = kvm_setup_empty_irq_routing(kvm);
3789 if (r)
3790 goto split_irqchip_unlock;
3791 /* Pairs with irqchip_in_kernel. */
3792 smp_wmb();
3793 kvm->arch.irqchip_split = true;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003794 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07003795 r = 0;
3796split_irqchip_unlock:
3797 mutex_unlock(&kvm->lock);
3798 break;
3799 }
Nadav Amit90de4a12015-04-13 01:53:41 +03003800 default:
3801 r = -EINVAL;
3802 break;
3803 }
3804 return r;
3805}
3806
Carsten Otte1fe779f2007-10-29 16:08:35 +01003807long kvm_arch_vm_ioctl(struct file *filp,
3808 unsigned int ioctl, unsigned long arg)
3809{
3810 struct kvm *kvm = filp->private_data;
3811 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003812 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003813 /*
3814 * This union makes it completely explicit to gcc-3.x
3815 * that these two variables' stack usage should be
3816 * combined, not added together.
3817 */
3818 union {
3819 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003820 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003821 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003822 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003823
3824 switch (ioctl) {
3825 case KVM_SET_TSS_ADDR:
3826 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003827 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003828 case KVM_SET_IDENTITY_MAP_ADDR: {
3829 u64 ident_addr;
3830
3831 r = -EFAULT;
3832 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3833 goto out;
3834 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08003835 break;
3836 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003837 case KVM_SET_NR_MMU_PAGES:
3838 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003839 break;
3840 case KVM_GET_NR_MMU_PAGES:
3841 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
3842 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003843 case KVM_CREATE_IRQCHIP: {
3844 struct kvm_pic *vpic;
3845
3846 mutex_lock(&kvm->lock);
3847 r = -EEXIST;
3848 if (kvm->arch.vpic)
3849 goto create_irqchip_unlock;
Avi Kivity3e515702012-03-05 14:23:29 +02003850 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003851 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02003852 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003853 r = -ENOMEM;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003854 vpic = kvm_create_pic(kvm);
3855 if (vpic) {
Carsten Otte1fe779f2007-10-29 16:08:35 +01003856 r = kvm_ioapic_init(kvm);
3857 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003858 mutex_lock(&kvm->slots_lock);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003859 kvm_destroy_pic(vpic);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003860 mutex_unlock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003861 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003862 }
3863 } else
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003864 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02003865 r = kvm_setup_default_irq_routing(kvm);
3866 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003867 mutex_lock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003868 mutex_lock(&kvm->irq_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003869 kvm_ioapic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003870 kvm_destroy_pic(vpic);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003871 mutex_unlock(&kvm->irq_lock);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003872 mutex_unlock(&kvm->slots_lock);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003873 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02003874 }
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003875 /* Write kvm->irq_routing before kvm->arch.vpic. */
3876 smp_wmb();
3877 kvm->arch.vpic = vpic;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003878 create_irqchip_unlock:
3879 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003880 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003881 }
Sheng Yang78376992008-01-28 05:10:22 +08003882 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003883 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
3884 goto create_pit;
3885 case KVM_CREATE_PIT2:
3886 r = -EFAULT;
3887 if (copy_from_user(&u.pit_config, argp,
3888 sizeof(struct kvm_pit_config)))
3889 goto out;
3890 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02003891 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02003892 r = -EEXIST;
3893 if (kvm->arch.vpit)
3894 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08003895 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003896 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08003897 if (kvm->arch.vpit)
3898 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02003899 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02003900 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08003901 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003902 case KVM_GET_IRQCHIP: {
3903 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003904 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003905
Sasha Levinff5c2c02011-12-04 19:36:29 +02003906 chip = memdup_user(argp, sizeof(*chip));
3907 if (IS_ERR(chip)) {
3908 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003909 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003910 }
3911
Carsten Otte1fe779f2007-10-29 16:08:35 +01003912 r = -ENXIO;
Steve Rutherford49df6392015-07-29 23:21:40 -07003913 if (!irqchip_in_kernel(kvm) || irqchip_split(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003914 goto get_irqchip_out;
3915 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
3916 if (r)
3917 goto get_irqchip_out;
3918 r = -EFAULT;
3919 if (copy_to_user(argp, chip, sizeof *chip))
3920 goto get_irqchip_out;
3921 r = 0;
3922 get_irqchip_out:
3923 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003924 break;
3925 }
3926 case KVM_SET_IRQCHIP: {
3927 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003928 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003929
Sasha Levinff5c2c02011-12-04 19:36:29 +02003930 chip = memdup_user(argp, sizeof(*chip));
3931 if (IS_ERR(chip)) {
3932 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003933 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003934 }
3935
Carsten Otte1fe779f2007-10-29 16:08:35 +01003936 r = -ENXIO;
Steve Rutherford49df6392015-07-29 23:21:40 -07003937 if (!irqchip_in_kernel(kvm) || irqchip_split(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003938 goto set_irqchip_out;
3939 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
3940 if (r)
3941 goto set_irqchip_out;
3942 r = 0;
3943 set_irqchip_out:
3944 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003945 break;
3946 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08003947 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003948 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003949 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003950 goto out;
3951 r = -ENXIO;
3952 if (!kvm->arch.vpit)
3953 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003954 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003955 if (r)
3956 goto out;
3957 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003958 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003959 goto out;
3960 r = 0;
3961 break;
3962 }
3963 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003964 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003965 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003966 goto out;
3967 r = -ENXIO;
3968 if (!kvm->arch.vpit)
3969 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003970 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003971 break;
3972 }
Beth Kone9f42752009-07-07 11:50:38 -04003973 case KVM_GET_PIT2: {
3974 r = -ENXIO;
3975 if (!kvm->arch.vpit)
3976 goto out;
3977 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
3978 if (r)
3979 goto out;
3980 r = -EFAULT;
3981 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
3982 goto out;
3983 r = 0;
3984 break;
3985 }
3986 case KVM_SET_PIT2: {
3987 r = -EFAULT;
3988 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
3989 goto out;
3990 r = -ENXIO;
3991 if (!kvm->arch.vpit)
3992 goto out;
3993 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Beth Kone9f42752009-07-07 11:50:38 -04003994 break;
3995 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003996 case KVM_REINJECT_CONTROL: {
3997 struct kvm_reinject_control control;
3998 r = -EFAULT;
3999 if (copy_from_user(&control, argp, sizeof(control)))
4000 goto out;
4001 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004002 break;
4003 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004004 case KVM_SET_BOOT_CPU_ID:
4005 r = 0;
4006 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02004007 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004008 r = -EBUSY;
4009 else
4010 kvm->arch.bsp_vcpu_id = arg;
4011 mutex_unlock(&kvm->lock);
4012 break;
Ed Swierkffde22a2009-10-15 15:21:43 -07004013 case KVM_XEN_HVM_CONFIG: {
4014 r = -EFAULT;
4015 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
4016 sizeof(struct kvm_xen_hvm_config)))
4017 goto out;
4018 r = -EINVAL;
4019 if (kvm->arch.xen_hvm_config.flags)
4020 goto out;
4021 r = 0;
4022 break;
4023 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004024 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004025 struct kvm_clock_data user_ns;
4026 u64 now_ns;
4027 s64 delta;
4028
4029 r = -EFAULT;
4030 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
4031 goto out;
4032
4033 r = -EINVAL;
4034 if (user_ns.flags)
4035 goto out;
4036
4037 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02004038 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10004039 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004040 delta = user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004041 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004042 kvm->arch.kvmclock_offset = delta;
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03004043 kvm_gen_update_masterclock(kvm);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004044 break;
4045 }
4046 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004047 struct kvm_clock_data user_ns;
4048 u64 now_ns;
4049
Avi Kivity395c6b02010-10-04 12:55:49 +02004050 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10004051 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004052 user_ns.clock = kvm->arch.kvmclock_offset + now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004053 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004054 user_ns.flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004055 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004056
4057 r = -EFAULT;
4058 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
4059 goto out;
4060 r = 0;
4061 break;
4062 }
Nadav Amit90de4a12015-04-13 01:53:41 +03004063 case KVM_ENABLE_CAP: {
4064 struct kvm_enable_cap cap;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004065
Nadav Amit90de4a12015-04-13 01:53:41 +03004066 r = -EFAULT;
4067 if (copy_from_user(&cap, argp, sizeof(cap)))
4068 goto out;
4069 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
4070 break;
4071 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01004072 default:
Radim Krčmářc274e032014-11-21 22:21:50 +01004073 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004074 }
4075out:
4076 return r;
4077}
4078
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08004079static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02004080{
4081 u32 dummy[2];
4082 unsigned i, j;
4083
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004084 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02004085 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
4086 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004087
4088 /*
4089 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004090 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004091 */
4092 switch (msrs_to_save[i]) {
4093 case MSR_IA32_BNDCFGS:
4094 if (!kvm_x86_ops->mpx_supported())
4095 continue;
4096 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004097 case MSR_TSC_AUX:
4098 if (!kvm_x86_ops->rdtscp_supported())
4099 continue;
4100 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004101 default:
4102 break;
4103 }
4104
Carsten Otte043405e2007-10-10 17:16:19 +02004105 if (j < i)
4106 msrs_to_save[j] = msrs_to_save[i];
4107 j++;
4108 }
4109 num_msrs_to_save = j;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004110
4111 for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) {
4112 switch (emulated_msrs[i]) {
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004113 case MSR_IA32_SMBASE:
4114 if (!kvm_x86_ops->cpu_has_high_real_mode_segbase())
4115 continue;
4116 break;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004117 default:
4118 break;
4119 }
4120
4121 if (j < i)
4122 emulated_msrs[j] = emulated_msrs[i];
4123 j++;
4124 }
4125 num_emulated_msrs = j;
Carsten Otte043405e2007-10-10 17:16:19 +02004126}
4127
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004128static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
4129 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004130{
Avi Kivity70252a12010-01-19 12:51:22 +02004131 int handled = 0;
4132 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004133
Avi Kivity70252a12010-01-19 12:51:22 +02004134 do {
4135 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004136 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004137 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
4138 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004139 break;
4140 handled += n;
4141 addr += n;
4142 len -= n;
4143 v += n;
4144 } while (len);
4145
4146 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004147}
4148
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004149static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004150{
Avi Kivity70252a12010-01-19 12:51:22 +02004151 int handled = 0;
4152 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004153
Avi Kivity70252a12010-01-19 12:51:22 +02004154 do {
4155 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004156 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004157 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
4158 addr, n, v))
4159 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004160 break;
4161 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
4162 handled += n;
4163 addr += n;
4164 len -= n;
4165 v += n;
4166 } while (len);
4167
4168 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004169}
4170
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004171static void kvm_set_segment(struct kvm_vcpu *vcpu,
4172 struct kvm_segment *var, int seg)
4173{
4174 kvm_x86_ops->set_segment(vcpu, var, seg);
4175}
4176
4177void kvm_get_segment(struct kvm_vcpu *vcpu,
4178 struct kvm_segment *var, int seg)
4179{
4180 kvm_x86_ops->get_segment(vcpu, var, seg);
4181}
4182
Paolo Bonzini54987b72014-09-02 13:23:06 +02004183gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
4184 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004185{
4186 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004187
4188 BUG_ON(!mmu_is_nested(vcpu));
4189
4190 /* NPT walks are always user-walks */
4191 access |= PFERR_USER_MASK;
Paolo Bonzini54987b72014-09-02 13:23:06 +02004192 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004193
4194 return t_gpa;
4195}
4196
Avi Kivityab9ae312010-11-22 17:53:26 +02004197gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
4198 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004199{
4200 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02004201 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004202}
4203
Avi Kivityab9ae312010-11-22 17:53:26 +02004204 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
4205 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004206{
4207 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4208 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004209 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004210}
4211
Avi Kivityab9ae312010-11-22 17:53:26 +02004212gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
4213 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004214{
4215 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4216 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004217 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004218}
4219
4220/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02004221gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
4222 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004223{
Avi Kivityab9ae312010-11-22 17:53:26 +02004224 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004225}
4226
4227static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
4228 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004229 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004230{
4231 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004232 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004233
4234 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004235 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02004236 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004237 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02004238 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004239 int ret;
4240
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004241 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004242 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004243 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
4244 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004245 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004246 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004247 goto out;
4248 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01004249
Izik Eidus77c20022008-12-29 01:42:19 +02004250 bytes -= toread;
4251 data += toread;
4252 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004253 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004254out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004255 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004256}
Izik Eidus77c20022008-12-29 01:42:19 +02004257
Gleb Natapov1871c602010-02-10 14:21:32 +02004258/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03004259static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
4260 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004261 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004262{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004263 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004264 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004265 unsigned offset;
4266 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004267
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004268 /* Inline kvm_read_guest_virt_helper for speed. */
4269 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
4270 exception);
4271 if (unlikely(gpa == UNMAPPED_GVA))
4272 return X86EMUL_PROPAGATE_FAULT;
4273
4274 offset = addr & (PAGE_SIZE-1);
4275 if (WARN_ON(offset + bytes > PAGE_SIZE))
4276 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004277 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
4278 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004279 if (unlikely(ret < 0))
4280 return X86EMUL_IO_NEEDED;
4281
4282 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02004283}
4284
Nadav Har'El064aea72011-05-25 23:04:56 +03004285int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004286 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004287 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004288{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004289 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004290 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004291
Gleb Natapov1871c602010-02-10 14:21:32 +02004292 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004293 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004294}
Nadav Har'El064aea72011-05-25 23:04:56 +03004295EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004296
Avi Kivity0f65dd72011-04-20 13:37:53 +03004297static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4298 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004299 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004300{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004301 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004302 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004303}
4304
Radim Krčmář7a036a62015-10-30 16:36:24 +01004305static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
4306 unsigned long addr, void *val, unsigned int bytes)
4307{
4308 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4309 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
4310
4311 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
4312}
4313
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004314int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004315 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004316 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004317 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004318{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004319 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004320 void *data = val;
4321 int r = X86EMUL_CONTINUE;
4322
4323 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004324 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4325 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004326 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004327 unsigned offset = addr & (PAGE_SIZE-1);
4328 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4329 int ret;
4330
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004331 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004332 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004333 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02004334 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004335 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004336 goto out;
4337 }
4338
4339 bytes -= towrite;
4340 data += towrite;
4341 addr += towrite;
4342 }
4343out:
4344 return r;
4345}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004346EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004347
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004348static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4349 gpa_t *gpa, struct x86_exception *exception,
4350 bool write)
4351{
Avi Kivity97d64b72012-09-12 14:52:00 +03004352 u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
4353 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004354
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004355 /*
4356 * currently PKRU is only applied to ept enabled guest so
4357 * there is no pkey in EPT page table for L1 guest or EPT
4358 * shadow page table for L2 guest.
4359 */
Avi Kivity97d64b72012-09-12 14:52:00 +03004360 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08004361 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004362 vcpu->arch.access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004363 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4364 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004365 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004366 return 1;
4367 }
4368
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004369 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4370
4371 if (*gpa == UNMAPPED_GVA)
4372 return -1;
4373
4374 /* For APIC access vmexit */
4375 if ((*gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4376 return 1;
4377
Xiao Guangrong4f022642011-07-12 03:34:24 +08004378 if (vcpu_match_mmio_gpa(vcpu, *gpa)) {
4379 trace_vcpu_match_mmio(gva, *gpa, write, true);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004380 return 1;
Xiao Guangrong4f022642011-07-12 03:34:24 +08004381 }
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004382
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004383 return 0;
4384}
4385
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004386int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004387 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004388{
4389 int ret;
4390
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004391 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004392 if (ret < 0)
4393 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004394 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004395 return 1;
4396}
4397
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004398struct read_write_emulator_ops {
4399 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4400 int bytes);
4401 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4402 void *val, int bytes);
4403 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4404 int bytes, void *val);
4405 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4406 void *val, int bytes);
4407 bool write;
4408};
4409
4410static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4411{
4412 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004413 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Avi Kivityf78146b2012-04-18 19:22:47 +03004414 vcpu->mmio_fragments[0].gpa, *(u64 *)val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004415 vcpu->mmio_read_completed = 0;
4416 return 1;
4417 }
4418
4419 return 0;
4420}
4421
4422static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4423 void *val, int bytes)
4424{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004425 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004426}
4427
4428static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4429 void *val, int bytes)
4430{
4431 return emulator_write_phys(vcpu, gpa, val, bytes);
4432}
4433
4434static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4435{
4436 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4437 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4438}
4439
4440static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4441 void *val, int bytes)
4442{
4443 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4444 return X86EMUL_IO_NEEDED;
4445}
4446
4447static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4448 void *val, int bytes)
4449{
Avi Kivityf78146b2012-04-18 19:22:47 +03004450 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
4451
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004452 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004453 return X86EMUL_CONTINUE;
4454}
4455
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004456static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004457 .read_write_prepare = read_prepare,
4458 .read_write_emulate = read_emulate,
4459 .read_write_mmio = vcpu_mmio_read,
4460 .read_write_exit_mmio = read_exit_mmio,
4461};
4462
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004463static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004464 .read_write_emulate = write_emulate,
4465 .read_write_mmio = write_mmio,
4466 .read_write_exit_mmio = write_exit_mmio,
4467 .write = true,
4468};
4469
Xiao Guangrong22388a32011-07-13 14:32:31 +08004470static int emulator_read_write_onepage(unsigned long addr, void *val,
4471 unsigned int bytes,
4472 struct x86_exception *exception,
4473 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004474 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004475{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004476 gpa_t gpa;
4477 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004478 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03004479 struct kvm_mmio_fragment *frag;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004480
4481 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004482
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004483 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004484 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004485
4486 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004487 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004488 goto mmio;
4489
Xiao Guangrong22388a32011-07-13 14:32:31 +08004490 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004491 return X86EMUL_CONTINUE;
4492
4493mmio:
4494 /*
4495 * Is this MMIO handled locally?
4496 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004497 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004498 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004499 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004500
Avi Kivity70252a12010-01-19 12:51:22 +02004501 gpa += handled;
4502 bytes -= handled;
4503 val += handled;
4504
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004505 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
4506 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
4507 frag->gpa = gpa;
4508 frag->data = val;
4509 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03004510 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004511}
4512
Xiubo Li52eb5a62015-03-13 17:39:45 +08004513static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
4514 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004515 void *val, unsigned int bytes,
4516 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004517 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004518{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004519 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03004520 gpa_t gpa;
4521 int rc;
4522
4523 if (ops->read_write_prepare &&
4524 ops->read_write_prepare(vcpu, val, bytes))
4525 return X86EMUL_CONTINUE;
4526
4527 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004528
Carsten Ottebbd9b642007-10-30 18:44:21 +01004529 /* Crossing a page boundary? */
4530 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03004531 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004532
4533 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004534 rc = emulator_read_write_onepage(addr, val, now, exception,
4535 vcpu, ops);
4536
Carsten Ottebbd9b642007-10-30 18:44:21 +01004537 if (rc != X86EMUL_CONTINUE)
4538 return rc;
4539 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02004540 if (ctxt->mode != X86EMUL_MODE_PROT64)
4541 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004542 val += now;
4543 bytes -= now;
4544 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004545
Avi Kivityf78146b2012-04-18 19:22:47 +03004546 rc = emulator_read_write_onepage(addr, val, bytes, exception,
4547 vcpu, ops);
4548 if (rc != X86EMUL_CONTINUE)
4549 return rc;
4550
4551 if (!vcpu->mmio_nr_fragments)
4552 return rc;
4553
4554 gpa = vcpu->mmio_fragments[0].gpa;
4555
4556 vcpu->mmio_needed = 1;
4557 vcpu->mmio_cur_fragment = 0;
4558
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004559 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03004560 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
4561 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4562 vcpu->run->mmio.phys_addr = gpa;
4563
4564 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004565}
4566
4567static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4568 unsigned long addr,
4569 void *val,
4570 unsigned int bytes,
4571 struct x86_exception *exception)
4572{
4573 return emulator_read_write(ctxt, addr, val, bytes,
4574 exception, &read_emultor);
4575}
4576
Xiubo Li52eb5a62015-03-13 17:39:45 +08004577static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004578 unsigned long addr,
4579 const void *val,
4580 unsigned int bytes,
4581 struct x86_exception *exception)
4582{
4583 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4584 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004585}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004586
Avi Kivitydaea3e72010-03-15 13:59:54 +02004587#define CMPXCHG_TYPE(t, ptr, old, new) \
4588 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4589
4590#ifdef CONFIG_X86_64
4591# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4592#else
4593# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004594 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004595#endif
4596
Avi Kivity0f65dd72011-04-20 13:37:53 +03004597static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4598 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004599 const void *old,
4600 const void *new,
4601 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004602 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004603{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004604 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004605 gpa_t gpa;
4606 struct page *page;
4607 char *kaddr;
4608 bool exchanged;
4609
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004610 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004611 if (bytes > 8 || (bytes & (bytes - 1)))
4612 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004613
Avi Kivitydaea3e72010-03-15 13:59:54 +02004614 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004615
Avi Kivitydaea3e72010-03-15 13:59:54 +02004616 if (gpa == UNMAPPED_GVA ||
4617 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4618 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004619
Avi Kivitydaea3e72010-03-15 13:59:54 +02004620 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4621 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004622
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004623 page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +08004624 if (is_error_page(page))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08004625 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004626
Cong Wang8fd75e12011-11-25 23:14:17 +08004627 kaddr = kmap_atomic(page);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004628 kaddr += offset_in_page(gpa);
4629 switch (bytes) {
4630 case 1:
4631 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4632 break;
4633 case 2:
4634 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4635 break;
4636 case 4:
4637 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4638 break;
4639 case 8:
4640 exchanged = CMPXCHG64(kaddr, old, new);
4641 break;
4642 default:
4643 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004644 }
Cong Wang8fd75e12011-11-25 23:14:17 +08004645 kunmap_atomic(kaddr);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004646 kvm_release_page_dirty(page);
4647
4648 if (!exchanged)
4649 return X86EMUL_CMPXCHG_FAILED;
4650
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004651 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004652 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004653
4654 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004655
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004656emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004657 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004658
Avi Kivity0f65dd72011-04-20 13:37:53 +03004659 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004660}
4661
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004662static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4663{
4664 /* TODO: String I/O for in kernel device */
4665 int r;
4666
4667 if (vcpu->arch.pio.in)
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004668 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004669 vcpu->arch.pio.size, pd);
4670 else
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004671 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004672 vcpu->arch.pio.port, vcpu->arch.pio.size,
4673 pd);
4674 return r;
4675}
4676
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004677static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4678 unsigned short port, void *val,
4679 unsigned int count, bool in)
4680{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004681 vcpu->arch.pio.port = port;
4682 vcpu->arch.pio.in = in;
4683 vcpu->arch.pio.count = count;
4684 vcpu->arch.pio.size = size;
4685
4686 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4687 vcpu->arch.pio.count = 0;
4688 return 1;
4689 }
4690
4691 vcpu->run->exit_reason = KVM_EXIT_IO;
4692 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4693 vcpu->run->io.size = size;
4694 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4695 vcpu->run->io.count = count;
4696 vcpu->run->io.port = port;
4697
4698 return 0;
4699}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004700
Avi Kivityca1d4a92011-04-20 13:37:53 +03004701static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4702 int size, unsigned short port, void *val,
4703 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004704{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004705 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004706 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004707
Gleb Natapov79729952010-03-18 15:20:24 +02004708 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004709 goto data_avail;
4710
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004711 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4712 if (ret) {
4713data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004714 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004715 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02004716 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004717 return 1;
4718 }
4719
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004720 return 0;
4721}
4722
Avi Kivityca1d4a92011-04-20 13:37:53 +03004723static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4724 int size, unsigned short port,
4725 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004726{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004727 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4728
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004729 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004730 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004731 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004732}
4733
Carsten Ottebbd9b642007-10-30 18:44:21 +01004734static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4735{
4736 return kvm_x86_ops->get_segment_base(vcpu, seg);
4737}
4738
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004739static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004740{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004741 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004742}
4743
Joel Schopp5cb56052015-03-02 13:43:31 -06004744int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004745{
4746 if (!need_emulate_wbinvd(vcpu))
4747 return X86EMUL_CONTINUE;
4748
4749 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004750 int cpu = get_cpu();
4751
4752 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004753 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4754 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004755 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004756 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004757 } else
4758 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004759 return X86EMUL_CONTINUE;
4760}
Joel Schopp5cb56052015-03-02 13:43:31 -06004761
4762int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4763{
4764 kvm_x86_ops->skip_emulated_instruction(vcpu);
4765 return kvm_emulate_wbinvd_noskip(vcpu);
4766}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004767EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4768
Joel Schopp5cb56052015-03-02 13:43:31 -06004769
4770
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004771static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4772{
Joel Schopp5cb56052015-03-02 13:43:31 -06004773 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004774}
4775
Xiubo Li52eb5a62015-03-13 17:39:45 +08004776static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
4777 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004778{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004779 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004780}
4781
Xiubo Li52eb5a62015-03-13 17:39:45 +08004782static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
4783 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004784{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004785
Avi Kivity717746e2011-04-20 13:37:53 +03004786 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004787}
4788
Gleb Natapov52a46612010-03-18 15:20:03 +02004789static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4790{
4791 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4792}
4793
Avi Kivity717746e2011-04-20 13:37:53 +03004794static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004795{
Avi Kivity717746e2011-04-20 13:37:53 +03004796 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004797 unsigned long value;
4798
4799 switch (cr) {
4800 case 0:
4801 value = kvm_read_cr0(vcpu);
4802 break;
4803 case 2:
4804 value = vcpu->arch.cr2;
4805 break;
4806 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004807 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004808 break;
4809 case 4:
4810 value = kvm_read_cr4(vcpu);
4811 break;
4812 case 8:
4813 value = kvm_get_cr8(vcpu);
4814 break;
4815 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004816 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02004817 return 0;
4818 }
4819
4820 return value;
4821}
4822
Avi Kivity717746e2011-04-20 13:37:53 +03004823static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02004824{
Avi Kivity717746e2011-04-20 13:37:53 +03004825 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03004826 int res = 0;
4827
Gleb Natapov52a46612010-03-18 15:20:03 +02004828 switch (cr) {
4829 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004830 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004831 break;
4832 case 2:
4833 vcpu->arch.cr2 = val;
4834 break;
4835 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004836 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004837 break;
4838 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004839 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004840 break;
4841 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004842 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004843 break;
4844 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004845 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03004846 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02004847 }
Gleb Natapov0f122442010-04-28 19:15:31 +03004848
4849 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02004850}
4851
Avi Kivity717746e2011-04-20 13:37:53 +03004852static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02004853{
Avi Kivity717746e2011-04-20 13:37:53 +03004854 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02004855}
4856
Avi Kivity4bff1e862011-04-20 13:37:53 +03004857static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004858{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004859 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004860}
4861
Avi Kivity4bff1e862011-04-20 13:37:53 +03004862static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004863{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004864 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004865}
4866
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03004867static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4868{
4869 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
4870}
4871
4872static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4873{
4874 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
4875}
4876
Avi Kivity4bff1e862011-04-20 13:37:53 +03004877static unsigned long emulator_get_cached_segment_base(
4878 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03004879{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004880 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03004881}
4882
Avi Kivity1aa36612011-04-27 13:20:30 +03004883static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
4884 struct desc_struct *desc, u32 *base3,
4885 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004886{
4887 struct kvm_segment var;
4888
Avi Kivity4bff1e862011-04-20 13:37:53 +03004889 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03004890 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004891
Gleb Natapov378a8b02013-01-21 15:36:48 +02004892 if (var.unusable) {
4893 memset(desc, 0, sizeof(*desc));
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004894 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02004895 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004896
4897 if (var.g)
4898 var.limit >>= 12;
4899 set_desc_limit(desc, var.limit);
4900 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02004901#ifdef CONFIG_X86_64
4902 if (base3)
4903 *base3 = var.base >> 32;
4904#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004905 desc->type = var.type;
4906 desc->s = var.s;
4907 desc->dpl = var.dpl;
4908 desc->p = var.present;
4909 desc->avl = var.avl;
4910 desc->l = var.l;
4911 desc->d = var.db;
4912 desc->g = var.g;
4913
4914 return true;
4915}
4916
Avi Kivity1aa36612011-04-27 13:20:30 +03004917static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
4918 struct desc_struct *desc, u32 base3,
4919 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004920{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004921 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004922 struct kvm_segment var;
4923
Avi Kivity1aa36612011-04-27 13:20:30 +03004924 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004925 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02004926#ifdef CONFIG_X86_64
4927 var.base |= ((u64)base3) << 32;
4928#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004929 var.limit = get_desc_limit(desc);
4930 if (desc->g)
4931 var.limit = (var.limit << 12) | 0xfff;
4932 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004933 var.dpl = desc->dpl;
4934 var.db = desc->d;
4935 var.s = desc->s;
4936 var.l = desc->l;
4937 var.g = desc->g;
4938 var.avl = desc->avl;
4939 var.present = desc->p;
4940 var.unusable = !var.present;
4941 var.padding = 0;
4942
4943 kvm_set_segment(vcpu, &var, seg);
4944 return;
4945}
4946
Avi Kivity717746e2011-04-20 13:37:53 +03004947static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
4948 u32 msr_index, u64 *pdata)
4949{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004950 struct msr_data msr;
4951 int r;
4952
4953 msr.index = msr_index;
4954 msr.host_initiated = false;
4955 r = kvm_get_msr(emul_to_vcpu(ctxt), &msr);
4956 if (r)
4957 return r;
4958
4959 *pdata = msr.data;
4960 return 0;
Avi Kivity717746e2011-04-20 13:37:53 +03004961}
4962
4963static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
4964 u32 msr_index, u64 data)
4965{
Will Auld8fe8ab42012-11-29 12:42:12 -08004966 struct msr_data msr;
4967
4968 msr.data = data;
4969 msr.index = msr_index;
4970 msr.host_initiated = false;
4971 return kvm_set_msr(emul_to_vcpu(ctxt), &msr);
Avi Kivity717746e2011-04-20 13:37:53 +03004972}
4973
Paolo Bonzini64d60672015-05-07 11:36:11 +02004974static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
4975{
4976 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4977
4978 return vcpu->arch.smbase;
4979}
4980
4981static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
4982{
4983 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4984
4985 vcpu->arch.smbase = smbase;
4986}
4987
Nadav Amit67f4d422014-06-02 18:34:09 +03004988static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
4989 u32 pmc)
4990{
Wei Huangc6702c92015-06-19 13:44:45 +02004991 return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03004992}
4993
Avi Kivity222d21a2011-11-10 14:57:30 +02004994static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
4995 u32 pmc, u64 *pdata)
4996{
Wei Huangc6702c92015-06-19 13:44:45 +02004997 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02004998}
4999
Avi Kivity6c3287f2011-04-20 15:43:05 +03005000static void emulator_halt(struct x86_emulate_ctxt *ctxt)
5001{
5002 emul_to_vcpu(ctxt)->arch.halt_request = 1;
5003}
5004
Avi Kivity5037f6f2011-03-28 16:53:59 +02005005static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
5006{
5007 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03005008 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02005009 /*
5010 * CR0.TS may reference the host fpu state, not the guest fpu state,
5011 * so it may be clear at this point.
5012 */
5013 clts();
5014}
5015
5016static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
5017{
5018 preempt_enable();
5019}
5020
Avi Kivity29535382011-04-20 13:37:53 +03005021static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005022 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005023 enum x86_intercept_stage stage)
5024{
Avi Kivity29535382011-04-20 13:37:53 +03005025 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02005026}
5027
Avi Kivity0017f932012-06-07 14:10:16 +03005028static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005029 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
5030{
Avi Kivity0017f932012-06-07 14:10:16 +03005031 kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005032}
5033
Avi Kivitydd856ef2012-08-27 23:46:17 +03005034static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
5035{
5036 return kvm_register_read(emul_to_vcpu(ctxt), reg);
5037}
5038
5039static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
5040{
5041 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
5042}
5043
Nadav Amit801806d2015-01-26 09:32:23 +02005044static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
5045{
5046 kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked);
5047}
5048
Mathias Krause0225fb52012-08-30 01:30:16 +02005049static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03005050 .read_gpr = emulator_read_gpr,
5051 .write_gpr = emulator_write_gpr,
Gleb Natapov1871c602010-02-10 14:21:32 +02005052 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005053 .write_std = kvm_write_guest_virt_system,
Radim Krčmář7a036a62015-10-30 16:36:24 +01005054 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02005055 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005056 .read_emulated = emulator_read_emulated,
5057 .write_emulated = emulator_write_emulated,
5058 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03005059 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005060 .pio_in_emulated = emulator_pio_in_emulated,
5061 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03005062 .get_segment = emulator_get_segment,
5063 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03005064 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005065 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005066 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005067 .set_gdt = emulator_set_gdt,
5068 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02005069 .get_cr = emulator_get_cr,
5070 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02005071 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03005072 .get_dr = emulator_get_dr,
5073 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02005074 .get_smbase = emulator_get_smbase,
5075 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03005076 .set_msr = emulator_set_msr,
5077 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03005078 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02005079 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03005080 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03005081 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03005082 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02005083 .get_fpu = emulator_get_fpu,
5084 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005085 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005086 .get_cpuid = emulator_get_cpuid,
Nadav Amit801806d2015-01-26 09:32:23 +02005087 .set_nmi_mask = emulator_set_nmi_mask,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005088};
5089
Gleb Natapov95cb2292010-04-28 19:15:43 +03005090static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
5091{
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005092 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03005093 /*
5094 * an sti; sti; sequence only disable interrupts for the first
5095 * instruction. So, if the last instruction, be it emulated or
5096 * not, left the system with the INT_STI flag enabled, it
5097 * means that the last instruction is an sti. We should not
5098 * leave the flag on in this case. The same goes for mov ss
5099 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005100 if (int_shadow & mask)
5101 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005102 if (unlikely(int_shadow || mask)) {
Gleb Natapov95cb2292010-04-28 19:15:43 +03005103 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005104 if (!mask)
5105 kvm_make_request(KVM_REQ_EVENT, vcpu);
5106 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03005107}
5108
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005109static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03005110{
5111 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02005112 if (ctxt->exception.vector == PF_VECTOR)
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005113 return kvm_propagate_fault(vcpu, &ctxt->exception);
5114
5115 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02005116 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
5117 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03005118 else
Avi Kivityda9cb572010-11-22 17:53:21 +02005119 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005120 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03005121}
5122
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005123static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
5124{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005125 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005126 int cs_db, cs_l;
5127
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005128 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5129
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005130 ctxt->eflags = kvm_get_rflags(vcpu);
5131 ctxt->eip = kvm_rip_read(vcpu);
5132 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
5133 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03005134 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005135 cs_db ? X86EMUL_MODE_PROT32 :
5136 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005137 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005138 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
5139 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005140 ctxt->emul_flags = vcpu->arch.hflags;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005141
Avi Kivitydd856ef2012-08-27 23:46:17 +03005142 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005143 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005144}
5145
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005146int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02005147{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005148 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02005149 int ret;
5150
5151 init_emulate_ctxt(vcpu);
5152
Avi Kivity9dac77f2011-06-01 15:34:25 +03005153 ctxt->op_bytes = 2;
5154 ctxt->ad_bytes = 2;
5155 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005156 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02005157
5158 if (ret != X86EMUL_CONTINUE)
5159 return EMULATE_FAIL;
5160
Avi Kivity9dac77f2011-06-01 15:34:25 +03005161 ctxt->eip = ctxt->_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005162 kvm_rip_write(vcpu, ctxt->eip);
5163 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02005164
5165 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005166 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02005167 else
5168 vcpu->arch.interrupt.pending = false;
5169
5170 return EMULATE_DONE;
5171}
5172EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
5173
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005174static int handle_emulation_failure(struct kvm_vcpu *vcpu)
5175{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005176 int r = EMULATE_DONE;
5177
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005178 ++vcpu->stat.insn_emulation_fail;
5179 trace_kvm_emulate_insn_failed(vcpu);
Nadav Amita2b9e6c2014-09-17 02:50:50 +03005180 if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005181 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5182 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5183 vcpu->run->internal.ndata = 0;
5184 r = EMULATE_FAIL;
5185 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005186 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005187
5188 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005189}
5190
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005191static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2,
Gleb Natapov991eebf2013-04-11 12:10:51 +03005192 bool write_fault_to_shadow_pgtable,
5193 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03005194{
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005195 gpa_t gpa = cr2;
Dan Williamsba049e92016-01-15 16:56:11 -08005196 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005197
Gleb Natapov991eebf2013-04-11 12:10:51 +03005198 if (emulation_type & EMULTYPE_NO_REEXECUTE)
5199 return false;
5200
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005201 if (!vcpu->arch.mmu.direct_map) {
5202 /*
5203 * Write permission should be allowed since only
5204 * write access need to be emulated.
5205 */
5206 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03005207
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005208 /*
5209 * If the mapping is invalid in guest, let cpu retry
5210 * it to generate fault.
5211 */
5212 if (gpa == UNMAPPED_GVA)
5213 return true;
5214 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005215
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005216 /*
5217 * Do not retry the unhandleable instruction if it faults on the
5218 * readonly host memory, otherwise it will goto a infinite loop:
5219 * retry instruction -> write #PF -> emulation fail -> retry
5220 * instruction -> ...
5221 */
5222 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005223
5224 /*
5225 * If the instruction failed on the error pfn, it can not be fixed,
5226 * report the error to userspace.
5227 */
5228 if (is_error_noslot_pfn(pfn))
5229 return false;
5230
5231 kvm_release_pfn_clean(pfn);
5232
5233 /* The instructions are well-emulated on direct mmu. */
5234 if (vcpu->arch.mmu.direct_map) {
5235 unsigned int indirect_shadow_pages;
5236
5237 spin_lock(&vcpu->kvm->mmu_lock);
5238 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
5239 spin_unlock(&vcpu->kvm->mmu_lock);
5240
5241 if (indirect_shadow_pages)
5242 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
5243
Gleb Natapova6f177e2010-07-08 12:41:12 +03005244 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005245 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005246
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005247 /*
5248 * if emulation was due to access to shadowed page table
5249 * and it failed try to unshadow page and re-enter the
5250 * guest to let CPU execute the instruction.
5251 */
5252 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005253
5254 /*
5255 * If the access faults on its page table, it can not
5256 * be fixed by unprotecting shadow page and it should
5257 * be reported to userspace.
5258 */
5259 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005260}
5261
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005262static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
5263 unsigned long cr2, int emulation_type)
5264{
5265 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5266 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
5267
5268 last_retry_eip = vcpu->arch.last_retry_eip;
5269 last_retry_addr = vcpu->arch.last_retry_addr;
5270
5271 /*
5272 * If the emulation is caused by #PF and it is non-page_table
5273 * writing instruction, it means the VM-EXIT is caused by shadow
5274 * page protected, we can zap the shadow page and retry this
5275 * instruction directly.
5276 *
5277 * Note: if the guest uses a non-page-table modifying instruction
5278 * on the PDE that points to the instruction, then we will unmap
5279 * the instruction and go to an infinite loop. So, we cache the
5280 * last retried eip and the last fault address, if we meet the eip
5281 * and the address again, we can break out of the potential infinite
5282 * loop.
5283 */
5284 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
5285
5286 if (!(emulation_type & EMULTYPE_RETRY))
5287 return false;
5288
5289 if (x86_page_table_writing_insn(ctxt))
5290 return false;
5291
5292 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
5293 return false;
5294
5295 vcpu->arch.last_retry_eip = ctxt->eip;
5296 vcpu->arch.last_retry_addr = cr2;
5297
5298 if (!vcpu->arch.mmu.direct_map)
5299 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
5300
Xiao Guangrong22368022013-01-13 23:44:12 +08005301 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005302
5303 return true;
5304}
5305
Gleb Natapov716d51a2012-09-03 15:24:26 +03005306static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
5307static int complete_emulated_pio(struct kvm_vcpu *vcpu);
5308
Paolo Bonzini64d60672015-05-07 11:36:11 +02005309static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02005310{
Paolo Bonzini64d60672015-05-07 11:36:11 +02005311 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02005312 /* This is a good place to trace that we are exiting SMM. */
5313 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
5314
Paolo Bonzinic43203c2016-06-01 22:26:00 +02005315 /* Process a latched INIT or SMI, if any. */
5316 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005317 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02005318
5319 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005320}
5321
5322static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags)
5323{
5324 unsigned changed = vcpu->arch.hflags ^ emul_flags;
5325
Paolo Bonzinia5845392015-04-01 18:18:53 +02005326 vcpu->arch.hflags = emul_flags;
Paolo Bonzini64d60672015-05-07 11:36:11 +02005327
5328 if (changed & HF_SMM_MASK)
5329 kvm_smm_changed(vcpu);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005330}
5331
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005332static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
5333 unsigned long *db)
5334{
5335 u32 dr6 = 0;
5336 int i;
5337 u32 enable, rwlen;
5338
5339 enable = dr7;
5340 rwlen = dr7 >> 16;
5341 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
5342 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
5343 dr6 |= (1 << i);
5344 return dr6;
5345}
5346
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005347static void kvm_vcpu_check_singlestep(struct kvm_vcpu *vcpu, unsigned long rflags, int *r)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005348{
5349 struct kvm_run *kvm_run = vcpu->run;
5350
5351 /*
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005352 * rflags is the old, "raw" value of the flags. The new value has
5353 * not been saved yet.
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005354 *
5355 * This is correct even for TF set by the guest, because "the
5356 * processor will not generate this exception after the instruction
5357 * that sets the TF flag".
5358 */
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005359 if (unlikely(rflags & X86_EFLAGS_TF)) {
5360 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005361 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 |
5362 DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005363 kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip;
5364 kvm_run->debug.arch.exception = DB_VECTOR;
5365 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5366 *r = EMULATE_USER_EXIT;
5367 } else {
5368 vcpu->arch.emulate_ctxt.eflags &= ~X86_EFLAGS_TF;
5369 /*
5370 * "Certain debug exceptions may clear bit 0-3. The
5371 * remaining contents of the DR6 register are never
5372 * cleared by the processor".
5373 */
5374 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005375 vcpu->arch.dr6 |= DR6_BS | DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005376 kvm_queue_exception(vcpu, DB_VECTOR);
5377 }
5378 }
5379}
5380
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005381static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
5382{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005383 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
5384 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005385 struct kvm_run *kvm_run = vcpu->run;
5386 unsigned long eip = kvm_get_linear_rip(vcpu);
5387 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005388 vcpu->arch.guest_debug_dr7,
5389 vcpu->arch.eff_db);
5390
5391 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005392 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02005393 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005394 kvm_run->debug.arch.exception = DB_VECTOR;
5395 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5396 *r = EMULATE_USER_EXIT;
5397 return true;
5398 }
5399 }
5400
Nadav Amit4161a562014-07-17 01:19:31 +03005401 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
5402 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005403 unsigned long eip = kvm_get_linear_rip(vcpu);
5404 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005405 vcpu->arch.dr7,
5406 vcpu->arch.db);
5407
5408 if (dr6 != 0) {
5409 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005410 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005411 kvm_queue_exception(vcpu, DB_VECTOR);
5412 *r = EMULATE_DONE;
5413 return true;
5414 }
5415 }
5416
5417 return false;
5418}
5419
Andre Przywara51d8b662010-12-21 11:12:02 +01005420int x86_emulate_instruction(struct kvm_vcpu *vcpu,
5421 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01005422 int emulation_type,
5423 void *insn,
5424 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005425{
Gleb Natapov95cb2292010-04-28 19:15:43 +03005426 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005427 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005428 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005429 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005430
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005431 /*
5432 * Clear write_fault_to_shadow_pgtable here to ensure it is
5433 * never reused.
5434 */
5435 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03005436 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03005437
Sheng Yang571008d2008-01-02 14:49:22 +08005438 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005439 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005440
5441 /*
5442 * We will reenter on the same instruction since
5443 * we do not set complete_userspace_io. This does not
5444 * handle watchpoints yet, those would be handled in
5445 * the emulate_ops.
5446 */
5447 if (kvm_vcpu_check_breakpoint(vcpu, &r))
5448 return r;
5449
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005450 ctxt->interruptibility = 0;
5451 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02005452 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005453 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005454
Borislav Petkovb51e9742013-09-22 16:44:52 +02005455 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02005456
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005457 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02005458
Avi Kivitye46479f2010-04-11 13:05:16 +03005459 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02005460 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09005461 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02005462 if (emulation_type & EMULTYPE_TRAP_UD)
5463 return EMULATE_FAIL;
Gleb Natapov991eebf2013-04-11 12:10:51 +03005464 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5465 emulation_type))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005466 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005467 if (emulation_type & EMULTYPE_SKIP)
5468 return EMULATE_FAIL;
5469 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005470 }
5471 }
5472
Gleb Natapovba8afb62009-04-12 13:36:57 +03005473 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03005474 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03005475 if (ctxt->eflags & X86_EFLAGS_RF)
5476 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Gleb Natapovba8afb62009-04-12 13:36:57 +03005477 return EMULATE_DONE;
5478 }
5479
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005480 if (retry_instruction(ctxt, cr2, emulation_type))
5481 return EMULATE_DONE;
5482
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005483 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005484 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005485 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
5486 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03005487 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005488 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005489
Gleb Natapov5cd21912010-03-18 15:20:26 +02005490restart:
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005491 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005492
Joerg Roedel775fde82011-04-04 12:39:24 +02005493 if (r == EMULATION_INTERCEPTED)
5494 return EMULATE_DONE;
5495
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005496 if (r == EMULATION_FAILED) {
Gleb Natapov991eebf2013-04-11 12:10:51 +03005497 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5498 emulation_type))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005499 return EMULATE_DONE;
5500
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005501 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005502 }
5503
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005504 if (ctxt->have_exception) {
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005505 r = EMULATE_DONE;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005506 if (inject_emulated_exception(vcpu))
5507 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005508 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02005509 if (!vcpu->arch.pio.in) {
5510 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03005511 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02005512 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005513 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005514 vcpu->arch.complete_userspace_io = complete_emulated_pio;
5515 }
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005516 r = EMULATE_USER_EXIT;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005517 } else if (vcpu->mmio_needed) {
5518 if (!vcpu->mmio_is_write)
5519 writeback = false;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005520 r = EMULATE_USER_EXIT;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005521 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005522 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03005523 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005524 else
5525 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03005526
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005527 if (writeback) {
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005528 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005529 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005530 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005531 if (vcpu->arch.hflags != ctxt->emul_flags)
5532 kvm_set_hflags(vcpu, ctxt->emul_flags);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005533 kvm_rip_write(vcpu, ctxt->eip);
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005534 if (r == EMULATE_DONE)
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005535 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
Nadav Amit38827db2014-11-02 11:54:53 +02005536 if (!ctxt->have_exception ||
5537 exception_type(ctxt->exception.vector) == EXCPT_TRAP)
5538 __kvm_set_rflags(vcpu, ctxt->eflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005539
5540 /*
5541 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
5542 * do nothing, and it will be requested again as soon as
5543 * the shadow expires. But we still need to check here,
5544 * because POPF has no interrupt shadow.
5545 */
5546 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
5547 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005548 } else
5549 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005550
Gleb Natapove85d28f2010-07-29 15:11:52 +03005551 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005552}
Andre Przywara51d8b662010-12-21 11:12:02 +01005553EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005554
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005555int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005556{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005557 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005558 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5559 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005560 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005561 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005562 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005563}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005564EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005565
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005566static void tsc_bad(void *info)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005567{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005568 __this_cpu_write(cpu_tsc_khz, 0);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005569}
5570
5571static void tsc_khz_changed(void *data)
5572{
5573 struct cpufreq_freqs *freq = data;
5574 unsigned long khz = 0;
5575
5576 if (data)
5577 khz = freq->new;
5578 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5579 khz = cpufreq_quick_get(raw_smp_processor_id());
5580 if (!khz)
5581 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005582 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005583}
5584
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005585static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5586 void *data)
5587{
5588 struct cpufreq_freqs *freq = data;
5589 struct kvm *kvm;
5590 struct kvm_vcpu *vcpu;
5591 int i, send_ipi = 0;
5592
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005593 /*
5594 * We allow guests to temporarily run on slowing clocks,
5595 * provided we notify them after, or to run on accelerating
5596 * clocks, provided we notify them before. Thus time never
5597 * goes backwards.
5598 *
5599 * However, we have a problem. We can't atomically update
5600 * the frequency of a given CPU from this function; it is
5601 * merely a notifier, which can be called from any CPU.
5602 * Changing the TSC frequency at arbitrary points in time
5603 * requires a recomputation of local variables related to
5604 * the TSC for each VCPU. We must flag these local variables
5605 * to be updated and be sure the update takes place with the
5606 * new frequency before any guests proceed.
5607 *
5608 * Unfortunately, the combination of hotplug CPU and frequency
5609 * change creates an intractable locking scenario; the order
5610 * of when these callouts happen is undefined with respect to
5611 * CPU hotplug, and they can race with each other. As such,
5612 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5613 * undefined; you can actually have a CPU frequency change take
5614 * place in between the computation of X and the setting of the
5615 * variable. To protect against this problem, all updates of
5616 * the per_cpu tsc_khz variable are done in an interrupt
5617 * protected IPI, and all callers wishing to update the value
5618 * must wait for a synchronous IPI to complete (which is trivial
5619 * if the caller is on the CPU already). This establishes the
5620 * necessary total order on variable updates.
5621 *
5622 * Note that because a guest time update may take place
5623 * anytime after the setting of the VCPU's request bit, the
5624 * correct TSC value must be set before the request. However,
5625 * to ensure the update actually makes it to any guest which
5626 * starts running in hardware virtualization between the set
5627 * and the acquisition of the spinlock, we must also ping the
5628 * CPU after setting the request bit.
5629 *
5630 */
5631
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005632 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5633 return 0;
5634 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5635 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005636
5637 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005638
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005639 spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005640 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005641 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005642 if (vcpu->cpu != freq->cpu)
5643 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005644 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005645 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005646 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005647 }
5648 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005649 spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005650
5651 if (freq->old < freq->new && send_ipi) {
5652 /*
5653 * We upscale the frequency. Must make the guest
5654 * doesn't see old kvmclock values while running with
5655 * the new frequency, otherwise we risk the guest sees
5656 * time go backwards.
5657 *
5658 * In case we update the frequency for another cpu
5659 * (which might be in guest context) send an interrupt
5660 * to kick the cpu out of guest context. Next time
5661 * guest context is entered kvmclock will be updated,
5662 * so the guest will not see stale values.
5663 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005664 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005665 }
5666 return 0;
5667}
5668
5669static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005670 .notifier_call = kvmclock_cpufreq_notifier
5671};
5672
5673static int kvmclock_cpu_notifier(struct notifier_block *nfb,
5674 unsigned long action, void *hcpu)
5675{
5676 unsigned int cpu = (unsigned long)hcpu;
5677
5678 switch (action) {
5679 case CPU_ONLINE:
5680 case CPU_DOWN_FAILED:
5681 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
5682 break;
5683 case CPU_DOWN_PREPARE:
5684 smp_call_function_single(cpu, tsc_bad, NULL, 1);
5685 break;
5686 }
5687 return NOTIFY_OK;
5688}
5689
5690static struct notifier_block kvmclock_cpu_notifier_block = {
5691 .notifier_call = kvmclock_cpu_notifier,
5692 .priority = -INT_MAX
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005693};
5694
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005695static void kvm_timer_init(void)
5696{
5697 int cpu;
5698
Zachary Amsdenc2855452010-09-18 14:38:15 -10005699 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305700
5701 cpu_notifier_register_begin();
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005702 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005703#ifdef CONFIG_CPU_FREQ
5704 struct cpufreq_policy policy;
5705 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005706 cpu = get_cpu();
5707 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005708 if (policy.cpuinfo.max_freq)
5709 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005710 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005711#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005712 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5713 CPUFREQ_TRANSITION_NOTIFIER);
5714 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005715 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005716 for_each_online_cpu(cpu)
5717 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305718
5719 __register_hotcpu_notifier(&kvmclock_cpu_notifier_block);
5720 cpu_notifier_register_done();
5721
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005722}
5723
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005724static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5725
Gleb Natapovf5132b02011-11-10 14:57:22 +02005726int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005727{
Alex,Shi086c9852011-10-20 15:34:01 +08005728 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005729}
5730
5731static int kvm_is_user_mode(void)
5732{
5733 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005734
Alex,Shi086c9852011-10-20 15:34:01 +08005735 if (__this_cpu_read(current_vcpu))
5736 user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005737
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005738 return user_mode != 0;
5739}
5740
5741static unsigned long kvm_get_guest_ip(void)
5742{
5743 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005744
Alex,Shi086c9852011-10-20 15:34:01 +08005745 if (__this_cpu_read(current_vcpu))
5746 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005747
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005748 return ip;
5749}
5750
5751static struct perf_guest_info_callbacks kvm_guest_cbs = {
5752 .is_in_guest = kvm_is_in_guest,
5753 .is_user_mode = kvm_is_user_mode,
5754 .get_guest_ip = kvm_get_guest_ip,
5755};
5756
5757void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5758{
Alex,Shi086c9852011-10-20 15:34:01 +08005759 __this_cpu_write(current_vcpu, vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005760}
5761EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5762
5763void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5764{
Alex,Shi086c9852011-10-20 15:34:01 +08005765 __this_cpu_write(current_vcpu, NULL);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005766}
5767EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5768
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005769static void kvm_set_mmio_spte_mask(void)
5770{
5771 u64 mask;
5772 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5773
5774 /*
5775 * Set the reserved bits and the present bit of an paging-structure
5776 * entry to generate page fault with PFER.RSV = 1.
5777 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08005778 /* Mask the reserved physical address bits. */
Tiejun Chend1431482014-09-01 18:44:04 +08005779 mask = rsvd_bits(maxphyaddr, 51);
Xiao Guangrong885032b2013-06-07 16:51:23 +08005780
5781 /* Bit 62 is always reserved for 32bit host. */
5782 mask |= 0x3ull << 62;
5783
5784 /* Set the present bit. */
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005785 mask |= 1ull;
5786
5787#ifdef CONFIG_X86_64
5788 /*
5789 * If reserved bit is not supported, clear the present bit to disable
5790 * mmio page fault.
5791 */
5792 if (maxphyaddr == 52)
5793 mask &= ~1ull;
5794#endif
5795
5796 kvm_mmu_set_mmio_spte_mask(mask);
5797}
5798
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005799#ifdef CONFIG_X86_64
5800static void pvclock_gtod_update_fn(struct work_struct *work)
5801{
Marcelo Tosattid8281992012-11-27 23:29:01 -02005802 struct kvm *kvm;
5803
5804 struct kvm_vcpu *vcpu;
5805 int i;
5806
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005807 spin_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005808 list_for_each_entry(kvm, &vm_list, vm_list)
5809 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08005810 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005811 atomic_set(&kvm_guest_has_master_clock, 0);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005812 spin_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005813}
5814
5815static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
5816
5817/*
5818 * Notification about pvclock gtod data update.
5819 */
5820static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
5821 void *priv)
5822{
5823 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
5824 struct timekeeper *tk = priv;
5825
5826 update_pvclock_gtod(tk);
5827
5828 /* disable master clock if host does not trust, or does not
5829 * use, TSC clocksource
5830 */
5831 if (gtod->clock.vclock_mode != VCLOCK_TSC &&
5832 atomic_read(&kvm_guest_has_master_clock) != 0)
5833 queue_work(system_long_wq, &pvclock_gtod_work);
5834
5835 return 0;
5836}
5837
5838static struct notifier_block pvclock_gtod_notifier = {
5839 .notifier_call = pvclock_gtod_notify,
5840};
5841#endif
5842
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005843int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02005844{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005845 int r;
Mathias Krause6b61edf2013-06-26 20:36:23 +02005846 struct kvm_x86_ops *ops = opaque;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005847
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005848 if (kvm_x86_ops) {
5849 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005850 r = -EEXIST;
5851 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005852 }
5853
5854 if (!ops->cpu_has_kvm_support()) {
5855 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005856 r = -EOPNOTSUPP;
5857 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005858 }
5859 if (ops->disabled_by_bios()) {
5860 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005861 r = -EOPNOTSUPP;
5862 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005863 }
5864
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005865 r = -ENOMEM;
5866 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
5867 if (!shared_msrs) {
5868 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
5869 goto out;
5870 }
5871
Avi Kivity97db56c2008-01-13 13:23:56 +02005872 r = kvm_mmu_module_init();
5873 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005874 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02005875
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005876 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02005877
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005878 kvm_x86_ops = ops;
Paolo Bonzini920c8372014-03-26 15:54:00 +01005879
Sheng Yang7b523452008-04-25 21:13:50 +08005880 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005881 PT_DIRTY_MASK, PT64_NX_MASK, 0);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005882
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005883 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005884
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005885 perf_register_guest_info_callbacks(&kvm_guest_cbs);
5886
Borislav Petkovd366bf72016-04-04 22:25:02 +02005887 if (boot_cpu_has(X86_FEATURE_XSAVE))
Dexuan Cui2acf9232010-06-10 11:27:12 +08005888 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
5889
Gleb Natapovc5cc4212012-08-05 15:58:30 +03005890 kvm_lapic_init();
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005891#ifdef CONFIG_X86_64
5892 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
5893#endif
5894
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005895 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005896
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005897out_free_percpu:
5898 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005899out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005900 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02005901}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005902
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005903void kvm_arch_exit(void)
5904{
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005905 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
5906
Jan Kiszka888d2562009-04-17 19:24:58 +02005907 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5908 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
5909 CPUFREQ_TRANSITION_NOTIFIER);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005910 unregister_hotcpu_notifier(&kvmclock_cpu_notifier_block);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005911#ifdef CONFIG_X86_64
5912 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
5913#endif
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005914 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005915 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005916 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005917}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005918
Joel Schopp5cb56052015-03-02 13:43:31 -06005919int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05005920{
5921 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005922 if (lapic_in_kernel(vcpu)) {
Avi Kivitya4535292008-04-13 17:54:35 +03005923 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005924 return 1;
5925 } else {
5926 vcpu->run->exit_reason = KVM_EXIT_HLT;
5927 return 0;
5928 }
5929}
Joel Schopp5cb56052015-03-02 13:43:31 -06005930EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
5931
5932int kvm_emulate_halt(struct kvm_vcpu *vcpu)
5933{
5934 kvm_x86_ops->skip_emulated_instruction(vcpu);
5935 return kvm_vcpu_halt(vcpu);
5936}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005937EXPORT_SYMBOL_GPL(kvm_emulate_halt);
5938
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305939/*
5940 * kvm_pv_kick_cpu_op: Kick a vcpu.
5941 *
5942 * @apicid - apicid of vcpu to be kicked.
5943 */
5944static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
5945{
Raghavendra K T24d21662013-08-26 14:18:35 +05305946 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305947
Raghavendra K T24d21662013-08-26 14:18:35 +05305948 lapic_irq.shorthand = 0;
5949 lapic_irq.dest_mode = 0;
5950 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06005951 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305952
Raghavendra K T24d21662013-08-26 14:18:35 +05305953 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08005954 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305955}
5956
Andrey Smetanind62caab2015-11-10 15:36:33 +03005957void kvm_vcpu_deactivate_apicv(struct kvm_vcpu *vcpu)
5958{
5959 vcpu->arch.apicv_active = false;
5960 kvm_x86_ops->refresh_apicv_exec_ctrl(vcpu);
5961}
5962
Hollis Blanchard8776e512007-10-31 17:24:24 -05005963int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
5964{
5965 unsigned long nr, a0, a1, a2, a3, ret;
Nadav Amita449c7a2014-06-18 17:19:24 +03005966 int op_64_bit, r = 1;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005967
Joel Schopp5cb56052015-03-02 13:43:31 -06005968 kvm_x86_ops->skip_emulated_instruction(vcpu);
5969
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005970 if (kvm_hv_hypercall_enabled(vcpu->kvm))
5971 return kvm_hv_hypercall(vcpu);
5972
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005973 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
5974 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
5975 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
5976 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
5977 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005978
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005979 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005980
Nadav Amita449c7a2014-06-18 17:19:24 +03005981 op_64_bit = is_64_bit_mode(vcpu);
5982 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05005983 nr &= 0xFFFFFFFF;
5984 a0 &= 0xFFFFFFFF;
5985 a1 &= 0xFFFFFFFF;
5986 a2 &= 0xFFFFFFFF;
5987 a3 &= 0xFFFFFFFF;
5988 }
5989
Jan Kiszka07708c42009-08-03 18:43:28 +02005990 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
5991 ret = -KVM_EPERM;
5992 goto out;
5993 }
5994
Hollis Blanchard8776e512007-10-31 17:24:24 -05005995 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02005996 case KVM_HC_VAPIC_POLL_IRQ:
5997 ret = 0;
5998 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305999 case KVM_HC_KICK_CPU:
6000 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
6001 ret = 0;
6002 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006003 default:
6004 ret = -KVM_ENOSYS;
6005 break;
6006 }
Jan Kiszka07708c42009-08-03 18:43:28 +02006007out:
Nadav Amita449c7a2014-06-18 17:19:24 +03006008 if (!op_64_bit)
6009 ret = (u32)ret;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006010 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05306011 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05006012 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006013}
6014EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
6015
Jan Kiszkab6785de2012-09-20 07:43:17 +02006016static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006017{
Avi Kivityd6aa1002011-04-20 15:47:13 +03006018 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006019 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006020 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006021
Hollis Blanchard8776e512007-10-31 17:24:24 -05006022 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006023
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006024 return emulator_write_emulated(ctxt, rip, instruction, 3, NULL);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006025}
6026
Avi Kivity851ba692009-08-24 11:10:17 +03006027static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006028{
Matt Gingell782d4222015-11-16 15:26:00 -08006029 return vcpu->run->request_interrupt_window &&
6030 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006031}
6032
Avi Kivity851ba692009-08-24 11:10:17 +03006033static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006034{
Avi Kivity851ba692009-08-24 11:10:17 +03006035 struct kvm_run *kvm_run = vcpu->run;
6036
Jan Kiszka91586a32009-10-05 13:07:21 +02006037 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02006038 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006039 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006040 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01006041 kvm_run->ready_for_interrupt_injection =
6042 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08006043 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006044}
6045
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006046static void update_cr8_intercept(struct kvm_vcpu *vcpu)
6047{
6048 int max_irr, tpr;
6049
6050 if (!kvm_x86_ops->update_cr8_intercept)
6051 return;
6052
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006053 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03006054 return;
6055
Andrey Smetanind62caab2015-11-10 15:36:33 +03006056 if (vcpu->arch.apicv_active)
6057 return;
6058
Gleb Natapov8db3baa2009-05-11 13:35:54 +03006059 if (!vcpu->arch.apic->vapic_addr)
6060 max_irr = kvm_lapic_find_highest_irr(vcpu);
6061 else
6062 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006063
6064 if (max_irr != -1)
6065 max_irr >>= 4;
6066
6067 tpr = kvm_lapic_get_cr8(vcpu);
6068
6069 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
6070}
6071
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006072static int inject_pending_event(struct kvm_vcpu *vcpu, bool req_int_win)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006073{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006074 int r;
6075
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006076 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006077 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02006078 trace_kvm_inj_exception(vcpu->arch.exception.nr,
6079 vcpu->arch.exception.has_error_code,
6080 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03006081
6082 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
6083 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
6084 X86_EFLAGS_RF);
6085
Nadav Amit6bdf0662014-09-30 20:49:14 +03006086 if (vcpu->arch.exception.nr == DB_VECTOR &&
6087 (vcpu->arch.dr7 & DR7_GD)) {
6088 vcpu->arch.dr7 &= ~DR7_GD;
6089 kvm_update_dr7(vcpu);
6090 }
6091
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006092 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
6093 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02006094 vcpu->arch.exception.error_code,
6095 vcpu->arch.exception.reinject);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006096 return 0;
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006097 }
6098
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006099 if (vcpu->arch.nmi_injected) {
6100 kvm_x86_ops->set_nmi(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006101 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006102 }
6103
6104 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006105 kvm_x86_ops->set_irq(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006106 return 0;
6107 }
6108
6109 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6110 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6111 if (r != 0)
6112 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006113 }
6114
6115 /* try to inject new event if pending */
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006116 if (vcpu->arch.smi_pending && !is_smm(vcpu)) {
6117 vcpu->arch.smi_pending = false;
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006118 enter_smm(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006119 } else if (vcpu->arch.nmi_pending && kvm_x86_ops->nmi_allowed(vcpu)) {
Yuki Shibuya321c5652016-03-24 05:17:03 +00006120 --vcpu->arch.nmi_pending;
6121 vcpu->arch.nmi_injected = true;
6122 kvm_x86_ops->set_nmi(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006123 } else if (kvm_cpu_has_injectable_intr(vcpu)) {
Bandan Das9242b5b2014-07-08 00:30:23 -04006124 /*
6125 * Because interrupts can be injected asynchronously, we are
6126 * calling check_nested_events again here to avoid a race condition.
6127 * See https://lkml.org/lkml/2014/7/2/60 for discussion about this
6128 * proposal and current concerns. Perhaps we should be setting
6129 * KVM_REQ_EVENT only on certain events and not unconditionally?
6130 */
6131 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6132 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6133 if (r != 0)
6134 return r;
6135 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006136 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006137 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
6138 false);
6139 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006140 }
6141 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006142
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006143 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006144}
6145
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006146static void process_nmi(struct kvm_vcpu *vcpu)
6147{
6148 unsigned limit = 2;
6149
6150 /*
6151 * x86 is limited to one NMI running, and one NMI pending after it.
6152 * If an NMI is already in progress, limit further NMIs to just one.
6153 * Otherwise, allow two (and we'll inject the first one immediately).
6154 */
6155 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
6156 limit = 1;
6157
6158 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
6159 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
6160 kvm_make_request(KVM_REQ_EVENT, vcpu);
6161}
6162
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006163#define put_smstate(type, buf, offset, val) \
6164 *(type *)((buf) + (offset) - 0x7e00) = val
6165
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006166static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006167{
6168 u32 flags = 0;
6169 flags |= seg->g << 23;
6170 flags |= seg->db << 22;
6171 flags |= seg->l << 21;
6172 flags |= seg->avl << 20;
6173 flags |= seg->present << 15;
6174 flags |= seg->dpl << 13;
6175 flags |= seg->s << 12;
6176 flags |= seg->type << 8;
6177 return flags;
6178}
6179
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006180static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006181{
6182 struct kvm_segment seg;
6183 int offset;
6184
6185 kvm_get_segment(vcpu, &seg, n);
6186 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
6187
6188 if (n < 3)
6189 offset = 0x7f84 + n * 12;
6190 else
6191 offset = 0x7f2c + (n - 3) * 12;
6192
6193 put_smstate(u32, buf, offset + 8, seg.base);
6194 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006195 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006196}
6197
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006198#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006199static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006200{
6201 struct kvm_segment seg;
6202 int offset;
6203 u16 flags;
6204
6205 kvm_get_segment(vcpu, &seg, n);
6206 offset = 0x7e00 + n * 16;
6207
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006208 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006209 put_smstate(u16, buf, offset, seg.selector);
6210 put_smstate(u16, buf, offset + 2, flags);
6211 put_smstate(u32, buf, offset + 4, seg.limit);
6212 put_smstate(u64, buf, offset + 8, seg.base);
6213}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006214#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006215
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006216static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006217{
6218 struct desc_ptr dt;
6219 struct kvm_segment seg;
6220 unsigned long val;
6221 int i;
6222
6223 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
6224 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
6225 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
6226 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
6227
6228 for (i = 0; i < 8; i++)
6229 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
6230
6231 kvm_get_dr(vcpu, 6, &val);
6232 put_smstate(u32, buf, 0x7fcc, (u32)val);
6233 kvm_get_dr(vcpu, 7, &val);
6234 put_smstate(u32, buf, 0x7fc8, (u32)val);
6235
6236 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6237 put_smstate(u32, buf, 0x7fc4, seg.selector);
6238 put_smstate(u32, buf, 0x7f64, seg.base);
6239 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006240 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006241
6242 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6243 put_smstate(u32, buf, 0x7fc0, seg.selector);
6244 put_smstate(u32, buf, 0x7f80, seg.base);
6245 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006246 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006247
6248 kvm_x86_ops->get_gdt(vcpu, &dt);
6249 put_smstate(u32, buf, 0x7f74, dt.address);
6250 put_smstate(u32, buf, 0x7f70, dt.size);
6251
6252 kvm_x86_ops->get_idt(vcpu, &dt);
6253 put_smstate(u32, buf, 0x7f58, dt.address);
6254 put_smstate(u32, buf, 0x7f54, dt.size);
6255
6256 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006257 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006258
6259 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
6260
6261 /* revision id */
6262 put_smstate(u32, buf, 0x7efc, 0x00020000);
6263 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
6264}
6265
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006266static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006267{
6268#ifdef CONFIG_X86_64
6269 struct desc_ptr dt;
6270 struct kvm_segment seg;
6271 unsigned long val;
6272 int i;
6273
6274 for (i = 0; i < 16; i++)
6275 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
6276
6277 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
6278 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
6279
6280 kvm_get_dr(vcpu, 6, &val);
6281 put_smstate(u64, buf, 0x7f68, val);
6282 kvm_get_dr(vcpu, 7, &val);
6283 put_smstate(u64, buf, 0x7f60, val);
6284
6285 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
6286 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
6287 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
6288
6289 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
6290
6291 /* revision id */
6292 put_smstate(u32, buf, 0x7efc, 0x00020064);
6293
6294 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
6295
6296 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6297 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006298 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006299 put_smstate(u32, buf, 0x7e94, seg.limit);
6300 put_smstate(u64, buf, 0x7e98, seg.base);
6301
6302 kvm_x86_ops->get_idt(vcpu, &dt);
6303 put_smstate(u32, buf, 0x7e84, dt.size);
6304 put_smstate(u64, buf, 0x7e88, dt.address);
6305
6306 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6307 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006308 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006309 put_smstate(u32, buf, 0x7e74, seg.limit);
6310 put_smstate(u64, buf, 0x7e78, seg.base);
6311
6312 kvm_x86_ops->get_gdt(vcpu, &dt);
6313 put_smstate(u32, buf, 0x7e64, dt.size);
6314 put_smstate(u64, buf, 0x7e68, dt.address);
6315
6316 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006317 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006318#else
6319 WARN_ON_ONCE(1);
6320#endif
6321}
6322
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006323static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02006324{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006325 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02006326 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006327 char buf[512];
6328 u32 cr0;
6329
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006330 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
6331 vcpu->arch.hflags |= HF_SMM_MASK;
6332 memset(buf, 0, 512);
6333 if (guest_cpuid_has_longmode(vcpu))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006334 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006335 else
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006336 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006337
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006338 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006339
6340 if (kvm_x86_ops->get_nmi_mask(vcpu))
6341 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
6342 else
6343 kvm_x86_ops->set_nmi_mask(vcpu, true);
6344
6345 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
6346 kvm_rip_write(vcpu, 0x8000);
6347
6348 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
6349 kvm_x86_ops->set_cr0(vcpu, cr0);
6350 vcpu->arch.cr0 = cr0;
6351
6352 kvm_x86_ops->set_cr4(vcpu, 0);
6353
Paolo Bonzini18c36262015-08-07 12:27:54 +02006354 /* Undocumented: IDT limit is set to zero on entry to SMM. */
6355 dt.address = dt.size = 0;
6356 kvm_x86_ops->set_idt(vcpu, &dt);
6357
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006358 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
6359
6360 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
6361 cs.base = vcpu->arch.smbase;
6362
6363 ds.selector = 0;
6364 ds.base = 0;
6365
6366 cs.limit = ds.limit = 0xffffffff;
6367 cs.type = ds.type = 0x3;
6368 cs.dpl = ds.dpl = 0;
6369 cs.db = ds.db = 0;
6370 cs.s = ds.s = 1;
6371 cs.l = ds.l = 0;
6372 cs.g = ds.g = 1;
6373 cs.avl = ds.avl = 0;
6374 cs.present = ds.present = 1;
6375 cs.unusable = ds.unusable = 0;
6376 cs.padding = ds.padding = 0;
6377
6378 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
6379 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
6380 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
6381 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
6382 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
6383 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
6384
6385 if (guest_cpuid_has_longmode(vcpu))
6386 kvm_x86_ops->set_efer(vcpu, 0);
6387
6388 kvm_update_cpuid(vcpu);
6389 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006390}
6391
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006392static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006393{
6394 vcpu->arch.smi_pending = true;
6395 kvm_make_request(KVM_REQ_EVENT, vcpu);
6396}
6397
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01006398void kvm_make_scan_ioapic_request(struct kvm *kvm)
6399{
6400 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
6401}
6402
Yang Zhang3d81bc72013-04-11 19:25:13 +08006403static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006404{
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006405 u64 eoi_exit_bitmap[4];
6406
Yang Zhang3d81bc72013-04-11 19:25:13 +08006407 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
6408 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006409
Andrey Smetanin63086302015-11-10 15:36:32 +03006410 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006411
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07006412 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03006413 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006414 else {
Andrey Smetanind62caab2015-11-10 15:36:33 +03006415 if (vcpu->arch.apicv_active)
6416 kvm_x86_ops->sync_pir_to_irr(vcpu);
Andrey Smetanin63086302015-11-10 15:36:32 +03006417 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006418 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006419 bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors,
6420 vcpu_to_synic(vcpu)->vec_bitmap, 256);
6421 kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006422}
6423
Radim Krčmářa70656b2014-09-18 12:38:36 -04006424static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu)
6425{
6426 ++vcpu->stat.tlb_flush;
6427 kvm_x86_ops->tlb_flush(vcpu);
6428}
6429
Tang Chen4256f432014-09-24 15:57:54 +08006430void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
6431{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006432 struct page *page = NULL;
6433
Paolo Bonzini35754c92015-07-29 12:05:37 +02006434 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02006435 return;
6436
Tang Chen4256f432014-09-24 15:57:54 +08006437 if (!kvm_x86_ops->set_apic_access_page_addr)
6438 return;
6439
Tang Chenc24ae0d2014-09-24 15:57:58 +08006440 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Andrea Arcangelie8fd5e92015-05-08 14:32:56 +02006441 if (is_error_page(page))
6442 return;
Tang Chenc24ae0d2014-09-24 15:57:58 +08006443 kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page));
6444
6445 /*
6446 * Do not pin apic access page in memory, the MMU notifier
6447 * will call us again if it is migrated or swapped out.
6448 */
6449 put_page(page);
Tang Chen4256f432014-09-24 15:57:54 +08006450}
6451EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page);
6452
Tang Chenfe71557a2014-09-24 15:57:57 +08006453void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
6454 unsigned long address)
6455{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006456 /*
6457 * The physical address of apic access page is stored in the VMCS.
6458 * Update it when it becomes invalid.
6459 */
6460 if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT))
6461 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
Tang Chenfe71557a2014-09-24 15:57:57 +08006462}
6463
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006464/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01006465 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006466 * exiting to the userspace. Otherwise, the value will be returned to the
6467 * userspace.
6468 */
Avi Kivity851ba692009-08-24 11:10:17 +03006469static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006470{
6471 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08006472 bool req_int_win =
6473 dm_request_for_irq_injection(vcpu) &&
6474 kvm_cpu_accept_dm_intr(vcpu);
6475
Jan Kiszka730dca42013-04-28 10:50:52 +02006476 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006477
Avi Kivity3e007502010-06-23 14:26:18 +03006478 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03006479 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05006480 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006481 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03006482 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006483 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
6484 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03006485 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
6486 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10006487 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
6488 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10006489 if (unlikely(r))
6490 goto out;
6491 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006492 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03006493 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006494 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Radim Krčmářa70656b2014-09-18 12:38:36 -04006495 kvm_vcpu_flush_tlb(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006496 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006497 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02006498 r = 0;
6499 goto out;
6500 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006501 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006502 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01006503 r = 0;
6504 goto out;
6505 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006506 if (kvm_check_request(KVM_REQ_DEACTIVATE_FPU, vcpu)) {
Avi Kivity02daab22009-12-30 12:40:26 +02006507 vcpu->fpu_active = 0;
6508 kvm_x86_ops->fpu_deactivate(vcpu);
6509 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006510 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
6511 /* Page is swapped out. Do synthetic halt */
6512 vcpu->arch.apf.halted = true;
6513 r = 1;
6514 goto out;
6515 }
Glauber Costac9aaa892011-07-11 15:28:14 -04006516 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
6517 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006518 if (kvm_check_request(KVM_REQ_SMI, vcpu))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006519 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006520 if (kvm_check_request(KVM_REQ_NMI, vcpu))
6521 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006522 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006523 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006524 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006525 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07006526 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
6527 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
6528 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03006529 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07006530 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
6531 vcpu->run->eoi.vector =
6532 vcpu->arch.pending_ioapic_eoi;
6533 r = 0;
6534 goto out;
6535 }
6536 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08006537 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
6538 vcpu_scan_ioapic(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08006539 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
6540 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03006541 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
6542 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6543 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
6544 r = 0;
6545 goto out;
6546 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03006547 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
6548 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6549 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
6550 r = 0;
6551 goto out;
6552 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03006553 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
6554 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
6555 vcpu->run->hyperv = vcpu->arch.hyperv.exit;
6556 r = 0;
6557 goto out;
6558 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03006559
6560 /*
6561 * KVM_REQ_HV_STIMER has to be processed after
6562 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
6563 * depend on the guest clock being up-to-date
6564 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03006565 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
6566 kvm_hv_process_stimers(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02006567 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006568
Feng Wubf9f6ac2015-09-18 22:29:55 +08006569 /*
6570 * KVM_REQ_EVENT is not set when posted interrupts are set by
6571 * VT-d hardware, so we have to update RVI unconditionally.
6572 */
6573 if (kvm_lapic_enabled(vcpu)) {
6574 /*
6575 * Update architecture specific hints for APIC
6576 * virtual interrupt delivery.
6577 */
Andrey Smetanind62caab2015-11-10 15:36:33 +03006578 if (vcpu->arch.apicv_active)
Feng Wubf9f6ac2015-09-18 22:29:55 +08006579 kvm_x86_ops->hwapic_irr_update(vcpu,
6580 kvm_lapic_find_highest_irr(vcpu));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006581 }
6582
Avi Kivityb463a6f2010-07-20 15:06:17 +03006583 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Jan Kiszka66450a22013-03-13 12:42:34 +01006584 kvm_apic_accept_events(vcpu);
6585 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
6586 r = 1;
6587 goto out;
6588 }
6589
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006590 if (inject_pending_event(vcpu, req_int_win) != 0)
6591 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006592 else {
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006593 /* Enable NMI/IRQ window open exits if needed.
6594 *
6595 * SMIs have two cases: 1) they can be nested, and
6596 * then there is nothing to do here because RSM will
6597 * cause a vmexit anyway; 2) or the SMI can be pending
6598 * because inject_pending_event has completed the
6599 * injection of an IRQ or NMI from the previous vmexit,
6600 * and then we request an immediate exit to inject the SMI.
6601 */
6602 if (vcpu->arch.smi_pending && !is_smm(vcpu))
6603 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006604 if (vcpu->arch.nmi_pending)
6605 kvm_x86_ops->enable_nmi_window(vcpu);
6606 if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win)
6607 kvm_x86_ops->enable_irq_window(vcpu);
6608 }
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03006609
Avi Kivity3842d132010-07-27 12:30:24 +03006610 if (kvm_lapic_enabled(vcpu)) {
6611 update_cr8_intercept(vcpu);
6612 kvm_lapic_sync_to_vapic(vcpu);
6613 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006614 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006615
Avi Kivityd8368af2012-05-14 18:07:56 +03006616 r = kvm_mmu_reload(vcpu);
6617 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006618 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03006619 }
6620
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006621 preempt_disable();
6622
6623 kvm_x86_ops->prepare_guest_switch(vcpu);
6624 if (vcpu->fpu_active)
6625 kvm_load_guest_fpu(vcpu);
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006626 vcpu->mode = IN_GUEST_MODE;
6627
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006628 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6629
Lan Tianyu0f127d12016-03-13 11:10:29 +08006630 /*
6631 * We should set ->mode before check ->requests,
6632 * Please see the comment in kvm_make_all_cpus_request.
6633 * This also orders the write to mode from any reads
6634 * to the page tables done while the VCPU is running.
6635 * Please see the comment in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006636 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006637 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006638
6639 local_irq_disable();
6640
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006641 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006642 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006643 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006644 smp_wmb();
6645 local_irq_enable();
6646 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006647 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006648 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006649 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006650 }
6651
David Matlackfc5b7f32016-03-30 12:24:47 -07006652 kvm_load_guest_xcr0(vcpu);
6653
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006654 if (req_immediate_exit) {
6655 kvm_make_request(KVM_REQ_EVENT, vcpu);
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006656 smp_send_reschedule(vcpu->cpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006657 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006658
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01006659 trace_kvm_entry(vcpu->vcpu_id);
6660 wait_lapic_expire(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02006661 guest_enter_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006662
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006663 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006664 set_debugreg(0, 7);
6665 set_debugreg(vcpu->arch.eff_db[0], 0);
6666 set_debugreg(vcpu->arch.eff_db[1], 1);
6667 set_debugreg(vcpu->arch.eff_db[2], 2);
6668 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006669 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03006670 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006671 }
6672
Avi Kivity851ba692009-08-24 11:10:17 +03006673 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006674
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006675 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006676 * Do this here before restoring debug registers on the host. And
6677 * since we do this before handling the vmexit, a DR access vmexit
6678 * can (a) read the correct value of the debug registers, (b) set
6679 * KVM_DEBUGREG_WONT_EXIT again.
6680 */
6681 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006682 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
6683 kvm_x86_ops->sync_dirty_debug_regs(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01006684 kvm_update_dr0123(vcpu);
6685 kvm_update_dr6(vcpu);
6686 kvm_update_dr7(vcpu);
6687 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006688 }
6689
6690 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006691 * If the guest has used debug registers, at least dr7
6692 * will be disabled while returning to the host.
6693 * If we don't have active breakpoints in the host, we don't
6694 * care about the messed up debug address registers. But if
6695 * we have some of them active, restore the old state.
6696 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01006697 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006698 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006699
Haozhong Zhang4ba76532015-10-20 15:39:07 +08006700 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10006701
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006702 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03006703 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006704
David Matlackfc5b7f32016-03-30 12:24:47 -07006705 kvm_put_guest_xcr0(vcpu);
6706
Yang Zhanga547c6d2013-04-11 19:25:10 +08006707 /* Interrupt is enabled by handle_external_intr() */
6708 kvm_x86_ops->handle_external_intr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006709
6710 ++vcpu->stat.exits;
6711
6712 /*
6713 * We must have an instruction between local_irq_enable() and
6714 * kvm_guest_exit(), so the timer interrupt isn't delayed by
6715 * the interrupt shadow. The stat.exits increment will do nicely.
6716 * But we need to prevent reordering, hence this barrier():
6717 */
6718 barrier();
6719
Paolo Bonzini6edaa532016-06-15 15:18:26 +02006720 guest_exit();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006721
6722 preempt_enable();
6723
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006724 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006725
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006726 /*
6727 * Profile KVM exit RIPs:
6728 */
6729 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006730 unsigned long rip = kvm_rip_read(vcpu);
6731 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006732 }
6733
Zachary Amsdencc578282012-02-03 15:43:50 -02006734 if (unlikely(vcpu->arch.tsc_always_catchup))
6735 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02006736
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03006737 if (vcpu->arch.apic_attention)
6738 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02006739
Avi Kivity851ba692009-08-24 11:10:17 +03006740 r = kvm_x86_ops->handle_exit(vcpu);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006741 return r;
6742
6743cancel_injection:
6744 kvm_x86_ops->cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03006745 if (unlikely(vcpu->arch.apic_attention))
6746 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006747out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03006748 return r;
6749}
6750
Paolo Bonzini362c6982015-02-06 12:48:04 +01006751static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
6752{
Feng Wubf9f6ac2015-09-18 22:29:55 +08006753 if (!kvm_arch_vcpu_runnable(vcpu) &&
6754 (!kvm_x86_ops->pre_block || kvm_x86_ops->pre_block(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006755 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
6756 kvm_vcpu_block(vcpu);
6757 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006758
6759 if (kvm_x86_ops->post_block)
6760 kvm_x86_ops->post_block(vcpu);
6761
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006762 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
6763 return 1;
6764 }
Gleb Natapov09cec752009-03-23 15:11:44 +02006765
Paolo Bonzini362c6982015-02-06 12:48:04 +01006766 kvm_apic_accept_events(vcpu);
6767 switch(vcpu->arch.mp_state) {
6768 case KVM_MP_STATE_HALTED:
6769 vcpu->arch.pv.pv_unhalted = false;
6770 vcpu->arch.mp_state =
6771 KVM_MP_STATE_RUNNABLE;
6772 case KVM_MP_STATE_RUNNABLE:
6773 vcpu->arch.apf.halted = false;
6774 break;
6775 case KVM_MP_STATE_INIT_RECEIVED:
6776 break;
6777 default:
6778 return -EINTR;
6779 break;
6780 }
6781 return 1;
6782}
6783
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02006784static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
6785{
6786 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
6787 !vcpu->arch.apf.halted);
6788}
6789
Paolo Bonzini362c6982015-02-06 12:48:04 +01006790static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03006791{
6792 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006793 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03006794
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006795 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006796
Paolo Bonzini362c6982015-02-06 12:48:04 +01006797 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02006798 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006799 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006800 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01006801 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006802 }
6803
Gleb Natapov09cec752009-03-23 15:11:44 +02006804 if (r <= 0)
6805 break;
6806
6807 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
6808 if (kvm_cpu_has_pending_timer(vcpu))
6809 kvm_inject_pending_timer_irqs(vcpu);
6810
Matt Gingell782d4222015-11-16 15:26:00 -08006811 if (dm_request_for_irq_injection(vcpu) &&
6812 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02006813 r = 0;
6814 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02006815 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01006816 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006817 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006818
6819 kvm_check_async_pf_completion(vcpu);
6820
Gleb Natapov09cec752009-03-23 15:11:44 +02006821 if (signal_pending(current)) {
6822 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03006823 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02006824 ++vcpu->stat.signal_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01006825 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006826 }
6827 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006828 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Takuya Yoshikawac08ac062013-12-13 15:07:21 +09006829 cond_resched();
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006830 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006831 }
6832 }
6833
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006834 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006835
6836 return r;
6837}
6838
Gleb Natapov716d51a2012-09-03 15:24:26 +03006839static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
6840{
6841 int r;
6842 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
6843 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
6844 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6845 if (r != EMULATE_DONE)
6846 return 0;
6847 return 1;
6848}
6849
6850static int complete_emulated_pio(struct kvm_vcpu *vcpu)
6851{
6852 BUG_ON(!vcpu->arch.pio.count);
6853
6854 return complete_emulated_io(vcpu);
6855}
6856
Avi Kivityf78146b2012-04-18 19:22:47 +03006857/*
6858 * Implements the following, as a state machine:
6859 *
6860 * read:
6861 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006862 * for each mmio piece in the fragment
6863 * write gpa, len
6864 * exit
6865 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03006866 * execute insn
6867 *
6868 * write:
6869 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006870 * for each mmio piece in the fragment
6871 * write gpa, len
6872 * copy data
6873 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03006874 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03006875static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02006876{
6877 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03006878 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006879 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02006880
Gleb Natapov716d51a2012-09-03 15:24:26 +03006881 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006882
Gleb Natapov716d51a2012-09-03 15:24:26 +03006883 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006884 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
6885 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006886 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006887 memcpy(frag->data, run->mmio.data, len);
6888
6889 if (frag->len <= 8) {
6890 /* Switch to the next fragment. */
6891 frag++;
6892 vcpu->mmio_cur_fragment++;
6893 } else {
6894 /* Go forward to the next mmio piece. */
6895 frag->data += len;
6896 frag->gpa += len;
6897 frag->len -= len;
6898 }
6899
Andrew Honiga08d3b32014-02-27 19:35:14 +01006900 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03006901 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02006902
6903 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02006904 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03006905 return 1;
6906 vcpu->mmio_read_completed = 1;
6907 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02006908 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006909
Gleb Natapov716d51a2012-09-03 15:24:26 +03006910 run->exit_reason = KVM_EXIT_MMIO;
6911 run->mmio.phys_addr = frag->gpa;
6912 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006913 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
6914 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006915 run->mmio.is_write = vcpu->mmio_is_write;
6916 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
6917 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02006918}
6919
Gleb Natapov716d51a2012-09-03 15:24:26 +03006920
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006921int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
6922{
Ingo Molnarc5bedc62015-04-23 12:49:20 +02006923 struct fpu *fpu = &current->thread.fpu;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006924 int r;
6925 sigset_t sigsaved;
6926
Ingo Molnarc4d72e22015-04-27 07:18:17 +02006927 fpu__activate_curr(fpu);
Avi Kivitye5c30142011-01-11 12:15:54 +02006928
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006929 if (vcpu->sigset_active)
6930 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
6931
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006932 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
6933 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01006934 kvm_apic_accept_events(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006935 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006936 r = -EAGAIN;
6937 goto out;
6938 }
6939
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006940 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02006941 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006942 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
6943 r = -EINVAL;
6944 goto out;
6945 }
6946 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006947
Gleb Natapov716d51a2012-09-03 15:24:26 +03006948 if (unlikely(vcpu->arch.complete_userspace_io)) {
6949 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
6950 vcpu->arch.complete_userspace_io = NULL;
6951 r = cui(vcpu);
6952 if (r <= 0)
6953 goto out;
6954 } else
6955 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006956
Paolo Bonzini362c6982015-02-06 12:48:04 +01006957 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006958
6959out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03006960 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006961 if (vcpu->sigset_active)
6962 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
6963
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006964 return r;
6965}
6966
6967int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6968{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006969 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
6970 /*
6971 * We are here if userspace calls get_regs() in the middle of
6972 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08006973 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006974 * that usually, but some bad designed PV devices (vmware
6975 * backdoor interface) need this to work
6976 */
Avi Kivitydd856ef2012-08-27 23:46:17 +03006977 emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006978 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6979 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006980 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
6981 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
6982 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
6983 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
6984 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
6985 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
6986 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
6987 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006988#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006989 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
6990 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
6991 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
6992 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
6993 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
6994 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
6995 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
6996 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006997#endif
6998
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006999 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02007000 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007001
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007002 return 0;
7003}
7004
7005int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
7006{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007007 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
7008 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
7009
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007010 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
7011 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
7012 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
7013 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
7014 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
7015 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
7016 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
7017 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007018#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007019 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
7020 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
7021 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
7022 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
7023 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
7024 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
7025 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
7026 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007027#endif
7028
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007029 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02007030 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007031
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02007032 vcpu->arch.exception.pending = false;
7033
Avi Kivity3842d132010-07-27 12:30:24 +03007034 kvm_make_request(KVM_REQ_EVENT, vcpu);
7035
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007036 return 0;
7037}
7038
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007039void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
7040{
7041 struct kvm_segment cs;
7042
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007043 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007044 *db = cs.db;
7045 *l = cs.l;
7046}
7047EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
7048
7049int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
7050 struct kvm_sregs *sregs)
7051{
Gleb Natapov89a27f42010-02-16 10:51:48 +02007052 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007053
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007054 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7055 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7056 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7057 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7058 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7059 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007060
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007061 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7062 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007063
7064 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007065 sregs->idt.limit = dt.size;
7066 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007067 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007068 sregs->gdt.limit = dt.size;
7069 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007070
Avi Kivity4d4ec082009-12-29 18:07:30 +02007071 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007072 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007073 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02007074 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007075 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02007076 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007077 sregs->apic_base = kvm_get_apic_base(vcpu);
7078
Gleb Natapov923c61b2009-05-11 13:35:48 +03007079 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007080
Gleb Natapov36752c92009-05-11 13:35:53 +03007081 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03007082 set_bit(vcpu->arch.interrupt.nr,
7083 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03007084
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007085 return 0;
7086}
7087
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007088int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
7089 struct kvm_mp_state *mp_state)
7090{
Jan Kiszka66450a22013-03-13 12:42:34 +01007091 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307092 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
7093 vcpu->arch.pv.pv_unhalted)
7094 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
7095 else
7096 mp_state->mp_state = vcpu->arch.mp_state;
7097
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007098 return 0;
7099}
7100
7101int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
7102 struct kvm_mp_state *mp_state)
7103{
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007104 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01007105 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
7106 return -EINVAL;
7107
7108 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
7109 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
7110 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
7111 } else
7112 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03007113 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007114 return 0;
7115}
7116
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007117int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
7118 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007119{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007120 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007121 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007122
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007123 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007124
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007125 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007126 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02007127
Gleb Natapovc6975182010-02-18 12:15:01 +02007128 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03007129 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02007130
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007131 kvm_rip_write(vcpu, ctxt->eip);
7132 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03007133 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03007134 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02007135}
7136EXPORT_SYMBOL_GPL(kvm_task_switch);
7137
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007138int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
7139 struct kvm_sregs *sregs)
7140{
Jan Kiszka58cb6282014-01-24 16:48:44 +01007141 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007142 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007143 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02007144 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007145
Petr Matousek6d1068b2012-11-06 19:24:07 +01007146 if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE))
7147 return -EINVAL;
7148
Gleb Natapov89a27f42010-02-16 10:51:48 +02007149 dt.size = sregs->idt.limit;
7150 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007151 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007152 dt.size = sregs->gdt.limit;
7153 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007154 kvm_x86_ops->set_gdt(vcpu, &dt);
7155
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007156 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007157 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02007158 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02007159 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007160
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007161 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007162
Avi Kivityf6801df2010-01-21 15:31:50 +02007163 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007164 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Jan Kiszka58cb6282014-01-24 16:48:44 +01007165 apic_base_msr.data = sregs->apic_base;
7166 apic_base_msr.host_initiated = true;
7167 kvm_set_apic_base(vcpu, &apic_base_msr);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007168
Avi Kivity4d4ec082009-12-29 18:07:30 +02007169 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007170 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00007171 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007172
Avi Kivityfc78f512009-12-07 12:16:48 +02007173 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007174 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Huaitong Hanb9baba82016-03-22 16:51:21 +08007175 if (sregs->cr4 & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +02007176 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007177
7178 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02007179 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02007180 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02007181 mmu_reset_needed = 1;
7182 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007183 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007184
7185 if (mmu_reset_needed)
7186 kvm_mmu_reset_context(vcpu);
7187
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03007188 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03007189 pending_vec = find_first_bit(
7190 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
7191 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007192 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03007193 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007194 }
7195
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007196 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7197 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7198 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7199 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7200 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7201 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007202
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007203 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7204 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007205
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03007206 update_cr8_intercept(vcpu);
7207
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007208 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03007209 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007210 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02007211 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007212 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
7213
Avi Kivity3842d132010-07-27 12:30:24 +03007214 kvm_make_request(KVM_REQ_EVENT, vcpu);
7215
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007216 return 0;
7217}
7218
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007219int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
7220 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007221{
Jan Kiszka355be0b2009-10-03 00:31:21 +02007222 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007223 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007224
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007225 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
7226 r = -EBUSY;
7227 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03007228 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007229 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
7230 kvm_queue_exception(vcpu, DB_VECTOR);
7231 else
7232 kvm_queue_exception(vcpu, BP_VECTOR);
7233 }
7234
Jan Kiszka91586a32009-10-05 13:07:21 +02007235 /*
7236 * Read rflags as long as potentially injected trace flags are still
7237 * filtered out.
7238 */
7239 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007240
7241 vcpu->guest_debug = dbg->control;
7242 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
7243 vcpu->guest_debug = 0;
7244
7245 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007246 for (i = 0; i < KVM_NR_DB_REGS; ++i)
7247 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02007248 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007249 } else {
7250 for (i = 0; i < KVM_NR_DB_REGS; i++)
7251 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007252 }
Jan Kiszkac8639012012-09-21 05:42:55 +02007253 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007254
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007255 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
7256 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
7257 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007258
Jan Kiszka91586a32009-10-05 13:07:21 +02007259 /*
7260 * Trigger an rflags update that will inject or remove the trace
7261 * flags.
7262 */
7263 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007264
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007265 kvm_x86_ops->update_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007266
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007267 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007268
Avi Kivity2122ff52010-05-13 11:25:04 +03007269out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007270
7271 return r;
7272}
7273
7274/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08007275 * Translate a guest virtual address to a guest physical address.
7276 */
7277int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
7278 struct kvm_translation *tr)
7279{
7280 unsigned long vaddr = tr->linear_address;
7281 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007282 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007283
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007284 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02007285 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007286 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08007287 tr->physical_address = gpa;
7288 tr->valid = gpa != UNMAPPED_GVA;
7289 tr->writeable = 1;
7290 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007291
7292 return 0;
7293}
7294
Hollis Blanchardd0752062007-10-31 17:24:25 -05007295int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7296{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007297 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007298 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007299
Hollis Blanchardd0752062007-10-31 17:24:25 -05007300 memcpy(fpu->fpr, fxsave->st_space, 128);
7301 fpu->fcw = fxsave->cwd;
7302 fpu->fsw = fxsave->swd;
7303 fpu->ftwx = fxsave->twd;
7304 fpu->last_opcode = fxsave->fop;
7305 fpu->last_ip = fxsave->rip;
7306 fpu->last_dp = fxsave->rdp;
7307 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
7308
Hollis Blanchardd0752062007-10-31 17:24:25 -05007309 return 0;
7310}
7311
7312int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7313{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007314 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007315 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007316
Hollis Blanchardd0752062007-10-31 17:24:25 -05007317 memcpy(fxsave->st_space, fpu->fpr, 128);
7318 fxsave->cwd = fpu->fcw;
7319 fxsave->swd = fpu->fsw;
7320 fxsave->twd = fpu->ftwx;
7321 fxsave->fop = fpu->last_opcode;
7322 fxsave->rip = fpu->last_ip;
7323 fxsave->rdp = fpu->last_dp;
7324 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
7325
Hollis Blanchardd0752062007-10-31 17:24:25 -05007326 return 0;
7327}
7328
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007329static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007330{
Ingo Molnarbf935b02015-04-30 10:23:42 +02007331 fpstate_init(&vcpu->arch.guest_fpu.state);
Borislav Petkov782511b2016-04-04 22:25:03 +02007332 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar7366ed72015-04-27 04:19:39 +02007333 vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007334 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007335
Dexuan Cui2acf9232010-06-10 11:27:12 +08007336 /*
7337 * Ensure guest xcr0 is valid for loading
7338 */
Dave Hansend91cab72015-09-02 16:31:26 -07007339 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +08007340
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007341 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007342}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007343
7344void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
7345{
Avi Kivity2608d7a2010-01-21 15:31:45 +02007346 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007347 return;
7348
Dexuan Cui2acf9232010-06-10 11:27:12 +08007349 /*
7350 * Restore all possible states in the guest,
7351 * and assume host would use all available bits.
7352 * Guest xcr0 would be loaded later.
7353 */
Hollis Blanchardd0752062007-10-31 17:24:25 -05007354 vcpu->guest_fpu_loaded = 1;
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007355 __kernel_fpu_begin();
Ingo Molnar003e2e82015-05-25 11:59:35 +02007356 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state);
Avi Kivity0c048512010-01-21 15:31:52 +02007357 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007358}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007359
7360void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
7361{
Rik van Riel653f52c2015-04-23 11:52:37 -04007362 if (!vcpu->guest_fpu_loaded) {
7363 vcpu->fpu_counter = 0;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007364 return;
Rik van Riel653f52c2015-04-23 11:52:37 -04007365 }
Hollis Blanchardd0752062007-10-31 17:24:25 -05007366
7367 vcpu->guest_fpu_loaded = 0;
Ingo Molnar4f836342015-04-27 02:53:16 +02007368 copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007369 __kernel_fpu_end();
Avi Kivityf096ed82007-11-18 13:54:33 +02007370 ++vcpu->stat.fpu_reload;
Rik van Riel653f52c2015-04-23 11:52:37 -04007371 /*
7372 * If using eager FPU mode, or if the guest is a frequent user
7373 * of the FPU, just leave the FPU active for next time.
7374 * Every 255 times fpu_counter rolls over to 0; a guest that uses
7375 * the FPU in bursts will revert to loading it on demand.
7376 */
Paolo Bonzini5a5fbdc2016-03-08 10:00:11 +01007377 if (!use_eager_fpu()) {
Rik van Riel653f52c2015-04-23 11:52:37 -04007378 if (++vcpu->fpu_counter < 5)
7379 kvm_make_request(KVM_REQ_DEACTIVATE_FPU, vcpu);
7380 }
Avi Kivity0c048512010-01-21 15:31:52 +02007381 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007382}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007383
7384void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
7385{
Glauber Costa12f9a482011-02-01 14:16:40 -05007386 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01007387
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007388 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007389 kvm_x86_ops->vcpu_free(vcpu);
7390}
7391
7392struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
7393 unsigned int id)
7394{
Liang Lic447e762015-05-21 04:41:25 +08007395 struct kvm_vcpu *vcpu;
7396
Zachary Amsden6755bae2010-08-19 22:07:22 -10007397 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
7398 printk_once(KERN_WARNING
7399 "kvm: SMP vm created on host with unstable TSC; "
7400 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08007401
7402 vcpu = kvm_x86_ops->vcpu_create(kvm, id);
7403
Liang Lic447e762015-05-21 04:41:25 +08007404 return vcpu;
Avi Kivity26e52152007-11-20 15:30:24 +02007405}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007406
Avi Kivity26e52152007-11-20 15:30:24 +02007407int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
7408{
7409 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007410
Xiao Guangrong19efffa2015-06-15 16:55:31 +08007411 kvm_vcpu_mtrr_init(vcpu);
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007412 r = vcpu_load(vcpu);
7413 if (r)
7414 return r;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007415 kvm_vcpu_reset(vcpu, false);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02007416 kvm_mmu_setup(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007417 vcpu_put(vcpu);
Avi Kivity26e52152007-11-20 15:30:24 +02007418 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007419}
7420
Dominik Dingel31928aa2014-12-04 15:47:07 +01007421void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007422{
Will Auld8fe8ab42012-11-29 12:42:12 -08007423 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01007424 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007425
Dominik Dingel31928aa2014-12-04 15:47:07 +01007426 if (vcpu_load(vcpu))
7427 return;
Will Auld8fe8ab42012-11-29 12:42:12 -08007428 msr.data = 0x0;
7429 msr.index = MSR_IA32_TSC;
7430 msr.host_initiated = true;
7431 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007432 vcpu_put(vcpu);
7433
Marcelo Tosatti630994b2015-05-12 22:42:04 -03007434 if (!kvmclock_periodic_sync)
7435 return;
7436
Andrew Jones332967a2014-02-28 12:52:55 +01007437 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
7438 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007439}
7440
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06007441void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007442{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007443 int r;
Gleb Natapov344d9582010-10-14 11:22:50 +02007444 vcpu->arch.apf.msr_val = 0;
7445
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007446 r = vcpu_load(vcpu);
7447 BUG_ON(r);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007448 kvm_mmu_unload(vcpu);
7449 vcpu_put(vcpu);
7450
7451 kvm_x86_ops->vcpu_free(vcpu);
7452}
7453
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007454void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007455{
Paolo Bonzinie69fab52015-06-04 10:44:44 +02007456 vcpu->arch.hflags = 0;
7457
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007458 vcpu->arch.smi_pending = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007459 atomic_set(&vcpu->arch.nmi_queued, 0);
7460 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007461 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03007462 kvm_clear_interrupt_queue(vcpu);
7463 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007464
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007465 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03007466 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03007467 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007468 kvm_update_dr6(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007469 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02007470 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007471
Nadav Amit11190222015-04-02 03:10:38 +03007472 vcpu->arch.cr2 = 0;
7473
Avi Kivity3842d132010-07-27 12:30:24 +03007474 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02007475 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04007476 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03007477
Glauber Costa12f9a482011-02-01 14:16:40 -05007478 kvmclock_reset(vcpu);
7479
Gleb Natapovaf585b92010-10-14 11:22:46 +02007480 kvm_clear_async_pf_completion_queue(vcpu);
7481 kvm_async_pf_hash_reset(vcpu);
7482 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007483
Paolo Bonzini64d60672015-05-07 11:36:11 +02007484 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007485 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007486 vcpu->arch.smbase = 0x30000;
7487 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02007488
Julian Stecklina66f7b722012-12-05 15:26:19 +01007489 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
7490 vcpu->arch.regs_avail = ~0;
7491 vcpu->arch.regs_dirty = ~0;
7492
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007493 kvm_x86_ops->vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007494}
7495
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01007496void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01007497{
7498 struct kvm_segment cs;
7499
7500 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
7501 cs.selector = vector << 8;
7502 cs.base = vector << 12;
7503 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
7504 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007505}
7506
Radim Krčmář13a34e02014-08-28 15:13:03 +02007507int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007508{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10007509 struct kvm *kvm;
7510 struct kvm_vcpu *vcpu;
7511 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007512 int ret;
7513 u64 local_tsc;
7514 u64 max_tsc = 0;
7515 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03007516
7517 kvm_shared_msr_cpu_online();
Radim Krčmář13a34e02014-08-28 15:13:03 +02007518 ret = kvm_x86_ops->hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007519 if (ret != 0)
7520 return ret;
7521
Andy Lutomirski4ea16362015-06-25 18:44:07 +02007522 local_tsc = rdtsc();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007523 stable = !check_tsc_unstable();
7524 list_for_each_entry(kvm, &vm_list, vm_list) {
7525 kvm_for_each_vcpu(i, vcpu, kvm) {
7526 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007527 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007528 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
7529 backwards_tsc = true;
7530 if (vcpu->arch.last_host_tsc > max_tsc)
7531 max_tsc = vcpu->arch.last_host_tsc;
7532 }
7533 }
7534 }
7535
7536 /*
7537 * Sometimes, even reliable TSCs go backwards. This happens on
7538 * platforms that reset TSC during suspend or hibernate actions, but
7539 * maintain synchronization. We must compensate. Fortunately, we can
7540 * detect that condition here, which happens early in CPU bringup,
7541 * before any KVM threads can be running. Unfortunately, we can't
7542 * bring the TSCs fully up to date with real time, as we aren't yet far
7543 * enough into CPU bringup that we know how much real time has actually
7544 * elapsed; our helper function, get_kernel_ns() will be using boot
7545 * variables that haven't been updated yet.
7546 *
7547 * So we simply find the maximum observed TSC above, then record the
7548 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
7549 * the adjustment will be applied. Note that we accumulate
7550 * adjustments, in case multiple suspend cycles happen before some VCPU
7551 * gets a chance to run again. In the event that no KVM threads get a
7552 * chance to run, we will miss the entire elapsed period, as we'll have
7553 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
7554 * loose cycle time. This isn't too big a deal, since the loss will be
7555 * uniform across all VCPUs (not to mention the scenario is extremely
7556 * unlikely). It is possible that a second hibernate recovery happens
7557 * much faster than a first, causing the observed TSC here to be
7558 * smaller; this would require additional padding adjustment, which is
7559 * why we set last_host_tsc to the local tsc observed here.
7560 *
7561 * N.B. - this code below runs only on platforms with reliable TSC,
7562 * as that is the only way backwards_tsc is set above. Also note
7563 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
7564 * have the same delta_cyc adjustment applied if backwards_tsc
7565 * is detected. Note further, this adjustment is only done once,
7566 * as we reset last_host_tsc on all VCPUs to stop this from being
7567 * called multiple times (one for each physical CPU bringup).
7568 *
Guo Chao4a969982012-06-28 15:17:27 +08007569 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007570 * will be compensated by the logic in vcpu_load, which sets the TSC to
7571 * catchup mode. This will catchup all VCPUs to real time, but cannot
7572 * guarantee that they stay in perfect synchronization.
7573 */
7574 if (backwards_tsc) {
7575 u64 delta_cyc = max_tsc - local_tsc;
Marcelo Tosatti16a96022014-05-14 12:43:24 -03007576 backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007577 list_for_each_entry(kvm, &vm_list, vm_list) {
7578 kvm_for_each_vcpu(i, vcpu, kvm) {
7579 vcpu->arch.tsc_offset_adjustment += delta_cyc;
7580 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007581 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007582 }
7583
7584 /*
7585 * We have to disable TSC offset matching.. if you were
7586 * booting a VM while issuing an S4 host suspend....
7587 * you may have some problem. Solving this issue is
7588 * left as an exercise to the reader.
7589 */
7590 kvm->arch.last_tsc_nsec = 0;
7591 kvm->arch.last_tsc_write = 0;
7592 }
7593
7594 }
7595 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007596}
7597
Radim Krčmář13a34e02014-08-28 15:13:03 +02007598void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007599{
Radim Krčmář13a34e02014-08-28 15:13:03 +02007600 kvm_x86_ops->hardware_disable();
7601 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007602}
7603
7604int kvm_arch_hardware_setup(void)
7605{
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007606 int r;
7607
7608 r = kvm_x86_ops->hardware_setup();
7609 if (r != 0)
7610 return r;
7611
Haozhong Zhang35181e82015-10-20 15:39:03 +08007612 if (kvm_has_tsc_control) {
7613 /*
7614 * Make sure the user can only configure tsc_khz values that
7615 * fit into a signed integer.
7616 * A min value is not calculated needed because it will always
7617 * be 1 on all machines.
7618 */
7619 u64 max = min(0x7fffffffULL,
7620 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
7621 kvm_max_guest_tsc_khz = max;
7622
Haozhong Zhangad7218832015-10-20 15:39:02 +08007623 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +08007624 }
Haozhong Zhangad7218832015-10-20 15:39:02 +08007625
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007626 kvm_init_msr_list();
7627 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007628}
7629
7630void kvm_arch_hardware_unsetup(void)
7631{
7632 kvm_x86_ops->hardware_unsetup();
7633}
7634
7635void kvm_arch_check_processor_compat(void *rtn)
7636{
7637 kvm_x86_ops->check_processor_compatibility(rtn);
7638}
7639
Paolo Bonzinid71ba782015-07-29 11:56:48 +02007640bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
7641{
7642 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
7643}
7644EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
7645
7646bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
7647{
7648 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
7649}
7650
Gleb Natapov54e98182012-08-05 15:58:32 +03007651struct static_key kvm_no_apic_vcpu __read_mostly;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007652EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +03007653
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007654int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
7655{
7656 struct page *page;
7657 struct kvm *kvm;
7658 int r;
7659
7660 BUG_ON(vcpu->kvm == NULL);
7661 kvm = vcpu->kvm;
7662
Andrey Smetanind62caab2015-11-10 15:36:33 +03007663 vcpu->arch.apicv_active = kvm_x86_ops->get_enable_apicv();
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307664 vcpu->arch.pv.pv_unhalted = false;
Avi Kivity9aabc88f2010-07-29 15:11:50 +03007665 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Nadav Amit58d269d2015-04-02 03:10:36 +03007666 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03007667 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007668 else
Avi Kivitya4535292008-04-13 17:54:35 +03007669 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007670
7671 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
7672 if (!page) {
7673 r = -ENOMEM;
7674 goto fail;
7675 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007676 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007677
Zachary Amsdencc578282012-02-03 15:43:50 -02007678 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10007679
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007680 r = kvm_mmu_create(vcpu);
7681 if (r < 0)
7682 goto fail_free_pio_data;
7683
7684 if (irqchip_in_kernel(kvm)) {
7685 r = kvm_create_lapic(vcpu);
7686 if (r < 0)
7687 goto fail_mmu_destroy;
Gleb Natapov54e98182012-08-05 15:58:32 +03007688 } else
7689 static_key_slow_inc(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007690
Huang Ying890ca9a2009-05-11 16:48:15 +08007691 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
7692 GFP_KERNEL);
7693 if (!vcpu->arch.mce_banks) {
7694 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08007695 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08007696 }
7697 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
7698
Wei Yongjunf1797352013-04-18 07:41:00 +08007699 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) {
7700 r = -ENOMEM;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007701 goto fail_free_mce_banks;
Wei Yongjunf1797352013-04-18 07:41:00 +08007702 }
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007703
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007704 fx_init(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01007705
Will Auldba904632012-11-29 12:42:50 -08007706 vcpu->arch.ia32_tsc_adjust_msr = 0x0;
Andy Honig0b794592013-02-20 14:48:10 -08007707 vcpu->arch.pv_time_enabled = false;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007708
7709 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +02007710 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007711
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +03007712 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
7713
Radim Krčmář74545702015-04-27 15:11:25 +02007714 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
7715
Gleb Natapovaf585b92010-10-14 11:22:46 +02007716 kvm_async_pf_hash_reset(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007717 kvm_pmu_init(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007718
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02007719 vcpu->arch.pending_external_vector = -1;
7720
Andrey Smetanin5c9194122015-11-10 15:36:34 +03007721 kvm_hv_vcpu_init(vcpu);
7722
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007723 return 0;
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007724
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007725fail_free_mce_banks:
7726 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08007727fail_free_lapic:
7728 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007729fail_mmu_destroy:
7730 kvm_mmu_destroy(vcpu);
7731fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007732 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007733fail:
7734 return r;
7735}
7736
7737void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
7738{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007739 int idx;
7740
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03007741 kvm_hv_vcpu_uninit(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007742 kvm_pmu_destroy(vcpu);
Wei Yongjun36cb93f2010-01-22 14:18:47 +08007743 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007744 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007745 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007746 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007747 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007748 free_page((unsigned long)vcpu->arch.pio_data);
Paolo Bonzini35754c92015-07-29 12:05:37 +02007749 if (!lapic_in_kernel(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03007750 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007751}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007752
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007753void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
7754{
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007755 kvm_x86_ops->sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007756}
7757
Carsten Ottee08b9632012-01-04 10:25:20 +01007758int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007759{
Carsten Ottee08b9632012-01-04 10:25:20 +01007760 if (type)
7761 return -EINVAL;
7762
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01007763 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08007764 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Xiao Guangrong365c8862013-05-31 08:36:29 +08007765 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03007766 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06007767 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007768
Sheng Yang5550af42008-10-15 20:15:06 +08007769 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
7770 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06007771 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
7772 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
7773 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08007774
Jan Kiszka038f8c12011-02-04 10:49:11 +01007775 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007776 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007777 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
7778
7779 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01007780
Andrew Jones7e44e442014-02-28 12:52:54 +01007781 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01007782 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01007783
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007784 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +08007785 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007786
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05007787 if (kvm_x86_ops->vm_init)
7788 return kvm_x86_ops->vm_init(kvm);
7789
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01007790 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007791}
7792
7793static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
7794{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007795 int r;
7796 r = vcpu_load(vcpu);
7797 BUG_ON(r);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007798 kvm_mmu_unload(vcpu);
7799 vcpu_put(vcpu);
7800}
7801
7802static void kvm_free_vcpus(struct kvm *kvm)
7803{
7804 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007805 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007806
7807 /*
7808 * Unpin any mmu pages first.
7809 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02007810 kvm_for_each_vcpu(i, vcpu, kvm) {
7811 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007812 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007813 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007814 kvm_for_each_vcpu(i, vcpu, kvm)
7815 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007816
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007817 mutex_lock(&kvm->lock);
7818 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
7819 kvm->vcpus[i] = NULL;
7820
7821 atomic_set(&kvm->online_vcpus, 0);
7822 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007823}
7824
Sheng Yangad8ba2c2009-01-06 10:03:02 +08007825void kvm_arch_sync_events(struct kvm *kvm)
7826{
Andrew Jones332967a2014-02-28 12:52:55 +01007827 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01007828 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Sheng Yangba4cef32009-01-06 10:03:03 +08007829 kvm_free_all_assigned_devices(kvm);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08007830 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08007831}
7832
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007833int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007834{
7835 int i, r;
Paolo Bonzini25188b92015-10-14 15:51:08 +02007836 unsigned long hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007837 struct kvm_memslots *slots = kvm_memslots(kvm);
7838 struct kvm_memory_slot *slot, old;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007839
7840 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007841 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
7842 return -EINVAL;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007843
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007844 slot = id_to_memslot(slots, id);
7845 if (size) {
Paolo Bonzinib21629d2016-06-01 14:09:18 +02007846 if (slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007847 return -EEXIST;
7848
7849 /*
7850 * MAP_SHARED to prevent internal slot pages from being moved
7851 * by fork()/COW.
7852 */
7853 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
7854 MAP_SHARED | MAP_ANONYMOUS, 0);
7855 if (IS_ERR((void *)hva))
7856 return PTR_ERR((void *)hva);
7857 } else {
7858 if (!slot->npages)
7859 return 0;
7860
7861 hva = 0;
7862 }
7863
7864 old = *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007865 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007866 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007867
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007868 m.slot = id | (i << 16);
7869 m.flags = 0;
7870 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007871 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007872 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007873 r = __kvm_set_memory_region(kvm, &m);
7874 if (r < 0)
7875 return r;
7876 }
7877
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007878 if (!size) {
7879 r = vm_munmap(old.userspace_addr, old.npages * PAGE_SIZE);
7880 WARN_ON(r < 0);
7881 }
7882
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007883 return 0;
7884}
7885EXPORT_SYMBOL_GPL(__x86_set_memory_region);
7886
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007887int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007888{
7889 int r;
7890
7891 mutex_lock(&kvm->slots_lock);
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007892 r = __x86_set_memory_region(kvm, id, gpa, size);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007893 mutex_unlock(&kvm->slots_lock);
7894
7895 return r;
7896}
7897EXPORT_SYMBOL_GPL(x86_set_memory_region);
7898
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007899void kvm_arch_destroy_vm(struct kvm *kvm)
7900{
Andrew Honig27469d22013-04-18 09:38:14 -07007901 if (current->mm == kvm->mm) {
7902 /*
7903 * Free memory regions allocated on behalf of userspace,
7904 * unless the the memory map has changed due to process exit
7905 * or fd copying.
7906 */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007907 x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, 0, 0);
7908 x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, 0, 0);
7909 x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
Andrew Honig27469d22013-04-18 09:38:14 -07007910 }
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05007911 if (kvm_x86_ops->vm_destroy)
7912 kvm_x86_ops->vm_destroy(kvm);
Sheng Yang6eb55812008-10-31 12:37:41 +08007913 kvm_iommu_unmap_guest(kvm);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08007914 kfree(kvm->arch.vpic);
7915 kfree(kvm->arch.vioapic);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007916 kvm_free_vcpus(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007917 kfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +08007918 kvm_mmu_uninit_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007919}
Zhang Xiantao0de10342007-11-20 16:25:04 +08007920
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05307921void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007922 struct kvm_memory_slot *dont)
7923{
7924 int i;
7925
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007926 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
7927 if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) {
Thomas Huth548ef282015-02-24 21:29:25 +01007928 kvfree(free->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007929 free->arch.rmap[i] = NULL;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007930 }
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007931 if (i == 0)
7932 continue;
7933
7934 if (!dont || free->arch.lpage_info[i - 1] !=
7935 dont->arch.lpage_info[i - 1]) {
Thomas Huth548ef282015-02-24 21:29:25 +01007936 kvfree(free->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007937 free->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007938 }
7939 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08007940
7941 kvm_page_track_free_memslot(free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007942}
7943
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05307944int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
7945 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007946{
7947 int i;
7948
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007949 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007950 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007951 unsigned long ugfn;
7952 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007953 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007954
7955 lpages = gfn_to_index(slot->base_gfn + npages - 1,
7956 slot->base_gfn, level) + 1;
7957
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007958 slot->arch.rmap[i] =
7959 kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i]));
7960 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007961 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007962 if (i == 0)
7963 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007964
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007965 linfo = kvm_kvzalloc(lpages * sizeof(*linfo));
7966 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007967 goto out_free;
7968
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007969 slot->arch.lpage_info[i - 1] = linfo;
7970
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007971 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007972 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007973 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007974 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007975 ugfn = slot->userspace_addr >> PAGE_SHIFT;
7976 /*
7977 * If the gfn and userspace address are not aligned wrt each
7978 * other, or if explicitly asked to, disable large page
7979 * support for this slot
7980 */
7981 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
7982 !kvm_largepages_enabled()) {
7983 unsigned long j;
7984
7985 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007986 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007987 }
7988 }
7989
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08007990 if (kvm_page_track_create_memslot(slot, npages))
7991 goto out_free;
7992
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007993 return 0;
7994
7995out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007996 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +01007997 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007998 slot->arch.rmap[i] = NULL;
7999 if (i == 0)
8000 continue;
8001
Thomas Huth548ef282015-02-24 21:29:25 +01008002 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008003 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008004 }
8005 return -ENOMEM;
8006}
8007
Paolo Bonzini15f46012015-05-17 21:26:08 +02008008void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008009{
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09008010 /*
8011 * memslots->generation has been incremented.
8012 * mmio generation may have reached its maximum value.
8013 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008014 kvm_mmu_invalidate_mmio_sptes(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008015}
8016
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008017int kvm_arch_prepare_memory_region(struct kvm *kvm,
8018 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008019 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09008020 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +08008021{
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008022 return 0;
8023}
8024
Kai Huang88178fd2015-01-28 10:54:27 +08008025static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
8026 struct kvm_memory_slot *new)
8027{
8028 /* Still write protect RO slot */
8029 if (new->flags & KVM_MEM_READONLY) {
8030 kvm_mmu_slot_remove_write_access(kvm, new);
8031 return;
8032 }
8033
8034 /*
8035 * Call kvm_x86_ops dirty logging hooks when they are valid.
8036 *
8037 * kvm_x86_ops->slot_disable_log_dirty is called when:
8038 *
8039 * - KVM_MR_CREATE with dirty logging is disabled
8040 * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag
8041 *
8042 * The reason is, in case of PML, we need to set D-bit for any slots
8043 * with dirty logging disabled in order to eliminate unnecessary GPA
8044 * logging in PML buffer (and potential PML buffer full VMEXT). This
8045 * guarantees leaving PML enabled during guest's lifetime won't have
8046 * any additonal overhead from PML when guest is running with dirty
8047 * logging disabled for memory slots.
8048 *
8049 * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot
8050 * to dirty logging mode.
8051 *
8052 * If kvm_x86_ops dirty logging hooks are invalid, use write protect.
8053 *
8054 * In case of write protect:
8055 *
8056 * Write protect all pages for dirty logging.
8057 *
8058 * All the sptes including the large sptes which point to this
8059 * slot are set to readonly. We can not create any new large
8060 * spte on this slot until the end of the logging.
8061 *
8062 * See the comments in fast_page_fault().
8063 */
8064 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
8065 if (kvm_x86_ops->slot_enable_log_dirty)
8066 kvm_x86_ops->slot_enable_log_dirty(kvm, new);
8067 else
8068 kvm_mmu_slot_remove_write_access(kvm, new);
8069 } else {
8070 if (kvm_x86_ops->slot_disable_log_dirty)
8071 kvm_x86_ops->slot_disable_log_dirty(kvm, new);
8072 }
8073}
8074
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008075void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008076 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008077 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008078 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008079 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008080{
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008081 int nr_mmu_pages = 0;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008082
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008083 if (!kvm->arch.n_requested_mmu_pages)
8084 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008085
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008086 if (nr_mmu_pages)
8087 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Kai Huang1c91cad42015-01-28 10:54:26 +08008088
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008089 /*
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08008090 * Dirty logging tracks sptes in 4k granularity, meaning that large
8091 * sptes have to be split. If live migration is successful, the guest
8092 * in the source machine will be destroyed and large sptes will be
8093 * created in the destination. However, if the guest continues to run
8094 * in the source machine (for example if live migration fails), small
8095 * sptes will remain around and cause bad performance.
8096 *
8097 * Scan sptes if dirty logging has been stopped, dropping those
8098 * which can be collapsed into a single large-page spte. Later
8099 * page faults will create the large-page sptes.
8100 */
8101 if ((change != KVM_MR_DELETE) &&
8102 (old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
8103 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
8104 kvm_mmu_zap_collapsible_sptes(kvm, new);
8105
8106 /*
Kai Huang88178fd2015-01-28 10:54:27 +08008107 * Set up write protection and/or dirty logging for the new slot.
Xiao Guangrongc126d942014-04-17 17:06:14 +08008108 *
Kai Huang88178fd2015-01-28 10:54:27 +08008109 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have
8110 * been zapped so no dirty logging staff is needed for old slot. For
8111 * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the
8112 * new and it's also covered when dealing with the new slot.
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008113 *
8114 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008115 */
Kai Huang88178fd2015-01-28 10:54:27 +08008116 if (change != KVM_MR_DELETE)
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008117 kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008118}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008119
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008120void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008121{
Xiao Guangrong6ca18b692013-05-31 08:36:23 +08008122 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008123}
8124
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008125void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
8126 struct kvm_memory_slot *slot)
8127{
Xiao Guangrong6ca18b692013-05-31 08:36:23 +08008128 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008129}
8130
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008131static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
8132{
8133 if (!list_empty_careful(&vcpu->async_pf.done))
8134 return true;
8135
8136 if (kvm_apic_has_events(vcpu))
8137 return true;
8138
8139 if (vcpu->arch.pv.pv_unhalted)
8140 return true;
8141
8142 if (atomic_read(&vcpu->arch.nmi_queued))
8143 return true;
8144
Paolo Bonzini73917732015-10-13 10:19:35 +02008145 if (test_bit(KVM_REQ_SMI, &vcpu->requests))
8146 return true;
8147
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008148 if (kvm_arch_interrupt_allowed(vcpu) &&
8149 kvm_cpu_has_interrupt(vcpu))
8150 return true;
8151
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03008152 if (kvm_hv_has_stimer_pending(vcpu))
8153 return true;
8154
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008155 return false;
8156}
8157
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008158int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
8159{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008160 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events)
8161 kvm_x86_ops->check_nested_events(vcpu, false);
8162
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008163 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008164}
Zhang Xiantao57361992007-12-17 14:21:40 +08008165
Christoffer Dallb6d33832012-03-08 16:44:24 -05008166int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +08008167{
Christoffer Dallb6d33832012-03-08 16:44:24 -05008168 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +08008169}
Gleb Natapov78646122009-03-23 12:12:11 +02008170
8171int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
8172{
8173 return kvm_x86_ops->interrupt_allowed(vcpu);
8174}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008175
Nadav Amit82b32772014-11-02 11:54:45 +02008176unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
8177{
8178 if (is_64_bit_mode(vcpu))
8179 return kvm_rip_read(vcpu);
8180 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
8181 kvm_rip_read(vcpu));
8182}
8183EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
8184
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008185bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
8186{
Nadav Amit82b32772014-11-02 11:54:45 +02008187 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008188}
8189EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
8190
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008191unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
8192{
8193 unsigned long rflags;
8194
8195 rflags = kvm_x86_ops->get_rflags(vcpu);
8196 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01008197 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008198 return rflags;
8199}
8200EXPORT_SYMBOL_GPL(kvm_get_rflags);
8201
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008202static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008203{
8204 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008205 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01008206 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008207 kvm_x86_ops->set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008208}
8209
8210void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
8211{
8212 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03008213 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008214}
8215EXPORT_SYMBOL_GPL(kvm_set_rflags);
8216
Gleb Natapov56028d02010-10-17 18:13:42 +02008217void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
8218{
8219 int r;
8220
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008221 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +08008222 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +02008223 return;
8224
8225 r = kvm_mmu_reload(vcpu);
8226 if (unlikely(r))
8227 return;
8228
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008229 if (!vcpu->arch.mmu.direct_map &&
8230 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
8231 return;
8232
Gleb Natapov56028d02010-10-17 18:13:42 +02008233 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
8234}
8235
Gleb Natapovaf585b92010-10-14 11:22:46 +02008236static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
8237{
8238 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
8239}
8240
8241static inline u32 kvm_async_pf_next_probe(u32 key)
8242{
8243 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
8244}
8245
8246static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8247{
8248 u32 key = kvm_async_pf_hash_fn(gfn);
8249
8250 while (vcpu->arch.apf.gfns[key] != ~0)
8251 key = kvm_async_pf_next_probe(key);
8252
8253 vcpu->arch.apf.gfns[key] = gfn;
8254}
8255
8256static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
8257{
8258 int i;
8259 u32 key = kvm_async_pf_hash_fn(gfn);
8260
8261 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08008262 (vcpu->arch.apf.gfns[key] != gfn &&
8263 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02008264 key = kvm_async_pf_next_probe(key);
8265
8266 return key;
8267}
8268
8269bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8270{
8271 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
8272}
8273
8274static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8275{
8276 u32 i, j, k;
8277
8278 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
8279 while (true) {
8280 vcpu->arch.apf.gfns[i] = ~0;
8281 do {
8282 j = kvm_async_pf_next_probe(j);
8283 if (vcpu->arch.apf.gfns[j] == ~0)
8284 return;
8285 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
8286 /*
8287 * k lies cyclically in ]i,j]
8288 * | i.k.j |
8289 * |....j i.k.| or |.k..j i...|
8290 */
8291 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
8292 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
8293 i = j;
8294 }
8295}
8296
Gleb Natapov7c907052010-10-14 11:22:53 +02008297static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
8298{
8299
8300 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val,
8301 sizeof(val));
8302}
8303
Gleb Natapovaf585b92010-10-14 11:22:46 +02008304void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
8305 struct kvm_async_pf *work)
8306{
Avi Kivity6389ee92010-11-29 16:12:30 +02008307 struct x86_exception fault;
8308
Gleb Natapov7c907052010-10-14 11:22:53 +02008309 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008310 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02008311
8312 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02008313 (vcpu->arch.apf.send_user_only &&
8314 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02008315 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
8316 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008317 fault.vector = PF_VECTOR;
8318 fault.error_code_valid = true;
8319 fault.error_code = 0;
8320 fault.nested_page_fault = false;
8321 fault.address = work->arch.token;
8322 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008323 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008324}
8325
8326void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
8327 struct kvm_async_pf *work)
8328{
Avi Kivity6389ee92010-11-29 16:12:30 +02008329 struct x86_exception fault;
8330
Gleb Natapov7c907052010-10-14 11:22:53 +02008331 trace_kvm_async_pf_ready(work->arch.token, work->gva);
chai wenf2e10662013-10-14 22:22:33 +08008332 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +02008333 work->arch.token = ~0; /* broadcast wakeup */
8334 else
8335 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
8336
8337 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
8338 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008339 fault.vector = PF_VECTOR;
8340 fault.error_code_valid = true;
8341 fault.error_code = 0;
8342 fault.nested_page_fault = false;
8343 fault.address = work->arch.token;
8344 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008345 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08008346 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +03008347 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +02008348}
8349
8350bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
8351{
8352 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
8353 return true;
8354 else
8355 return !kvm_event_needs_reinjection(vcpu) &&
8356 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008357}
8358
Paolo Bonzini5544eb92015-07-07 15:41:58 +02008359void kvm_arch_start_assignment(struct kvm *kvm)
8360{
8361 atomic_inc(&kvm->arch.assigned_device_count);
8362}
8363EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
8364
8365void kvm_arch_end_assignment(struct kvm *kvm)
8366{
8367 atomic_dec(&kvm->arch.assigned_device_count);
8368}
8369EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
8370
8371bool kvm_arch_has_assigned_device(struct kvm *kvm)
8372{
8373 return atomic_read(&kvm->arch.assigned_device_count);
8374}
8375EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
8376
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06008377void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
8378{
8379 atomic_inc(&kvm->arch.noncoherent_dma_count);
8380}
8381EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
8382
8383void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
8384{
8385 atomic_dec(&kvm->arch.noncoherent_dma_count);
8386}
8387EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
8388
8389bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
8390{
8391 return atomic_read(&kvm->arch.noncoherent_dma_count);
8392}
8393EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
8394
Alex Williamson14717e22016-05-05 11:58:35 -06008395bool kvm_arch_has_irq_bypass(void)
8396{
8397 return kvm_x86_ops->update_pi_irte != NULL;
8398}
8399
Feng Wu87276882015-09-18 22:29:40 +08008400int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
8401 struct irq_bypass_producer *prod)
8402{
8403 struct kvm_kernel_irqfd *irqfd =
8404 container_of(cons, struct kvm_kernel_irqfd, consumer);
8405
Alex Williamson14717e22016-05-05 11:58:35 -06008406 irqfd->producer = prod;
Feng Wu87276882015-09-18 22:29:40 +08008407
Alex Williamson14717e22016-05-05 11:58:35 -06008408 return kvm_x86_ops->update_pi_irte(irqfd->kvm,
8409 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +08008410}
8411
8412void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
8413 struct irq_bypass_producer *prod)
8414{
8415 int ret;
8416 struct kvm_kernel_irqfd *irqfd =
8417 container_of(cons, struct kvm_kernel_irqfd, consumer);
8418
Feng Wu87276882015-09-18 22:29:40 +08008419 WARN_ON(irqfd->producer != prod);
8420 irqfd->producer = NULL;
8421
8422 /*
8423 * When producer of consumer is unregistered, we change back to
8424 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +02008425 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +08008426 * int this case doesn't want to receive the interrupts.
8427 */
8428 ret = kvm_x86_ops->update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0);
8429 if (ret)
8430 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
8431 " fails: %d\n", irqfd->consumer.token, ret);
8432}
8433
8434int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
8435 uint32_t guest_irq, bool set)
8436{
8437 if (!kvm_x86_ops->update_pi_irte)
8438 return -EINVAL;
8439
8440 return kvm_x86_ops->update_pi_irte(kvm, host_irq, guest_irq, set);
8441}
8442
Feng Wu520040142016-01-25 16:53:33 +08008443bool kvm_vector_hashing_enabled(void)
8444{
8445 return vector_hashing;
8446}
8447EXPORT_SYMBOL_GPL(kvm_vector_hashing_enabled);
8448
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008449EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
Jason Wang931c33b2015-09-15 14:41:58 +08008450EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008451EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
8452EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
8453EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
8454EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02008455EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02008456EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02008457EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02008458EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02008459EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02008460EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01008461EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09008462EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Radim Krčmář7b462682014-08-21 18:08:09 +02008463EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window);
Kai Huang843e4332015-01-28 10:54:28 +08008464EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
Feng Wuefc64402015-09-18 22:29:51 +08008465EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05008466EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
8467EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);