blob: 668625e47102830d252b352c4b566a4e210f4d26 [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
Huang Ying5854dbc2010-10-08 16:24:14 +080073#define KVM_MCE_CAP_SUPPORTED (MCG_CTL_P | MCG_SER_P)
Huang Ying890ca9a2009-05-11 16:48:15 +080074
Avi Kivity0f65dd72011-04-20 13:37:53 +030075#define emul_to_vcpu(ctxt) \
76 container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt)
77
Joerg Roedel50a37eb2008-01-31 14:57:38 +010078/* EFER defaults:
79 * - enable syscall per default because its emulated by KVM
80 * - enable LME and LMA per default on 64 bit KVM
81 */
82#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080083static
84u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010085#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080086static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010087#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020088
Avi Kivityba1389b2007-11-18 16:24:12 +020089#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
90#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050091
Gleb Natapovcb142eb2009-08-09 15:17:40 +030092static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +030093static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010094static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Avi Kivity674eea02008-02-11 18:37:23 +020095
Paolo Bonzini893590c2015-11-06 11:46:24 +010096struct kvm_x86_ops *kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030097EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +080098
Paolo Bonzini893590c2015-11-06 11:46:24 +010099static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030100module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200101
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200102unsigned int min_timer_period_us = 500;
103module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
104
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300105static bool __read_mostly kvmclock_periodic_sync = true;
106module_param(kvmclock_periodic_sync, bool, S_IRUGO);
107
Paolo Bonzini893590c2015-11-06 11:46:24 +0100108bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100109EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100110u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100111EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800112u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
113EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
114u64 __read_mostly kvm_max_tsc_scaling_ratio;
115EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Haozhong Zhangad721882015-10-20 15:39:02 +0800116static u64 __read_mostly kvm_default_tsc_scaling_ratio;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100117
Zachary Amsdencc578282012-02-03 15:43:50 -0200118/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100119static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200120module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
121
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500122/* lapic timer advance (tscdeadline mode only) in nanoseconds */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100123unsigned int __read_mostly lapic_timer_advance_ns = 0;
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500124module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR);
125
Feng Wu520040142016-01-25 16:53:33 +0800126static bool __read_mostly vector_hashing = true;
127module_param(vector_hashing, bool, S_IRUGO);
128
Paolo Bonzini893590c2015-11-06 11:46:24 +0100129static bool __read_mostly backwards_tsc_observed = false;
Marcelo Tosatti16a96022014-05-14 12:43:24 -0300130
Avi Kivity18863bd2009-09-07 11:12:18 +0300131#define KVM_NR_SHARED_MSRS 16
132
133struct kvm_shared_msrs_global {
134 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800135 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300136};
137
138struct kvm_shared_msrs {
139 struct user_return_notifier urn;
140 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800141 struct kvm_shared_msr_values {
142 u64 host;
143 u64 curr;
144 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300145};
146
147static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200148static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300149
Hollis Blanchard417bc302007-10-31 17:24:23 -0500150struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200151 { "pf_fixed", VCPU_STAT(pf_fixed) },
152 { "pf_guest", VCPU_STAT(pf_guest) },
153 { "tlb_flush", VCPU_STAT(tlb_flush) },
154 { "invlpg", VCPU_STAT(invlpg) },
155 { "exits", VCPU_STAT(exits) },
156 { "io_exits", VCPU_STAT(io_exits) },
157 { "mmio_exits", VCPU_STAT(mmio_exits) },
158 { "signal_exits", VCPU_STAT(signal_exits) },
159 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800160 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200161 { "halt_exits", VCPU_STAT(halt_exits) },
Paolo Bonzinif7819512015-02-04 18:20:58 +0100162 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +0200163 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200164 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530165 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200166 { "request_irq", VCPU_STAT(request_irq_exits) },
167 { "irq_exits", VCPU_STAT(irq_exits) },
168 { "host_state_reload", VCPU_STAT(host_state_reload) },
169 { "efer_reload", VCPU_STAT(efer_reload) },
170 { "fpu_reload", VCPU_STAT(fpu_reload) },
171 { "insn_emulation", VCPU_STAT(insn_emulation) },
172 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300173 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200174 { "nmi_injections", VCPU_STAT(nmi_injections) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200175 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
176 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
177 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
178 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
179 { "mmu_flooded", VM_STAT(mmu_flooded) },
180 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200181 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300182 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200183 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300184 { "largepages", VM_STAT(lpages) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500185 { NULL }
186};
187
Dexuan Cui2acf9232010-06-10 11:27:12 +0800188u64 __read_mostly host_xcr0;
189
Jan Kiszkab6785de2012-09-20 07:43:17 +0200190static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300191
Gleb Natapovaf585b92010-10-14 11:22:46 +0200192static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
193{
194 int i;
195 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
196 vcpu->arch.apf.gfns[i] = ~0;
197}
198
Avi Kivity18863bd2009-09-07 11:12:18 +0300199static void kvm_on_user_return(struct user_return_notifier *urn)
200{
201 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300202 struct kvm_shared_msrs *locals
203 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800204 struct kvm_shared_msr_values *values;
Avi Kivity18863bd2009-09-07 11:12:18 +0300205
206 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800207 values = &locals->values[slot];
208 if (values->host != values->curr) {
209 wrmsrl(shared_msrs_global.msrs[slot], values->host);
210 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300211 }
212 }
213 locals->registered = false;
214 user_return_notifier_unregister(urn);
215}
216
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800217static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300218{
Avi Kivity18863bd2009-09-07 11:12:18 +0300219 u64 value;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200220 unsigned int cpu = smp_processor_id();
221 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300222
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800223 /* only read, and nobody should modify it at this time,
224 * so don't need lock */
225 if (slot >= shared_msrs_global.nr) {
226 printk(KERN_ERR "kvm: invalid MSR slot!");
227 return;
228 }
229 rdmsrl_safe(msr, &value);
230 smsr->values[slot].host = value;
231 smsr->values[slot].curr = value;
232}
233
234void kvm_define_shared_msr(unsigned slot, u32 msr)
235{
Nadav Amit0123be42014-07-24 15:06:56 +0300236 BUG_ON(slot >= KVM_NR_SHARED_MSRS);
Paolo Bonzinic847fe82015-07-29 11:06:34 +0200237 shared_msrs_global.msrs[slot] = msr;
Avi Kivity18863bd2009-09-07 11:12:18 +0300238 if (slot >= shared_msrs_global.nr)
239 shared_msrs_global.nr = slot + 1;
Avi Kivity18863bd2009-09-07 11:12:18 +0300240}
241EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
242
243static void kvm_shared_msr_cpu_online(void)
244{
245 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300246
247 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800248 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300249}
250
Andy Honig8b3c3102014-08-27 11:16:44 -0700251int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300252{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200253 unsigned int cpu = smp_processor_id();
254 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700255 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300256
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800257 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Andy Honig8b3c3102014-08-27 11:16:44 -0700258 return 0;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800259 smsr->values[slot].curr = value;
Andy Honig8b3c3102014-08-27 11:16:44 -0700260 err = wrmsrl_safe(shared_msrs_global.msrs[slot], value);
261 if (err)
262 return 1;
263
Avi Kivity18863bd2009-09-07 11:12:18 +0300264 if (!smsr->registered) {
265 smsr->urn.on_user_return = kvm_on_user_return;
266 user_return_notifier_register(&smsr->urn);
267 smsr->registered = true;
268 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700269 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300270}
271EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
272
Radim Krčmář13a34e02014-08-28 15:13:03 +0200273static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200274{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200275 unsigned int cpu = smp_processor_id();
276 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200277
278 if (smsr->registered)
279 kvm_on_user_return(&smsr->urn);
280}
281
Carsten Otte6866b832007-10-29 16:09:10 +0100282u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
283{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300284 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100285}
286EXPORT_SYMBOL_GPL(kvm_get_apic_base);
287
Jan Kiszka58cb6282014-01-24 16:48:44 +0100288int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100289{
Jan Kiszka58cb6282014-01-24 16:48:44 +0100290 u64 old_state = vcpu->arch.apic_base &
291 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
292 u64 new_state = msr_info->data &
293 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
294 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) |
295 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE);
296
297 if (!msr_info->host_initiated &&
298 ((msr_info->data & reserved_bits) != 0 ||
299 new_state == X2APIC_ENABLE ||
300 (new_state == MSR_IA32_APICBASE_ENABLE &&
301 old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) ||
302 (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) &&
303 old_state == 0)))
304 return 1;
305
306 kvm_lapic_set_base(vcpu, msr_info->data);
307 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100308}
309EXPORT_SYMBOL_GPL(kvm_set_apic_base);
310
Andi Kleen2605fc22014-05-02 00:44:37 +0200311asmlinkage __visible void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000312{
313 /* Fault while not rebooting. We want the trace. */
314 BUG();
315}
316EXPORT_SYMBOL_GPL(kvm_spurious_fault);
317
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200318#define EXCPT_BENIGN 0
319#define EXCPT_CONTRIBUTORY 1
320#define EXCPT_PF 2
321
322static int exception_class(int vector)
323{
324 switch (vector) {
325 case PF_VECTOR:
326 return EXCPT_PF;
327 case DE_VECTOR:
328 case TS_VECTOR:
329 case NP_VECTOR:
330 case SS_VECTOR:
331 case GP_VECTOR:
332 return EXCPT_CONTRIBUTORY;
333 default:
334 break;
335 }
336 return EXCPT_BENIGN;
337}
338
Nadav Amitd6e8c852014-07-24 14:51:24 +0300339#define EXCPT_FAULT 0
340#define EXCPT_TRAP 1
341#define EXCPT_ABORT 2
342#define EXCPT_INTERRUPT 3
343
344static int exception_type(int vector)
345{
346 unsigned int mask;
347
348 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
349 return EXCPT_INTERRUPT;
350
351 mask = 1 << vector;
352
353 /* #DB is trap, as instruction watchpoints are handled elsewhere */
354 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
355 return EXCPT_TRAP;
356
357 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
358 return EXCPT_ABORT;
359
360 /* Reserved exceptions will result in fault */
361 return EXCPT_FAULT;
362}
363
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200364static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200365 unsigned nr, bool has_error, u32 error_code,
366 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200367{
368 u32 prev_nr;
369 int class1, class2;
370
Avi Kivity3842d132010-07-27 12:30:24 +0300371 kvm_make_request(KVM_REQ_EVENT, vcpu);
372
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200373 if (!vcpu->arch.exception.pending) {
374 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200375 if (has_error && !is_protmode(vcpu))
376 has_error = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200377 vcpu->arch.exception.pending = true;
378 vcpu->arch.exception.has_error_code = has_error;
379 vcpu->arch.exception.nr = nr;
380 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200381 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200382 return;
383 }
384
385 /* to check exception */
386 prev_nr = vcpu->arch.exception.nr;
387 if (prev_nr == DF_VECTOR) {
388 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300389 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200390 return;
391 }
392 class1 = exception_class(prev_nr);
393 class2 = exception_class(nr);
394 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
395 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
396 /* generate double fault per SDM Table 5-5 */
397 vcpu->arch.exception.pending = true;
398 vcpu->arch.exception.has_error_code = true;
399 vcpu->arch.exception.nr = DF_VECTOR;
400 vcpu->arch.exception.error_code = 0;
401 } else
402 /* replace previous exception with a new one in a hope
403 that instruction re-execution will regenerate lost
404 exception */
405 goto queue;
406}
407
Avi Kivity298101d2007-11-25 13:41:11 +0200408void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
409{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200410 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200411}
412EXPORT_SYMBOL_GPL(kvm_queue_exception);
413
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200414void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
415{
416 kvm_multiple_exception(vcpu, nr, false, 0, true);
417}
418EXPORT_SYMBOL_GPL(kvm_requeue_exception);
419
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100420void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200421{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100422 if (err)
423 kvm_inject_gp(vcpu, 0);
424 else
425 kvm_x86_ops->skip_emulated_instruction(vcpu);
426}
427EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200428
Avi Kivity6389ee92010-11-29 16:12:30 +0200429void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200430{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200431 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200432 vcpu->arch.cr2 = fault->address;
433 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200434}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300435EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200436
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200437static bool kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200438{
Avi Kivity6389ee92010-11-29 16:12:30 +0200439 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
440 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200441 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200442 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200443
444 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200445}
446
Sheng Yang3419ffc2008-05-15 09:52:48 +0800447void kvm_inject_nmi(struct kvm_vcpu *vcpu)
448{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300449 atomic_inc(&vcpu->arch.nmi_queued);
450 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800451}
452EXPORT_SYMBOL_GPL(kvm_inject_nmi);
453
Avi Kivity298101d2007-11-25 13:41:11 +0200454void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
455{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200456 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200457}
458EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
459
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200460void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
461{
462 kvm_multiple_exception(vcpu, nr, true, error_code, true);
463}
464EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
465
Carsten Ottea03490e2007-10-29 16:09:35 +0100466/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300467 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
468 * a #GP and return false.
469 */
470bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200471{
Avi Kivity0a79b002009-09-01 12:03:25 +0300472 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
473 return true;
474 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
475 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100476}
Avi Kivity0a79b002009-09-01 12:03:25 +0300477EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100478
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300479bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
480{
481 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
482 return true;
483
484 kvm_queue_exception(vcpu, UD_VECTOR);
485 return false;
486}
487EXPORT_SYMBOL_GPL(kvm_require_dr);
488
Carsten Ottea03490e2007-10-29 16:09:35 +0100489/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200490 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200491 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200492 * can read from guest physical or from the guest's guest physical memory.
493 */
494int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
495 gfn_t ngfn, void *data, int offset, int len,
496 u32 access)
497{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200498 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200499 gfn_t real_gfn;
500 gpa_t ngpa;
501
502 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200503 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200504 if (real_gfn == UNMAPPED_GVA)
505 return -EFAULT;
506
507 real_gfn = gpa_to_gfn(real_gfn);
508
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200509 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200510}
511EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
512
Fengguang Wu69b00492015-01-19 22:33:39 +0800513static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200514 void *data, int offset, int len, u32 access)
515{
516 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
517 data, offset, len, access);
518}
519
Joerg Roedelec92fe42010-09-10 17:30:51 +0200520/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100521 * Load the pae pdptrs. Return true is they are all valid.
522 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200523int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100524{
525 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
526 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
527 int i;
528 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200529 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100530
Joerg Roedelff03a072010-09-10 17:30:57 +0200531 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
532 offset * sizeof(u64), sizeof(pdpte),
533 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100534 if (ret < 0) {
535 ret = 0;
536 goto out;
537 }
538 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Avi Kivity43a37952009-06-10 14:12:05 +0300539 if (is_present_gpte(pdpte[i]) &&
Xiao Guangronga0a64f52015-08-05 12:04:21 +0800540 (pdpte[i] &
541 vcpu->arch.mmu.guest_rsvd_check.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100542 ret = 0;
543 goto out;
544 }
545 }
546 ret = 1;
547
Joerg Roedelff03a072010-09-10 17:30:57 +0200548 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300549 __set_bit(VCPU_EXREG_PDPTR,
550 (unsigned long *)&vcpu->arch.regs_avail);
551 __set_bit(VCPU_EXREG_PDPTR,
552 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100553out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100554
555 return ret;
556}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100557EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100558
Avi Kivityd835dfe2007-11-21 02:57:59 +0200559static bool pdptrs_changed(struct kvm_vcpu *vcpu)
560{
Joerg Roedelff03a072010-09-10 17:30:57 +0200561 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200562 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200563 int offset;
564 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200565 int r;
566
567 if (is_long_mode(vcpu) || !is_pae(vcpu))
568 return false;
569
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300570 if (!test_bit(VCPU_EXREG_PDPTR,
571 (unsigned long *)&vcpu->arch.regs_avail))
572 return true;
573
Avi Kivity9f8fe502010-12-05 17:30:00 +0200574 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
575 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200576 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
577 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200578 if (r < 0)
579 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200580 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200581out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200582
583 return changed;
584}
585
Avi Kivity49a9b072010-06-10 17:02:14 +0300586int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100587{
Sheng Yangaad82702010-05-12 16:40:42 +0800588 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800589 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800590
Avi Kivityf9a48e62010-01-06 19:10:22 +0200591 cr0 |= X86_CR0_ET;
592
Gleb Natapovab344822010-01-21 15:28:46 +0200593#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300594 if (cr0 & 0xffffffff00000000UL)
595 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200596#endif
597
598 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100599
Gleb Natapov0f122442010-04-28 19:15:31 +0300600 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
601 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100602
Gleb Natapov0f122442010-04-28 19:15:31 +0300603 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
604 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100605
606 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
607#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200608 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100609 int cs_db, cs_l;
610
Gleb Natapov0f122442010-04-28 19:15:31 +0300611 if (!is_pae(vcpu))
612 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100613 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300614 if (cs_l)
615 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100616 } else
617#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200618 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200619 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300620 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100621 }
622
Mao, Junjiead756a12012-07-02 01:18:48 +0000623 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
624 return 1;
625
Carsten Ottea03490e2007-10-29 16:09:35 +0100626 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100627
Lai Jiangshand170c412011-02-21 11:21:30 +0800628 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800629 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800630 kvm_async_pf_hash_reset(vcpu);
631 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800632
Sheng Yangaad82702010-05-12 16:40:42 +0800633 if ((cr0 ^ old_cr0) & update_bits)
634 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800635
Laszlo Ersek879ae182015-11-04 12:54:41 +0100636 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
637 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
638 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800639 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
640
Gleb Natapov0f122442010-04-28 19:15:31 +0300641 return 0;
642}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200643EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100644
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200645void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100646{
Avi Kivity49a9b072010-06-10 17:02:14 +0300647 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100648}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200649EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100650
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300651static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
652{
653 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
654 !vcpu->guest_xcr0_loaded) {
655 /* kvm_set_xcr() also depends on this */
656 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
657 vcpu->guest_xcr0_loaded = 1;
658 }
659}
660
661static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
662{
663 if (vcpu->guest_xcr0_loaded) {
664 if (vcpu->arch.xcr0 != host_xcr0)
665 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
666 vcpu->guest_xcr0_loaded = 0;
667 }
668}
669
Fengguang Wu69b00492015-01-19 22:33:39 +0800670static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800671{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000672 u64 xcr0 = xcr;
673 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200674 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800675
676 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
677 if (index != XCR_XFEATURE_ENABLED_MASK)
678 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700679 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800680 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700681 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800682 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200683
684 /*
685 * Do not allow the guest to set bits that we do not support
686 * saving. However, xcr0 bit 0 is always set, even if the
687 * emulated CPU does not support XSAVE (see fx_init).
688 */
Dave Hansend91cab72015-09-02 16:31:26 -0700689 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200690 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800691 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200692
Dave Hansend91cab72015-09-02 16:31:26 -0700693 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
694 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000695 return 1;
696
Dave Hansend91cab72015-09-02 16:31:26 -0700697 if (xcr0 & XFEATURE_MASK_AVX512) {
698 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800699 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700700 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800701 return 1;
702 }
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300703 kvm_put_guest_xcr0(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800704 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000705
Dave Hansend91cab72015-09-02 16:31:26 -0700706 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000707 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800708 return 0;
709}
710
711int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
712{
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000713 if (kvm_x86_ops->get_cpl(vcpu) != 0 ||
714 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800715 kvm_inject_gp(vcpu, 0);
716 return 1;
717 }
718 return 0;
719}
720EXPORT_SYMBOL_GPL(kvm_set_xcr);
721
Avi Kivitya83b29c2010-06-10 17:02:15 +0300722int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100723{
Avi Kivityfc78f512009-12-07 12:16:48 +0200724 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800725 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
726 X86_CR4_SMEP | X86_CR4_SMAP;
727
Gleb Natapov0f122442010-04-28 19:15:31 +0300728 if (cr4 & CR4_RESERVED_BITS)
729 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100730
Dexuan Cui2acf9232010-06-10 11:27:12 +0800731 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
732 return 1;
733
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800734 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
735 return 1;
736
Feng Wu97ec8c02014-04-01 17:46:34 +0800737 if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP))
738 return 1;
739
H. Peter Anvinafcbf132013-04-27 16:37:47 -0700740 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE))
Yang, Wei74dc2b42011-06-14 20:10:18 +0800741 return 1;
742
Carsten Ottea03490e2007-10-29 16:09:35 +0100743 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300744 if (!(cr4 & X86_CR4_PAE))
745 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300746 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
747 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200748 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
749 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300750 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100751
Mao, Junjiead756a12012-07-02 01:18:48 +0000752 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
753 if (!guest_cpuid_has_pcid(vcpu))
754 return 1;
755
756 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
757 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
758 return 1;
759 }
760
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300761 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300762 return 1;
763
Mao, Junjiead756a12012-07-02 01:18:48 +0000764 if (((cr4 ^ old_cr4) & pdptr_bits) ||
765 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800766 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300767
Dexuan Cui2acf9232010-06-10 11:27:12 +0800768 if ((cr4 ^ old_cr4) & X86_CR4_OSXSAVE)
Avi Kivity00b27a32011-11-23 16:30:32 +0200769 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800770
Gleb Natapov0f122442010-04-28 19:15:31 +0300771 return 0;
772}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200773EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100774
Avi Kivity23902182010-06-10 17:02:16 +0300775int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100776{
Paolo Bonziniac146232014-11-10 13:53:25 +0100777#ifdef CONFIG_X86_64
Nadav Amit9d88fca2014-11-02 11:54:52 +0200778 cr3 &= ~CR3_PCID_INVD;
Paolo Bonziniac146232014-11-10 13:53:25 +0100779#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +0200780
Avi Kivity9f8fe502010-12-05 17:30:00 +0200781 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300782 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -0400783 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300784 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200785 }
786
Carsten Ottea03490e2007-10-29 16:09:35 +0100787 if (is_long_mode(vcpu)) {
Jan Kiszkad9f89b82014-05-10 09:24:34 +0200788 if (cr3 & CR3_L_MODE_RESERVED_BITS)
789 return 1;
790 } else if (is_pae(vcpu) && is_paging(vcpu) &&
791 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +0300792 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100793
Gleb Natapov0f122442010-04-28 19:15:31 +0300794 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200795 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Paolo Bonzinid8d173d2013-10-02 16:56:11 +0200796 kvm_mmu_new_cr3(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300797 return 0;
798}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200799EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100800
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100801int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100802{
Gleb Natapov0f122442010-04-28 19:15:31 +0300803 if (cr8 & CR8_RESERVED_BITS)
804 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +0200805 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100806 kvm_lapic_set_tpr(vcpu, cr8);
807 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800808 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300809 return 0;
810}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200811EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100812
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200813unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100814{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200815 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100816 return kvm_lapic_get_cr8(vcpu);
817 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800818 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100819}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200820EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100821
Nadav Amitae561ed2015-04-02 03:10:37 +0300822static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
823{
824 int i;
825
826 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
827 for (i = 0; i < KVM_NR_DB_REGS; i++)
828 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
829 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
830 }
831}
832
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100833static void kvm_update_dr6(struct kvm_vcpu *vcpu)
834{
835 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
836 kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6);
837}
838
Jan Kiszkac8639012012-09-21 05:42:55 +0200839static void kvm_update_dr7(struct kvm_vcpu *vcpu)
840{
841 unsigned long dr7;
842
843 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
844 dr7 = vcpu->arch.guest_debug_dr7;
845 else
846 dr7 = vcpu->arch.dr7;
847 kvm_x86_ops->set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +0100848 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
849 if (dr7 & DR7_BP_EN_MASK)
850 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +0200851}
852
Nadav Amit6f43ed02014-07-15 17:37:46 +0300853static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
854{
855 u64 fixed = DR6_FIXED_1;
856
857 if (!guest_cpuid_has_rtm(vcpu))
858 fixed |= DR6_RTM;
859 return fixed;
860}
861
Gleb Natapov338dbc92010-04-28 19:15:32 +0300862static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300863{
864 switch (dr) {
865 case 0 ... 3:
866 vcpu->arch.db[dr] = val;
867 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
868 vcpu->arch.eff_db[dr] = val;
869 break;
870 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300871 /* fall through */
872 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300873 if (val & 0xffffffff00000000ULL)
874 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +0300875 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100876 kvm_update_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300877 break;
878 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300879 /* fall through */
880 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300881 if (val & 0xffffffff00000000ULL)
882 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300883 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +0200884 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300885 break;
886 }
887
888 return 0;
889}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300890
891int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
892{
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300893 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +0300894 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300895 return 1;
896 }
897 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +0300898}
Gleb Natapov020df072010-04-13 10:05:23 +0300899EXPORT_SYMBOL_GPL(kvm_set_dr);
900
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300901int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300902{
903 switch (dr) {
904 case 0 ... 3:
905 *val = vcpu->arch.db[dr];
906 break;
907 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300908 /* fall through */
909 case 6:
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100910 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
911 *val = vcpu->arch.dr6;
912 else
913 *val = kvm_x86_ops->get_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300914 break;
915 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300916 /* fall through */
917 default: /* 7 */
918 *val = vcpu->arch.dr7;
919 break;
920 }
Gleb Natapov338dbc92010-04-28 19:15:32 +0300921 return 0;
922}
Gleb Natapov020df072010-04-13 10:05:23 +0300923EXPORT_SYMBOL_GPL(kvm_get_dr);
924
Avi Kivity022cd0e2011-11-10 14:57:23 +0200925bool kvm_rdpmc(struct kvm_vcpu *vcpu)
926{
927 u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
928 u64 data;
929 int err;
930
Wei Huangc6702c92015-06-19 13:44:45 +0200931 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +0200932 if (err)
933 return err;
934 kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data);
935 kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32);
936 return err;
937}
938EXPORT_SYMBOL_GPL(kvm_rdpmc);
939
Carsten Otte043405e2007-10-10 17:16:19 +0200940/*
941 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
942 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
943 *
944 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400945 * capabilities of the host cpu. This capabilities test skips MSRs that are
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200946 * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs
947 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +0200948 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400949
Carsten Otte043405e2007-10-10 17:16:19 +0200950static u32 msrs_to_save[] = {
951 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400952 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200953#ifdef CONFIG_X86_64
954 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
955#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800956 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +0100957 MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Carsten Otte043405e2007-10-10 17:16:19 +0200958};
959
960static unsigned num_msrs_to_save;
961
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200962static u32 emulated_msrs[] = {
963 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
964 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
965 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
966 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Andrey Smetanine7d95132015-07-03 15:01:37 +0300967 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
968 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +0300969 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +0300970 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300971 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300972 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +0300973 HV_X64_MSR_STIMER0_CONFIG,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200974 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
975 MSR_KVM_PV_EOI_EN,
976
Will Auldba904632012-11-29 12:42:50 -0800977 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800978 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +0200979 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +0300980 MSR_IA32_MCG_STATUS,
981 MSR_IA32_MCG_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +0200982 MSR_IA32_SMBASE,
Carsten Otte043405e2007-10-10 17:16:19 +0200983};
984
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200985static unsigned num_emulated_msrs;
986
Jan Kiszka384bb782013-04-20 10:52:36 +0200987bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +0100988{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200989 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +0200990 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +0100991
Alexander Graf1b2fd702009-02-02 16:23:51 +0100992 if (efer & EFER_FFXSR) {
993 struct kvm_cpuid_entry2 *feat;
994
995 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200996 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
Jan Kiszka384bb782013-04-20 10:52:36 +0200997 return false;
Alexander Graf1b2fd702009-02-02 16:23:51 +0100998 }
999
Alexander Grafd8017472008-11-25 20:17:11 +01001000 if (efer & EFER_SVME) {
1001 struct kvm_cpuid_entry2 *feat;
1002
1003 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001004 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001005 return false;
Alexander Grafd8017472008-11-25 20:17:11 +01001006 }
1007
Jan Kiszka384bb782013-04-20 10:52:36 +02001008 return true;
1009}
1010EXPORT_SYMBOL_GPL(kvm_valid_efer);
1011
1012static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
1013{
1014 u64 old_efer = vcpu->arch.efer;
1015
1016 if (!kvm_valid_efer(vcpu, efer))
1017 return 1;
1018
1019 if (is_paging(vcpu)
1020 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1021 return 1;
1022
Carsten Otte15c4a642007-10-30 18:44:17 +01001023 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001024 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001025
Sheng Yanga3d204e2010-05-12 16:40:40 +08001026 kvm_x86_ops->set_efer(vcpu, efer);
1027
Sheng Yangaad82702010-05-12 16:40:42 +08001028 /* Update reserved bits */
1029 if ((efer ^ old_efer) & EFER_NX)
1030 kvm_mmu_reset_context(vcpu);
1031
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001032 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001033}
1034
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001035void kvm_enable_efer_bits(u64 mask)
1036{
1037 efer_reserved_bits &= ~mask;
1038}
1039EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1040
Carsten Otte15c4a642007-10-30 18:44:17 +01001041/*
1042 * Writes msr value into into the appropriate "register".
1043 * Returns 0 on success, non-0 otherwise.
1044 * Assumes vcpu_load() was already called.
1045 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001046int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01001047{
Nadav Amit854e8bb2014-09-16 03:24:05 +03001048 switch (msr->index) {
1049 case MSR_FS_BASE:
1050 case MSR_GS_BASE:
1051 case MSR_KERNEL_GS_BASE:
1052 case MSR_CSTAR:
1053 case MSR_LSTAR:
1054 if (is_noncanonical_address(msr->data))
1055 return 1;
1056 break;
1057 case MSR_IA32_SYSENTER_EIP:
1058 case MSR_IA32_SYSENTER_ESP:
1059 /*
1060 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1061 * non-canonical address is written on Intel but not on
1062 * AMD (which ignores the top 32-bits, because it does
1063 * not implement 64-bit SYSENTER).
1064 *
1065 * 64-bit code should hence be able to write a non-canonical
1066 * value on AMD. Making the address canonical ensures that
1067 * vmentry does not fail on Intel after writing a non-canonical
1068 * value, and that something deterministic happens if the guest
1069 * invokes 64-bit SYSENTER.
1070 */
1071 msr->data = get_canonical(msr->data);
1072 }
Will Auld8fe8ab42012-11-29 12:42:12 -08001073 return kvm_x86_ops->set_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001074}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001075EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001076
Carsten Otte313a3dc2007-10-11 19:16:52 +02001077/*
1078 * Adapt set_msr() to msr_io()'s calling convention
1079 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001080static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1081{
1082 struct msr_data msr;
1083 int r;
1084
1085 msr.index = index;
1086 msr.host_initiated = true;
1087 r = kvm_get_msr(vcpu, &msr);
1088 if (r)
1089 return r;
1090
1091 *data = msr.data;
1092 return 0;
1093}
1094
Carsten Otte313a3dc2007-10-11 19:16:52 +02001095static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1096{
Will Auld8fe8ab42012-11-29 12:42:12 -08001097 struct msr_data msr;
1098
1099 msr.data = *data;
1100 msr.index = index;
1101 msr.host_initiated = true;
1102 return kvm_set_msr(vcpu, &msr);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001103}
1104
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001105#ifdef CONFIG_X86_64
1106struct pvclock_gtod_data {
1107 seqcount_t seq;
1108
1109 struct { /* extract of a clocksource struct */
1110 int vclock_mode;
1111 cycle_t cycle_last;
1112 cycle_t mask;
1113 u32 mult;
1114 u32 shift;
1115 } clock;
1116
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001117 u64 boot_ns;
1118 u64 nsec_base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001119};
1120
1121static struct pvclock_gtod_data pvclock_gtod_data;
1122
1123static void update_pvclock_gtod(struct timekeeper *tk)
1124{
1125 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001126 u64 boot_ns;
1127
Peter Zijlstra876e7882015-03-19 10:09:06 +01001128 boot_ns = ktime_to_ns(ktime_add(tk->tkr_mono.base, tk->offs_boot));
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001129
1130 write_seqcount_begin(&vdata->seq);
1131
1132 /* copy pvclock gtod data */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001133 vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode;
1134 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1135 vdata->clock.mask = tk->tkr_mono.mask;
1136 vdata->clock.mult = tk->tkr_mono.mult;
1137 vdata->clock.shift = tk->tkr_mono.shift;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001138
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001139 vdata->boot_ns = boot_ns;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001140 vdata->nsec_base = tk->tkr_mono.xtime_nsec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001141
1142 write_seqcount_end(&vdata->seq);
1143}
1144#endif
1145
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001146void kvm_set_pending_timer(struct kvm_vcpu *vcpu)
1147{
1148 /*
1149 * Note: KVM_REQ_PENDING_TIMER is implicitly checked in
1150 * vcpu_enter_guest. This function is only called from
1151 * the physical CPU that is running vcpu.
1152 */
1153 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1154}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001155
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001156static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1157{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001158 int version;
1159 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001160 struct pvclock_wall_clock wc;
Jason Wang923de3c2010-01-27 19:13:49 +08001161 struct timespec boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001162
1163 if (!wall_clock)
1164 return;
1165
Avi Kivity9ed3c442010-05-04 15:00:37 +03001166 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1167 if (r)
1168 return;
1169
1170 if (version & 1)
1171 ++version; /* first time write, random junk */
1172
1173 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001174
Nicholas Krause1dab1342015-12-30 13:08:46 -05001175 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
1176 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001177
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001178 /*
1179 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001180 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001181 * wall clock specified here. guest system time equals host
1182 * system time for us, thus we must fill in host boot time here.
1183 */
Jason Wang923de3c2010-01-27 19:13:49 +08001184 getboottime(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001185
Bruce Rogers4b648662012-07-20 10:44:24 -06001186 if (kvm->arch.kvmclock_offset) {
1187 struct timespec ts = ns_to_timespec(kvm->arch.kvmclock_offset);
1188 boot = timespec_sub(boot, ts);
1189 }
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001190 wc.sec = boot.tv_sec;
1191 wc.nsec = boot.tv_nsec;
1192 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001193
1194 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1195
1196 version++;
1197 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001198}
1199
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001200static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1201{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01001202 do_shl32_div32(dividend, divisor);
1203 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001204}
1205
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001206static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001207 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001208{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001209 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001210 int32_t shift = 0;
1211 uint64_t tps64;
1212 uint32_t tps32;
1213
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001214 tps64 = base_hz;
1215 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02001216 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001217 tps64 >>= 1;
1218 shift--;
1219 }
1220
1221 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001222 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1223 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001224 scaled64 >>= 1;
1225 else
1226 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001227 shift++;
1228 }
1229
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001230 *pshift = shift;
1231 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001232
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001233 pr_debug("%s: base_hz %llu => %llu, shift %d, mul %u\n",
1234 __func__, base_hz, scaled_hz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001235}
1236
Marcelo Tosattid8281992012-11-27 23:29:01 -02001237#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001238static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001239#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001240
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001241static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001242static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001243
Joerg Roedel857e4092011-03-25 09:44:50 +01001244static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
Zachary Amsden759379d2010-08-19 22:07:25 -10001245{
Zachary Amsdencc578282012-02-03 15:43:50 -02001246 return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
1247 vcpu->arch.virtual_tsc_shift);
Zachary Amsden759379d2010-08-19 22:07:25 -10001248}
1249
Zachary Amsdencc578282012-02-03 15:43:50 -02001250static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001251{
Zachary Amsdencc578282012-02-03 15:43:50 -02001252 u64 v = (u64)khz * (1000000 + ppm);
1253 do_div(v, 1000000);
1254 return v;
1255}
1256
Haozhong Zhang381d5852015-10-20 15:39:04 +08001257static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
1258{
1259 u64 ratio;
1260
1261 /* Guest TSC same frequency as host TSC? */
1262 if (!scale) {
1263 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
1264 return 0;
1265 }
1266
1267 /* TSC scaling supported? */
1268 if (!kvm_has_tsc_control) {
1269 if (user_tsc_khz > tsc_khz) {
1270 vcpu->arch.tsc_catchup = 1;
1271 vcpu->arch.tsc_always_catchup = 1;
1272 return 0;
1273 } else {
1274 WARN(1, "user requested TSC rate below hardware speed\n");
1275 return -1;
1276 }
1277 }
1278
1279 /* TSC scaling required - calculate ratio */
1280 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
1281 user_tsc_khz, tsc_khz);
1282
1283 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
1284 WARN_ONCE(1, "Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
1285 user_tsc_khz);
1286 return -1;
1287 }
1288
1289 vcpu->arch.tsc_scaling_ratio = ratio;
1290 return 0;
1291}
1292
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001293static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02001294{
1295 u32 thresh_lo, thresh_hi;
1296 int use_scaling = 0;
1297
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001298 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001299 if (user_tsc_khz == 0) {
Haozhong Zhangad721882015-10-20 15:39:02 +08001300 /* set tsc_scaling_ratio to a safe value */
1301 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
Haozhong Zhang381d5852015-10-20 15:39:04 +08001302 return -1;
Haozhong Zhangad721882015-10-20 15:39:02 +08001303 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001304
Zachary Amsdenc2855452010-09-18 14:38:15 -10001305 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001306 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02001307 &vcpu->arch.virtual_tsc_shift,
1308 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001309 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02001310
1311 /*
1312 * Compute the variation in TSC rate which is acceptable
1313 * within the range of tolerance and decide if the
1314 * rate being applied is within that bounds of the hardware
1315 * rate. If so, no scaling or compensation need be done.
1316 */
1317 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1318 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001319 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
1320 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 -02001321 use_scaling = 1;
1322 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001323 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001324}
1325
1326static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1327{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001328 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001329 vcpu->arch.virtual_tsc_mult,
1330 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001331 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001332 return tsc;
1333}
1334
Fengguang Wu69b00492015-01-19 22:33:39 +08001335static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001336{
1337#ifdef CONFIG_X86_64
1338 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001339 struct kvm_arch *ka = &vcpu->kvm->arch;
1340 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1341
1342 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1343 atomic_read(&vcpu->kvm->online_vcpus));
1344
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001345 /*
1346 * Once the masterclock is enabled, always perform request in
1347 * order to update it.
1348 *
1349 * In order to enable masterclock, the host clocksource must be TSC
1350 * and the vcpus need to have matched TSCs. When that happens,
1351 * perform request to enable masterclock.
1352 */
1353 if (ka->use_master_clock ||
1354 (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001355 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1356
1357 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1358 atomic_read(&vcpu->kvm->online_vcpus),
1359 ka->use_master_clock, gtod->clock.vclock_mode);
1360#endif
1361}
1362
Will Auldba904632012-11-29 12:42:50 -08001363static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1364{
1365 u64 curr_offset = kvm_x86_ops->read_tsc_offset(vcpu);
1366 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1367}
1368
Haozhong Zhang35181e82015-10-20 15:39:03 +08001369/*
1370 * Multiply tsc by a fixed point number represented by ratio.
1371 *
1372 * The most significant 64-N bits (mult) of ratio represent the
1373 * integral part of the fixed point number; the remaining N bits
1374 * (frac) represent the fractional part, ie. ratio represents a fixed
1375 * point number (mult + frac * 2^(-N)).
1376 *
1377 * N equals to kvm_tsc_scaling_ratio_frac_bits.
1378 */
1379static inline u64 __scale_tsc(u64 ratio, u64 tsc)
1380{
1381 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
1382}
1383
1384u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
1385{
1386 u64 _tsc = tsc;
1387 u64 ratio = vcpu->arch.tsc_scaling_ratio;
1388
1389 if (ratio != kvm_default_tsc_scaling_ratio)
1390 _tsc = __scale_tsc(ratio, tsc);
1391
1392 return _tsc;
1393}
1394EXPORT_SYMBOL_GPL(kvm_scale_tsc);
1395
Haozhong Zhang07c14192015-10-20 15:39:05 +08001396static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1397{
1398 u64 tsc;
1399
1400 tsc = kvm_scale_tsc(vcpu, rdtsc());
1401
1402 return target_tsc - tsc;
1403}
1404
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001405u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
1406{
1407 return kvm_x86_ops->read_l1_tsc(vcpu, kvm_scale_tsc(vcpu, host_tsc));
1408}
1409EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
1410
Will Auld8fe8ab42012-11-29 12:42:12 -08001411void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10001412{
1413 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001414 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001415 unsigned long flags;
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001416 s64 usdiff;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001417 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001418 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08001419 u64 data = msr->data;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001420
Jan Kiszka038f8c12011-02-04 10:49:11 +01001421 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Haozhong Zhang07c14192015-10-20 15:39:05 +08001422 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001423 ns = get_kernel_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001424 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001425
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001426 if (vcpu->arch.virtual_tsc_khz) {
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001427 int faulted = 0;
1428
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001429 /* n.b - signed multiplication and division required */
1430 usdiff = data - kvm->arch.last_tsc_write;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001431#ifdef CONFIG_X86_64
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001432 usdiff = (usdiff * 1000) / vcpu->arch.virtual_tsc_khz;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001433#else
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001434 /* do_div() only does unsigned */
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001435 asm("1: idivl %[divisor]\n"
1436 "2: xor %%edx, %%edx\n"
1437 " movl $0, %[faulted]\n"
1438 "3:\n"
1439 ".section .fixup,\"ax\"\n"
1440 "4: movl $1, %[faulted]\n"
1441 " jmp 3b\n"
1442 ".previous\n"
1443
1444 _ASM_EXTABLE(1b, 4b)
1445
1446 : "=A"(usdiff), [faulted] "=r" (faulted)
1447 : "A"(usdiff * 1000), [divisor] "rm"(vcpu->arch.virtual_tsc_khz));
1448
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001449#endif
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001450 do_div(elapsed, 1000);
1451 usdiff -= elapsed;
1452 if (usdiff < 0)
1453 usdiff = -usdiff;
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001454
1455 /* idivl overflow => difference is larger than USEC_PER_SEC */
1456 if (faulted)
1457 usdiff = USEC_PER_SEC;
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001458 } else
1459 usdiff = USEC_PER_SEC; /* disable TSC match window below */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001460
1461 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001462 * Special case: TSC write with a small delta (1 second) of virtual
1463 * cycle time against real time is interpreted as an attempt to
1464 * synchronize the CPU.
1465 *
1466 * For a reliable TSC, we can match TSC offsets, and for an unstable
1467 * TSC, we add elapsed time in this computation. We could let the
1468 * compensation code attempt to catch up if we fall behind, but
1469 * it's better to try to match offsets from the beginning.
1470 */
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001471 if (usdiff < USEC_PER_SEC &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001472 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001473 if (!check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02001474 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001475 pr_debug("kvm: matched tsc offset for %llu\n", data);
1476 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001477 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001478 data += delta;
Haozhong Zhang07c14192015-10-20 15:39:05 +08001479 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001480 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001481 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001482 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001483 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001484 } else {
1485 /*
1486 * We split periods of matched TSC writes into generations.
1487 * For each generation, we track the original measured
1488 * nanosecond time, offset, and write, so if TSCs are in
1489 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08001490 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02001491 *
1492 * These values are tracked in kvm->arch.cur_xxx variables.
1493 */
1494 kvm->arch.cur_tsc_generation++;
1495 kvm->arch.cur_tsc_nsec = ns;
1496 kvm->arch.cur_tsc_write = data;
1497 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001498 matched = false;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001499 pr_debug("kvm: new tsc generation %llu, clock %llu\n",
Zachary Amsdene26101b2012-02-03 15:43:57 -02001500 kvm->arch.cur_tsc_generation, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001501 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02001502
1503 /*
1504 * We also track th most recent recorded KHZ, write and time to
1505 * allow the matching interval to be extended at each write.
1506 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001507 kvm->arch.last_tsc_nsec = ns;
1508 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001509 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001510
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001511 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001512
1513 /* Keep track of which generation this VCPU has synchronized to */
1514 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
1515 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
1516 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
1517
Will Auldba904632012-11-29 12:42:50 -08001518 if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated)
1519 update_ia32_tsc_adjust_msr(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001520 kvm_x86_ops->write_tsc_offset(vcpu, offset);
1521 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001522
1523 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001524 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001525 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001526 } else if (!already_matched) {
1527 kvm->arch.nr_vcpus_matched_tsc++;
1528 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001529
1530 kvm_track_tsc_matching(vcpu);
1531 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001532}
Zachary Amsdene26101b2012-02-03 15:43:57 -02001533
Zachary Amsden99e3e302010-08-19 22:07:17 -10001534EXPORT_SYMBOL_GPL(kvm_write_tsc);
1535
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001536static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
1537 s64 adjustment)
1538{
1539 kvm_x86_ops->adjust_tsc_offset_guest(vcpu, adjustment);
1540}
1541
1542static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
1543{
1544 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
1545 WARN_ON(adjustment < 0);
1546 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
1547 kvm_x86_ops->adjust_tsc_offset_guest(vcpu, adjustment);
1548}
1549
Marcelo Tosattid8281992012-11-27 23:29:01 -02001550#ifdef CONFIG_X86_64
1551
1552static cycle_t read_tsc(void)
1553{
Andy Lutomirski03b97302015-06-25 18:44:08 +02001554 cycle_t ret = (cycle_t)rdtsc_ordered();
1555 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001556
1557 if (likely(ret >= last))
1558 return ret;
1559
1560 /*
1561 * GCC likes to generate cmov here, but this branch is extremely
1562 * predictable (it's just a funciton of time and the likely is
1563 * very likely) and there's a data dependence, so force GCC
1564 * to generate a branch instead. I don't barrier() because
1565 * we don't actually need a barrier, and if this function
1566 * ever gets inlined it will generate worse code.
1567 */
1568 asm volatile ("");
1569 return last;
1570}
1571
1572static inline u64 vgettsc(cycle_t *cycle_now)
1573{
1574 long v;
1575 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1576
1577 *cycle_now = read_tsc();
1578
1579 v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask;
1580 return v * gtod->clock.mult;
1581}
1582
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001583static int do_monotonic_boot(s64 *t, cycle_t *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001584{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001585 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001586 unsigned long seq;
1587 int mode;
1588 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001589
Marcelo Tosattid8281992012-11-27 23:29:01 -02001590 do {
1591 seq = read_seqcount_begin(&gtod->seq);
1592 mode = gtod->clock.vclock_mode;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001593 ns = gtod->nsec_base;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001594 ns += vgettsc(cycle_now);
1595 ns >>= gtod->clock.shift;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001596 ns += gtod->boot_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001597 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001598 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001599
1600 return mode;
1601}
1602
1603/* returns true if host is using tsc clocksource */
1604static bool kvm_get_time_and_clockread(s64 *kernel_ns, cycle_t *cycle_now)
1605{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001606 /* checked again under seqlock below */
1607 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1608 return false;
1609
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001610 return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001611}
1612#endif
1613
1614/*
1615 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001616 * Assuming a stable TSC across physical CPUS, and a stable TSC
1617 * across virtual CPUs, the following condition is possible.
1618 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02001619 * CPUs at the next numbered event.
1620 *
1621 * "timespecX" represents host monotonic time. "tscX" represents
1622 * RDTSC value.
1623 *
1624 * VCPU0 on CPU0 | VCPU1 on CPU1
1625 *
1626 * 1. read timespec0,tsc0
1627 * 2. | timespec1 = timespec0 + N
1628 * | tsc1 = tsc0 + M
1629 * 3. transition to guest | transition to guest
1630 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
1631 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
1632 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
1633 *
1634 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
1635 *
1636 * - ret0 < ret1
1637 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
1638 * ...
1639 * - 0 < N - M => M < N
1640 *
1641 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
1642 * always the case (the difference between two distinct xtime instances
1643 * might be smaller then the difference between corresponding TSC reads,
1644 * when updating guest vcpus pvclock areas).
1645 *
1646 * To avoid that problem, do not allow visibility of distinct
1647 * system_timestamp/tsc_timestamp values simultaneously: use a master
1648 * copy of host monotonic time values. Update that master copy
1649 * in lockstep.
1650 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001651 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02001652 *
1653 */
1654
1655static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
1656{
1657#ifdef CONFIG_X86_64
1658 struct kvm_arch *ka = &kvm->arch;
1659 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001660 bool host_tsc_clocksource, vcpus_matched;
1661
1662 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1663 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02001664
1665 /*
1666 * If the host uses TSC clock, then passthrough TSC as stable
1667 * to the guest.
1668 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001669 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02001670 &ka->master_kernel_ns,
1671 &ka->master_cycle_now);
1672
Marcelo Tosatti16a96022014-05-14 12:43:24 -03001673 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Marcelo Tosatti54750f22015-01-20 15:54:52 -02001674 && !backwards_tsc_observed
1675 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001676
Marcelo Tosattid8281992012-11-27 23:29:01 -02001677 if (ka->use_master_clock)
1678 atomic_set(&kvm_guest_has_master_clock, 1);
1679
1680 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001681 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
1682 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001683#endif
1684}
1685
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01001686void kvm_make_mclock_inprogress_request(struct kvm *kvm)
1687{
1688 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
1689}
1690
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001691static void kvm_gen_update_masterclock(struct kvm *kvm)
1692{
1693#ifdef CONFIG_X86_64
1694 int i;
1695 struct kvm_vcpu *vcpu;
1696 struct kvm_arch *ka = &kvm->arch;
1697
1698 spin_lock(&ka->pvclock_gtod_sync_lock);
1699 kvm_make_mclock_inprogress_request(kvm);
1700 /* no guest entries from this point */
1701 pvclock_update_vm_gtod_copy(kvm);
1702
1703 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001704 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001705
1706 /* guest entries allowed */
1707 kvm_for_each_vcpu(i, vcpu, kvm)
1708 clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests);
1709
1710 spin_unlock(&ka->pvclock_gtod_sync_lock);
1711#endif
1712}
1713
Zachary Amsden34c238a2010-09-18 14:38:14 -10001714static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001715{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001716 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001717 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001718 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02001719 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001720 u64 tsc_timestamp, host_tsc;
Andy Honig0b794592013-02-20 14:48:10 -08001721 struct pvclock_vcpu_time_info guest_hv_clock;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001722 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001723 bool use_master_clock;
1724
1725 kernel_ns = 0;
1726 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001727
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001728 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02001729 * If the host uses TSC clock, then passthrough TSC as stable
1730 * to the guest.
1731 */
1732 spin_lock(&ka->pvclock_gtod_sync_lock);
1733 use_master_clock = ka->use_master_clock;
1734 if (use_master_clock) {
1735 host_tsc = ka->master_cycle_now;
1736 kernel_ns = ka->master_kernel_ns;
1737 }
1738 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001739
1740 /* Keep irq disabled to prevent changes to the clock */
1741 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001742 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
1743 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001744 local_irq_restore(flags);
1745 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
1746 return 1;
1747 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02001748 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02001749 host_tsc = rdtsc();
Marcelo Tosattid8281992012-11-27 23:29:01 -02001750 kernel_ns = get_kernel_ns();
1751 }
1752
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001753 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001754
1755 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001756 * We may have to catch up the TSC to match elapsed wall clock
1757 * time for two reasons, even if kvmclock is used.
1758 * 1) CPU could have been running below the maximum TSC rate
1759 * 2) Broken TSC compensation resets the base at each VCPU
1760 * entry to avoid unknown leaps of TSC even when running
1761 * again on the same CPU. This may cause apparent elapsed
1762 * time to disappear, and the guest to stand still or run
1763 * very slowly.
1764 */
1765 if (vcpu->tsc_catchup) {
1766 u64 tsc = compute_guest_tsc(v, kernel_ns);
1767 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02001768 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001769 tsc_timestamp = tsc;
1770 }
1771 }
1772
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001773 local_irq_restore(flags);
1774
Andy Honig0b794592013-02-20 14:48:10 -08001775 if (!vcpu->pv_time_enabled)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001776 return 0;
1777
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001778 if (kvm_has_tsc_control)
1779 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
1780
1781 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001782 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001783 &vcpu->hv_clock.tsc_shift,
1784 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001785 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001786 }
1787
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001788 /* With all the info we got, fill in the values */
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001789 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001790 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10001791 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001792
Owen Hofmann09a0c3f2014-11-03 16:57:18 -08001793 if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time,
1794 &guest_hv_clock, sizeof(guest_hv_clock))))
1795 return 0;
1796
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001797 /* This VCPU is paused, but it's legal for a guest to read another
1798 * VCPU's kvmclock, so we really have to follow the specification where
1799 * it says that version is odd if data is being modified, and even after
1800 * it is consistent.
1801 *
1802 * Version field updates must be kept separate. This is because
1803 * kvm_write_guest_cached might use a "rep movs" instruction, and
1804 * writes within a string instruction are weakly ordered. So there
1805 * are three writes overall.
1806 *
1807 * As a small optimization, only write the version field in the first
1808 * and third write. The vcpu->pv_time cache is still valid, because the
1809 * version field is the first in the struct.
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001810 */
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001811 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
1812
1813 vcpu->hv_clock.version = guest_hv_clock.version + 1;
1814 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1815 &vcpu->hv_clock,
1816 sizeof(vcpu->hv_clock.version));
1817
1818 smp_wmb();
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001819
1820 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
Andy Honig0b794592013-02-20 14:48:10 -08001821 pvclock_flags = (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001822
1823 if (vcpu->pvclock_set_guest_stopped_request) {
1824 pvclock_flags |= PVCLOCK_GUEST_STOPPED;
1825 vcpu->pvclock_set_guest_stopped_request = false;
1826 }
1827
Marcelo Tosattid8281992012-11-27 23:29:01 -02001828 /* If the host uses TSC clocksource, then it is stable */
1829 if (use_master_clock)
1830 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
1831
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001832 vcpu->hv_clock.flags = pvclock_flags;
1833
David Matlackce1a5e62014-11-05 11:46:42 -08001834 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
1835
Andy Honig0b794592013-02-20 14:48:10 -08001836 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1837 &vcpu->hv_clock,
1838 sizeof(vcpu->hv_clock));
Radim Krčmář5dca0d92015-03-25 12:08:14 +01001839
1840 smp_wmb();
1841
1842 vcpu->hv_clock.version++;
1843 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1844 &vcpu->hv_clock,
1845 sizeof(vcpu->hv_clock.version));
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001846 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001847}
1848
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001849/*
1850 * kvmclock updates which are isolated to a given vcpu, such as
1851 * vcpu->cpu migration, should not allow system_timestamp from
1852 * the rest of the vcpus to remain static. Otherwise ntp frequency
1853 * correction applies to one vcpu's system_timestamp but not
1854 * the others.
1855 *
1856 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01001857 * We need to rate-limit these requests though, as they can
1858 * considerably slow guests that have a large number of vcpus.
1859 * The time for a remote vcpu to update its kvmclock is bound
1860 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001861 */
1862
Andrew Jones7e44e442014-02-28 12:52:54 +01001863#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
1864
1865static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001866{
1867 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01001868 struct delayed_work *dwork = to_delayed_work(work);
1869 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1870 kvmclock_update_work);
1871 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001872 struct kvm_vcpu *vcpu;
1873
1874 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001875 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001876 kvm_vcpu_kick(vcpu);
1877 }
1878}
1879
Andrew Jones7e44e442014-02-28 12:52:54 +01001880static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
1881{
1882 struct kvm *kvm = v->kvm;
1883
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001884 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01001885 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
1886 KVMCLOCK_UPDATE_DELAY);
1887}
1888
Andrew Jones332967a2014-02-28 12:52:55 +01001889#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
1890
1891static void kvmclock_sync_fn(struct work_struct *work)
1892{
1893 struct delayed_work *dwork = to_delayed_work(work);
1894 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1895 kvmclock_sync_work);
1896 struct kvm *kvm = container_of(ka, struct kvm, arch);
1897
Marcelo Tosatti630994b2015-05-12 22:42:04 -03001898 if (!kvmclock_periodic_sync)
1899 return;
1900
Andrew Jones332967a2014-02-28 12:52:55 +01001901 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
1902 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
1903 KVMCLOCK_SYNC_PERIOD);
1904}
1905
Huang Ying890ca9a2009-05-11 16:48:15 +08001906static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1907{
1908 u64 mcg_cap = vcpu->arch.mcg_cap;
1909 unsigned bank_num = mcg_cap & 0xff;
1910
1911 switch (msr) {
1912 case MSR_IA32_MCG_STATUS:
1913 vcpu->arch.mcg_status = data;
1914 break;
1915 case MSR_IA32_MCG_CTL:
1916 if (!(mcg_cap & MCG_CTL_P))
1917 return 1;
1918 if (data != 0 && data != ~(u64)0)
1919 return -1;
1920 vcpu->arch.mcg_ctl = data;
1921 break;
1922 default:
1923 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08001924 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08001925 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01001926 /* only 0 or all 1s can be written to IA32_MCi_CTL
1927 * some Linux kernels though clear bit 10 in bank 4 to
1928 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
1929 * this to avoid an uncatched #GP in the guest
1930 */
Huang Ying890ca9a2009-05-11 16:48:15 +08001931 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01001932 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08001933 return -1;
1934 vcpu->arch.mce_banks[offset] = data;
1935 break;
1936 }
1937 return 1;
1938 }
1939 return 0;
1940}
1941
Ed Swierkffde22a2009-10-15 15:21:43 -07001942static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
1943{
1944 struct kvm *kvm = vcpu->kvm;
1945 int lm = is_long_mode(vcpu);
1946 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
1947 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
1948 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
1949 : kvm->arch.xen_hvm_config.blob_size_32;
1950 u32 page_num = data & ~PAGE_MASK;
1951 u64 page_addr = data & PAGE_MASK;
1952 u8 *page;
1953 int r;
1954
1955 r = -E2BIG;
1956 if (page_num >= blob_size)
1957 goto out;
1958 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001959 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
1960 if (IS_ERR(page)) {
1961 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07001962 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001963 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001964 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07001965 goto out_free;
1966 r = 0;
1967out_free:
1968 kfree(page);
1969out:
1970 return r;
1971}
1972
Gleb Natapov344d9582010-10-14 11:22:50 +02001973static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
1974{
1975 gpa_t gpa = data & ~0x3f;
1976
Guo Chao4a969982012-06-28 15:17:27 +08001977 /* Bits 2:5 are reserved, Should be zero */
Gleb Natapov6adba522010-10-14 11:22:55 +02001978 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02001979 return 1;
1980
1981 vcpu->arch.apf.msr_val = data;
1982
1983 if (!(data & KVM_ASYNC_PF_ENABLED)) {
1984 kvm_clear_async_pf_completion_queue(vcpu);
1985 kvm_async_pf_hash_reset(vcpu);
1986 return 0;
1987 }
1988
Andrew Honig8f964522013-03-29 09:35:21 -07001989 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
1990 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02001991 return 1;
1992
Gleb Natapov6adba522010-10-14 11:22:55 +02001993 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02001994 kvm_async_pf_wakeup_all(vcpu);
1995 return 0;
1996}
1997
Glauber Costa12f9a482011-02-01 14:16:40 -05001998static void kvmclock_reset(struct kvm_vcpu *vcpu)
1999{
Andy Honig0b794592013-02-20 14:48:10 -08002000 vcpu->arch.pv_time_enabled = false;
Glauber Costa12f9a482011-02-01 14:16:40 -05002001}
2002
Glauber Costac9aaa892011-07-11 15:28:14 -04002003static void accumulate_steal_time(struct kvm_vcpu *vcpu)
2004{
2005 u64 delta;
2006
2007 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2008 return;
2009
2010 delta = current->sched_info.run_delay - vcpu->arch.st.last_steal;
2011 vcpu->arch.st.last_steal = current->sched_info.run_delay;
2012 vcpu->arch.st.accum_steal = delta;
2013}
2014
2015static void record_steal_time(struct kvm_vcpu *vcpu)
2016{
Marcelo Tosatti7cae2be2015-10-14 19:33:09 -03002017 accumulate_steal_time(vcpu);
2018
Glauber Costac9aaa892011-07-11 15:28:14 -04002019 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2020 return;
2021
2022 if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2023 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
2024 return;
2025
2026 vcpu->arch.st.steal.steal += vcpu->arch.st.accum_steal;
2027 vcpu->arch.st.steal.version += 2;
2028 vcpu->arch.st.accum_steal = 0;
2029
2030 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
2031 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2032}
2033
Will Auld8fe8ab42012-11-29 12:42:12 -08002034int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002035{
Gleb Natapov57537852012-01-15 14:17:22 +02002036 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002037 u32 msr = msr_info->index;
2038 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002039
Carsten Otte15c4a642007-10-30 18:44:17 +01002040 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002041 case MSR_AMD64_NB_CFG:
2042 case MSR_IA32_UCODE_REV:
2043 case MSR_IA32_UCODE_WRITE:
2044 case MSR_VM_HSAVE_PA:
2045 case MSR_AMD64_PATCH_LOADER:
2046 case MSR_AMD64_BU_CFG2:
2047 break;
2048
Carsten Otte15c4a642007-10-30 18:44:17 +01002049 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02002050 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002051 case MSR_K7_HWCR:
2052 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002053 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002054 data &= ~(u64)0x8; /* ignore TLB cache disable */
Matthias Lange22d48b2d2014-06-26 13:50:15 +02002055 data &= ~(u64)0x40000; /* ignore Mc status write enable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02002056 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002057 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2058 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002059 return 1;
2060 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002061 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002062 case MSR_FAM10H_MMIO_CONF_BASE:
2063 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002064 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2065 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002066 return 1;
2067 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002068 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002069 case MSR_IA32_DEBUGCTLMSR:
2070 if (!data) {
2071 /* We support the non-activated case already */
2072 break;
2073 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2074 /* Values other than LBR and BTF are vendor-specific,
2075 thus reserved and should throw a #GP */
2076 return 1;
2077 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002078 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2079 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002080 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002081 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002082 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002083 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002084 return kvm_set_apic_base(vcpu, msr_info);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002085 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2086 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002087 case MSR_IA32_TSCDEADLINE:
2088 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2089 break;
Will Auldba904632012-11-29 12:42:50 -08002090 case MSR_IA32_TSC_ADJUST:
2091 if (guest_cpuid_has_tsc_adjust(vcpu)) {
2092 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002093 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08002094 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08002095 }
2096 vcpu->arch.ia32_tsc_adjust_msr = data;
2097 }
2098 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002099 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002100 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01002101 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002102 case MSR_IA32_SMBASE:
2103 if (!msr_info->host_initiated)
2104 return 1;
2105 vcpu->arch.smbase = data;
2106 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002107 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002108 case MSR_KVM_WALL_CLOCK:
2109 vcpu->kvm->arch.wall_clock = data;
2110 kvm_write_wall_clock(vcpu->kvm, data);
2111 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002112 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002113 case MSR_KVM_SYSTEM_TIME: {
Andy Honig0b794592013-02-20 14:48:10 -08002114 u64 gpa_offset;
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002115 struct kvm_arch *ka = &vcpu->kvm->arch;
2116
Glauber Costa12f9a482011-02-01 14:16:40 -05002117 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002118
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002119 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2120 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2121
2122 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
2123 set_bit(KVM_REQ_MASTERCLOCK_UPDATE,
2124 &vcpu->requests);
2125
2126 ka->boot_vcpu_runs_old_kvmclock = tmp;
2127 }
2128
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002129 vcpu->arch.time = data;
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002130 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002131
2132 /* we verify if the enable bit is set... */
2133 if (!(data & 1))
2134 break;
2135
Andy Honig0b794592013-02-20 14:48:10 -08002136 gpa_offset = data & ~(PAGE_MASK | 1);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002137
Andy Honig0b794592013-02-20 14:48:10 -08002138 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andrew Honig8f964522013-03-29 09:35:21 -07002139 &vcpu->arch.pv_time, data & ~1ULL,
2140 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002141 vcpu->arch.pv_time_enabled = false;
2142 else
2143 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002144
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002145 break;
2146 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002147 case MSR_KVM_ASYNC_PF_EN:
2148 if (kvm_pv_enable_async_pf(vcpu, data))
2149 return 1;
2150 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002151 case MSR_KVM_STEAL_TIME:
2152
2153 if (unlikely(!sched_info_on()))
2154 return 1;
2155
2156 if (data & KVM_STEAL_RESERVED_MASK)
2157 return 1;
2158
2159 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.st.stime,
Andrew Honig8f964522013-03-29 09:35:21 -07002160 data & KVM_STEAL_VALID_BITS,
2161 sizeof(struct kvm_steal_time)))
Glauber Costac9aaa892011-07-11 15:28:14 -04002162 return 1;
2163
2164 vcpu->arch.st.msr_val = data;
2165
2166 if (!(data & KVM_MSR_ENABLED))
2167 break;
2168
Glauber Costac9aaa892011-07-11 15:28:14 -04002169 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2170
2171 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002172 case MSR_KVM_PV_EOI_EN:
2173 if (kvm_lapic_enable_pv_eoi(vcpu, data))
2174 return 1;
2175 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002176
Huang Ying890ca9a2009-05-11 16:48:15 +08002177 case MSR_IA32_MCG_CTL:
2178 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002179 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Huang Ying890ca9a2009-05-11 16:48:15 +08002180 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002181
Wei Huang6912ac32015-06-12 01:34:56 -04002182 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2183 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2184 pr = true; /* fall through */
2185 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2186 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002187 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002188 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002189
2190 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002191 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2192 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002193 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002194 case MSR_K7_CLK_CTL:
2195 /*
2196 * Ignore all writes to this no longer documented MSR.
2197 * Writes are only relevant for old K7 processors,
2198 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002199 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002200 * affected processor models on the command line, hence
2201 * the need to ignore the workaround.
2202 */
2203 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002204 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002205 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2206 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002207 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002208 return kvm_hv_set_msr_common(vcpu, msr, data,
2209 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05002210 case MSR_IA32_BBL_CR_CTL3:
2211 /* Drop writes to this legacy MSR -- see rdmsr
2212 * counterpart for further detail.
2213 */
Christoffer Dalla737f252012-06-03 21:17:48 +03002214 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002215 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002216 case MSR_AMD64_OSVW_ID_LENGTH:
2217 if (!guest_cpuid_has_osvw(vcpu))
2218 return 1;
2219 vcpu->arch.osvw.length = data;
2220 break;
2221 case MSR_AMD64_OSVW_STATUS:
2222 if (!guest_cpuid_has_osvw(vcpu))
2223 return 1;
2224 vcpu->arch.osvw.status = data;
2225 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002226 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07002227 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
2228 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02002229 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002230 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02002231 if (!ignore_msrs) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002232 vcpu_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n",
2233 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002234 return 1;
2235 } else {
Christoffer Dalla737f252012-06-03 21:17:48 +03002236 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n",
2237 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002238 break;
2239 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002240 }
2241 return 0;
2242}
2243EXPORT_SYMBOL_GPL(kvm_set_msr_common);
2244
2245
2246/*
2247 * Reads an msr value (of 'msr_index') into 'pdata'.
2248 * Returns 0 on success, non-0 otherwise.
2249 * Assumes vcpu_load() was already called.
2250 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002251int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01002252{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002253 return kvm_x86_ops->get_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002254}
Wincy Vanff651cb2014-12-11 08:52:58 +03002255EXPORT_SYMBOL_GPL(kvm_get_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002256
Huang Ying890ca9a2009-05-11 16:48:15 +08002257static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2258{
2259 u64 data;
2260 u64 mcg_cap = vcpu->arch.mcg_cap;
2261 unsigned bank_num = mcg_cap & 0xff;
2262
2263 switch (msr) {
2264 case MSR_IA32_P5_MC_ADDR:
2265 case MSR_IA32_P5_MC_TYPE:
2266 data = 0;
2267 break;
2268 case MSR_IA32_MCG_CAP:
2269 data = vcpu->arch.mcg_cap;
2270 break;
2271 case MSR_IA32_MCG_CTL:
2272 if (!(mcg_cap & MCG_CTL_P))
2273 return 1;
2274 data = vcpu->arch.mcg_ctl;
2275 break;
2276 case MSR_IA32_MCG_STATUS:
2277 data = vcpu->arch.mcg_status;
2278 break;
2279 default:
2280 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002281 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002282 u32 offset = msr - MSR_IA32_MC0_CTL;
2283 data = vcpu->arch.mce_banks[offset];
2284 break;
2285 }
2286 return 1;
2287 }
2288 *pdata = data;
2289 return 0;
2290}
2291
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002292int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002293{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002294 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01002295 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01002296 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002297 case MSR_IA32_DEBUGCTLMSR:
2298 case MSR_IA32_LASTBRANCHFROMIP:
2299 case MSR_IA32_LASTBRANCHTOIP:
2300 case MSR_IA32_LASTINTFROMIP:
2301 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302302 case MSR_K8_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02002303 case MSR_K8_TSEG_ADDR:
2304 case MSR_K8_TSEG_MASK:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302305 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02002306 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02002307 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02002308 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002309 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002310 case MSR_AMD64_BU_CFG2:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002311 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01002312 break;
Wei Huang6912ac32015-06-12 01:34:56 -04002313 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2314 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2315 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2316 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002317 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002318 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
2319 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02002320 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002321 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002322 msr_info->data = 0x100000000ULL;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002323 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002324 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03002325 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002326 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002327 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002328 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01002329 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02002330 /*
2331 * MSR_EBC_FREQUENCY_ID
2332 * Conservative value valid for even the basic CPU models.
2333 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
2334 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
2335 * and 266MHz for model 3, or 4. Set Core Clock
2336 * Frequency to System Bus Frequency Ratio to 1 (bits
2337 * 31:24) even though these are only valid for CPU
2338 * models > 2, however guests may end up dividing or
2339 * multiplying by zero otherwise.
2340 */
2341 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002342 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02002343 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002344 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002345 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01002346 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002347 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002348 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002349 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002350 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002351 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002352 break;
Will Auldba904632012-11-29 12:42:50 -08002353 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002354 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08002355 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002356 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002357 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01002358 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002359 case MSR_IA32_SMBASE:
2360 if (!msr_info->host_initiated)
2361 return 1;
2362 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01002363 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002364 case MSR_IA32_PERF_STATUS:
2365 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002366 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002367 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08002368 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01002369 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002370 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002371 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01002372 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002373 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002374 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002375 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002376 break;
2377 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002378 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002379 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002380 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02002381 case MSR_KVM_ASYNC_PF_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002382 msr_info->data = vcpu->arch.apf.msr_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02002383 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002384 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002385 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04002386 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002387 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002388 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002389 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002390 case MSR_IA32_P5_MC_ADDR:
2391 case MSR_IA32_P5_MC_TYPE:
2392 case MSR_IA32_MCG_CAP:
2393 case MSR_IA32_MCG_CTL:
2394 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002395 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002396 return get_msr_mce(vcpu, msr_info->index, &msr_info->data);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002397 case MSR_K7_CLK_CTL:
2398 /*
2399 * Provide expected ramp-up count for K7. All other
2400 * are set to zero, indicating minimum divisors for
2401 * every field.
2402 *
2403 * This prevents guest kernels on AMD host with CPU
2404 * type 6, model 8 and higher from exploding due to
2405 * the rdmsr failing.
2406 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002407 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002408 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002409 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002410 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2411 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002412 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine83d5882015-07-03 15:01:34 +03002413 return kvm_hv_get_msr_common(vcpu,
2414 msr_info->index, &msr_info->data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002415 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002416 case MSR_IA32_BBL_CR_CTL3:
2417 /* This legacy MSR exists but isn't fully documented in current
2418 * silicon. It is however accessed by winxp in very narrow
2419 * scenarios where it sets bit #19, itself documented as
2420 * a "reserved" bit. Best effort attempt to source coherent
2421 * read data here should the balance of the register be
2422 * interpreted by the guest:
2423 *
2424 * L2 cache control register 3: 64GB range, 256KB size,
2425 * enabled, latency 0x1, configured
2426 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002427 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05002428 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002429 case MSR_AMD64_OSVW_ID_LENGTH:
2430 if (!guest_cpuid_has_osvw(vcpu))
2431 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002432 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002433 break;
2434 case MSR_AMD64_OSVW_STATUS:
2435 if (!guest_cpuid_has_osvw(vcpu))
2436 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002437 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002438 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002439 default:
Wei Huangc6702c92015-06-19 13:44:45 +02002440 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002441 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002442 if (!ignore_msrs) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002443 vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr_info->index);
Andre Przywaraed85c062009-06-25 12:36:49 +02002444 return 1;
2445 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002446 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index);
2447 msr_info->data = 0;
Andre Przywaraed85c062009-06-25 12:36:49 +02002448 }
2449 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002450 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002451 return 0;
2452}
2453EXPORT_SYMBOL_GPL(kvm_get_msr_common);
2454
Carsten Otte313a3dc2007-10-11 19:16:52 +02002455/*
2456 * Read or write a bunch of msrs. All parameters are kernel addresses.
2457 *
2458 * @return number of msrs set successfully.
2459 */
2460static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2461 struct kvm_msr_entry *entries,
2462 int (*do_msr)(struct kvm_vcpu *vcpu,
2463 unsigned index, u64 *data))
2464{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002465 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002466
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002467 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002468 for (i = 0; i < msrs->nmsrs; ++i)
2469 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2470 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002471 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002472
Carsten Otte313a3dc2007-10-11 19:16:52 +02002473 return i;
2474}
2475
2476/*
2477 * Read or write a bunch of msrs. Parameters are user addresses.
2478 *
2479 * @return number of msrs set successfully.
2480 */
2481static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2482 int (*do_msr)(struct kvm_vcpu *vcpu,
2483 unsigned index, u64 *data),
2484 int writeback)
2485{
2486 struct kvm_msrs msrs;
2487 struct kvm_msr_entry *entries;
2488 int r, n;
2489 unsigned size;
2490
2491 r = -EFAULT;
2492 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2493 goto out;
2494
2495 r = -E2BIG;
2496 if (msrs.nmsrs >= MAX_IO_MSRS)
2497 goto out;
2498
Carsten Otte313a3dc2007-10-11 19:16:52 +02002499 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002500 entries = memdup_user(user_msrs->entries, size);
2501 if (IS_ERR(entries)) {
2502 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002503 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002504 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02002505
2506 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2507 if (r < 0)
2508 goto out_free;
2509
2510 r = -EFAULT;
2511 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2512 goto out_free;
2513
2514 r = n;
2515
2516out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002517 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002518out:
2519 return r;
2520}
2521
Alexander Graf784aa3d2014-07-14 18:27:35 +02002522int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002523{
2524 int r;
2525
2526 switch (ext) {
2527 case KVM_CAP_IRQCHIP:
2528 case KVM_CAP_HLT:
2529 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002530 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002531 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002532 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002533 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002534 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002535 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002536 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002537 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002538 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002539 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002540 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002541 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03002542 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002543 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002544 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002545 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002546 case KVM_CAP_XEN_HVM:
Glauber Costaafbcf7a2009-10-16 15:28:36 -04002547 case KVM_CAP_ADJUST_CLOCK:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002548 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002549 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002550 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002551 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002552 case KVM_CAP_HYPERV_SYNIC:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002553 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002554 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002555 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002556 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002557 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002558 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002559 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002560 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01002561 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05002562 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01002563 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03002564 case KVM_CAP_ENABLE_CAP_VM:
2565 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02002566 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07002567 case KVM_CAP_SPLIT_IRQCHIP:
Alex Williamson2a5bab12013-04-16 13:49:18 -06002568#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
2569 case KVM_CAP_ASSIGN_DEV_IRQ:
2570 case KVM_CAP_PCI_2_3:
2571#endif
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002572 r = 1;
2573 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02002574 case KVM_CAP_X86_SMM:
2575 /* SMBASE is usually relocated above 1M on modern chipsets,
2576 * and SMM handlers might indeed rely on 4G segment limits,
2577 * so do not report SMM to be available if real mode is
2578 * emulated via vm86 mode. Still, do not go to great lengths
2579 * to avoid userspace's usage of the feature, because it is a
2580 * fringe case that is not enabled except via specific settings
2581 * of the module parameters.
2582 */
2583 r = kvm_x86_ops->cpu_has_high_real_mode_segbase();
2584 break;
Laurent Vivier542472b2008-05-30 16:05:55 +02002585 case KVM_CAP_COALESCED_MMIO:
2586 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
2587 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002588 case KVM_CAP_VAPIC:
2589 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2590 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002591 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002592 r = KVM_SOFT_MAX_VCPUS;
2593 break;
2594 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002595 r = KVM_MAX_VCPUS;
2596 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002597 case KVM_CAP_NR_MEMSLOTS:
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07002598 r = KVM_USER_MEM_SLOTS;
Avi Kivitya988b912008-02-20 11:59:20 +02002599 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002600 case KVM_CAP_PV_MMU: /* obsolete */
2601 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002602 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002603#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002604 case KVM_CAP_IOMMU:
Joerg Roedela1b60c12011-09-06 18:46:34 +02002605 r = iommu_present(&pci_bus_type);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002606 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002607#endif
Huang Ying890ca9a2009-05-11 16:48:15 +08002608 case KVM_CAP_MCE:
2609 r = KVM_MAX_MCE_BANKS;
2610 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002611 case KVM_CAP_XCRS:
2612 r = cpu_has_xsave;
2613 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002614 case KVM_CAP_TSC_CONTROL:
2615 r = kvm_has_tsc_control;
2616 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002617 default:
2618 r = 0;
2619 break;
2620 }
2621 return r;
2622
2623}
2624
Carsten Otte043405e2007-10-10 17:16:19 +02002625long kvm_arch_dev_ioctl(struct file *filp,
2626 unsigned int ioctl, unsigned long arg)
2627{
2628 void __user *argp = (void __user *)arg;
2629 long r;
2630
2631 switch (ioctl) {
2632 case KVM_GET_MSR_INDEX_LIST: {
2633 struct kvm_msr_list __user *user_msr_list = argp;
2634 struct kvm_msr_list msr_list;
2635 unsigned n;
2636
2637 r = -EFAULT;
2638 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2639 goto out;
2640 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002641 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Carsten Otte043405e2007-10-10 17:16:19 +02002642 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2643 goto out;
2644 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002645 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002646 goto out;
2647 r = -EFAULT;
2648 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2649 num_msrs_to_save * sizeof(u32)))
2650 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002651 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002652 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002653 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02002654 goto out;
2655 r = 0;
2656 break;
2657 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002658 case KVM_GET_SUPPORTED_CPUID:
2659 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02002660 struct kvm_cpuid2 __user *cpuid_arg = argp;
2661 struct kvm_cpuid2 cpuid;
2662
2663 r = -EFAULT;
2664 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2665 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002666
2667 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
2668 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02002669 if (r)
2670 goto out;
2671
2672 r = -EFAULT;
2673 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2674 goto out;
2675 r = 0;
2676 break;
2677 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002678 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
2679 u64 mce_cap;
2680
2681 mce_cap = KVM_MCE_CAP_SUPPORTED;
2682 r = -EFAULT;
2683 if (copy_to_user(argp, &mce_cap, sizeof mce_cap))
2684 goto out;
2685 r = 0;
2686 break;
2687 }
Carsten Otte043405e2007-10-10 17:16:19 +02002688 default:
2689 r = -EINVAL;
2690 }
2691out:
2692 return r;
2693}
2694
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002695static void wbinvd_ipi(void *garbage)
2696{
2697 wbinvd();
2698}
2699
2700static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2701{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06002702 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002703}
2704
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002705static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2706{
2707 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
2708}
2709
Carsten Otte313a3dc2007-10-11 19:16:52 +02002710void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2711{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002712 /* Address WBINVD may be executed by guest */
2713 if (need_emulate_wbinvd(vcpu)) {
2714 if (kvm_x86_ops->has_wbinvd_exit())
2715 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2716 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2717 smp_call_function_single(vcpu->cpu,
2718 wbinvd_ipi, NULL, 1);
2719 }
2720
Carsten Otte313a3dc2007-10-11 19:16:52 +02002721 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002722
2723 /* Apply any externally detected TSC adjustments (due to suspend) */
2724 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
2725 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
2726 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002727 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002728 }
2729
Zachary Amsden48434c202010-08-19 22:07:24 -10002730 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002731 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002732 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10002733 if (tsc_delta < 0)
2734 mark_tsc_unstable("KVM discovered backwards TSC");
Zachary Amsdenc2855452010-09-18 14:38:15 -10002735 if (check_tsc_unstable()) {
Haozhong Zhang07c14192015-10-20 15:39:05 +08002736 u64 offset = kvm_compute_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002737 vcpu->arch.last_guest_tsc);
2738 kvm_x86_ops->write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002739 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002740 }
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02002741 /*
2742 * On a host with synchronized TSC, there is no need to update
2743 * kvmclock on vcpu->cpu migration
2744 */
2745 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002746 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002747 if (vcpu->cpu != cpu)
2748 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002749 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002750 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002751
Glauber Costac9aaa892011-07-11 15:28:14 -04002752 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Paolo Bonzini4e422bd2016-02-10 17:50:23 +01002753 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002754}
2755
2756void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2757{
Avi Kivity02daab22009-12-30 12:40:26 +02002758 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002759 kvm_put_guest_fpu(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002760 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02002761}
2762
Carsten Otte313a3dc2007-10-11 19:16:52 +02002763static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2764 struct kvm_lapic_state *s)
2765{
Andrey Smetanind62caab2015-11-10 15:36:33 +03002766 if (vcpu->arch.apicv_active)
2767 kvm_x86_ops->sync_pir_to_irr(vcpu);
2768
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002769 memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002770
2771 return 0;
2772}
2773
2774static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2775 struct kvm_lapic_state *s)
2776{
Gleb Natapov64eb0622012-08-08 15:24:36 +03002777 kvm_apic_post_state_restore(vcpu, s);
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002778 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002779
2780 return 0;
2781}
2782
Matt Gingell127a4572015-11-17 17:32:05 +01002783static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
2784{
2785 return (!lapic_in_kernel(vcpu) ||
2786 kvm_apic_accept_pic_intr(vcpu));
2787}
2788
Matt Gingell782d4222015-11-16 15:26:00 -08002789/*
2790 * if userspace requested an interrupt window, check that the
2791 * interrupt window is open.
2792 *
2793 * No need to exit to userspace if we already have an interrupt queued.
2794 */
2795static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
2796{
2797 return kvm_arch_interrupt_allowed(vcpu) &&
2798 !kvm_cpu_has_interrupt(vcpu) &&
2799 !kvm_event_needs_reinjection(vcpu) &&
2800 kvm_cpu_accept_dm_intr(vcpu);
2801}
2802
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002803static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2804 struct kvm_interrupt *irq)
2805{
Chen Gang02cdb502013-02-27 11:33:25 +08002806 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002807 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002808
2809 if (!irqchip_in_kernel(vcpu->kvm)) {
2810 kvm_queue_interrupt(vcpu, irq->irq, false);
2811 kvm_make_request(KVM_REQ_EVENT, vcpu);
2812 return 0;
2813 }
2814
2815 /*
2816 * With in-kernel LAPIC, we only use this to inject EXTINT, so
2817 * fail for in-kernel 8259.
2818 */
2819 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002820 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002821
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002822 if (vcpu->arch.pending_external_vector != -1)
2823 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002824
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002825 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08002826 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002827 return 0;
2828}
2829
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002830static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2831{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002832 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002833
2834 return 0;
2835}
2836
Paolo Bonzinif0778252015-04-01 15:06:40 +02002837static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
2838{
Paolo Bonzini64d60672015-05-07 11:36:11 +02002839 kvm_make_request(KVM_REQ_SMI, vcpu);
2840
Paolo Bonzinif0778252015-04-01 15:06:40 +02002841 return 0;
2842}
2843
Avi Kivityb209749f2007-10-22 16:50:39 +02002844static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2845 struct kvm_tpr_access_ctl *tac)
2846{
2847 if (tac->flags)
2848 return -EINVAL;
2849 vcpu->arch.tpr_access_reporting = !!tac->enabled;
2850 return 0;
2851}
2852
Huang Ying890ca9a2009-05-11 16:48:15 +08002853static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
2854 u64 mcg_cap)
2855{
2856 int r;
2857 unsigned bank_num = mcg_cap & 0xff, bank;
2858
2859 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02002860 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08002861 goto out;
2862 if (mcg_cap & ~(KVM_MCE_CAP_SUPPORTED | 0xff | 0xff0000))
2863 goto out;
2864 r = 0;
2865 vcpu->arch.mcg_cap = mcg_cap;
2866 /* Init IA32_MCG_CTL to all 1s */
2867 if (mcg_cap & MCG_CTL_P)
2868 vcpu->arch.mcg_ctl = ~(u64)0;
2869 /* Init IA32_MCi_CTL to all 1s */
2870 for (bank = 0; bank < bank_num; bank++)
2871 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
2872out:
2873 return r;
2874}
2875
2876static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
2877 struct kvm_x86_mce *mce)
2878{
2879 u64 mcg_cap = vcpu->arch.mcg_cap;
2880 unsigned bank_num = mcg_cap & 0xff;
2881 u64 *banks = vcpu->arch.mce_banks;
2882
2883 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
2884 return -EINVAL;
2885 /*
2886 * if IA32_MCG_CTL is not all 1s, the uncorrected error
2887 * reporting is disabled
2888 */
2889 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
2890 vcpu->arch.mcg_ctl != ~(u64)0)
2891 return 0;
2892 banks += 4 * mce->bank;
2893 /*
2894 * if IA32_MCi_CTL is not all 1s, the uncorrected error
2895 * reporting is disabled for the bank
2896 */
2897 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
2898 return 0;
2899 if (mce->status & MCI_STATUS_UC) {
2900 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02002901 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03002902 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002903 return 0;
2904 }
2905 if (banks[1] & MCI_STATUS_VAL)
2906 mce->status |= MCI_STATUS_OVER;
2907 banks[2] = mce->addr;
2908 banks[3] = mce->misc;
2909 vcpu->arch.mcg_status = mce->mcg_status;
2910 banks[1] = mce->status;
2911 kvm_queue_exception(vcpu, MC_VECTOR);
2912 } else if (!(banks[1] & MCI_STATUS_VAL)
2913 || !(banks[1] & MCI_STATUS_UC)) {
2914 if (banks[1] & MCI_STATUS_VAL)
2915 mce->status |= MCI_STATUS_OVER;
2916 banks[2] = mce->addr;
2917 banks[3] = mce->misc;
2918 banks[1] = mce->status;
2919 } else
2920 banks[1] |= MCI_STATUS_OVER;
2921 return 0;
2922}
2923
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002924static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
2925 struct kvm_vcpu_events *events)
2926{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002927 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01002928 events->exception.injected =
2929 vcpu->arch.exception.pending &&
2930 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002931 events->exception.nr = vcpu->arch.exception.nr;
2932 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002933 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002934 events->exception.error_code = vcpu->arch.exception.error_code;
2935
Jan Kiszka03b82a32010-02-15 10:45:41 +01002936 events->interrupt.injected =
2937 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002938 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01002939 events->interrupt.soft = 0;
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002940 events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002941
2942 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002943 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002944 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002945 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002946
Jan Kiszka66450a22013-03-13 12:42:34 +01002947 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002948
Paolo Bonzinif0778252015-04-01 15:06:40 +02002949 events->smi.smm = is_smm(vcpu);
2950 events->smi.pending = vcpu->arch.smi_pending;
2951 events->smi.smm_inside_nmi =
2952 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
2953 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
2954
Jan Kiszkadab4b912009-12-06 18:24:15 +01002955 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02002956 | KVM_VCPUEVENT_VALID_SHADOW
2957 | KVM_VCPUEVENT_VALID_SMM);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002958 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002959}
2960
2961static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
2962 struct kvm_vcpu_events *events)
2963{
Jan Kiszkadab4b912009-12-06 18:24:15 +01002964 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01002965 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02002966 | KVM_VCPUEVENT_VALID_SHADOW
2967 | KVM_VCPUEVENT_VALID_SMM))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002968 return -EINVAL;
2969
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002970 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002971 vcpu->arch.exception.pending = events->exception.injected;
2972 vcpu->arch.exception.nr = events->exception.nr;
2973 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
2974 vcpu->arch.exception.error_code = events->exception.error_code;
2975
2976 vcpu->arch.interrupt.pending = events->interrupt.injected;
2977 vcpu->arch.interrupt.nr = events->interrupt.nr;
2978 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01002979 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
2980 kvm_x86_ops->set_interrupt_shadow(vcpu,
2981 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002982
2983 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01002984 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
2985 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002986 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
2987
Jan Kiszka66450a22013-03-13 12:42:34 +01002988 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01002989 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01002990 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002991
Paolo Bonzinif0778252015-04-01 15:06:40 +02002992 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
2993 if (events->smi.smm)
2994 vcpu->arch.hflags |= HF_SMM_MASK;
2995 else
2996 vcpu->arch.hflags &= ~HF_SMM_MASK;
2997 vcpu->arch.smi_pending = events->smi.pending;
2998 if (events->smi.smm_inside_nmi)
2999 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
3000 else
3001 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003002 if (lapic_in_kernel(vcpu)) {
Paolo Bonzinif0778252015-04-01 15:06:40 +02003003 if (events->smi.latched_init)
3004 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3005 else
3006 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3007 }
3008 }
3009
Avi Kivity3842d132010-07-27 12:30:24 +03003010 kvm_make_request(KVM_REQ_EVENT, vcpu);
3011
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003012 return 0;
3013}
3014
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003015static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
3016 struct kvm_debugregs *dbgregs)
3017{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003018 unsigned long val;
3019
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003020 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003021 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003022 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003023 dbgregs->dr7 = vcpu->arch.dr7;
3024 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003025 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003026}
3027
3028static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
3029 struct kvm_debugregs *dbgregs)
3030{
3031 if (dbgregs->flags)
3032 return -EINVAL;
3033
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003034 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03003035 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003036 vcpu->arch.dr6 = dbgregs->dr6;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003037 kvm_update_dr6(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003038 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01003039 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003040
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003041 return 0;
3042}
3043
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003044#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
3045
3046static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
3047{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003048 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02003049 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003050 u64 valid;
3051
3052 /*
3053 * Copy legacy XSAVE area, to avoid complications with CPUID
3054 * leaves 0 and 1 in the loop below.
3055 */
3056 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
3057
3058 /* Set XSTATE_BV */
3059 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
3060
3061 /*
3062 * Copy each region from the possibly compacted offset to the
3063 * non-compacted offset.
3064 */
Dave Hansend91cab72015-09-02 16:31:26 -07003065 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003066 while (valid) {
3067 u64 feature = valid & -valid;
3068 int index = fls64(feature) - 1;
3069 void *src = get_xsave_addr(xsave, feature);
3070
3071 if (src) {
3072 u32 size, offset, ecx, edx;
3073 cpuid_count(XSTATE_CPUID, index,
3074 &size, &offset, &ecx, &edx);
3075 memcpy(dest + offset, src, size);
3076 }
3077
3078 valid -= feature;
3079 }
3080}
3081
3082static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
3083{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003084 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003085 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
3086 u64 valid;
3087
3088 /*
3089 * Copy legacy XSAVE area, to avoid complications with CPUID
3090 * leaves 0 and 1 in the loop below.
3091 */
3092 memcpy(xsave, src, XSAVE_HDR_OFFSET);
3093
3094 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02003095 xsave->header.xfeatures = xstate_bv;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003096 if (cpu_has_xsaves)
Ingo Molnar3a544502015-04-24 10:14:36 +02003097 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003098
3099 /*
3100 * Copy each region from the non-compacted offset to the
3101 * possibly compacted offset.
3102 */
Dave Hansend91cab72015-09-02 16:31:26 -07003103 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003104 while (valid) {
3105 u64 feature = valid & -valid;
3106 int index = fls64(feature) - 1;
3107 void *dest = get_xsave_addr(xsave, feature);
3108
3109 if (dest) {
3110 u32 size, offset, ecx, edx;
3111 cpuid_count(XSTATE_CPUID, index,
3112 &size, &offset, &ecx, &edx);
3113 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08003114 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003115
3116 valid -= feature;
3117 }
3118}
3119
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003120static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
3121 struct kvm_xsave *guest_xsave)
3122{
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003123 if (cpu_has_xsave) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003124 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
3125 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003126 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003127 memcpy(guest_xsave->region,
Ingo Molnar7366ed72015-04-27 04:19:39 +02003128 &vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003129 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003130 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07003131 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003132 }
3133}
3134
3135static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
3136 struct kvm_xsave *guest_xsave)
3137{
3138 u64 xstate_bv =
3139 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
3140
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003141 if (cpu_has_xsave) {
3142 /*
3143 * Here we allow setting states that are not present in
3144 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
3145 * with old userspace.
3146 */
Paolo Bonzini4ff41732014-02-24 12:15:16 +01003147 if (xstate_bv & ~kvm_supported_xcr0())
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003148 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003149 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003150 } else {
Dave Hansend91cab72015-09-02 16:31:26 -07003151 if (xstate_bv & ~XFEATURE_MASK_FPSSE)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003152 return -EINVAL;
Ingo Molnar7366ed72015-04-27 04:19:39 +02003153 memcpy(&vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003154 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003155 }
3156 return 0;
3157}
3158
3159static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
3160 struct kvm_xcrs *guest_xcrs)
3161{
3162 if (!cpu_has_xsave) {
3163 guest_xcrs->nr_xcrs = 0;
3164 return;
3165 }
3166
3167 guest_xcrs->nr_xcrs = 1;
3168 guest_xcrs->flags = 0;
3169 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
3170 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
3171}
3172
3173static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
3174 struct kvm_xcrs *guest_xcrs)
3175{
3176 int i, r = 0;
3177
3178 if (!cpu_has_xsave)
3179 return -EINVAL;
3180
3181 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
3182 return -EINVAL;
3183
3184 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
3185 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003186 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003187 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003188 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003189 break;
3190 }
3191 if (r)
3192 r = -EINVAL;
3193 return r;
3194}
3195
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003196/*
3197 * kvm_set_guest_paused() indicates to the guest kernel that it has been
3198 * stopped by the hypervisor. This function will be called from the host only.
3199 * EINVAL is returned when the host attempts to set the flag for a guest that
3200 * does not support pv clocks.
3201 */
3202static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
3203{
Andy Honig0b794592013-02-20 14:48:10 -08003204 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003205 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003206 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003207 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
3208 return 0;
3209}
3210
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003211static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
3212 struct kvm_enable_cap *cap)
3213{
3214 if (cap->flags)
3215 return -EINVAL;
3216
3217 switch (cap->cap) {
3218 case KVM_CAP_HYPERV_SYNIC:
3219 return kvm_hv_activate_synic(vcpu);
3220 default:
3221 return -EINVAL;
3222 }
3223}
3224
Carsten Otte313a3dc2007-10-11 19:16:52 +02003225long kvm_arch_vcpu_ioctl(struct file *filp,
3226 unsigned int ioctl, unsigned long arg)
3227{
3228 struct kvm_vcpu *vcpu = filp->private_data;
3229 void __user *argp = (void __user *)arg;
3230 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003231 union {
3232 struct kvm_lapic_state *lapic;
3233 struct kvm_xsave *xsave;
3234 struct kvm_xcrs *xcrs;
3235 void *buffer;
3236 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003237
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003238 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003239 switch (ioctl) {
3240 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003241 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003242 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003243 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003244 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003245
Dave Hansenb772ff32008-08-11 10:01:47 -07003246 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003247 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003248 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003249 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003250 if (r)
3251 goto out;
3252 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003253 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003254 goto out;
3255 r = 0;
3256 break;
3257 }
3258 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003259 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003260 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003261 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003262 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Guo Chao18595412012-11-02 18:33:21 +08003263 if (IS_ERR(u.lapic))
3264 return PTR_ERR(u.lapic);
Sasha Levinff5c2c02011-12-04 19:36:29 +02003265
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003266 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003267 break;
3268 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003269 case KVM_INTERRUPT: {
3270 struct kvm_interrupt irq;
3271
3272 r = -EFAULT;
3273 if (copy_from_user(&irq, argp, sizeof irq))
3274 goto out;
3275 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003276 break;
3277 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003278 case KVM_NMI: {
3279 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003280 break;
3281 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02003282 case KVM_SMI: {
3283 r = kvm_vcpu_ioctl_smi(vcpu);
3284 break;
3285 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003286 case KVM_SET_CPUID: {
3287 struct kvm_cpuid __user *cpuid_arg = argp;
3288 struct kvm_cpuid cpuid;
3289
3290 r = -EFAULT;
3291 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3292 goto out;
3293 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003294 break;
3295 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003296 case KVM_SET_CPUID2: {
3297 struct kvm_cpuid2 __user *cpuid_arg = argp;
3298 struct kvm_cpuid2 cpuid;
3299
3300 r = -EFAULT;
3301 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3302 goto out;
3303 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003304 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003305 break;
3306 }
3307 case KVM_GET_CPUID2: {
3308 struct kvm_cpuid2 __user *cpuid_arg = argp;
3309 struct kvm_cpuid2 cpuid;
3310
3311 r = -EFAULT;
3312 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3313 goto out;
3314 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003315 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003316 if (r)
3317 goto out;
3318 r = -EFAULT;
3319 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3320 goto out;
3321 r = 0;
3322 break;
3323 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003324 case KVM_GET_MSRS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003325 r = msr_io(vcpu, argp, do_get_msr, 1);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003326 break;
3327 case KVM_SET_MSRS:
3328 r = msr_io(vcpu, argp, do_set_msr, 0);
3329 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003330 case KVM_TPR_ACCESS_REPORTING: {
3331 struct kvm_tpr_access_ctl tac;
3332
3333 r = -EFAULT;
3334 if (copy_from_user(&tac, argp, sizeof tac))
3335 goto out;
3336 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3337 if (r)
3338 goto out;
3339 r = -EFAULT;
3340 if (copy_to_user(argp, &tac, sizeof tac))
3341 goto out;
3342 r = 0;
3343 break;
3344 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003345 case KVM_SET_VAPIC_ADDR: {
3346 struct kvm_vapic_addr va;
3347
3348 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02003349 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02003350 goto out;
3351 r = -EFAULT;
3352 if (copy_from_user(&va, argp, sizeof va))
3353 goto out;
Andy Honigfda4e2e82013-11-20 10:23:22 -08003354 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Avi Kivityb93463a2007-10-25 16:52:32 +02003355 break;
3356 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003357 case KVM_X86_SETUP_MCE: {
3358 u64 mcg_cap;
3359
3360 r = -EFAULT;
3361 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3362 goto out;
3363 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3364 break;
3365 }
3366 case KVM_X86_SET_MCE: {
3367 struct kvm_x86_mce mce;
3368
3369 r = -EFAULT;
3370 if (copy_from_user(&mce, argp, sizeof mce))
3371 goto out;
3372 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3373 break;
3374 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003375 case KVM_GET_VCPU_EVENTS: {
3376 struct kvm_vcpu_events events;
3377
3378 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3379
3380 r = -EFAULT;
3381 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3382 break;
3383 r = 0;
3384 break;
3385 }
3386 case KVM_SET_VCPU_EVENTS: {
3387 struct kvm_vcpu_events events;
3388
3389 r = -EFAULT;
3390 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3391 break;
3392
3393 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3394 break;
3395 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003396 case KVM_GET_DEBUGREGS: {
3397 struct kvm_debugregs dbgregs;
3398
3399 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3400
3401 r = -EFAULT;
3402 if (copy_to_user(argp, &dbgregs,
3403 sizeof(struct kvm_debugregs)))
3404 break;
3405 r = 0;
3406 break;
3407 }
3408 case KVM_SET_DEBUGREGS: {
3409 struct kvm_debugregs dbgregs;
3410
3411 r = -EFAULT;
3412 if (copy_from_user(&dbgregs, argp,
3413 sizeof(struct kvm_debugregs)))
3414 break;
3415
3416 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3417 break;
3418 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003419 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003420 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003421 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003422 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003423 break;
3424
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003425 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003426
3427 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003428 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003429 break;
3430 r = 0;
3431 break;
3432 }
3433 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003434 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Guo Chao18595412012-11-02 18:33:21 +08003435 if (IS_ERR(u.xsave))
3436 return PTR_ERR(u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003437
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003438 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003439 break;
3440 }
3441 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003442 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003443 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003444 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003445 break;
3446
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003447 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003448
3449 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003450 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003451 sizeof(struct kvm_xcrs)))
3452 break;
3453 r = 0;
3454 break;
3455 }
3456 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003457 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Guo Chao18595412012-11-02 18:33:21 +08003458 if (IS_ERR(u.xcrs))
3459 return PTR_ERR(u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003460
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003461 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003462 break;
3463 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003464 case KVM_SET_TSC_KHZ: {
3465 u32 user_tsc_khz;
3466
3467 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003468 user_tsc_khz = (u32)arg;
3469
3470 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3471 goto out;
3472
Zachary Amsdencc578282012-02-03 15:43:50 -02003473 if (user_tsc_khz == 0)
3474 user_tsc_khz = tsc_khz;
3475
Haozhong Zhang381d5852015-10-20 15:39:04 +08003476 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
3477 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003478
Joerg Roedel92a1f122011-03-25 09:44:51 +01003479 goto out;
3480 }
3481 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02003482 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003483 goto out;
3484 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003485 case KVM_KVMCLOCK_CTRL: {
3486 r = kvm_set_guest_paused(vcpu);
3487 goto out;
3488 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003489 case KVM_ENABLE_CAP: {
3490 struct kvm_enable_cap cap;
3491
3492 r = -EFAULT;
3493 if (copy_from_user(&cap, argp, sizeof(cap)))
3494 goto out;
3495 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3496 break;
3497 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003498 default:
3499 r = -EINVAL;
3500 }
3501out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003502 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003503 return r;
3504}
3505
Carsten Otte5b1c1492012-01-04 10:25:23 +01003506int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3507{
3508 return VM_FAULT_SIGBUS;
3509}
3510
Carsten Otte1fe779f2007-10-29 16:08:35 +01003511static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3512{
3513 int ret;
3514
3515 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08003516 return -EINVAL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003517 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3518 return ret;
3519}
3520
Sheng Yangb927a3c2009-07-21 10:42:48 +08003521static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3522 u64 ident_addr)
3523{
3524 kvm->arch.ept_identity_map_addr = ident_addr;
3525 return 0;
3526}
3527
Carsten Otte1fe779f2007-10-29 16:08:35 +01003528static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3529 u32 kvm_nr_mmu_pages)
3530{
3531 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3532 return -EINVAL;
3533
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003534 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003535
3536 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003537 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003538
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003539 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003540 return 0;
3541}
3542
3543static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3544{
Dave Hansen39de71e2010-08-19 18:11:14 -07003545 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003546}
3547
Carsten Otte1fe779f2007-10-29 16:08:35 +01003548static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3549{
3550 int r;
3551
3552 r = 0;
3553 switch (chip->chip_id) {
3554 case KVM_IRQCHIP_PIC_MASTER:
3555 memcpy(&chip->chip.pic,
3556 &pic_irqchip(kvm)->pics[0],
3557 sizeof(struct kvm_pic_state));
3558 break;
3559 case KVM_IRQCHIP_PIC_SLAVE:
3560 memcpy(&chip->chip.pic,
3561 &pic_irqchip(kvm)->pics[1],
3562 sizeof(struct kvm_pic_state));
3563 break;
3564 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003565 r = kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003566 break;
3567 default:
3568 r = -EINVAL;
3569 break;
3570 }
3571 return r;
3572}
3573
3574static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3575{
3576 int r;
3577
3578 r = 0;
3579 switch (chip->chip_id) {
3580 case KVM_IRQCHIP_PIC_MASTER:
Avi Kivityf4f51052010-09-19 18:44:07 +02003581 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003582 memcpy(&pic_irqchip(kvm)->pics[0],
3583 &chip->chip.pic,
3584 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003585 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003586 break;
3587 case KVM_IRQCHIP_PIC_SLAVE:
Avi Kivityf4f51052010-09-19 18:44:07 +02003588 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003589 memcpy(&pic_irqchip(kvm)->pics[1],
3590 &chip->chip.pic,
3591 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003592 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003593 break;
3594 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003595 r = kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003596 break;
3597 default:
3598 r = -EINVAL;
3599 break;
3600 }
3601 kvm_pic_update_irq(pic_irqchip(kvm));
3602 return r;
3603}
3604
Sheng Yange0f63cb2008-03-04 00:50:59 +08003605static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3606{
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003607 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003608 memcpy(ps, &kvm->arch.vpit->pit_state, sizeof(struct kvm_pit_state));
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003609 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303610 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003611}
3612
3613static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3614{
Andrew Honig01856042015-11-18 14:50:23 -08003615 int i;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003616 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003617 memcpy(&kvm->arch.vpit->pit_state, ps, sizeof(struct kvm_pit_state));
Andrew Honig01856042015-11-18 14:50:23 -08003618 for (i = 0; i < 3; i++)
3619 kvm_pit_load_count(kvm, i, ps->channels[i].count, 0);
Beth Kone9f42752009-07-07 11:50:38 -04003620 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303621 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003622}
3623
3624static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3625{
Beth Kone9f42752009-07-07 11:50:38 -04003626 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3627 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3628 sizeof(ps->channels));
3629 ps->flags = kvm->arch.vpit->pit_state.flags;
3630 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003631 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303632 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003633}
3634
3635static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3636{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303637 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08003638 int i;
Beth Kone9f42752009-07-07 11:50:38 -04003639 u32 prev_legacy, cur_legacy;
3640 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3641 prev_legacy = kvm->arch.vpit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
3642 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3643 if (!prev_legacy && cur_legacy)
3644 start = 1;
3645 memcpy(&kvm->arch.vpit->pit_state.channels, &ps->channels,
3646 sizeof(kvm->arch.vpit->pit_state.channels));
3647 kvm->arch.vpit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08003648 for (i = 0; i < 3; i++)
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01003649 kvm_pit_load_count(kvm, i, kvm->arch.vpit->pit_state.channels[i].count,
3650 start && i == 0);
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003651 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303652 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003653}
3654
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003655static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3656 struct kvm_reinject_control *control)
3657{
3658 if (!kvm->arch.vpit)
3659 return -ENXIO;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003660 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Avi Kivity26ef1922012-07-26 18:01:53 +03003661 kvm->arch.vpit->pit_state.reinject = control->pit_reinject;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003662 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003663 return 0;
3664}
3665
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003666/**
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003667 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
3668 * @kvm: kvm instance
3669 * @log: slot id and address to which we copy the log
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003670 *
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003671 * Steps 1-4 below provide general overview of dirty page logging. See
3672 * kvm_get_dirty_log_protect() function description for additional details.
3673 *
3674 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
3675 * always flush the TLB (step 4) even if previous step failed and the dirty
3676 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
3677 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
3678 * writes will be marked dirty for next log read.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003679 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003680 * 1. Take a snapshot of the bit and clear it if needed.
3681 * 2. Write protect the corresponding page.
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003682 * 3. Copy the snapshot to the userspace.
3683 * 4. Flush TLB's if needed.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003684 */
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003685int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003686{
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003687 bool is_dirty = false;
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003688 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003689
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003690 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003691
Kai Huang88178fd2015-01-28 10:54:27 +08003692 /*
3693 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
3694 */
3695 if (kvm_x86_ops->flush_log_dirty)
3696 kvm_x86_ops->flush_log_dirty(kvm);
3697
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003698 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003699
3700 /*
3701 * All the TLBs can be flushed out of mmu lock, see the comments in
3702 * kvm_mmu_slot_remove_write_access().
3703 */
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003704 lockdep_assert_held(&kvm->slots_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003705 if (is_dirty)
3706 kvm_flush_remote_tlbs(kvm);
3707
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003708 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003709 return r;
3710}
3711
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003712int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
3713 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003714{
3715 if (!irqchip_in_kernel(kvm))
3716 return -ENXIO;
3717
3718 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003719 irq_event->irq, irq_event->level,
3720 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003721 return 0;
3722}
3723
Nadav Amit90de4a12015-04-13 01:53:41 +03003724static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3725 struct kvm_enable_cap *cap)
3726{
3727 int r;
3728
3729 if (cap->flags)
3730 return -EINVAL;
3731
3732 switch (cap->cap) {
3733 case KVM_CAP_DISABLE_QUIRKS:
3734 kvm->arch.disabled_quirks = cap->args[0];
3735 r = 0;
3736 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07003737 case KVM_CAP_SPLIT_IRQCHIP: {
3738 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003739 r = -EINVAL;
3740 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
3741 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07003742 r = -EEXIST;
3743 if (irqchip_in_kernel(kvm))
3744 goto split_irqchip_unlock;
3745 if (atomic_read(&kvm->online_vcpus))
3746 goto split_irqchip_unlock;
3747 r = kvm_setup_empty_irq_routing(kvm);
3748 if (r)
3749 goto split_irqchip_unlock;
3750 /* Pairs with irqchip_in_kernel. */
3751 smp_wmb();
3752 kvm->arch.irqchip_split = true;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003753 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07003754 r = 0;
3755split_irqchip_unlock:
3756 mutex_unlock(&kvm->lock);
3757 break;
3758 }
Nadav Amit90de4a12015-04-13 01:53:41 +03003759 default:
3760 r = -EINVAL;
3761 break;
3762 }
3763 return r;
3764}
3765
Carsten Otte1fe779f2007-10-29 16:08:35 +01003766long kvm_arch_vm_ioctl(struct file *filp,
3767 unsigned int ioctl, unsigned long arg)
3768{
3769 struct kvm *kvm = filp->private_data;
3770 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003771 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003772 /*
3773 * This union makes it completely explicit to gcc-3.x
3774 * that these two variables' stack usage should be
3775 * combined, not added together.
3776 */
3777 union {
3778 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003779 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003780 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003781 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003782
3783 switch (ioctl) {
3784 case KVM_SET_TSS_ADDR:
3785 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003786 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003787 case KVM_SET_IDENTITY_MAP_ADDR: {
3788 u64 ident_addr;
3789
3790 r = -EFAULT;
3791 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3792 goto out;
3793 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08003794 break;
3795 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003796 case KVM_SET_NR_MMU_PAGES:
3797 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003798 break;
3799 case KVM_GET_NR_MMU_PAGES:
3800 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
3801 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003802 case KVM_CREATE_IRQCHIP: {
3803 struct kvm_pic *vpic;
3804
3805 mutex_lock(&kvm->lock);
3806 r = -EEXIST;
3807 if (kvm->arch.vpic)
3808 goto create_irqchip_unlock;
Avi Kivity3e515702012-03-05 14:23:29 +02003809 r = -EINVAL;
3810 if (atomic_read(&kvm->online_vcpus))
3811 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003812 r = -ENOMEM;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003813 vpic = kvm_create_pic(kvm);
3814 if (vpic) {
Carsten Otte1fe779f2007-10-29 16:08:35 +01003815 r = kvm_ioapic_init(kvm);
3816 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003817 mutex_lock(&kvm->slots_lock);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003818 kvm_destroy_pic(vpic);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003819 mutex_unlock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003820 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003821 }
3822 } else
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003823 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02003824 r = kvm_setup_default_irq_routing(kvm);
3825 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003826 mutex_lock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003827 mutex_lock(&kvm->irq_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003828 kvm_ioapic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003829 kvm_destroy_pic(vpic);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003830 mutex_unlock(&kvm->irq_lock);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003831 mutex_unlock(&kvm->slots_lock);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003832 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02003833 }
Paolo Bonzini71ba9942015-07-29 12:31:15 +02003834 /* Write kvm->irq_routing before kvm->arch.vpic. */
3835 smp_wmb();
3836 kvm->arch.vpic = vpic;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003837 create_irqchip_unlock:
3838 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003839 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003840 }
Sheng Yang78376992008-01-28 05:10:22 +08003841 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003842 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
3843 goto create_pit;
3844 case KVM_CREATE_PIT2:
3845 r = -EFAULT;
3846 if (copy_from_user(&u.pit_config, argp,
3847 sizeof(struct kvm_pit_config)))
3848 goto out;
3849 create_pit:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003850 mutex_lock(&kvm->slots_lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02003851 r = -EEXIST;
3852 if (kvm->arch.vpit)
3853 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08003854 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003855 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08003856 if (kvm->arch.vpit)
3857 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02003858 create_pit_unlock:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003859 mutex_unlock(&kvm->slots_lock);
Sheng Yang78376992008-01-28 05:10:22 +08003860 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003861 case KVM_GET_IRQCHIP: {
3862 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003863 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003864
Sasha Levinff5c2c02011-12-04 19:36:29 +02003865 chip = memdup_user(argp, sizeof(*chip));
3866 if (IS_ERR(chip)) {
3867 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003868 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003869 }
3870
Carsten Otte1fe779f2007-10-29 16:08:35 +01003871 r = -ENXIO;
Steve Rutherford49df6392015-07-29 23:21:40 -07003872 if (!irqchip_in_kernel(kvm) || irqchip_split(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003873 goto get_irqchip_out;
3874 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
3875 if (r)
3876 goto get_irqchip_out;
3877 r = -EFAULT;
3878 if (copy_to_user(argp, chip, sizeof *chip))
3879 goto get_irqchip_out;
3880 r = 0;
3881 get_irqchip_out:
3882 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003883 break;
3884 }
3885 case KVM_SET_IRQCHIP: {
3886 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003887 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003888
Sasha Levinff5c2c02011-12-04 19:36:29 +02003889 chip = memdup_user(argp, sizeof(*chip));
3890 if (IS_ERR(chip)) {
3891 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003892 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003893 }
3894
Carsten Otte1fe779f2007-10-29 16:08:35 +01003895 r = -ENXIO;
Steve Rutherford49df6392015-07-29 23:21:40 -07003896 if (!irqchip_in_kernel(kvm) || irqchip_split(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003897 goto set_irqchip_out;
3898 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
3899 if (r)
3900 goto set_irqchip_out;
3901 r = 0;
3902 set_irqchip_out:
3903 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003904 break;
3905 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08003906 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003907 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003908 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003909 goto out;
3910 r = -ENXIO;
3911 if (!kvm->arch.vpit)
3912 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003913 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003914 if (r)
3915 goto out;
3916 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003917 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003918 goto out;
3919 r = 0;
3920 break;
3921 }
3922 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003923 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003924 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003925 goto out;
3926 r = -ENXIO;
3927 if (!kvm->arch.vpit)
3928 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003929 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003930 break;
3931 }
Beth Kone9f42752009-07-07 11:50:38 -04003932 case KVM_GET_PIT2: {
3933 r = -ENXIO;
3934 if (!kvm->arch.vpit)
3935 goto out;
3936 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
3937 if (r)
3938 goto out;
3939 r = -EFAULT;
3940 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
3941 goto out;
3942 r = 0;
3943 break;
3944 }
3945 case KVM_SET_PIT2: {
3946 r = -EFAULT;
3947 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
3948 goto out;
3949 r = -ENXIO;
3950 if (!kvm->arch.vpit)
3951 goto out;
3952 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Beth Kone9f42752009-07-07 11:50:38 -04003953 break;
3954 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003955 case KVM_REINJECT_CONTROL: {
3956 struct kvm_reinject_control control;
3957 r = -EFAULT;
3958 if (copy_from_user(&control, argp, sizeof(control)))
3959 goto out;
3960 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003961 break;
3962 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02003963 case KVM_SET_BOOT_CPU_ID:
3964 r = 0;
3965 mutex_lock(&kvm->lock);
3966 if (atomic_read(&kvm->online_vcpus) != 0)
3967 r = -EBUSY;
3968 else
3969 kvm->arch.bsp_vcpu_id = arg;
3970 mutex_unlock(&kvm->lock);
3971 break;
Ed Swierkffde22a2009-10-15 15:21:43 -07003972 case KVM_XEN_HVM_CONFIG: {
3973 r = -EFAULT;
3974 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
3975 sizeof(struct kvm_xen_hvm_config)))
3976 goto out;
3977 r = -EINVAL;
3978 if (kvm->arch.xen_hvm_config.flags)
3979 goto out;
3980 r = 0;
3981 break;
3982 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003983 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003984 struct kvm_clock_data user_ns;
3985 u64 now_ns;
3986 s64 delta;
3987
3988 r = -EFAULT;
3989 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
3990 goto out;
3991
3992 r = -EINVAL;
3993 if (user_ns.flags)
3994 goto out;
3995
3996 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02003997 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10003998 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003999 delta = user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004000 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004001 kvm->arch.kvmclock_offset = delta;
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03004002 kvm_gen_update_masterclock(kvm);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004003 break;
4004 }
4005 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004006 struct kvm_clock_data user_ns;
4007 u64 now_ns;
4008
Avi Kivity395c6b02010-10-04 12:55:49 +02004009 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10004010 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004011 user_ns.clock = kvm->arch.kvmclock_offset + now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004012 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004013 user_ns.flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004014 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004015
4016 r = -EFAULT;
4017 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
4018 goto out;
4019 r = 0;
4020 break;
4021 }
Nadav Amit90de4a12015-04-13 01:53:41 +03004022 case KVM_ENABLE_CAP: {
4023 struct kvm_enable_cap cap;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004024
Nadav Amit90de4a12015-04-13 01:53:41 +03004025 r = -EFAULT;
4026 if (copy_from_user(&cap, argp, sizeof(cap)))
4027 goto out;
4028 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
4029 break;
4030 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01004031 default:
Radim Krčmářc274e032014-11-21 22:21:50 +01004032 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004033 }
4034out:
4035 return r;
4036}
4037
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08004038static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02004039{
4040 u32 dummy[2];
4041 unsigned i, j;
4042
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004043 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02004044 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
4045 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004046
4047 /*
4048 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004049 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004050 */
4051 switch (msrs_to_save[i]) {
4052 case MSR_IA32_BNDCFGS:
4053 if (!kvm_x86_ops->mpx_supported())
4054 continue;
4055 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004056 case MSR_TSC_AUX:
4057 if (!kvm_x86_ops->rdtscp_supported())
4058 continue;
4059 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004060 default:
4061 break;
4062 }
4063
Carsten Otte043405e2007-10-10 17:16:19 +02004064 if (j < i)
4065 msrs_to_save[j] = msrs_to_save[i];
4066 j++;
4067 }
4068 num_msrs_to_save = j;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004069
4070 for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) {
4071 switch (emulated_msrs[i]) {
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004072 case MSR_IA32_SMBASE:
4073 if (!kvm_x86_ops->cpu_has_high_real_mode_segbase())
4074 continue;
4075 break;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004076 default:
4077 break;
4078 }
4079
4080 if (j < i)
4081 emulated_msrs[j] = emulated_msrs[i];
4082 j++;
4083 }
4084 num_emulated_msrs = j;
Carsten Otte043405e2007-10-10 17:16:19 +02004085}
4086
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004087static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
4088 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004089{
Avi Kivity70252a12010-01-19 12:51:22 +02004090 int handled = 0;
4091 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004092
Avi Kivity70252a12010-01-19 12:51:22 +02004093 do {
4094 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004095 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004096 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
4097 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004098 break;
4099 handled += n;
4100 addr += n;
4101 len -= n;
4102 v += n;
4103 } while (len);
4104
4105 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004106}
4107
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004108static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004109{
Avi Kivity70252a12010-01-19 12:51:22 +02004110 int handled = 0;
4111 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004112
Avi Kivity70252a12010-01-19 12:51:22 +02004113 do {
4114 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004115 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004116 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
4117 addr, n, v))
4118 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004119 break;
4120 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
4121 handled += n;
4122 addr += n;
4123 len -= n;
4124 v += n;
4125 } while (len);
4126
4127 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004128}
4129
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004130static void kvm_set_segment(struct kvm_vcpu *vcpu,
4131 struct kvm_segment *var, int seg)
4132{
4133 kvm_x86_ops->set_segment(vcpu, var, seg);
4134}
4135
4136void kvm_get_segment(struct kvm_vcpu *vcpu,
4137 struct kvm_segment *var, int seg)
4138{
4139 kvm_x86_ops->get_segment(vcpu, var, seg);
4140}
4141
Paolo Bonzini54987b72014-09-02 13:23:06 +02004142gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
4143 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004144{
4145 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004146
4147 BUG_ON(!mmu_is_nested(vcpu));
4148
4149 /* NPT walks are always user-walks */
4150 access |= PFERR_USER_MASK;
Paolo Bonzini54987b72014-09-02 13:23:06 +02004151 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004152
4153 return t_gpa;
4154}
4155
Avi Kivityab9ae312010-11-22 17:53:26 +02004156gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
4157 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004158{
4159 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02004160 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004161}
4162
Avi Kivityab9ae312010-11-22 17:53:26 +02004163 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
4164 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004165{
4166 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4167 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004168 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004169}
4170
Avi Kivityab9ae312010-11-22 17:53:26 +02004171gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
4172 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004173{
4174 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4175 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004176 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004177}
4178
4179/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02004180gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
4181 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004182{
Avi Kivityab9ae312010-11-22 17:53:26 +02004183 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004184}
4185
4186static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
4187 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004188 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004189{
4190 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004191 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004192
4193 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004194 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02004195 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004196 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02004197 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004198 int ret;
4199
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004200 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004201 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004202 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
4203 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004204 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004205 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004206 goto out;
4207 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01004208
Izik Eidus77c20022008-12-29 01:42:19 +02004209 bytes -= toread;
4210 data += toread;
4211 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004212 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004213out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004214 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004215}
Izik Eidus77c20022008-12-29 01:42:19 +02004216
Gleb Natapov1871c602010-02-10 14:21:32 +02004217/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03004218static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
4219 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004220 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004221{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004222 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004223 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004224 unsigned offset;
4225 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004226
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004227 /* Inline kvm_read_guest_virt_helper for speed. */
4228 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
4229 exception);
4230 if (unlikely(gpa == UNMAPPED_GVA))
4231 return X86EMUL_PROPAGATE_FAULT;
4232
4233 offset = addr & (PAGE_SIZE-1);
4234 if (WARN_ON(offset + bytes > PAGE_SIZE))
4235 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004236 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
4237 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004238 if (unlikely(ret < 0))
4239 return X86EMUL_IO_NEEDED;
4240
4241 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02004242}
4243
Nadav Har'El064aea72011-05-25 23:04:56 +03004244int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004245 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004246 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004247{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004248 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004249 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004250
Gleb Natapov1871c602010-02-10 14:21:32 +02004251 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004252 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004253}
Nadav Har'El064aea72011-05-25 23:04:56 +03004254EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004255
Avi Kivity0f65dd72011-04-20 13:37:53 +03004256static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4257 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004258 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004259{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004260 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004261 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004262}
4263
Radim Krčmář7a036a62015-10-30 16:36:24 +01004264static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
4265 unsigned long addr, void *val, unsigned int bytes)
4266{
4267 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4268 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
4269
4270 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
4271}
4272
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004273int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004274 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004275 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004276 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004277{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004278 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004279 void *data = val;
4280 int r = X86EMUL_CONTINUE;
4281
4282 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004283 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4284 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004285 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004286 unsigned offset = addr & (PAGE_SIZE-1);
4287 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4288 int ret;
4289
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004290 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004291 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004292 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02004293 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004294 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004295 goto out;
4296 }
4297
4298 bytes -= towrite;
4299 data += towrite;
4300 addr += towrite;
4301 }
4302out:
4303 return r;
4304}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004305EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004306
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004307static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4308 gpa_t *gpa, struct x86_exception *exception,
4309 bool write)
4310{
Avi Kivity97d64b72012-09-12 14:52:00 +03004311 u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
4312 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004313
Avi Kivity97d64b72012-09-12 14:52:00 +03004314 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08004315 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
4316 vcpu->arch.access, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004317 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4318 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004319 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004320 return 1;
4321 }
4322
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004323 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4324
4325 if (*gpa == UNMAPPED_GVA)
4326 return -1;
4327
4328 /* For APIC access vmexit */
4329 if ((*gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4330 return 1;
4331
Xiao Guangrong4f022642011-07-12 03:34:24 +08004332 if (vcpu_match_mmio_gpa(vcpu, *gpa)) {
4333 trace_vcpu_match_mmio(gva, *gpa, write, true);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004334 return 1;
Xiao Guangrong4f022642011-07-12 03:34:24 +08004335 }
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004336
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004337 return 0;
4338}
4339
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004340int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004341 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004342{
4343 int ret;
4344
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004345 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004346 if (ret < 0)
4347 return 0;
Xiao Guangrongf57f2ef2011-09-22 16:56:39 +08004348 kvm_mmu_pte_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004349 return 1;
4350}
4351
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004352struct read_write_emulator_ops {
4353 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4354 int bytes);
4355 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4356 void *val, int bytes);
4357 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4358 int bytes, void *val);
4359 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4360 void *val, int bytes);
4361 bool write;
4362};
4363
4364static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4365{
4366 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004367 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Avi Kivityf78146b2012-04-18 19:22:47 +03004368 vcpu->mmio_fragments[0].gpa, *(u64 *)val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004369 vcpu->mmio_read_completed = 0;
4370 return 1;
4371 }
4372
4373 return 0;
4374}
4375
4376static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4377 void *val, int bytes)
4378{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004379 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004380}
4381
4382static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4383 void *val, int bytes)
4384{
4385 return emulator_write_phys(vcpu, gpa, val, bytes);
4386}
4387
4388static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4389{
4390 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4391 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4392}
4393
4394static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4395 void *val, int bytes)
4396{
4397 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4398 return X86EMUL_IO_NEEDED;
4399}
4400
4401static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4402 void *val, int bytes)
4403{
Avi Kivityf78146b2012-04-18 19:22:47 +03004404 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
4405
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004406 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004407 return X86EMUL_CONTINUE;
4408}
4409
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004410static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004411 .read_write_prepare = read_prepare,
4412 .read_write_emulate = read_emulate,
4413 .read_write_mmio = vcpu_mmio_read,
4414 .read_write_exit_mmio = read_exit_mmio,
4415};
4416
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004417static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004418 .read_write_emulate = write_emulate,
4419 .read_write_mmio = write_mmio,
4420 .read_write_exit_mmio = write_exit_mmio,
4421 .write = true,
4422};
4423
Xiao Guangrong22388a32011-07-13 14:32:31 +08004424static int emulator_read_write_onepage(unsigned long addr, void *val,
4425 unsigned int bytes,
4426 struct x86_exception *exception,
4427 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004428 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004429{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004430 gpa_t gpa;
4431 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004432 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03004433 struct kvm_mmio_fragment *frag;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004434
4435 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004436
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004437 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004438 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004439
4440 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004441 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004442 goto mmio;
4443
Xiao Guangrong22388a32011-07-13 14:32:31 +08004444 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004445 return X86EMUL_CONTINUE;
4446
4447mmio:
4448 /*
4449 * Is this MMIO handled locally?
4450 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004451 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004452 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004453 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004454
Avi Kivity70252a12010-01-19 12:51:22 +02004455 gpa += handled;
4456 bytes -= handled;
4457 val += handled;
4458
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004459 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
4460 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
4461 frag->gpa = gpa;
4462 frag->data = val;
4463 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03004464 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004465}
4466
Xiubo Li52eb5a62015-03-13 17:39:45 +08004467static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
4468 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004469 void *val, unsigned int bytes,
4470 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004471 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004472{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004473 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03004474 gpa_t gpa;
4475 int rc;
4476
4477 if (ops->read_write_prepare &&
4478 ops->read_write_prepare(vcpu, val, bytes))
4479 return X86EMUL_CONTINUE;
4480
4481 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004482
Carsten Ottebbd9b642007-10-30 18:44:21 +01004483 /* Crossing a page boundary? */
4484 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03004485 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004486
4487 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004488 rc = emulator_read_write_onepage(addr, val, now, exception,
4489 vcpu, ops);
4490
Carsten Ottebbd9b642007-10-30 18:44:21 +01004491 if (rc != X86EMUL_CONTINUE)
4492 return rc;
4493 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02004494 if (ctxt->mode != X86EMUL_MODE_PROT64)
4495 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004496 val += now;
4497 bytes -= now;
4498 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004499
Avi Kivityf78146b2012-04-18 19:22:47 +03004500 rc = emulator_read_write_onepage(addr, val, bytes, exception,
4501 vcpu, ops);
4502 if (rc != X86EMUL_CONTINUE)
4503 return rc;
4504
4505 if (!vcpu->mmio_nr_fragments)
4506 return rc;
4507
4508 gpa = vcpu->mmio_fragments[0].gpa;
4509
4510 vcpu->mmio_needed = 1;
4511 vcpu->mmio_cur_fragment = 0;
4512
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004513 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03004514 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
4515 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4516 vcpu->run->mmio.phys_addr = gpa;
4517
4518 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004519}
4520
4521static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4522 unsigned long addr,
4523 void *val,
4524 unsigned int bytes,
4525 struct x86_exception *exception)
4526{
4527 return emulator_read_write(ctxt, addr, val, bytes,
4528 exception, &read_emultor);
4529}
4530
Xiubo Li52eb5a62015-03-13 17:39:45 +08004531static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004532 unsigned long addr,
4533 const void *val,
4534 unsigned int bytes,
4535 struct x86_exception *exception)
4536{
4537 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4538 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004539}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004540
Avi Kivitydaea3e72010-03-15 13:59:54 +02004541#define CMPXCHG_TYPE(t, ptr, old, new) \
4542 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4543
4544#ifdef CONFIG_X86_64
4545# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4546#else
4547# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004548 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004549#endif
4550
Avi Kivity0f65dd72011-04-20 13:37:53 +03004551static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4552 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004553 const void *old,
4554 const void *new,
4555 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004556 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004557{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004558 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004559 gpa_t gpa;
4560 struct page *page;
4561 char *kaddr;
4562 bool exchanged;
4563
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004564 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004565 if (bytes > 8 || (bytes & (bytes - 1)))
4566 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004567
Avi Kivitydaea3e72010-03-15 13:59:54 +02004568 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004569
Avi Kivitydaea3e72010-03-15 13:59:54 +02004570 if (gpa == UNMAPPED_GVA ||
4571 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4572 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004573
Avi Kivitydaea3e72010-03-15 13:59:54 +02004574 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4575 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004576
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004577 page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +08004578 if (is_error_page(page))
Wei Yongjunc19b8bd62010-07-15 08:51:58 +08004579 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004580
Cong Wang8fd75e12011-11-25 23:14:17 +08004581 kaddr = kmap_atomic(page);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004582 kaddr += offset_in_page(gpa);
4583 switch (bytes) {
4584 case 1:
4585 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4586 break;
4587 case 2:
4588 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4589 break;
4590 case 4:
4591 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4592 break;
4593 case 8:
4594 exchanged = CMPXCHG64(kaddr, old, new);
4595 break;
4596 default:
4597 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004598 }
Cong Wang8fd75e12011-11-25 23:14:17 +08004599 kunmap_atomic(kaddr);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004600 kvm_release_page_dirty(page);
4601
4602 if (!exchanged)
4603 return X86EMUL_CMPXCHG_FAILED;
4604
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004605 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrongf57f2ef2011-09-22 16:56:39 +08004606 kvm_mmu_pte_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004607
4608 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004609
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004610emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004611 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004612
Avi Kivity0f65dd72011-04-20 13:37:53 +03004613 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004614}
4615
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004616static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4617{
4618 /* TODO: String I/O for in kernel device */
4619 int r;
4620
4621 if (vcpu->arch.pio.in)
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004622 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004623 vcpu->arch.pio.size, pd);
4624 else
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004625 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004626 vcpu->arch.pio.port, vcpu->arch.pio.size,
4627 pd);
4628 return r;
4629}
4630
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004631static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4632 unsigned short port, void *val,
4633 unsigned int count, bool in)
4634{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004635 vcpu->arch.pio.port = port;
4636 vcpu->arch.pio.in = in;
4637 vcpu->arch.pio.count = count;
4638 vcpu->arch.pio.size = size;
4639
4640 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4641 vcpu->arch.pio.count = 0;
4642 return 1;
4643 }
4644
4645 vcpu->run->exit_reason = KVM_EXIT_IO;
4646 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4647 vcpu->run->io.size = size;
4648 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4649 vcpu->run->io.count = count;
4650 vcpu->run->io.port = port;
4651
4652 return 0;
4653}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004654
Avi Kivityca1d4a92011-04-20 13:37:53 +03004655static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4656 int size, unsigned short port, void *val,
4657 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004658{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004659 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004660 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004661
Gleb Natapov79729952010-03-18 15:20:24 +02004662 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004663 goto data_avail;
4664
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004665 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4666 if (ret) {
4667data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004668 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004669 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02004670 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004671 return 1;
4672 }
4673
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004674 return 0;
4675}
4676
Avi Kivityca1d4a92011-04-20 13:37:53 +03004677static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4678 int size, unsigned short port,
4679 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004680{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004681 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4682
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004683 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004684 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004685 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004686}
4687
Carsten Ottebbd9b642007-10-30 18:44:21 +01004688static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4689{
4690 return kvm_x86_ops->get_segment_base(vcpu, seg);
4691}
4692
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004693static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004694{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004695 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004696}
4697
Joel Schopp5cb56052015-03-02 13:43:31 -06004698int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004699{
4700 if (!need_emulate_wbinvd(vcpu))
4701 return X86EMUL_CONTINUE;
4702
4703 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004704 int cpu = get_cpu();
4705
4706 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004707 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4708 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004709 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004710 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004711 } else
4712 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004713 return X86EMUL_CONTINUE;
4714}
Joel Schopp5cb56052015-03-02 13:43:31 -06004715
4716int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4717{
4718 kvm_x86_ops->skip_emulated_instruction(vcpu);
4719 return kvm_emulate_wbinvd_noskip(vcpu);
4720}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004721EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4722
Joel Schopp5cb56052015-03-02 13:43:31 -06004723
4724
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004725static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4726{
Joel Schopp5cb56052015-03-02 13:43:31 -06004727 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004728}
4729
Xiubo Li52eb5a62015-03-13 17:39:45 +08004730static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
4731 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004732{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004733 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004734}
4735
Xiubo Li52eb5a62015-03-13 17:39:45 +08004736static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
4737 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004738{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004739
Avi Kivity717746e2011-04-20 13:37:53 +03004740 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004741}
4742
Gleb Natapov52a46612010-03-18 15:20:03 +02004743static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4744{
4745 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4746}
4747
Avi Kivity717746e2011-04-20 13:37:53 +03004748static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004749{
Avi Kivity717746e2011-04-20 13:37:53 +03004750 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004751 unsigned long value;
4752
4753 switch (cr) {
4754 case 0:
4755 value = kvm_read_cr0(vcpu);
4756 break;
4757 case 2:
4758 value = vcpu->arch.cr2;
4759 break;
4760 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004761 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004762 break;
4763 case 4:
4764 value = kvm_read_cr4(vcpu);
4765 break;
4766 case 8:
4767 value = kvm_get_cr8(vcpu);
4768 break;
4769 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004770 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02004771 return 0;
4772 }
4773
4774 return value;
4775}
4776
Avi Kivity717746e2011-04-20 13:37:53 +03004777static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02004778{
Avi Kivity717746e2011-04-20 13:37:53 +03004779 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03004780 int res = 0;
4781
Gleb Natapov52a46612010-03-18 15:20:03 +02004782 switch (cr) {
4783 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004784 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004785 break;
4786 case 2:
4787 vcpu->arch.cr2 = val;
4788 break;
4789 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004790 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004791 break;
4792 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004793 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004794 break;
4795 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004796 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004797 break;
4798 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004799 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03004800 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02004801 }
Gleb Natapov0f122442010-04-28 19:15:31 +03004802
4803 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02004804}
4805
Avi Kivity717746e2011-04-20 13:37:53 +03004806static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02004807{
Avi Kivity717746e2011-04-20 13:37:53 +03004808 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02004809}
4810
Avi Kivity4bff1e862011-04-20 13:37:53 +03004811static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004812{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004813 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004814}
4815
Avi Kivity4bff1e862011-04-20 13:37:53 +03004816static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004817{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004818 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004819}
4820
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03004821static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4822{
4823 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
4824}
4825
4826static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4827{
4828 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
4829}
4830
Avi Kivity4bff1e862011-04-20 13:37:53 +03004831static unsigned long emulator_get_cached_segment_base(
4832 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03004833{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004834 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03004835}
4836
Avi Kivity1aa36612011-04-27 13:20:30 +03004837static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
4838 struct desc_struct *desc, u32 *base3,
4839 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004840{
4841 struct kvm_segment var;
4842
Avi Kivity4bff1e862011-04-20 13:37:53 +03004843 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03004844 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004845
Gleb Natapov378a8b02013-01-21 15:36:48 +02004846 if (var.unusable) {
4847 memset(desc, 0, sizeof(*desc));
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004848 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02004849 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004850
4851 if (var.g)
4852 var.limit >>= 12;
4853 set_desc_limit(desc, var.limit);
4854 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02004855#ifdef CONFIG_X86_64
4856 if (base3)
4857 *base3 = var.base >> 32;
4858#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004859 desc->type = var.type;
4860 desc->s = var.s;
4861 desc->dpl = var.dpl;
4862 desc->p = var.present;
4863 desc->avl = var.avl;
4864 desc->l = var.l;
4865 desc->d = var.db;
4866 desc->g = var.g;
4867
4868 return true;
4869}
4870
Avi Kivity1aa36612011-04-27 13:20:30 +03004871static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
4872 struct desc_struct *desc, u32 base3,
4873 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004874{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004875 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004876 struct kvm_segment var;
4877
Avi Kivity1aa36612011-04-27 13:20:30 +03004878 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004879 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02004880#ifdef CONFIG_X86_64
4881 var.base |= ((u64)base3) << 32;
4882#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004883 var.limit = get_desc_limit(desc);
4884 if (desc->g)
4885 var.limit = (var.limit << 12) | 0xfff;
4886 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004887 var.dpl = desc->dpl;
4888 var.db = desc->d;
4889 var.s = desc->s;
4890 var.l = desc->l;
4891 var.g = desc->g;
4892 var.avl = desc->avl;
4893 var.present = desc->p;
4894 var.unusable = !var.present;
4895 var.padding = 0;
4896
4897 kvm_set_segment(vcpu, &var, seg);
4898 return;
4899}
4900
Avi Kivity717746e2011-04-20 13:37:53 +03004901static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
4902 u32 msr_index, u64 *pdata)
4903{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004904 struct msr_data msr;
4905 int r;
4906
4907 msr.index = msr_index;
4908 msr.host_initiated = false;
4909 r = kvm_get_msr(emul_to_vcpu(ctxt), &msr);
4910 if (r)
4911 return r;
4912
4913 *pdata = msr.data;
4914 return 0;
Avi Kivity717746e2011-04-20 13:37:53 +03004915}
4916
4917static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
4918 u32 msr_index, u64 data)
4919{
Will Auld8fe8ab42012-11-29 12:42:12 -08004920 struct msr_data msr;
4921
4922 msr.data = data;
4923 msr.index = msr_index;
4924 msr.host_initiated = false;
4925 return kvm_set_msr(emul_to_vcpu(ctxt), &msr);
Avi Kivity717746e2011-04-20 13:37:53 +03004926}
4927
Paolo Bonzini64d60672015-05-07 11:36:11 +02004928static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
4929{
4930 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4931
4932 return vcpu->arch.smbase;
4933}
4934
4935static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
4936{
4937 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4938
4939 vcpu->arch.smbase = smbase;
4940}
4941
Nadav Amit67f4d422014-06-02 18:34:09 +03004942static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
4943 u32 pmc)
4944{
Wei Huangc6702c92015-06-19 13:44:45 +02004945 return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03004946}
4947
Avi Kivity222d21a2011-11-10 14:57:30 +02004948static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
4949 u32 pmc, u64 *pdata)
4950{
Wei Huangc6702c92015-06-19 13:44:45 +02004951 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02004952}
4953
Avi Kivity6c3287f2011-04-20 15:43:05 +03004954static void emulator_halt(struct x86_emulate_ctxt *ctxt)
4955{
4956 emul_to_vcpu(ctxt)->arch.halt_request = 1;
4957}
4958
Avi Kivity5037f6f2011-03-28 16:53:59 +02004959static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
4960{
4961 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03004962 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02004963 /*
4964 * CR0.TS may reference the host fpu state, not the guest fpu state,
4965 * so it may be clear at this point.
4966 */
4967 clts();
4968}
4969
4970static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
4971{
4972 preempt_enable();
4973}
4974
Avi Kivity29535382011-04-20 13:37:53 +03004975static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004976 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02004977 enum x86_intercept_stage stage)
4978{
Avi Kivity29535382011-04-20 13:37:53 +03004979 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02004980}
4981
Avi Kivity0017f932012-06-07 14:10:16 +03004982static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01004983 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
4984{
Avi Kivity0017f932012-06-07 14:10:16 +03004985 kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01004986}
4987
Avi Kivitydd856ef2012-08-27 23:46:17 +03004988static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
4989{
4990 return kvm_register_read(emul_to_vcpu(ctxt), reg);
4991}
4992
4993static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
4994{
4995 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
4996}
4997
Nadav Amit801806d2015-01-26 09:32:23 +02004998static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
4999{
5000 kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked);
5001}
5002
Mathias Krause0225fb52012-08-30 01:30:16 +02005003static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03005004 .read_gpr = emulator_read_gpr,
5005 .write_gpr = emulator_write_gpr,
Gleb Natapov1871c602010-02-10 14:21:32 +02005006 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005007 .write_std = kvm_write_guest_virt_system,
Radim Krčmář7a036a62015-10-30 16:36:24 +01005008 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02005009 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005010 .read_emulated = emulator_read_emulated,
5011 .write_emulated = emulator_write_emulated,
5012 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03005013 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005014 .pio_in_emulated = emulator_pio_in_emulated,
5015 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03005016 .get_segment = emulator_get_segment,
5017 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03005018 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005019 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005020 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005021 .set_gdt = emulator_set_gdt,
5022 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02005023 .get_cr = emulator_get_cr,
5024 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02005025 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03005026 .get_dr = emulator_get_dr,
5027 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02005028 .get_smbase = emulator_get_smbase,
5029 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03005030 .set_msr = emulator_set_msr,
5031 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03005032 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02005033 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03005034 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03005035 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03005036 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02005037 .get_fpu = emulator_get_fpu,
5038 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005039 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005040 .get_cpuid = emulator_get_cpuid,
Nadav Amit801806d2015-01-26 09:32:23 +02005041 .set_nmi_mask = emulator_set_nmi_mask,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005042};
5043
Gleb Natapov95cb2292010-04-28 19:15:43 +03005044static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
5045{
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005046 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03005047 /*
5048 * an sti; sti; sequence only disable interrupts for the first
5049 * instruction. So, if the last instruction, be it emulated or
5050 * not, left the system with the INT_STI flag enabled, it
5051 * means that the last instruction is an sti. We should not
5052 * leave the flag on in this case. The same goes for mov ss
5053 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005054 if (int_shadow & mask)
5055 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005056 if (unlikely(int_shadow || mask)) {
Gleb Natapov95cb2292010-04-28 19:15:43 +03005057 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005058 if (!mask)
5059 kvm_make_request(KVM_REQ_EVENT, vcpu);
5060 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03005061}
5062
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005063static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03005064{
5065 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02005066 if (ctxt->exception.vector == PF_VECTOR)
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005067 return kvm_propagate_fault(vcpu, &ctxt->exception);
5068
5069 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02005070 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
5071 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03005072 else
Avi Kivityda9cb572010-11-22 17:53:21 +02005073 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005074 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03005075}
5076
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005077static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
5078{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005079 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005080 int cs_db, cs_l;
5081
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005082 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5083
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005084 ctxt->eflags = kvm_get_rflags(vcpu);
5085 ctxt->eip = kvm_rip_read(vcpu);
5086 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
5087 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03005088 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005089 cs_db ? X86EMUL_MODE_PROT32 :
5090 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005091 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005092 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
5093 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005094 ctxt->emul_flags = vcpu->arch.hflags;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005095
Avi Kivitydd856ef2012-08-27 23:46:17 +03005096 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005097 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005098}
5099
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005100int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02005101{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005102 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02005103 int ret;
5104
5105 init_emulate_ctxt(vcpu);
5106
Avi Kivity9dac77f2011-06-01 15:34:25 +03005107 ctxt->op_bytes = 2;
5108 ctxt->ad_bytes = 2;
5109 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005110 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02005111
5112 if (ret != X86EMUL_CONTINUE)
5113 return EMULATE_FAIL;
5114
Avi Kivity9dac77f2011-06-01 15:34:25 +03005115 ctxt->eip = ctxt->_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005116 kvm_rip_write(vcpu, ctxt->eip);
5117 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02005118
5119 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005120 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02005121 else
5122 vcpu->arch.interrupt.pending = false;
5123
5124 return EMULATE_DONE;
5125}
5126EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
5127
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005128static int handle_emulation_failure(struct kvm_vcpu *vcpu)
5129{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005130 int r = EMULATE_DONE;
5131
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005132 ++vcpu->stat.insn_emulation_fail;
5133 trace_kvm_emulate_insn_failed(vcpu);
Nadav Amita2b9e6c2014-09-17 02:50:50 +03005134 if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005135 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5136 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5137 vcpu->run->internal.ndata = 0;
5138 r = EMULATE_FAIL;
5139 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005140 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005141
5142 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005143}
5144
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005145static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2,
Gleb Natapov991eebf2013-04-11 12:10:51 +03005146 bool write_fault_to_shadow_pgtable,
5147 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03005148{
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005149 gpa_t gpa = cr2;
Dan Williamsba049e92016-01-15 16:56:11 -08005150 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005151
Gleb Natapov991eebf2013-04-11 12:10:51 +03005152 if (emulation_type & EMULTYPE_NO_REEXECUTE)
5153 return false;
5154
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005155 if (!vcpu->arch.mmu.direct_map) {
5156 /*
5157 * Write permission should be allowed since only
5158 * write access need to be emulated.
5159 */
5160 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03005161
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005162 /*
5163 * If the mapping is invalid in guest, let cpu retry
5164 * it to generate fault.
5165 */
5166 if (gpa == UNMAPPED_GVA)
5167 return true;
5168 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005169
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005170 /*
5171 * Do not retry the unhandleable instruction if it faults on the
5172 * readonly host memory, otherwise it will goto a infinite loop:
5173 * retry instruction -> write #PF -> emulation fail -> retry
5174 * instruction -> ...
5175 */
5176 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005177
5178 /*
5179 * If the instruction failed on the error pfn, it can not be fixed,
5180 * report the error to userspace.
5181 */
5182 if (is_error_noslot_pfn(pfn))
5183 return false;
5184
5185 kvm_release_pfn_clean(pfn);
5186
5187 /* The instructions are well-emulated on direct mmu. */
5188 if (vcpu->arch.mmu.direct_map) {
5189 unsigned int indirect_shadow_pages;
5190
5191 spin_lock(&vcpu->kvm->mmu_lock);
5192 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
5193 spin_unlock(&vcpu->kvm->mmu_lock);
5194
5195 if (indirect_shadow_pages)
5196 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
5197
Gleb Natapova6f177e2010-07-08 12:41:12 +03005198 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005199 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005200
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005201 /*
5202 * if emulation was due to access to shadowed page table
5203 * and it failed try to unshadow page and re-enter the
5204 * guest to let CPU execute the instruction.
5205 */
5206 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005207
5208 /*
5209 * If the access faults on its page table, it can not
5210 * be fixed by unprotecting shadow page and it should
5211 * be reported to userspace.
5212 */
5213 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005214}
5215
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005216static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
5217 unsigned long cr2, int emulation_type)
5218{
5219 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5220 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
5221
5222 last_retry_eip = vcpu->arch.last_retry_eip;
5223 last_retry_addr = vcpu->arch.last_retry_addr;
5224
5225 /*
5226 * If the emulation is caused by #PF and it is non-page_table
5227 * writing instruction, it means the VM-EXIT is caused by shadow
5228 * page protected, we can zap the shadow page and retry this
5229 * instruction directly.
5230 *
5231 * Note: if the guest uses a non-page-table modifying instruction
5232 * on the PDE that points to the instruction, then we will unmap
5233 * the instruction and go to an infinite loop. So, we cache the
5234 * last retried eip and the last fault address, if we meet the eip
5235 * and the address again, we can break out of the potential infinite
5236 * loop.
5237 */
5238 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
5239
5240 if (!(emulation_type & EMULTYPE_RETRY))
5241 return false;
5242
5243 if (x86_page_table_writing_insn(ctxt))
5244 return false;
5245
5246 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
5247 return false;
5248
5249 vcpu->arch.last_retry_eip = ctxt->eip;
5250 vcpu->arch.last_retry_addr = cr2;
5251
5252 if (!vcpu->arch.mmu.direct_map)
5253 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
5254
Xiao Guangrong22368022013-01-13 23:44:12 +08005255 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005256
5257 return true;
5258}
5259
Gleb Natapov716d51a2012-09-03 15:24:26 +03005260static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
5261static int complete_emulated_pio(struct kvm_vcpu *vcpu);
5262
Paolo Bonzini64d60672015-05-07 11:36:11 +02005263static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02005264{
Paolo Bonzini64d60672015-05-07 11:36:11 +02005265 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02005266 /* This is a good place to trace that we are exiting SMM. */
5267 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
5268
Paolo Bonzini64d60672015-05-07 11:36:11 +02005269 if (unlikely(vcpu->arch.smi_pending)) {
5270 kvm_make_request(KVM_REQ_SMI, vcpu);
5271 vcpu->arch.smi_pending = 0;
Paolo Bonzinicd7764f2015-06-04 10:41:21 +02005272 } else {
5273 /* Process a latched INIT, if any. */
5274 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005275 }
5276 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02005277
5278 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005279}
5280
5281static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags)
5282{
5283 unsigned changed = vcpu->arch.hflags ^ emul_flags;
5284
Paolo Bonzinia5845392015-04-01 18:18:53 +02005285 vcpu->arch.hflags = emul_flags;
Paolo Bonzini64d60672015-05-07 11:36:11 +02005286
5287 if (changed & HF_SMM_MASK)
5288 kvm_smm_changed(vcpu);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005289}
5290
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005291static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
5292 unsigned long *db)
5293{
5294 u32 dr6 = 0;
5295 int i;
5296 u32 enable, rwlen;
5297
5298 enable = dr7;
5299 rwlen = dr7 >> 16;
5300 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
5301 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
5302 dr6 |= (1 << i);
5303 return dr6;
5304}
5305
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005306static void kvm_vcpu_check_singlestep(struct kvm_vcpu *vcpu, unsigned long rflags, int *r)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005307{
5308 struct kvm_run *kvm_run = vcpu->run;
5309
5310 /*
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005311 * rflags is the old, "raw" value of the flags. The new value has
5312 * not been saved yet.
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005313 *
5314 * This is correct even for TF set by the guest, because "the
5315 * processor will not generate this exception after the instruction
5316 * that sets the TF flag".
5317 */
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005318 if (unlikely(rflags & X86_EFLAGS_TF)) {
5319 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005320 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 |
5321 DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005322 kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip;
5323 kvm_run->debug.arch.exception = DB_VECTOR;
5324 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5325 *r = EMULATE_USER_EXIT;
5326 } else {
5327 vcpu->arch.emulate_ctxt.eflags &= ~X86_EFLAGS_TF;
5328 /*
5329 * "Certain debug exceptions may clear bit 0-3. The
5330 * remaining contents of the DR6 register are never
5331 * cleared by the processor".
5332 */
5333 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005334 vcpu->arch.dr6 |= DR6_BS | DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005335 kvm_queue_exception(vcpu, DB_VECTOR);
5336 }
5337 }
5338}
5339
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005340static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
5341{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005342 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
5343 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005344 struct kvm_run *kvm_run = vcpu->run;
5345 unsigned long eip = kvm_get_linear_rip(vcpu);
5346 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005347 vcpu->arch.guest_debug_dr7,
5348 vcpu->arch.eff_db);
5349
5350 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005351 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02005352 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005353 kvm_run->debug.arch.exception = DB_VECTOR;
5354 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5355 *r = EMULATE_USER_EXIT;
5356 return true;
5357 }
5358 }
5359
Nadav Amit4161a562014-07-17 01:19:31 +03005360 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
5361 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005362 unsigned long eip = kvm_get_linear_rip(vcpu);
5363 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005364 vcpu->arch.dr7,
5365 vcpu->arch.db);
5366
5367 if (dr6 != 0) {
5368 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005369 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005370 kvm_queue_exception(vcpu, DB_VECTOR);
5371 *r = EMULATE_DONE;
5372 return true;
5373 }
5374 }
5375
5376 return false;
5377}
5378
Andre Przywara51d8b662010-12-21 11:12:02 +01005379int x86_emulate_instruction(struct kvm_vcpu *vcpu,
5380 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01005381 int emulation_type,
5382 void *insn,
5383 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005384{
Gleb Natapov95cb2292010-04-28 19:15:43 +03005385 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005386 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005387 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005388 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005389
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005390 /*
5391 * Clear write_fault_to_shadow_pgtable here to ensure it is
5392 * never reused.
5393 */
5394 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03005395 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03005396
Sheng Yang571008d2008-01-02 14:49:22 +08005397 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005398 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005399
5400 /*
5401 * We will reenter on the same instruction since
5402 * we do not set complete_userspace_io. This does not
5403 * handle watchpoints yet, those would be handled in
5404 * the emulate_ops.
5405 */
5406 if (kvm_vcpu_check_breakpoint(vcpu, &r))
5407 return r;
5408
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005409 ctxt->interruptibility = 0;
5410 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02005411 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005412 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005413
Borislav Petkovb51e9742013-09-22 16:44:52 +02005414 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02005415
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005416 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02005417
Avi Kivitye46479f2010-04-11 13:05:16 +03005418 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02005419 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09005420 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02005421 if (emulation_type & EMULTYPE_TRAP_UD)
5422 return EMULATE_FAIL;
Gleb Natapov991eebf2013-04-11 12:10:51 +03005423 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5424 emulation_type))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005425 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005426 if (emulation_type & EMULTYPE_SKIP)
5427 return EMULATE_FAIL;
5428 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005429 }
5430 }
5431
Gleb Natapovba8afb62009-04-12 13:36:57 +03005432 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03005433 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03005434 if (ctxt->eflags & X86_EFLAGS_RF)
5435 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Gleb Natapovba8afb62009-04-12 13:36:57 +03005436 return EMULATE_DONE;
5437 }
5438
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005439 if (retry_instruction(ctxt, cr2, emulation_type))
5440 return EMULATE_DONE;
5441
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005442 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005443 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005444 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
5445 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03005446 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005447 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005448
Gleb Natapov5cd21912010-03-18 15:20:26 +02005449restart:
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005450 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005451
Joerg Roedel775fde82011-04-04 12:39:24 +02005452 if (r == EMULATION_INTERCEPTED)
5453 return EMULATE_DONE;
5454
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005455 if (r == EMULATION_FAILED) {
Gleb Natapov991eebf2013-04-11 12:10:51 +03005456 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5457 emulation_type))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005458 return EMULATE_DONE;
5459
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005460 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005461 }
5462
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005463 if (ctxt->have_exception) {
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005464 r = EMULATE_DONE;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005465 if (inject_emulated_exception(vcpu))
5466 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005467 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02005468 if (!vcpu->arch.pio.in) {
5469 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03005470 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02005471 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005472 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005473 vcpu->arch.complete_userspace_io = complete_emulated_pio;
5474 }
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005475 r = EMULATE_USER_EXIT;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005476 } else if (vcpu->mmio_needed) {
5477 if (!vcpu->mmio_is_write)
5478 writeback = false;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005479 r = EMULATE_USER_EXIT;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005480 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005481 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03005482 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005483 else
5484 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03005485
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005486 if (writeback) {
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005487 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005488 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005489 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005490 if (vcpu->arch.hflags != ctxt->emul_flags)
5491 kvm_set_hflags(vcpu, ctxt->emul_flags);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005492 kvm_rip_write(vcpu, ctxt->eip);
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005493 if (r == EMULATE_DONE)
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005494 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
Nadav Amit38827db2014-11-02 11:54:53 +02005495 if (!ctxt->have_exception ||
5496 exception_type(ctxt->exception.vector) == EXCPT_TRAP)
5497 __kvm_set_rflags(vcpu, ctxt->eflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005498
5499 /*
5500 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
5501 * do nothing, and it will be requested again as soon as
5502 * the shadow expires. But we still need to check here,
5503 * because POPF has no interrupt shadow.
5504 */
5505 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
5506 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005507 } else
5508 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005509
Gleb Natapove85d28f2010-07-29 15:11:52 +03005510 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005511}
Andre Przywara51d8b662010-12-21 11:12:02 +01005512EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005513
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005514int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005515{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005516 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005517 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5518 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005519 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005520 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005521 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005522}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005523EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005524
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005525static void tsc_bad(void *info)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005526{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005527 __this_cpu_write(cpu_tsc_khz, 0);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005528}
5529
5530static void tsc_khz_changed(void *data)
5531{
5532 struct cpufreq_freqs *freq = data;
5533 unsigned long khz = 0;
5534
5535 if (data)
5536 khz = freq->new;
5537 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5538 khz = cpufreq_quick_get(raw_smp_processor_id());
5539 if (!khz)
5540 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005541 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005542}
5543
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005544static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5545 void *data)
5546{
5547 struct cpufreq_freqs *freq = data;
5548 struct kvm *kvm;
5549 struct kvm_vcpu *vcpu;
5550 int i, send_ipi = 0;
5551
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005552 /*
5553 * We allow guests to temporarily run on slowing clocks,
5554 * provided we notify them after, or to run on accelerating
5555 * clocks, provided we notify them before. Thus time never
5556 * goes backwards.
5557 *
5558 * However, we have a problem. We can't atomically update
5559 * the frequency of a given CPU from this function; it is
5560 * merely a notifier, which can be called from any CPU.
5561 * Changing the TSC frequency at arbitrary points in time
5562 * requires a recomputation of local variables related to
5563 * the TSC for each VCPU. We must flag these local variables
5564 * to be updated and be sure the update takes place with the
5565 * new frequency before any guests proceed.
5566 *
5567 * Unfortunately, the combination of hotplug CPU and frequency
5568 * change creates an intractable locking scenario; the order
5569 * of when these callouts happen is undefined with respect to
5570 * CPU hotplug, and they can race with each other. As such,
5571 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5572 * undefined; you can actually have a CPU frequency change take
5573 * place in between the computation of X and the setting of the
5574 * variable. To protect against this problem, all updates of
5575 * the per_cpu tsc_khz variable are done in an interrupt
5576 * protected IPI, and all callers wishing to update the value
5577 * must wait for a synchronous IPI to complete (which is trivial
5578 * if the caller is on the CPU already). This establishes the
5579 * necessary total order on variable updates.
5580 *
5581 * Note that because a guest time update may take place
5582 * anytime after the setting of the VCPU's request bit, the
5583 * correct TSC value must be set before the request. However,
5584 * to ensure the update actually makes it to any guest which
5585 * starts running in hardware virtualization between the set
5586 * and the acquisition of the spinlock, we must also ping the
5587 * CPU after setting the request bit.
5588 *
5589 */
5590
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005591 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5592 return 0;
5593 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5594 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005595
5596 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005597
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005598 spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005599 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005600 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005601 if (vcpu->cpu != freq->cpu)
5602 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005603 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005604 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005605 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005606 }
5607 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005608 spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005609
5610 if (freq->old < freq->new && send_ipi) {
5611 /*
5612 * We upscale the frequency. Must make the guest
5613 * doesn't see old kvmclock values while running with
5614 * the new frequency, otherwise we risk the guest sees
5615 * time go backwards.
5616 *
5617 * In case we update the frequency for another cpu
5618 * (which might be in guest context) send an interrupt
5619 * to kick the cpu out of guest context. Next time
5620 * guest context is entered kvmclock will be updated,
5621 * so the guest will not see stale values.
5622 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005623 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005624 }
5625 return 0;
5626}
5627
5628static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005629 .notifier_call = kvmclock_cpufreq_notifier
5630};
5631
5632static int kvmclock_cpu_notifier(struct notifier_block *nfb,
5633 unsigned long action, void *hcpu)
5634{
5635 unsigned int cpu = (unsigned long)hcpu;
5636
5637 switch (action) {
5638 case CPU_ONLINE:
5639 case CPU_DOWN_FAILED:
5640 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
5641 break;
5642 case CPU_DOWN_PREPARE:
5643 smp_call_function_single(cpu, tsc_bad, NULL, 1);
5644 break;
5645 }
5646 return NOTIFY_OK;
5647}
5648
5649static struct notifier_block kvmclock_cpu_notifier_block = {
5650 .notifier_call = kvmclock_cpu_notifier,
5651 .priority = -INT_MAX
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005652};
5653
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005654static void kvm_timer_init(void)
5655{
5656 int cpu;
5657
Zachary Amsdenc2855452010-09-18 14:38:15 -10005658 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305659
5660 cpu_notifier_register_begin();
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005661 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005662#ifdef CONFIG_CPU_FREQ
5663 struct cpufreq_policy policy;
5664 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005665 cpu = get_cpu();
5666 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005667 if (policy.cpuinfo.max_freq)
5668 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005669 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005670#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005671 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5672 CPUFREQ_TRANSITION_NOTIFIER);
5673 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005674 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005675 for_each_online_cpu(cpu)
5676 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305677
5678 __register_hotcpu_notifier(&kvmclock_cpu_notifier_block);
5679 cpu_notifier_register_done();
5680
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005681}
5682
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005683static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5684
Gleb Natapovf5132b02011-11-10 14:57:22 +02005685int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005686{
Alex,Shi086c9852011-10-20 15:34:01 +08005687 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005688}
5689
5690static int kvm_is_user_mode(void)
5691{
5692 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005693
Alex,Shi086c9852011-10-20 15:34:01 +08005694 if (__this_cpu_read(current_vcpu))
5695 user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005696
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005697 return user_mode != 0;
5698}
5699
5700static unsigned long kvm_get_guest_ip(void)
5701{
5702 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005703
Alex,Shi086c9852011-10-20 15:34:01 +08005704 if (__this_cpu_read(current_vcpu))
5705 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005706
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005707 return ip;
5708}
5709
5710static struct perf_guest_info_callbacks kvm_guest_cbs = {
5711 .is_in_guest = kvm_is_in_guest,
5712 .is_user_mode = kvm_is_user_mode,
5713 .get_guest_ip = kvm_get_guest_ip,
5714};
5715
5716void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5717{
Alex,Shi086c9852011-10-20 15:34:01 +08005718 __this_cpu_write(current_vcpu, vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005719}
5720EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5721
5722void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5723{
Alex,Shi086c9852011-10-20 15:34:01 +08005724 __this_cpu_write(current_vcpu, NULL);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005725}
5726EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5727
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005728static void kvm_set_mmio_spte_mask(void)
5729{
5730 u64 mask;
5731 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5732
5733 /*
5734 * Set the reserved bits and the present bit of an paging-structure
5735 * entry to generate page fault with PFER.RSV = 1.
5736 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08005737 /* Mask the reserved physical address bits. */
Tiejun Chend1431482014-09-01 18:44:04 +08005738 mask = rsvd_bits(maxphyaddr, 51);
Xiao Guangrong885032b2013-06-07 16:51:23 +08005739
5740 /* Bit 62 is always reserved for 32bit host. */
5741 mask |= 0x3ull << 62;
5742
5743 /* Set the present bit. */
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005744 mask |= 1ull;
5745
5746#ifdef CONFIG_X86_64
5747 /*
5748 * If reserved bit is not supported, clear the present bit to disable
5749 * mmio page fault.
5750 */
5751 if (maxphyaddr == 52)
5752 mask &= ~1ull;
5753#endif
5754
5755 kvm_mmu_set_mmio_spte_mask(mask);
5756}
5757
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005758#ifdef CONFIG_X86_64
5759static void pvclock_gtod_update_fn(struct work_struct *work)
5760{
Marcelo Tosattid8281992012-11-27 23:29:01 -02005761 struct kvm *kvm;
5762
5763 struct kvm_vcpu *vcpu;
5764 int i;
5765
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005766 spin_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005767 list_for_each_entry(kvm, &vm_list, vm_list)
5768 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08005769 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005770 atomic_set(&kvm_guest_has_master_clock, 0);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005771 spin_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005772}
5773
5774static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
5775
5776/*
5777 * Notification about pvclock gtod data update.
5778 */
5779static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
5780 void *priv)
5781{
5782 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
5783 struct timekeeper *tk = priv;
5784
5785 update_pvclock_gtod(tk);
5786
5787 /* disable master clock if host does not trust, or does not
5788 * use, TSC clocksource
5789 */
5790 if (gtod->clock.vclock_mode != VCLOCK_TSC &&
5791 atomic_read(&kvm_guest_has_master_clock) != 0)
5792 queue_work(system_long_wq, &pvclock_gtod_work);
5793
5794 return 0;
5795}
5796
5797static struct notifier_block pvclock_gtod_notifier = {
5798 .notifier_call = pvclock_gtod_notify,
5799};
5800#endif
5801
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005802int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02005803{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005804 int r;
Mathias Krause6b61edf2013-06-26 20:36:23 +02005805 struct kvm_x86_ops *ops = opaque;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005806
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005807 if (kvm_x86_ops) {
5808 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005809 r = -EEXIST;
5810 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005811 }
5812
5813 if (!ops->cpu_has_kvm_support()) {
5814 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005815 r = -EOPNOTSUPP;
5816 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005817 }
5818 if (ops->disabled_by_bios()) {
5819 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005820 r = -EOPNOTSUPP;
5821 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005822 }
5823
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005824 r = -ENOMEM;
5825 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
5826 if (!shared_msrs) {
5827 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
5828 goto out;
5829 }
5830
Avi Kivity97db56c2008-01-13 13:23:56 +02005831 r = kvm_mmu_module_init();
5832 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005833 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02005834
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005835 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02005836
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005837 kvm_x86_ops = ops;
Paolo Bonzini920c8372014-03-26 15:54:00 +01005838
Sheng Yang7b523452008-04-25 21:13:50 +08005839 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005840 PT_DIRTY_MASK, PT64_NX_MASK, 0);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005841
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005842 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005843
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005844 perf_register_guest_info_callbacks(&kvm_guest_cbs);
5845
Dexuan Cui2acf9232010-06-10 11:27:12 +08005846 if (cpu_has_xsave)
5847 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
5848
Gleb Natapovc5cc4212012-08-05 15:58:30 +03005849 kvm_lapic_init();
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005850#ifdef CONFIG_X86_64
5851 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
5852#endif
5853
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005854 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005855
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005856out_free_percpu:
5857 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005858out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005859 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02005860}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005861
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005862void kvm_arch_exit(void)
5863{
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005864 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
5865
Jan Kiszka888d2562009-04-17 19:24:58 +02005866 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5867 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
5868 CPUFREQ_TRANSITION_NOTIFIER);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005869 unregister_hotcpu_notifier(&kvmclock_cpu_notifier_block);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005870#ifdef CONFIG_X86_64
5871 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
5872#endif
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005873 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005874 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005875 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005876}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005877
Joel Schopp5cb56052015-03-02 13:43:31 -06005878int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05005879{
5880 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005881 if (lapic_in_kernel(vcpu)) {
Avi Kivitya4535292008-04-13 17:54:35 +03005882 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005883 return 1;
5884 } else {
5885 vcpu->run->exit_reason = KVM_EXIT_HLT;
5886 return 0;
5887 }
5888}
Joel Schopp5cb56052015-03-02 13:43:31 -06005889EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
5890
5891int kvm_emulate_halt(struct kvm_vcpu *vcpu)
5892{
5893 kvm_x86_ops->skip_emulated_instruction(vcpu);
5894 return kvm_vcpu_halt(vcpu);
5895}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005896EXPORT_SYMBOL_GPL(kvm_emulate_halt);
5897
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305898/*
5899 * kvm_pv_kick_cpu_op: Kick a vcpu.
5900 *
5901 * @apicid - apicid of vcpu to be kicked.
5902 */
5903static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
5904{
Raghavendra K T24d21662013-08-26 14:18:35 +05305905 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305906
Raghavendra K T24d21662013-08-26 14:18:35 +05305907 lapic_irq.shorthand = 0;
5908 lapic_irq.dest_mode = 0;
5909 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06005910 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305911
Raghavendra K T24d21662013-08-26 14:18:35 +05305912 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08005913 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305914}
5915
Andrey Smetanind62caab2015-11-10 15:36:33 +03005916void kvm_vcpu_deactivate_apicv(struct kvm_vcpu *vcpu)
5917{
5918 vcpu->arch.apicv_active = false;
5919 kvm_x86_ops->refresh_apicv_exec_ctrl(vcpu);
5920}
5921
Hollis Blanchard8776e512007-10-31 17:24:24 -05005922int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
5923{
5924 unsigned long nr, a0, a1, a2, a3, ret;
Nadav Amita449c7a2014-06-18 17:19:24 +03005925 int op_64_bit, r = 1;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005926
Joel Schopp5cb56052015-03-02 13:43:31 -06005927 kvm_x86_ops->skip_emulated_instruction(vcpu);
5928
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005929 if (kvm_hv_hypercall_enabled(vcpu->kvm))
5930 return kvm_hv_hypercall(vcpu);
5931
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005932 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
5933 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
5934 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
5935 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
5936 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005937
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005938 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005939
Nadav Amita449c7a2014-06-18 17:19:24 +03005940 op_64_bit = is_64_bit_mode(vcpu);
5941 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05005942 nr &= 0xFFFFFFFF;
5943 a0 &= 0xFFFFFFFF;
5944 a1 &= 0xFFFFFFFF;
5945 a2 &= 0xFFFFFFFF;
5946 a3 &= 0xFFFFFFFF;
5947 }
5948
Jan Kiszka07708c42009-08-03 18:43:28 +02005949 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
5950 ret = -KVM_EPERM;
5951 goto out;
5952 }
5953
Hollis Blanchard8776e512007-10-31 17:24:24 -05005954 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02005955 case KVM_HC_VAPIC_POLL_IRQ:
5956 ret = 0;
5957 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05305958 case KVM_HC_KICK_CPU:
5959 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
5960 ret = 0;
5961 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005962 default:
5963 ret = -KVM_ENOSYS;
5964 break;
5965 }
Jan Kiszka07708c42009-08-03 18:43:28 +02005966out:
Nadav Amita449c7a2014-06-18 17:19:24 +03005967 if (!op_64_bit)
5968 ret = (u32)ret;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005969 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05305970 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05005971 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005972}
5973EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
5974
Jan Kiszkab6785de2012-09-20 07:43:17 +02005975static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05005976{
Avi Kivityd6aa1002011-04-20 15:47:13 +03005977 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005978 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005979 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005980
Hollis Blanchard8776e512007-10-31 17:24:24 -05005981 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005982
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005983 return emulator_write_emulated(ctxt, rip, instruction, 3, NULL);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005984}
5985
Avi Kivity851ba692009-08-24 11:10:17 +03005986static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005987{
Matt Gingell782d4222015-11-16 15:26:00 -08005988 return vcpu->run->request_interrupt_window &&
5989 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005990}
5991
Avi Kivity851ba692009-08-24 11:10:17 +03005992static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005993{
Avi Kivity851ba692009-08-24 11:10:17 +03005994 struct kvm_run *kvm_run = vcpu->run;
5995
Jan Kiszka91586a32009-10-05 13:07:21 +02005996 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02005997 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02005998 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005999 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01006000 kvm_run->ready_for_interrupt_injection =
6001 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08006002 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006003}
6004
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006005static void update_cr8_intercept(struct kvm_vcpu *vcpu)
6006{
6007 int max_irr, tpr;
6008
6009 if (!kvm_x86_ops->update_cr8_intercept)
6010 return;
6011
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006012 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03006013 return;
6014
Andrey Smetanind62caab2015-11-10 15:36:33 +03006015 if (vcpu->arch.apicv_active)
6016 return;
6017
Gleb Natapov8db3baa2009-05-11 13:35:54 +03006018 if (!vcpu->arch.apic->vapic_addr)
6019 max_irr = kvm_lapic_find_highest_irr(vcpu);
6020 else
6021 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006022
6023 if (max_irr != -1)
6024 max_irr >>= 4;
6025
6026 tpr = kvm_lapic_get_cr8(vcpu);
6027
6028 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
6029}
6030
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006031static int inject_pending_event(struct kvm_vcpu *vcpu, bool req_int_win)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006032{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006033 int r;
6034
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006035 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006036 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d2010-03-11 13:01:59 +02006037 trace_kvm_inj_exception(vcpu->arch.exception.nr,
6038 vcpu->arch.exception.has_error_code,
6039 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03006040
6041 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
6042 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
6043 X86_EFLAGS_RF);
6044
Nadav Amit6bdf0662014-09-30 20:49:14 +03006045 if (vcpu->arch.exception.nr == DB_VECTOR &&
6046 (vcpu->arch.dr7 & DR7_GD)) {
6047 vcpu->arch.dr7 &= ~DR7_GD;
6048 kvm_update_dr7(vcpu);
6049 }
6050
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006051 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
6052 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02006053 vcpu->arch.exception.error_code,
6054 vcpu->arch.exception.reinject);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006055 return 0;
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006056 }
6057
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006058 if (vcpu->arch.nmi_injected) {
6059 kvm_x86_ops->set_nmi(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006060 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006061 }
6062
6063 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006064 kvm_x86_ops->set_irq(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006065 return 0;
6066 }
6067
6068 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6069 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6070 if (r != 0)
6071 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006072 }
6073
6074 /* try to inject new event if pending */
6075 if (vcpu->arch.nmi_pending) {
6076 if (kvm_x86_ops->nmi_allowed(vcpu)) {
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006077 --vcpu->arch.nmi_pending;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006078 vcpu->arch.nmi_injected = true;
6079 kvm_x86_ops->set_nmi(vcpu);
6080 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08006081 } else if (kvm_cpu_has_injectable_intr(vcpu)) {
Bandan Das9242b5b2014-07-08 00:30:23 -04006082 /*
6083 * Because interrupts can be injected asynchronously, we are
6084 * calling check_nested_events again here to avoid a race condition.
6085 * See https://lkml.org/lkml/2014/7/2/60 for discussion about this
6086 * proposal and current concerns. Perhaps we should be setting
6087 * KVM_REQ_EVENT only on certain events and not unconditionally?
6088 */
6089 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6090 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6091 if (r != 0)
6092 return r;
6093 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006094 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006095 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
6096 false);
6097 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006098 }
6099 }
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006100 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006101}
6102
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006103static void process_nmi(struct kvm_vcpu *vcpu)
6104{
6105 unsigned limit = 2;
6106
6107 /*
6108 * x86 is limited to one NMI running, and one NMI pending after it.
6109 * If an NMI is already in progress, limit further NMIs to just one.
6110 * Otherwise, allow two (and we'll inject the first one immediately).
6111 */
6112 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
6113 limit = 1;
6114
6115 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
6116 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
6117 kvm_make_request(KVM_REQ_EVENT, vcpu);
6118}
6119
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006120#define put_smstate(type, buf, offset, val) \
6121 *(type *)((buf) + (offset) - 0x7e00) = val
6122
6123static u32 process_smi_get_segment_flags(struct kvm_segment *seg)
6124{
6125 u32 flags = 0;
6126 flags |= seg->g << 23;
6127 flags |= seg->db << 22;
6128 flags |= seg->l << 21;
6129 flags |= seg->avl << 20;
6130 flags |= seg->present << 15;
6131 flags |= seg->dpl << 13;
6132 flags |= seg->s << 12;
6133 flags |= seg->type << 8;
6134 return flags;
6135}
6136
6137static void process_smi_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
6138{
6139 struct kvm_segment seg;
6140 int offset;
6141
6142 kvm_get_segment(vcpu, &seg, n);
6143 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
6144
6145 if (n < 3)
6146 offset = 0x7f84 + n * 12;
6147 else
6148 offset = 0x7f2c + (n - 3) * 12;
6149
6150 put_smstate(u32, buf, offset + 8, seg.base);
6151 put_smstate(u32, buf, offset + 4, seg.limit);
6152 put_smstate(u32, buf, offset, process_smi_get_segment_flags(&seg));
6153}
6154
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006155#ifdef CONFIG_X86_64
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006156static void process_smi_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
6157{
6158 struct kvm_segment seg;
6159 int offset;
6160 u16 flags;
6161
6162 kvm_get_segment(vcpu, &seg, n);
6163 offset = 0x7e00 + n * 16;
6164
6165 flags = process_smi_get_segment_flags(&seg) >> 8;
6166 put_smstate(u16, buf, offset, seg.selector);
6167 put_smstate(u16, buf, offset + 2, flags);
6168 put_smstate(u32, buf, offset + 4, seg.limit);
6169 put_smstate(u64, buf, offset + 8, seg.base);
6170}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006171#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006172
6173static void process_smi_save_state_32(struct kvm_vcpu *vcpu, char *buf)
6174{
6175 struct desc_ptr dt;
6176 struct kvm_segment seg;
6177 unsigned long val;
6178 int i;
6179
6180 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
6181 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
6182 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
6183 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
6184
6185 for (i = 0; i < 8; i++)
6186 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
6187
6188 kvm_get_dr(vcpu, 6, &val);
6189 put_smstate(u32, buf, 0x7fcc, (u32)val);
6190 kvm_get_dr(vcpu, 7, &val);
6191 put_smstate(u32, buf, 0x7fc8, (u32)val);
6192
6193 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6194 put_smstate(u32, buf, 0x7fc4, seg.selector);
6195 put_smstate(u32, buf, 0x7f64, seg.base);
6196 put_smstate(u32, buf, 0x7f60, seg.limit);
6197 put_smstate(u32, buf, 0x7f5c, process_smi_get_segment_flags(&seg));
6198
6199 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6200 put_smstate(u32, buf, 0x7fc0, seg.selector);
6201 put_smstate(u32, buf, 0x7f80, seg.base);
6202 put_smstate(u32, buf, 0x7f7c, seg.limit);
6203 put_smstate(u32, buf, 0x7f78, process_smi_get_segment_flags(&seg));
6204
6205 kvm_x86_ops->get_gdt(vcpu, &dt);
6206 put_smstate(u32, buf, 0x7f74, dt.address);
6207 put_smstate(u32, buf, 0x7f70, dt.size);
6208
6209 kvm_x86_ops->get_idt(vcpu, &dt);
6210 put_smstate(u32, buf, 0x7f58, dt.address);
6211 put_smstate(u32, buf, 0x7f54, dt.size);
6212
6213 for (i = 0; i < 6; i++)
6214 process_smi_save_seg_32(vcpu, buf, i);
6215
6216 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
6217
6218 /* revision id */
6219 put_smstate(u32, buf, 0x7efc, 0x00020000);
6220 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
6221}
6222
6223static void process_smi_save_state_64(struct kvm_vcpu *vcpu, char *buf)
6224{
6225#ifdef CONFIG_X86_64
6226 struct desc_ptr dt;
6227 struct kvm_segment seg;
6228 unsigned long val;
6229 int i;
6230
6231 for (i = 0; i < 16; i++)
6232 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
6233
6234 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
6235 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
6236
6237 kvm_get_dr(vcpu, 6, &val);
6238 put_smstate(u64, buf, 0x7f68, val);
6239 kvm_get_dr(vcpu, 7, &val);
6240 put_smstate(u64, buf, 0x7f60, val);
6241
6242 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
6243 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
6244 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
6245
6246 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
6247
6248 /* revision id */
6249 put_smstate(u32, buf, 0x7efc, 0x00020064);
6250
6251 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
6252
6253 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6254 put_smstate(u16, buf, 0x7e90, seg.selector);
6255 put_smstate(u16, buf, 0x7e92, process_smi_get_segment_flags(&seg) >> 8);
6256 put_smstate(u32, buf, 0x7e94, seg.limit);
6257 put_smstate(u64, buf, 0x7e98, seg.base);
6258
6259 kvm_x86_ops->get_idt(vcpu, &dt);
6260 put_smstate(u32, buf, 0x7e84, dt.size);
6261 put_smstate(u64, buf, 0x7e88, dt.address);
6262
6263 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6264 put_smstate(u16, buf, 0x7e70, seg.selector);
6265 put_smstate(u16, buf, 0x7e72, process_smi_get_segment_flags(&seg) >> 8);
6266 put_smstate(u32, buf, 0x7e74, seg.limit);
6267 put_smstate(u64, buf, 0x7e78, seg.base);
6268
6269 kvm_x86_ops->get_gdt(vcpu, &dt);
6270 put_smstate(u32, buf, 0x7e64, dt.size);
6271 put_smstate(u64, buf, 0x7e68, dt.address);
6272
6273 for (i = 0; i < 6; i++)
6274 process_smi_save_seg_64(vcpu, buf, i);
6275#else
6276 WARN_ON_ONCE(1);
6277#endif
6278}
6279
Paolo Bonzini64d60672015-05-07 11:36:11 +02006280static void process_smi(struct kvm_vcpu *vcpu)
6281{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006282 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02006283 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006284 char buf[512];
6285 u32 cr0;
6286
Paolo Bonzini64d60672015-05-07 11:36:11 +02006287 if (is_smm(vcpu)) {
6288 vcpu->arch.smi_pending = true;
6289 return;
6290 }
6291
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006292 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
6293 vcpu->arch.hflags |= HF_SMM_MASK;
6294 memset(buf, 0, 512);
6295 if (guest_cpuid_has_longmode(vcpu))
6296 process_smi_save_state_64(vcpu, buf);
6297 else
6298 process_smi_save_state_32(vcpu, buf);
6299
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006300 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006301
6302 if (kvm_x86_ops->get_nmi_mask(vcpu))
6303 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
6304 else
6305 kvm_x86_ops->set_nmi_mask(vcpu, true);
6306
6307 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
6308 kvm_rip_write(vcpu, 0x8000);
6309
6310 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
6311 kvm_x86_ops->set_cr0(vcpu, cr0);
6312 vcpu->arch.cr0 = cr0;
6313
6314 kvm_x86_ops->set_cr4(vcpu, 0);
6315
Paolo Bonzini18c36262015-08-07 12:27:54 +02006316 /* Undocumented: IDT limit is set to zero on entry to SMM. */
6317 dt.address = dt.size = 0;
6318 kvm_x86_ops->set_idt(vcpu, &dt);
6319
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006320 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
6321
6322 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
6323 cs.base = vcpu->arch.smbase;
6324
6325 ds.selector = 0;
6326 ds.base = 0;
6327
6328 cs.limit = ds.limit = 0xffffffff;
6329 cs.type = ds.type = 0x3;
6330 cs.dpl = ds.dpl = 0;
6331 cs.db = ds.db = 0;
6332 cs.s = ds.s = 1;
6333 cs.l = ds.l = 0;
6334 cs.g = ds.g = 1;
6335 cs.avl = ds.avl = 0;
6336 cs.present = ds.present = 1;
6337 cs.unusable = ds.unusable = 0;
6338 cs.padding = ds.padding = 0;
6339
6340 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
6341 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
6342 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
6343 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
6344 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
6345 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
6346
6347 if (guest_cpuid_has_longmode(vcpu))
6348 kvm_x86_ops->set_efer(vcpu, 0);
6349
6350 kvm_update_cpuid(vcpu);
6351 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006352}
6353
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01006354void kvm_make_scan_ioapic_request(struct kvm *kvm)
6355{
6356 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
6357}
6358
Yang Zhang3d81bc72013-04-11 19:25:13 +08006359static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006360{
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006361 u64 eoi_exit_bitmap[4];
6362
Yang Zhang3d81bc72013-04-11 19:25:13 +08006363 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
6364 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006365
Andrey Smetanin63086302015-11-10 15:36:32 +03006366 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006367
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07006368 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03006369 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006370 else {
Andrey Smetanind62caab2015-11-10 15:36:33 +03006371 if (vcpu->arch.apicv_active)
6372 kvm_x86_ops->sync_pir_to_irr(vcpu);
Andrey Smetanin63086302015-11-10 15:36:32 +03006373 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006374 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006375 bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors,
6376 vcpu_to_synic(vcpu)->vec_bitmap, 256);
6377 kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006378}
6379
Radim Krčmářa70656b2014-09-18 12:38:36 -04006380static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu)
6381{
6382 ++vcpu->stat.tlb_flush;
6383 kvm_x86_ops->tlb_flush(vcpu);
6384}
6385
Tang Chen4256f432014-09-24 15:57:54 +08006386void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
6387{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006388 struct page *page = NULL;
6389
Paolo Bonzini35754c92015-07-29 12:05:37 +02006390 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02006391 return;
6392
Tang Chen4256f432014-09-24 15:57:54 +08006393 if (!kvm_x86_ops->set_apic_access_page_addr)
6394 return;
6395
Tang Chenc24ae0d2014-09-24 15:57:58 +08006396 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Andrea Arcangelie8fd5e92015-05-08 14:32:56 +02006397 if (is_error_page(page))
6398 return;
Tang Chenc24ae0d2014-09-24 15:57:58 +08006399 kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page));
6400
6401 /*
6402 * Do not pin apic access page in memory, the MMU notifier
6403 * will call us again if it is migrated or swapped out.
6404 */
6405 put_page(page);
Tang Chen4256f432014-09-24 15:57:54 +08006406}
6407EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page);
6408
Tang Chenfe715572014-09-24 15:57:57 +08006409void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
6410 unsigned long address)
6411{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006412 /*
6413 * The physical address of apic access page is stored in the VMCS.
6414 * Update it when it becomes invalid.
6415 */
6416 if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT))
6417 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
Tang Chenfe715572014-09-24 15:57:57 +08006418}
6419
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006420/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01006421 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006422 * exiting to the userspace. Otherwise, the value will be returned to the
6423 * userspace.
6424 */
Avi Kivity851ba692009-08-24 11:10:17 +03006425static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006426{
6427 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08006428 bool req_int_win =
6429 dm_request_for_irq_injection(vcpu) &&
6430 kvm_cpu_accept_dm_intr(vcpu);
6431
Jan Kiszka730dca42013-04-28 10:50:52 +02006432 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006433
Avi Kivity3e007502010-06-23 14:26:18 +03006434 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03006435 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05006436 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006437 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03006438 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006439 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
6440 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03006441 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
6442 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10006443 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
6444 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10006445 if (unlikely(r))
6446 goto out;
6447 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006448 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03006449 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006450 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Radim Krčmářa70656b2014-09-18 12:38:36 -04006451 kvm_vcpu_flush_tlb(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006452 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006453 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02006454 r = 0;
6455 goto out;
6456 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006457 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006458 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01006459 r = 0;
6460 goto out;
6461 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006462 if (kvm_check_request(KVM_REQ_DEACTIVATE_FPU, vcpu)) {
Avi Kivity02daab22009-12-30 12:40:26 +02006463 vcpu->fpu_active = 0;
6464 kvm_x86_ops->fpu_deactivate(vcpu);
6465 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006466 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
6467 /* Page is swapped out. Do synthetic halt */
6468 vcpu->arch.apf.halted = true;
6469 r = 1;
6470 goto out;
6471 }
Glauber Costac9aaa892011-07-11 15:28:14 -04006472 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
6473 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006474 if (kvm_check_request(KVM_REQ_SMI, vcpu))
6475 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006476 if (kvm_check_request(KVM_REQ_NMI, vcpu))
6477 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006478 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006479 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006480 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006481 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07006482 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
6483 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
6484 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03006485 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07006486 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
6487 vcpu->run->eoi.vector =
6488 vcpu->arch.pending_ioapic_eoi;
6489 r = 0;
6490 goto out;
6491 }
6492 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08006493 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
6494 vcpu_scan_ioapic(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08006495 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
6496 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03006497 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
6498 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6499 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
6500 r = 0;
6501 goto out;
6502 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03006503 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
6504 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6505 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
6506 r = 0;
6507 goto out;
6508 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03006509 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
6510 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
6511 vcpu->run->hyperv = vcpu->arch.hyperv.exit;
6512 r = 0;
6513 goto out;
6514 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03006515
6516 /*
6517 * KVM_REQ_HV_STIMER has to be processed after
6518 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
6519 * depend on the guest clock being up-to-date
6520 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03006521 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
6522 kvm_hv_process_stimers(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02006523 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006524
Feng Wubf9f6ac2015-09-18 22:29:55 +08006525 /*
6526 * KVM_REQ_EVENT is not set when posted interrupts are set by
6527 * VT-d hardware, so we have to update RVI unconditionally.
6528 */
6529 if (kvm_lapic_enabled(vcpu)) {
6530 /*
6531 * Update architecture specific hints for APIC
6532 * virtual interrupt delivery.
6533 */
Andrey Smetanind62caab2015-11-10 15:36:33 +03006534 if (vcpu->arch.apicv_active)
Feng Wubf9f6ac2015-09-18 22:29:55 +08006535 kvm_x86_ops->hwapic_irr_update(vcpu,
6536 kvm_lapic_find_highest_irr(vcpu));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006537 }
6538
Avi Kivityb463a6f2010-07-20 15:06:17 +03006539 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Jan Kiszka66450a22013-03-13 12:42:34 +01006540 kvm_apic_accept_events(vcpu);
6541 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
6542 r = 1;
6543 goto out;
6544 }
6545
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006546 if (inject_pending_event(vcpu, req_int_win) != 0)
6547 req_immediate_exit = true;
Avi Kivity3842d132010-07-27 12:30:24 +03006548 /* enable NMI/IRQ window open exits if needed */
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006549 else if (vcpu->arch.nmi_pending)
Jan Kiszkac9a79532014-03-07 20:03:15 +01006550 kvm_x86_ops->enable_nmi_window(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006551 else if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win)
Jan Kiszkac9a79532014-03-07 20:03:15 +01006552 kvm_x86_ops->enable_irq_window(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03006553
Avi Kivity3842d132010-07-27 12:30:24 +03006554 if (kvm_lapic_enabled(vcpu)) {
6555 update_cr8_intercept(vcpu);
6556 kvm_lapic_sync_to_vapic(vcpu);
6557 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006558 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006559
Avi Kivityd8368af2012-05-14 18:07:56 +03006560 r = kvm_mmu_reload(vcpu);
6561 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006562 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03006563 }
6564
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006565 preempt_disable();
6566
6567 kvm_x86_ops->prepare_guest_switch(vcpu);
6568 if (vcpu->fpu_active)
6569 kvm_load_guest_fpu(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006570 kvm_load_guest_xcr0(vcpu);
6571
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006572 vcpu->mode = IN_GUEST_MODE;
6573
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006574 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6575
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006576 /* We should set ->mode before check ->requests,
6577 * see the comment in make_all_cpus_request.
6578 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006579 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006580
6581 local_irq_disable();
6582
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006583 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006584 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006585 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006586 smp_wmb();
6587 local_irq_enable();
6588 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006589 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006590 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006591 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006592 }
6593
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006594 if (req_immediate_exit)
6595 smp_send_reschedule(vcpu->cpu);
6596
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01006597 trace_kvm_entry(vcpu->vcpu_id);
6598 wait_lapic_expire(vcpu);
Christian Borntraegerccf73aaf2015-04-30 13:43:31 +02006599 __kvm_guest_enter();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006600
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006601 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006602 set_debugreg(0, 7);
6603 set_debugreg(vcpu->arch.eff_db[0], 0);
6604 set_debugreg(vcpu->arch.eff_db[1], 1);
6605 set_debugreg(vcpu->arch.eff_db[2], 2);
6606 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006607 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03006608 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006609 }
6610
Avi Kivity851ba692009-08-24 11:10:17 +03006611 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006612
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006613 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006614 * Do this here before restoring debug registers on the host. And
6615 * since we do this before handling the vmexit, a DR access vmexit
6616 * can (a) read the correct value of the debug registers, (b) set
6617 * KVM_DEBUGREG_WONT_EXIT again.
6618 */
6619 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
6620 int i;
6621
6622 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
6623 kvm_x86_ops->sync_dirty_debug_regs(vcpu);
6624 for (i = 0; i < KVM_NR_DB_REGS; i++)
6625 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
6626 }
6627
6628 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006629 * If the guest has used debug registers, at least dr7
6630 * will be disabled while returning to the host.
6631 * If we don't have active breakpoints in the host, we don't
6632 * care about the messed up debug address registers. But if
6633 * we have some of them active, restore the old state.
6634 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01006635 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006636 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006637
Haozhong Zhang4ba76532015-10-20 15:39:07 +08006638 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10006639
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006640 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03006641 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006642
6643 /* Interrupt is enabled by handle_external_intr() */
6644 kvm_x86_ops->handle_external_intr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006645
6646 ++vcpu->stat.exits;
6647
6648 /*
6649 * We must have an instruction between local_irq_enable() and
6650 * kvm_guest_exit(), so the timer interrupt isn't delayed by
6651 * the interrupt shadow. The stat.exits increment will do nicely.
6652 * But we need to prevent reordering, hence this barrier():
6653 */
6654 barrier();
6655
6656 kvm_guest_exit();
6657
6658 preempt_enable();
6659
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006660 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006661
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006662 /*
6663 * Profile KVM exit RIPs:
6664 */
6665 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006666 unsigned long rip = kvm_rip_read(vcpu);
6667 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006668 }
6669
Zachary Amsdencc578282012-02-03 15:43:50 -02006670 if (unlikely(vcpu->arch.tsc_always_catchup))
6671 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02006672
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03006673 if (vcpu->arch.apic_attention)
6674 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02006675
Avi Kivity851ba692009-08-24 11:10:17 +03006676 r = kvm_x86_ops->handle_exit(vcpu);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006677 return r;
6678
6679cancel_injection:
6680 kvm_x86_ops->cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03006681 if (unlikely(vcpu->arch.apic_attention))
6682 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006683out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03006684 return r;
6685}
6686
Paolo Bonzini362c6982015-02-06 12:48:04 +01006687static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
6688{
Feng Wubf9f6ac2015-09-18 22:29:55 +08006689 if (!kvm_arch_vcpu_runnable(vcpu) &&
6690 (!kvm_x86_ops->pre_block || kvm_x86_ops->pre_block(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006691 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
6692 kvm_vcpu_block(vcpu);
6693 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006694
6695 if (kvm_x86_ops->post_block)
6696 kvm_x86_ops->post_block(vcpu);
6697
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006698 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
6699 return 1;
6700 }
Gleb Natapov09cec752009-03-23 15:11:44 +02006701
Paolo Bonzini362c6982015-02-06 12:48:04 +01006702 kvm_apic_accept_events(vcpu);
6703 switch(vcpu->arch.mp_state) {
6704 case KVM_MP_STATE_HALTED:
6705 vcpu->arch.pv.pv_unhalted = false;
6706 vcpu->arch.mp_state =
6707 KVM_MP_STATE_RUNNABLE;
6708 case KVM_MP_STATE_RUNNABLE:
6709 vcpu->arch.apf.halted = false;
6710 break;
6711 case KVM_MP_STATE_INIT_RECEIVED:
6712 break;
6713 default:
6714 return -EINTR;
6715 break;
6716 }
6717 return 1;
6718}
6719
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02006720static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
6721{
6722 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
6723 !vcpu->arch.apf.halted);
6724}
6725
Paolo Bonzini362c6982015-02-06 12:48:04 +01006726static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03006727{
6728 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006729 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03006730
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006731 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006732
Paolo Bonzini362c6982015-02-06 12:48:04 +01006733 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02006734 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006735 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006736 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01006737 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006738 }
6739
Gleb Natapov09cec752009-03-23 15:11:44 +02006740 if (r <= 0)
6741 break;
6742
6743 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
6744 if (kvm_cpu_has_pending_timer(vcpu))
6745 kvm_inject_pending_timer_irqs(vcpu);
6746
Matt Gingell782d4222015-11-16 15:26:00 -08006747 if (dm_request_for_irq_injection(vcpu) &&
6748 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02006749 r = 0;
6750 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02006751 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01006752 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006753 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006754
6755 kvm_check_async_pf_completion(vcpu);
6756
Gleb Natapov09cec752009-03-23 15:11:44 +02006757 if (signal_pending(current)) {
6758 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03006759 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02006760 ++vcpu->stat.signal_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01006761 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006762 }
6763 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006764 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Takuya Yoshikawac08ac062013-12-13 15:07:21 +09006765 cond_resched();
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006766 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006767 }
6768 }
6769
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006770 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006771
6772 return r;
6773}
6774
Gleb Natapov716d51a2012-09-03 15:24:26 +03006775static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
6776{
6777 int r;
6778 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
6779 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
6780 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6781 if (r != EMULATE_DONE)
6782 return 0;
6783 return 1;
6784}
6785
6786static int complete_emulated_pio(struct kvm_vcpu *vcpu)
6787{
6788 BUG_ON(!vcpu->arch.pio.count);
6789
6790 return complete_emulated_io(vcpu);
6791}
6792
Avi Kivityf78146b2012-04-18 19:22:47 +03006793/*
6794 * Implements the following, as a state machine:
6795 *
6796 * read:
6797 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006798 * for each mmio piece in the fragment
6799 * write gpa, len
6800 * exit
6801 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03006802 * execute insn
6803 *
6804 * write:
6805 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006806 * for each mmio piece in the fragment
6807 * write gpa, len
6808 * copy data
6809 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03006810 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03006811static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02006812{
6813 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03006814 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006815 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02006816
Gleb Natapov716d51a2012-09-03 15:24:26 +03006817 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006818
Gleb Natapov716d51a2012-09-03 15:24:26 +03006819 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006820 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
6821 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006822 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006823 memcpy(frag->data, run->mmio.data, len);
6824
6825 if (frag->len <= 8) {
6826 /* Switch to the next fragment. */
6827 frag++;
6828 vcpu->mmio_cur_fragment++;
6829 } else {
6830 /* Go forward to the next mmio piece. */
6831 frag->data += len;
6832 frag->gpa += len;
6833 frag->len -= len;
6834 }
6835
Andrew Honiga08d3b32014-02-27 19:35:14 +01006836 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03006837 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02006838
6839 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02006840 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03006841 return 1;
6842 vcpu->mmio_read_completed = 1;
6843 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02006844 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006845
Gleb Natapov716d51a2012-09-03 15:24:26 +03006846 run->exit_reason = KVM_EXIT_MMIO;
6847 run->mmio.phys_addr = frag->gpa;
6848 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006849 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
6850 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006851 run->mmio.is_write = vcpu->mmio_is_write;
6852 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
6853 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02006854}
6855
Gleb Natapov716d51a2012-09-03 15:24:26 +03006856
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006857int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
6858{
Ingo Molnarc5bedc62015-04-23 12:49:20 +02006859 struct fpu *fpu = &current->thread.fpu;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006860 int r;
6861 sigset_t sigsaved;
6862
Ingo Molnarc4d72e22015-04-27 07:18:17 +02006863 fpu__activate_curr(fpu);
Avi Kivitye5c30142011-01-11 12:15:54 +02006864
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006865 if (vcpu->sigset_active)
6866 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
6867
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006868 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
6869 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01006870 kvm_apic_accept_events(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006871 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006872 r = -EAGAIN;
6873 goto out;
6874 }
6875
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006876 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02006877 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006878 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
6879 r = -EINVAL;
6880 goto out;
6881 }
6882 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006883
Gleb Natapov716d51a2012-09-03 15:24:26 +03006884 if (unlikely(vcpu->arch.complete_userspace_io)) {
6885 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
6886 vcpu->arch.complete_userspace_io = NULL;
6887 r = cui(vcpu);
6888 if (r <= 0)
6889 goto out;
6890 } else
6891 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006892
Paolo Bonzini362c6982015-02-06 12:48:04 +01006893 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006894
6895out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03006896 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006897 if (vcpu->sigset_active)
6898 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
6899
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006900 return r;
6901}
6902
6903int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6904{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006905 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
6906 /*
6907 * We are here if userspace calls get_regs() in the middle of
6908 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08006909 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006910 * that usually, but some bad designed PV devices (vmware
6911 * backdoor interface) need this to work
6912 */
Avi Kivitydd856ef2012-08-27 23:46:17 +03006913 emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006914 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6915 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006916 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
6917 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
6918 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
6919 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
6920 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
6921 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
6922 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
6923 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006924#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006925 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
6926 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
6927 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
6928 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
6929 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
6930 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
6931 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
6932 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006933#endif
6934
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006935 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02006936 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006937
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006938 return 0;
6939}
6940
6941int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6942{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006943 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
6944 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6945
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006946 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
6947 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
6948 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
6949 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
6950 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
6951 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
6952 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
6953 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006954#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006955 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
6956 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
6957 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
6958 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
6959 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
6960 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
6961 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
6962 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006963#endif
6964
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006965 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02006966 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006967
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02006968 vcpu->arch.exception.pending = false;
6969
Avi Kivity3842d132010-07-27 12:30:24 +03006970 kvm_make_request(KVM_REQ_EVENT, vcpu);
6971
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006972 return 0;
6973}
6974
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006975void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
6976{
6977 struct kvm_segment cs;
6978
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006979 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006980 *db = cs.db;
6981 *l = cs.l;
6982}
6983EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
6984
6985int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
6986 struct kvm_sregs *sregs)
6987{
Gleb Natapov89a27f42010-02-16 10:51:48 +02006988 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006989
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006990 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
6991 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
6992 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
6993 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
6994 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
6995 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006996
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006997 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
6998 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006999
7000 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007001 sregs->idt.limit = dt.size;
7002 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007003 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007004 sregs->gdt.limit = dt.size;
7005 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007006
Avi Kivity4d4ec082009-12-29 18:07:30 +02007007 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007008 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007009 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02007010 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007011 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02007012 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007013 sregs->apic_base = kvm_get_apic_base(vcpu);
7014
Gleb Natapov923c61b2009-05-11 13:35:48 +03007015 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007016
Gleb Natapov36752c92009-05-11 13:35:53 +03007017 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03007018 set_bit(vcpu->arch.interrupt.nr,
7019 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03007020
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007021 return 0;
7022}
7023
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007024int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
7025 struct kvm_mp_state *mp_state)
7026{
Jan Kiszka66450a22013-03-13 12:42:34 +01007027 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307028 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
7029 vcpu->arch.pv.pv_unhalted)
7030 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
7031 else
7032 mp_state->mp_state = vcpu->arch.mp_state;
7033
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007034 return 0;
7035}
7036
7037int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
7038 struct kvm_mp_state *mp_state)
7039{
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007040 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01007041 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
7042 return -EINVAL;
7043
7044 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
7045 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
7046 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
7047 } else
7048 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03007049 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007050 return 0;
7051}
7052
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007053int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
7054 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007055{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007056 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007057 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007058
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007059 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007060
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007061 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007062 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02007063
Gleb Natapovc6975182010-02-18 12:15:01 +02007064 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03007065 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02007066
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007067 kvm_rip_write(vcpu, ctxt->eip);
7068 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03007069 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03007070 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02007071}
7072EXPORT_SYMBOL_GPL(kvm_task_switch);
7073
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007074int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
7075 struct kvm_sregs *sregs)
7076{
Jan Kiszka58cb6282014-01-24 16:48:44 +01007077 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007078 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007079 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02007080 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007081
Petr Matousek6d1068b2012-11-06 19:24:07 +01007082 if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE))
7083 return -EINVAL;
7084
Gleb Natapov89a27f42010-02-16 10:51:48 +02007085 dt.size = sregs->idt.limit;
7086 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007087 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007088 dt.size = sregs->gdt.limit;
7089 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007090 kvm_x86_ops->set_gdt(vcpu, &dt);
7091
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007092 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007093 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02007094 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02007095 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007096
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007097 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007098
Avi Kivityf6801df2010-01-21 15:31:50 +02007099 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007100 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Jan Kiszka58cb6282014-01-24 16:48:44 +01007101 apic_base_msr.data = sregs->apic_base;
7102 apic_base_msr.host_initiated = true;
7103 kvm_set_apic_base(vcpu, &apic_base_msr);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007104
Avi Kivity4d4ec082009-12-29 18:07:30 +02007105 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007106 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00007107 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007108
Avi Kivityfc78f512009-12-07 12:16:48 +02007109 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007110 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Sheng Yang3ea3aa82010-12-08 10:49:43 +08007111 if (sregs->cr4 & X86_CR4_OSXSAVE)
Avi Kivity00b27a32011-11-23 16:30:32 +02007112 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007113
7114 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02007115 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02007116 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02007117 mmu_reset_needed = 1;
7118 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007119 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007120
7121 if (mmu_reset_needed)
7122 kvm_mmu_reset_context(vcpu);
7123
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03007124 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03007125 pending_vec = find_first_bit(
7126 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
7127 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007128 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03007129 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007130 }
7131
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007132 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7133 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7134 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7135 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7136 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7137 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007138
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007139 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7140 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007141
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03007142 update_cr8_intercept(vcpu);
7143
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007144 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03007145 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007146 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02007147 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007148 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
7149
Avi Kivity3842d132010-07-27 12:30:24 +03007150 kvm_make_request(KVM_REQ_EVENT, vcpu);
7151
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007152 return 0;
7153}
7154
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007155int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
7156 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007157{
Jan Kiszka355be0b2009-10-03 00:31:21 +02007158 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007159 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007160
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007161 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
7162 r = -EBUSY;
7163 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03007164 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007165 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
7166 kvm_queue_exception(vcpu, DB_VECTOR);
7167 else
7168 kvm_queue_exception(vcpu, BP_VECTOR);
7169 }
7170
Jan Kiszka91586a32009-10-05 13:07:21 +02007171 /*
7172 * Read rflags as long as potentially injected trace flags are still
7173 * filtered out.
7174 */
7175 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007176
7177 vcpu->guest_debug = dbg->control;
7178 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
7179 vcpu->guest_debug = 0;
7180
7181 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007182 for (i = 0; i < KVM_NR_DB_REGS; ++i)
7183 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02007184 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007185 } else {
7186 for (i = 0; i < KVM_NR_DB_REGS; i++)
7187 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007188 }
Jan Kiszkac8639012012-09-21 05:42:55 +02007189 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007190
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007191 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
7192 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
7193 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007194
Jan Kiszka91586a32009-10-05 13:07:21 +02007195 /*
7196 * Trigger an rflags update that will inject or remove the trace
7197 * flags.
7198 */
7199 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007200
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007201 kvm_x86_ops->update_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007202
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007203 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007204
Avi Kivity2122ff52010-05-13 11:25:04 +03007205out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007206
7207 return r;
7208}
7209
7210/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08007211 * Translate a guest virtual address to a guest physical address.
7212 */
7213int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
7214 struct kvm_translation *tr)
7215{
7216 unsigned long vaddr = tr->linear_address;
7217 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007218 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007219
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007220 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02007221 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007222 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08007223 tr->physical_address = gpa;
7224 tr->valid = gpa != UNMAPPED_GVA;
7225 tr->writeable = 1;
7226 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007227
7228 return 0;
7229}
7230
Hollis Blanchardd0752062007-10-31 17:24:25 -05007231int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7232{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007233 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007234 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007235
Hollis Blanchardd0752062007-10-31 17:24:25 -05007236 memcpy(fpu->fpr, fxsave->st_space, 128);
7237 fpu->fcw = fxsave->cwd;
7238 fpu->fsw = fxsave->swd;
7239 fpu->ftwx = fxsave->twd;
7240 fpu->last_opcode = fxsave->fop;
7241 fpu->last_ip = fxsave->rip;
7242 fpu->last_dp = fxsave->rdp;
7243 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
7244
Hollis Blanchardd0752062007-10-31 17:24:25 -05007245 return 0;
7246}
7247
7248int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7249{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007250 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007251 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007252
Hollis Blanchardd0752062007-10-31 17:24:25 -05007253 memcpy(fxsave->st_space, fpu->fpr, 128);
7254 fxsave->cwd = fpu->fcw;
7255 fxsave->swd = fpu->fsw;
7256 fxsave->twd = fpu->ftwx;
7257 fxsave->fop = fpu->last_opcode;
7258 fxsave->rip = fpu->last_ip;
7259 fxsave->rdp = fpu->last_dp;
7260 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
7261
Hollis Blanchardd0752062007-10-31 17:24:25 -05007262 return 0;
7263}
7264
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007265static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007266{
Ingo Molnarbf935b02015-04-30 10:23:42 +02007267 fpstate_init(&vcpu->arch.guest_fpu.state);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007268 if (cpu_has_xsaves)
Ingo Molnar7366ed72015-04-27 04:19:39 +02007269 vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007270 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007271
Dexuan Cui2acf9232010-06-10 11:27:12 +08007272 /*
7273 * Ensure guest xcr0 is valid for loading
7274 */
Dave Hansend91cab72015-09-02 16:31:26 -07007275 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +08007276
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007277 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007278}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007279
7280void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
7281{
Avi Kivity2608d7a2010-01-21 15:31:45 +02007282 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007283 return;
7284
Dexuan Cui2acf9232010-06-10 11:27:12 +08007285 /*
7286 * Restore all possible states in the guest,
7287 * and assume host would use all available bits.
7288 * Guest xcr0 would be loaded later.
7289 */
7290 kvm_put_guest_xcr0(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007291 vcpu->guest_fpu_loaded = 1;
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007292 __kernel_fpu_begin();
Ingo Molnar003e2e82015-05-25 11:59:35 +02007293 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state);
Avi Kivity0c048512010-01-21 15:31:52 +02007294 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007295}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007296
7297void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
7298{
Dexuan Cui2acf9232010-06-10 11:27:12 +08007299 kvm_put_guest_xcr0(vcpu);
7300
Rik van Riel653f52c2015-04-23 11:52:37 -04007301 if (!vcpu->guest_fpu_loaded) {
7302 vcpu->fpu_counter = 0;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007303 return;
Rik van Riel653f52c2015-04-23 11:52:37 -04007304 }
Hollis Blanchardd0752062007-10-31 17:24:25 -05007305
7306 vcpu->guest_fpu_loaded = 0;
Ingo Molnar4f836342015-04-27 02:53:16 +02007307 copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007308 __kernel_fpu_end();
Avi Kivityf096ed82007-11-18 13:54:33 +02007309 ++vcpu->stat.fpu_reload;
Rik van Riel653f52c2015-04-23 11:52:37 -04007310 /*
7311 * If using eager FPU mode, or if the guest is a frequent user
7312 * of the FPU, just leave the FPU active for next time.
7313 * Every 255 times fpu_counter rolls over to 0; a guest that uses
7314 * the FPU in bursts will revert to loading it on demand.
7315 */
Paolo Bonzinia9b4fb72015-05-20 11:46:12 +02007316 if (!vcpu->arch.eager_fpu) {
Rik van Riel653f52c2015-04-23 11:52:37 -04007317 if (++vcpu->fpu_counter < 5)
7318 kvm_make_request(KVM_REQ_DEACTIVATE_FPU, vcpu);
7319 }
Avi Kivity0c048512010-01-21 15:31:52 +02007320 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007321}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007322
7323void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
7324{
Glauber Costa12f9a482011-02-01 14:16:40 -05007325 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01007326
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007327 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007328 kvm_x86_ops->vcpu_free(vcpu);
7329}
7330
7331struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
7332 unsigned int id)
7333{
Liang Lic447e762015-05-21 04:41:25 +08007334 struct kvm_vcpu *vcpu;
7335
Zachary Amsden6755bae2010-08-19 22:07:22 -10007336 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
7337 printk_once(KERN_WARNING
7338 "kvm: SMP vm created on host with unstable TSC; "
7339 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08007340
7341 vcpu = kvm_x86_ops->vcpu_create(kvm, id);
7342
Liang Lic447e762015-05-21 04:41:25 +08007343 return vcpu;
Avi Kivity26e52152007-11-20 15:30:24 +02007344}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007345
Avi Kivity26e52152007-11-20 15:30:24 +02007346int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
7347{
7348 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007349
Xiao Guangrong19efffa2015-06-15 16:55:31 +08007350 kvm_vcpu_mtrr_init(vcpu);
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007351 r = vcpu_load(vcpu);
7352 if (r)
7353 return r;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007354 kvm_vcpu_reset(vcpu, false);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02007355 kvm_mmu_setup(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007356 vcpu_put(vcpu);
Avi Kivity26e52152007-11-20 15:30:24 +02007357 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007358}
7359
Dominik Dingel31928aa2014-12-04 15:47:07 +01007360void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007361{
Will Auld8fe8ab42012-11-29 12:42:12 -08007362 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01007363 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007364
Dominik Dingel31928aa2014-12-04 15:47:07 +01007365 if (vcpu_load(vcpu))
7366 return;
Will Auld8fe8ab42012-11-29 12:42:12 -08007367 msr.data = 0x0;
7368 msr.index = MSR_IA32_TSC;
7369 msr.host_initiated = true;
7370 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007371 vcpu_put(vcpu);
7372
Marcelo Tosatti630994b2015-05-12 22:42:04 -03007373 if (!kvmclock_periodic_sync)
7374 return;
7375
Andrew Jones332967a2014-02-28 12:52:55 +01007376 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
7377 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007378}
7379
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06007380void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007381{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007382 int r;
Gleb Natapov344d9582010-10-14 11:22:50 +02007383 vcpu->arch.apf.msr_val = 0;
7384
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007385 r = vcpu_load(vcpu);
7386 BUG_ON(r);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007387 kvm_mmu_unload(vcpu);
7388 vcpu_put(vcpu);
7389
7390 kvm_x86_ops->vcpu_free(vcpu);
7391}
7392
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007393void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007394{
Paolo Bonzinie69fab52015-06-04 10:44:44 +02007395 vcpu->arch.hflags = 0;
7396
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007397 atomic_set(&vcpu->arch.nmi_queued, 0);
7398 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007399 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03007400 kvm_clear_interrupt_queue(vcpu);
7401 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007402
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007403 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03007404 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03007405 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007406 kvm_update_dr6(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007407 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02007408 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007409
Nadav Amit11190222015-04-02 03:10:38 +03007410 vcpu->arch.cr2 = 0;
7411
Avi Kivity3842d132010-07-27 12:30:24 +03007412 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02007413 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04007414 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03007415
Glauber Costa12f9a482011-02-01 14:16:40 -05007416 kvmclock_reset(vcpu);
7417
Gleb Natapovaf585b92010-10-14 11:22:46 +02007418 kvm_clear_async_pf_completion_queue(vcpu);
7419 kvm_async_pf_hash_reset(vcpu);
7420 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007421
Paolo Bonzini64d60672015-05-07 11:36:11 +02007422 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007423 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007424 vcpu->arch.smbase = 0x30000;
7425 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02007426
Julian Stecklina66f7b722012-12-05 15:26:19 +01007427 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
7428 vcpu->arch.regs_avail = ~0;
7429 vcpu->arch.regs_dirty = ~0;
7430
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007431 kvm_x86_ops->vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007432}
7433
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01007434void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01007435{
7436 struct kvm_segment cs;
7437
7438 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
7439 cs.selector = vector << 8;
7440 cs.base = vector << 12;
7441 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
7442 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007443}
7444
Radim Krčmář13a34e02014-08-28 15:13:03 +02007445int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007446{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10007447 struct kvm *kvm;
7448 struct kvm_vcpu *vcpu;
7449 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007450 int ret;
7451 u64 local_tsc;
7452 u64 max_tsc = 0;
7453 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03007454
7455 kvm_shared_msr_cpu_online();
Radim Krčmář13a34e02014-08-28 15:13:03 +02007456 ret = kvm_x86_ops->hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007457 if (ret != 0)
7458 return ret;
7459
Andy Lutomirski4ea16362015-06-25 18:44:07 +02007460 local_tsc = rdtsc();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007461 stable = !check_tsc_unstable();
7462 list_for_each_entry(kvm, &vm_list, vm_list) {
7463 kvm_for_each_vcpu(i, vcpu, kvm) {
7464 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007465 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007466 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
7467 backwards_tsc = true;
7468 if (vcpu->arch.last_host_tsc > max_tsc)
7469 max_tsc = vcpu->arch.last_host_tsc;
7470 }
7471 }
7472 }
7473
7474 /*
7475 * Sometimes, even reliable TSCs go backwards. This happens on
7476 * platforms that reset TSC during suspend or hibernate actions, but
7477 * maintain synchronization. We must compensate. Fortunately, we can
7478 * detect that condition here, which happens early in CPU bringup,
7479 * before any KVM threads can be running. Unfortunately, we can't
7480 * bring the TSCs fully up to date with real time, as we aren't yet far
7481 * enough into CPU bringup that we know how much real time has actually
7482 * elapsed; our helper function, get_kernel_ns() will be using boot
7483 * variables that haven't been updated yet.
7484 *
7485 * So we simply find the maximum observed TSC above, then record the
7486 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
7487 * the adjustment will be applied. Note that we accumulate
7488 * adjustments, in case multiple suspend cycles happen before some VCPU
7489 * gets a chance to run again. In the event that no KVM threads get a
7490 * chance to run, we will miss the entire elapsed period, as we'll have
7491 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
7492 * loose cycle time. This isn't too big a deal, since the loss will be
7493 * uniform across all VCPUs (not to mention the scenario is extremely
7494 * unlikely). It is possible that a second hibernate recovery happens
7495 * much faster than a first, causing the observed TSC here to be
7496 * smaller; this would require additional padding adjustment, which is
7497 * why we set last_host_tsc to the local tsc observed here.
7498 *
7499 * N.B. - this code below runs only on platforms with reliable TSC,
7500 * as that is the only way backwards_tsc is set above. Also note
7501 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
7502 * have the same delta_cyc adjustment applied if backwards_tsc
7503 * is detected. Note further, this adjustment is only done once,
7504 * as we reset last_host_tsc on all VCPUs to stop this from being
7505 * called multiple times (one for each physical CPU bringup).
7506 *
Guo Chao4a969982012-06-28 15:17:27 +08007507 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007508 * will be compensated by the logic in vcpu_load, which sets the TSC to
7509 * catchup mode. This will catchup all VCPUs to real time, but cannot
7510 * guarantee that they stay in perfect synchronization.
7511 */
7512 if (backwards_tsc) {
7513 u64 delta_cyc = max_tsc - local_tsc;
Marcelo Tosatti16a96022014-05-14 12:43:24 -03007514 backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007515 list_for_each_entry(kvm, &vm_list, vm_list) {
7516 kvm_for_each_vcpu(i, vcpu, kvm) {
7517 vcpu->arch.tsc_offset_adjustment += delta_cyc;
7518 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007519 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007520 }
7521
7522 /*
7523 * We have to disable TSC offset matching.. if you were
7524 * booting a VM while issuing an S4 host suspend....
7525 * you may have some problem. Solving this issue is
7526 * left as an exercise to the reader.
7527 */
7528 kvm->arch.last_tsc_nsec = 0;
7529 kvm->arch.last_tsc_write = 0;
7530 }
7531
7532 }
7533 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007534}
7535
Radim Krčmář13a34e02014-08-28 15:13:03 +02007536void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007537{
Radim Krčmář13a34e02014-08-28 15:13:03 +02007538 kvm_x86_ops->hardware_disable();
7539 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007540}
7541
7542int kvm_arch_hardware_setup(void)
7543{
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007544 int r;
7545
7546 r = kvm_x86_ops->hardware_setup();
7547 if (r != 0)
7548 return r;
7549
Haozhong Zhang35181e82015-10-20 15:39:03 +08007550 if (kvm_has_tsc_control) {
7551 /*
7552 * Make sure the user can only configure tsc_khz values that
7553 * fit into a signed integer.
7554 * A min value is not calculated needed because it will always
7555 * be 1 on all machines.
7556 */
7557 u64 max = min(0x7fffffffULL,
7558 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
7559 kvm_max_guest_tsc_khz = max;
7560
Haozhong Zhangad721882015-10-20 15:39:02 +08007561 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +08007562 }
Haozhong Zhangad721882015-10-20 15:39:02 +08007563
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007564 kvm_init_msr_list();
7565 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007566}
7567
7568void kvm_arch_hardware_unsetup(void)
7569{
7570 kvm_x86_ops->hardware_unsetup();
7571}
7572
7573void kvm_arch_check_processor_compat(void *rtn)
7574{
7575 kvm_x86_ops->check_processor_compatibility(rtn);
7576}
7577
Paolo Bonzinid71ba782015-07-29 11:56:48 +02007578bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
7579{
7580 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
7581}
7582EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
7583
7584bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
7585{
7586 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
7587}
7588
Avi Kivity3e515702012-03-05 14:23:29 +02007589bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu)
7590{
Paolo Bonzini35754c92015-07-29 12:05:37 +02007591 return irqchip_in_kernel(vcpu->kvm) == lapic_in_kernel(vcpu);
Avi Kivity3e515702012-03-05 14:23:29 +02007592}
7593
Gleb Natapov54e98182012-08-05 15:58:32 +03007594struct static_key kvm_no_apic_vcpu __read_mostly;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007595EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +03007596
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007597int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
7598{
7599 struct page *page;
7600 struct kvm *kvm;
7601 int r;
7602
7603 BUG_ON(vcpu->kvm == NULL);
7604 kvm = vcpu->kvm;
7605
Andrey Smetanind62caab2015-11-10 15:36:33 +03007606 vcpu->arch.apicv_active = kvm_x86_ops->get_enable_apicv();
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307607 vcpu->arch.pv.pv_unhalted = false;
Avi Kivity9aabc88f2010-07-29 15:11:50 +03007608 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Nadav Amit58d269d2015-04-02 03:10:36 +03007609 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03007610 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007611 else
Avi Kivitya4535292008-04-13 17:54:35 +03007612 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007613
7614 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
7615 if (!page) {
7616 r = -ENOMEM;
7617 goto fail;
7618 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007619 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007620
Zachary Amsdencc578282012-02-03 15:43:50 -02007621 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10007622
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007623 r = kvm_mmu_create(vcpu);
7624 if (r < 0)
7625 goto fail_free_pio_data;
7626
7627 if (irqchip_in_kernel(kvm)) {
7628 r = kvm_create_lapic(vcpu);
7629 if (r < 0)
7630 goto fail_mmu_destroy;
Gleb Natapov54e98182012-08-05 15:58:32 +03007631 } else
7632 static_key_slow_inc(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007633
Huang Ying890ca9a2009-05-11 16:48:15 +08007634 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
7635 GFP_KERNEL);
7636 if (!vcpu->arch.mce_banks) {
7637 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08007638 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08007639 }
7640 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
7641
Wei Yongjunf1797352013-04-18 07:41:00 +08007642 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) {
7643 r = -ENOMEM;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007644 goto fail_free_mce_banks;
Wei Yongjunf1797352013-04-18 07:41:00 +08007645 }
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007646
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007647 fx_init(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01007648
Will Auldba904632012-11-29 12:42:50 -08007649 vcpu->arch.ia32_tsc_adjust_msr = 0x0;
Andy Honig0b794592013-02-20 14:48:10 -08007650 vcpu->arch.pv_time_enabled = false;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007651
7652 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +02007653 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007654
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +03007655 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
7656
Radim Krčmář74545702015-04-27 15:11:25 +02007657 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
7658
Gleb Natapovaf585b92010-10-14 11:22:46 +02007659 kvm_async_pf_hash_reset(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007660 kvm_pmu_init(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007661
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02007662 vcpu->arch.pending_external_vector = -1;
7663
Andrey Smetanin5c9194122015-11-10 15:36:34 +03007664 kvm_hv_vcpu_init(vcpu);
7665
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007666 return 0;
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007667
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007668fail_free_mce_banks:
7669 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08007670fail_free_lapic:
7671 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007672fail_mmu_destroy:
7673 kvm_mmu_destroy(vcpu);
7674fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007675 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007676fail:
7677 return r;
7678}
7679
7680void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
7681{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007682 int idx;
7683
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03007684 kvm_hv_vcpu_uninit(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007685 kvm_pmu_destroy(vcpu);
Wei Yongjun36cb93f2010-01-22 14:18:47 +08007686 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007687 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007688 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007689 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007690 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007691 free_page((unsigned long)vcpu->arch.pio_data);
Paolo Bonzini35754c92015-07-29 12:05:37 +02007692 if (!lapic_in_kernel(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03007693 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007694}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007695
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007696void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
7697{
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007698 kvm_x86_ops->sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007699}
7700
Carsten Ottee08b9632012-01-04 10:25:20 +01007701int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007702{
Carsten Ottee08b9632012-01-04 10:25:20 +01007703 if (type)
7704 return -EINVAL;
7705
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01007706 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08007707 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Xiao Guangrong365c8862013-05-31 08:36:29 +08007708 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03007709 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06007710 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007711
Sheng Yang5550af42008-10-15 20:15:06 +08007712 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
7713 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06007714 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
7715 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
7716 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08007717
Jan Kiszka038f8c12011-02-04 10:49:11 +01007718 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007719 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007720 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
7721
7722 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01007723
Andrew Jones7e44e442014-02-28 12:52:54 +01007724 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01007725 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01007726
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01007727 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007728}
7729
7730static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
7731{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007732 int r;
7733 r = vcpu_load(vcpu);
7734 BUG_ON(r);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007735 kvm_mmu_unload(vcpu);
7736 vcpu_put(vcpu);
7737}
7738
7739static void kvm_free_vcpus(struct kvm *kvm)
7740{
7741 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007742 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007743
7744 /*
7745 * Unpin any mmu pages first.
7746 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02007747 kvm_for_each_vcpu(i, vcpu, kvm) {
7748 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007749 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007750 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007751 kvm_for_each_vcpu(i, vcpu, kvm)
7752 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007753
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007754 mutex_lock(&kvm->lock);
7755 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
7756 kvm->vcpus[i] = NULL;
7757
7758 atomic_set(&kvm->online_vcpus, 0);
7759 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007760}
7761
Sheng Yangad8ba2c2009-01-06 10:03:02 +08007762void kvm_arch_sync_events(struct kvm *kvm)
7763{
Andrew Jones332967a2014-02-28 12:52:55 +01007764 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01007765 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Sheng Yangba4cef32009-01-06 10:03:03 +08007766 kvm_free_all_assigned_devices(kvm);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08007767 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08007768}
7769
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007770int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007771{
7772 int i, r;
Paolo Bonzini25188b92015-10-14 15:51:08 +02007773 unsigned long hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007774 struct kvm_memslots *slots = kvm_memslots(kvm);
7775 struct kvm_memory_slot *slot, old;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007776
7777 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007778 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
7779 return -EINVAL;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007780
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007781 slot = id_to_memslot(slots, id);
7782 if (size) {
7783 if (WARN_ON(slot->npages))
7784 return -EEXIST;
7785
7786 /*
7787 * MAP_SHARED to prevent internal slot pages from being moved
7788 * by fork()/COW.
7789 */
7790 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
7791 MAP_SHARED | MAP_ANONYMOUS, 0);
7792 if (IS_ERR((void *)hva))
7793 return PTR_ERR((void *)hva);
7794 } else {
7795 if (!slot->npages)
7796 return 0;
7797
7798 hva = 0;
7799 }
7800
7801 old = *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007802 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007803 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007804
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007805 m.slot = id | (i << 16);
7806 m.flags = 0;
7807 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007808 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007809 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007810 r = __kvm_set_memory_region(kvm, &m);
7811 if (r < 0)
7812 return r;
7813 }
7814
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02007815 if (!size) {
7816 r = vm_munmap(old.userspace_addr, old.npages * PAGE_SIZE);
7817 WARN_ON(r < 0);
7818 }
7819
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007820 return 0;
7821}
7822EXPORT_SYMBOL_GPL(__x86_set_memory_region);
7823
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007824int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007825{
7826 int r;
7827
7828 mutex_lock(&kvm->slots_lock);
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007829 r = __x86_set_memory_region(kvm, id, gpa, size);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02007830 mutex_unlock(&kvm->slots_lock);
7831
7832 return r;
7833}
7834EXPORT_SYMBOL_GPL(x86_set_memory_region);
7835
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007836void kvm_arch_destroy_vm(struct kvm *kvm)
7837{
Andrew Honig27469d22013-04-18 09:38:14 -07007838 if (current->mm == kvm->mm) {
7839 /*
7840 * Free memory regions allocated on behalf of userspace,
7841 * unless the the memory map has changed due to process exit
7842 * or fd copying.
7843 */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02007844 x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, 0, 0);
7845 x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, 0, 0);
7846 x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
Andrew Honig27469d22013-04-18 09:38:14 -07007847 }
Sheng Yang6eb55812008-10-31 12:37:41 +08007848 kvm_iommu_unmap_guest(kvm);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08007849 kfree(kvm->arch.vpic);
7850 kfree(kvm->arch.vioapic);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007851 kvm_free_vcpus(kvm);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007852 kfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007853}
Zhang Xiantao0de10342007-11-20 16:25:04 +08007854
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05307855void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007856 struct kvm_memory_slot *dont)
7857{
7858 int i;
7859
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007860 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
7861 if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) {
Thomas Huth548ef282015-02-24 21:29:25 +01007862 kvfree(free->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007863 free->arch.rmap[i] = NULL;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007864 }
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007865 if (i == 0)
7866 continue;
7867
7868 if (!dont || free->arch.lpage_info[i - 1] !=
7869 dont->arch.lpage_info[i - 1]) {
Thomas Huth548ef282015-02-24 21:29:25 +01007870 kvfree(free->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007871 free->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007872 }
7873 }
7874}
7875
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05307876int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
7877 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007878{
7879 int i;
7880
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007881 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007882 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007883 unsigned long ugfn;
7884 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007885 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007886
7887 lpages = gfn_to_index(slot->base_gfn + npages - 1,
7888 slot->base_gfn, level) + 1;
7889
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007890 slot->arch.rmap[i] =
7891 kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i]));
7892 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007893 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007894 if (i == 0)
7895 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007896
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007897 linfo = kvm_kvzalloc(lpages * sizeof(*linfo));
7898 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007899 goto out_free;
7900
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007901 slot->arch.lpage_info[i - 1] = linfo;
7902
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007903 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007904 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007905 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007906 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007907 ugfn = slot->userspace_addr >> PAGE_SHIFT;
7908 /*
7909 * If the gfn and userspace address are not aligned wrt each
7910 * other, or if explicitly asked to, disable large page
7911 * support for this slot
7912 */
7913 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
7914 !kvm_largepages_enabled()) {
7915 unsigned long j;
7916
7917 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08007918 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007919 }
7920 }
7921
7922 return 0;
7923
7924out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007925 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +01007926 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007927 slot->arch.rmap[i] = NULL;
7928 if (i == 0)
7929 continue;
7930
Thomas Huth548ef282015-02-24 21:29:25 +01007931 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007932 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007933 }
7934 return -ENOMEM;
7935}
7936
Paolo Bonzini15f46012015-05-17 21:26:08 +02007937void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09007938{
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09007939 /*
7940 * memslots->generation has been incremented.
7941 * mmio generation may have reached its maximum value.
7942 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007943 kvm_mmu_invalidate_mmio_sptes(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09007944}
7945
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007946int kvm_arch_prepare_memory_region(struct kvm *kvm,
7947 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02007948 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09007949 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +08007950{
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007951 return 0;
7952}
7953
Kai Huang88178fd2015-01-28 10:54:27 +08007954static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
7955 struct kvm_memory_slot *new)
7956{
7957 /* Still write protect RO slot */
7958 if (new->flags & KVM_MEM_READONLY) {
7959 kvm_mmu_slot_remove_write_access(kvm, new);
7960 return;
7961 }
7962
7963 /*
7964 * Call kvm_x86_ops dirty logging hooks when they are valid.
7965 *
7966 * kvm_x86_ops->slot_disable_log_dirty is called when:
7967 *
7968 * - KVM_MR_CREATE with dirty logging is disabled
7969 * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag
7970 *
7971 * The reason is, in case of PML, we need to set D-bit for any slots
7972 * with dirty logging disabled in order to eliminate unnecessary GPA
7973 * logging in PML buffer (and potential PML buffer full VMEXT). This
7974 * guarantees leaving PML enabled during guest's lifetime won't have
7975 * any additonal overhead from PML when guest is running with dirty
7976 * logging disabled for memory slots.
7977 *
7978 * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot
7979 * to dirty logging mode.
7980 *
7981 * If kvm_x86_ops dirty logging hooks are invalid, use write protect.
7982 *
7983 * In case of write protect:
7984 *
7985 * Write protect all pages for dirty logging.
7986 *
7987 * All the sptes including the large sptes which point to this
7988 * slot are set to readonly. We can not create any new large
7989 * spte on this slot until the end of the logging.
7990 *
7991 * See the comments in fast_page_fault().
7992 */
7993 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
7994 if (kvm_x86_ops->slot_enable_log_dirty)
7995 kvm_x86_ops->slot_enable_log_dirty(kvm, new);
7996 else
7997 kvm_mmu_slot_remove_write_access(kvm, new);
7998 } else {
7999 if (kvm_x86_ops->slot_disable_log_dirty)
8000 kvm_x86_ops->slot_disable_log_dirty(kvm, new);
8001 }
8002}
8003
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008004void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008005 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008006 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008007 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008008 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008009{
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008010 int nr_mmu_pages = 0;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008011
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008012 if (!kvm->arch.n_requested_mmu_pages)
8013 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008014
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008015 if (nr_mmu_pages)
8016 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Kai Huang1c91cad42015-01-28 10:54:26 +08008017
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008018 /*
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08008019 * Dirty logging tracks sptes in 4k granularity, meaning that large
8020 * sptes have to be split. If live migration is successful, the guest
8021 * in the source machine will be destroyed and large sptes will be
8022 * created in the destination. However, if the guest continues to run
8023 * in the source machine (for example if live migration fails), small
8024 * sptes will remain around and cause bad performance.
8025 *
8026 * Scan sptes if dirty logging has been stopped, dropping those
8027 * which can be collapsed into a single large-page spte. Later
8028 * page faults will create the large-page sptes.
8029 */
8030 if ((change != KVM_MR_DELETE) &&
8031 (old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
8032 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
8033 kvm_mmu_zap_collapsible_sptes(kvm, new);
8034
8035 /*
Kai Huang88178fd2015-01-28 10:54:27 +08008036 * Set up write protection and/or dirty logging for the new slot.
Xiao Guangrongc126d942014-04-17 17:06:14 +08008037 *
Kai Huang88178fd2015-01-28 10:54:27 +08008038 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have
8039 * been zapped so no dirty logging staff is needed for old slot. For
8040 * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the
8041 * new and it's also covered when dealing with the new slot.
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008042 *
8043 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008044 */
Kai Huang88178fd2015-01-28 10:54:27 +08008045 if (change != KVM_MR_DELETE)
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008046 kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008047}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008048
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008049void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008050{
Xiao Guangrong6ca18b62013-05-31 08:36:23 +08008051 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008052}
8053
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008054void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
8055 struct kvm_memory_slot *slot)
8056{
Xiao Guangrong6ca18b62013-05-31 08:36:23 +08008057 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008058}
8059
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008060static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
8061{
8062 if (!list_empty_careful(&vcpu->async_pf.done))
8063 return true;
8064
8065 if (kvm_apic_has_events(vcpu))
8066 return true;
8067
8068 if (vcpu->arch.pv.pv_unhalted)
8069 return true;
8070
8071 if (atomic_read(&vcpu->arch.nmi_queued))
8072 return true;
8073
Paolo Bonzini73917732015-10-13 10:19:35 +02008074 if (test_bit(KVM_REQ_SMI, &vcpu->requests))
8075 return true;
8076
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008077 if (kvm_arch_interrupt_allowed(vcpu) &&
8078 kvm_cpu_has_interrupt(vcpu))
8079 return true;
8080
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03008081 if (kvm_hv_has_stimer_pending(vcpu))
8082 return true;
8083
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008084 return false;
8085}
8086
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008087int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
8088{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008089 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events)
8090 kvm_x86_ops->check_nested_events(vcpu, false);
8091
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008092 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008093}
Zhang Xiantao57361992007-12-17 14:21:40 +08008094
Christoffer Dallb6d33832012-03-08 16:44:24 -05008095int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +08008096{
Christoffer Dallb6d33832012-03-08 16:44:24 -05008097 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +08008098}
Gleb Natapov78646122009-03-23 12:12:11 +02008099
8100int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
8101{
8102 return kvm_x86_ops->interrupt_allowed(vcpu);
8103}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008104
Nadav Amit82b32772014-11-02 11:54:45 +02008105unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
8106{
8107 if (is_64_bit_mode(vcpu))
8108 return kvm_rip_read(vcpu);
8109 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
8110 kvm_rip_read(vcpu));
8111}
8112EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
8113
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008114bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
8115{
Nadav Amit82b32772014-11-02 11:54:45 +02008116 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008117}
8118EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
8119
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008120unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
8121{
8122 unsigned long rflags;
8123
8124 rflags = kvm_x86_ops->get_rflags(vcpu);
8125 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01008126 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008127 return rflags;
8128}
8129EXPORT_SYMBOL_GPL(kvm_get_rflags);
8130
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008131static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008132{
8133 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008134 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01008135 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008136 kvm_x86_ops->set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008137}
8138
8139void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
8140{
8141 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03008142 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008143}
8144EXPORT_SYMBOL_GPL(kvm_set_rflags);
8145
Gleb Natapov56028d02010-10-17 18:13:42 +02008146void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
8147{
8148 int r;
8149
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008150 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +08008151 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +02008152 return;
8153
8154 r = kvm_mmu_reload(vcpu);
8155 if (unlikely(r))
8156 return;
8157
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008158 if (!vcpu->arch.mmu.direct_map &&
8159 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
8160 return;
8161
Gleb Natapov56028d02010-10-17 18:13:42 +02008162 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
8163}
8164
Gleb Natapovaf585b92010-10-14 11:22:46 +02008165static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
8166{
8167 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
8168}
8169
8170static inline u32 kvm_async_pf_next_probe(u32 key)
8171{
8172 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
8173}
8174
8175static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8176{
8177 u32 key = kvm_async_pf_hash_fn(gfn);
8178
8179 while (vcpu->arch.apf.gfns[key] != ~0)
8180 key = kvm_async_pf_next_probe(key);
8181
8182 vcpu->arch.apf.gfns[key] = gfn;
8183}
8184
8185static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
8186{
8187 int i;
8188 u32 key = kvm_async_pf_hash_fn(gfn);
8189
8190 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08008191 (vcpu->arch.apf.gfns[key] != gfn &&
8192 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02008193 key = kvm_async_pf_next_probe(key);
8194
8195 return key;
8196}
8197
8198bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8199{
8200 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
8201}
8202
8203static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8204{
8205 u32 i, j, k;
8206
8207 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
8208 while (true) {
8209 vcpu->arch.apf.gfns[i] = ~0;
8210 do {
8211 j = kvm_async_pf_next_probe(j);
8212 if (vcpu->arch.apf.gfns[j] == ~0)
8213 return;
8214 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
8215 /*
8216 * k lies cyclically in ]i,j]
8217 * | i.k.j |
8218 * |....j i.k.| or |.k..j i...|
8219 */
8220 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
8221 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
8222 i = j;
8223 }
8224}
8225
Gleb Natapov7c907052010-10-14 11:22:53 +02008226static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
8227{
8228
8229 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val,
8230 sizeof(val));
8231}
8232
Gleb Natapovaf585b92010-10-14 11:22:46 +02008233void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
8234 struct kvm_async_pf *work)
8235{
Avi Kivity6389ee92010-11-29 16:12:30 +02008236 struct x86_exception fault;
8237
Gleb Natapov7c907052010-10-14 11:22:53 +02008238 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008239 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02008240
8241 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02008242 (vcpu->arch.apf.send_user_only &&
8243 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02008244 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
8245 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008246 fault.vector = PF_VECTOR;
8247 fault.error_code_valid = true;
8248 fault.error_code = 0;
8249 fault.nested_page_fault = false;
8250 fault.address = work->arch.token;
8251 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008252 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008253}
8254
8255void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
8256 struct kvm_async_pf *work)
8257{
Avi Kivity6389ee92010-11-29 16:12:30 +02008258 struct x86_exception fault;
8259
Gleb Natapov7c907052010-10-14 11:22:53 +02008260 trace_kvm_async_pf_ready(work->arch.token, work->gva);
chai wenf2e10662013-10-14 22:22:33 +08008261 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +02008262 work->arch.token = ~0; /* broadcast wakeup */
8263 else
8264 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
8265
8266 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
8267 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008268 fault.vector = PF_VECTOR;
8269 fault.error_code_valid = true;
8270 fault.error_code = 0;
8271 fault.nested_page_fault = false;
8272 fault.address = work->arch.token;
8273 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008274 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08008275 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +03008276 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +02008277}
8278
8279bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
8280{
8281 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
8282 return true;
8283 else
8284 return !kvm_event_needs_reinjection(vcpu) &&
8285 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008286}
8287
Paolo Bonzini5544eb92015-07-07 15:41:58 +02008288void kvm_arch_start_assignment(struct kvm *kvm)
8289{
8290 atomic_inc(&kvm->arch.assigned_device_count);
8291}
8292EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
8293
8294void kvm_arch_end_assignment(struct kvm *kvm)
8295{
8296 atomic_dec(&kvm->arch.assigned_device_count);
8297}
8298EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
8299
8300bool kvm_arch_has_assigned_device(struct kvm *kvm)
8301{
8302 return atomic_read(&kvm->arch.assigned_device_count);
8303}
8304EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
8305
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06008306void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
8307{
8308 atomic_inc(&kvm->arch.noncoherent_dma_count);
8309}
8310EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
8311
8312void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
8313{
8314 atomic_dec(&kvm->arch.noncoherent_dma_count);
8315}
8316EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
8317
8318bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
8319{
8320 return atomic_read(&kvm->arch.noncoherent_dma_count);
8321}
8322EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
8323
Feng Wu87276882015-09-18 22:29:40 +08008324int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
8325 struct irq_bypass_producer *prod)
8326{
8327 struct kvm_kernel_irqfd *irqfd =
8328 container_of(cons, struct kvm_kernel_irqfd, consumer);
8329
8330 if (kvm_x86_ops->update_pi_irte) {
8331 irqfd->producer = prod;
8332 return kvm_x86_ops->update_pi_irte(irqfd->kvm,
8333 prod->irq, irqfd->gsi, 1);
8334 }
8335
8336 return -EINVAL;
8337}
8338
8339void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
8340 struct irq_bypass_producer *prod)
8341{
8342 int ret;
8343 struct kvm_kernel_irqfd *irqfd =
8344 container_of(cons, struct kvm_kernel_irqfd, consumer);
8345
8346 if (!kvm_x86_ops->update_pi_irte) {
8347 WARN_ON(irqfd->producer != NULL);
8348 return;
8349 }
8350
8351 WARN_ON(irqfd->producer != prod);
8352 irqfd->producer = NULL;
8353
8354 /*
8355 * When producer of consumer is unregistered, we change back to
8356 * remapped mode, so we can re-use the current implementation
8357 * when the irq is masked/disabed or the consumer side (KVM
8358 * int this case doesn't want to receive the interrupts.
8359 */
8360 ret = kvm_x86_ops->update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0);
8361 if (ret)
8362 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
8363 " fails: %d\n", irqfd->consumer.token, ret);
8364}
8365
8366int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
8367 uint32_t guest_irq, bool set)
8368{
8369 if (!kvm_x86_ops->update_pi_irte)
8370 return -EINVAL;
8371
8372 return kvm_x86_ops->update_pi_irte(kvm, host_irq, guest_irq, set);
8373}
8374
Feng Wu520040142016-01-25 16:53:33 +08008375bool kvm_vector_hashing_enabled(void)
8376{
8377 return vector_hashing;
8378}
8379EXPORT_SYMBOL_GPL(kvm_vector_hashing_enabled);
8380
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008381EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
Jason Wang931c33b2015-09-15 14:41:58 +08008382EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008383EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
8384EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
8385EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
8386EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02008387EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02008388EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02008389EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02008390EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02008391EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02008392EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01008393EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09008394EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Radim Krčmář7b462682014-08-21 18:08:09 +02008395EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window);
Kai Huang843e4332015-01-28 10:54:28 +08008396EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
Feng Wuefc64402015-09-18 22:29:51 +08008397EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);