blob: a27b33033700aadd08637b6cfb63981858b48ee6 [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
Radim Krčmářc5192652016-07-12 22:09:28 +020093#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
94 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +020095
Gleb Natapovcb142eb2009-08-09 15:17:40 +030096static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +030097static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +020098static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010099static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Avi Kivity674eea02008-02-11 18:37:23 +0200100
Paolo Bonzini893590c2015-11-06 11:46:24 +0100101struct kvm_x86_ops *kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300102EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800103
Paolo Bonzini893590c2015-11-06 11:46:24 +0100104static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030105module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200106
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200107unsigned int min_timer_period_us = 500;
108module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
109
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300110static bool __read_mostly kvmclock_periodic_sync = true;
111module_param(kvmclock_periodic_sync, bool, S_IRUGO);
112
Paolo Bonzini893590c2015-11-06 11:46:24 +0100113bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100114EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100115u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100116EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800117u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
118EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
119u64 __read_mostly kvm_max_tsc_scaling_ratio;
120EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700121u64 __read_mostly kvm_default_tsc_scaling_ratio;
122EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100123
Zachary Amsdencc578282012-02-03 15:43:50 -0200124/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100125static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200126module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
127
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500128/* lapic timer advance (tscdeadline mode only) in nanoseconds */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100129unsigned int __read_mostly lapic_timer_advance_ns = 0;
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500130module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR);
131
Feng Wu520040142016-01-25 16:53:33 +0800132static bool __read_mostly vector_hashing = true;
133module_param(vector_hashing, bool, S_IRUGO);
134
Paolo Bonzini893590c2015-11-06 11:46:24 +0100135static bool __read_mostly backwards_tsc_observed = false;
Marcelo Tosatti16a96022014-05-14 12:43:24 -0300136
Avi Kivity18863bd2009-09-07 11:12:18 +0300137#define KVM_NR_SHARED_MSRS 16
138
139struct kvm_shared_msrs_global {
140 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800141 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300142};
143
144struct kvm_shared_msrs {
145 struct user_return_notifier urn;
146 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800147 struct kvm_shared_msr_values {
148 u64 host;
149 u64 curr;
150 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300151};
152
153static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200154static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300155
Hollis Blanchard417bc302007-10-31 17:24:23 -0500156struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200157 { "pf_fixed", VCPU_STAT(pf_fixed) },
158 { "pf_guest", VCPU_STAT(pf_guest) },
159 { "tlb_flush", VCPU_STAT(tlb_flush) },
160 { "invlpg", VCPU_STAT(invlpg) },
161 { "exits", VCPU_STAT(exits) },
162 { "io_exits", VCPU_STAT(io_exits) },
163 { "mmio_exits", VCPU_STAT(mmio_exits) },
164 { "signal_exits", VCPU_STAT(signal_exits) },
165 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800166 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200167 { "halt_exits", VCPU_STAT(halt_exits) },
Paolo Bonzinif7819512015-02-04 18:20:58 +0100168 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +0200169 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200170 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200171 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530172 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200173 { "request_irq", VCPU_STAT(request_irq_exits) },
174 { "irq_exits", VCPU_STAT(irq_exits) },
175 { "host_state_reload", VCPU_STAT(host_state_reload) },
176 { "efer_reload", VCPU_STAT(efer_reload) },
177 { "fpu_reload", VCPU_STAT(fpu_reload) },
178 { "insn_emulation", VCPU_STAT(insn_emulation) },
179 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300180 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200181 { "nmi_injections", VCPU_STAT(nmi_injections) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200182 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
183 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
184 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
185 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
186 { "mmu_flooded", VM_STAT(mmu_flooded) },
187 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200188 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300189 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200190 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300191 { "largepages", VM_STAT(lpages) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500192 { NULL }
193};
194
Dexuan Cui2acf9232010-06-10 11:27:12 +0800195u64 __read_mostly host_xcr0;
196
Jan Kiszkab6785de2012-09-20 07:43:17 +0200197static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300198
Gleb Natapovaf585b92010-10-14 11:22:46 +0200199static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
200{
201 int i;
202 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
203 vcpu->arch.apf.gfns[i] = ~0;
204}
205
Avi Kivity18863bd2009-09-07 11:12:18 +0300206static void kvm_on_user_return(struct user_return_notifier *urn)
207{
208 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300209 struct kvm_shared_msrs *locals
210 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800211 struct kvm_shared_msr_values *values;
Avi Kivity18863bd2009-09-07 11:12:18 +0300212
213 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800214 values = &locals->values[slot];
215 if (values->host != values->curr) {
216 wrmsrl(shared_msrs_global.msrs[slot], values->host);
217 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300218 }
219 }
220 locals->registered = false;
221 user_return_notifier_unregister(urn);
222}
223
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800224static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300225{
Avi Kivity18863bd2009-09-07 11:12:18 +0300226 u64 value;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200227 unsigned int cpu = smp_processor_id();
228 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300229
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800230 /* only read, and nobody should modify it at this time,
231 * so don't need lock */
232 if (slot >= shared_msrs_global.nr) {
233 printk(KERN_ERR "kvm: invalid MSR slot!");
234 return;
235 }
236 rdmsrl_safe(msr, &value);
237 smsr->values[slot].host = value;
238 smsr->values[slot].curr = value;
239}
240
241void kvm_define_shared_msr(unsigned slot, u32 msr)
242{
Nadav Amit0123be42014-07-24 15:06:56 +0300243 BUG_ON(slot >= KVM_NR_SHARED_MSRS);
Paolo Bonzinic847fe82015-07-29 11:06:34 +0200244 shared_msrs_global.msrs[slot] = msr;
Avi Kivity18863bd2009-09-07 11:12:18 +0300245 if (slot >= shared_msrs_global.nr)
246 shared_msrs_global.nr = slot + 1;
Avi Kivity18863bd2009-09-07 11:12:18 +0300247}
248EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
249
250static void kvm_shared_msr_cpu_online(void)
251{
252 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300253
254 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800255 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300256}
257
Andy Honig8b3c3102014-08-27 11:16:44 -0700258int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300259{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200260 unsigned int cpu = smp_processor_id();
261 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700262 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300263
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800264 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Andy Honig8b3c3102014-08-27 11:16:44 -0700265 return 0;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800266 smsr->values[slot].curr = value;
Andy Honig8b3c3102014-08-27 11:16:44 -0700267 err = wrmsrl_safe(shared_msrs_global.msrs[slot], value);
268 if (err)
269 return 1;
270
Avi Kivity18863bd2009-09-07 11:12:18 +0300271 if (!smsr->registered) {
272 smsr->urn.on_user_return = kvm_on_user_return;
273 user_return_notifier_register(&smsr->urn);
274 smsr->registered = true;
275 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700276 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300277}
278EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
279
Radim Krčmář13a34e02014-08-28 15:13:03 +0200280static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200281{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200282 unsigned int cpu = smp_processor_id();
283 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200284
285 if (smsr->registered)
286 kvm_on_user_return(&smsr->urn);
287}
288
Carsten Otte6866b832007-10-29 16:09:10 +0100289u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
290{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300291 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100292}
293EXPORT_SYMBOL_GPL(kvm_get_apic_base);
294
Jan Kiszka58cb6282014-01-24 16:48:44 +0100295int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100296{
Jan Kiszka58cb6282014-01-24 16:48:44 +0100297 u64 old_state = vcpu->arch.apic_base &
298 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
299 u64 new_state = msr_info->data &
300 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
301 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) |
302 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE);
303
304 if (!msr_info->host_initiated &&
305 ((msr_info->data & reserved_bits) != 0 ||
306 new_state == X2APIC_ENABLE ||
307 (new_state == MSR_IA32_APICBASE_ENABLE &&
308 old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) ||
309 (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) &&
310 old_state == 0)))
311 return 1;
312
313 kvm_lapic_set_base(vcpu, msr_info->data);
314 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100315}
316EXPORT_SYMBOL_GPL(kvm_set_apic_base);
317
Andi Kleen2605fc22014-05-02 00:44:37 +0200318asmlinkage __visible void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000319{
320 /* Fault while not rebooting. We want the trace. */
321 BUG();
322}
323EXPORT_SYMBOL_GPL(kvm_spurious_fault);
324
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200325#define EXCPT_BENIGN 0
326#define EXCPT_CONTRIBUTORY 1
327#define EXCPT_PF 2
328
329static int exception_class(int vector)
330{
331 switch (vector) {
332 case PF_VECTOR:
333 return EXCPT_PF;
334 case DE_VECTOR:
335 case TS_VECTOR:
336 case NP_VECTOR:
337 case SS_VECTOR:
338 case GP_VECTOR:
339 return EXCPT_CONTRIBUTORY;
340 default:
341 break;
342 }
343 return EXCPT_BENIGN;
344}
345
Nadav Amitd6e8c852014-07-24 14:51:24 +0300346#define EXCPT_FAULT 0
347#define EXCPT_TRAP 1
348#define EXCPT_ABORT 2
349#define EXCPT_INTERRUPT 3
350
351static int exception_type(int vector)
352{
353 unsigned int mask;
354
355 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
356 return EXCPT_INTERRUPT;
357
358 mask = 1 << vector;
359
360 /* #DB is trap, as instruction watchpoints are handled elsewhere */
361 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
362 return EXCPT_TRAP;
363
364 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
365 return EXCPT_ABORT;
366
367 /* Reserved exceptions will result in fault */
368 return EXCPT_FAULT;
369}
370
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200371static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200372 unsigned nr, bool has_error, u32 error_code,
373 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200374{
375 u32 prev_nr;
376 int class1, class2;
377
Avi Kivity3842d132010-07-27 12:30:24 +0300378 kvm_make_request(KVM_REQ_EVENT, vcpu);
379
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200380 if (!vcpu->arch.exception.pending) {
381 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200382 if (has_error && !is_protmode(vcpu))
383 has_error = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200384 vcpu->arch.exception.pending = true;
385 vcpu->arch.exception.has_error_code = has_error;
386 vcpu->arch.exception.nr = nr;
387 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200388 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200389 return;
390 }
391
392 /* to check exception */
393 prev_nr = vcpu->arch.exception.nr;
394 if (prev_nr == DF_VECTOR) {
395 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300396 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200397 return;
398 }
399 class1 = exception_class(prev_nr);
400 class2 = exception_class(nr);
401 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
402 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
403 /* generate double fault per SDM Table 5-5 */
404 vcpu->arch.exception.pending = true;
405 vcpu->arch.exception.has_error_code = true;
406 vcpu->arch.exception.nr = DF_VECTOR;
407 vcpu->arch.exception.error_code = 0;
408 } else
409 /* replace previous exception with a new one in a hope
410 that instruction re-execution will regenerate lost
411 exception */
412 goto queue;
413}
414
Avi Kivity298101d2007-11-25 13:41:11 +0200415void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
416{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200417 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200418}
419EXPORT_SYMBOL_GPL(kvm_queue_exception);
420
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200421void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
422{
423 kvm_multiple_exception(vcpu, nr, false, 0, true);
424}
425EXPORT_SYMBOL_GPL(kvm_requeue_exception);
426
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100427void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200428{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100429 if (err)
430 kvm_inject_gp(vcpu, 0);
431 else
432 kvm_x86_ops->skip_emulated_instruction(vcpu);
433}
434EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200435
Avi Kivity6389ee92010-11-29 16:12:30 +0200436void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200437{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200438 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200439 vcpu->arch.cr2 = fault->address;
440 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200441}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300442EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200443
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200444static bool kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200445{
Avi Kivity6389ee92010-11-29 16:12:30 +0200446 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
447 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200448 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200449 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200450
451 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200452}
453
Sheng Yang3419ffc2008-05-15 09:52:48 +0800454void kvm_inject_nmi(struct kvm_vcpu *vcpu)
455{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300456 atomic_inc(&vcpu->arch.nmi_queued);
457 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800458}
459EXPORT_SYMBOL_GPL(kvm_inject_nmi);
460
Avi Kivity298101d2007-11-25 13:41:11 +0200461void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
462{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200463 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200464}
465EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
466
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200467void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
468{
469 kvm_multiple_exception(vcpu, nr, true, error_code, true);
470}
471EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
472
Carsten Ottea03490e2007-10-29 16:09:35 +0100473/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300474 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
475 * a #GP and return false.
476 */
477bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200478{
Avi Kivity0a79b002009-09-01 12:03:25 +0300479 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
480 return true;
481 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
482 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100483}
Avi Kivity0a79b002009-09-01 12:03:25 +0300484EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100485
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300486bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
487{
488 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
489 return true;
490
491 kvm_queue_exception(vcpu, UD_VECTOR);
492 return false;
493}
494EXPORT_SYMBOL_GPL(kvm_require_dr);
495
Carsten Ottea03490e2007-10-29 16:09:35 +0100496/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200497 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200498 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200499 * can read from guest physical or from the guest's guest physical memory.
500 */
501int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
502 gfn_t ngfn, void *data, int offset, int len,
503 u32 access)
504{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200505 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200506 gfn_t real_gfn;
507 gpa_t ngpa;
508
509 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200510 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200511 if (real_gfn == UNMAPPED_GVA)
512 return -EFAULT;
513
514 real_gfn = gpa_to_gfn(real_gfn);
515
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200516 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200517}
518EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
519
Fengguang Wu69b00492015-01-19 22:33:39 +0800520static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200521 void *data, int offset, int len, u32 access)
522{
523 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
524 data, offset, len, access);
525}
526
Joerg Roedelec92fe42010-09-10 17:30:51 +0200527/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100528 * Load the pae pdptrs. Return true is they are all valid.
529 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200530int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100531{
532 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
533 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
534 int i;
535 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200536 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100537
Joerg Roedelff03a072010-09-10 17:30:57 +0200538 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
539 offset * sizeof(u64), sizeof(pdpte),
540 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100541 if (ret < 0) {
542 ret = 0;
543 goto out;
544 }
545 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400546 if ((pdpte[i] & PT_PRESENT_MASK) &&
Xiao Guangronga0a64f52015-08-05 12:04:21 +0800547 (pdpte[i] &
548 vcpu->arch.mmu.guest_rsvd_check.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100549 ret = 0;
550 goto out;
551 }
552 }
553 ret = 1;
554
Joerg Roedelff03a072010-09-10 17:30:57 +0200555 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300556 __set_bit(VCPU_EXREG_PDPTR,
557 (unsigned long *)&vcpu->arch.regs_avail);
558 __set_bit(VCPU_EXREG_PDPTR,
559 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100560out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100561
562 return ret;
563}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100564EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100565
Avi Kivityd835dfe2007-11-21 02:57:59 +0200566static bool pdptrs_changed(struct kvm_vcpu *vcpu)
567{
Joerg Roedelff03a072010-09-10 17:30:57 +0200568 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200569 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200570 int offset;
571 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200572 int r;
573
574 if (is_long_mode(vcpu) || !is_pae(vcpu))
575 return false;
576
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300577 if (!test_bit(VCPU_EXREG_PDPTR,
578 (unsigned long *)&vcpu->arch.regs_avail))
579 return true;
580
Avi Kivity9f8fe502010-12-05 17:30:00 +0200581 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
582 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200583 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
584 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200585 if (r < 0)
586 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200587 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200588out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200589
590 return changed;
591}
592
Avi Kivity49a9b072010-06-10 17:02:14 +0300593int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100594{
Sheng Yangaad82702010-05-12 16:40:42 +0800595 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800596 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800597
Avi Kivityf9a48e62010-01-06 19:10:22 +0200598 cr0 |= X86_CR0_ET;
599
Gleb Natapovab344822010-01-21 15:28:46 +0200600#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300601 if (cr0 & 0xffffffff00000000UL)
602 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200603#endif
604
605 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100606
Gleb Natapov0f122442010-04-28 19:15:31 +0300607 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
608 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100609
Gleb Natapov0f122442010-04-28 19:15:31 +0300610 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
611 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100612
613 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
614#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200615 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100616 int cs_db, cs_l;
617
Gleb Natapov0f122442010-04-28 19:15:31 +0300618 if (!is_pae(vcpu))
619 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100620 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300621 if (cs_l)
622 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100623 } else
624#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200625 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200626 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300627 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100628 }
629
Mao, Junjiead756a12012-07-02 01:18:48 +0000630 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
631 return 1;
632
Carsten Ottea03490e2007-10-29 16:09:35 +0100633 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100634
Lai Jiangshand170c412011-02-21 11:21:30 +0800635 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800636 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800637 kvm_async_pf_hash_reset(vcpu);
638 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800639
Sheng Yangaad82702010-05-12 16:40:42 +0800640 if ((cr0 ^ old_cr0) & update_bits)
641 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800642
Laszlo Ersek879ae182015-11-04 12:54:41 +0100643 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
644 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
645 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800646 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
647
Gleb Natapov0f122442010-04-28 19:15:31 +0300648 return 0;
649}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200650EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100651
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200652void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100653{
Avi Kivity49a9b072010-06-10 17:02:14 +0300654 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100655}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200656EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100657
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300658static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
659{
660 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
661 !vcpu->guest_xcr0_loaded) {
662 /* kvm_set_xcr() also depends on this */
663 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
664 vcpu->guest_xcr0_loaded = 1;
665 }
666}
667
668static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
669{
670 if (vcpu->guest_xcr0_loaded) {
671 if (vcpu->arch.xcr0 != host_xcr0)
672 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
673 vcpu->guest_xcr0_loaded = 0;
674 }
675}
676
Fengguang Wu69b00492015-01-19 22:33:39 +0800677static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800678{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000679 u64 xcr0 = xcr;
680 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200681 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800682
683 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
684 if (index != XCR_XFEATURE_ENABLED_MASK)
685 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700686 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800687 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700688 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800689 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200690
691 /*
692 * Do not allow the guest to set bits that we do not support
693 * saving. However, xcr0 bit 0 is always set, even if the
694 * emulated CPU does not support XSAVE (see fx_init).
695 */
Dave Hansend91cab72015-09-02 16:31:26 -0700696 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200697 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800698 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200699
Dave Hansend91cab72015-09-02 16:31:26 -0700700 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
701 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000702 return 1;
703
Dave Hansend91cab72015-09-02 16:31:26 -0700704 if (xcr0 & XFEATURE_MASK_AVX512) {
705 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800706 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700707 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800708 return 1;
709 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800710 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000711
Dave Hansend91cab72015-09-02 16:31:26 -0700712 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000713 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800714 return 0;
715}
716
717int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
718{
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000719 if (kvm_x86_ops->get_cpl(vcpu) != 0 ||
720 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800721 kvm_inject_gp(vcpu, 0);
722 return 1;
723 }
724 return 0;
725}
726EXPORT_SYMBOL_GPL(kvm_set_xcr);
727
Avi Kivitya83b29c2010-06-10 17:02:15 +0300728int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100729{
Avi Kivityfc78f512009-12-07 12:16:48 +0200730 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800731 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Huaitong Hanb9baba82016-03-22 16:51:21 +0800732 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE;
Xiao Guangrong0be02262015-05-11 22:55:21 +0800733
Gleb Natapov0f122442010-04-28 19:15:31 +0300734 if (cr4 & CR4_RESERVED_BITS)
735 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100736
Dexuan Cui2acf9232010-06-10 11:27:12 +0800737 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
738 return 1;
739
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800740 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
741 return 1;
742
Feng Wu97ec8c02014-04-01 17:46:34 +0800743 if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP))
744 return 1;
745
H. Peter Anvinafcbf132013-04-27 16:37:47 -0700746 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE))
Yang, Wei74dc2b42011-06-14 20:10:18 +0800747 return 1;
748
Huaitong Hanb9baba82016-03-22 16:51:21 +0800749 if (!guest_cpuid_has_pku(vcpu) && (cr4 & X86_CR4_PKE))
750 return 1;
751
Carsten Ottea03490e2007-10-29 16:09:35 +0100752 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300753 if (!(cr4 & X86_CR4_PAE))
754 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300755 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
756 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200757 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
758 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300759 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100760
Mao, Junjiead756a12012-07-02 01:18:48 +0000761 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
762 if (!guest_cpuid_has_pcid(vcpu))
763 return 1;
764
765 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
766 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
767 return 1;
768 }
769
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300770 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300771 return 1;
772
Mao, Junjiead756a12012-07-02 01:18:48 +0000773 if (((cr4 ^ old_cr4) & pdptr_bits) ||
774 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800775 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300776
Huaitong Hanb9baba82016-03-22 16:51:21 +0800777 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +0200778 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800779
Gleb Natapov0f122442010-04-28 19:15:31 +0300780 return 0;
781}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200782EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100783
Avi Kivity23902182010-06-10 17:02:16 +0300784int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100785{
Paolo Bonziniac146232014-11-10 13:53:25 +0100786#ifdef CONFIG_X86_64
Nadav Amit9d88fca2014-11-02 11:54:52 +0200787 cr3 &= ~CR3_PCID_INVD;
Paolo Bonziniac146232014-11-10 13:53:25 +0100788#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +0200789
Avi Kivity9f8fe502010-12-05 17:30:00 +0200790 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300791 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -0400792 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300793 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200794 }
795
Carsten Ottea03490e2007-10-29 16:09:35 +0100796 if (is_long_mode(vcpu)) {
Jan Kiszkad9f89b82014-05-10 09:24:34 +0200797 if (cr3 & CR3_L_MODE_RESERVED_BITS)
798 return 1;
799 } else if (is_pae(vcpu) && is_paging(vcpu) &&
800 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +0300801 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100802
Gleb Natapov0f122442010-04-28 19:15:31 +0300803 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200804 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Paolo Bonzinid8d173d2013-10-02 16:56:11 +0200805 kvm_mmu_new_cr3(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300806 return 0;
807}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200808EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100809
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100810int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100811{
Gleb Natapov0f122442010-04-28 19:15:31 +0300812 if (cr8 & CR8_RESERVED_BITS)
813 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +0200814 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100815 kvm_lapic_set_tpr(vcpu, cr8);
816 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800817 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300818 return 0;
819}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200820EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100821
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200822unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100823{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200824 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100825 return kvm_lapic_get_cr8(vcpu);
826 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800827 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100828}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200829EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100830
Nadav Amitae561ed2015-04-02 03:10:37 +0300831static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
832{
833 int i;
834
835 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
836 for (i = 0; i < KVM_NR_DB_REGS; i++)
837 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
838 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
839 }
840}
841
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100842static void kvm_update_dr6(struct kvm_vcpu *vcpu)
843{
844 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
845 kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6);
846}
847
Jan Kiszkac8639012012-09-21 05:42:55 +0200848static void kvm_update_dr7(struct kvm_vcpu *vcpu)
849{
850 unsigned long dr7;
851
852 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
853 dr7 = vcpu->arch.guest_debug_dr7;
854 else
855 dr7 = vcpu->arch.dr7;
856 kvm_x86_ops->set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +0100857 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
858 if (dr7 & DR7_BP_EN_MASK)
859 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +0200860}
861
Nadav Amit6f43ed02014-07-15 17:37:46 +0300862static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
863{
864 u64 fixed = DR6_FIXED_1;
865
866 if (!guest_cpuid_has_rtm(vcpu))
867 fixed |= DR6_RTM;
868 return fixed;
869}
870
Gleb Natapov338dbc92010-04-28 19:15:32 +0300871static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300872{
873 switch (dr) {
874 case 0 ... 3:
875 vcpu->arch.db[dr] = val;
876 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
877 vcpu->arch.eff_db[dr] = val;
878 break;
879 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300880 /* fall through */
881 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300882 if (val & 0xffffffff00000000ULL)
883 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +0300884 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100885 kvm_update_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300886 break;
887 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300888 /* fall through */
889 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300890 if (val & 0xffffffff00000000ULL)
891 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300892 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +0200893 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300894 break;
895 }
896
897 return 0;
898}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300899
900int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
901{
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300902 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +0300903 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300904 return 1;
905 }
906 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +0300907}
Gleb Natapov020df072010-04-13 10:05:23 +0300908EXPORT_SYMBOL_GPL(kvm_set_dr);
909
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300910int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300911{
912 switch (dr) {
913 case 0 ... 3:
914 *val = vcpu->arch.db[dr];
915 break;
916 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300917 /* fall through */
918 case 6:
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100919 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
920 *val = vcpu->arch.dr6;
921 else
922 *val = kvm_x86_ops->get_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300923 break;
924 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300925 /* fall through */
926 default: /* 7 */
927 *val = vcpu->arch.dr7;
928 break;
929 }
Gleb Natapov338dbc92010-04-28 19:15:32 +0300930 return 0;
931}
Gleb Natapov020df072010-04-13 10:05:23 +0300932EXPORT_SYMBOL_GPL(kvm_get_dr);
933
Avi Kivity022cd0e2011-11-10 14:57:23 +0200934bool kvm_rdpmc(struct kvm_vcpu *vcpu)
935{
936 u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
937 u64 data;
938 int err;
939
Wei Huangc6702c92015-06-19 13:44:45 +0200940 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +0200941 if (err)
942 return err;
943 kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data);
944 kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32);
945 return err;
946}
947EXPORT_SYMBOL_GPL(kvm_rdpmc);
948
Carsten Otte043405e2007-10-10 17:16:19 +0200949/*
950 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
951 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
952 *
953 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400954 * capabilities of the host cpu. This capabilities test skips MSRs that are
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200955 * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs
956 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +0200957 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400958
Carsten Otte043405e2007-10-10 17:16:19 +0200959static u32 msrs_to_save[] = {
960 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400961 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200962#ifdef CONFIG_X86_64
963 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
964#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800965 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +0100966 MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Carsten Otte043405e2007-10-10 17:16:19 +0200967};
968
969static unsigned num_msrs_to_save;
970
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200971static u32 emulated_msrs[] = {
972 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
973 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
974 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
975 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Andrey Smetanine7d95132015-07-03 15:01:37 +0300976 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
977 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +0300978 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +0300979 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300980 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300981 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +0300982 HV_X64_MSR_STIMER0_CONFIG,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200983 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
984 MSR_KVM_PV_EOI_EN,
985
Will Auldba904632012-11-29 12:42:50 -0800986 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800987 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +0200988 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +0300989 MSR_IA32_MCG_STATUS,
990 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +0800991 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +0200992 MSR_IA32_SMBASE,
Carsten Otte043405e2007-10-10 17:16:19 +0200993};
994
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200995static unsigned num_emulated_msrs;
996
Jan Kiszka384bb782013-04-20 10:52:36 +0200997bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +0100998{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200999 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001000 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001001
Alexander Graf1b2fd702009-02-02 16:23:51 +01001002 if (efer & EFER_FFXSR) {
1003 struct kvm_cpuid_entry2 *feat;
1004
1005 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001006 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001007 return false;
Alexander Graf1b2fd702009-02-02 16:23:51 +01001008 }
1009
Alexander Grafd8017472008-11-25 20:17:11 +01001010 if (efer & EFER_SVME) {
1011 struct kvm_cpuid_entry2 *feat;
1012
1013 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001014 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001015 return false;
Alexander Grafd8017472008-11-25 20:17:11 +01001016 }
1017
Jan Kiszka384bb782013-04-20 10:52:36 +02001018 return true;
1019}
1020EXPORT_SYMBOL_GPL(kvm_valid_efer);
1021
1022static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
1023{
1024 u64 old_efer = vcpu->arch.efer;
1025
1026 if (!kvm_valid_efer(vcpu, efer))
1027 return 1;
1028
1029 if (is_paging(vcpu)
1030 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1031 return 1;
1032
Carsten Otte15c4a642007-10-30 18:44:17 +01001033 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001034 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001035
Sheng Yanga3d204e2010-05-12 16:40:40 +08001036 kvm_x86_ops->set_efer(vcpu, efer);
1037
Sheng Yangaad82702010-05-12 16:40:42 +08001038 /* Update reserved bits */
1039 if ((efer ^ old_efer) & EFER_NX)
1040 kvm_mmu_reset_context(vcpu);
1041
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001042 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001043}
1044
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001045void kvm_enable_efer_bits(u64 mask)
1046{
1047 efer_reserved_bits &= ~mask;
1048}
1049EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1050
Carsten Otte15c4a642007-10-30 18:44:17 +01001051/*
1052 * Writes msr value into into the appropriate "register".
1053 * Returns 0 on success, non-0 otherwise.
1054 * Assumes vcpu_load() was already called.
1055 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001056int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01001057{
Nadav Amit854e8bb2014-09-16 03:24:05 +03001058 switch (msr->index) {
1059 case MSR_FS_BASE:
1060 case MSR_GS_BASE:
1061 case MSR_KERNEL_GS_BASE:
1062 case MSR_CSTAR:
1063 case MSR_LSTAR:
1064 if (is_noncanonical_address(msr->data))
1065 return 1;
1066 break;
1067 case MSR_IA32_SYSENTER_EIP:
1068 case MSR_IA32_SYSENTER_ESP:
1069 /*
1070 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1071 * non-canonical address is written on Intel but not on
1072 * AMD (which ignores the top 32-bits, because it does
1073 * not implement 64-bit SYSENTER).
1074 *
1075 * 64-bit code should hence be able to write a non-canonical
1076 * value on AMD. Making the address canonical ensures that
1077 * vmentry does not fail on Intel after writing a non-canonical
1078 * value, and that something deterministic happens if the guest
1079 * invokes 64-bit SYSENTER.
1080 */
1081 msr->data = get_canonical(msr->data);
1082 }
Will Auld8fe8ab42012-11-29 12:42:12 -08001083 return kvm_x86_ops->set_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001084}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001085EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001086
Carsten Otte313a3dc2007-10-11 19:16:52 +02001087/*
1088 * Adapt set_msr() to msr_io()'s calling convention
1089 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001090static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1091{
1092 struct msr_data msr;
1093 int r;
1094
1095 msr.index = index;
1096 msr.host_initiated = true;
1097 r = kvm_get_msr(vcpu, &msr);
1098 if (r)
1099 return r;
1100
1101 *data = msr.data;
1102 return 0;
1103}
1104
Carsten Otte313a3dc2007-10-11 19:16:52 +02001105static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1106{
Will Auld8fe8ab42012-11-29 12:42:12 -08001107 struct msr_data msr;
1108
1109 msr.data = *data;
1110 msr.index = index;
1111 msr.host_initiated = true;
1112 return kvm_set_msr(vcpu, &msr);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001113}
1114
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001115#ifdef CONFIG_X86_64
1116struct pvclock_gtod_data {
1117 seqcount_t seq;
1118
1119 struct { /* extract of a clocksource struct */
1120 int vclock_mode;
1121 cycle_t cycle_last;
1122 cycle_t mask;
1123 u32 mult;
1124 u32 shift;
1125 } clock;
1126
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001127 u64 boot_ns;
1128 u64 nsec_base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001129};
1130
1131static struct pvclock_gtod_data pvclock_gtod_data;
1132
1133static void update_pvclock_gtod(struct timekeeper *tk)
1134{
1135 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001136 u64 boot_ns;
1137
Peter Zijlstra876e7882015-03-19 10:09:06 +01001138 boot_ns = ktime_to_ns(ktime_add(tk->tkr_mono.base, tk->offs_boot));
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001139
1140 write_seqcount_begin(&vdata->seq);
1141
1142 /* copy pvclock gtod data */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001143 vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode;
1144 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1145 vdata->clock.mask = tk->tkr_mono.mask;
1146 vdata->clock.mult = tk->tkr_mono.mult;
1147 vdata->clock.shift = tk->tkr_mono.shift;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001148
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001149 vdata->boot_ns = boot_ns;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001150 vdata->nsec_base = tk->tkr_mono.xtime_nsec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001151
1152 write_seqcount_end(&vdata->seq);
1153}
1154#endif
1155
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001156void kvm_set_pending_timer(struct kvm_vcpu *vcpu)
1157{
1158 /*
1159 * Note: KVM_REQ_PENDING_TIMER is implicitly checked in
1160 * vcpu_enter_guest. This function is only called from
1161 * the physical CPU that is running vcpu.
1162 */
1163 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1164}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001165
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001166static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1167{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001168 int version;
1169 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001170 struct pvclock_wall_clock wc;
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001171 struct timespec64 boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001172
1173 if (!wall_clock)
1174 return;
1175
Avi Kivity9ed3c442010-05-04 15:00:37 +03001176 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1177 if (r)
1178 return;
1179
1180 if (version & 1)
1181 ++version; /* first time write, random junk */
1182
1183 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001184
Nicholas Krause1dab1342015-12-30 13:08:46 -05001185 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
1186 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001187
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001188 /*
1189 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001190 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001191 * wall clock specified here. guest system time equals host
1192 * system time for us, thus we must fill in host boot time here.
1193 */
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001194 getboottime64(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001195
Bruce Rogers4b648662012-07-20 10:44:24 -06001196 if (kvm->arch.kvmclock_offset) {
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001197 struct timespec64 ts = ns_to_timespec64(kvm->arch.kvmclock_offset);
1198 boot = timespec64_sub(boot, ts);
Bruce Rogers4b648662012-07-20 10:44:24 -06001199 }
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001200 wc.sec = (u32)boot.tv_sec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001201 wc.nsec = boot.tv_nsec;
1202 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001203
1204 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1205
1206 version++;
1207 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001208}
1209
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001210static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1211{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01001212 do_shl32_div32(dividend, divisor);
1213 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001214}
1215
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001216static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001217 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001218{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001219 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001220 int32_t shift = 0;
1221 uint64_t tps64;
1222 uint32_t tps32;
1223
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001224 tps64 = base_hz;
1225 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02001226 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001227 tps64 >>= 1;
1228 shift--;
1229 }
1230
1231 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001232 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1233 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001234 scaled64 >>= 1;
1235 else
1236 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001237 shift++;
1238 }
1239
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001240 *pshift = shift;
1241 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001242
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001243 pr_debug("%s: base_hz %llu => %llu, shift %d, mul %u\n",
1244 __func__, base_hz, scaled_hz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001245}
1246
Marcelo Tosattid8281992012-11-27 23:29:01 -02001247#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001248static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001249#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001250
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001251static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001252static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001253
Joerg Roedel857e4092011-03-25 09:44:50 +01001254static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
Zachary Amsden759379d2010-08-19 22:07:25 -10001255{
Zachary Amsdencc578282012-02-03 15:43:50 -02001256 return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
1257 vcpu->arch.virtual_tsc_shift);
Zachary Amsden759379d2010-08-19 22:07:25 -10001258}
1259
Zachary Amsdencc578282012-02-03 15:43:50 -02001260static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001261{
Zachary Amsdencc578282012-02-03 15:43:50 -02001262 u64 v = (u64)khz * (1000000 + ppm);
1263 do_div(v, 1000000);
1264 return v;
1265}
1266
Haozhong Zhang381d5852015-10-20 15:39:04 +08001267static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
1268{
1269 u64 ratio;
1270
1271 /* Guest TSC same frequency as host TSC? */
1272 if (!scale) {
1273 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
1274 return 0;
1275 }
1276
1277 /* TSC scaling supported? */
1278 if (!kvm_has_tsc_control) {
1279 if (user_tsc_khz > tsc_khz) {
1280 vcpu->arch.tsc_catchup = 1;
1281 vcpu->arch.tsc_always_catchup = 1;
1282 return 0;
1283 } else {
1284 WARN(1, "user requested TSC rate below hardware speed\n");
1285 return -1;
1286 }
1287 }
1288
1289 /* TSC scaling required - calculate ratio */
1290 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
1291 user_tsc_khz, tsc_khz);
1292
1293 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
1294 WARN_ONCE(1, "Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
1295 user_tsc_khz);
1296 return -1;
1297 }
1298
1299 vcpu->arch.tsc_scaling_ratio = ratio;
1300 return 0;
1301}
1302
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001303static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02001304{
1305 u32 thresh_lo, thresh_hi;
1306 int use_scaling = 0;
1307
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001308 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001309 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08001310 /* set tsc_scaling_ratio to a safe value */
1311 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
Haozhong Zhang381d5852015-10-20 15:39:04 +08001312 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08001313 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001314
Zachary Amsdenc2855452010-09-18 14:38:15 -10001315 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001316 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02001317 &vcpu->arch.virtual_tsc_shift,
1318 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001319 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02001320
1321 /*
1322 * Compute the variation in TSC rate which is acceptable
1323 * within the range of tolerance and decide if the
1324 * rate being applied is within that bounds of the hardware
1325 * rate. If so, no scaling or compensation need be done.
1326 */
1327 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1328 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001329 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
1330 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 -02001331 use_scaling = 1;
1332 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001333 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001334}
1335
1336static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1337{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001338 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001339 vcpu->arch.virtual_tsc_mult,
1340 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001341 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001342 return tsc;
1343}
1344
Fengguang Wu69b00492015-01-19 22:33:39 +08001345static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001346{
1347#ifdef CONFIG_X86_64
1348 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001349 struct kvm_arch *ka = &vcpu->kvm->arch;
1350 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1351
1352 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1353 atomic_read(&vcpu->kvm->online_vcpus));
1354
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001355 /*
1356 * Once the masterclock is enabled, always perform request in
1357 * order to update it.
1358 *
1359 * In order to enable masterclock, the host clocksource must be TSC
1360 * and the vcpus need to have matched TSCs. When that happens,
1361 * perform request to enable masterclock.
1362 */
1363 if (ka->use_master_clock ||
1364 (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001365 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1366
1367 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1368 atomic_read(&vcpu->kvm->online_vcpus),
1369 ka->use_master_clock, gtod->clock.vclock_mode);
1370#endif
1371}
1372
Will Auldba904632012-11-29 12:42:50 -08001373static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1374{
1375 u64 curr_offset = kvm_x86_ops->read_tsc_offset(vcpu);
1376 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1377}
1378
Haozhong Zhang35181e82015-10-20 15:39:03 +08001379/*
1380 * Multiply tsc by a fixed point number represented by ratio.
1381 *
1382 * The most significant 64-N bits (mult) of ratio represent the
1383 * integral part of the fixed point number; the remaining N bits
1384 * (frac) represent the fractional part, ie. ratio represents a fixed
1385 * point number (mult + frac * 2^(-N)).
1386 *
1387 * N equals to kvm_tsc_scaling_ratio_frac_bits.
1388 */
1389static inline u64 __scale_tsc(u64 ratio, u64 tsc)
1390{
1391 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
1392}
1393
1394u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
1395{
1396 u64 _tsc = tsc;
1397 u64 ratio = vcpu->arch.tsc_scaling_ratio;
1398
1399 if (ratio != kvm_default_tsc_scaling_ratio)
1400 _tsc = __scale_tsc(ratio, tsc);
1401
1402 return _tsc;
1403}
1404EXPORT_SYMBOL_GPL(kvm_scale_tsc);
1405
Haozhong Zhang07c14192015-10-20 15:39:05 +08001406static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1407{
1408 u64 tsc;
1409
1410 tsc = kvm_scale_tsc(vcpu, rdtsc());
1411
1412 return target_tsc - tsc;
1413}
1414
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001415u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
1416{
1417 return kvm_x86_ops->read_l1_tsc(vcpu, kvm_scale_tsc(vcpu, host_tsc));
1418}
1419EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
1420
Will Auld8fe8ab42012-11-29 12:42:12 -08001421void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10001422{
1423 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001424 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001425 unsigned long flags;
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001426 s64 usdiff;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001427 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001428 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08001429 u64 data = msr->data;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001430
Jan Kiszka038f8c12011-02-04 10:49:11 +01001431 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Haozhong Zhang07c14192015-10-20 15:39:05 +08001432 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001433 ns = get_kernel_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001434 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001435
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001436 if (vcpu->arch.virtual_tsc_khz) {
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001437 int faulted = 0;
1438
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001439 /* n.b - signed multiplication and division required */
1440 usdiff = data - kvm->arch.last_tsc_write;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001441#ifdef CONFIG_X86_64
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001442 usdiff = (usdiff * 1000) / vcpu->arch.virtual_tsc_khz;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001443#else
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001444 /* do_div() only does unsigned */
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001445 asm("1: idivl %[divisor]\n"
1446 "2: xor %%edx, %%edx\n"
1447 " movl $0, %[faulted]\n"
1448 "3:\n"
1449 ".section .fixup,\"ax\"\n"
1450 "4: movl $1, %[faulted]\n"
1451 " jmp 3b\n"
1452 ".previous\n"
1453
1454 _ASM_EXTABLE(1b, 4b)
1455
1456 : "=A"(usdiff), [faulted] "=r" (faulted)
1457 : "A"(usdiff * 1000), [divisor] "rm"(vcpu->arch.virtual_tsc_khz));
1458
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001459#endif
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001460 do_div(elapsed, 1000);
1461 usdiff -= elapsed;
1462 if (usdiff < 0)
1463 usdiff = -usdiff;
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001464
1465 /* idivl overflow => difference is larger than USEC_PER_SEC */
1466 if (faulted)
1467 usdiff = USEC_PER_SEC;
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001468 } else
1469 usdiff = USEC_PER_SEC; /* disable TSC match window below */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001470
1471 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001472 * Special case: TSC write with a small delta (1 second) of virtual
1473 * cycle time against real time is interpreted as an attempt to
1474 * synchronize the CPU.
1475 *
1476 * For a reliable TSC, we can match TSC offsets, and for an unstable
1477 * TSC, we add elapsed time in this computation. We could let the
1478 * compensation code attempt to catch up if we fall behind, but
1479 * it's better to try to match offsets from the beginning.
1480 */
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001481 if (usdiff < USEC_PER_SEC &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001482 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001483 if (!check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02001484 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001485 pr_debug("kvm: matched tsc offset for %llu\n", data);
1486 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001487 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001488 data += delta;
Haozhong Zhang07c14192015-10-20 15:39:05 +08001489 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001490 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001491 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001492 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001493 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001494 } else {
1495 /*
1496 * We split periods of matched TSC writes into generations.
1497 * For each generation, we track the original measured
1498 * nanosecond time, offset, and write, so if TSCs are in
1499 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08001500 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02001501 *
1502 * These values are tracked in kvm->arch.cur_xxx variables.
1503 */
1504 kvm->arch.cur_tsc_generation++;
1505 kvm->arch.cur_tsc_nsec = ns;
1506 kvm->arch.cur_tsc_write = data;
1507 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001508 matched = false;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001509 pr_debug("kvm: new tsc generation %llu, clock %llu\n",
Zachary Amsdene26101b2012-02-03 15:43:57 -02001510 kvm->arch.cur_tsc_generation, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001511 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02001512
1513 /*
1514 * We also track th most recent recorded KHZ, write and time to
1515 * allow the matching interval to be extended at each write.
1516 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001517 kvm->arch.last_tsc_nsec = ns;
1518 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001519 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001520
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001521 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001522
1523 /* Keep track of which generation this VCPU has synchronized to */
1524 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
1525 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
1526 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
1527
Will Auldba904632012-11-29 12:42:50 -08001528 if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated)
1529 update_ia32_tsc_adjust_msr(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001530 kvm_x86_ops->write_tsc_offset(vcpu, offset);
1531 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001532
1533 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001534 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001535 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001536 } else if (!already_matched) {
1537 kvm->arch.nr_vcpus_matched_tsc++;
1538 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001539
1540 kvm_track_tsc_matching(vcpu);
1541 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001542}
Zachary Amsdene26101b2012-02-03 15:43:57 -02001543
Zachary Amsden99e3e302010-08-19 22:07:17 -10001544EXPORT_SYMBOL_GPL(kvm_write_tsc);
1545
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001546static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
1547 s64 adjustment)
1548{
1549 kvm_x86_ops->adjust_tsc_offset_guest(vcpu, adjustment);
1550}
1551
1552static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
1553{
1554 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
1555 WARN_ON(adjustment < 0);
1556 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
1557 kvm_x86_ops->adjust_tsc_offset_guest(vcpu, adjustment);
1558}
1559
Marcelo Tosattid8281992012-11-27 23:29:01 -02001560#ifdef CONFIG_X86_64
1561
1562static cycle_t read_tsc(void)
1563{
Andy Lutomirski03b97302015-06-25 18:44:08 +02001564 cycle_t ret = (cycle_t)rdtsc_ordered();
1565 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001566
1567 if (likely(ret >= last))
1568 return ret;
1569
1570 /*
1571 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08001572 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02001573 * very likely) and there's a data dependence, so force GCC
1574 * to generate a branch instead. I don't barrier() because
1575 * we don't actually need a barrier, and if this function
1576 * ever gets inlined it will generate worse code.
1577 */
1578 asm volatile ("");
1579 return last;
1580}
1581
1582static inline u64 vgettsc(cycle_t *cycle_now)
1583{
1584 long v;
1585 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1586
1587 *cycle_now = read_tsc();
1588
1589 v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask;
1590 return v * gtod->clock.mult;
1591}
1592
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001593static int do_monotonic_boot(s64 *t, cycle_t *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001594{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001595 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001596 unsigned long seq;
1597 int mode;
1598 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001599
Marcelo Tosattid8281992012-11-27 23:29:01 -02001600 do {
1601 seq = read_seqcount_begin(&gtod->seq);
1602 mode = gtod->clock.vclock_mode;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001603 ns = gtod->nsec_base;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001604 ns += vgettsc(cycle_now);
1605 ns >>= gtod->clock.shift;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001606 ns += gtod->boot_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001607 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001608 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001609
1610 return mode;
1611}
1612
1613/* returns true if host is using tsc clocksource */
1614static bool kvm_get_time_and_clockread(s64 *kernel_ns, cycle_t *cycle_now)
1615{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001616 /* checked again under seqlock below */
1617 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1618 return false;
1619
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001620 return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001621}
1622#endif
1623
1624/*
1625 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001626 * Assuming a stable TSC across physical CPUS, and a stable TSC
1627 * across virtual CPUs, the following condition is possible.
1628 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02001629 * CPUs at the next numbered event.
1630 *
1631 * "timespecX" represents host monotonic time. "tscX" represents
1632 * RDTSC value.
1633 *
1634 * VCPU0 on CPU0 | VCPU1 on CPU1
1635 *
1636 * 1. read timespec0,tsc0
1637 * 2. | timespec1 = timespec0 + N
1638 * | tsc1 = tsc0 + M
1639 * 3. transition to guest | transition to guest
1640 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
1641 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
1642 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
1643 *
1644 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
1645 *
1646 * - ret0 < ret1
1647 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
1648 * ...
1649 * - 0 < N - M => M < N
1650 *
1651 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
1652 * always the case (the difference between two distinct xtime instances
1653 * might be smaller then the difference between corresponding TSC reads,
1654 * when updating guest vcpus pvclock areas).
1655 *
1656 * To avoid that problem, do not allow visibility of distinct
1657 * system_timestamp/tsc_timestamp values simultaneously: use a master
1658 * copy of host monotonic time values. Update that master copy
1659 * in lockstep.
1660 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001661 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02001662 *
1663 */
1664
1665static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
1666{
1667#ifdef CONFIG_X86_64
1668 struct kvm_arch *ka = &kvm->arch;
1669 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001670 bool host_tsc_clocksource, vcpus_matched;
1671
1672 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1673 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02001674
1675 /*
1676 * If the host uses TSC clock, then passthrough TSC as stable
1677 * to the guest.
1678 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001679 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02001680 &ka->master_kernel_ns,
1681 &ka->master_cycle_now);
1682
Marcelo Tosatti16a96022014-05-14 12:43:24 -03001683 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Marcelo Tosatti54750f22015-01-20 15:54:52 -02001684 && !backwards_tsc_observed
1685 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001686
Marcelo Tosattid8281992012-11-27 23:29:01 -02001687 if (ka->use_master_clock)
1688 atomic_set(&kvm_guest_has_master_clock, 1);
1689
1690 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001691 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
1692 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001693#endif
1694}
1695
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01001696void kvm_make_mclock_inprogress_request(struct kvm *kvm)
1697{
1698 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
1699}
1700
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001701static void kvm_gen_update_masterclock(struct kvm *kvm)
1702{
1703#ifdef CONFIG_X86_64
1704 int i;
1705 struct kvm_vcpu *vcpu;
1706 struct kvm_arch *ka = &kvm->arch;
1707
1708 spin_lock(&ka->pvclock_gtod_sync_lock);
1709 kvm_make_mclock_inprogress_request(kvm);
1710 /* no guest entries from this point */
1711 pvclock_update_vm_gtod_copy(kvm);
1712
1713 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001714 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001715
1716 /* guest entries allowed */
1717 kvm_for_each_vcpu(i, vcpu, kvm)
1718 clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests);
1719
1720 spin_unlock(&ka->pvclock_gtod_sync_lock);
1721#endif
1722}
1723
Zachary Amsden34c238a2010-09-18 14:38:14 -10001724static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001725{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001726 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001727 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001728 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02001729 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001730 u64 tsc_timestamp, host_tsc;
Andy Honig0b794592013-02-20 14:48:10 -08001731 struct pvclock_vcpu_time_info guest_hv_clock;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001732 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001733 bool use_master_clock;
1734
1735 kernel_ns = 0;
1736 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001737
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001738 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02001739 * If the host uses TSC clock, then passthrough TSC as stable
1740 * to the guest.
1741 */
1742 spin_lock(&ka->pvclock_gtod_sync_lock);
1743 use_master_clock = ka->use_master_clock;
1744 if (use_master_clock) {
1745 host_tsc = ka->master_cycle_now;
1746 kernel_ns = ka->master_kernel_ns;
1747 }
1748 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001749
1750 /* Keep irq disabled to prevent changes to the clock */
1751 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001752 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
1753 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001754 local_irq_restore(flags);
1755 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
1756 return 1;
1757 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02001758 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02001759 host_tsc = rdtsc();
Marcelo Tosattid8281992012-11-27 23:29:01 -02001760 kernel_ns = get_kernel_ns();
1761 }
1762
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001763 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001764
1765 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001766 * We may have to catch up the TSC to match elapsed wall clock
1767 * time for two reasons, even if kvmclock is used.
1768 * 1) CPU could have been running below the maximum TSC rate
1769 * 2) Broken TSC compensation resets the base at each VCPU
1770 * entry to avoid unknown leaps of TSC even when running
1771 * again on the same CPU. This may cause apparent elapsed
1772 * time to disappear, and the guest to stand still or run
1773 * very slowly.
1774 */
1775 if (vcpu->tsc_catchup) {
1776 u64 tsc = compute_guest_tsc(v, kernel_ns);
1777 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02001778 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001779 tsc_timestamp = tsc;
1780 }
1781 }
1782
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001783 local_irq_restore(flags);
1784
Andy Honig0b794592013-02-20 14:48:10 -08001785 if (!vcpu->pv_time_enabled)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001786 return 0;
1787
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001788 if (kvm_has_tsc_control)
1789 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
1790
1791 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001792 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001793 &vcpu->hv_clock.tsc_shift,
1794 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001795 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001796 }
1797
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001798 /* With all the info we got, fill in the values */
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001799 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001800 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10001801 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001802
Owen Hofmann09a0c3f2014-11-03 16:57:18 -08001803 if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time,
1804 &guest_hv_clock, sizeof(guest_hv_clock))))
1805 return 0;
1806
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001807 /* This VCPU is paused, but it's legal for a guest to read another
1808 * VCPU's kvmclock, so we really have to follow the specification where
1809 * it says that version is odd if data is being modified, and even after
1810 * it is consistent.
1811 *
1812 * Version field updates must be kept separate. This is because
1813 * kvm_write_guest_cached might use a "rep movs" instruction, and
1814 * writes within a string instruction are weakly ordered. So there
1815 * are three writes overall.
1816 *
1817 * As a small optimization, only write the version field in the first
1818 * and third write. The vcpu->pv_time cache is still valid, because the
1819 * version field is the first in the struct.
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001820 */
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001821 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
1822
1823 vcpu->hv_clock.version = guest_hv_clock.version + 1;
1824 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1825 &vcpu->hv_clock,
1826 sizeof(vcpu->hv_clock.version));
1827
1828 smp_wmb();
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001829
1830 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
Andy Honig0b794592013-02-20 14:48:10 -08001831 pvclock_flags = (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001832
1833 if (vcpu->pvclock_set_guest_stopped_request) {
1834 pvclock_flags |= PVCLOCK_GUEST_STOPPED;
1835 vcpu->pvclock_set_guest_stopped_request = false;
1836 }
1837
Marcelo Tosattid8281992012-11-27 23:29:01 -02001838 /* If the host uses TSC clocksource, then it is stable */
1839 if (use_master_clock)
1840 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
1841
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001842 vcpu->hv_clock.flags = pvclock_flags;
1843
David Matlackce1a5e62014-11-05 11:46:42 -08001844 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
1845
Andy Honig0b794592013-02-20 14:48:10 -08001846 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1847 &vcpu->hv_clock,
1848 sizeof(vcpu->hv_clock));
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001849
1850 smp_wmb();
1851
1852 vcpu->hv_clock.version++;
1853 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1854 &vcpu->hv_clock,
1855 sizeof(vcpu->hv_clock.version));
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001856 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001857}
1858
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001859/*
1860 * kvmclock updates which are isolated to a given vcpu, such as
1861 * vcpu->cpu migration, should not allow system_timestamp from
1862 * the rest of the vcpus to remain static. Otherwise ntp frequency
1863 * correction applies to one vcpu's system_timestamp but not
1864 * the others.
1865 *
1866 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01001867 * We need to rate-limit these requests though, as they can
1868 * considerably slow guests that have a large number of vcpus.
1869 * The time for a remote vcpu to update its kvmclock is bound
1870 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001871 */
1872
Andrew Jones7e44e442014-02-28 12:52:54 +01001873#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
1874
1875static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001876{
1877 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01001878 struct delayed_work *dwork = to_delayed_work(work);
1879 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1880 kvmclock_update_work);
1881 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001882 struct kvm_vcpu *vcpu;
1883
1884 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001885 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001886 kvm_vcpu_kick(vcpu);
1887 }
1888}
1889
Andrew Jones7e44e442014-02-28 12:52:54 +01001890static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
1891{
1892 struct kvm *kvm = v->kvm;
1893
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001894 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01001895 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
1896 KVMCLOCK_UPDATE_DELAY);
1897}
1898
Andrew Jones332967a2014-02-28 12:52:55 +01001899#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
1900
1901static void kvmclock_sync_fn(struct work_struct *work)
1902{
1903 struct delayed_work *dwork = to_delayed_work(work);
1904 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1905 kvmclock_sync_work);
1906 struct kvm *kvm = container_of(ka, struct kvm, arch);
1907
Marcelo Tosatti630994b2015-05-12 22:42:04 -03001908 if (!kvmclock_periodic_sync)
1909 return;
1910
Andrew Jones332967a2014-02-28 12:52:55 +01001911 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
1912 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
1913 KVMCLOCK_SYNC_PERIOD);
1914}
1915
Huang Ying890ca9a2009-05-11 16:48:15 +08001916static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1917{
1918 u64 mcg_cap = vcpu->arch.mcg_cap;
1919 unsigned bank_num = mcg_cap & 0xff;
1920
1921 switch (msr) {
1922 case MSR_IA32_MCG_STATUS:
1923 vcpu->arch.mcg_status = data;
1924 break;
1925 case MSR_IA32_MCG_CTL:
1926 if (!(mcg_cap & MCG_CTL_P))
1927 return 1;
1928 if (data != 0 && data != ~(u64)0)
1929 return -1;
1930 vcpu->arch.mcg_ctl = data;
1931 break;
1932 default:
1933 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08001934 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08001935 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01001936 /* only 0 or all 1s can be written to IA32_MCi_CTL
1937 * some Linux kernels though clear bit 10 in bank 4 to
1938 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
1939 * this to avoid an uncatched #GP in the guest
1940 */
Huang Ying890ca9a2009-05-11 16:48:15 +08001941 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01001942 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08001943 return -1;
1944 vcpu->arch.mce_banks[offset] = data;
1945 break;
1946 }
1947 return 1;
1948 }
1949 return 0;
1950}
1951
Ed Swierkffde22a2009-10-15 15:21:43 -07001952static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
1953{
1954 struct kvm *kvm = vcpu->kvm;
1955 int lm = is_long_mode(vcpu);
1956 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
1957 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
1958 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
1959 : kvm->arch.xen_hvm_config.blob_size_32;
1960 u32 page_num = data & ~PAGE_MASK;
1961 u64 page_addr = data & PAGE_MASK;
1962 u8 *page;
1963 int r;
1964
1965 r = -E2BIG;
1966 if (page_num >= blob_size)
1967 goto out;
1968 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001969 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
1970 if (IS_ERR(page)) {
1971 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07001972 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001973 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001974 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07001975 goto out_free;
1976 r = 0;
1977out_free:
1978 kfree(page);
1979out:
1980 return r;
1981}
1982
Gleb Natapov344d9582010-10-14 11:22:50 +02001983static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
1984{
1985 gpa_t gpa = data & ~0x3f;
1986
Guo Chao4a969982012-06-28 15:17:27 +08001987 /* Bits 2:5 are reserved, Should be zero */
Gleb Natapov6adba522010-10-14 11:22:55 +02001988 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02001989 return 1;
1990
1991 vcpu->arch.apf.msr_val = data;
1992
1993 if (!(data & KVM_ASYNC_PF_ENABLED)) {
1994 kvm_clear_async_pf_completion_queue(vcpu);
1995 kvm_async_pf_hash_reset(vcpu);
1996 return 0;
1997 }
1998
Andrew Honig8f964522013-03-29 09:35:21 -07001999 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
2000 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02002001 return 1;
2002
Gleb Natapov6adba522010-10-14 11:22:55 +02002003 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02002004 kvm_async_pf_wakeup_all(vcpu);
2005 return 0;
2006}
2007
Glauber Costa12f9a482011-02-01 14:16:40 -05002008static void kvmclock_reset(struct kvm_vcpu *vcpu)
2009{
Andy Honig0b794592013-02-20 14:48:10 -08002010 vcpu->arch.pv_time_enabled = false;
Glauber Costa12f9a482011-02-01 14:16:40 -05002011}
2012
Glauber Costac9aaa892011-07-11 15:28:14 -04002013static void record_steal_time(struct kvm_vcpu *vcpu)
2014{
2015 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2016 return;
2017
2018 if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2019 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
2020 return;
2021
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002022 if (vcpu->arch.st.steal.version & 1)
2023 vcpu->arch.st.steal.version += 1; /* first time write, random junk */
2024
2025 vcpu->arch.st.steal.version += 1;
2026
2027 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2028 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2029
2030 smp_wmb();
2031
Liang Chenc54cdf12016-03-16 19:33:16 +08002032 vcpu->arch.st.steal.steal += current->sched_info.run_delay -
2033 vcpu->arch.st.last_steal;
2034 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002035
2036 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2037 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2038
2039 smp_wmb();
2040
2041 vcpu->arch.st.steal.version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04002042
2043 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2044 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2045}
2046
Will Auld8fe8ab42012-11-29 12:42:12 -08002047int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002048{
Gleb Natapov57537852012-01-15 14:17:22 +02002049 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002050 u32 msr = msr_info->index;
2051 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002052
Carsten Otte15c4a642007-10-30 18:44:17 +01002053 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002054 case MSR_AMD64_NB_CFG:
2055 case MSR_IA32_UCODE_REV:
2056 case MSR_IA32_UCODE_WRITE:
2057 case MSR_VM_HSAVE_PA:
2058 case MSR_AMD64_PATCH_LOADER:
2059 case MSR_AMD64_BU_CFG2:
2060 break;
2061
Carsten Otte15c4a642007-10-30 18:44:17 +01002062 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02002063 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002064 case MSR_K7_HWCR:
2065 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002066 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002067 data &= ~(u64)0x8; /* ignore TLB cache disable */
Matthias Lange22d48b2d2014-06-26 13:50:15 +02002068 data &= ~(u64)0x40000; /* ignore Mc status write enable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02002069 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002070 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2071 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002072 return 1;
2073 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002074 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002075 case MSR_FAM10H_MMIO_CONF_BASE:
2076 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002077 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2078 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002079 return 1;
2080 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002081 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002082 case MSR_IA32_DEBUGCTLMSR:
2083 if (!data) {
2084 /* We support the non-activated case already */
2085 break;
2086 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2087 /* Values other than LBR and BTF are vendor-specific,
2088 thus reserved and should throw a #GP */
2089 return 1;
2090 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002091 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2092 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002093 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002094 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002095 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002096 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002097 return kvm_set_apic_base(vcpu, msr_info);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002098 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2099 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002100 case MSR_IA32_TSCDEADLINE:
2101 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2102 break;
Will Auldba904632012-11-29 12:42:50 -08002103 case MSR_IA32_TSC_ADJUST:
2104 if (guest_cpuid_has_tsc_adjust(vcpu)) {
2105 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002106 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08002107 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08002108 }
2109 vcpu->arch.ia32_tsc_adjust_msr = data;
2110 }
2111 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002112 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002113 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01002114 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002115 case MSR_IA32_SMBASE:
2116 if (!msr_info->host_initiated)
2117 return 1;
2118 vcpu->arch.smbase = data;
2119 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002120 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002121 case MSR_KVM_WALL_CLOCK:
2122 vcpu->kvm->arch.wall_clock = data;
2123 kvm_write_wall_clock(vcpu->kvm, data);
2124 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002125 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002126 case MSR_KVM_SYSTEM_TIME: {
Andy Honig0b794592013-02-20 14:48:10 -08002127 u64 gpa_offset;
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002128 struct kvm_arch *ka = &vcpu->kvm->arch;
2129
Glauber Costa12f9a482011-02-01 14:16:40 -05002130 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002131
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002132 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2133 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2134
2135 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
2136 set_bit(KVM_REQ_MASTERCLOCK_UPDATE,
2137 &vcpu->requests);
2138
2139 ka->boot_vcpu_runs_old_kvmclock = tmp;
2140 }
2141
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002142 vcpu->arch.time = data;
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002143 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002144
2145 /* we verify if the enable bit is set... */
2146 if (!(data & 1))
2147 break;
2148
Andy Honig0b794592013-02-20 14:48:10 -08002149 gpa_offset = data & ~(PAGE_MASK | 1);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002150
Andy Honig0b794592013-02-20 14:48:10 -08002151 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andrew Honig8f964522013-03-29 09:35:21 -07002152 &vcpu->arch.pv_time, data & ~1ULL,
2153 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002154 vcpu->arch.pv_time_enabled = false;
2155 else
2156 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002157
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002158 break;
2159 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002160 case MSR_KVM_ASYNC_PF_EN:
2161 if (kvm_pv_enable_async_pf(vcpu, data))
2162 return 1;
2163 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002164 case MSR_KVM_STEAL_TIME:
2165
2166 if (unlikely(!sched_info_on()))
2167 return 1;
2168
2169 if (data & KVM_STEAL_RESERVED_MASK)
2170 return 1;
2171
2172 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.st.stime,
Andrew Honig8f964522013-03-29 09:35:21 -07002173 data & KVM_STEAL_VALID_BITS,
2174 sizeof(struct kvm_steal_time)))
Glauber Costac9aaa892011-07-11 15:28:14 -04002175 return 1;
2176
2177 vcpu->arch.st.msr_val = data;
2178
2179 if (!(data & KVM_MSR_ENABLED))
2180 break;
2181
Glauber Costac9aaa892011-07-11 15:28:14 -04002182 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2183
2184 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002185 case MSR_KVM_PV_EOI_EN:
2186 if (kvm_lapic_enable_pv_eoi(vcpu, data))
2187 return 1;
2188 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002189
Huang Ying890ca9a2009-05-11 16:48:15 +08002190 case MSR_IA32_MCG_CTL:
2191 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002192 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Huang Ying890ca9a2009-05-11 16:48:15 +08002193 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002194
Wei Huang6912ac32015-06-12 01:34:56 -04002195 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2196 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2197 pr = true; /* fall through */
2198 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2199 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002200 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002201 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002202
2203 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002204 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2205 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002206 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002207 case MSR_K7_CLK_CTL:
2208 /*
2209 * Ignore all writes to this no longer documented MSR.
2210 * Writes are only relevant for old K7 processors,
2211 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002212 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002213 * affected processor models on the command line, hence
2214 * the need to ignore the workaround.
2215 */
2216 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002217 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002218 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2219 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002220 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002221 return kvm_hv_set_msr_common(vcpu, msr, data,
2222 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05002223 case MSR_IA32_BBL_CR_CTL3:
2224 /* Drop writes to this legacy MSR -- see rdmsr
2225 * counterpart for further detail.
2226 */
Christoffer Dalla737f252012-06-03 21:17:48 +03002227 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002228 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002229 case MSR_AMD64_OSVW_ID_LENGTH:
2230 if (!guest_cpuid_has_osvw(vcpu))
2231 return 1;
2232 vcpu->arch.osvw.length = data;
2233 break;
2234 case MSR_AMD64_OSVW_STATUS:
2235 if (!guest_cpuid_has_osvw(vcpu))
2236 return 1;
2237 vcpu->arch.osvw.status = data;
2238 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002239 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07002240 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
2241 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02002242 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002243 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02002244 if (!ignore_msrs) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002245 vcpu_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n",
2246 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002247 return 1;
2248 } else {
Christoffer Dalla737f252012-06-03 21:17:48 +03002249 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n",
2250 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002251 break;
2252 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002253 }
2254 return 0;
2255}
2256EXPORT_SYMBOL_GPL(kvm_set_msr_common);
2257
2258
2259/*
2260 * Reads an msr value (of 'msr_index') into 'pdata'.
2261 * Returns 0 on success, non-0 otherwise.
2262 * Assumes vcpu_load() was already called.
2263 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002264int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01002265{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002266 return kvm_x86_ops->get_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002267}
Wincy Vanff651cb2014-12-11 08:52:58 +03002268EXPORT_SYMBOL_GPL(kvm_get_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002269
Huang Ying890ca9a2009-05-11 16:48:15 +08002270static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2271{
2272 u64 data;
2273 u64 mcg_cap = vcpu->arch.mcg_cap;
2274 unsigned bank_num = mcg_cap & 0xff;
2275
2276 switch (msr) {
2277 case MSR_IA32_P5_MC_ADDR:
2278 case MSR_IA32_P5_MC_TYPE:
2279 data = 0;
2280 break;
2281 case MSR_IA32_MCG_CAP:
2282 data = vcpu->arch.mcg_cap;
2283 break;
2284 case MSR_IA32_MCG_CTL:
2285 if (!(mcg_cap & MCG_CTL_P))
2286 return 1;
2287 data = vcpu->arch.mcg_ctl;
2288 break;
2289 case MSR_IA32_MCG_STATUS:
2290 data = vcpu->arch.mcg_status;
2291 break;
2292 default:
2293 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002294 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002295 u32 offset = msr - MSR_IA32_MC0_CTL;
2296 data = vcpu->arch.mce_banks[offset];
2297 break;
2298 }
2299 return 1;
2300 }
2301 *pdata = data;
2302 return 0;
2303}
2304
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002305int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002306{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002307 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01002308 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01002309 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002310 case MSR_IA32_DEBUGCTLMSR:
2311 case MSR_IA32_LASTBRANCHFROMIP:
2312 case MSR_IA32_LASTBRANCHTOIP:
2313 case MSR_IA32_LASTINTFROMIP:
2314 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302315 case MSR_K8_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02002316 case MSR_K8_TSEG_ADDR:
2317 case MSR_K8_TSEG_MASK:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302318 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02002319 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02002320 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02002321 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002322 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002323 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03002324 case MSR_IA32_PERF_CTL:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002325 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01002326 break;
Wei Huang6912ac32015-06-12 01:34:56 -04002327 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2328 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2329 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2330 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002331 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002332 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
2333 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02002334 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002335 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002336 msr_info->data = 0x100000000ULL;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002337 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002338 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03002339 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002340 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002341 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002342 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01002343 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02002344 /*
2345 * MSR_EBC_FREQUENCY_ID
2346 * Conservative value valid for even the basic CPU models.
2347 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
2348 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
2349 * and 266MHz for model 3, or 4. Set Core Clock
2350 * Frequency to System Bus Frequency Ratio to 1 (bits
2351 * 31:24) even though these are only valid for CPU
2352 * models > 2, however guests may end up dividing or
2353 * multiplying by zero otherwise.
2354 */
2355 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002356 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02002357 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002358 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002359 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01002360 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002361 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002362 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002363 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002364 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002365 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002366 break;
Will Auldba904632012-11-29 12:42:50 -08002367 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002368 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08002369 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002370 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002371 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01002372 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002373 case MSR_IA32_SMBASE:
2374 if (!msr_info->host_initiated)
2375 return 1;
2376 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01002377 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002378 case MSR_IA32_PERF_STATUS:
2379 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002380 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002381 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08002382 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01002383 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002384 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002385 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01002386 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002387 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002388 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002389 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002390 break;
2391 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002392 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002393 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002394 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02002395 case MSR_KVM_ASYNC_PF_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002396 msr_info->data = vcpu->arch.apf.msr_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02002397 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002398 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002399 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04002400 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002401 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002402 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002403 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002404 case MSR_IA32_P5_MC_ADDR:
2405 case MSR_IA32_P5_MC_TYPE:
2406 case MSR_IA32_MCG_CAP:
2407 case MSR_IA32_MCG_CTL:
2408 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002409 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002410 return get_msr_mce(vcpu, msr_info->index, &msr_info->data);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002411 case MSR_K7_CLK_CTL:
2412 /*
2413 * Provide expected ramp-up count for K7. All other
2414 * are set to zero, indicating minimum divisors for
2415 * every field.
2416 *
2417 * This prevents guest kernels on AMD host with CPU
2418 * type 6, model 8 and higher from exploding due to
2419 * the rdmsr failing.
2420 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002421 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002422 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002423 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002424 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2425 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002426 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine83d5882015-07-03 15:01:34 +03002427 return kvm_hv_get_msr_common(vcpu,
2428 msr_info->index, &msr_info->data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002429 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002430 case MSR_IA32_BBL_CR_CTL3:
2431 /* This legacy MSR exists but isn't fully documented in current
2432 * silicon. It is however accessed by winxp in very narrow
2433 * scenarios where it sets bit #19, itself documented as
2434 * a "reserved" bit. Best effort attempt to source coherent
2435 * read data here should the balance of the register be
2436 * interpreted by the guest:
2437 *
2438 * L2 cache control register 3: 64GB range, 256KB size,
2439 * enabled, latency 0x1, configured
2440 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002441 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05002442 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002443 case MSR_AMD64_OSVW_ID_LENGTH:
2444 if (!guest_cpuid_has_osvw(vcpu))
2445 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002446 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002447 break;
2448 case MSR_AMD64_OSVW_STATUS:
2449 if (!guest_cpuid_has_osvw(vcpu))
2450 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002451 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002452 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002453 default:
Wei Huangc6702c92015-06-19 13:44:45 +02002454 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002455 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002456 if (!ignore_msrs) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002457 vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr_info->index);
Andre Przywaraed85c062009-06-25 12:36:49 +02002458 return 1;
2459 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002460 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index);
2461 msr_info->data = 0;
Andre Przywaraed85c062009-06-25 12:36:49 +02002462 }
2463 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002464 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002465 return 0;
2466}
2467EXPORT_SYMBOL_GPL(kvm_get_msr_common);
2468
Carsten Otte313a3dc2007-10-11 19:16:52 +02002469/*
2470 * Read or write a bunch of msrs. All parameters are kernel addresses.
2471 *
2472 * @return number of msrs set successfully.
2473 */
2474static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2475 struct kvm_msr_entry *entries,
2476 int (*do_msr)(struct kvm_vcpu *vcpu,
2477 unsigned index, u64 *data))
2478{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002479 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002480
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002481 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002482 for (i = 0; i < msrs->nmsrs; ++i)
2483 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2484 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002485 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002486
Carsten Otte313a3dc2007-10-11 19:16:52 +02002487 return i;
2488}
2489
2490/*
2491 * Read or write a bunch of msrs. Parameters are user addresses.
2492 *
2493 * @return number of msrs set successfully.
2494 */
2495static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2496 int (*do_msr)(struct kvm_vcpu *vcpu,
2497 unsigned index, u64 *data),
2498 int writeback)
2499{
2500 struct kvm_msrs msrs;
2501 struct kvm_msr_entry *entries;
2502 int r, n;
2503 unsigned size;
2504
2505 r = -EFAULT;
2506 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2507 goto out;
2508
2509 r = -E2BIG;
2510 if (msrs.nmsrs >= MAX_IO_MSRS)
2511 goto out;
2512
Carsten Otte313a3dc2007-10-11 19:16:52 +02002513 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002514 entries = memdup_user(user_msrs->entries, size);
2515 if (IS_ERR(entries)) {
2516 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002517 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002518 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02002519
2520 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2521 if (r < 0)
2522 goto out_free;
2523
2524 r = -EFAULT;
2525 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2526 goto out_free;
2527
2528 r = n;
2529
2530out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002531 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002532out:
2533 return r;
2534}
2535
Alexander Graf784aa3d2014-07-14 18:27:35 +02002536int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002537{
2538 int r;
2539
2540 switch (ext) {
2541 case KVM_CAP_IRQCHIP:
2542 case KVM_CAP_HLT:
2543 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002544 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002545 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002546 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002547 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002548 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002549 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002550 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002551 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002552 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002553 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002554 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002555 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03002556 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002557 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002558 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002559 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002560 case KVM_CAP_XEN_HVM:
Glauber Costaafbcf7a2009-10-16 15:28:36 -04002561 case KVM_CAP_ADJUST_CLOCK:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002562 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002563 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002564 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002565 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002566 case KVM_CAP_HYPERV_SYNIC:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002567 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002568 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002569 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002570 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002571 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002572 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002573 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002574 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01002575 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05002576 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01002577 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03002578 case KVM_CAP_ENABLE_CAP_VM:
2579 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02002580 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07002581 case KVM_CAP_SPLIT_IRQCHIP:
Alex Williamson2a5bab12013-04-16 13:49:18 -06002582#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
2583 case KVM_CAP_ASSIGN_DEV_IRQ:
2584 case KVM_CAP_PCI_2_3:
2585#endif
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002586 r = 1;
2587 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02002588 case KVM_CAP_X86_SMM:
2589 /* SMBASE is usually relocated above 1M on modern chipsets,
2590 * and SMM handlers might indeed rely on 4G segment limits,
2591 * so do not report SMM to be available if real mode is
2592 * emulated via vm86 mode. Still, do not go to great lengths
2593 * to avoid userspace's usage of the feature, because it is a
2594 * fringe case that is not enabled except via specific settings
2595 * of the module parameters.
2596 */
2597 r = kvm_x86_ops->cpu_has_high_real_mode_segbase();
2598 break;
Laurent Vivier542472b2008-05-30 16:05:55 +02002599 case KVM_CAP_COALESCED_MMIO:
2600 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
2601 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002602 case KVM_CAP_VAPIC:
2603 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2604 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002605 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002606 r = KVM_SOFT_MAX_VCPUS;
2607 break;
2608 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002609 r = KVM_MAX_VCPUS;
2610 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002611 case KVM_CAP_NR_MEMSLOTS:
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07002612 r = KVM_USER_MEM_SLOTS;
Avi Kivitya988b912008-02-20 11:59:20 +02002613 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002614 case KVM_CAP_PV_MMU: /* obsolete */
2615 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002616 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002617#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002618 case KVM_CAP_IOMMU:
Joerg Roedela1b60c12011-09-06 18:46:34 +02002619 r = iommu_present(&pci_bus_type);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002620 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002621#endif
Huang Ying890ca9a2009-05-11 16:48:15 +08002622 case KVM_CAP_MCE:
2623 r = KVM_MAX_MCE_BANKS;
2624 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002625 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02002626 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002627 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002628 case KVM_CAP_TSC_CONTROL:
2629 r = kvm_has_tsc_control;
2630 break;
Radim Krčmář371313132016-07-12 22:09:27 +02002631 case KVM_CAP_X2APIC_API:
2632 r = KVM_X2APIC_API_VALID_FLAGS;
2633 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002634 default:
2635 r = 0;
2636 break;
2637 }
2638 return r;
2639
2640}
2641
Carsten Otte043405e2007-10-10 17:16:19 +02002642long kvm_arch_dev_ioctl(struct file *filp,
2643 unsigned int ioctl, unsigned long arg)
2644{
2645 void __user *argp = (void __user *)arg;
2646 long r;
2647
2648 switch (ioctl) {
2649 case KVM_GET_MSR_INDEX_LIST: {
2650 struct kvm_msr_list __user *user_msr_list = argp;
2651 struct kvm_msr_list msr_list;
2652 unsigned n;
2653
2654 r = -EFAULT;
2655 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2656 goto out;
2657 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002658 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Carsten Otte043405e2007-10-10 17:16:19 +02002659 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2660 goto out;
2661 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002662 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002663 goto out;
2664 r = -EFAULT;
2665 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2666 num_msrs_to_save * sizeof(u32)))
2667 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002668 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002669 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002670 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02002671 goto out;
2672 r = 0;
2673 break;
2674 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002675 case KVM_GET_SUPPORTED_CPUID:
2676 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02002677 struct kvm_cpuid2 __user *cpuid_arg = argp;
2678 struct kvm_cpuid2 cpuid;
2679
2680 r = -EFAULT;
2681 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2682 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002683
2684 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
2685 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02002686 if (r)
2687 goto out;
2688
2689 r = -EFAULT;
2690 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2691 goto out;
2692 r = 0;
2693 break;
2694 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002695 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
Huang Ying890ca9a2009-05-11 16:48:15 +08002696 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002697 if (copy_to_user(argp, &kvm_mce_cap_supported,
2698 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08002699 goto out;
2700 r = 0;
2701 break;
2702 }
Carsten Otte043405e2007-10-10 17:16:19 +02002703 default:
2704 r = -EINVAL;
2705 }
2706out:
2707 return r;
2708}
2709
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002710static void wbinvd_ipi(void *garbage)
2711{
2712 wbinvd();
2713}
2714
2715static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2716{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06002717 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002718}
2719
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002720static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2721{
2722 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
2723}
2724
Carsten Otte313a3dc2007-10-11 19:16:52 +02002725void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2726{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002727 /* Address WBINVD may be executed by guest */
2728 if (need_emulate_wbinvd(vcpu)) {
2729 if (kvm_x86_ops->has_wbinvd_exit())
2730 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2731 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2732 smp_call_function_single(vcpu->cpu,
2733 wbinvd_ipi, NULL, 1);
2734 }
2735
Carsten Otte313a3dc2007-10-11 19:16:52 +02002736 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002737
2738 /* Apply any externally detected TSC adjustments (due to suspend) */
2739 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
2740 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
2741 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002742 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002743 }
2744
Zachary Amsden48434c202010-08-19 22:07:24 -10002745 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002746 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002747 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10002748 if (tsc_delta < 0)
2749 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07002750
2751 if (kvm_lapic_hv_timer_in_use(vcpu) &&
2752 kvm_x86_ops->set_hv_timer(vcpu,
2753 kvm_get_lapic_tscdeadline_msr(vcpu)))
2754 kvm_lapic_switch_to_sw_timer(vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002755 if (check_tsc_unstable()) {
Haozhong Zhang07c14192015-10-20 15:39:05 +08002756 u64 offset = kvm_compute_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002757 vcpu->arch.last_guest_tsc);
2758 kvm_x86_ops->write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002759 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002760 }
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02002761 /*
2762 * On a host with synchronized TSC, there is no need to update
2763 * kvmclock on vcpu->cpu migration
2764 */
2765 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002766 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002767 if (vcpu->cpu != cpu)
2768 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002769 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002770 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002771
Glauber Costac9aaa892011-07-11 15:28:14 -04002772 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002773}
2774
2775void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2776{
Avi Kivity02daab22009-12-30 12:40:26 +02002777 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002778 kvm_put_guest_fpu(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002779 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02002780}
2781
Carsten Otte313a3dc2007-10-11 19:16:52 +02002782static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2783 struct kvm_lapic_state *s)
2784{
Andrey Smetanind62caab2015-11-10 15:36:33 +03002785 if (vcpu->arch.apicv_active)
2786 kvm_x86_ops->sync_pir_to_irr(vcpu);
2787
Radim Krčmářa92e2542016-07-12 22:09:22 +02002788 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002789}
2790
2791static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2792 struct kvm_lapic_state *s)
2793{
Radim Krčmářa92e2542016-07-12 22:09:22 +02002794 int r;
2795
2796 r = kvm_apic_set_state(vcpu, s);
2797 if (r)
2798 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002799 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002800
2801 return 0;
2802}
2803
Matt Gingell127a4572015-11-17 17:32:05 +01002804static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
2805{
2806 return (!lapic_in_kernel(vcpu) ||
2807 kvm_apic_accept_pic_intr(vcpu));
2808}
2809
Matt Gingell782d4222015-11-16 15:26:00 -08002810/*
2811 * if userspace requested an interrupt window, check that the
2812 * interrupt window is open.
2813 *
2814 * No need to exit to userspace if we already have an interrupt queued.
2815 */
2816static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
2817{
2818 return kvm_arch_interrupt_allowed(vcpu) &&
2819 !kvm_cpu_has_interrupt(vcpu) &&
2820 !kvm_event_needs_reinjection(vcpu) &&
2821 kvm_cpu_accept_dm_intr(vcpu);
2822}
2823
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002824static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2825 struct kvm_interrupt *irq)
2826{
Chen Gang02cdb502013-02-27 11:33:25 +08002827 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002828 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002829
2830 if (!irqchip_in_kernel(vcpu->kvm)) {
2831 kvm_queue_interrupt(vcpu, irq->irq, false);
2832 kvm_make_request(KVM_REQ_EVENT, vcpu);
2833 return 0;
2834 }
2835
2836 /*
2837 * With in-kernel LAPIC, we only use this to inject EXTINT, so
2838 * fail for in-kernel 8259.
2839 */
2840 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002841 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002842
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002843 if (vcpu->arch.pending_external_vector != -1)
2844 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002845
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002846 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08002847 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002848 return 0;
2849}
2850
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002851static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2852{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002853 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002854
2855 return 0;
2856}
2857
Paolo Bonzinif0778252015-04-01 15:06:40 +02002858static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
2859{
Paolo Bonzini64d60672015-05-07 11:36:11 +02002860 kvm_make_request(KVM_REQ_SMI, vcpu);
2861
Paolo Bonzinif0778252015-04-01 15:06:40 +02002862 return 0;
2863}
2864
Avi Kivityb209749f2007-10-22 16:50:39 +02002865static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2866 struct kvm_tpr_access_ctl *tac)
2867{
2868 if (tac->flags)
2869 return -EINVAL;
2870 vcpu->arch.tpr_access_reporting = !!tac->enabled;
2871 return 0;
2872}
2873
Huang Ying890ca9a2009-05-11 16:48:15 +08002874static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
2875 u64 mcg_cap)
2876{
2877 int r;
2878 unsigned bank_num = mcg_cap & 0xff, bank;
2879
2880 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02002881 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08002882 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002883 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08002884 goto out;
2885 r = 0;
2886 vcpu->arch.mcg_cap = mcg_cap;
2887 /* Init IA32_MCG_CTL to all 1s */
2888 if (mcg_cap & MCG_CTL_P)
2889 vcpu->arch.mcg_ctl = ~(u64)0;
2890 /* Init IA32_MCi_CTL to all 1s */
2891 for (bank = 0; bank < bank_num; bank++)
2892 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002893
2894 if (kvm_x86_ops->setup_mce)
2895 kvm_x86_ops->setup_mce(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002896out:
2897 return r;
2898}
2899
2900static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
2901 struct kvm_x86_mce *mce)
2902{
2903 u64 mcg_cap = vcpu->arch.mcg_cap;
2904 unsigned bank_num = mcg_cap & 0xff;
2905 u64 *banks = vcpu->arch.mce_banks;
2906
2907 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
2908 return -EINVAL;
2909 /*
2910 * if IA32_MCG_CTL is not all 1s, the uncorrected error
2911 * reporting is disabled
2912 */
2913 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
2914 vcpu->arch.mcg_ctl != ~(u64)0)
2915 return 0;
2916 banks += 4 * mce->bank;
2917 /*
2918 * if IA32_MCi_CTL is not all 1s, the uncorrected error
2919 * reporting is disabled for the bank
2920 */
2921 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
2922 return 0;
2923 if (mce->status & MCI_STATUS_UC) {
2924 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02002925 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03002926 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002927 return 0;
2928 }
2929 if (banks[1] & MCI_STATUS_VAL)
2930 mce->status |= MCI_STATUS_OVER;
2931 banks[2] = mce->addr;
2932 banks[3] = mce->misc;
2933 vcpu->arch.mcg_status = mce->mcg_status;
2934 banks[1] = mce->status;
2935 kvm_queue_exception(vcpu, MC_VECTOR);
2936 } else if (!(banks[1] & MCI_STATUS_VAL)
2937 || !(banks[1] & MCI_STATUS_UC)) {
2938 if (banks[1] & MCI_STATUS_VAL)
2939 mce->status |= MCI_STATUS_OVER;
2940 banks[2] = mce->addr;
2941 banks[3] = mce->misc;
2942 banks[1] = mce->status;
2943 } else
2944 banks[1] |= MCI_STATUS_OVER;
2945 return 0;
2946}
2947
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002948static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
2949 struct kvm_vcpu_events *events)
2950{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002951 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01002952 events->exception.injected =
2953 vcpu->arch.exception.pending &&
2954 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002955 events->exception.nr = vcpu->arch.exception.nr;
2956 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002957 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002958 events->exception.error_code = vcpu->arch.exception.error_code;
2959
Jan Kiszka03b82a32010-02-15 10:45:41 +01002960 events->interrupt.injected =
2961 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002962 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01002963 events->interrupt.soft = 0;
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002964 events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002965
2966 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002967 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002968 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002969 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002970
Jan Kiszka66450a22013-03-13 12:42:34 +01002971 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002972
Paolo Bonzinif0778252015-04-01 15:06:40 +02002973 events->smi.smm = is_smm(vcpu);
2974 events->smi.pending = vcpu->arch.smi_pending;
2975 events->smi.smm_inside_nmi =
2976 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
2977 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
2978
Jan Kiszkadab4b912009-12-06 18:24:15 +01002979 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02002980 | KVM_VCPUEVENT_VALID_SHADOW
2981 | KVM_VCPUEVENT_VALID_SMM);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002982 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002983}
2984
2985static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
2986 struct kvm_vcpu_events *events)
2987{
Jan Kiszkadab4b912009-12-06 18:24:15 +01002988 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01002989 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02002990 | KVM_VCPUEVENT_VALID_SHADOW
2991 | KVM_VCPUEVENT_VALID_SMM))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002992 return -EINVAL;
2993
Paolo Bonzini78e546c2016-06-01 14:09:20 +02002994 if (events->exception.injected &&
2995 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
2996 return -EINVAL;
2997
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002998 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002999 vcpu->arch.exception.pending = events->exception.injected;
3000 vcpu->arch.exception.nr = events->exception.nr;
3001 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
3002 vcpu->arch.exception.error_code = events->exception.error_code;
3003
3004 vcpu->arch.interrupt.pending = events->interrupt.injected;
3005 vcpu->arch.interrupt.nr = events->interrupt.nr;
3006 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01003007 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
3008 kvm_x86_ops->set_interrupt_shadow(vcpu,
3009 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003010
3011 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01003012 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
3013 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003014 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
3015
Jan Kiszka66450a22013-03-13 12:42:34 +01003016 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003017 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01003018 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003019
Paolo Bonzinif0778252015-04-01 15:06:40 +02003020 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
3021 if (events->smi.smm)
3022 vcpu->arch.hflags |= HF_SMM_MASK;
3023 else
3024 vcpu->arch.hflags &= ~HF_SMM_MASK;
3025 vcpu->arch.smi_pending = events->smi.pending;
3026 if (events->smi.smm_inside_nmi)
3027 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
3028 else
3029 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003030 if (lapic_in_kernel(vcpu)) {
Paolo Bonzinif0778252015-04-01 15:06:40 +02003031 if (events->smi.latched_init)
3032 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3033 else
3034 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3035 }
3036 }
3037
Avi Kivity3842d132010-07-27 12:30:24 +03003038 kvm_make_request(KVM_REQ_EVENT, vcpu);
3039
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003040 return 0;
3041}
3042
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003043static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
3044 struct kvm_debugregs *dbgregs)
3045{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003046 unsigned long val;
3047
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003048 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003049 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003050 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003051 dbgregs->dr7 = vcpu->arch.dr7;
3052 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003053 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003054}
3055
3056static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
3057 struct kvm_debugregs *dbgregs)
3058{
3059 if (dbgregs->flags)
3060 return -EINVAL;
3061
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02003062 if (dbgregs->dr6 & ~0xffffffffull)
3063 return -EINVAL;
3064 if (dbgregs->dr7 & ~0xffffffffull)
3065 return -EINVAL;
3066
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003067 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03003068 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003069 vcpu->arch.dr6 = dbgregs->dr6;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003070 kvm_update_dr6(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003071 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01003072 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003073
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003074 return 0;
3075}
3076
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003077#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
3078
3079static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
3080{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003081 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02003082 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003083 u64 valid;
3084
3085 /*
3086 * Copy legacy XSAVE area, to avoid complications with CPUID
3087 * leaves 0 and 1 in the loop below.
3088 */
3089 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
3090
3091 /* Set XSTATE_BV */
3092 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
3093
3094 /*
3095 * Copy each region from the possibly compacted offset to the
3096 * non-compacted offset.
3097 */
Dave Hansend91cab72015-09-02 16:31:26 -07003098 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003099 while (valid) {
3100 u64 feature = valid & -valid;
3101 int index = fls64(feature) - 1;
3102 void *src = get_xsave_addr(xsave, feature);
3103
3104 if (src) {
3105 u32 size, offset, ecx, edx;
3106 cpuid_count(XSTATE_CPUID, index,
3107 &size, &offset, &ecx, &edx);
3108 memcpy(dest + offset, src, size);
3109 }
3110
3111 valid -= feature;
3112 }
3113}
3114
3115static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
3116{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003117 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003118 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
3119 u64 valid;
3120
3121 /*
3122 * Copy legacy XSAVE area, to avoid complications with CPUID
3123 * leaves 0 and 1 in the loop below.
3124 */
3125 memcpy(xsave, src, XSAVE_HDR_OFFSET);
3126
3127 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02003128 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02003129 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02003130 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003131
3132 /*
3133 * Copy each region from the non-compacted offset to the
3134 * possibly compacted offset.
3135 */
Dave Hansend91cab72015-09-02 16:31:26 -07003136 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003137 while (valid) {
3138 u64 feature = valid & -valid;
3139 int index = fls64(feature) - 1;
3140 void *dest = get_xsave_addr(xsave, feature);
3141
3142 if (dest) {
3143 u32 size, offset, ecx, edx;
3144 cpuid_count(XSTATE_CPUID, index,
3145 &size, &offset, &ecx, &edx);
3146 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08003147 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003148
3149 valid -= feature;
3150 }
3151}
3152
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003153static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
3154 struct kvm_xsave *guest_xsave)
3155{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003156 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003157 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
3158 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003159 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003160 memcpy(guest_xsave->region,
Ingo Molnar7366ed72015-04-27 04:19:39 +02003161 &vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003162 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003163 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07003164 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003165 }
3166}
3167
3168static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
3169 struct kvm_xsave *guest_xsave)
3170{
3171 u64 xstate_bv =
3172 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
3173
Borislav Petkovd366bf72016-04-04 22:25:02 +02003174 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003175 /*
3176 * Here we allow setting states that are not present in
3177 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
3178 * with old userspace.
3179 */
Paolo Bonzini4ff41732014-02-24 12:15:16 +01003180 if (xstate_bv & ~kvm_supported_xcr0())
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003181 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003182 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003183 } else {
Dave Hansend91cab72015-09-02 16:31:26 -07003184 if (xstate_bv & ~XFEATURE_MASK_FPSSE)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003185 return -EINVAL;
Ingo Molnar7366ed72015-04-27 04:19:39 +02003186 memcpy(&vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003187 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003188 }
3189 return 0;
3190}
3191
3192static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
3193 struct kvm_xcrs *guest_xcrs)
3194{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003195 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003196 guest_xcrs->nr_xcrs = 0;
3197 return;
3198 }
3199
3200 guest_xcrs->nr_xcrs = 1;
3201 guest_xcrs->flags = 0;
3202 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
3203 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
3204}
3205
3206static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
3207 struct kvm_xcrs *guest_xcrs)
3208{
3209 int i, r = 0;
3210
Borislav Petkovd366bf72016-04-04 22:25:02 +02003211 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003212 return -EINVAL;
3213
3214 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
3215 return -EINVAL;
3216
3217 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
3218 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003219 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003220 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003221 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003222 break;
3223 }
3224 if (r)
3225 r = -EINVAL;
3226 return r;
3227}
3228
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003229/*
3230 * kvm_set_guest_paused() indicates to the guest kernel that it has been
3231 * stopped by the hypervisor. This function will be called from the host only.
3232 * EINVAL is returned when the host attempts to set the flag for a guest that
3233 * does not support pv clocks.
3234 */
3235static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
3236{
Andy Honig0b794592013-02-20 14:48:10 -08003237 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003238 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003239 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003240 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
3241 return 0;
3242}
3243
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003244static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
3245 struct kvm_enable_cap *cap)
3246{
3247 if (cap->flags)
3248 return -EINVAL;
3249
3250 switch (cap->cap) {
3251 case KVM_CAP_HYPERV_SYNIC:
3252 return kvm_hv_activate_synic(vcpu);
3253 default:
3254 return -EINVAL;
3255 }
3256}
3257
Carsten Otte313a3dc2007-10-11 19:16:52 +02003258long kvm_arch_vcpu_ioctl(struct file *filp,
3259 unsigned int ioctl, unsigned long arg)
3260{
3261 struct kvm_vcpu *vcpu = filp->private_data;
3262 void __user *argp = (void __user *)arg;
3263 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003264 union {
3265 struct kvm_lapic_state *lapic;
3266 struct kvm_xsave *xsave;
3267 struct kvm_xcrs *xcrs;
3268 void *buffer;
3269 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003270
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003271 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003272 switch (ioctl) {
3273 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003274 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003275 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003276 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003277 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003278
Dave Hansenb772ff32008-08-11 10:01:47 -07003279 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003280 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003281 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003282 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003283 if (r)
3284 goto out;
3285 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003286 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003287 goto out;
3288 r = 0;
3289 break;
3290 }
3291 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003292 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003293 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003294 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003295 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Guo Chao18595412012-11-02 18:33:21 +08003296 if (IS_ERR(u.lapic))
3297 return PTR_ERR(u.lapic);
Sasha Levinff5c2c02011-12-04 19:36:29 +02003298
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003299 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003300 break;
3301 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003302 case KVM_INTERRUPT: {
3303 struct kvm_interrupt irq;
3304
3305 r = -EFAULT;
3306 if (copy_from_user(&irq, argp, sizeof irq))
3307 goto out;
3308 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003309 break;
3310 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003311 case KVM_NMI: {
3312 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003313 break;
3314 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02003315 case KVM_SMI: {
3316 r = kvm_vcpu_ioctl_smi(vcpu);
3317 break;
3318 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003319 case KVM_SET_CPUID: {
3320 struct kvm_cpuid __user *cpuid_arg = argp;
3321 struct kvm_cpuid cpuid;
3322
3323 r = -EFAULT;
3324 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3325 goto out;
3326 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003327 break;
3328 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003329 case KVM_SET_CPUID2: {
3330 struct kvm_cpuid2 __user *cpuid_arg = argp;
3331 struct kvm_cpuid2 cpuid;
3332
3333 r = -EFAULT;
3334 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3335 goto out;
3336 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003337 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003338 break;
3339 }
3340 case KVM_GET_CPUID2: {
3341 struct kvm_cpuid2 __user *cpuid_arg = argp;
3342 struct kvm_cpuid2 cpuid;
3343
3344 r = -EFAULT;
3345 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3346 goto out;
3347 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003348 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003349 if (r)
3350 goto out;
3351 r = -EFAULT;
3352 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3353 goto out;
3354 r = 0;
3355 break;
3356 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003357 case KVM_GET_MSRS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003358 r = msr_io(vcpu, argp, do_get_msr, 1);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003359 break;
3360 case KVM_SET_MSRS:
3361 r = msr_io(vcpu, argp, do_set_msr, 0);
3362 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003363 case KVM_TPR_ACCESS_REPORTING: {
3364 struct kvm_tpr_access_ctl tac;
3365
3366 r = -EFAULT;
3367 if (copy_from_user(&tac, argp, sizeof tac))
3368 goto out;
3369 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3370 if (r)
3371 goto out;
3372 r = -EFAULT;
3373 if (copy_to_user(argp, &tac, sizeof tac))
3374 goto out;
3375 r = 0;
3376 break;
3377 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003378 case KVM_SET_VAPIC_ADDR: {
3379 struct kvm_vapic_addr va;
3380
3381 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02003382 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02003383 goto out;
3384 r = -EFAULT;
3385 if (copy_from_user(&va, argp, sizeof va))
3386 goto out;
Andy Honigfda4e2e2013-11-20 10:23:22 -08003387 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Avi Kivityb93463a2007-10-25 16:52:32 +02003388 break;
3389 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003390 case KVM_X86_SETUP_MCE: {
3391 u64 mcg_cap;
3392
3393 r = -EFAULT;
3394 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3395 goto out;
3396 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3397 break;
3398 }
3399 case KVM_X86_SET_MCE: {
3400 struct kvm_x86_mce mce;
3401
3402 r = -EFAULT;
3403 if (copy_from_user(&mce, argp, sizeof mce))
3404 goto out;
3405 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3406 break;
3407 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003408 case KVM_GET_VCPU_EVENTS: {
3409 struct kvm_vcpu_events events;
3410
3411 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3412
3413 r = -EFAULT;
3414 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3415 break;
3416 r = 0;
3417 break;
3418 }
3419 case KVM_SET_VCPU_EVENTS: {
3420 struct kvm_vcpu_events events;
3421
3422 r = -EFAULT;
3423 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3424 break;
3425
3426 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3427 break;
3428 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003429 case KVM_GET_DEBUGREGS: {
3430 struct kvm_debugregs dbgregs;
3431
3432 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3433
3434 r = -EFAULT;
3435 if (copy_to_user(argp, &dbgregs,
3436 sizeof(struct kvm_debugregs)))
3437 break;
3438 r = 0;
3439 break;
3440 }
3441 case KVM_SET_DEBUGREGS: {
3442 struct kvm_debugregs dbgregs;
3443
3444 r = -EFAULT;
3445 if (copy_from_user(&dbgregs, argp,
3446 sizeof(struct kvm_debugregs)))
3447 break;
3448
3449 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3450 break;
3451 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003452 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003453 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003454 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003455 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003456 break;
3457
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003458 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003459
3460 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003461 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003462 break;
3463 r = 0;
3464 break;
3465 }
3466 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003467 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Guo Chao18595412012-11-02 18:33:21 +08003468 if (IS_ERR(u.xsave))
3469 return PTR_ERR(u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003470
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003471 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003472 break;
3473 }
3474 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003475 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003476 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003477 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003478 break;
3479
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003480 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003481
3482 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003483 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003484 sizeof(struct kvm_xcrs)))
3485 break;
3486 r = 0;
3487 break;
3488 }
3489 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003490 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Guo Chao18595412012-11-02 18:33:21 +08003491 if (IS_ERR(u.xcrs))
3492 return PTR_ERR(u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003493
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003494 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003495 break;
3496 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003497 case KVM_SET_TSC_KHZ: {
3498 u32 user_tsc_khz;
3499
3500 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003501 user_tsc_khz = (u32)arg;
3502
3503 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3504 goto out;
3505
Zachary Amsdencc578282012-02-03 15:43:50 -02003506 if (user_tsc_khz == 0)
3507 user_tsc_khz = tsc_khz;
3508
Haozhong Zhang381d5852015-10-20 15:39:04 +08003509 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
3510 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003511
Joerg Roedel92a1f122011-03-25 09:44:51 +01003512 goto out;
3513 }
3514 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02003515 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003516 goto out;
3517 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003518 case KVM_KVMCLOCK_CTRL: {
3519 r = kvm_set_guest_paused(vcpu);
3520 goto out;
3521 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003522 case KVM_ENABLE_CAP: {
3523 struct kvm_enable_cap cap;
3524
3525 r = -EFAULT;
3526 if (copy_from_user(&cap, argp, sizeof(cap)))
3527 goto out;
3528 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3529 break;
3530 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003531 default:
3532 r = -EINVAL;
3533 }
3534out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003535 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003536 return r;
3537}
3538
Carsten Otte5b1c1492012-01-04 10:25:23 +01003539int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3540{
3541 return VM_FAULT_SIGBUS;
3542}
3543
Carsten Otte1fe779f2007-10-29 16:08:35 +01003544static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3545{
3546 int ret;
3547
3548 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08003549 return -EINVAL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003550 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3551 return ret;
3552}
3553
Sheng Yangb927a3c2009-07-21 10:42:48 +08003554static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3555 u64 ident_addr)
3556{
3557 kvm->arch.ept_identity_map_addr = ident_addr;
3558 return 0;
3559}
3560
Carsten Otte1fe779f2007-10-29 16:08:35 +01003561static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3562 u32 kvm_nr_mmu_pages)
3563{
3564 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3565 return -EINVAL;
3566
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003567 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003568
3569 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003570 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003571
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003572 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003573 return 0;
3574}
3575
3576static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3577{
Dave Hansen39de71e2010-08-19 18:11:14 -07003578 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003579}
3580
Carsten Otte1fe779f2007-10-29 16:08:35 +01003581static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3582{
3583 int r;
3584
3585 r = 0;
3586 switch (chip->chip_id) {
3587 case KVM_IRQCHIP_PIC_MASTER:
3588 memcpy(&chip->chip.pic,
3589 &pic_irqchip(kvm)->pics[0],
3590 sizeof(struct kvm_pic_state));
3591 break;
3592 case KVM_IRQCHIP_PIC_SLAVE:
3593 memcpy(&chip->chip.pic,
3594 &pic_irqchip(kvm)->pics[1],
3595 sizeof(struct kvm_pic_state));
3596 break;
3597 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003598 r = kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003599 break;
3600 default:
3601 r = -EINVAL;
3602 break;
3603 }
3604 return r;
3605}
3606
3607static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3608{
3609 int r;
3610
3611 r = 0;
3612 switch (chip->chip_id) {
3613 case KVM_IRQCHIP_PIC_MASTER:
Avi Kivityf4f51052010-09-19 18:44:07 +02003614 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003615 memcpy(&pic_irqchip(kvm)->pics[0],
3616 &chip->chip.pic,
3617 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003618 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003619 break;
3620 case KVM_IRQCHIP_PIC_SLAVE:
Avi Kivityf4f51052010-09-19 18:44:07 +02003621 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003622 memcpy(&pic_irqchip(kvm)->pics[1],
3623 &chip->chip.pic,
3624 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003625 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003626 break;
3627 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003628 r = kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003629 break;
3630 default:
3631 r = -EINVAL;
3632 break;
3633 }
3634 kvm_pic_update_irq(pic_irqchip(kvm));
3635 return r;
3636}
3637
Sheng Yange0f63cb2008-03-04 00:50:59 +08003638static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3639{
Radim Krčmář34f39412016-03-02 22:56:50 +01003640 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
3641
3642 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
3643
3644 mutex_lock(&kps->lock);
3645 memcpy(ps, &kps->channels, sizeof(*ps));
3646 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303647 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003648}
3649
3650static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3651{
Andrew Honig01856042015-11-18 14:50:23 -08003652 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01003653 struct kvm_pit *pit = kvm->arch.vpit;
3654
3655 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01003656 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08003657 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003658 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
3659 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303660 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003661}
3662
3663static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3664{
Beth Kone9f42752009-07-07 11:50:38 -04003665 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3666 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3667 sizeof(ps->channels));
3668 ps->flags = kvm->arch.vpit->pit_state.flags;
3669 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003670 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303671 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003672}
3673
3674static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3675{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303676 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08003677 int i;
Beth Kone9f42752009-07-07 11:50:38 -04003678 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01003679 struct kvm_pit *pit = kvm->arch.vpit;
3680
3681 mutex_lock(&pit->pit_state.lock);
3682 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04003683 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3684 if (!prev_legacy && cur_legacy)
3685 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01003686 memcpy(&pit->pit_state.channels, &ps->channels,
3687 sizeof(pit->pit_state.channels));
3688 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08003689 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003690 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01003691 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01003692 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303693 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003694}
3695
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003696static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3697 struct kvm_reinject_control *control)
3698{
Radim Krčmář71474e22016-03-02 22:56:45 +01003699 struct kvm_pit *pit = kvm->arch.vpit;
3700
3701 if (!pit)
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003702 return -ENXIO;
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003703
Radim Krčmář71474e22016-03-02 22:56:45 +01003704 /* pit->pit_state.lock was overloaded to prevent userspace from getting
3705 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
3706 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
3707 */
3708 mutex_lock(&pit->pit_state.lock);
3709 kvm_pit_set_reinject(pit, control->pit_reinject);
3710 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003711
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003712 return 0;
3713}
3714
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003715/**
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003716 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
3717 * @kvm: kvm instance
3718 * @log: slot id and address to which we copy the log
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003719 *
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003720 * Steps 1-4 below provide general overview of dirty page logging. See
3721 * kvm_get_dirty_log_protect() function description for additional details.
3722 *
3723 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
3724 * always flush the TLB (step 4) even if previous step failed and the dirty
3725 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
3726 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
3727 * writes will be marked dirty for next log read.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003728 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003729 * 1. Take a snapshot of the bit and clear it if needed.
3730 * 2. Write protect the corresponding page.
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003731 * 3. Copy the snapshot to the userspace.
3732 * 4. Flush TLB's if needed.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003733 */
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003734int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003735{
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003736 bool is_dirty = false;
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003737 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003738
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003739 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003740
Kai Huang88178fd2015-01-28 10:54:27 +08003741 /*
3742 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
3743 */
3744 if (kvm_x86_ops->flush_log_dirty)
3745 kvm_x86_ops->flush_log_dirty(kvm);
3746
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003747 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003748
3749 /*
3750 * All the TLBs can be flushed out of mmu lock, see the comments in
3751 * kvm_mmu_slot_remove_write_access().
3752 */
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003753 lockdep_assert_held(&kvm->slots_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003754 if (is_dirty)
3755 kvm_flush_remote_tlbs(kvm);
3756
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003757 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003758 return r;
3759}
3760
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003761int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
3762 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003763{
3764 if (!irqchip_in_kernel(kvm))
3765 return -ENXIO;
3766
3767 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003768 irq_event->irq, irq_event->level,
3769 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003770 return 0;
3771}
3772
Nadav Amit90de4a12015-04-13 01:53:41 +03003773static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3774 struct kvm_enable_cap *cap)
3775{
3776 int r;
3777
3778 if (cap->flags)
3779 return -EINVAL;
3780
3781 switch (cap->cap) {
3782 case KVM_CAP_DISABLE_QUIRKS:
3783 kvm->arch.disabled_quirks = cap->args[0];
3784 r = 0;
3785 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07003786 case KVM_CAP_SPLIT_IRQCHIP: {
3787 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003788 r = -EINVAL;
3789 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
3790 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07003791 r = -EEXIST;
3792 if (irqchip_in_kernel(kvm))
3793 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003794 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07003795 goto split_irqchip_unlock;
3796 r = kvm_setup_empty_irq_routing(kvm);
3797 if (r)
3798 goto split_irqchip_unlock;
3799 /* Pairs with irqchip_in_kernel. */
3800 smp_wmb();
3801 kvm->arch.irqchip_split = true;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003802 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07003803 r = 0;
3804split_irqchip_unlock:
3805 mutex_unlock(&kvm->lock);
3806 break;
3807 }
Radim Krčmář371313132016-07-12 22:09:27 +02003808 case KVM_CAP_X2APIC_API:
3809 r = -EINVAL;
3810 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
3811 break;
3812
3813 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
3814 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02003815 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
3816 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02003817
3818 r = 0;
3819 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03003820 default:
3821 r = -EINVAL;
3822 break;
3823 }
3824 return r;
3825}
3826
Carsten Otte1fe779f2007-10-29 16:08:35 +01003827long kvm_arch_vm_ioctl(struct file *filp,
3828 unsigned int ioctl, unsigned long arg)
3829{
3830 struct kvm *kvm = filp->private_data;
3831 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003832 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003833 /*
3834 * This union makes it completely explicit to gcc-3.x
3835 * that these two variables' stack usage should be
3836 * combined, not added together.
3837 */
3838 union {
3839 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003840 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003841 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003842 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003843
3844 switch (ioctl) {
3845 case KVM_SET_TSS_ADDR:
3846 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003847 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003848 case KVM_SET_IDENTITY_MAP_ADDR: {
3849 u64 ident_addr;
3850
3851 r = -EFAULT;
3852 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3853 goto out;
3854 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08003855 break;
3856 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003857 case KVM_SET_NR_MMU_PAGES:
3858 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003859 break;
3860 case KVM_GET_NR_MMU_PAGES:
3861 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
3862 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003863 case KVM_CREATE_IRQCHIP: {
3864 struct kvm_pic *vpic;
3865
3866 mutex_lock(&kvm->lock);
3867 r = -EEXIST;
3868 if (kvm->arch.vpic)
3869 goto create_irqchip_unlock;
Avi Kivity3e515702012-03-05 14:23:29 +02003870 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003871 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02003872 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003873 r = -ENOMEM;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003874 vpic = kvm_create_pic(kvm);
3875 if (vpic) {
Carsten Otte1fe779f2007-10-29 16:08:35 +01003876 r = kvm_ioapic_init(kvm);
3877 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003878 mutex_lock(&kvm->slots_lock);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003879 kvm_destroy_pic(vpic);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003880 mutex_unlock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003881 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003882 }
3883 } else
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003884 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02003885 r = kvm_setup_default_irq_routing(kvm);
3886 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003887 mutex_lock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003888 mutex_lock(&kvm->irq_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003889 kvm_ioapic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003890 kvm_destroy_pic(vpic);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003891 mutex_unlock(&kvm->irq_lock);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003892 mutex_unlock(&kvm->slots_lock);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003893 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02003894 }
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003895 /* Write kvm->irq_routing before kvm->arch.vpic. */
3896 smp_wmb();
3897 kvm->arch.vpic = vpic;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003898 create_irqchip_unlock:
3899 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003900 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003901 }
Sheng Yang78376992008-01-28 05:10:22 +08003902 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003903 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
3904 goto create_pit;
3905 case KVM_CREATE_PIT2:
3906 r = -EFAULT;
3907 if (copy_from_user(&u.pit_config, argp,
3908 sizeof(struct kvm_pit_config)))
3909 goto out;
3910 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02003911 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02003912 r = -EEXIST;
3913 if (kvm->arch.vpit)
3914 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08003915 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003916 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08003917 if (kvm->arch.vpit)
3918 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02003919 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02003920 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08003921 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003922 case KVM_GET_IRQCHIP: {
3923 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003924 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003925
Sasha Levinff5c2c02011-12-04 19:36:29 +02003926 chip = memdup_user(argp, sizeof(*chip));
3927 if (IS_ERR(chip)) {
3928 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003929 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003930 }
3931
Carsten Otte1fe779f2007-10-29 16:08:35 +01003932 r = -ENXIO;
Steve Rutherford49df6392015-07-29 23:21:40 -07003933 if (!irqchip_in_kernel(kvm) || irqchip_split(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003934 goto get_irqchip_out;
3935 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
3936 if (r)
3937 goto get_irqchip_out;
3938 r = -EFAULT;
3939 if (copy_to_user(argp, chip, sizeof *chip))
3940 goto get_irqchip_out;
3941 r = 0;
3942 get_irqchip_out:
3943 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003944 break;
3945 }
3946 case KVM_SET_IRQCHIP: {
3947 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003948 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003949
Sasha Levinff5c2c02011-12-04 19:36:29 +02003950 chip = memdup_user(argp, sizeof(*chip));
3951 if (IS_ERR(chip)) {
3952 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003953 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003954 }
3955
Carsten Otte1fe779f2007-10-29 16:08:35 +01003956 r = -ENXIO;
Steve Rutherford49df6392015-07-29 23:21:40 -07003957 if (!irqchip_in_kernel(kvm) || irqchip_split(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003958 goto set_irqchip_out;
3959 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
3960 if (r)
3961 goto set_irqchip_out;
3962 r = 0;
3963 set_irqchip_out:
3964 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003965 break;
3966 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08003967 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003968 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003969 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003970 goto out;
3971 r = -ENXIO;
3972 if (!kvm->arch.vpit)
3973 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003974 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003975 if (r)
3976 goto out;
3977 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003978 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003979 goto out;
3980 r = 0;
3981 break;
3982 }
3983 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003984 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003985 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003986 goto out;
3987 r = -ENXIO;
3988 if (!kvm->arch.vpit)
3989 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003990 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003991 break;
3992 }
Beth Kone9f42752009-07-07 11:50:38 -04003993 case KVM_GET_PIT2: {
3994 r = -ENXIO;
3995 if (!kvm->arch.vpit)
3996 goto out;
3997 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
3998 if (r)
3999 goto out;
4000 r = -EFAULT;
4001 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
4002 goto out;
4003 r = 0;
4004 break;
4005 }
4006 case KVM_SET_PIT2: {
4007 r = -EFAULT;
4008 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
4009 goto out;
4010 r = -ENXIO;
4011 if (!kvm->arch.vpit)
4012 goto out;
4013 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Beth Kone9f42752009-07-07 11:50:38 -04004014 break;
4015 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004016 case KVM_REINJECT_CONTROL: {
4017 struct kvm_reinject_control control;
4018 r = -EFAULT;
4019 if (copy_from_user(&control, argp, sizeof(control)))
4020 goto out;
4021 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004022 break;
4023 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004024 case KVM_SET_BOOT_CPU_ID:
4025 r = 0;
4026 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02004027 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004028 r = -EBUSY;
4029 else
4030 kvm->arch.bsp_vcpu_id = arg;
4031 mutex_unlock(&kvm->lock);
4032 break;
Ed Swierkffde22a2009-10-15 15:21:43 -07004033 case KVM_XEN_HVM_CONFIG: {
4034 r = -EFAULT;
4035 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
4036 sizeof(struct kvm_xen_hvm_config)))
4037 goto out;
4038 r = -EINVAL;
4039 if (kvm->arch.xen_hvm_config.flags)
4040 goto out;
4041 r = 0;
4042 break;
4043 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004044 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004045 struct kvm_clock_data user_ns;
4046 u64 now_ns;
4047 s64 delta;
4048
4049 r = -EFAULT;
4050 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
4051 goto out;
4052
4053 r = -EINVAL;
4054 if (user_ns.flags)
4055 goto out;
4056
4057 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02004058 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10004059 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004060 delta = user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004061 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004062 kvm->arch.kvmclock_offset = delta;
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03004063 kvm_gen_update_masterclock(kvm);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004064 break;
4065 }
4066 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004067 struct kvm_clock_data user_ns;
4068 u64 now_ns;
4069
Avi Kivity395c6b02010-10-04 12:55:49 +02004070 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10004071 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004072 user_ns.clock = kvm->arch.kvmclock_offset + now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004073 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004074 user_ns.flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004075 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004076
4077 r = -EFAULT;
4078 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
4079 goto out;
4080 r = 0;
4081 break;
4082 }
Nadav Amit90de4a12015-04-13 01:53:41 +03004083 case KVM_ENABLE_CAP: {
4084 struct kvm_enable_cap cap;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004085
Nadav Amit90de4a12015-04-13 01:53:41 +03004086 r = -EFAULT;
4087 if (copy_from_user(&cap, argp, sizeof(cap)))
4088 goto out;
4089 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
4090 break;
4091 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01004092 default:
Radim Krčmářc274e032014-11-21 22:21:50 +01004093 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004094 }
4095out:
4096 return r;
4097}
4098
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08004099static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02004100{
4101 u32 dummy[2];
4102 unsigned i, j;
4103
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004104 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02004105 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
4106 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004107
4108 /*
4109 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004110 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004111 */
4112 switch (msrs_to_save[i]) {
4113 case MSR_IA32_BNDCFGS:
4114 if (!kvm_x86_ops->mpx_supported())
4115 continue;
4116 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004117 case MSR_TSC_AUX:
4118 if (!kvm_x86_ops->rdtscp_supported())
4119 continue;
4120 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004121 default:
4122 break;
4123 }
4124
Carsten Otte043405e2007-10-10 17:16:19 +02004125 if (j < i)
4126 msrs_to_save[j] = msrs_to_save[i];
4127 j++;
4128 }
4129 num_msrs_to_save = j;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004130
4131 for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) {
4132 switch (emulated_msrs[i]) {
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004133 case MSR_IA32_SMBASE:
4134 if (!kvm_x86_ops->cpu_has_high_real_mode_segbase())
4135 continue;
4136 break;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004137 default:
4138 break;
4139 }
4140
4141 if (j < i)
4142 emulated_msrs[j] = emulated_msrs[i];
4143 j++;
4144 }
4145 num_emulated_msrs = j;
Carsten Otte043405e2007-10-10 17:16:19 +02004146}
4147
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004148static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
4149 const 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_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
4158 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004159 break;
4160 handled += n;
4161 addr += n;
4162 len -= n;
4163 v += n;
4164 } while (len);
4165
4166 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004167}
4168
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004169static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004170{
Avi Kivity70252a12010-01-19 12:51:22 +02004171 int handled = 0;
4172 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004173
Avi Kivity70252a12010-01-19 12:51:22 +02004174 do {
4175 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004176 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004177 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
4178 addr, n, v))
4179 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004180 break;
4181 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
4182 handled += n;
4183 addr += n;
4184 len -= n;
4185 v += n;
4186 } while (len);
4187
4188 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004189}
4190
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004191static void kvm_set_segment(struct kvm_vcpu *vcpu,
4192 struct kvm_segment *var, int seg)
4193{
4194 kvm_x86_ops->set_segment(vcpu, var, seg);
4195}
4196
4197void kvm_get_segment(struct kvm_vcpu *vcpu,
4198 struct kvm_segment *var, int seg)
4199{
4200 kvm_x86_ops->get_segment(vcpu, var, seg);
4201}
4202
Paolo Bonzini54987b72014-09-02 13:23:06 +02004203gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
4204 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004205{
4206 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004207
4208 BUG_ON(!mmu_is_nested(vcpu));
4209
4210 /* NPT walks are always user-walks */
4211 access |= PFERR_USER_MASK;
Paolo Bonzini54987b72014-09-02 13:23:06 +02004212 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004213
4214 return t_gpa;
4215}
4216
Avi Kivityab9ae312010-11-22 17:53:26 +02004217gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
4218 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004219{
4220 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02004221 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004222}
4223
Avi Kivityab9ae312010-11-22 17:53:26 +02004224 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
4225 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004226{
4227 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4228 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004229 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004230}
4231
Avi Kivityab9ae312010-11-22 17:53:26 +02004232gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
4233 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004234{
4235 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4236 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004237 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004238}
4239
4240/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02004241gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
4242 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004243{
Avi Kivityab9ae312010-11-22 17:53:26 +02004244 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004245}
4246
4247static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
4248 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004249 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004250{
4251 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004252 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004253
4254 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004255 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02004256 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004257 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02004258 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004259 int ret;
4260
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004261 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004262 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004263 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
4264 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004265 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004266 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004267 goto out;
4268 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01004269
Izik Eidus77c20022008-12-29 01:42:19 +02004270 bytes -= toread;
4271 data += toread;
4272 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004273 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004274out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004275 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004276}
Izik Eidus77c20022008-12-29 01:42:19 +02004277
Gleb Natapov1871c602010-02-10 14:21:32 +02004278/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03004279static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
4280 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004281 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004282{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004283 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004284 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004285 unsigned offset;
4286 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004287
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004288 /* Inline kvm_read_guest_virt_helper for speed. */
4289 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
4290 exception);
4291 if (unlikely(gpa == UNMAPPED_GVA))
4292 return X86EMUL_PROPAGATE_FAULT;
4293
4294 offset = addr & (PAGE_SIZE-1);
4295 if (WARN_ON(offset + bytes > PAGE_SIZE))
4296 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004297 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
4298 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004299 if (unlikely(ret < 0))
4300 return X86EMUL_IO_NEEDED;
4301
4302 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02004303}
4304
Nadav Har'El064aea72011-05-25 23:04:56 +03004305int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004306 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004307 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004308{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004309 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004310 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004311
Gleb Natapov1871c602010-02-10 14:21:32 +02004312 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004313 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004314}
Nadav Har'El064aea72011-05-25 23:04:56 +03004315EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004316
Avi Kivity0f65dd72011-04-20 13:37:53 +03004317static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4318 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004319 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004320{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004321 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004322 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004323}
4324
Radim Krčmář7a036a62015-10-30 16:36:24 +01004325static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
4326 unsigned long addr, void *val, unsigned int bytes)
4327{
4328 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4329 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
4330
4331 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
4332}
4333
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004334int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004335 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004336 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004337 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004338{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004339 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004340 void *data = val;
4341 int r = X86EMUL_CONTINUE;
4342
4343 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004344 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4345 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004346 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004347 unsigned offset = addr & (PAGE_SIZE-1);
4348 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4349 int ret;
4350
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004351 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004352 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004353 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02004354 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004355 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004356 goto out;
4357 }
4358
4359 bytes -= towrite;
4360 data += towrite;
4361 addr += towrite;
4362 }
4363out:
4364 return r;
4365}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004366EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004367
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004368static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4369 gpa_t *gpa, struct x86_exception *exception,
4370 bool write)
4371{
Avi Kivity97d64b72012-09-12 14:52:00 +03004372 u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
4373 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004374
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004375 /*
4376 * currently PKRU is only applied to ept enabled guest so
4377 * there is no pkey in EPT page table for L1 guest or EPT
4378 * shadow page table for L2 guest.
4379 */
Avi Kivity97d64b72012-09-12 14:52:00 +03004380 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08004381 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004382 vcpu->arch.access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004383 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4384 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004385 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004386 return 1;
4387 }
4388
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004389 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4390
4391 if (*gpa == UNMAPPED_GVA)
4392 return -1;
4393
4394 /* For APIC access vmexit */
4395 if ((*gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4396 return 1;
4397
Xiao Guangrong4f022642011-07-12 03:34:24 +08004398 if (vcpu_match_mmio_gpa(vcpu, *gpa)) {
4399 trace_vcpu_match_mmio(gva, *gpa, write, true);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004400 return 1;
Xiao Guangrong4f022642011-07-12 03:34:24 +08004401 }
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004402
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004403 return 0;
4404}
4405
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004406int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004407 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004408{
4409 int ret;
4410
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004411 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004412 if (ret < 0)
4413 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004414 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004415 return 1;
4416}
4417
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004418struct read_write_emulator_ops {
4419 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4420 int bytes);
4421 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4422 void *val, int bytes);
4423 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4424 int bytes, void *val);
4425 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4426 void *val, int bytes);
4427 bool write;
4428};
4429
4430static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4431{
4432 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004433 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Avi Kivityf78146b2012-04-18 19:22:47 +03004434 vcpu->mmio_fragments[0].gpa, *(u64 *)val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004435 vcpu->mmio_read_completed = 0;
4436 return 1;
4437 }
4438
4439 return 0;
4440}
4441
4442static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4443 void *val, int bytes)
4444{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004445 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004446}
4447
4448static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4449 void *val, int bytes)
4450{
4451 return emulator_write_phys(vcpu, gpa, val, bytes);
4452}
4453
4454static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4455{
4456 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4457 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4458}
4459
4460static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4461 void *val, int bytes)
4462{
4463 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4464 return X86EMUL_IO_NEEDED;
4465}
4466
4467static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4468 void *val, int bytes)
4469{
Avi Kivityf78146b2012-04-18 19:22:47 +03004470 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
4471
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004472 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004473 return X86EMUL_CONTINUE;
4474}
4475
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004476static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004477 .read_write_prepare = read_prepare,
4478 .read_write_emulate = read_emulate,
4479 .read_write_mmio = vcpu_mmio_read,
4480 .read_write_exit_mmio = read_exit_mmio,
4481};
4482
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004483static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004484 .read_write_emulate = write_emulate,
4485 .read_write_mmio = write_mmio,
4486 .read_write_exit_mmio = write_exit_mmio,
4487 .write = true,
4488};
4489
Xiao Guangrong22388a32011-07-13 14:32:31 +08004490static int emulator_read_write_onepage(unsigned long addr, void *val,
4491 unsigned int bytes,
4492 struct x86_exception *exception,
4493 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004494 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004495{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004496 gpa_t gpa;
4497 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004498 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03004499 struct kvm_mmio_fragment *frag;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004500
4501 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004502
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004503 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004504 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004505
4506 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004507 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004508 goto mmio;
4509
Xiao Guangrong22388a32011-07-13 14:32:31 +08004510 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004511 return X86EMUL_CONTINUE;
4512
4513mmio:
4514 /*
4515 * Is this MMIO handled locally?
4516 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004517 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004518 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004519 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004520
Avi Kivity70252a12010-01-19 12:51:22 +02004521 gpa += handled;
4522 bytes -= handled;
4523 val += handled;
4524
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004525 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
4526 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
4527 frag->gpa = gpa;
4528 frag->data = val;
4529 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03004530 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004531}
4532
Xiubo Li52eb5a62015-03-13 17:39:45 +08004533static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
4534 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004535 void *val, unsigned int bytes,
4536 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004537 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004538{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004539 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03004540 gpa_t gpa;
4541 int rc;
4542
4543 if (ops->read_write_prepare &&
4544 ops->read_write_prepare(vcpu, val, bytes))
4545 return X86EMUL_CONTINUE;
4546
4547 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004548
Carsten Ottebbd9b642007-10-30 18:44:21 +01004549 /* Crossing a page boundary? */
4550 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03004551 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004552
4553 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004554 rc = emulator_read_write_onepage(addr, val, now, exception,
4555 vcpu, ops);
4556
Carsten Ottebbd9b642007-10-30 18:44:21 +01004557 if (rc != X86EMUL_CONTINUE)
4558 return rc;
4559 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02004560 if (ctxt->mode != X86EMUL_MODE_PROT64)
4561 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004562 val += now;
4563 bytes -= now;
4564 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004565
Avi Kivityf78146b2012-04-18 19:22:47 +03004566 rc = emulator_read_write_onepage(addr, val, bytes, exception,
4567 vcpu, ops);
4568 if (rc != X86EMUL_CONTINUE)
4569 return rc;
4570
4571 if (!vcpu->mmio_nr_fragments)
4572 return rc;
4573
4574 gpa = vcpu->mmio_fragments[0].gpa;
4575
4576 vcpu->mmio_needed = 1;
4577 vcpu->mmio_cur_fragment = 0;
4578
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004579 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03004580 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
4581 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4582 vcpu->run->mmio.phys_addr = gpa;
4583
4584 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004585}
4586
4587static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4588 unsigned long addr,
4589 void *val,
4590 unsigned int bytes,
4591 struct x86_exception *exception)
4592{
4593 return emulator_read_write(ctxt, addr, val, bytes,
4594 exception, &read_emultor);
4595}
4596
Xiubo Li52eb5a62015-03-13 17:39:45 +08004597static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004598 unsigned long addr,
4599 const void *val,
4600 unsigned int bytes,
4601 struct x86_exception *exception)
4602{
4603 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4604 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004605}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004606
Avi Kivitydaea3e72010-03-15 13:59:54 +02004607#define CMPXCHG_TYPE(t, ptr, old, new) \
4608 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4609
4610#ifdef CONFIG_X86_64
4611# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4612#else
4613# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004614 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004615#endif
4616
Avi Kivity0f65dd72011-04-20 13:37:53 +03004617static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4618 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004619 const void *old,
4620 const void *new,
4621 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004622 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004623{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004624 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004625 gpa_t gpa;
4626 struct page *page;
4627 char *kaddr;
4628 bool exchanged;
4629
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004630 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004631 if (bytes > 8 || (bytes & (bytes - 1)))
4632 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004633
Avi Kivitydaea3e72010-03-15 13:59:54 +02004634 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004635
Avi Kivitydaea3e72010-03-15 13:59:54 +02004636 if (gpa == UNMAPPED_GVA ||
4637 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4638 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004639
Avi Kivitydaea3e72010-03-15 13:59:54 +02004640 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4641 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004642
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004643 page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +08004644 if (is_error_page(page))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08004645 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004646
Cong Wang8fd75e12011-11-25 23:14:17 +08004647 kaddr = kmap_atomic(page);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004648 kaddr += offset_in_page(gpa);
4649 switch (bytes) {
4650 case 1:
4651 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4652 break;
4653 case 2:
4654 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4655 break;
4656 case 4:
4657 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4658 break;
4659 case 8:
4660 exchanged = CMPXCHG64(kaddr, old, new);
4661 break;
4662 default:
4663 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004664 }
Cong Wang8fd75e12011-11-25 23:14:17 +08004665 kunmap_atomic(kaddr);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004666 kvm_release_page_dirty(page);
4667
4668 if (!exchanged)
4669 return X86EMUL_CMPXCHG_FAILED;
4670
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004671 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004672 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004673
4674 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004675
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004676emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004677 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004678
Avi Kivity0f65dd72011-04-20 13:37:53 +03004679 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004680}
4681
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004682static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4683{
4684 /* TODO: String I/O for in kernel device */
4685 int r;
4686
4687 if (vcpu->arch.pio.in)
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004688 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004689 vcpu->arch.pio.size, pd);
4690 else
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004691 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004692 vcpu->arch.pio.port, vcpu->arch.pio.size,
4693 pd);
4694 return r;
4695}
4696
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004697static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4698 unsigned short port, void *val,
4699 unsigned int count, bool in)
4700{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004701 vcpu->arch.pio.port = port;
4702 vcpu->arch.pio.in = in;
4703 vcpu->arch.pio.count = count;
4704 vcpu->arch.pio.size = size;
4705
4706 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4707 vcpu->arch.pio.count = 0;
4708 return 1;
4709 }
4710
4711 vcpu->run->exit_reason = KVM_EXIT_IO;
4712 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4713 vcpu->run->io.size = size;
4714 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4715 vcpu->run->io.count = count;
4716 vcpu->run->io.port = port;
4717
4718 return 0;
4719}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004720
Avi Kivityca1d4a92011-04-20 13:37:53 +03004721static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4722 int size, unsigned short port, void *val,
4723 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004724{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004725 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004726 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004727
Gleb Natapov79729952010-03-18 15:20:24 +02004728 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004729 goto data_avail;
4730
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004731 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4732 if (ret) {
4733data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004734 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004735 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02004736 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004737 return 1;
4738 }
4739
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004740 return 0;
4741}
4742
Avi Kivityca1d4a92011-04-20 13:37:53 +03004743static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4744 int size, unsigned short port,
4745 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004746{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004747 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4748
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004749 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004750 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004751 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004752}
4753
Carsten Ottebbd9b642007-10-30 18:44:21 +01004754static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4755{
4756 return kvm_x86_ops->get_segment_base(vcpu, seg);
4757}
4758
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004759static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004760{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004761 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004762}
4763
Joel Schopp5cb56052015-03-02 13:43:31 -06004764int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004765{
4766 if (!need_emulate_wbinvd(vcpu))
4767 return X86EMUL_CONTINUE;
4768
4769 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004770 int cpu = get_cpu();
4771
4772 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004773 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4774 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004775 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004776 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004777 } else
4778 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004779 return X86EMUL_CONTINUE;
4780}
Joel Schopp5cb56052015-03-02 13:43:31 -06004781
4782int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4783{
4784 kvm_x86_ops->skip_emulated_instruction(vcpu);
4785 return kvm_emulate_wbinvd_noskip(vcpu);
4786}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004787EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4788
Joel Schopp5cb56052015-03-02 13:43:31 -06004789
4790
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004791static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4792{
Joel Schopp5cb56052015-03-02 13:43:31 -06004793 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004794}
4795
Xiubo Li52eb5a62015-03-13 17:39:45 +08004796static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
4797 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004798{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004799 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004800}
4801
Xiubo Li52eb5a62015-03-13 17:39:45 +08004802static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
4803 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004804{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004805
Avi Kivity717746e2011-04-20 13:37:53 +03004806 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004807}
4808
Gleb Natapov52a46612010-03-18 15:20:03 +02004809static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4810{
4811 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4812}
4813
Avi Kivity717746e2011-04-20 13:37:53 +03004814static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004815{
Avi Kivity717746e2011-04-20 13:37:53 +03004816 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004817 unsigned long value;
4818
4819 switch (cr) {
4820 case 0:
4821 value = kvm_read_cr0(vcpu);
4822 break;
4823 case 2:
4824 value = vcpu->arch.cr2;
4825 break;
4826 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004827 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004828 break;
4829 case 4:
4830 value = kvm_read_cr4(vcpu);
4831 break;
4832 case 8:
4833 value = kvm_get_cr8(vcpu);
4834 break;
4835 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004836 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02004837 return 0;
4838 }
4839
4840 return value;
4841}
4842
Avi Kivity717746e2011-04-20 13:37:53 +03004843static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02004844{
Avi Kivity717746e2011-04-20 13:37:53 +03004845 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03004846 int res = 0;
4847
Gleb Natapov52a46612010-03-18 15:20:03 +02004848 switch (cr) {
4849 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004850 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004851 break;
4852 case 2:
4853 vcpu->arch.cr2 = val;
4854 break;
4855 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004856 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004857 break;
4858 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004859 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004860 break;
4861 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004862 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004863 break;
4864 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004865 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03004866 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02004867 }
Gleb Natapov0f122442010-04-28 19:15:31 +03004868
4869 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02004870}
4871
Avi Kivity717746e2011-04-20 13:37:53 +03004872static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02004873{
Avi Kivity717746e2011-04-20 13:37:53 +03004874 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02004875}
4876
Avi Kivity4bff1e862011-04-20 13:37:53 +03004877static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004878{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004879 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004880}
4881
Avi Kivity4bff1e862011-04-20 13:37:53 +03004882static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004883{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004884 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004885}
4886
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03004887static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4888{
4889 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
4890}
4891
4892static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4893{
4894 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
4895}
4896
Avi Kivity4bff1e862011-04-20 13:37:53 +03004897static unsigned long emulator_get_cached_segment_base(
4898 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03004899{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004900 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03004901}
4902
Avi Kivity1aa36612011-04-27 13:20:30 +03004903static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
4904 struct desc_struct *desc, u32 *base3,
4905 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004906{
4907 struct kvm_segment var;
4908
Avi Kivity4bff1e862011-04-20 13:37:53 +03004909 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03004910 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004911
Gleb Natapov378a8b02013-01-21 15:36:48 +02004912 if (var.unusable) {
4913 memset(desc, 0, sizeof(*desc));
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004914 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02004915 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004916
4917 if (var.g)
4918 var.limit >>= 12;
4919 set_desc_limit(desc, var.limit);
4920 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02004921#ifdef CONFIG_X86_64
4922 if (base3)
4923 *base3 = var.base >> 32;
4924#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004925 desc->type = var.type;
4926 desc->s = var.s;
4927 desc->dpl = var.dpl;
4928 desc->p = var.present;
4929 desc->avl = var.avl;
4930 desc->l = var.l;
4931 desc->d = var.db;
4932 desc->g = var.g;
4933
4934 return true;
4935}
4936
Avi Kivity1aa36612011-04-27 13:20:30 +03004937static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
4938 struct desc_struct *desc, u32 base3,
4939 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004940{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004941 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004942 struct kvm_segment var;
4943
Avi Kivity1aa36612011-04-27 13:20:30 +03004944 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004945 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02004946#ifdef CONFIG_X86_64
4947 var.base |= ((u64)base3) << 32;
4948#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004949 var.limit = get_desc_limit(desc);
4950 if (desc->g)
4951 var.limit = (var.limit << 12) | 0xfff;
4952 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004953 var.dpl = desc->dpl;
4954 var.db = desc->d;
4955 var.s = desc->s;
4956 var.l = desc->l;
4957 var.g = desc->g;
4958 var.avl = desc->avl;
4959 var.present = desc->p;
4960 var.unusable = !var.present;
4961 var.padding = 0;
4962
4963 kvm_set_segment(vcpu, &var, seg);
4964 return;
4965}
4966
Avi Kivity717746e2011-04-20 13:37:53 +03004967static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
4968 u32 msr_index, u64 *pdata)
4969{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004970 struct msr_data msr;
4971 int r;
4972
4973 msr.index = msr_index;
4974 msr.host_initiated = false;
4975 r = kvm_get_msr(emul_to_vcpu(ctxt), &msr);
4976 if (r)
4977 return r;
4978
4979 *pdata = msr.data;
4980 return 0;
Avi Kivity717746e2011-04-20 13:37:53 +03004981}
4982
4983static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
4984 u32 msr_index, u64 data)
4985{
Will Auld8fe8ab42012-11-29 12:42:12 -08004986 struct msr_data msr;
4987
4988 msr.data = data;
4989 msr.index = msr_index;
4990 msr.host_initiated = false;
4991 return kvm_set_msr(emul_to_vcpu(ctxt), &msr);
Avi Kivity717746e2011-04-20 13:37:53 +03004992}
4993
Paolo Bonzini64d60672015-05-07 11:36:11 +02004994static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
4995{
4996 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4997
4998 return vcpu->arch.smbase;
4999}
5000
5001static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
5002{
5003 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5004
5005 vcpu->arch.smbase = smbase;
5006}
5007
Nadav Amit67f4d422014-06-02 18:34:09 +03005008static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
5009 u32 pmc)
5010{
Wei Huangc6702c92015-06-19 13:44:45 +02005011 return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03005012}
5013
Avi Kivity222d21a2011-11-10 14:57:30 +02005014static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
5015 u32 pmc, u64 *pdata)
5016{
Wei Huangc6702c92015-06-19 13:44:45 +02005017 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02005018}
5019
Avi Kivity6c3287f2011-04-20 15:43:05 +03005020static void emulator_halt(struct x86_emulate_ctxt *ctxt)
5021{
5022 emul_to_vcpu(ctxt)->arch.halt_request = 1;
5023}
5024
Avi Kivity5037f6f2011-03-28 16:53:59 +02005025static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
5026{
5027 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03005028 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02005029 /*
5030 * CR0.TS may reference the host fpu state, not the guest fpu state,
5031 * so it may be clear at this point.
5032 */
5033 clts();
5034}
5035
5036static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
5037{
5038 preempt_enable();
5039}
5040
Avi Kivity29535382011-04-20 13:37:53 +03005041static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005042 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005043 enum x86_intercept_stage stage)
5044{
Avi Kivity29535382011-04-20 13:37:53 +03005045 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02005046}
5047
Avi Kivity0017f932012-06-07 14:10:16 +03005048static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005049 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
5050{
Avi Kivity0017f932012-06-07 14:10:16 +03005051 kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005052}
5053
Avi Kivitydd856ef2012-08-27 23:46:17 +03005054static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
5055{
5056 return kvm_register_read(emul_to_vcpu(ctxt), reg);
5057}
5058
5059static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
5060{
5061 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
5062}
5063
Nadav Amit801806d2015-01-26 09:32:23 +02005064static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
5065{
5066 kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked);
5067}
5068
Mathias Krause0225fb52012-08-30 01:30:16 +02005069static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03005070 .read_gpr = emulator_read_gpr,
5071 .write_gpr = emulator_write_gpr,
Gleb Natapov1871c602010-02-10 14:21:32 +02005072 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005073 .write_std = kvm_write_guest_virt_system,
Radim Krčmář7a036a62015-10-30 16:36:24 +01005074 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02005075 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005076 .read_emulated = emulator_read_emulated,
5077 .write_emulated = emulator_write_emulated,
5078 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03005079 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005080 .pio_in_emulated = emulator_pio_in_emulated,
5081 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03005082 .get_segment = emulator_get_segment,
5083 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03005084 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005085 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005086 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005087 .set_gdt = emulator_set_gdt,
5088 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02005089 .get_cr = emulator_get_cr,
5090 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02005091 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03005092 .get_dr = emulator_get_dr,
5093 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02005094 .get_smbase = emulator_get_smbase,
5095 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03005096 .set_msr = emulator_set_msr,
5097 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03005098 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02005099 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03005100 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03005101 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03005102 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02005103 .get_fpu = emulator_get_fpu,
5104 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005105 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005106 .get_cpuid = emulator_get_cpuid,
Nadav Amit801806d2015-01-26 09:32:23 +02005107 .set_nmi_mask = emulator_set_nmi_mask,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005108};
5109
Gleb Natapov95cb2292010-04-28 19:15:43 +03005110static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
5111{
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005112 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03005113 /*
5114 * an sti; sti; sequence only disable interrupts for the first
5115 * instruction. So, if the last instruction, be it emulated or
5116 * not, left the system with the INT_STI flag enabled, it
5117 * means that the last instruction is an sti. We should not
5118 * leave the flag on in this case. The same goes for mov ss
5119 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005120 if (int_shadow & mask)
5121 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005122 if (unlikely(int_shadow || mask)) {
Gleb Natapov95cb2292010-04-28 19:15:43 +03005123 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005124 if (!mask)
5125 kvm_make_request(KVM_REQ_EVENT, vcpu);
5126 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03005127}
5128
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005129static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03005130{
5131 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02005132 if (ctxt->exception.vector == PF_VECTOR)
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005133 return kvm_propagate_fault(vcpu, &ctxt->exception);
5134
5135 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02005136 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
5137 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03005138 else
Avi Kivityda9cb572010-11-22 17:53:21 +02005139 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005140 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03005141}
5142
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005143static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
5144{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005145 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005146 int cs_db, cs_l;
5147
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005148 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5149
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005150 ctxt->eflags = kvm_get_rflags(vcpu);
5151 ctxt->eip = kvm_rip_read(vcpu);
5152 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
5153 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03005154 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005155 cs_db ? X86EMUL_MODE_PROT32 :
5156 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005157 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005158 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
5159 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005160 ctxt->emul_flags = vcpu->arch.hflags;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005161
Avi Kivitydd856ef2012-08-27 23:46:17 +03005162 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005163 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005164}
5165
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005166int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02005167{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005168 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02005169 int ret;
5170
5171 init_emulate_ctxt(vcpu);
5172
Avi Kivity9dac77f2011-06-01 15:34:25 +03005173 ctxt->op_bytes = 2;
5174 ctxt->ad_bytes = 2;
5175 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005176 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02005177
5178 if (ret != X86EMUL_CONTINUE)
5179 return EMULATE_FAIL;
5180
Avi Kivity9dac77f2011-06-01 15:34:25 +03005181 ctxt->eip = ctxt->_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005182 kvm_rip_write(vcpu, ctxt->eip);
5183 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02005184
5185 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005186 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02005187 else
5188 vcpu->arch.interrupt.pending = false;
5189
5190 return EMULATE_DONE;
5191}
5192EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
5193
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005194static int handle_emulation_failure(struct kvm_vcpu *vcpu)
5195{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005196 int r = EMULATE_DONE;
5197
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005198 ++vcpu->stat.insn_emulation_fail;
5199 trace_kvm_emulate_insn_failed(vcpu);
Nadav Amita2b9e6c2014-09-17 02:50:50 +03005200 if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005201 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5202 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5203 vcpu->run->internal.ndata = 0;
5204 r = EMULATE_FAIL;
5205 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005206 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005207
5208 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005209}
5210
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005211static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2,
Gleb Natapov991eebf2013-04-11 12:10:51 +03005212 bool write_fault_to_shadow_pgtable,
5213 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03005214{
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005215 gpa_t gpa = cr2;
Dan Williamsba049e92016-01-15 16:56:11 -08005216 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005217
Gleb Natapov991eebf2013-04-11 12:10:51 +03005218 if (emulation_type & EMULTYPE_NO_REEXECUTE)
5219 return false;
5220
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005221 if (!vcpu->arch.mmu.direct_map) {
5222 /*
5223 * Write permission should be allowed since only
5224 * write access need to be emulated.
5225 */
5226 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03005227
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005228 /*
5229 * If the mapping is invalid in guest, let cpu retry
5230 * it to generate fault.
5231 */
5232 if (gpa == UNMAPPED_GVA)
5233 return true;
5234 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005235
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005236 /*
5237 * Do not retry the unhandleable instruction if it faults on the
5238 * readonly host memory, otherwise it will goto a infinite loop:
5239 * retry instruction -> write #PF -> emulation fail -> retry
5240 * instruction -> ...
5241 */
5242 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005243
5244 /*
5245 * If the instruction failed on the error pfn, it can not be fixed,
5246 * report the error to userspace.
5247 */
5248 if (is_error_noslot_pfn(pfn))
5249 return false;
5250
5251 kvm_release_pfn_clean(pfn);
5252
5253 /* The instructions are well-emulated on direct mmu. */
5254 if (vcpu->arch.mmu.direct_map) {
5255 unsigned int indirect_shadow_pages;
5256
5257 spin_lock(&vcpu->kvm->mmu_lock);
5258 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
5259 spin_unlock(&vcpu->kvm->mmu_lock);
5260
5261 if (indirect_shadow_pages)
5262 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
5263
Gleb Natapova6f177e2010-07-08 12:41:12 +03005264 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005265 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005266
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005267 /*
5268 * if emulation was due to access to shadowed page table
5269 * and it failed try to unshadow page and re-enter the
5270 * guest to let CPU execute the instruction.
5271 */
5272 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005273
5274 /*
5275 * If the access faults on its page table, it can not
5276 * be fixed by unprotecting shadow page and it should
5277 * be reported to userspace.
5278 */
5279 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005280}
5281
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005282static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
5283 unsigned long cr2, int emulation_type)
5284{
5285 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5286 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
5287
5288 last_retry_eip = vcpu->arch.last_retry_eip;
5289 last_retry_addr = vcpu->arch.last_retry_addr;
5290
5291 /*
5292 * If the emulation is caused by #PF and it is non-page_table
5293 * writing instruction, it means the VM-EXIT is caused by shadow
5294 * page protected, we can zap the shadow page and retry this
5295 * instruction directly.
5296 *
5297 * Note: if the guest uses a non-page-table modifying instruction
5298 * on the PDE that points to the instruction, then we will unmap
5299 * the instruction and go to an infinite loop. So, we cache the
5300 * last retried eip and the last fault address, if we meet the eip
5301 * and the address again, we can break out of the potential infinite
5302 * loop.
5303 */
5304 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
5305
5306 if (!(emulation_type & EMULTYPE_RETRY))
5307 return false;
5308
5309 if (x86_page_table_writing_insn(ctxt))
5310 return false;
5311
5312 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
5313 return false;
5314
5315 vcpu->arch.last_retry_eip = ctxt->eip;
5316 vcpu->arch.last_retry_addr = cr2;
5317
5318 if (!vcpu->arch.mmu.direct_map)
5319 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
5320
Xiao Guangrong22368022013-01-13 23:44:12 +08005321 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005322
5323 return true;
5324}
5325
Gleb Natapov716d51a2012-09-03 15:24:26 +03005326static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
5327static int complete_emulated_pio(struct kvm_vcpu *vcpu);
5328
Paolo Bonzini64d60672015-05-07 11:36:11 +02005329static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02005330{
Paolo Bonzini64d60672015-05-07 11:36:11 +02005331 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02005332 /* This is a good place to trace that we are exiting SMM. */
5333 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
5334
Paolo Bonzinic43203c2016-06-01 22:26:00 +02005335 /* Process a latched INIT or SMI, if any. */
5336 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005337 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02005338
5339 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005340}
5341
5342static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags)
5343{
5344 unsigned changed = vcpu->arch.hflags ^ emul_flags;
5345
Paolo Bonzinia5845392015-04-01 18:18:53 +02005346 vcpu->arch.hflags = emul_flags;
Paolo Bonzini64d60672015-05-07 11:36:11 +02005347
5348 if (changed & HF_SMM_MASK)
5349 kvm_smm_changed(vcpu);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005350}
5351
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005352static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
5353 unsigned long *db)
5354{
5355 u32 dr6 = 0;
5356 int i;
5357 u32 enable, rwlen;
5358
5359 enable = dr7;
5360 rwlen = dr7 >> 16;
5361 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
5362 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
5363 dr6 |= (1 << i);
5364 return dr6;
5365}
5366
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005367static void kvm_vcpu_check_singlestep(struct kvm_vcpu *vcpu, unsigned long rflags, int *r)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005368{
5369 struct kvm_run *kvm_run = vcpu->run;
5370
5371 /*
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005372 * rflags is the old, "raw" value of the flags. The new value has
5373 * not been saved yet.
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005374 *
5375 * This is correct even for TF set by the guest, because "the
5376 * processor will not generate this exception after the instruction
5377 * that sets the TF flag".
5378 */
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005379 if (unlikely(rflags & X86_EFLAGS_TF)) {
5380 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005381 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 |
5382 DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005383 kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip;
5384 kvm_run->debug.arch.exception = DB_VECTOR;
5385 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5386 *r = EMULATE_USER_EXIT;
5387 } else {
5388 vcpu->arch.emulate_ctxt.eflags &= ~X86_EFLAGS_TF;
5389 /*
5390 * "Certain debug exceptions may clear bit 0-3. The
5391 * remaining contents of the DR6 register are never
5392 * cleared by the processor".
5393 */
5394 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005395 vcpu->arch.dr6 |= DR6_BS | DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005396 kvm_queue_exception(vcpu, DB_VECTOR);
5397 }
5398 }
5399}
5400
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005401static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
5402{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005403 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
5404 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005405 struct kvm_run *kvm_run = vcpu->run;
5406 unsigned long eip = kvm_get_linear_rip(vcpu);
5407 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005408 vcpu->arch.guest_debug_dr7,
5409 vcpu->arch.eff_db);
5410
5411 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005412 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02005413 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005414 kvm_run->debug.arch.exception = DB_VECTOR;
5415 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5416 *r = EMULATE_USER_EXIT;
5417 return true;
5418 }
5419 }
5420
Nadav Amit4161a562014-07-17 01:19:31 +03005421 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
5422 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005423 unsigned long eip = kvm_get_linear_rip(vcpu);
5424 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005425 vcpu->arch.dr7,
5426 vcpu->arch.db);
5427
5428 if (dr6 != 0) {
5429 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005430 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005431 kvm_queue_exception(vcpu, DB_VECTOR);
5432 *r = EMULATE_DONE;
5433 return true;
5434 }
5435 }
5436
5437 return false;
5438}
5439
Andre Przywara51d8b662010-12-21 11:12:02 +01005440int x86_emulate_instruction(struct kvm_vcpu *vcpu,
5441 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01005442 int emulation_type,
5443 void *insn,
5444 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005445{
Gleb Natapov95cb2292010-04-28 19:15:43 +03005446 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005447 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005448 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005449 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005450
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005451 /*
5452 * Clear write_fault_to_shadow_pgtable here to ensure it is
5453 * never reused.
5454 */
5455 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03005456 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03005457
Sheng Yang571008d2008-01-02 14:49:22 +08005458 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005459 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005460
5461 /*
5462 * We will reenter on the same instruction since
5463 * we do not set complete_userspace_io. This does not
5464 * handle watchpoints yet, those would be handled in
5465 * the emulate_ops.
5466 */
5467 if (kvm_vcpu_check_breakpoint(vcpu, &r))
5468 return r;
5469
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005470 ctxt->interruptibility = 0;
5471 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02005472 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005473 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005474
Borislav Petkovb51e9742013-09-22 16:44:52 +02005475 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02005476
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005477 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02005478
Avi Kivitye46479f2010-04-11 13:05:16 +03005479 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02005480 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09005481 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02005482 if (emulation_type & EMULTYPE_TRAP_UD)
5483 return EMULATE_FAIL;
Gleb Natapov991eebf2013-04-11 12:10:51 +03005484 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5485 emulation_type))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005486 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005487 if (emulation_type & EMULTYPE_SKIP)
5488 return EMULATE_FAIL;
5489 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005490 }
5491 }
5492
Gleb Natapovba8afb62009-04-12 13:36:57 +03005493 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03005494 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03005495 if (ctxt->eflags & X86_EFLAGS_RF)
5496 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Gleb Natapovba8afb62009-04-12 13:36:57 +03005497 return EMULATE_DONE;
5498 }
5499
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005500 if (retry_instruction(ctxt, cr2, emulation_type))
5501 return EMULATE_DONE;
5502
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005503 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005504 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005505 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
5506 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03005507 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005508 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005509
Gleb Natapov5cd21912010-03-18 15:20:26 +02005510restart:
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005511 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005512
Joerg Roedel775fde82011-04-04 12:39:24 +02005513 if (r == EMULATION_INTERCEPTED)
5514 return EMULATE_DONE;
5515
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005516 if (r == EMULATION_FAILED) {
Gleb Natapov991eebf2013-04-11 12:10:51 +03005517 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5518 emulation_type))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005519 return EMULATE_DONE;
5520
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005521 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005522 }
5523
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005524 if (ctxt->have_exception) {
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005525 r = EMULATE_DONE;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005526 if (inject_emulated_exception(vcpu))
5527 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005528 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02005529 if (!vcpu->arch.pio.in) {
5530 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03005531 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02005532 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005533 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005534 vcpu->arch.complete_userspace_io = complete_emulated_pio;
5535 }
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005536 r = EMULATE_USER_EXIT;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005537 } else if (vcpu->mmio_needed) {
5538 if (!vcpu->mmio_is_write)
5539 writeback = false;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005540 r = EMULATE_USER_EXIT;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005541 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005542 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03005543 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005544 else
5545 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03005546
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005547 if (writeback) {
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005548 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005549 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005550 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005551 if (vcpu->arch.hflags != ctxt->emul_flags)
5552 kvm_set_hflags(vcpu, ctxt->emul_flags);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005553 kvm_rip_write(vcpu, ctxt->eip);
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005554 if (r == EMULATE_DONE)
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005555 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
Nadav Amit38827db2014-11-02 11:54:53 +02005556 if (!ctxt->have_exception ||
5557 exception_type(ctxt->exception.vector) == EXCPT_TRAP)
5558 __kvm_set_rflags(vcpu, ctxt->eflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005559
5560 /*
5561 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
5562 * do nothing, and it will be requested again as soon as
5563 * the shadow expires. But we still need to check here,
5564 * because POPF has no interrupt shadow.
5565 */
5566 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
5567 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005568 } else
5569 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005570
Gleb Natapove85d28f2010-07-29 15:11:52 +03005571 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005572}
Andre Przywara51d8b662010-12-21 11:12:02 +01005573EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005574
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005575int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005576{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005577 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005578 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5579 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005580 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005581 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005582 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005583}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005584EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005585
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005586static void tsc_bad(void *info)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005587{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005588 __this_cpu_write(cpu_tsc_khz, 0);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005589}
5590
5591static void tsc_khz_changed(void *data)
5592{
5593 struct cpufreq_freqs *freq = data;
5594 unsigned long khz = 0;
5595
5596 if (data)
5597 khz = freq->new;
5598 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5599 khz = cpufreq_quick_get(raw_smp_processor_id());
5600 if (!khz)
5601 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005602 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005603}
5604
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005605static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5606 void *data)
5607{
5608 struct cpufreq_freqs *freq = data;
5609 struct kvm *kvm;
5610 struct kvm_vcpu *vcpu;
5611 int i, send_ipi = 0;
5612
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005613 /*
5614 * We allow guests to temporarily run on slowing clocks,
5615 * provided we notify them after, or to run on accelerating
5616 * clocks, provided we notify them before. Thus time never
5617 * goes backwards.
5618 *
5619 * However, we have a problem. We can't atomically update
5620 * the frequency of a given CPU from this function; it is
5621 * merely a notifier, which can be called from any CPU.
5622 * Changing the TSC frequency at arbitrary points in time
5623 * requires a recomputation of local variables related to
5624 * the TSC for each VCPU. We must flag these local variables
5625 * to be updated and be sure the update takes place with the
5626 * new frequency before any guests proceed.
5627 *
5628 * Unfortunately, the combination of hotplug CPU and frequency
5629 * change creates an intractable locking scenario; the order
5630 * of when these callouts happen is undefined with respect to
5631 * CPU hotplug, and they can race with each other. As such,
5632 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5633 * undefined; you can actually have a CPU frequency change take
5634 * place in between the computation of X and the setting of the
5635 * variable. To protect against this problem, all updates of
5636 * the per_cpu tsc_khz variable are done in an interrupt
5637 * protected IPI, and all callers wishing to update the value
5638 * must wait for a synchronous IPI to complete (which is trivial
5639 * if the caller is on the CPU already). This establishes the
5640 * necessary total order on variable updates.
5641 *
5642 * Note that because a guest time update may take place
5643 * anytime after the setting of the VCPU's request bit, the
5644 * correct TSC value must be set before the request. However,
5645 * to ensure the update actually makes it to any guest which
5646 * starts running in hardware virtualization between the set
5647 * and the acquisition of the spinlock, we must also ping the
5648 * CPU after setting the request bit.
5649 *
5650 */
5651
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005652 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5653 return 0;
5654 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5655 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005656
5657 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005658
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005659 spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005660 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005661 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005662 if (vcpu->cpu != freq->cpu)
5663 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005664 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005665 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005666 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005667 }
5668 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005669 spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005670
5671 if (freq->old < freq->new && send_ipi) {
5672 /*
5673 * We upscale the frequency. Must make the guest
5674 * doesn't see old kvmclock values while running with
5675 * the new frequency, otherwise we risk the guest sees
5676 * time go backwards.
5677 *
5678 * In case we update the frequency for another cpu
5679 * (which might be in guest context) send an interrupt
5680 * to kick the cpu out of guest context. Next time
5681 * guest context is entered kvmclock will be updated,
5682 * so the guest will not see stale values.
5683 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005684 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005685 }
5686 return 0;
5687}
5688
5689static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005690 .notifier_call = kvmclock_cpufreq_notifier
5691};
5692
5693static int kvmclock_cpu_notifier(struct notifier_block *nfb,
5694 unsigned long action, void *hcpu)
5695{
5696 unsigned int cpu = (unsigned long)hcpu;
5697
5698 switch (action) {
5699 case CPU_ONLINE:
5700 case CPU_DOWN_FAILED:
5701 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
5702 break;
5703 case CPU_DOWN_PREPARE:
5704 smp_call_function_single(cpu, tsc_bad, NULL, 1);
5705 break;
5706 }
5707 return NOTIFY_OK;
5708}
5709
5710static struct notifier_block kvmclock_cpu_notifier_block = {
5711 .notifier_call = kvmclock_cpu_notifier,
5712 .priority = -INT_MAX
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005713};
5714
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005715static void kvm_timer_init(void)
5716{
5717 int cpu;
5718
Zachary Amsdenc2855452010-09-18 14:38:15 -10005719 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305720
5721 cpu_notifier_register_begin();
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005722 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005723#ifdef CONFIG_CPU_FREQ
5724 struct cpufreq_policy policy;
5725 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005726 cpu = get_cpu();
5727 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005728 if (policy.cpuinfo.max_freq)
5729 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005730 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005731#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005732 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5733 CPUFREQ_TRANSITION_NOTIFIER);
5734 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005735 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005736 for_each_online_cpu(cpu)
5737 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305738
5739 __register_hotcpu_notifier(&kvmclock_cpu_notifier_block);
5740 cpu_notifier_register_done();
5741
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005742}
5743
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005744static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5745
Gleb Natapovf5132b02011-11-10 14:57:22 +02005746int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005747{
Alex,Shi086c9852011-10-20 15:34:01 +08005748 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005749}
5750
5751static int kvm_is_user_mode(void)
5752{
5753 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005754
Alex,Shi086c9852011-10-20 15:34:01 +08005755 if (__this_cpu_read(current_vcpu))
5756 user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005757
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005758 return user_mode != 0;
5759}
5760
5761static unsigned long kvm_get_guest_ip(void)
5762{
5763 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005764
Alex,Shi086c9852011-10-20 15:34:01 +08005765 if (__this_cpu_read(current_vcpu))
5766 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005767
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005768 return ip;
5769}
5770
5771static struct perf_guest_info_callbacks kvm_guest_cbs = {
5772 .is_in_guest = kvm_is_in_guest,
5773 .is_user_mode = kvm_is_user_mode,
5774 .get_guest_ip = kvm_get_guest_ip,
5775};
5776
5777void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5778{
Alex,Shi086c9852011-10-20 15:34:01 +08005779 __this_cpu_write(current_vcpu, vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005780}
5781EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5782
5783void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5784{
Alex,Shi086c9852011-10-20 15:34:01 +08005785 __this_cpu_write(current_vcpu, NULL);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005786}
5787EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5788
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005789static void kvm_set_mmio_spte_mask(void)
5790{
5791 u64 mask;
5792 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5793
5794 /*
5795 * Set the reserved bits and the present bit of an paging-structure
5796 * entry to generate page fault with PFER.RSV = 1.
5797 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08005798 /* Mask the reserved physical address bits. */
Tiejun Chend1431482014-09-01 18:44:04 +08005799 mask = rsvd_bits(maxphyaddr, 51);
Xiao Guangrong885032b2013-06-07 16:51:23 +08005800
5801 /* Bit 62 is always reserved for 32bit host. */
5802 mask |= 0x3ull << 62;
5803
5804 /* Set the present bit. */
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005805 mask |= 1ull;
5806
5807#ifdef CONFIG_X86_64
5808 /*
5809 * If reserved bit is not supported, clear the present bit to disable
5810 * mmio page fault.
5811 */
5812 if (maxphyaddr == 52)
5813 mask &= ~1ull;
5814#endif
5815
5816 kvm_mmu_set_mmio_spte_mask(mask);
5817}
5818
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005819#ifdef CONFIG_X86_64
5820static void pvclock_gtod_update_fn(struct work_struct *work)
5821{
Marcelo Tosattid8281992012-11-27 23:29:01 -02005822 struct kvm *kvm;
5823
5824 struct kvm_vcpu *vcpu;
5825 int i;
5826
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005827 spin_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005828 list_for_each_entry(kvm, &vm_list, vm_list)
5829 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08005830 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005831 atomic_set(&kvm_guest_has_master_clock, 0);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005832 spin_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005833}
5834
5835static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
5836
5837/*
5838 * Notification about pvclock gtod data update.
5839 */
5840static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
5841 void *priv)
5842{
5843 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
5844 struct timekeeper *tk = priv;
5845
5846 update_pvclock_gtod(tk);
5847
5848 /* disable master clock if host does not trust, or does not
5849 * use, TSC clocksource
5850 */
5851 if (gtod->clock.vclock_mode != VCLOCK_TSC &&
5852 atomic_read(&kvm_guest_has_master_clock) != 0)
5853 queue_work(system_long_wq, &pvclock_gtod_work);
5854
5855 return 0;
5856}
5857
5858static struct notifier_block pvclock_gtod_notifier = {
5859 .notifier_call = pvclock_gtod_notify,
5860};
5861#endif
5862
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005863int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02005864{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005865 int r;
Mathias Krause6b61edf2013-06-26 20:36:23 +02005866 struct kvm_x86_ops *ops = opaque;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005867
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005868 if (kvm_x86_ops) {
5869 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005870 r = -EEXIST;
5871 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005872 }
5873
5874 if (!ops->cpu_has_kvm_support()) {
5875 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005876 r = -EOPNOTSUPP;
5877 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005878 }
5879 if (ops->disabled_by_bios()) {
5880 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005881 r = -EOPNOTSUPP;
5882 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005883 }
5884
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005885 r = -ENOMEM;
5886 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
5887 if (!shared_msrs) {
5888 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
5889 goto out;
5890 }
5891
Avi Kivity97db56c2008-01-13 13:23:56 +02005892 r = kvm_mmu_module_init();
5893 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005894 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02005895
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005896 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02005897
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005898 kvm_x86_ops = ops;
Paolo Bonzini920c8372014-03-26 15:54:00 +01005899
Sheng Yang7b523452008-04-25 21:13:50 +08005900 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Bandan Dasffb128c2016-07-12 18:18:49 -04005901 PT_DIRTY_MASK, PT64_NX_MASK, 0,
5902 PT_PRESENT_MASK);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005903 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005904
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005905 perf_register_guest_info_callbacks(&kvm_guest_cbs);
5906
Borislav Petkovd366bf72016-04-04 22:25:02 +02005907 if (boot_cpu_has(X86_FEATURE_XSAVE))
Dexuan Cui2acf9232010-06-10 11:27:12 +08005908 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
5909
Gleb Natapovc5cc4212012-08-05 15:58:30 +03005910 kvm_lapic_init();
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005911#ifdef CONFIG_X86_64
5912 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
5913#endif
5914
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005915 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005916
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005917out_free_percpu:
5918 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005919out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005920 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02005921}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005922
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005923void kvm_arch_exit(void)
5924{
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005925 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
5926
Jan Kiszka888d2562009-04-17 19:24:58 +02005927 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5928 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
5929 CPUFREQ_TRANSITION_NOTIFIER);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005930 unregister_hotcpu_notifier(&kvmclock_cpu_notifier_block);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005931#ifdef CONFIG_X86_64
5932 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
5933#endif
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005934 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005935 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005936 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005937}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005938
Joel Schopp5cb56052015-03-02 13:43:31 -06005939int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05005940{
5941 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005942 if (lapic_in_kernel(vcpu)) {
Avi Kivitya4535292008-04-13 17:54:35 +03005943 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005944 return 1;
5945 } else {
5946 vcpu->run->exit_reason = KVM_EXIT_HLT;
5947 return 0;
5948 }
5949}
Joel Schopp5cb56052015-03-02 13:43:31 -06005950EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
5951
5952int kvm_emulate_halt(struct kvm_vcpu *vcpu)
5953{
5954 kvm_x86_ops->skip_emulated_instruction(vcpu);
5955 return kvm_vcpu_halt(vcpu);
5956}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005957EXPORT_SYMBOL_GPL(kvm_emulate_halt);
5958
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305959/*
5960 * kvm_pv_kick_cpu_op: Kick a vcpu.
5961 *
5962 * @apicid - apicid of vcpu to be kicked.
5963 */
5964static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
5965{
Raghavendra K T24d21662013-08-26 14:18:35 +05305966 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305967
Raghavendra K T24d21662013-08-26 14:18:35 +05305968 lapic_irq.shorthand = 0;
5969 lapic_irq.dest_mode = 0;
5970 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06005971 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305972
Raghavendra K T24d21662013-08-26 14:18:35 +05305973 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08005974 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305975}
5976
Andrey Smetanind62caab2015-11-10 15:36:33 +03005977void kvm_vcpu_deactivate_apicv(struct kvm_vcpu *vcpu)
5978{
5979 vcpu->arch.apicv_active = false;
5980 kvm_x86_ops->refresh_apicv_exec_ctrl(vcpu);
5981}
5982
Hollis Blanchard8776e512007-10-31 17:24:24 -05005983int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
5984{
5985 unsigned long nr, a0, a1, a2, a3, ret;
Nadav Amita449c7a2014-06-18 17:19:24 +03005986 int op_64_bit, r = 1;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005987
Joel Schopp5cb56052015-03-02 13:43:31 -06005988 kvm_x86_ops->skip_emulated_instruction(vcpu);
5989
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005990 if (kvm_hv_hypercall_enabled(vcpu->kvm))
5991 return kvm_hv_hypercall(vcpu);
5992
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005993 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
5994 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
5995 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
5996 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
5997 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005998
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005999 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006000
Nadav Amita449c7a2014-06-18 17:19:24 +03006001 op_64_bit = is_64_bit_mode(vcpu);
6002 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05006003 nr &= 0xFFFFFFFF;
6004 a0 &= 0xFFFFFFFF;
6005 a1 &= 0xFFFFFFFF;
6006 a2 &= 0xFFFFFFFF;
6007 a3 &= 0xFFFFFFFF;
6008 }
6009
Jan Kiszka07708c42009-08-03 18:43:28 +02006010 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
6011 ret = -KVM_EPERM;
6012 goto out;
6013 }
6014
Hollis Blanchard8776e512007-10-31 17:24:24 -05006015 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02006016 case KVM_HC_VAPIC_POLL_IRQ:
6017 ret = 0;
6018 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306019 case KVM_HC_KICK_CPU:
6020 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
6021 ret = 0;
6022 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006023 default:
6024 ret = -KVM_ENOSYS;
6025 break;
6026 }
Jan Kiszka07708c42009-08-03 18:43:28 +02006027out:
Nadav Amita449c7a2014-06-18 17:19:24 +03006028 if (!op_64_bit)
6029 ret = (u32)ret;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006030 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05306031 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05006032 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006033}
6034EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
6035
Jan Kiszkab6785de2012-09-20 07:43:17 +02006036static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006037{
Avi Kivityd6aa1002011-04-20 15:47:13 +03006038 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006039 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006040 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006041
Hollis Blanchard8776e512007-10-31 17:24:24 -05006042 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006043
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006044 return emulator_write_emulated(ctxt, rip, instruction, 3, NULL);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006045}
6046
Avi Kivity851ba692009-08-24 11:10:17 +03006047static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006048{
Matt Gingell782d4222015-11-16 15:26:00 -08006049 return vcpu->run->request_interrupt_window &&
6050 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006051}
6052
Avi Kivity851ba692009-08-24 11:10:17 +03006053static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006054{
Avi Kivity851ba692009-08-24 11:10:17 +03006055 struct kvm_run *kvm_run = vcpu->run;
6056
Jan Kiszka91586a32009-10-05 13:07:21 +02006057 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02006058 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006059 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006060 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01006061 kvm_run->ready_for_interrupt_injection =
6062 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08006063 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006064}
6065
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006066static void update_cr8_intercept(struct kvm_vcpu *vcpu)
6067{
6068 int max_irr, tpr;
6069
6070 if (!kvm_x86_ops->update_cr8_intercept)
6071 return;
6072
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006073 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03006074 return;
6075
Andrey Smetanind62caab2015-11-10 15:36:33 +03006076 if (vcpu->arch.apicv_active)
6077 return;
6078
Gleb Natapov8db3baa2009-05-11 13:35:54 +03006079 if (!vcpu->arch.apic->vapic_addr)
6080 max_irr = kvm_lapic_find_highest_irr(vcpu);
6081 else
6082 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006083
6084 if (max_irr != -1)
6085 max_irr >>= 4;
6086
6087 tpr = kvm_lapic_get_cr8(vcpu);
6088
6089 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
6090}
6091
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006092static int inject_pending_event(struct kvm_vcpu *vcpu, bool req_int_win)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006093{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006094 int r;
6095
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006096 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006097 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02006098 trace_kvm_inj_exception(vcpu->arch.exception.nr,
6099 vcpu->arch.exception.has_error_code,
6100 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03006101
6102 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
6103 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
6104 X86_EFLAGS_RF);
6105
Nadav Amit6bdf0662014-09-30 20:49:14 +03006106 if (vcpu->arch.exception.nr == DB_VECTOR &&
6107 (vcpu->arch.dr7 & DR7_GD)) {
6108 vcpu->arch.dr7 &= ~DR7_GD;
6109 kvm_update_dr7(vcpu);
6110 }
6111
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006112 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
6113 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02006114 vcpu->arch.exception.error_code,
6115 vcpu->arch.exception.reinject);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006116 return 0;
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006117 }
6118
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006119 if (vcpu->arch.nmi_injected) {
6120 kvm_x86_ops->set_nmi(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006121 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006122 }
6123
6124 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006125 kvm_x86_ops->set_irq(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006126 return 0;
6127 }
6128
6129 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6130 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6131 if (r != 0)
6132 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006133 }
6134
6135 /* try to inject new event if pending */
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006136 if (vcpu->arch.smi_pending && !is_smm(vcpu)) {
6137 vcpu->arch.smi_pending = false;
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006138 enter_smm(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006139 } else if (vcpu->arch.nmi_pending && kvm_x86_ops->nmi_allowed(vcpu)) {
Yuki Shibuya321c5652016-03-24 05:17:03 +00006140 --vcpu->arch.nmi_pending;
6141 vcpu->arch.nmi_injected = true;
6142 kvm_x86_ops->set_nmi(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006143 } else if (kvm_cpu_has_injectable_intr(vcpu)) {
Bandan Das9242b5b2014-07-08 00:30:23 -04006144 /*
6145 * Because interrupts can be injected asynchronously, we are
6146 * calling check_nested_events again here to avoid a race condition.
6147 * See https://lkml.org/lkml/2014/7/2/60 for discussion about this
6148 * proposal and current concerns. Perhaps we should be setting
6149 * KVM_REQ_EVENT only on certain events and not unconditionally?
6150 */
6151 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6152 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6153 if (r != 0)
6154 return r;
6155 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006156 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006157 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
6158 false);
6159 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006160 }
6161 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006162
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006163 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006164}
6165
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006166static void process_nmi(struct kvm_vcpu *vcpu)
6167{
6168 unsigned limit = 2;
6169
6170 /*
6171 * x86 is limited to one NMI running, and one NMI pending after it.
6172 * If an NMI is already in progress, limit further NMIs to just one.
6173 * Otherwise, allow two (and we'll inject the first one immediately).
6174 */
6175 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
6176 limit = 1;
6177
6178 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
6179 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
6180 kvm_make_request(KVM_REQ_EVENT, vcpu);
6181}
6182
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006183#define put_smstate(type, buf, offset, val) \
6184 *(type *)((buf) + (offset) - 0x7e00) = val
6185
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006186static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006187{
6188 u32 flags = 0;
6189 flags |= seg->g << 23;
6190 flags |= seg->db << 22;
6191 flags |= seg->l << 21;
6192 flags |= seg->avl << 20;
6193 flags |= seg->present << 15;
6194 flags |= seg->dpl << 13;
6195 flags |= seg->s << 12;
6196 flags |= seg->type << 8;
6197 return flags;
6198}
6199
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006200static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006201{
6202 struct kvm_segment seg;
6203 int offset;
6204
6205 kvm_get_segment(vcpu, &seg, n);
6206 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
6207
6208 if (n < 3)
6209 offset = 0x7f84 + n * 12;
6210 else
6211 offset = 0x7f2c + (n - 3) * 12;
6212
6213 put_smstate(u32, buf, offset + 8, seg.base);
6214 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006215 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006216}
6217
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006218#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006219static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006220{
6221 struct kvm_segment seg;
6222 int offset;
6223 u16 flags;
6224
6225 kvm_get_segment(vcpu, &seg, n);
6226 offset = 0x7e00 + n * 16;
6227
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006228 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006229 put_smstate(u16, buf, offset, seg.selector);
6230 put_smstate(u16, buf, offset + 2, flags);
6231 put_smstate(u32, buf, offset + 4, seg.limit);
6232 put_smstate(u64, buf, offset + 8, seg.base);
6233}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006234#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006235
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006236static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006237{
6238 struct desc_ptr dt;
6239 struct kvm_segment seg;
6240 unsigned long val;
6241 int i;
6242
6243 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
6244 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
6245 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
6246 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
6247
6248 for (i = 0; i < 8; i++)
6249 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
6250
6251 kvm_get_dr(vcpu, 6, &val);
6252 put_smstate(u32, buf, 0x7fcc, (u32)val);
6253 kvm_get_dr(vcpu, 7, &val);
6254 put_smstate(u32, buf, 0x7fc8, (u32)val);
6255
6256 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6257 put_smstate(u32, buf, 0x7fc4, seg.selector);
6258 put_smstate(u32, buf, 0x7f64, seg.base);
6259 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006260 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006261
6262 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6263 put_smstate(u32, buf, 0x7fc0, seg.selector);
6264 put_smstate(u32, buf, 0x7f80, seg.base);
6265 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006266 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006267
6268 kvm_x86_ops->get_gdt(vcpu, &dt);
6269 put_smstate(u32, buf, 0x7f74, dt.address);
6270 put_smstate(u32, buf, 0x7f70, dt.size);
6271
6272 kvm_x86_ops->get_idt(vcpu, &dt);
6273 put_smstate(u32, buf, 0x7f58, dt.address);
6274 put_smstate(u32, buf, 0x7f54, dt.size);
6275
6276 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006277 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006278
6279 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
6280
6281 /* revision id */
6282 put_smstate(u32, buf, 0x7efc, 0x00020000);
6283 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
6284}
6285
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006286static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006287{
6288#ifdef CONFIG_X86_64
6289 struct desc_ptr dt;
6290 struct kvm_segment seg;
6291 unsigned long val;
6292 int i;
6293
6294 for (i = 0; i < 16; i++)
6295 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
6296
6297 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
6298 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
6299
6300 kvm_get_dr(vcpu, 6, &val);
6301 put_smstate(u64, buf, 0x7f68, val);
6302 kvm_get_dr(vcpu, 7, &val);
6303 put_smstate(u64, buf, 0x7f60, val);
6304
6305 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
6306 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
6307 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
6308
6309 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
6310
6311 /* revision id */
6312 put_smstate(u32, buf, 0x7efc, 0x00020064);
6313
6314 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
6315
6316 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6317 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006318 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006319 put_smstate(u32, buf, 0x7e94, seg.limit);
6320 put_smstate(u64, buf, 0x7e98, seg.base);
6321
6322 kvm_x86_ops->get_idt(vcpu, &dt);
6323 put_smstate(u32, buf, 0x7e84, dt.size);
6324 put_smstate(u64, buf, 0x7e88, dt.address);
6325
6326 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6327 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006328 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006329 put_smstate(u32, buf, 0x7e74, seg.limit);
6330 put_smstate(u64, buf, 0x7e78, seg.base);
6331
6332 kvm_x86_ops->get_gdt(vcpu, &dt);
6333 put_smstate(u32, buf, 0x7e64, dt.size);
6334 put_smstate(u64, buf, 0x7e68, dt.address);
6335
6336 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006337 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006338#else
6339 WARN_ON_ONCE(1);
6340#endif
6341}
6342
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006343static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02006344{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006345 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02006346 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006347 char buf[512];
6348 u32 cr0;
6349
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006350 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
6351 vcpu->arch.hflags |= HF_SMM_MASK;
6352 memset(buf, 0, 512);
6353 if (guest_cpuid_has_longmode(vcpu))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006354 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006355 else
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006356 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006357
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006358 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006359
6360 if (kvm_x86_ops->get_nmi_mask(vcpu))
6361 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
6362 else
6363 kvm_x86_ops->set_nmi_mask(vcpu, true);
6364
6365 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
6366 kvm_rip_write(vcpu, 0x8000);
6367
6368 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
6369 kvm_x86_ops->set_cr0(vcpu, cr0);
6370 vcpu->arch.cr0 = cr0;
6371
6372 kvm_x86_ops->set_cr4(vcpu, 0);
6373
Paolo Bonzini18c36262015-08-07 12:27:54 +02006374 /* Undocumented: IDT limit is set to zero on entry to SMM. */
6375 dt.address = dt.size = 0;
6376 kvm_x86_ops->set_idt(vcpu, &dt);
6377
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006378 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
6379
6380 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
6381 cs.base = vcpu->arch.smbase;
6382
6383 ds.selector = 0;
6384 ds.base = 0;
6385
6386 cs.limit = ds.limit = 0xffffffff;
6387 cs.type = ds.type = 0x3;
6388 cs.dpl = ds.dpl = 0;
6389 cs.db = ds.db = 0;
6390 cs.s = ds.s = 1;
6391 cs.l = ds.l = 0;
6392 cs.g = ds.g = 1;
6393 cs.avl = ds.avl = 0;
6394 cs.present = ds.present = 1;
6395 cs.unusable = ds.unusable = 0;
6396 cs.padding = ds.padding = 0;
6397
6398 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
6399 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
6400 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
6401 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
6402 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
6403 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
6404
6405 if (guest_cpuid_has_longmode(vcpu))
6406 kvm_x86_ops->set_efer(vcpu, 0);
6407
6408 kvm_update_cpuid(vcpu);
6409 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006410}
6411
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006412static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006413{
6414 vcpu->arch.smi_pending = true;
6415 kvm_make_request(KVM_REQ_EVENT, vcpu);
6416}
6417
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01006418void kvm_make_scan_ioapic_request(struct kvm *kvm)
6419{
6420 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
6421}
6422
Yang Zhang3d81bc72013-04-11 19:25:13 +08006423static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006424{
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006425 u64 eoi_exit_bitmap[4];
6426
Yang Zhang3d81bc72013-04-11 19:25:13 +08006427 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
6428 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006429
Andrey Smetanin63086302015-11-10 15:36:32 +03006430 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006431
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07006432 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03006433 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006434 else {
Andrey Smetanind62caab2015-11-10 15:36:33 +03006435 if (vcpu->arch.apicv_active)
6436 kvm_x86_ops->sync_pir_to_irr(vcpu);
Andrey Smetanin63086302015-11-10 15:36:32 +03006437 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006438 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006439 bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors,
6440 vcpu_to_synic(vcpu)->vec_bitmap, 256);
6441 kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006442}
6443
Radim Krčmářa70656b2014-09-18 12:38:36 -04006444static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu)
6445{
6446 ++vcpu->stat.tlb_flush;
6447 kvm_x86_ops->tlb_flush(vcpu);
6448}
6449
Tang Chen4256f432014-09-24 15:57:54 +08006450void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
6451{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006452 struct page *page = NULL;
6453
Paolo Bonzini35754c92015-07-29 12:05:37 +02006454 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02006455 return;
6456
Tang Chen4256f432014-09-24 15:57:54 +08006457 if (!kvm_x86_ops->set_apic_access_page_addr)
6458 return;
6459
Tang Chenc24ae0d2014-09-24 15:57:58 +08006460 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Andrea Arcangelie8fd5e92015-05-08 14:32:56 +02006461 if (is_error_page(page))
6462 return;
Tang Chenc24ae0d2014-09-24 15:57:58 +08006463 kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page));
6464
6465 /*
6466 * Do not pin apic access page in memory, the MMU notifier
6467 * will call us again if it is migrated or swapped out.
6468 */
6469 put_page(page);
Tang Chen4256f432014-09-24 15:57:54 +08006470}
6471EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page);
6472
Tang Chenfe71557a2014-09-24 15:57:57 +08006473void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
6474 unsigned long address)
6475{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006476 /*
6477 * The physical address of apic access page is stored in the VMCS.
6478 * Update it when it becomes invalid.
6479 */
6480 if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT))
6481 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
Tang Chenfe71557a2014-09-24 15:57:57 +08006482}
6483
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006484/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01006485 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006486 * exiting to the userspace. Otherwise, the value will be returned to the
6487 * userspace.
6488 */
Avi Kivity851ba692009-08-24 11:10:17 +03006489static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006490{
6491 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08006492 bool req_int_win =
6493 dm_request_for_irq_injection(vcpu) &&
6494 kvm_cpu_accept_dm_intr(vcpu);
6495
Jan Kiszka730dca42013-04-28 10:50:52 +02006496 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006497
Avi Kivity3e007502010-06-23 14:26:18 +03006498 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03006499 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05006500 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006501 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03006502 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006503 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
6504 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03006505 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
6506 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10006507 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
6508 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10006509 if (unlikely(r))
6510 goto out;
6511 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006512 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03006513 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006514 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Radim Krčmářa70656b2014-09-18 12:38:36 -04006515 kvm_vcpu_flush_tlb(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006516 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006517 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02006518 r = 0;
6519 goto out;
6520 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006521 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006522 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01006523 r = 0;
6524 goto out;
6525 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006526 if (kvm_check_request(KVM_REQ_DEACTIVATE_FPU, vcpu)) {
Avi Kivity02daab22009-12-30 12:40:26 +02006527 vcpu->fpu_active = 0;
6528 kvm_x86_ops->fpu_deactivate(vcpu);
6529 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006530 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
6531 /* Page is swapped out. Do synthetic halt */
6532 vcpu->arch.apf.halted = true;
6533 r = 1;
6534 goto out;
6535 }
Glauber Costac9aaa892011-07-11 15:28:14 -04006536 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
6537 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006538 if (kvm_check_request(KVM_REQ_SMI, vcpu))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006539 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006540 if (kvm_check_request(KVM_REQ_NMI, vcpu))
6541 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006542 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006543 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006544 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006545 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07006546 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
6547 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
6548 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03006549 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07006550 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
6551 vcpu->run->eoi.vector =
6552 vcpu->arch.pending_ioapic_eoi;
6553 r = 0;
6554 goto out;
6555 }
6556 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08006557 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
6558 vcpu_scan_ioapic(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08006559 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
6560 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03006561 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
6562 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6563 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
6564 r = 0;
6565 goto out;
6566 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03006567 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
6568 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6569 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
6570 r = 0;
6571 goto out;
6572 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03006573 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
6574 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
6575 vcpu->run->hyperv = vcpu->arch.hyperv.exit;
6576 r = 0;
6577 goto out;
6578 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03006579
6580 /*
6581 * KVM_REQ_HV_STIMER has to be processed after
6582 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
6583 * depend on the guest clock being up-to-date
6584 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03006585 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
6586 kvm_hv_process_stimers(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02006587 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006588
Feng Wubf9f6ac2015-09-18 22:29:55 +08006589 /*
6590 * KVM_REQ_EVENT is not set when posted interrupts are set by
6591 * VT-d hardware, so we have to update RVI unconditionally.
6592 */
6593 if (kvm_lapic_enabled(vcpu)) {
6594 /*
6595 * Update architecture specific hints for APIC
6596 * virtual interrupt delivery.
6597 */
Andrey Smetanind62caab2015-11-10 15:36:33 +03006598 if (vcpu->arch.apicv_active)
Feng Wubf9f6ac2015-09-18 22:29:55 +08006599 kvm_x86_ops->hwapic_irr_update(vcpu,
6600 kvm_lapic_find_highest_irr(vcpu));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006601 }
6602
Avi Kivityb463a6f2010-07-20 15:06:17 +03006603 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Jan Kiszka66450a22013-03-13 12:42:34 +01006604 kvm_apic_accept_events(vcpu);
6605 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
6606 r = 1;
6607 goto out;
6608 }
6609
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006610 if (inject_pending_event(vcpu, req_int_win) != 0)
6611 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006612 else {
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006613 /* Enable NMI/IRQ window open exits if needed.
6614 *
6615 * SMIs have two cases: 1) they can be nested, and
6616 * then there is nothing to do here because RSM will
6617 * cause a vmexit anyway; 2) or the SMI can be pending
6618 * because inject_pending_event has completed the
6619 * injection of an IRQ or NMI from the previous vmexit,
6620 * and then we request an immediate exit to inject the SMI.
6621 */
6622 if (vcpu->arch.smi_pending && !is_smm(vcpu))
6623 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006624 if (vcpu->arch.nmi_pending)
6625 kvm_x86_ops->enable_nmi_window(vcpu);
6626 if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win)
6627 kvm_x86_ops->enable_irq_window(vcpu);
6628 }
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03006629
Avi Kivity3842d132010-07-27 12:30:24 +03006630 if (kvm_lapic_enabled(vcpu)) {
6631 update_cr8_intercept(vcpu);
6632 kvm_lapic_sync_to_vapic(vcpu);
6633 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006634 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006635
Avi Kivityd8368af2012-05-14 18:07:56 +03006636 r = kvm_mmu_reload(vcpu);
6637 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006638 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03006639 }
6640
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006641 preempt_disable();
6642
6643 kvm_x86_ops->prepare_guest_switch(vcpu);
6644 if (vcpu->fpu_active)
6645 kvm_load_guest_fpu(vcpu);
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006646 vcpu->mode = IN_GUEST_MODE;
6647
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006648 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6649
Lan Tianyu0f127d12016-03-13 11:10:29 +08006650 /*
6651 * We should set ->mode before check ->requests,
6652 * Please see the comment in kvm_make_all_cpus_request.
6653 * This also orders the write to mode from any reads
6654 * to the page tables done while the VCPU is running.
6655 * Please see the comment in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006656 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006657 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006658
6659 local_irq_disable();
6660
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006661 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006662 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006663 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006664 smp_wmb();
6665 local_irq_enable();
6666 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006667 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006668 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006669 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006670 }
6671
David Matlackfc5b7f32016-03-30 12:24:47 -07006672 kvm_load_guest_xcr0(vcpu);
6673
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006674 if (req_immediate_exit) {
6675 kvm_make_request(KVM_REQ_EVENT, vcpu);
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006676 smp_send_reschedule(vcpu->cpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006677 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006678
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01006679 trace_kvm_entry(vcpu->vcpu_id);
6680 wait_lapic_expire(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02006681 guest_enter_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006682
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006683 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006684 set_debugreg(0, 7);
6685 set_debugreg(vcpu->arch.eff_db[0], 0);
6686 set_debugreg(vcpu->arch.eff_db[1], 1);
6687 set_debugreg(vcpu->arch.eff_db[2], 2);
6688 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006689 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03006690 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006691 }
6692
Avi Kivity851ba692009-08-24 11:10:17 +03006693 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006694
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006695 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006696 * Do this here before restoring debug registers on the host. And
6697 * since we do this before handling the vmexit, a DR access vmexit
6698 * can (a) read the correct value of the debug registers, (b) set
6699 * KVM_DEBUGREG_WONT_EXIT again.
6700 */
6701 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006702 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
6703 kvm_x86_ops->sync_dirty_debug_regs(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01006704 kvm_update_dr0123(vcpu);
6705 kvm_update_dr6(vcpu);
6706 kvm_update_dr7(vcpu);
6707 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006708 }
6709
6710 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006711 * If the guest has used debug registers, at least dr7
6712 * will be disabled while returning to the host.
6713 * If we don't have active breakpoints in the host, we don't
6714 * care about the messed up debug address registers. But if
6715 * we have some of them active, restore the old state.
6716 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01006717 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006718 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006719
Haozhong Zhang4ba76532015-10-20 15:39:07 +08006720 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10006721
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006722 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03006723 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006724
David Matlackfc5b7f32016-03-30 12:24:47 -07006725 kvm_put_guest_xcr0(vcpu);
6726
Yang Zhanga547c6d2013-04-11 19:25:10 +08006727 /* Interrupt is enabled by handle_external_intr() */
6728 kvm_x86_ops->handle_external_intr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006729
6730 ++vcpu->stat.exits;
6731
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006732 guest_exit_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006733
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006734 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006735 preempt_enable();
6736
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006737 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006738
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006739 /*
6740 * Profile KVM exit RIPs:
6741 */
6742 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006743 unsigned long rip = kvm_rip_read(vcpu);
6744 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006745 }
6746
Zachary Amsdencc578282012-02-03 15:43:50 -02006747 if (unlikely(vcpu->arch.tsc_always_catchup))
6748 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02006749
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03006750 if (vcpu->arch.apic_attention)
6751 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02006752
Avi Kivity851ba692009-08-24 11:10:17 +03006753 r = kvm_x86_ops->handle_exit(vcpu);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006754 return r;
6755
6756cancel_injection:
6757 kvm_x86_ops->cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03006758 if (unlikely(vcpu->arch.apic_attention))
6759 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006760out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03006761 return r;
6762}
6763
Paolo Bonzini362c6982015-02-06 12:48:04 +01006764static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
6765{
Feng Wubf9f6ac2015-09-18 22:29:55 +08006766 if (!kvm_arch_vcpu_runnable(vcpu) &&
6767 (!kvm_x86_ops->pre_block || kvm_x86_ops->pre_block(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006768 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
6769 kvm_vcpu_block(vcpu);
6770 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006771
6772 if (kvm_x86_ops->post_block)
6773 kvm_x86_ops->post_block(vcpu);
6774
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006775 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
6776 return 1;
6777 }
Gleb Natapov09cec752009-03-23 15:11:44 +02006778
Paolo Bonzini362c6982015-02-06 12:48:04 +01006779 kvm_apic_accept_events(vcpu);
6780 switch(vcpu->arch.mp_state) {
6781 case KVM_MP_STATE_HALTED:
6782 vcpu->arch.pv.pv_unhalted = false;
6783 vcpu->arch.mp_state =
6784 KVM_MP_STATE_RUNNABLE;
6785 case KVM_MP_STATE_RUNNABLE:
6786 vcpu->arch.apf.halted = false;
6787 break;
6788 case KVM_MP_STATE_INIT_RECEIVED:
6789 break;
6790 default:
6791 return -EINTR;
6792 break;
6793 }
6794 return 1;
6795}
6796
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02006797static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
6798{
6799 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
6800 !vcpu->arch.apf.halted);
6801}
6802
Paolo Bonzini362c6982015-02-06 12:48:04 +01006803static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03006804{
6805 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006806 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03006807
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006808 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006809
Paolo Bonzini362c6982015-02-06 12:48:04 +01006810 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02006811 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006812 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006813 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01006814 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006815 }
6816
Gleb Natapov09cec752009-03-23 15:11:44 +02006817 if (r <= 0)
6818 break;
6819
6820 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
6821 if (kvm_cpu_has_pending_timer(vcpu))
6822 kvm_inject_pending_timer_irqs(vcpu);
6823
Matt Gingell782d4222015-11-16 15:26:00 -08006824 if (dm_request_for_irq_injection(vcpu) &&
6825 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02006826 r = 0;
6827 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02006828 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01006829 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006830 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006831
6832 kvm_check_async_pf_completion(vcpu);
6833
Gleb Natapov09cec752009-03-23 15:11:44 +02006834 if (signal_pending(current)) {
6835 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03006836 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02006837 ++vcpu->stat.signal_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01006838 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006839 }
6840 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006841 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Takuya Yoshikawac08ac062013-12-13 15:07:21 +09006842 cond_resched();
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006843 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006844 }
6845 }
6846
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006847 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006848
6849 return r;
6850}
6851
Gleb Natapov716d51a2012-09-03 15:24:26 +03006852static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
6853{
6854 int r;
6855 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
6856 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
6857 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6858 if (r != EMULATE_DONE)
6859 return 0;
6860 return 1;
6861}
6862
6863static int complete_emulated_pio(struct kvm_vcpu *vcpu)
6864{
6865 BUG_ON(!vcpu->arch.pio.count);
6866
6867 return complete_emulated_io(vcpu);
6868}
6869
Avi Kivityf78146b2012-04-18 19:22:47 +03006870/*
6871 * Implements the following, as a state machine:
6872 *
6873 * read:
6874 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006875 * for each mmio piece in the fragment
6876 * write gpa, len
6877 * exit
6878 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03006879 * execute insn
6880 *
6881 * write:
6882 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006883 * for each mmio piece in the fragment
6884 * write gpa, len
6885 * copy data
6886 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03006887 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03006888static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02006889{
6890 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03006891 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006892 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02006893
Gleb Natapov716d51a2012-09-03 15:24:26 +03006894 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006895
Gleb Natapov716d51a2012-09-03 15:24:26 +03006896 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006897 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
6898 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006899 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006900 memcpy(frag->data, run->mmio.data, len);
6901
6902 if (frag->len <= 8) {
6903 /* Switch to the next fragment. */
6904 frag++;
6905 vcpu->mmio_cur_fragment++;
6906 } else {
6907 /* Go forward to the next mmio piece. */
6908 frag->data += len;
6909 frag->gpa += len;
6910 frag->len -= len;
6911 }
6912
Andrew Honiga08d3b32014-02-27 19:35:14 +01006913 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03006914 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02006915
6916 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02006917 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03006918 return 1;
6919 vcpu->mmio_read_completed = 1;
6920 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02006921 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006922
Gleb Natapov716d51a2012-09-03 15:24:26 +03006923 run->exit_reason = KVM_EXIT_MMIO;
6924 run->mmio.phys_addr = frag->gpa;
6925 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006926 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
6927 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006928 run->mmio.is_write = vcpu->mmio_is_write;
6929 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
6930 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02006931}
6932
Gleb Natapov716d51a2012-09-03 15:24:26 +03006933
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006934int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
6935{
Ingo Molnarc5bedc62015-04-23 12:49:20 +02006936 struct fpu *fpu = &current->thread.fpu;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006937 int r;
6938 sigset_t sigsaved;
6939
Ingo Molnarc4d72e22015-04-27 07:18:17 +02006940 fpu__activate_curr(fpu);
Avi Kivitye5c30142011-01-11 12:15:54 +02006941
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006942 if (vcpu->sigset_active)
6943 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
6944
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006945 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
6946 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01006947 kvm_apic_accept_events(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006948 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006949 r = -EAGAIN;
6950 goto out;
6951 }
6952
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006953 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02006954 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006955 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
6956 r = -EINVAL;
6957 goto out;
6958 }
6959 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006960
Gleb Natapov716d51a2012-09-03 15:24:26 +03006961 if (unlikely(vcpu->arch.complete_userspace_io)) {
6962 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
6963 vcpu->arch.complete_userspace_io = NULL;
6964 r = cui(vcpu);
6965 if (r <= 0)
6966 goto out;
6967 } else
6968 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006969
Paolo Bonzini362c6982015-02-06 12:48:04 +01006970 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006971
6972out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03006973 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006974 if (vcpu->sigset_active)
6975 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
6976
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006977 return r;
6978}
6979
6980int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6981{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006982 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
6983 /*
6984 * We are here if userspace calls get_regs() in the middle of
6985 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08006986 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006987 * that usually, but some bad designed PV devices (vmware
6988 * backdoor interface) need this to work
6989 */
Avi Kivitydd856ef2012-08-27 23:46:17 +03006990 emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006991 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6992 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006993 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
6994 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
6995 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
6996 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
6997 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
6998 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
6999 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
7000 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007001#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007002 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
7003 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
7004 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
7005 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
7006 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
7007 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
7008 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
7009 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007010#endif
7011
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007012 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02007013 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007014
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007015 return 0;
7016}
7017
7018int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
7019{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007020 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
7021 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
7022
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007023 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
7024 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
7025 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
7026 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
7027 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
7028 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
7029 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
7030 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007031#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007032 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
7033 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
7034 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
7035 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
7036 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
7037 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
7038 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
7039 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007040#endif
7041
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007042 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02007043 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007044
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02007045 vcpu->arch.exception.pending = false;
7046
Avi Kivity3842d132010-07-27 12:30:24 +03007047 kvm_make_request(KVM_REQ_EVENT, vcpu);
7048
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007049 return 0;
7050}
7051
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007052void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
7053{
7054 struct kvm_segment cs;
7055
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007056 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007057 *db = cs.db;
7058 *l = cs.l;
7059}
7060EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
7061
7062int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
7063 struct kvm_sregs *sregs)
7064{
Gleb Natapov89a27f42010-02-16 10:51:48 +02007065 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007066
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007067 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7068 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7069 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7070 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7071 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7072 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007073
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007074 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7075 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007076
7077 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007078 sregs->idt.limit = dt.size;
7079 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007080 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007081 sregs->gdt.limit = dt.size;
7082 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007083
Avi Kivity4d4ec082009-12-29 18:07:30 +02007084 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007085 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007086 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02007087 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007088 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02007089 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007090 sregs->apic_base = kvm_get_apic_base(vcpu);
7091
Gleb Natapov923c61b2009-05-11 13:35:48 +03007092 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007093
Gleb Natapov36752c92009-05-11 13:35:53 +03007094 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03007095 set_bit(vcpu->arch.interrupt.nr,
7096 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03007097
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007098 return 0;
7099}
7100
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007101int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
7102 struct kvm_mp_state *mp_state)
7103{
Jan Kiszka66450a22013-03-13 12:42:34 +01007104 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307105 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
7106 vcpu->arch.pv.pv_unhalted)
7107 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
7108 else
7109 mp_state->mp_state = vcpu->arch.mp_state;
7110
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007111 return 0;
7112}
7113
7114int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
7115 struct kvm_mp_state *mp_state)
7116{
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007117 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01007118 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
7119 return -EINVAL;
7120
7121 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
7122 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
7123 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
7124 } else
7125 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03007126 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007127 return 0;
7128}
7129
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007130int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
7131 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007132{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007133 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007134 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007135
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007136 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007137
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007138 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007139 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02007140
Gleb Natapovc6975182010-02-18 12:15:01 +02007141 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03007142 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02007143
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007144 kvm_rip_write(vcpu, ctxt->eip);
7145 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03007146 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03007147 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02007148}
7149EXPORT_SYMBOL_GPL(kvm_task_switch);
7150
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007151int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
7152 struct kvm_sregs *sregs)
7153{
Jan Kiszka58cb6282014-01-24 16:48:44 +01007154 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007155 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007156 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02007157 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007158
Petr Matousek6d1068b2012-11-06 19:24:07 +01007159 if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE))
7160 return -EINVAL;
7161
Gleb Natapov89a27f42010-02-16 10:51:48 +02007162 dt.size = sregs->idt.limit;
7163 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007164 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007165 dt.size = sregs->gdt.limit;
7166 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007167 kvm_x86_ops->set_gdt(vcpu, &dt);
7168
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007169 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007170 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02007171 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02007172 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007173
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007174 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007175
Avi Kivityf6801df2010-01-21 15:31:50 +02007176 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007177 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Jan Kiszka58cb6282014-01-24 16:48:44 +01007178 apic_base_msr.data = sregs->apic_base;
7179 apic_base_msr.host_initiated = true;
7180 kvm_set_apic_base(vcpu, &apic_base_msr);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007181
Avi Kivity4d4ec082009-12-29 18:07:30 +02007182 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007183 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00007184 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007185
Avi Kivityfc78f512009-12-07 12:16:48 +02007186 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007187 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Huaitong Hanb9baba82016-03-22 16:51:21 +08007188 if (sregs->cr4 & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +02007189 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007190
7191 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02007192 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02007193 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02007194 mmu_reset_needed = 1;
7195 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007196 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007197
7198 if (mmu_reset_needed)
7199 kvm_mmu_reset_context(vcpu);
7200
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03007201 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03007202 pending_vec = find_first_bit(
7203 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
7204 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007205 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03007206 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007207 }
7208
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007209 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7210 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7211 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7212 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7213 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7214 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007215
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007216 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7217 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007218
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03007219 update_cr8_intercept(vcpu);
7220
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007221 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03007222 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007223 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02007224 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007225 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
7226
Avi Kivity3842d132010-07-27 12:30:24 +03007227 kvm_make_request(KVM_REQ_EVENT, vcpu);
7228
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007229 return 0;
7230}
7231
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007232int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
7233 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007234{
Jan Kiszka355be0b2009-10-03 00:31:21 +02007235 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007236 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007237
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007238 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
7239 r = -EBUSY;
7240 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03007241 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007242 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
7243 kvm_queue_exception(vcpu, DB_VECTOR);
7244 else
7245 kvm_queue_exception(vcpu, BP_VECTOR);
7246 }
7247
Jan Kiszka91586a32009-10-05 13:07:21 +02007248 /*
7249 * Read rflags as long as potentially injected trace flags are still
7250 * filtered out.
7251 */
7252 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007253
7254 vcpu->guest_debug = dbg->control;
7255 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
7256 vcpu->guest_debug = 0;
7257
7258 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007259 for (i = 0; i < KVM_NR_DB_REGS; ++i)
7260 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02007261 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007262 } else {
7263 for (i = 0; i < KVM_NR_DB_REGS; i++)
7264 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007265 }
Jan Kiszkac8639012012-09-21 05:42:55 +02007266 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007267
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007268 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
7269 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
7270 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007271
Jan Kiszka91586a32009-10-05 13:07:21 +02007272 /*
7273 * Trigger an rflags update that will inject or remove the trace
7274 * flags.
7275 */
7276 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007277
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007278 kvm_x86_ops->update_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007279
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007280 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007281
Avi Kivity2122ff52010-05-13 11:25:04 +03007282out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007283
7284 return r;
7285}
7286
7287/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08007288 * Translate a guest virtual address to a guest physical address.
7289 */
7290int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
7291 struct kvm_translation *tr)
7292{
7293 unsigned long vaddr = tr->linear_address;
7294 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007295 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007296
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007297 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02007298 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007299 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08007300 tr->physical_address = gpa;
7301 tr->valid = gpa != UNMAPPED_GVA;
7302 tr->writeable = 1;
7303 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007304
7305 return 0;
7306}
7307
Hollis Blanchardd0752062007-10-31 17:24:25 -05007308int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7309{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007310 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007311 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007312
Hollis Blanchardd0752062007-10-31 17:24:25 -05007313 memcpy(fpu->fpr, fxsave->st_space, 128);
7314 fpu->fcw = fxsave->cwd;
7315 fpu->fsw = fxsave->swd;
7316 fpu->ftwx = fxsave->twd;
7317 fpu->last_opcode = fxsave->fop;
7318 fpu->last_ip = fxsave->rip;
7319 fpu->last_dp = fxsave->rdp;
7320 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
7321
Hollis Blanchardd0752062007-10-31 17:24:25 -05007322 return 0;
7323}
7324
7325int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7326{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007327 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007328 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007329
Hollis Blanchardd0752062007-10-31 17:24:25 -05007330 memcpy(fxsave->st_space, fpu->fpr, 128);
7331 fxsave->cwd = fpu->fcw;
7332 fxsave->swd = fpu->fsw;
7333 fxsave->twd = fpu->ftwx;
7334 fxsave->fop = fpu->last_opcode;
7335 fxsave->rip = fpu->last_ip;
7336 fxsave->rdp = fpu->last_dp;
7337 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
7338
Hollis Blanchardd0752062007-10-31 17:24:25 -05007339 return 0;
7340}
7341
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007342static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007343{
Ingo Molnarbf935b02015-04-30 10:23:42 +02007344 fpstate_init(&vcpu->arch.guest_fpu.state);
Borislav Petkov782511b2016-04-04 22:25:03 +02007345 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar7366ed72015-04-27 04:19:39 +02007346 vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007347 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007348
Dexuan Cui2acf9232010-06-10 11:27:12 +08007349 /*
7350 * Ensure guest xcr0 is valid for loading
7351 */
Dave Hansend91cab72015-09-02 16:31:26 -07007352 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +08007353
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007354 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007355}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007356
7357void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
7358{
Avi Kivity2608d7a2010-01-21 15:31:45 +02007359 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007360 return;
7361
Dexuan Cui2acf9232010-06-10 11:27:12 +08007362 /*
7363 * Restore all possible states in the guest,
7364 * and assume host would use all available bits.
7365 * Guest xcr0 would be loaded later.
7366 */
Hollis Blanchardd0752062007-10-31 17:24:25 -05007367 vcpu->guest_fpu_loaded = 1;
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007368 __kernel_fpu_begin();
Ingo Molnar003e2e82015-05-25 11:59:35 +02007369 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state);
Avi Kivity0c048512010-01-21 15:31:52 +02007370 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007371}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007372
7373void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
7374{
Rik van Riel653f52c2015-04-23 11:52:37 -04007375 if (!vcpu->guest_fpu_loaded) {
7376 vcpu->fpu_counter = 0;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007377 return;
Rik van Riel653f52c2015-04-23 11:52:37 -04007378 }
Hollis Blanchardd0752062007-10-31 17:24:25 -05007379
7380 vcpu->guest_fpu_loaded = 0;
Ingo Molnar4f836342015-04-27 02:53:16 +02007381 copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007382 __kernel_fpu_end();
Avi Kivityf096ed82007-11-18 13:54:33 +02007383 ++vcpu->stat.fpu_reload;
Rik van Riel653f52c2015-04-23 11:52:37 -04007384 /*
7385 * If using eager FPU mode, or if the guest is a frequent user
7386 * of the FPU, just leave the FPU active for next time.
7387 * Every 255 times fpu_counter rolls over to 0; a guest that uses
7388 * the FPU in bursts will revert to loading it on demand.
7389 */
Paolo Bonzini5a5fbdc2016-03-08 10:00:11 +01007390 if (!use_eager_fpu()) {
Rik van Riel653f52c2015-04-23 11:52:37 -04007391 if (++vcpu->fpu_counter < 5)
7392 kvm_make_request(KVM_REQ_DEACTIVATE_FPU, vcpu);
7393 }
Avi Kivity0c048512010-01-21 15:31:52 +02007394 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007395}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007396
7397void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
7398{
Glauber Costa12f9a482011-02-01 14:16:40 -05007399 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01007400
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007401 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007402 kvm_x86_ops->vcpu_free(vcpu);
7403}
7404
7405struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
7406 unsigned int id)
7407{
Liang Lic447e762015-05-21 04:41:25 +08007408 struct kvm_vcpu *vcpu;
7409
Zachary Amsden6755bae2010-08-19 22:07:22 -10007410 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
7411 printk_once(KERN_WARNING
7412 "kvm: SMP vm created on host with unstable TSC; "
7413 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08007414
7415 vcpu = kvm_x86_ops->vcpu_create(kvm, id);
7416
Liang Lic447e762015-05-21 04:41:25 +08007417 return vcpu;
Avi Kivity26e52152007-11-20 15:30:24 +02007418}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007419
Avi Kivity26e52152007-11-20 15:30:24 +02007420int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
7421{
7422 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007423
Xiao Guangrong19efffa2015-06-15 16:55:31 +08007424 kvm_vcpu_mtrr_init(vcpu);
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007425 r = vcpu_load(vcpu);
7426 if (r)
7427 return r;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007428 kvm_vcpu_reset(vcpu, false);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02007429 kvm_mmu_setup(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007430 vcpu_put(vcpu);
Avi Kivity26e52152007-11-20 15:30:24 +02007431 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007432}
7433
Dominik Dingel31928aa2014-12-04 15:47:07 +01007434void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007435{
Will Auld8fe8ab42012-11-29 12:42:12 -08007436 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01007437 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007438
Dominik Dingel31928aa2014-12-04 15:47:07 +01007439 if (vcpu_load(vcpu))
7440 return;
Will Auld8fe8ab42012-11-29 12:42:12 -08007441 msr.data = 0x0;
7442 msr.index = MSR_IA32_TSC;
7443 msr.host_initiated = true;
7444 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007445 vcpu_put(vcpu);
7446
Marcelo Tosatti630994b2015-05-12 22:42:04 -03007447 if (!kvmclock_periodic_sync)
7448 return;
7449
Andrew Jones332967a2014-02-28 12:52:55 +01007450 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
7451 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007452}
7453
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06007454void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007455{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007456 int r;
Gleb Natapov344d9582010-10-14 11:22:50 +02007457 vcpu->arch.apf.msr_val = 0;
7458
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007459 r = vcpu_load(vcpu);
7460 BUG_ON(r);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007461 kvm_mmu_unload(vcpu);
7462 vcpu_put(vcpu);
7463
7464 kvm_x86_ops->vcpu_free(vcpu);
7465}
7466
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007467void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007468{
Paolo Bonzinie69fab52015-06-04 10:44:44 +02007469 vcpu->arch.hflags = 0;
7470
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007471 vcpu->arch.smi_pending = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007472 atomic_set(&vcpu->arch.nmi_queued, 0);
7473 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007474 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03007475 kvm_clear_interrupt_queue(vcpu);
7476 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007477
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007478 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03007479 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03007480 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007481 kvm_update_dr6(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007482 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02007483 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007484
Nadav Amit11190222015-04-02 03:10:38 +03007485 vcpu->arch.cr2 = 0;
7486
Avi Kivity3842d132010-07-27 12:30:24 +03007487 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02007488 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04007489 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03007490
Glauber Costa12f9a482011-02-01 14:16:40 -05007491 kvmclock_reset(vcpu);
7492
Gleb Natapovaf585b92010-10-14 11:22:46 +02007493 kvm_clear_async_pf_completion_queue(vcpu);
7494 kvm_async_pf_hash_reset(vcpu);
7495 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007496
Paolo Bonzini64d60672015-05-07 11:36:11 +02007497 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007498 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007499 vcpu->arch.smbase = 0x30000;
7500 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02007501
Julian Stecklina66f7b722012-12-05 15:26:19 +01007502 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
7503 vcpu->arch.regs_avail = ~0;
7504 vcpu->arch.regs_dirty = ~0;
7505
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007506 kvm_x86_ops->vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007507}
7508
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01007509void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01007510{
7511 struct kvm_segment cs;
7512
7513 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
7514 cs.selector = vector << 8;
7515 cs.base = vector << 12;
7516 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
7517 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007518}
7519
Radim Krčmář13a34e02014-08-28 15:13:03 +02007520int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007521{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10007522 struct kvm *kvm;
7523 struct kvm_vcpu *vcpu;
7524 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007525 int ret;
7526 u64 local_tsc;
7527 u64 max_tsc = 0;
7528 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03007529
7530 kvm_shared_msr_cpu_online();
Radim Krčmář13a34e02014-08-28 15:13:03 +02007531 ret = kvm_x86_ops->hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007532 if (ret != 0)
7533 return ret;
7534
Andy Lutomirski4ea16362015-06-25 18:44:07 +02007535 local_tsc = rdtsc();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007536 stable = !check_tsc_unstable();
7537 list_for_each_entry(kvm, &vm_list, vm_list) {
7538 kvm_for_each_vcpu(i, vcpu, kvm) {
7539 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007540 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007541 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
7542 backwards_tsc = true;
7543 if (vcpu->arch.last_host_tsc > max_tsc)
7544 max_tsc = vcpu->arch.last_host_tsc;
7545 }
7546 }
7547 }
7548
7549 /*
7550 * Sometimes, even reliable TSCs go backwards. This happens on
7551 * platforms that reset TSC during suspend or hibernate actions, but
7552 * maintain synchronization. We must compensate. Fortunately, we can
7553 * detect that condition here, which happens early in CPU bringup,
7554 * before any KVM threads can be running. Unfortunately, we can't
7555 * bring the TSCs fully up to date with real time, as we aren't yet far
7556 * enough into CPU bringup that we know how much real time has actually
7557 * elapsed; our helper function, get_kernel_ns() will be using boot
7558 * variables that haven't been updated yet.
7559 *
7560 * So we simply find the maximum observed TSC above, then record the
7561 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
7562 * the adjustment will be applied. Note that we accumulate
7563 * adjustments, in case multiple suspend cycles happen before some VCPU
7564 * gets a chance to run again. In the event that no KVM threads get a
7565 * chance to run, we will miss the entire elapsed period, as we'll have
7566 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
7567 * loose cycle time. This isn't too big a deal, since the loss will be
7568 * uniform across all VCPUs (not to mention the scenario is extremely
7569 * unlikely). It is possible that a second hibernate recovery happens
7570 * much faster than a first, causing the observed TSC here to be
7571 * smaller; this would require additional padding adjustment, which is
7572 * why we set last_host_tsc to the local tsc observed here.
7573 *
7574 * N.B. - this code below runs only on platforms with reliable TSC,
7575 * as that is the only way backwards_tsc is set above. Also note
7576 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
7577 * have the same delta_cyc adjustment applied if backwards_tsc
7578 * is detected. Note further, this adjustment is only done once,
7579 * as we reset last_host_tsc on all VCPUs to stop this from being
7580 * called multiple times (one for each physical CPU bringup).
7581 *
Guo Chao4a969982012-06-28 15:17:27 +08007582 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007583 * will be compensated by the logic in vcpu_load, which sets the TSC to
7584 * catchup mode. This will catchup all VCPUs to real time, but cannot
7585 * guarantee that they stay in perfect synchronization.
7586 */
7587 if (backwards_tsc) {
7588 u64 delta_cyc = max_tsc - local_tsc;
Marcelo Tosatti16a96022014-05-14 12:43:24 -03007589 backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007590 list_for_each_entry(kvm, &vm_list, vm_list) {
7591 kvm_for_each_vcpu(i, vcpu, kvm) {
7592 vcpu->arch.tsc_offset_adjustment += delta_cyc;
7593 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007594 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007595 }
7596
7597 /*
7598 * We have to disable TSC offset matching.. if you were
7599 * booting a VM while issuing an S4 host suspend....
7600 * you may have some problem. Solving this issue is
7601 * left as an exercise to the reader.
7602 */
7603 kvm->arch.last_tsc_nsec = 0;
7604 kvm->arch.last_tsc_write = 0;
7605 }
7606
7607 }
7608 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007609}
7610
Radim Krčmář13a34e02014-08-28 15:13:03 +02007611void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007612{
Radim Krčmář13a34e02014-08-28 15:13:03 +02007613 kvm_x86_ops->hardware_disable();
7614 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007615}
7616
7617int kvm_arch_hardware_setup(void)
7618{
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007619 int r;
7620
7621 r = kvm_x86_ops->hardware_setup();
7622 if (r != 0)
7623 return r;
7624
Haozhong Zhang35181e82015-10-20 15:39:03 +08007625 if (kvm_has_tsc_control) {
7626 /*
7627 * Make sure the user can only configure tsc_khz values that
7628 * fit into a signed integer.
7629 * A min value is not calculated needed because it will always
7630 * be 1 on all machines.
7631 */
7632 u64 max = min(0x7fffffffULL,
7633 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
7634 kvm_max_guest_tsc_khz = max;
7635
Haozhong Zhangad7218832015-10-20 15:39:02 +08007636 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +08007637 }
Haozhong Zhangad7218832015-10-20 15:39:02 +08007638
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007639 kvm_init_msr_list();
7640 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007641}
7642
7643void kvm_arch_hardware_unsetup(void)
7644{
7645 kvm_x86_ops->hardware_unsetup();
7646}
7647
7648void kvm_arch_check_processor_compat(void *rtn)
7649{
7650 kvm_x86_ops->check_processor_compatibility(rtn);
7651}
7652
Paolo Bonzinid71ba782015-07-29 11:56:48 +02007653bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
7654{
7655 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
7656}
7657EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
7658
7659bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
7660{
7661 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
7662}
7663
Gleb Natapov54e98182012-08-05 15:58:32 +03007664struct static_key kvm_no_apic_vcpu __read_mostly;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007665EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +03007666
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007667int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
7668{
7669 struct page *page;
7670 struct kvm *kvm;
7671 int r;
7672
7673 BUG_ON(vcpu->kvm == NULL);
7674 kvm = vcpu->kvm;
7675
Andrey Smetanind62caab2015-11-10 15:36:33 +03007676 vcpu->arch.apicv_active = kvm_x86_ops->get_enable_apicv();
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307677 vcpu->arch.pv.pv_unhalted = false;
Avi Kivity9aabc88f2010-07-29 15:11:50 +03007678 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Nadav Amit58d269d2015-04-02 03:10:36 +03007679 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03007680 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007681 else
Avi Kivitya4535292008-04-13 17:54:35 +03007682 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007683
7684 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
7685 if (!page) {
7686 r = -ENOMEM;
7687 goto fail;
7688 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007689 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007690
Zachary Amsdencc578282012-02-03 15:43:50 -02007691 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10007692
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007693 r = kvm_mmu_create(vcpu);
7694 if (r < 0)
7695 goto fail_free_pio_data;
7696
7697 if (irqchip_in_kernel(kvm)) {
7698 r = kvm_create_lapic(vcpu);
7699 if (r < 0)
7700 goto fail_mmu_destroy;
Gleb Natapov54e98182012-08-05 15:58:32 +03007701 } else
7702 static_key_slow_inc(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007703
Huang Ying890ca9a2009-05-11 16:48:15 +08007704 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
7705 GFP_KERNEL);
7706 if (!vcpu->arch.mce_banks) {
7707 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08007708 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08007709 }
7710 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
7711
Wei Yongjunf1797352013-04-18 07:41:00 +08007712 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) {
7713 r = -ENOMEM;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007714 goto fail_free_mce_banks;
Wei Yongjunf1797352013-04-18 07:41:00 +08007715 }
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007716
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007717 fx_init(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01007718
Will Auldba904632012-11-29 12:42:50 -08007719 vcpu->arch.ia32_tsc_adjust_msr = 0x0;
Andy Honig0b794592013-02-20 14:48:10 -08007720 vcpu->arch.pv_time_enabled = false;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007721
7722 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +02007723 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007724
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +03007725 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
7726
Radim Krčmář74545702015-04-27 15:11:25 +02007727 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
7728
Gleb Natapovaf585b92010-10-14 11:22:46 +02007729 kvm_async_pf_hash_reset(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007730 kvm_pmu_init(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007731
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02007732 vcpu->arch.pending_external_vector = -1;
7733
Andrey Smetanin5c9194122015-11-10 15:36:34 +03007734 kvm_hv_vcpu_init(vcpu);
7735
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007736 return 0;
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007737
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007738fail_free_mce_banks:
7739 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08007740fail_free_lapic:
7741 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007742fail_mmu_destroy:
7743 kvm_mmu_destroy(vcpu);
7744fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007745 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007746fail:
7747 return r;
7748}
7749
7750void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
7751{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007752 int idx;
7753
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03007754 kvm_hv_vcpu_uninit(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007755 kvm_pmu_destroy(vcpu);
Wei Yongjun36cb93f2010-01-22 14:18:47 +08007756 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007757 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007758 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007759 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007760 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007761 free_page((unsigned long)vcpu->arch.pio_data);
Paolo Bonzini35754c92015-07-29 12:05:37 +02007762 if (!lapic_in_kernel(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03007763 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007764}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007765
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007766void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
7767{
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007768 kvm_x86_ops->sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007769}
7770
Carsten Ottee08b9632012-01-04 10:25:20 +01007771int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007772{
Carsten Ottee08b9632012-01-04 10:25:20 +01007773 if (type)
7774 return -EINVAL;
7775
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01007776 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08007777 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Xiao Guangrong365c8862013-05-31 08:36:29 +08007778 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03007779 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06007780 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007781
Sheng Yang5550af42008-10-15 20:15:06 +08007782 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
7783 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06007784 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
7785 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
7786 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08007787
Jan Kiszka038f8c12011-02-04 10:49:11 +01007788 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007789 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007790 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
7791
7792 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01007793
Andrew Jones7e44e442014-02-28 12:52:54 +01007794 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01007795 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01007796
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007797 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +08007798 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007799
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05007800 if (kvm_x86_ops->vm_init)
7801 return kvm_x86_ops->vm_init(kvm);
7802
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01007803 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007804}
7805
7806static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
7807{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007808 int r;
7809 r = vcpu_load(vcpu);
7810 BUG_ON(r);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007811 kvm_mmu_unload(vcpu);
7812 vcpu_put(vcpu);
7813}
7814
7815static void kvm_free_vcpus(struct kvm *kvm)
7816{
7817 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007818 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007819
7820 /*
7821 * Unpin any mmu pages first.
7822 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02007823 kvm_for_each_vcpu(i, vcpu, kvm) {
7824 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007825 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007826 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007827 kvm_for_each_vcpu(i, vcpu, kvm)
7828 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007829
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007830 mutex_lock(&kvm->lock);
7831 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
7832 kvm->vcpus[i] = NULL;
7833
7834 atomic_set(&kvm->online_vcpus, 0);
7835 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007836}
7837
Sheng Yangad8ba2c2009-01-06 10:03:02 +08007838void kvm_arch_sync_events(struct kvm *kvm)
7839{
Andrew Jones332967a2014-02-28 12:52:55 +01007840 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01007841 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Sheng Yangba4cef32009-01-06 10:03:03 +08007842 kvm_free_all_assigned_devices(kvm);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08007843 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08007844}
7845
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007846int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007847{
7848 int i, r;
Paolo Bonzini25188b92015-10-14 15:51:08 +02007849 unsigned long hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007850 struct kvm_memslots *slots = kvm_memslots(kvm);
7851 struct kvm_memory_slot *slot, old;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007852
7853 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007854 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
7855 return -EINVAL;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007856
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007857 slot = id_to_memslot(slots, id);
7858 if (size) {
Paolo Bonzinib21629d2016-06-01 14:09:18 +02007859 if (slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007860 return -EEXIST;
7861
7862 /*
7863 * MAP_SHARED to prevent internal slot pages from being moved
7864 * by fork()/COW.
7865 */
7866 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
7867 MAP_SHARED | MAP_ANONYMOUS, 0);
7868 if (IS_ERR((void *)hva))
7869 return PTR_ERR((void *)hva);
7870 } else {
7871 if (!slot->npages)
7872 return 0;
7873
7874 hva = 0;
7875 }
7876
7877 old = *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007878 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007879 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007880
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007881 m.slot = id | (i << 16);
7882 m.flags = 0;
7883 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007884 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007885 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007886 r = __kvm_set_memory_region(kvm, &m);
7887 if (r < 0)
7888 return r;
7889 }
7890
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007891 if (!size) {
7892 r = vm_munmap(old.userspace_addr, old.npages * PAGE_SIZE);
7893 WARN_ON(r < 0);
7894 }
7895
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007896 return 0;
7897}
7898EXPORT_SYMBOL_GPL(__x86_set_memory_region);
7899
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007900int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007901{
7902 int r;
7903
7904 mutex_lock(&kvm->slots_lock);
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007905 r = __x86_set_memory_region(kvm, id, gpa, size);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007906 mutex_unlock(&kvm->slots_lock);
7907
7908 return r;
7909}
7910EXPORT_SYMBOL_GPL(x86_set_memory_region);
7911
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007912void kvm_arch_destroy_vm(struct kvm *kvm)
7913{
Andrew Honig27469d22013-04-18 09:38:14 -07007914 if (current->mm == kvm->mm) {
7915 /*
7916 * Free memory regions allocated on behalf of userspace,
7917 * unless the the memory map has changed due to process exit
7918 * or fd copying.
7919 */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007920 x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, 0, 0);
7921 x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, 0, 0);
7922 x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
Andrew Honig27469d22013-04-18 09:38:14 -07007923 }
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05007924 if (kvm_x86_ops->vm_destroy)
7925 kvm_x86_ops->vm_destroy(kvm);
Sheng Yang6eb55812008-10-31 12:37:41 +08007926 kvm_iommu_unmap_guest(kvm);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08007927 kfree(kvm->arch.vpic);
7928 kfree(kvm->arch.vioapic);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007929 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +02007930 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +08007931 kvm_mmu_uninit_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007932}
Zhang Xiantao0de10342007-11-20 16:25:04 +08007933
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05307934void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007935 struct kvm_memory_slot *dont)
7936{
7937 int i;
7938
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007939 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
7940 if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) {
Thomas Huth548ef282015-02-24 21:29:25 +01007941 kvfree(free->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007942 free->arch.rmap[i] = NULL;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007943 }
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007944 if (i == 0)
7945 continue;
7946
7947 if (!dont || free->arch.lpage_info[i - 1] !=
7948 dont->arch.lpage_info[i - 1]) {
Thomas Huth548ef282015-02-24 21:29:25 +01007949 kvfree(free->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007950 free->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007951 }
7952 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08007953
7954 kvm_page_track_free_memslot(free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007955}
7956
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05307957int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
7958 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007959{
7960 int i;
7961
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007962 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007963 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007964 unsigned long ugfn;
7965 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007966 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007967
7968 lpages = gfn_to_index(slot->base_gfn + npages - 1,
7969 slot->base_gfn, level) + 1;
7970
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007971 slot->arch.rmap[i] =
7972 kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i]));
7973 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007974 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007975 if (i == 0)
7976 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007977
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007978 linfo = kvm_kvzalloc(lpages * sizeof(*linfo));
7979 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007980 goto out_free;
7981
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007982 slot->arch.lpage_info[i - 1] = linfo;
7983
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007984 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007985 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007986 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007987 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007988 ugfn = slot->userspace_addr >> PAGE_SHIFT;
7989 /*
7990 * If the gfn and userspace address are not aligned wrt each
7991 * other, or if explicitly asked to, disable large page
7992 * support for this slot
7993 */
7994 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
7995 !kvm_largepages_enabled()) {
7996 unsigned long j;
7997
7998 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007999 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008000 }
8001 }
8002
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08008003 if (kvm_page_track_create_memslot(slot, npages))
8004 goto out_free;
8005
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008006 return 0;
8007
8008out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008009 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +01008010 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008011 slot->arch.rmap[i] = NULL;
8012 if (i == 0)
8013 continue;
8014
Thomas Huth548ef282015-02-24 21:29:25 +01008015 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008016 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008017 }
8018 return -ENOMEM;
8019}
8020
Paolo Bonzini15f46012015-05-17 21:26:08 +02008021void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008022{
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09008023 /*
8024 * memslots->generation has been incremented.
8025 * mmio generation may have reached its maximum value.
8026 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008027 kvm_mmu_invalidate_mmio_sptes(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008028}
8029
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008030int kvm_arch_prepare_memory_region(struct kvm *kvm,
8031 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008032 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09008033 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +08008034{
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008035 return 0;
8036}
8037
Kai Huang88178fd2015-01-28 10:54:27 +08008038static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
8039 struct kvm_memory_slot *new)
8040{
8041 /* Still write protect RO slot */
8042 if (new->flags & KVM_MEM_READONLY) {
8043 kvm_mmu_slot_remove_write_access(kvm, new);
8044 return;
8045 }
8046
8047 /*
8048 * Call kvm_x86_ops dirty logging hooks when they are valid.
8049 *
8050 * kvm_x86_ops->slot_disable_log_dirty is called when:
8051 *
8052 * - KVM_MR_CREATE with dirty logging is disabled
8053 * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag
8054 *
8055 * The reason is, in case of PML, we need to set D-bit for any slots
8056 * with dirty logging disabled in order to eliminate unnecessary GPA
8057 * logging in PML buffer (and potential PML buffer full VMEXT). This
8058 * guarantees leaving PML enabled during guest's lifetime won't have
8059 * any additonal overhead from PML when guest is running with dirty
8060 * logging disabled for memory slots.
8061 *
8062 * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot
8063 * to dirty logging mode.
8064 *
8065 * If kvm_x86_ops dirty logging hooks are invalid, use write protect.
8066 *
8067 * In case of write protect:
8068 *
8069 * Write protect all pages for dirty logging.
8070 *
8071 * All the sptes including the large sptes which point to this
8072 * slot are set to readonly. We can not create any new large
8073 * spte on this slot until the end of the logging.
8074 *
8075 * See the comments in fast_page_fault().
8076 */
8077 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
8078 if (kvm_x86_ops->slot_enable_log_dirty)
8079 kvm_x86_ops->slot_enable_log_dirty(kvm, new);
8080 else
8081 kvm_mmu_slot_remove_write_access(kvm, new);
8082 } else {
8083 if (kvm_x86_ops->slot_disable_log_dirty)
8084 kvm_x86_ops->slot_disable_log_dirty(kvm, new);
8085 }
8086}
8087
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008088void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008089 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008090 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008091 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008092 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008093{
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008094 int nr_mmu_pages = 0;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008095
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008096 if (!kvm->arch.n_requested_mmu_pages)
8097 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008098
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008099 if (nr_mmu_pages)
8100 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Kai Huang1c91cad42015-01-28 10:54:26 +08008101
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008102 /*
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08008103 * Dirty logging tracks sptes in 4k granularity, meaning that large
8104 * sptes have to be split. If live migration is successful, the guest
8105 * in the source machine will be destroyed and large sptes will be
8106 * created in the destination. However, if the guest continues to run
8107 * in the source machine (for example if live migration fails), small
8108 * sptes will remain around and cause bad performance.
8109 *
8110 * Scan sptes if dirty logging has been stopped, dropping those
8111 * which can be collapsed into a single large-page spte. Later
8112 * page faults will create the large-page sptes.
8113 */
8114 if ((change != KVM_MR_DELETE) &&
8115 (old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
8116 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
8117 kvm_mmu_zap_collapsible_sptes(kvm, new);
8118
8119 /*
Kai Huang88178fd2015-01-28 10:54:27 +08008120 * Set up write protection and/or dirty logging for the new slot.
Xiao Guangrongc126d942014-04-17 17:06:14 +08008121 *
Kai Huang88178fd2015-01-28 10:54:27 +08008122 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have
8123 * been zapped so no dirty logging staff is needed for old slot. For
8124 * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the
8125 * new and it's also covered when dealing with the new slot.
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008126 *
8127 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008128 */
Kai Huang88178fd2015-01-28 10:54:27 +08008129 if (change != KVM_MR_DELETE)
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008130 kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008131}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008132
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008133void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008134{
Xiao Guangrong6ca18b692013-05-31 08:36:23 +08008135 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008136}
8137
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008138void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
8139 struct kvm_memory_slot *slot)
8140{
Xiao Guangrong6ca18b692013-05-31 08:36:23 +08008141 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008142}
8143
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008144static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
8145{
8146 if (!list_empty_careful(&vcpu->async_pf.done))
8147 return true;
8148
8149 if (kvm_apic_has_events(vcpu))
8150 return true;
8151
8152 if (vcpu->arch.pv.pv_unhalted)
8153 return true;
8154
8155 if (atomic_read(&vcpu->arch.nmi_queued))
8156 return true;
8157
Paolo Bonzini73917732015-10-13 10:19:35 +02008158 if (test_bit(KVM_REQ_SMI, &vcpu->requests))
8159 return true;
8160
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008161 if (kvm_arch_interrupt_allowed(vcpu) &&
8162 kvm_cpu_has_interrupt(vcpu))
8163 return true;
8164
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03008165 if (kvm_hv_has_stimer_pending(vcpu))
8166 return true;
8167
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008168 return false;
8169}
8170
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008171int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
8172{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008173 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events)
8174 kvm_x86_ops->check_nested_events(vcpu, false);
8175
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008176 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008177}
Zhang Xiantao57361992007-12-17 14:21:40 +08008178
Christoffer Dallb6d33832012-03-08 16:44:24 -05008179int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +08008180{
Christoffer Dallb6d33832012-03-08 16:44:24 -05008181 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +08008182}
Gleb Natapov78646122009-03-23 12:12:11 +02008183
8184int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
8185{
8186 return kvm_x86_ops->interrupt_allowed(vcpu);
8187}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008188
Nadav Amit82b32772014-11-02 11:54:45 +02008189unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
8190{
8191 if (is_64_bit_mode(vcpu))
8192 return kvm_rip_read(vcpu);
8193 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
8194 kvm_rip_read(vcpu));
8195}
8196EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
8197
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008198bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
8199{
Nadav Amit82b32772014-11-02 11:54:45 +02008200 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008201}
8202EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
8203
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008204unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
8205{
8206 unsigned long rflags;
8207
8208 rflags = kvm_x86_ops->get_rflags(vcpu);
8209 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01008210 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008211 return rflags;
8212}
8213EXPORT_SYMBOL_GPL(kvm_get_rflags);
8214
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008215static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008216{
8217 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008218 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01008219 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008220 kvm_x86_ops->set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008221}
8222
8223void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
8224{
8225 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03008226 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008227}
8228EXPORT_SYMBOL_GPL(kvm_set_rflags);
8229
Gleb Natapov56028d02010-10-17 18:13:42 +02008230void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
8231{
8232 int r;
8233
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008234 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +08008235 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +02008236 return;
8237
8238 r = kvm_mmu_reload(vcpu);
8239 if (unlikely(r))
8240 return;
8241
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008242 if (!vcpu->arch.mmu.direct_map &&
8243 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
8244 return;
8245
Gleb Natapov56028d02010-10-17 18:13:42 +02008246 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
8247}
8248
Gleb Natapovaf585b92010-10-14 11:22:46 +02008249static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
8250{
8251 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
8252}
8253
8254static inline u32 kvm_async_pf_next_probe(u32 key)
8255{
8256 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
8257}
8258
8259static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8260{
8261 u32 key = kvm_async_pf_hash_fn(gfn);
8262
8263 while (vcpu->arch.apf.gfns[key] != ~0)
8264 key = kvm_async_pf_next_probe(key);
8265
8266 vcpu->arch.apf.gfns[key] = gfn;
8267}
8268
8269static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
8270{
8271 int i;
8272 u32 key = kvm_async_pf_hash_fn(gfn);
8273
8274 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08008275 (vcpu->arch.apf.gfns[key] != gfn &&
8276 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02008277 key = kvm_async_pf_next_probe(key);
8278
8279 return key;
8280}
8281
8282bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8283{
8284 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
8285}
8286
8287static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8288{
8289 u32 i, j, k;
8290
8291 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
8292 while (true) {
8293 vcpu->arch.apf.gfns[i] = ~0;
8294 do {
8295 j = kvm_async_pf_next_probe(j);
8296 if (vcpu->arch.apf.gfns[j] == ~0)
8297 return;
8298 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
8299 /*
8300 * k lies cyclically in ]i,j]
8301 * | i.k.j |
8302 * |....j i.k.| or |.k..j i...|
8303 */
8304 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
8305 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
8306 i = j;
8307 }
8308}
8309
Gleb Natapov7c907052010-10-14 11:22:53 +02008310static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
8311{
8312
8313 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val,
8314 sizeof(val));
8315}
8316
Gleb Natapovaf585b92010-10-14 11:22:46 +02008317void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
8318 struct kvm_async_pf *work)
8319{
Avi Kivity6389ee92010-11-29 16:12:30 +02008320 struct x86_exception fault;
8321
Gleb Natapov7c907052010-10-14 11:22:53 +02008322 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008323 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02008324
8325 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02008326 (vcpu->arch.apf.send_user_only &&
8327 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02008328 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
8329 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008330 fault.vector = PF_VECTOR;
8331 fault.error_code_valid = true;
8332 fault.error_code = 0;
8333 fault.nested_page_fault = false;
8334 fault.address = work->arch.token;
8335 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008336 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008337}
8338
8339void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
8340 struct kvm_async_pf *work)
8341{
Avi Kivity6389ee92010-11-29 16:12:30 +02008342 struct x86_exception fault;
8343
Gleb Natapov7c907052010-10-14 11:22:53 +02008344 trace_kvm_async_pf_ready(work->arch.token, work->gva);
chai wenf2e10662013-10-14 22:22:33 +08008345 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +02008346 work->arch.token = ~0; /* broadcast wakeup */
8347 else
8348 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
8349
8350 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
8351 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008352 fault.vector = PF_VECTOR;
8353 fault.error_code_valid = true;
8354 fault.error_code = 0;
8355 fault.nested_page_fault = false;
8356 fault.address = work->arch.token;
8357 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008358 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08008359 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +03008360 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +02008361}
8362
8363bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
8364{
8365 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
8366 return true;
8367 else
8368 return !kvm_event_needs_reinjection(vcpu) &&
8369 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008370}
8371
Paolo Bonzini5544eb92015-07-07 15:41:58 +02008372void kvm_arch_start_assignment(struct kvm *kvm)
8373{
8374 atomic_inc(&kvm->arch.assigned_device_count);
8375}
8376EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
8377
8378void kvm_arch_end_assignment(struct kvm *kvm)
8379{
8380 atomic_dec(&kvm->arch.assigned_device_count);
8381}
8382EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
8383
8384bool kvm_arch_has_assigned_device(struct kvm *kvm)
8385{
8386 return atomic_read(&kvm->arch.assigned_device_count);
8387}
8388EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
8389
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06008390void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
8391{
8392 atomic_inc(&kvm->arch.noncoherent_dma_count);
8393}
8394EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
8395
8396void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
8397{
8398 atomic_dec(&kvm->arch.noncoherent_dma_count);
8399}
8400EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
8401
8402bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
8403{
8404 return atomic_read(&kvm->arch.noncoherent_dma_count);
8405}
8406EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
8407
Alex Williamson14717e22016-05-05 11:58:35 -06008408bool kvm_arch_has_irq_bypass(void)
8409{
8410 return kvm_x86_ops->update_pi_irte != NULL;
8411}
8412
Feng Wu87276882015-09-18 22:29:40 +08008413int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
8414 struct irq_bypass_producer *prod)
8415{
8416 struct kvm_kernel_irqfd *irqfd =
8417 container_of(cons, struct kvm_kernel_irqfd, consumer);
8418
Alex Williamson14717e22016-05-05 11:58:35 -06008419 irqfd->producer = prod;
Feng Wu87276882015-09-18 22:29:40 +08008420
Alex Williamson14717e22016-05-05 11:58:35 -06008421 return kvm_x86_ops->update_pi_irte(irqfd->kvm,
8422 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +08008423}
8424
8425void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
8426 struct irq_bypass_producer *prod)
8427{
8428 int ret;
8429 struct kvm_kernel_irqfd *irqfd =
8430 container_of(cons, struct kvm_kernel_irqfd, consumer);
8431
Feng Wu87276882015-09-18 22:29:40 +08008432 WARN_ON(irqfd->producer != prod);
8433 irqfd->producer = NULL;
8434
8435 /*
8436 * When producer of consumer is unregistered, we change back to
8437 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +02008438 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +08008439 * int this case doesn't want to receive the interrupts.
8440 */
8441 ret = kvm_x86_ops->update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0);
8442 if (ret)
8443 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
8444 " fails: %d\n", irqfd->consumer.token, ret);
8445}
8446
8447int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
8448 uint32_t guest_irq, bool set)
8449{
8450 if (!kvm_x86_ops->update_pi_irte)
8451 return -EINVAL;
8452
8453 return kvm_x86_ops->update_pi_irte(kvm, host_irq, guest_irq, set);
8454}
8455
Feng Wu520040142016-01-25 16:53:33 +08008456bool kvm_vector_hashing_enabled(void)
8457{
8458 return vector_hashing;
8459}
8460EXPORT_SYMBOL_GPL(kvm_vector_hashing_enabled);
8461
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008462EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
Jason Wang931c33b2015-09-15 14:41:58 +08008463EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008464EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
8465EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
8466EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
8467EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02008468EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02008469EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02008470EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02008471EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02008472EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02008473EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01008474EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09008475EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Radim Krčmář7b462682014-08-21 18:08:09 +02008476EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window);
Kai Huang843e4332015-01-28 10:54:28 +08008477EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
Feng Wuefc64402015-09-18 22:29:51 +08008478EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05008479EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
8480EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);