blob: 34bf64fb4dea827fb34acc09f4047d5ad3b8945c [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"
Wei Huang474a5bb2015-06-19 13:54:23 +020030#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030031#include "hyperv.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020032
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020033#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030034#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020035#include <linux/kvm.h>
36#include <linux/fs.h>
37#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040038#include <linux/export.h>
39#include <linux/moduleparam.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>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010056#include <linux/sched/stat.h>
57
Avi Kivityaec51dc2009-07-01 16:01:02 +030058#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080059
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020060#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080061#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020062#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080063#include <asm/mce.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020064#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020065#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100066#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030067#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080068#include <asm/irq_remapping.h>
Carsten Otte043405e2007-10-10 17:16:19 +020069
Dave Hansend1898b72016-06-01 10:42:20 -070070#define CREATE_TRACE_POINTS
71#include "trace.h"
72
Carsten Otte313a3dc2007-10-11 19:16:52 +020073#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080074#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080075u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
76EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080077
Avi Kivity0f65dd72011-04-20 13:37:53 +030078#define emul_to_vcpu(ctxt) \
79 container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt)
80
Joerg Roedel50a37eb2008-01-31 14:57:38 +010081/* EFER defaults:
82 * - enable syscall per default because its emulated by KVM
83 * - enable LME and LMA per default on 64 bit KVM
84 */
85#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080086static
87u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010088#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080089static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010090#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020091
Avi Kivityba1389b2007-11-18 16:24:12 +020092#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
93#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050094
Radim Krčmářc5192652016-07-12 22:09:28 +020095#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
96 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +020097
Gleb Natapovcb142eb2009-08-09 15:17:40 +030098static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +030099static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200100static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100101static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Avi Kivity674eea02008-02-11 18:37:23 +0200102
Paolo Bonzini893590c2015-11-06 11:46:24 +0100103struct kvm_x86_ops *kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300104EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800105
Paolo Bonzini893590c2015-11-06 11:46:24 +0100106static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030107module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200108
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200109unsigned int min_timer_period_us = 500;
110module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
111
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300112static bool __read_mostly kvmclock_periodic_sync = true;
113module_param(kvmclock_periodic_sync, bool, S_IRUGO);
114
Paolo Bonzini893590c2015-11-06 11:46:24 +0100115bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100116EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100117u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100118EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800119u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
120EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
121u64 __read_mostly kvm_max_tsc_scaling_ratio;
122EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700123u64 __read_mostly kvm_default_tsc_scaling_ratio;
124EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100125
Zachary Amsdencc578282012-02-03 15:43:50 -0200126/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100127static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200128module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
129
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500130/* lapic timer advance (tscdeadline mode only) in nanoseconds */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100131unsigned int __read_mostly lapic_timer_advance_ns = 0;
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500132module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR);
133
Feng Wu520040142016-01-25 16:53:33 +0800134static bool __read_mostly vector_hashing = true;
135module_param(vector_hashing, bool, S_IRUGO);
136
Paolo Bonzini893590c2015-11-06 11:46:24 +0100137static bool __read_mostly backwards_tsc_observed = false;
Marcelo Tosatti16a96022014-05-14 12:43:24 -0300138
Avi Kivity18863bd2009-09-07 11:12:18 +0300139#define KVM_NR_SHARED_MSRS 16
140
141struct kvm_shared_msrs_global {
142 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800143 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300144};
145
146struct kvm_shared_msrs {
147 struct user_return_notifier urn;
148 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800149 struct kvm_shared_msr_values {
150 u64 host;
151 u64 curr;
152 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300153};
154
155static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200156static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300157
Hollis Blanchard417bc302007-10-31 17:24:23 -0500158struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200159 { "pf_fixed", VCPU_STAT(pf_fixed) },
160 { "pf_guest", VCPU_STAT(pf_guest) },
161 { "tlb_flush", VCPU_STAT(tlb_flush) },
162 { "invlpg", VCPU_STAT(invlpg) },
163 { "exits", VCPU_STAT(exits) },
164 { "io_exits", VCPU_STAT(io_exits) },
165 { "mmio_exits", VCPU_STAT(mmio_exits) },
166 { "signal_exits", VCPU_STAT(signal_exits) },
167 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800168 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200169 { "halt_exits", VCPU_STAT(halt_exits) },
Paolo Bonzinif7819512015-02-04 18:20:58 +0100170 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +0200171 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200172 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200173 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530174 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200175 { "request_irq", VCPU_STAT(request_irq_exits) },
176 { "irq_exits", VCPU_STAT(irq_exits) },
177 { "host_state_reload", VCPU_STAT(host_state_reload) },
178 { "efer_reload", VCPU_STAT(efer_reload) },
179 { "fpu_reload", VCPU_STAT(fpu_reload) },
180 { "insn_emulation", VCPU_STAT(insn_emulation) },
181 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300182 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200183 { "nmi_injections", VCPU_STAT(nmi_injections) },
Paolo Bonzini0f1e2612016-12-17 16:05:19 +0100184 { "req_event", VCPU_STAT(req_event) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200185 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
186 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
187 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
188 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
189 { "mmu_flooded", VM_STAT(mmu_flooded) },
190 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200191 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300192 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200193 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300194 { "largepages", VM_STAT(lpages) },
David Matlackf3414bc2016-12-20 15:25:57 -0800195 { "max_mmu_page_hash_collisions",
196 VM_STAT(max_mmu_page_hash_collisions) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500197 { NULL }
198};
199
Dexuan Cui2acf9232010-06-10 11:27:12 +0800200u64 __read_mostly host_xcr0;
201
Jan Kiszkab6785de2012-09-20 07:43:17 +0200202static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300203
Gleb Natapovaf585b92010-10-14 11:22:46 +0200204static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
205{
206 int i;
207 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
208 vcpu->arch.apf.gfns[i] = ~0;
209}
210
Avi Kivity18863bd2009-09-07 11:12:18 +0300211static void kvm_on_user_return(struct user_return_notifier *urn)
212{
213 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300214 struct kvm_shared_msrs *locals
215 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800216 struct kvm_shared_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700217 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300218
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700219 /*
220 * Disabling irqs at this point since the following code could be
221 * interrupted and executed through kvm_arch_hardware_disable()
222 */
223 local_irq_save(flags);
224 if (locals->registered) {
225 locals->registered = false;
226 user_return_notifier_unregister(urn);
227 }
228 local_irq_restore(flags);
Avi Kivity18863bd2009-09-07 11:12:18 +0300229 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800230 values = &locals->values[slot];
231 if (values->host != values->curr) {
232 wrmsrl(shared_msrs_global.msrs[slot], values->host);
233 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300234 }
235 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300236}
237
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800238static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300239{
Avi Kivity18863bd2009-09-07 11:12:18 +0300240 u64 value;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200241 unsigned int cpu = smp_processor_id();
242 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300243
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800244 /* only read, and nobody should modify it at this time,
245 * so don't need lock */
246 if (slot >= shared_msrs_global.nr) {
247 printk(KERN_ERR "kvm: invalid MSR slot!");
248 return;
249 }
250 rdmsrl_safe(msr, &value);
251 smsr->values[slot].host = value;
252 smsr->values[slot].curr = value;
253}
254
255void kvm_define_shared_msr(unsigned slot, u32 msr)
256{
Nadav Amit0123be42014-07-24 15:06:56 +0300257 BUG_ON(slot >= KVM_NR_SHARED_MSRS);
Paolo Bonzinic847fe82015-07-29 11:06:34 +0200258 shared_msrs_global.msrs[slot] = msr;
Avi Kivity18863bd2009-09-07 11:12:18 +0300259 if (slot >= shared_msrs_global.nr)
260 shared_msrs_global.nr = slot + 1;
Avi Kivity18863bd2009-09-07 11:12:18 +0300261}
262EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
263
264static void kvm_shared_msr_cpu_online(void)
265{
266 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300267
268 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800269 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300270}
271
Andy Honig8b3c3102014-08-27 11:16:44 -0700272int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300273{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200274 unsigned int cpu = smp_processor_id();
275 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700276 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300277
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800278 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Andy Honig8b3c3102014-08-27 11:16:44 -0700279 return 0;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800280 smsr->values[slot].curr = value;
Andy Honig8b3c3102014-08-27 11:16:44 -0700281 err = wrmsrl_safe(shared_msrs_global.msrs[slot], value);
282 if (err)
283 return 1;
284
Avi Kivity18863bd2009-09-07 11:12:18 +0300285 if (!smsr->registered) {
286 smsr->urn.on_user_return = kvm_on_user_return;
287 user_return_notifier_register(&smsr->urn);
288 smsr->registered = true;
289 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700290 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300291}
292EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
293
Radim Krčmář13a34e02014-08-28 15:13:03 +0200294static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200295{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200296 unsigned int cpu = smp_processor_id();
297 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200298
299 if (smsr->registered)
300 kvm_on_user_return(&smsr->urn);
301}
302
Carsten Otte6866b832007-10-29 16:09:10 +0100303u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
304{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300305 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100306}
307EXPORT_SYMBOL_GPL(kvm_get_apic_base);
308
Jan Kiszka58cb6282014-01-24 16:48:44 +0100309int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100310{
Jan Kiszka58cb6282014-01-24 16:48:44 +0100311 u64 old_state = vcpu->arch.apic_base &
312 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
313 u64 new_state = msr_info->data &
314 (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE);
315 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) |
316 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE);
317
318 if (!msr_info->host_initiated &&
319 ((msr_info->data & reserved_bits) != 0 ||
320 new_state == X2APIC_ENABLE ||
321 (new_state == MSR_IA32_APICBASE_ENABLE &&
322 old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) ||
323 (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) &&
324 old_state == 0)))
325 return 1;
326
327 kvm_lapic_set_base(vcpu, msr_info->data);
328 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100329}
330EXPORT_SYMBOL_GPL(kvm_set_apic_base);
331
Andi Kleen2605fc22014-05-02 00:44:37 +0200332asmlinkage __visible void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000333{
334 /* Fault while not rebooting. We want the trace. */
335 BUG();
336}
337EXPORT_SYMBOL_GPL(kvm_spurious_fault);
338
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200339#define EXCPT_BENIGN 0
340#define EXCPT_CONTRIBUTORY 1
341#define EXCPT_PF 2
342
343static int exception_class(int vector)
344{
345 switch (vector) {
346 case PF_VECTOR:
347 return EXCPT_PF;
348 case DE_VECTOR:
349 case TS_VECTOR:
350 case NP_VECTOR:
351 case SS_VECTOR:
352 case GP_VECTOR:
353 return EXCPT_CONTRIBUTORY;
354 default:
355 break;
356 }
357 return EXCPT_BENIGN;
358}
359
Nadav Amitd6e8c852014-07-24 14:51:24 +0300360#define EXCPT_FAULT 0
361#define EXCPT_TRAP 1
362#define EXCPT_ABORT 2
363#define EXCPT_INTERRUPT 3
364
365static int exception_type(int vector)
366{
367 unsigned int mask;
368
369 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
370 return EXCPT_INTERRUPT;
371
372 mask = 1 << vector;
373
374 /* #DB is trap, as instruction watchpoints are handled elsewhere */
375 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
376 return EXCPT_TRAP;
377
378 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
379 return EXCPT_ABORT;
380
381 /* Reserved exceptions will result in fault */
382 return EXCPT_FAULT;
383}
384
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200385static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200386 unsigned nr, bool has_error, u32 error_code,
387 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200388{
389 u32 prev_nr;
390 int class1, class2;
391
Avi Kivity3842d132010-07-27 12:30:24 +0300392 kvm_make_request(KVM_REQ_EVENT, vcpu);
393
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200394 if (!vcpu->arch.exception.pending) {
395 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200396 if (has_error && !is_protmode(vcpu))
397 has_error = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200398 vcpu->arch.exception.pending = true;
399 vcpu->arch.exception.has_error_code = has_error;
400 vcpu->arch.exception.nr = nr;
401 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200402 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200403 return;
404 }
405
406 /* to check exception */
407 prev_nr = vcpu->arch.exception.nr;
408 if (prev_nr == DF_VECTOR) {
409 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300410 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200411 return;
412 }
413 class1 = exception_class(prev_nr);
414 class2 = exception_class(nr);
415 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
416 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
417 /* generate double fault per SDM Table 5-5 */
418 vcpu->arch.exception.pending = true;
419 vcpu->arch.exception.has_error_code = true;
420 vcpu->arch.exception.nr = DF_VECTOR;
421 vcpu->arch.exception.error_code = 0;
422 } else
423 /* replace previous exception with a new one in a hope
424 that instruction re-execution will regenerate lost
425 exception */
426 goto queue;
427}
428
Avi Kivity298101d2007-11-25 13:41:11 +0200429void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
430{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200431 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200432}
433EXPORT_SYMBOL_GPL(kvm_queue_exception);
434
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200435void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
436{
437 kvm_multiple_exception(vcpu, nr, false, 0, true);
438}
439EXPORT_SYMBOL_GPL(kvm_requeue_exception);
440
Kyle Huey6affcbe2016-11-29 12:40:40 -0800441int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200442{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100443 if (err)
444 kvm_inject_gp(vcpu, 0);
445 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800446 return kvm_skip_emulated_instruction(vcpu);
447
448 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100449}
450EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200451
Avi Kivity6389ee92010-11-29 16:12:30 +0200452void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200453{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200454 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200455 vcpu->arch.cr2 = fault->address;
456 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200457}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300458EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200459
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200460static bool kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200461{
Avi Kivity6389ee92010-11-29 16:12:30 +0200462 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
463 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200464 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200465 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200466
467 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200468}
469
Sheng Yang3419ffc2008-05-15 09:52:48 +0800470void kvm_inject_nmi(struct kvm_vcpu *vcpu)
471{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300472 atomic_inc(&vcpu->arch.nmi_queued);
473 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800474}
475EXPORT_SYMBOL_GPL(kvm_inject_nmi);
476
Avi Kivity298101d2007-11-25 13:41:11 +0200477void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
478{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200479 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200480}
481EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
482
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200483void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
484{
485 kvm_multiple_exception(vcpu, nr, true, error_code, true);
486}
487EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
488
Carsten Ottea03490e2007-10-29 16:09:35 +0100489/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300490 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
491 * a #GP and return false.
492 */
493bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200494{
Avi Kivity0a79b002009-09-01 12:03:25 +0300495 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
496 return true;
497 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
498 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100499}
Avi Kivity0a79b002009-09-01 12:03:25 +0300500EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100501
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300502bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
503{
504 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
505 return true;
506
507 kvm_queue_exception(vcpu, UD_VECTOR);
508 return false;
509}
510EXPORT_SYMBOL_GPL(kvm_require_dr);
511
Carsten Ottea03490e2007-10-29 16:09:35 +0100512/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200513 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200514 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200515 * can read from guest physical or from the guest's guest physical memory.
516 */
517int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
518 gfn_t ngfn, void *data, int offset, int len,
519 u32 access)
520{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200521 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200522 gfn_t real_gfn;
523 gpa_t ngpa;
524
525 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200526 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200527 if (real_gfn == UNMAPPED_GVA)
528 return -EFAULT;
529
530 real_gfn = gpa_to_gfn(real_gfn);
531
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200532 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200533}
534EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
535
Fengguang Wu69b00492015-01-19 22:33:39 +0800536static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200537 void *data, int offset, int len, u32 access)
538{
539 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
540 data, offset, len, access);
541}
542
Joerg Roedelec92fe42010-09-10 17:30:51 +0200543/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100544 * Load the pae pdptrs. Return true is they are all valid.
545 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200546int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100547{
548 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
549 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
550 int i;
551 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200552 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100553
Joerg Roedelff03a072010-09-10 17:30:57 +0200554 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
555 offset * sizeof(u64), sizeof(pdpte),
556 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100557 if (ret < 0) {
558 ret = 0;
559 goto out;
560 }
561 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400562 if ((pdpte[i] & PT_PRESENT_MASK) &&
Xiao Guangronga0a64f52015-08-05 12:04:21 +0800563 (pdpte[i] &
564 vcpu->arch.mmu.guest_rsvd_check.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100565 ret = 0;
566 goto out;
567 }
568 }
569 ret = 1;
570
Joerg Roedelff03a072010-09-10 17:30:57 +0200571 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300572 __set_bit(VCPU_EXREG_PDPTR,
573 (unsigned long *)&vcpu->arch.regs_avail);
574 __set_bit(VCPU_EXREG_PDPTR,
575 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100576out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100577
578 return ret;
579}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100580EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100581
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100582bool pdptrs_changed(struct kvm_vcpu *vcpu)
Avi Kivityd835dfe2007-11-21 02:57:59 +0200583{
Joerg Roedelff03a072010-09-10 17:30:57 +0200584 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200585 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200586 int offset;
587 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200588 int r;
589
590 if (is_long_mode(vcpu) || !is_pae(vcpu))
591 return false;
592
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300593 if (!test_bit(VCPU_EXREG_PDPTR,
594 (unsigned long *)&vcpu->arch.regs_avail))
595 return true;
596
Avi Kivity9f8fe502010-12-05 17:30:00 +0200597 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
598 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200599 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
600 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200601 if (r < 0)
602 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200603 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200604out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200605
606 return changed;
607}
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100608EXPORT_SYMBOL_GPL(pdptrs_changed);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200609
Avi Kivity49a9b072010-06-10 17:02:14 +0300610int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100611{
Sheng Yangaad82702010-05-12 16:40:42 +0800612 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800613 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800614
Avi Kivityf9a48e62010-01-06 19:10:22 +0200615 cr0 |= X86_CR0_ET;
616
Gleb Natapovab344822010-01-21 15:28:46 +0200617#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300618 if (cr0 & 0xffffffff00000000UL)
619 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200620#endif
621
622 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100623
Gleb Natapov0f122442010-04-28 19:15:31 +0300624 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
625 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100626
Gleb Natapov0f122442010-04-28 19:15:31 +0300627 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
628 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100629
630 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
631#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200632 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100633 int cs_db, cs_l;
634
Gleb Natapov0f122442010-04-28 19:15:31 +0300635 if (!is_pae(vcpu))
636 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100637 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300638 if (cs_l)
639 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100640 } else
641#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200642 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200643 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300644 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100645 }
646
Mao, Junjiead756a12012-07-02 01:18:48 +0000647 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
648 return 1;
649
Carsten Ottea03490e2007-10-29 16:09:35 +0100650 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100651
Lai Jiangshand170c412011-02-21 11:21:30 +0800652 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800653 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800654 kvm_async_pf_hash_reset(vcpu);
655 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800656
Sheng Yangaad82702010-05-12 16:40:42 +0800657 if ((cr0 ^ old_cr0) & update_bits)
658 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800659
Laszlo Ersek879ae182015-11-04 12:54:41 +0100660 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
661 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
662 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800663 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
664
Gleb Natapov0f122442010-04-28 19:15:31 +0300665 return 0;
666}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200667EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100668
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200669void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100670{
Avi Kivity49a9b072010-06-10 17:02:14 +0300671 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100672}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200673EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100674
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300675static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
676{
677 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
678 !vcpu->guest_xcr0_loaded) {
679 /* kvm_set_xcr() also depends on this */
680 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
681 vcpu->guest_xcr0_loaded = 1;
682 }
683}
684
685static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
686{
687 if (vcpu->guest_xcr0_loaded) {
688 if (vcpu->arch.xcr0 != host_xcr0)
689 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
690 vcpu->guest_xcr0_loaded = 0;
691 }
692}
693
Fengguang Wu69b00492015-01-19 22:33:39 +0800694static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800695{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000696 u64 xcr0 = xcr;
697 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200698 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800699
700 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
701 if (index != XCR_XFEATURE_ENABLED_MASK)
702 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700703 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800704 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700705 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800706 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200707
708 /*
709 * Do not allow the guest to set bits that we do not support
710 * saving. However, xcr0 bit 0 is always set, even if the
711 * emulated CPU does not support XSAVE (see fx_init).
712 */
Dave Hansend91cab72015-09-02 16:31:26 -0700713 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200714 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800715 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200716
Dave Hansend91cab72015-09-02 16:31:26 -0700717 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
718 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000719 return 1;
720
Dave Hansend91cab72015-09-02 16:31:26 -0700721 if (xcr0 & XFEATURE_MASK_AVX512) {
722 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800723 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700724 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800725 return 1;
726 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800727 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000728
Dave Hansend91cab72015-09-02 16:31:26 -0700729 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000730 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800731 return 0;
732}
733
734int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
735{
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000736 if (kvm_x86_ops->get_cpl(vcpu) != 0 ||
737 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800738 kvm_inject_gp(vcpu, 0);
739 return 1;
740 }
741 return 0;
742}
743EXPORT_SYMBOL_GPL(kvm_set_xcr);
744
Avi Kivitya83b29c2010-06-10 17:02:15 +0300745int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100746{
Avi Kivityfc78f512009-12-07 12:16:48 +0200747 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800748 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Huaitong Hanb9baba82016-03-22 16:51:21 +0800749 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE;
Xiao Guangrong0be02262015-05-11 22:55:21 +0800750
Gleb Natapov0f122442010-04-28 19:15:31 +0300751 if (cr4 & CR4_RESERVED_BITS)
752 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100753
Dexuan Cui2acf9232010-06-10 11:27:12 +0800754 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
755 return 1;
756
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800757 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
758 return 1;
759
Feng Wu97ec8c02014-04-01 17:46:34 +0800760 if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP))
761 return 1;
762
H. Peter Anvinafcbf132013-04-27 16:37:47 -0700763 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE))
Yang, Wei74dc2b42011-06-14 20:10:18 +0800764 return 1;
765
Huaitong Hanb9baba82016-03-22 16:51:21 +0800766 if (!guest_cpuid_has_pku(vcpu) && (cr4 & X86_CR4_PKE))
767 return 1;
768
Carsten Ottea03490e2007-10-29 16:09:35 +0100769 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300770 if (!(cr4 & X86_CR4_PAE))
771 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300772 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
773 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200774 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
775 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300776 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100777
Mao, Junjiead756a12012-07-02 01:18:48 +0000778 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
779 if (!guest_cpuid_has_pcid(vcpu))
780 return 1;
781
782 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
783 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
784 return 1;
785 }
786
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300787 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300788 return 1;
789
Mao, Junjiead756a12012-07-02 01:18:48 +0000790 if (((cr4 ^ old_cr4) & pdptr_bits) ||
791 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800792 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300793
Huaitong Hanb9baba82016-03-22 16:51:21 +0800794 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +0200795 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800796
Gleb Natapov0f122442010-04-28 19:15:31 +0300797 return 0;
798}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200799EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100800
Avi Kivity23902182010-06-10 17:02:16 +0300801int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100802{
Paolo Bonziniac146232014-11-10 13:53:25 +0100803#ifdef CONFIG_X86_64
Nadav Amit9d88fca2014-11-02 11:54:52 +0200804 cr3 &= ~CR3_PCID_INVD;
Paolo Bonziniac146232014-11-10 13:53:25 +0100805#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +0200806
Avi Kivity9f8fe502010-12-05 17:30:00 +0200807 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300808 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -0400809 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300810 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200811 }
812
Carsten Ottea03490e2007-10-29 16:09:35 +0100813 if (is_long_mode(vcpu)) {
Jan Kiszkad9f89b82014-05-10 09:24:34 +0200814 if (cr3 & CR3_L_MODE_RESERVED_BITS)
815 return 1;
816 } else if (is_pae(vcpu) && is_paging(vcpu) &&
817 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +0300818 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100819
Gleb Natapov0f122442010-04-28 19:15:31 +0300820 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200821 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Paolo Bonzinid8d173d2013-10-02 16:56:11 +0200822 kvm_mmu_new_cr3(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300823 return 0;
824}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200825EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100826
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100827int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100828{
Gleb Natapov0f122442010-04-28 19:15:31 +0300829 if (cr8 & CR8_RESERVED_BITS)
830 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +0200831 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100832 kvm_lapic_set_tpr(vcpu, cr8);
833 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800834 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300835 return 0;
836}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200837EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100838
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200839unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100840{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200841 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +0100842 return kvm_lapic_get_cr8(vcpu);
843 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800844 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100845}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200846EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100847
Nadav Amitae561ed2015-04-02 03:10:37 +0300848static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
849{
850 int i;
851
852 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
853 for (i = 0; i < KVM_NR_DB_REGS; i++)
854 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
855 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
856 }
857}
858
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100859static void kvm_update_dr6(struct kvm_vcpu *vcpu)
860{
861 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
862 kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6);
863}
864
Jan Kiszkac8639012012-09-21 05:42:55 +0200865static void kvm_update_dr7(struct kvm_vcpu *vcpu)
866{
867 unsigned long dr7;
868
869 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
870 dr7 = vcpu->arch.guest_debug_dr7;
871 else
872 dr7 = vcpu->arch.dr7;
873 kvm_x86_ops->set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +0100874 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
875 if (dr7 & DR7_BP_EN_MASK)
876 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +0200877}
878
Nadav Amit6f43ed02014-07-15 17:37:46 +0300879static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
880{
881 u64 fixed = DR6_FIXED_1;
882
883 if (!guest_cpuid_has_rtm(vcpu))
884 fixed |= DR6_RTM;
885 return fixed;
886}
887
Gleb Natapov338dbc92010-04-28 19:15:32 +0300888static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300889{
890 switch (dr) {
891 case 0 ... 3:
892 vcpu->arch.db[dr] = val;
893 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
894 vcpu->arch.eff_db[dr] = val;
895 break;
896 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300897 /* fall through */
898 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300899 if (val & 0xffffffff00000000ULL)
900 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +0300901 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100902 kvm_update_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300903 break;
904 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300905 /* fall through */
906 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300907 if (val & 0xffffffff00000000ULL)
908 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300909 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +0200910 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300911 break;
912 }
913
914 return 0;
915}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300916
917int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
918{
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300919 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +0300920 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300921 return 1;
922 }
923 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +0300924}
Gleb Natapov020df072010-04-13 10:05:23 +0300925EXPORT_SYMBOL_GPL(kvm_set_dr);
926
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300927int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300928{
929 switch (dr) {
930 case 0 ... 3:
931 *val = vcpu->arch.db[dr];
932 break;
933 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +0300934 /* fall through */
935 case 6:
Jan Kiszka73aaf249e2014-01-04 18:47:16 +0100936 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
937 *val = vcpu->arch.dr6;
938 else
939 *val = kvm_x86_ops->get_dr6(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300940 break;
941 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +0300942 /* fall through */
943 default: /* 7 */
944 *val = vcpu->arch.dr7;
945 break;
946 }
Gleb Natapov338dbc92010-04-28 19:15:32 +0300947 return 0;
948}
Gleb Natapov020df072010-04-13 10:05:23 +0300949EXPORT_SYMBOL_GPL(kvm_get_dr);
950
Avi Kivity022cd0e2011-11-10 14:57:23 +0200951bool kvm_rdpmc(struct kvm_vcpu *vcpu)
952{
953 u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
954 u64 data;
955 int err;
956
Wei Huangc6702c92015-06-19 13:44:45 +0200957 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +0200958 if (err)
959 return err;
960 kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data);
961 kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32);
962 return err;
963}
964EXPORT_SYMBOL_GPL(kvm_rdpmc);
965
Carsten Otte043405e2007-10-10 17:16:19 +0200966/*
967 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
968 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
969 *
970 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400971 * capabilities of the host cpu. This capabilities test skips MSRs that are
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200972 * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs
973 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +0200974 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400975
Carsten Otte043405e2007-10-10 17:16:19 +0200976static u32 msrs_to_save[] = {
977 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400978 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200979#ifdef CONFIG_X86_64
980 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
981#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800982 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +0100983 MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Carsten Otte043405e2007-10-10 17:16:19 +0200984};
985
986static unsigned num_msrs_to_save;
987
Paolo Bonzini62ef68b2015-05-05 12:08:55 +0200988static u32 emulated_msrs[] = {
989 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
990 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
991 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
992 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Andrey Smetanine7d95132015-07-03 15:01:37 +0300993 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
994 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +0300995 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +0300996 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300997 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300998 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +0300999 HV_X64_MSR_STIMER0_CONFIG,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001000 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
1001 MSR_KVM_PV_EOI_EN,
1002
Will Auldba904632012-11-29 12:42:50 -08001003 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001004 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +02001005 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001006 MSR_IA32_MCG_STATUS,
1007 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001008 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001009 MSR_IA32_SMBASE,
Carsten Otte043405e2007-10-10 17:16:19 +02001010};
1011
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001012static unsigned num_emulated_msrs;
1013
Jan Kiszka384bb782013-04-20 10:52:36 +02001014bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001015{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001016 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001017 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001018
Alexander Graf1b2fd702009-02-02 16:23:51 +01001019 if (efer & EFER_FFXSR) {
1020 struct kvm_cpuid_entry2 *feat;
1021
1022 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001023 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001024 return false;
Alexander Graf1b2fd702009-02-02 16:23:51 +01001025 }
1026
Alexander Grafd8017472008-11-25 20:17:11 +01001027 if (efer & EFER_SVME) {
1028 struct kvm_cpuid_entry2 *feat;
1029
1030 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001031 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
Jan Kiszka384bb782013-04-20 10:52:36 +02001032 return false;
Alexander Grafd8017472008-11-25 20:17:11 +01001033 }
1034
Jan Kiszka384bb782013-04-20 10:52:36 +02001035 return true;
1036}
1037EXPORT_SYMBOL_GPL(kvm_valid_efer);
1038
1039static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
1040{
1041 u64 old_efer = vcpu->arch.efer;
1042
1043 if (!kvm_valid_efer(vcpu, efer))
1044 return 1;
1045
1046 if (is_paging(vcpu)
1047 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1048 return 1;
1049
Carsten Otte15c4a642007-10-30 18:44:17 +01001050 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001051 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001052
Sheng Yanga3d204e2010-05-12 16:40:40 +08001053 kvm_x86_ops->set_efer(vcpu, efer);
1054
Sheng Yangaad82702010-05-12 16:40:42 +08001055 /* Update reserved bits */
1056 if ((efer ^ old_efer) & EFER_NX)
1057 kvm_mmu_reset_context(vcpu);
1058
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001059 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001060}
1061
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001062void kvm_enable_efer_bits(u64 mask)
1063{
1064 efer_reserved_bits &= ~mask;
1065}
1066EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1067
Carsten Otte15c4a642007-10-30 18:44:17 +01001068/*
1069 * Writes msr value into into the appropriate "register".
1070 * Returns 0 on success, non-0 otherwise.
1071 * Assumes vcpu_load() was already called.
1072 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001073int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01001074{
Nadav Amit854e8bb2014-09-16 03:24:05 +03001075 switch (msr->index) {
1076 case MSR_FS_BASE:
1077 case MSR_GS_BASE:
1078 case MSR_KERNEL_GS_BASE:
1079 case MSR_CSTAR:
1080 case MSR_LSTAR:
1081 if (is_noncanonical_address(msr->data))
1082 return 1;
1083 break;
1084 case MSR_IA32_SYSENTER_EIP:
1085 case MSR_IA32_SYSENTER_ESP:
1086 /*
1087 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1088 * non-canonical address is written on Intel but not on
1089 * AMD (which ignores the top 32-bits, because it does
1090 * not implement 64-bit SYSENTER).
1091 *
1092 * 64-bit code should hence be able to write a non-canonical
1093 * value on AMD. Making the address canonical ensures that
1094 * vmentry does not fail on Intel after writing a non-canonical
1095 * value, and that something deterministic happens if the guest
1096 * invokes 64-bit SYSENTER.
1097 */
1098 msr->data = get_canonical(msr->data);
1099 }
Will Auld8fe8ab42012-11-29 12:42:12 -08001100 return kvm_x86_ops->set_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001101}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001102EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001103
Carsten Otte313a3dc2007-10-11 19:16:52 +02001104/*
1105 * Adapt set_msr() to msr_io()'s calling convention
1106 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001107static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1108{
1109 struct msr_data msr;
1110 int r;
1111
1112 msr.index = index;
1113 msr.host_initiated = true;
1114 r = kvm_get_msr(vcpu, &msr);
1115 if (r)
1116 return r;
1117
1118 *data = msr.data;
1119 return 0;
1120}
1121
Carsten Otte313a3dc2007-10-11 19:16:52 +02001122static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1123{
Will Auld8fe8ab42012-11-29 12:42:12 -08001124 struct msr_data msr;
1125
1126 msr.data = *data;
1127 msr.index = index;
1128 msr.host_initiated = true;
1129 return kvm_set_msr(vcpu, &msr);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001130}
1131
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001132#ifdef CONFIG_X86_64
1133struct pvclock_gtod_data {
1134 seqcount_t seq;
1135
1136 struct { /* extract of a clocksource struct */
1137 int vclock_mode;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001138 u64 cycle_last;
1139 u64 mask;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001140 u32 mult;
1141 u32 shift;
1142 } clock;
1143
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001144 u64 boot_ns;
1145 u64 nsec_base;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001146 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001147};
1148
1149static struct pvclock_gtod_data pvclock_gtod_data;
1150
1151static void update_pvclock_gtod(struct timekeeper *tk)
1152{
1153 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001154 u64 boot_ns;
1155
Peter Zijlstra876e7882015-03-19 10:09:06 +01001156 boot_ns = ktime_to_ns(ktime_add(tk->tkr_mono.base, tk->offs_boot));
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001157
1158 write_seqcount_begin(&vdata->seq);
1159
1160 /* copy pvclock gtod data */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001161 vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode;
1162 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1163 vdata->clock.mask = tk->tkr_mono.mask;
1164 vdata->clock.mult = tk->tkr_mono.mult;
1165 vdata->clock.shift = tk->tkr_mono.shift;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001166
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001167 vdata->boot_ns = boot_ns;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001168 vdata->nsec_base = tk->tkr_mono.xtime_nsec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001169
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001170 vdata->wall_time_sec = tk->xtime_sec;
1171
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001172 write_seqcount_end(&vdata->seq);
1173}
1174#endif
1175
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001176void kvm_set_pending_timer(struct kvm_vcpu *vcpu)
1177{
1178 /*
1179 * Note: KVM_REQ_PENDING_TIMER is implicitly checked in
1180 * vcpu_enter_guest. This function is only called from
1181 * the physical CPU that is running vcpu.
1182 */
1183 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
1184}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001185
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001186static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1187{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001188 int version;
1189 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001190 struct pvclock_wall_clock wc;
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001191 struct timespec64 boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001192
1193 if (!wall_clock)
1194 return;
1195
Avi Kivity9ed3c442010-05-04 15:00:37 +03001196 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1197 if (r)
1198 return;
1199
1200 if (version & 1)
1201 ++version; /* first time write, random junk */
1202
1203 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001204
Nicholas Krause1dab1342015-12-30 13:08:46 -05001205 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
1206 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001207
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001208 /*
1209 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001210 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001211 * wall clock specified here. guest system time equals host
1212 * system time for us, thus we must fill in host boot time here.
1213 */
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001214 getboottime64(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001215
Bruce Rogers4b648662012-07-20 10:44:24 -06001216 if (kvm->arch.kvmclock_offset) {
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001217 struct timespec64 ts = ns_to_timespec64(kvm->arch.kvmclock_offset);
1218 boot = timespec64_sub(boot, ts);
Bruce Rogers4b648662012-07-20 10:44:24 -06001219 }
Arnd Bergmann87aeb542016-06-17 17:48:56 +02001220 wc.sec = (u32)boot.tv_sec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001221 wc.nsec = boot.tv_nsec;
1222 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001223
1224 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1225
1226 version++;
1227 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001228}
1229
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001230static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1231{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01001232 do_shl32_div32(dividend, divisor);
1233 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001234}
1235
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001236static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001237 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001238{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001239 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001240 int32_t shift = 0;
1241 uint64_t tps64;
1242 uint32_t tps32;
1243
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001244 tps64 = base_hz;
1245 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02001246 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001247 tps64 >>= 1;
1248 shift--;
1249 }
1250
1251 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001252 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1253 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001254 scaled64 >>= 1;
1255 else
1256 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001257 shift++;
1258 }
1259
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001260 *pshift = shift;
1261 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001262
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001263 pr_debug("%s: base_hz %llu => %llu, shift %d, mul %u\n",
1264 __func__, base_hz, scaled_hz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001265}
1266
Marcelo Tosattid8281992012-11-27 23:29:01 -02001267#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001268static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001269#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001270
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001271static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001272static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001273
Zachary Amsdencc578282012-02-03 15:43:50 -02001274static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001275{
Zachary Amsdencc578282012-02-03 15:43:50 -02001276 u64 v = (u64)khz * (1000000 + ppm);
1277 do_div(v, 1000000);
1278 return v;
1279}
1280
Haozhong Zhang381d5852015-10-20 15:39:04 +08001281static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
1282{
1283 u64 ratio;
1284
1285 /* Guest TSC same frequency as host TSC? */
1286 if (!scale) {
1287 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
1288 return 0;
1289 }
1290
1291 /* TSC scaling supported? */
1292 if (!kvm_has_tsc_control) {
1293 if (user_tsc_khz > tsc_khz) {
1294 vcpu->arch.tsc_catchup = 1;
1295 vcpu->arch.tsc_always_catchup = 1;
1296 return 0;
1297 } else {
1298 WARN(1, "user requested TSC rate below hardware speed\n");
1299 return -1;
1300 }
1301 }
1302
1303 /* TSC scaling required - calculate ratio */
1304 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
1305 user_tsc_khz, tsc_khz);
1306
1307 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
1308 WARN_ONCE(1, "Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
1309 user_tsc_khz);
1310 return -1;
1311 }
1312
1313 vcpu->arch.tsc_scaling_ratio = ratio;
1314 return 0;
1315}
1316
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001317static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02001318{
1319 u32 thresh_lo, thresh_hi;
1320 int use_scaling = 0;
1321
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001322 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001323 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08001324 /* set tsc_scaling_ratio to a safe value */
1325 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
Haozhong Zhang381d5852015-10-20 15:39:04 +08001326 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08001327 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001328
Zachary Amsdenc2855452010-09-18 14:38:15 -10001329 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001330 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02001331 &vcpu->arch.virtual_tsc_shift,
1332 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001333 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02001334
1335 /*
1336 * Compute the variation in TSC rate which is acceptable
1337 * within the range of tolerance and decide if the
1338 * rate being applied is within that bounds of the hardware
1339 * rate. If so, no scaling or compensation need be done.
1340 */
1341 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1342 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001343 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
1344 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 -02001345 use_scaling = 1;
1346 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001347 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001348}
1349
1350static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1351{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001352 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001353 vcpu->arch.virtual_tsc_mult,
1354 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001355 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001356 return tsc;
1357}
1358
Fengguang Wu69b00492015-01-19 22:33:39 +08001359static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001360{
1361#ifdef CONFIG_X86_64
1362 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001363 struct kvm_arch *ka = &vcpu->kvm->arch;
1364 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1365
1366 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1367 atomic_read(&vcpu->kvm->online_vcpus));
1368
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001369 /*
1370 * Once the masterclock is enabled, always perform request in
1371 * order to update it.
1372 *
1373 * In order to enable masterclock, the host clocksource must be TSC
1374 * and the vcpus need to have matched TSCs. When that happens,
1375 * perform request to enable masterclock.
1376 */
1377 if (ka->use_master_clock ||
1378 (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001379 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1380
1381 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1382 atomic_read(&vcpu->kvm->online_vcpus),
1383 ka->use_master_clock, gtod->clock.vclock_mode);
1384#endif
1385}
1386
Will Auldba904632012-11-29 12:42:50 -08001387static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1388{
Luiz Capitulino3e3f5022016-09-07 14:47:20 -04001389 u64 curr_offset = vcpu->arch.tsc_offset;
Will Auldba904632012-11-29 12:42:50 -08001390 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1391}
1392
Haozhong Zhang35181e82015-10-20 15:39:03 +08001393/*
1394 * Multiply tsc by a fixed point number represented by ratio.
1395 *
1396 * The most significant 64-N bits (mult) of ratio represent the
1397 * integral part of the fixed point number; the remaining N bits
1398 * (frac) represent the fractional part, ie. ratio represents a fixed
1399 * point number (mult + frac * 2^(-N)).
1400 *
1401 * N equals to kvm_tsc_scaling_ratio_frac_bits.
1402 */
1403static inline u64 __scale_tsc(u64 ratio, u64 tsc)
1404{
1405 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
1406}
1407
1408u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
1409{
1410 u64 _tsc = tsc;
1411 u64 ratio = vcpu->arch.tsc_scaling_ratio;
1412
1413 if (ratio != kvm_default_tsc_scaling_ratio)
1414 _tsc = __scale_tsc(ratio, tsc);
1415
1416 return _tsc;
1417}
1418EXPORT_SYMBOL_GPL(kvm_scale_tsc);
1419
Haozhong Zhang07c14192015-10-20 15:39:05 +08001420static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1421{
1422 u64 tsc;
1423
1424 tsc = kvm_scale_tsc(vcpu, rdtsc());
1425
1426 return target_tsc - tsc;
1427}
1428
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001429u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
1430{
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001431 return vcpu->arch.tsc_offset + kvm_scale_tsc(vcpu, host_tsc);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001432}
1433EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
1434
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04001435static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1436{
1437 kvm_x86_ops->write_tsc_offset(vcpu, offset);
1438 vcpu->arch.tsc_offset = offset;
1439}
1440
Will Auld8fe8ab42012-11-29 12:42:12 -08001441void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10001442{
1443 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001444 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001445 unsigned long flags;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001446 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001447 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08001448 u64 data = msr->data;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03001449 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001450
Jan Kiszka038f8c12011-02-04 10:49:11 +01001451 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Haozhong Zhang07c14192015-10-20 15:39:05 +08001452 offset = kvm_compute_tsc_offset(vcpu, data);
Paolo Bonzini108b2492016-09-01 14:21:03 +02001453 ns = ktime_get_boot_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001454 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001455
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001456 if (vcpu->arch.virtual_tsc_khz) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03001457 if (data == 0 && msr->host_initiated) {
1458 /*
1459 * detection of vcpu initialization -- need to sync
1460 * with other vCPUs. This particularly helps to keep
1461 * kvm_clock stable after CPU hotplug
1462 */
1463 synchronizing = true;
1464 } else {
1465 u64 tsc_exp = kvm->arch.last_tsc_write +
1466 nsec_to_cycles(vcpu, elapsed);
1467 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
1468 /*
1469 * Special case: TSC write with a small delta (1 second)
1470 * of virtual cycle time against real time is
1471 * interpreted as an attempt to synchronize the CPU.
1472 */
1473 synchronizing = data < tsc_exp + tsc_hz &&
1474 data + tsc_hz > tsc_exp;
1475 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03001476 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001477
1478 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001479 * For a reliable TSC, we can match TSC offsets, and for an unstable
1480 * TSC, we add elapsed time in this computation. We could let the
1481 * compensation code attempt to catch up if we fall behind, but
1482 * it's better to try to match offsets from the beginning.
1483 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03001484 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001485 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001486 if (!check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02001487 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001488 pr_debug("kvm: matched tsc offset for %llu\n", data);
1489 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001490 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001491 data += delta;
Haozhong Zhang07c14192015-10-20 15:39:05 +08001492 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001493 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001494 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001495 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001496 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001497 } else {
1498 /*
1499 * We split periods of matched TSC writes into generations.
1500 * For each generation, we track the original measured
1501 * nanosecond time, offset, and write, so if TSCs are in
1502 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08001503 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02001504 *
1505 * These values are tracked in kvm->arch.cur_xxx variables.
1506 */
1507 kvm->arch.cur_tsc_generation++;
1508 kvm->arch.cur_tsc_nsec = ns;
1509 kvm->arch.cur_tsc_write = data;
1510 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001511 matched = false;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001512 pr_debug("kvm: new tsc generation %llu, clock %llu\n",
Zachary Amsdene26101b2012-02-03 15:43:57 -02001513 kvm->arch.cur_tsc_generation, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001514 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02001515
1516 /*
1517 * We also track th most recent recorded KHZ, write and time to
1518 * allow the matching interval to be extended at each write.
1519 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001520 kvm->arch.last_tsc_nsec = ns;
1521 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001522 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001523
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001524 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001525
1526 /* Keep track of which generation this VCPU has synchronized to */
1527 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
1528 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
1529 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
1530
Will Auldba904632012-11-29 12:42:50 -08001531 if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated)
1532 update_ia32_tsc_adjust_msr(vcpu, offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04001533 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001534 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001535
1536 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001537 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001538 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02001539 } else if (!already_matched) {
1540 kvm->arch.nr_vcpus_matched_tsc++;
1541 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001542
1543 kvm_track_tsc_matching(vcpu);
1544 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001545}
Zachary Amsdene26101b2012-02-03 15:43:57 -02001546
Zachary Amsden99e3e302010-08-19 22:07:17 -10001547EXPORT_SYMBOL_GPL(kvm_write_tsc);
1548
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001549static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
1550 s64 adjustment)
1551{
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001552 kvm_vcpu_write_tsc_offset(vcpu, vcpu->arch.tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001553}
1554
1555static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
1556{
1557 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
1558 WARN_ON(adjustment < 0);
1559 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01001560 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08001561}
1562
Marcelo Tosattid8281992012-11-27 23:29:01 -02001563#ifdef CONFIG_X86_64
1564
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001565static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001566{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001567 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02001568 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001569
1570 if (likely(ret >= last))
1571 return ret;
1572
1573 /*
1574 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08001575 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02001576 * very likely) and there's a data dependence, so force GCC
1577 * to generate a branch instead. I don't barrier() because
1578 * we don't actually need a barrier, and if this function
1579 * ever gets inlined it will generate worse code.
1580 */
1581 asm volatile ("");
1582 return last;
1583}
1584
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001585static inline u64 vgettsc(u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001586{
1587 long v;
1588 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1589
1590 *cycle_now = read_tsc();
1591
1592 v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask;
1593 return v * gtod->clock.mult;
1594}
1595
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001596static int do_monotonic_boot(s64 *t, u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001597{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001598 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001599 unsigned long seq;
1600 int mode;
1601 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001602
Marcelo Tosattid8281992012-11-27 23:29:01 -02001603 do {
1604 seq = read_seqcount_begin(&gtod->seq);
1605 mode = gtod->clock.vclock_mode;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001606 ns = gtod->nsec_base;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001607 ns += vgettsc(cycle_now);
1608 ns >>= gtod->clock.shift;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001609 ns += gtod->boot_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001610 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001611 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001612
1613 return mode;
1614}
1615
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001616static int do_realtime(struct timespec *ts, u64 *cycle_now)
1617{
1618 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1619 unsigned long seq;
1620 int mode;
1621 u64 ns;
1622
1623 do {
1624 seq = read_seqcount_begin(&gtod->seq);
1625 mode = gtod->clock.vclock_mode;
1626 ts->tv_sec = gtod->wall_time_sec;
1627 ns = gtod->nsec_base;
1628 ns += vgettsc(cycle_now);
1629 ns >>= gtod->clock.shift;
1630 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
1631
1632 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
1633 ts->tv_nsec = ns;
1634
1635 return mode;
1636}
1637
Marcelo Tosattid8281992012-11-27 23:29:01 -02001638/* returns true if host is using tsc clocksource */
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01001639static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *cycle_now)
Marcelo Tosattid8281992012-11-27 23:29:01 -02001640{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001641 /* checked again under seqlock below */
1642 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1643 return false;
1644
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00001645 return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001646}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001647
1648/* returns true if host is using tsc clocksource */
1649static bool kvm_get_walltime_and_clockread(struct timespec *ts,
1650 u64 *cycle_now)
1651{
1652 /* checked again under seqlock below */
1653 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1654 return false;
1655
1656 return do_realtime(ts, cycle_now) == VCLOCK_TSC;
1657}
Marcelo Tosattid8281992012-11-27 23:29:01 -02001658#endif
1659
1660/*
1661 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001662 * Assuming a stable TSC across physical CPUS, and a stable TSC
1663 * across virtual CPUs, the following condition is possible.
1664 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02001665 * CPUs at the next numbered event.
1666 *
1667 * "timespecX" represents host monotonic time. "tscX" represents
1668 * RDTSC value.
1669 *
1670 * VCPU0 on CPU0 | VCPU1 on CPU1
1671 *
1672 * 1. read timespec0,tsc0
1673 * 2. | timespec1 = timespec0 + N
1674 * | tsc1 = tsc0 + M
1675 * 3. transition to guest | transition to guest
1676 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
1677 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
1678 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
1679 *
1680 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
1681 *
1682 * - ret0 < ret1
1683 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
1684 * ...
1685 * - 0 < N - M => M < N
1686 *
1687 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
1688 * always the case (the difference between two distinct xtime instances
1689 * might be smaller then the difference between corresponding TSC reads,
1690 * when updating guest vcpus pvclock areas).
1691 *
1692 * To avoid that problem, do not allow visibility of distinct
1693 * system_timestamp/tsc_timestamp values simultaneously: use a master
1694 * copy of host monotonic time values. Update that master copy
1695 * in lockstep.
1696 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001697 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02001698 *
1699 */
1700
1701static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
1702{
1703#ifdef CONFIG_X86_64
1704 struct kvm_arch *ka = &kvm->arch;
1705 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001706 bool host_tsc_clocksource, vcpus_matched;
1707
1708 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1709 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02001710
1711 /*
1712 * If the host uses TSC clock, then passthrough TSC as stable
1713 * to the guest.
1714 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001715 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02001716 &ka->master_kernel_ns,
1717 &ka->master_cycle_now);
1718
Marcelo Tosatti16a96022014-05-14 12:43:24 -03001719 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Marcelo Tosatti54750f22015-01-20 15:54:52 -02001720 && !backwards_tsc_observed
1721 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001722
Marcelo Tosattid8281992012-11-27 23:29:01 -02001723 if (ka->use_master_clock)
1724 atomic_set(&kvm_guest_has_master_clock, 1);
1725
1726 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001727 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
1728 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001729#endif
1730}
1731
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01001732void kvm_make_mclock_inprogress_request(struct kvm *kvm)
1733{
1734 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
1735}
1736
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001737static void kvm_gen_update_masterclock(struct kvm *kvm)
1738{
1739#ifdef CONFIG_X86_64
1740 int i;
1741 struct kvm_vcpu *vcpu;
1742 struct kvm_arch *ka = &kvm->arch;
1743
1744 spin_lock(&ka->pvclock_gtod_sync_lock);
1745 kvm_make_mclock_inprogress_request(kvm);
1746 /* no guest entries from this point */
1747 pvclock_update_vm_gtod_copy(kvm);
1748
1749 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001750 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03001751
1752 /* guest entries allowed */
1753 kvm_for_each_vcpu(i, vcpu, kvm)
1754 clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests);
1755
1756 spin_unlock(&ka->pvclock_gtod_sync_lock);
1757#endif
1758}
1759
Paolo Bonzini108b2492016-09-01 14:21:03 +02001760static u64 __get_kvmclock_ns(struct kvm *kvm)
1761{
Paolo Bonzini108b2492016-09-01 14:21:03 +02001762 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01001763 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02001764
Paolo Bonzini8b953442016-11-16 18:31:30 +01001765 spin_lock(&ka->pvclock_gtod_sync_lock);
1766 if (!ka->use_master_clock) {
1767 spin_unlock(&ka->pvclock_gtod_sync_lock);
1768 return ktime_get_boot_ns() + ka->kvmclock_offset;
Paolo Bonzini108b2492016-09-01 14:21:03 +02001769 }
1770
Paolo Bonzini8b953442016-11-16 18:31:30 +01001771 hv_clock.tsc_timestamp = ka->master_cycle_now;
1772 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
1773 spin_unlock(&ka->pvclock_gtod_sync_lock);
1774
1775 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
1776 &hv_clock.tsc_shift,
1777 &hv_clock.tsc_to_system_mul);
1778 return __pvclock_read_cycles(&hv_clock, rdtsc());
Paolo Bonzini108b2492016-09-01 14:21:03 +02001779}
1780
1781u64 get_kvmclock_ns(struct kvm *kvm)
1782{
1783 unsigned long flags;
1784 s64 ns;
1785
1786 local_irq_save(flags);
1787 ns = __get_kvmclock_ns(kvm);
1788 local_irq_restore(flags);
1789
1790 return ns;
1791}
1792
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001793static void kvm_setup_pvclock_page(struct kvm_vcpu *v)
1794{
1795 struct kvm_vcpu_arch *vcpu = &v->arch;
1796 struct pvclock_vcpu_time_info guest_hv_clock;
1797
Cao, Leibbd64112017-02-03 20:04:35 +00001798 if (unlikely(kvm_vcpu_read_guest_cached(v, &vcpu->pv_time,
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001799 &guest_hv_clock, sizeof(guest_hv_clock))))
1800 return;
1801
1802 /* This VCPU is paused, but it's legal for a guest to read another
1803 * VCPU's kvmclock, so we really have to follow the specification where
1804 * it says that version is odd if data is being modified, and even after
1805 * it is consistent.
1806 *
1807 * Version field updates must be kept separate. This is because
1808 * kvm_write_guest_cached might use a "rep movs" instruction, and
1809 * writes within a string instruction are weakly ordered. So there
1810 * are three writes overall.
1811 *
1812 * As a small optimization, only write the version field in the first
1813 * and third write. The vcpu->pv_time cache is still valid, because the
1814 * version field is the first in the struct.
1815 */
1816 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
1817
1818 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Cao, Leibbd64112017-02-03 20:04:35 +00001819 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1820 &vcpu->hv_clock,
1821 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001822
1823 smp_wmb();
1824
1825 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
1826 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
1827
1828 if (vcpu->pvclock_set_guest_stopped_request) {
1829 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
1830 vcpu->pvclock_set_guest_stopped_request = false;
1831 }
1832
1833 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
1834
Cao, Leibbd64112017-02-03 20:04:35 +00001835 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1836 &vcpu->hv_clock,
1837 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001838
1839 smp_wmb();
1840
1841 vcpu->hv_clock.version++;
Cao, Leibbd64112017-02-03 20:04:35 +00001842 kvm_vcpu_write_guest_cached(v, &vcpu->pv_time,
1843 &vcpu->hv_clock,
1844 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001845}
1846
Zachary Amsden34c238a2010-09-18 14:38:14 -10001847static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001848{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001849 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001850 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001851 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02001852 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001853 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001854 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001855 bool use_master_clock;
1856
1857 kernel_ns = 0;
1858 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001859
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001860 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02001861 * If the host uses TSC clock, then passthrough TSC as stable
1862 * to the guest.
1863 */
1864 spin_lock(&ka->pvclock_gtod_sync_lock);
1865 use_master_clock = ka->use_master_clock;
1866 if (use_master_clock) {
1867 host_tsc = ka->master_cycle_now;
1868 kernel_ns = ka->master_kernel_ns;
1869 }
1870 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001871
1872 /* Keep irq disabled to prevent changes to the clock */
1873 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001874 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
1875 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001876 local_irq_restore(flags);
1877 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
1878 return 1;
1879 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02001880 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02001881 host_tsc = rdtsc();
Paolo Bonzini108b2492016-09-01 14:21:03 +02001882 kernel_ns = ktime_get_boot_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02001883 }
1884
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001885 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001886
1887 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001888 * We may have to catch up the TSC to match elapsed wall clock
1889 * time for two reasons, even if kvmclock is used.
1890 * 1) CPU could have been running below the maximum TSC rate
1891 * 2) Broken TSC compensation resets the base at each VCPU
1892 * entry to avoid unknown leaps of TSC even when running
1893 * again on the same CPU. This may cause apparent elapsed
1894 * time to disappear, and the guest to stand still or run
1895 * very slowly.
1896 */
1897 if (vcpu->tsc_catchup) {
1898 u64 tsc = compute_guest_tsc(v, kernel_ns);
1899 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02001900 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001901 tsc_timestamp = tsc;
1902 }
1903 }
1904
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001905 local_irq_restore(flags);
1906
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001907 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10001908
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001909 if (kvm_has_tsc_control)
1910 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
1911
1912 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001913 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001914 &vcpu->hv_clock.tsc_shift,
1915 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01001916 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001917 }
1918
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001919 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001920 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10001921 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001922
Marcelo Tosattid8281992012-11-27 23:29:01 -02001923 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02001924 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001925 if (use_master_clock)
1926 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
1927
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001928 vcpu->hv_clock.flags = pvclock_flags;
1929
Paolo Bonzini095cf552016-02-08 12:54:12 +01001930 if (vcpu->pv_time_enabled)
1931 kvm_setup_pvclock_page(v);
1932 if (v == kvm_get_vcpu(v->kvm, 0))
1933 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001934 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001935}
1936
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001937/*
1938 * kvmclock updates which are isolated to a given vcpu, such as
1939 * vcpu->cpu migration, should not allow system_timestamp from
1940 * the rest of the vcpus to remain static. Otherwise ntp frequency
1941 * correction applies to one vcpu's system_timestamp but not
1942 * the others.
1943 *
1944 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01001945 * We need to rate-limit these requests though, as they can
1946 * considerably slow guests that have a large number of vcpus.
1947 * The time for a remote vcpu to update its kvmclock is bound
1948 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001949 */
1950
Andrew Jones7e44e442014-02-28 12:52:54 +01001951#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
1952
1953static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001954{
1955 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01001956 struct delayed_work *dwork = to_delayed_work(work);
1957 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1958 kvmclock_update_work);
1959 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001960 struct kvm_vcpu *vcpu;
1961
1962 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001963 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03001964 kvm_vcpu_kick(vcpu);
1965 }
1966}
1967
Andrew Jones7e44e442014-02-28 12:52:54 +01001968static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
1969{
1970 struct kvm *kvm = v->kvm;
1971
Guo Hui Liu105b21b2014-09-12 13:43:19 +08001972 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01001973 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
1974 KVMCLOCK_UPDATE_DELAY);
1975}
1976
Andrew Jones332967a2014-02-28 12:52:55 +01001977#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
1978
1979static void kvmclock_sync_fn(struct work_struct *work)
1980{
1981 struct delayed_work *dwork = to_delayed_work(work);
1982 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
1983 kvmclock_sync_work);
1984 struct kvm *kvm = container_of(ka, struct kvm, arch);
1985
Marcelo Tosatti630994b2015-05-12 22:42:04 -03001986 if (!kvmclock_periodic_sync)
1987 return;
1988
Andrew Jones332967a2014-02-28 12:52:55 +01001989 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
1990 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
1991 KVMCLOCK_SYNC_PERIOD);
1992}
1993
Huang Ying890ca9a2009-05-11 16:48:15 +08001994static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1995{
1996 u64 mcg_cap = vcpu->arch.mcg_cap;
1997 unsigned bank_num = mcg_cap & 0xff;
1998
1999 switch (msr) {
2000 case MSR_IA32_MCG_STATUS:
2001 vcpu->arch.mcg_status = data;
2002 break;
2003 case MSR_IA32_MCG_CTL:
2004 if (!(mcg_cap & MCG_CTL_P))
2005 return 1;
2006 if (data != 0 && data != ~(u64)0)
2007 return -1;
2008 vcpu->arch.mcg_ctl = data;
2009 break;
2010 default:
2011 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002012 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002013 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01002014 /* only 0 or all 1s can be written to IA32_MCi_CTL
2015 * some Linux kernels though clear bit 10 in bank 4 to
2016 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
2017 * this to avoid an uncatched #GP in the guest
2018 */
Huang Ying890ca9a2009-05-11 16:48:15 +08002019 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01002020 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08002021 return -1;
2022 vcpu->arch.mce_banks[offset] = data;
2023 break;
2024 }
2025 return 1;
2026 }
2027 return 0;
2028}
2029
Ed Swierkffde22a2009-10-15 15:21:43 -07002030static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
2031{
2032 struct kvm *kvm = vcpu->kvm;
2033 int lm = is_long_mode(vcpu);
2034 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
2035 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
2036 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
2037 : kvm->arch.xen_hvm_config.blob_size_32;
2038 u32 page_num = data & ~PAGE_MASK;
2039 u64 page_addr = data & PAGE_MASK;
2040 u8 *page;
2041 int r;
2042
2043 r = -E2BIG;
2044 if (page_num >= blob_size)
2045 goto out;
2046 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002047 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
2048 if (IS_ERR(page)) {
2049 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07002050 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002051 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002052 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07002053 goto out_free;
2054 r = 0;
2055out_free:
2056 kfree(page);
2057out:
2058 return r;
2059}
2060
Gleb Natapov344d9582010-10-14 11:22:50 +02002061static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
2062{
2063 gpa_t gpa = data & ~0x3f;
2064
Guo Chao4a969982012-06-28 15:17:27 +08002065 /* Bits 2:5 are reserved, Should be zero */
Gleb Natapov6adba522010-10-14 11:22:55 +02002066 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02002067 return 1;
2068
2069 vcpu->arch.apf.msr_val = data;
2070
2071 if (!(data & KVM_ASYNC_PF_ENABLED)) {
2072 kvm_clear_async_pf_completion_queue(vcpu);
2073 kvm_async_pf_hash_reset(vcpu);
2074 return 0;
2075 }
2076
Cao, Leibbd64112017-02-03 20:04:35 +00002077 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu, &vcpu->arch.apf.data, gpa,
Andrew Honig8f964522013-03-29 09:35:21 -07002078 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02002079 return 1;
2080
Gleb Natapov6adba522010-10-14 11:22:55 +02002081 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02002082 kvm_async_pf_wakeup_all(vcpu);
2083 return 0;
2084}
2085
Glauber Costa12f9a482011-02-01 14:16:40 -05002086static void kvmclock_reset(struct kvm_vcpu *vcpu)
2087{
Andy Honig0b794592013-02-20 14:48:10 -08002088 vcpu->arch.pv_time_enabled = false;
Glauber Costa12f9a482011-02-01 14:16:40 -05002089}
2090
Glauber Costac9aaa892011-07-11 15:28:14 -04002091static void record_steal_time(struct kvm_vcpu *vcpu)
2092{
2093 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2094 return;
2095
Cao, Leibbd64112017-02-03 20:04:35 +00002096 if (unlikely(kvm_vcpu_read_guest_cached(vcpu, &vcpu->arch.st.stime,
Glauber Costac9aaa892011-07-11 15:28:14 -04002097 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
2098 return;
2099
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002100 vcpu->arch.st.steal.preempted = 0;
2101
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002102 if (vcpu->arch.st.steal.version & 1)
2103 vcpu->arch.st.steal.version += 1; /* first time write, random junk */
2104
2105 vcpu->arch.st.steal.version += 1;
2106
Cao, Leibbd64112017-02-03 20:04:35 +00002107 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002108 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2109
2110 smp_wmb();
2111
Liang Chenc54cdf12016-03-16 19:33:16 +08002112 vcpu->arch.st.steal.steal += current->sched_info.run_delay -
2113 vcpu->arch.st.last_steal;
2114 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002115
Cao, Leibbd64112017-02-03 20:04:35 +00002116 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002117 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2118
2119 smp_wmb();
2120
2121 vcpu->arch.st.steal.version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04002122
Cao, Leibbd64112017-02-03 20:04:35 +00002123 kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.st.stime,
Glauber Costac9aaa892011-07-11 15:28:14 -04002124 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
2125}
2126
Will Auld8fe8ab42012-11-29 12:42:12 -08002127int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002128{
Gleb Natapov57537852012-01-15 14:17:22 +02002129 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002130 u32 msr = msr_info->index;
2131 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002132
Carsten Otte15c4a642007-10-30 18:44:17 +01002133 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002134 case MSR_AMD64_NB_CFG:
2135 case MSR_IA32_UCODE_REV:
2136 case MSR_IA32_UCODE_WRITE:
2137 case MSR_VM_HSAVE_PA:
2138 case MSR_AMD64_PATCH_LOADER:
2139 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02002140 case MSR_AMD64_DC_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002141 break;
2142
Carsten Otte15c4a642007-10-30 18:44:17 +01002143 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02002144 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002145 case MSR_K7_HWCR:
2146 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002147 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002148 data &= ~(u64)0x8; /* ignore TLB cache disable */
Matthias Lange22d48b2d2014-06-26 13:50:15 +02002149 data &= ~(u64)0x40000; /* ignore Mc status write enable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02002150 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002151 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2152 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002153 return 1;
2154 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002155 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002156 case MSR_FAM10H_MMIO_CONF_BASE:
2157 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002158 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2159 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002160 return 1;
2161 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002162 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002163 case MSR_IA32_DEBUGCTLMSR:
2164 if (!data) {
2165 /* We support the non-activated case already */
2166 break;
2167 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2168 /* Values other than LBR and BTF are vendor-specific,
2169 thus reserved and should throw a #GP */
2170 return 1;
2171 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002172 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2173 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002174 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002175 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002176 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002177 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002178 return kvm_set_apic_base(vcpu, msr_info);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002179 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2180 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002181 case MSR_IA32_TSCDEADLINE:
2182 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2183 break;
Will Auldba904632012-11-29 12:42:50 -08002184 case MSR_IA32_TSC_ADJUST:
2185 if (guest_cpuid_has_tsc_adjust(vcpu)) {
2186 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002187 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08002188 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08002189 }
2190 vcpu->arch.ia32_tsc_adjust_msr = data;
2191 }
2192 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002193 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002194 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01002195 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002196 case MSR_IA32_SMBASE:
2197 if (!msr_info->host_initiated)
2198 return 1;
2199 vcpu->arch.smbase = data;
2200 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002201 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002202 case MSR_KVM_WALL_CLOCK:
2203 vcpu->kvm->arch.wall_clock = data;
2204 kvm_write_wall_clock(vcpu->kvm, data);
2205 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002206 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002207 case MSR_KVM_SYSTEM_TIME: {
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002208 struct kvm_arch *ka = &vcpu->kvm->arch;
2209
Glauber Costa12f9a482011-02-01 14:16:40 -05002210 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002211
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002212 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2213 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2214
2215 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
2216 set_bit(KVM_REQ_MASTERCLOCK_UPDATE,
2217 &vcpu->requests);
2218
2219 ka->boot_vcpu_runs_old_kvmclock = tmp;
2220 }
2221
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002222 vcpu->arch.time = data;
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002223 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002224
2225 /* we verify if the enable bit is set... */
2226 if (!(data & 1))
2227 break;
2228
Cao, Leibbd64112017-02-03 20:04:35 +00002229 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu,
Andrew Honig8f964522013-03-29 09:35:21 -07002230 &vcpu->arch.pv_time, data & ~1ULL,
2231 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002232 vcpu->arch.pv_time_enabled = false;
2233 else
2234 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002235
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002236 break;
2237 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002238 case MSR_KVM_ASYNC_PF_EN:
2239 if (kvm_pv_enable_async_pf(vcpu, data))
2240 return 1;
2241 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002242 case MSR_KVM_STEAL_TIME:
2243
2244 if (unlikely(!sched_info_on()))
2245 return 1;
2246
2247 if (data & KVM_STEAL_RESERVED_MASK)
2248 return 1;
2249
Cao, Leibbd64112017-02-03 20:04:35 +00002250 if (kvm_vcpu_gfn_to_hva_cache_init(vcpu, &vcpu->arch.st.stime,
Andrew Honig8f964522013-03-29 09:35:21 -07002251 data & KVM_STEAL_VALID_BITS,
2252 sizeof(struct kvm_steal_time)))
Glauber Costac9aaa892011-07-11 15:28:14 -04002253 return 1;
2254
2255 vcpu->arch.st.msr_val = data;
2256
2257 if (!(data & KVM_MSR_ENABLED))
2258 break;
2259
Glauber Costac9aaa892011-07-11 15:28:14 -04002260 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2261
2262 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002263 case MSR_KVM_PV_EOI_EN:
2264 if (kvm_lapic_enable_pv_eoi(vcpu, data))
2265 return 1;
2266 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002267
Huang Ying890ca9a2009-05-11 16:48:15 +08002268 case MSR_IA32_MCG_CTL:
2269 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002270 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Huang Ying890ca9a2009-05-11 16:48:15 +08002271 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002272
Wei Huang6912ac32015-06-12 01:34:56 -04002273 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2274 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2275 pr = true; /* fall through */
2276 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2277 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002278 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002279 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002280
2281 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002282 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2283 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002284 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002285 case MSR_K7_CLK_CTL:
2286 /*
2287 * Ignore all writes to this no longer documented MSR.
2288 * Writes are only relevant for old K7 processors,
2289 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002290 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002291 * affected processor models on the command line, hence
2292 * the need to ignore the workaround.
2293 */
2294 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002295 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002296 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2297 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002298 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002299 return kvm_hv_set_msr_common(vcpu, msr, data,
2300 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05002301 case MSR_IA32_BBL_CR_CTL3:
2302 /* Drop writes to this legacy MSR -- see rdmsr
2303 * counterpart for further detail.
2304 */
Borislav Petkov796f4682016-10-27 20:14:45 +02002305 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n", msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002306 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002307 case MSR_AMD64_OSVW_ID_LENGTH:
2308 if (!guest_cpuid_has_osvw(vcpu))
2309 return 1;
2310 vcpu->arch.osvw.length = data;
2311 break;
2312 case MSR_AMD64_OSVW_STATUS:
2313 if (!guest_cpuid_has_osvw(vcpu))
2314 return 1;
2315 vcpu->arch.osvw.status = data;
2316 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002317 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07002318 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
2319 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02002320 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002321 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02002322 if (!ignore_msrs) {
Bandan Dasae0f5492016-11-15 01:36:18 -05002323 vcpu_debug_ratelimited(vcpu, "unhandled wrmsr: 0x%x data 0x%llx\n",
Christoffer Dalla737f252012-06-03 21:17:48 +03002324 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002325 return 1;
2326 } else {
Borislav Petkov796f4682016-10-27 20:14:45 +02002327 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
Christoffer Dalla737f252012-06-03 21:17:48 +03002328 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002329 break;
2330 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002331 }
2332 return 0;
2333}
2334EXPORT_SYMBOL_GPL(kvm_set_msr_common);
2335
2336
2337/*
2338 * Reads an msr value (of 'msr_index') into 'pdata'.
2339 * Returns 0 on success, non-0 otherwise.
2340 * Assumes vcpu_load() was already called.
2341 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002342int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +01002343{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002344 return kvm_x86_ops->get_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002345}
Wincy Vanff651cb2014-12-11 08:52:58 +03002346EXPORT_SYMBOL_GPL(kvm_get_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01002347
Huang Ying890ca9a2009-05-11 16:48:15 +08002348static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2349{
2350 u64 data;
2351 u64 mcg_cap = vcpu->arch.mcg_cap;
2352 unsigned bank_num = mcg_cap & 0xff;
2353
2354 switch (msr) {
2355 case MSR_IA32_P5_MC_ADDR:
2356 case MSR_IA32_P5_MC_TYPE:
2357 data = 0;
2358 break;
2359 case MSR_IA32_MCG_CAP:
2360 data = vcpu->arch.mcg_cap;
2361 break;
2362 case MSR_IA32_MCG_CTL:
2363 if (!(mcg_cap & MCG_CTL_P))
2364 return 1;
2365 data = vcpu->arch.mcg_ctl;
2366 break;
2367 case MSR_IA32_MCG_STATUS:
2368 data = vcpu->arch.mcg_status;
2369 break;
2370 default:
2371 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002372 msr < MSR_IA32_MCx_CTL(bank_num)) {
Huang Ying890ca9a2009-05-11 16:48:15 +08002373 u32 offset = msr - MSR_IA32_MC0_CTL;
2374 data = vcpu->arch.mce_banks[offset];
2375 break;
2376 }
2377 return 1;
2378 }
2379 *pdata = data;
2380 return 0;
2381}
2382
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002383int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002384{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002385 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01002386 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01002387 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002388 case MSR_IA32_DEBUGCTLMSR:
2389 case MSR_IA32_LASTBRANCHFROMIP:
2390 case MSR_IA32_LASTBRANCHTOIP:
2391 case MSR_IA32_LASTINTFROMIP:
2392 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302393 case MSR_K8_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02002394 case MSR_K8_TSEG_ADDR:
2395 case MSR_K8_TSEG_MASK:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302396 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02002397 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02002398 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02002399 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002400 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002401 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03002402 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02002403 case MSR_AMD64_DC_CFG:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002404 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01002405 break;
Wei Huang6912ac32015-06-12 01:34:56 -04002406 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2407 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2408 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2409 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002410 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002411 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
2412 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02002413 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002414 case MSR_IA32_UCODE_REV:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002415 msr_info->data = 0x100000000ULL;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002416 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002417 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03002418 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002419 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002420 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002421 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01002422 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02002423 /*
2424 * MSR_EBC_FREQUENCY_ID
2425 * Conservative value valid for even the basic CPU models.
2426 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
2427 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
2428 * and 266MHz for model 3, or 4. Set Core Clock
2429 * Frequency to System Bus Frequency Ratio to 1 (bits
2430 * 31:24) even though these are only valid for CPU
2431 * models > 2, however guests may end up dividing or
2432 * multiplying by zero otherwise.
2433 */
2434 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002435 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02002436 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002437 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002438 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01002439 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002440 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002441 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002442 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002443 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002444 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002445 break;
Will Auldba904632012-11-29 12:42:50 -08002446 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002447 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08002448 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002449 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002450 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01002451 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002452 case MSR_IA32_SMBASE:
2453 if (!msr_info->host_initiated)
2454 return 1;
2455 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01002456 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002457 case MSR_IA32_PERF_STATUS:
2458 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002459 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002460 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08002461 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01002462 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002463 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002464 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01002465 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002466 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002467 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002468 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002469 break;
2470 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002471 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002472 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002473 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02002474 case MSR_KVM_ASYNC_PF_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002475 msr_info->data = vcpu->arch.apf.msr_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02002476 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002477 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002478 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04002479 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002480 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002481 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002482 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002483 case MSR_IA32_P5_MC_ADDR:
2484 case MSR_IA32_P5_MC_TYPE:
2485 case MSR_IA32_MCG_CAP:
2486 case MSR_IA32_MCG_CTL:
2487 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002488 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002489 return get_msr_mce(vcpu, msr_info->index, &msr_info->data);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002490 case MSR_K7_CLK_CTL:
2491 /*
2492 * Provide expected ramp-up count for K7. All other
2493 * are set to zero, indicating minimum divisors for
2494 * every field.
2495 *
2496 * This prevents guest kernels on AMD host with CPU
2497 * type 6, model 8 and higher from exploding due to
2498 * the rdmsr failing.
2499 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002500 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002501 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002502 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002503 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2504 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002505 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Andrey Smetanine83d5882015-07-03 15:01:34 +03002506 return kvm_hv_get_msr_common(vcpu,
2507 msr_info->index, &msr_info->data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002508 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002509 case MSR_IA32_BBL_CR_CTL3:
2510 /* This legacy MSR exists but isn't fully documented in current
2511 * silicon. It is however accessed by winxp in very narrow
2512 * scenarios where it sets bit #19, itself documented as
2513 * a "reserved" bit. Best effort attempt to source coherent
2514 * read data here should the balance of the register be
2515 * interpreted by the guest:
2516 *
2517 * L2 cache control register 3: 64GB range, 256KB size,
2518 * enabled, latency 0x1, configured
2519 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002520 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05002521 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002522 case MSR_AMD64_OSVW_ID_LENGTH:
2523 if (!guest_cpuid_has_osvw(vcpu))
2524 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002525 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002526 break;
2527 case MSR_AMD64_OSVW_STATUS:
2528 if (!guest_cpuid_has_osvw(vcpu))
2529 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002530 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002531 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002532 default:
Wei Huangc6702c92015-06-19 13:44:45 +02002533 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002534 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002535 if (!ignore_msrs) {
Bandan Dasae0f5492016-11-15 01:36:18 -05002536 vcpu_debug_ratelimited(vcpu, "unhandled rdmsr: 0x%x\n",
2537 msr_info->index);
Andre Przywaraed85c062009-06-25 12:36:49 +02002538 return 1;
2539 } else {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002540 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index);
2541 msr_info->data = 0;
Andre Przywaraed85c062009-06-25 12:36:49 +02002542 }
2543 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002544 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002545 return 0;
2546}
2547EXPORT_SYMBOL_GPL(kvm_get_msr_common);
2548
Carsten Otte313a3dc2007-10-11 19:16:52 +02002549/*
2550 * Read or write a bunch of msrs. All parameters are kernel addresses.
2551 *
2552 * @return number of msrs set successfully.
2553 */
2554static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2555 struct kvm_msr_entry *entries,
2556 int (*do_msr)(struct kvm_vcpu *vcpu,
2557 unsigned index, u64 *data))
2558{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002559 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002560
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002561 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002562 for (i = 0; i < msrs->nmsrs; ++i)
2563 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2564 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002565 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002566
Carsten Otte313a3dc2007-10-11 19:16:52 +02002567 return i;
2568}
2569
2570/*
2571 * Read or write a bunch of msrs. Parameters are user addresses.
2572 *
2573 * @return number of msrs set successfully.
2574 */
2575static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2576 int (*do_msr)(struct kvm_vcpu *vcpu,
2577 unsigned index, u64 *data),
2578 int writeback)
2579{
2580 struct kvm_msrs msrs;
2581 struct kvm_msr_entry *entries;
2582 int r, n;
2583 unsigned size;
2584
2585 r = -EFAULT;
2586 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2587 goto out;
2588
2589 r = -E2BIG;
2590 if (msrs.nmsrs >= MAX_IO_MSRS)
2591 goto out;
2592
Carsten Otte313a3dc2007-10-11 19:16:52 +02002593 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002594 entries = memdup_user(user_msrs->entries, size);
2595 if (IS_ERR(entries)) {
2596 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002597 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002598 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02002599
2600 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2601 if (r < 0)
2602 goto out_free;
2603
2604 r = -EFAULT;
2605 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2606 goto out_free;
2607
2608 r = n;
2609
2610out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002611 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002612out:
2613 return r;
2614}
2615
Alexander Graf784aa3d2014-07-14 18:27:35 +02002616int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002617{
2618 int r;
2619
2620 switch (ext) {
2621 case KVM_CAP_IRQCHIP:
2622 case KVM_CAP_HLT:
2623 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002624 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002625 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002626 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002627 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002628 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002629 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002630 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002631 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002632 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002633 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002634 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002635 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03002636 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002637 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002638 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002639 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002640 case KVM_CAP_XEN_HVM:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002641 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002642 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002643 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002644 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03002645 case KVM_CAP_HYPERV_SYNIC:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002646 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002647 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002648 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002649 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002650 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002651 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002652 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002653 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01002654 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05002655 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01002656 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03002657 case KVM_CAP_ENABLE_CAP_VM:
2658 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02002659 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07002660 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01002661 case KVM_CAP_IMMEDIATE_EXIT:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002662 r = 1;
2663 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01002664 case KVM_CAP_ADJUST_CLOCK:
2665 r = KVM_CLOCK_TSC_STABLE;
2666 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02002667 case KVM_CAP_X86_SMM:
2668 /* SMBASE is usually relocated above 1M on modern chipsets,
2669 * and SMM handlers might indeed rely on 4G segment limits,
2670 * so do not report SMM to be available if real mode is
2671 * emulated via vm86 mode. Still, do not go to great lengths
2672 * to avoid userspace's usage of the feature, because it is a
2673 * fringe case that is not enabled except via specific settings
2674 * of the module parameters.
2675 */
2676 r = kvm_x86_ops->cpu_has_high_real_mode_segbase();
2677 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002678 case KVM_CAP_VAPIC:
2679 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2680 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002681 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002682 r = KVM_SOFT_MAX_VCPUS;
2683 break;
2684 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002685 r = KVM_MAX_VCPUS;
2686 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002687 case KVM_CAP_NR_MEMSLOTS:
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07002688 r = KVM_USER_MEM_SLOTS;
Avi Kivitya988b912008-02-20 11:59:20 +02002689 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002690 case KVM_CAP_PV_MMU: /* obsolete */
2691 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002692 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002693 case KVM_CAP_MCE:
2694 r = KVM_MAX_MCE_BANKS;
2695 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002696 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02002697 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002698 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002699 case KVM_CAP_TSC_CONTROL:
2700 r = kvm_has_tsc_control;
2701 break;
Radim Krčmář371313132016-07-12 22:09:27 +02002702 case KVM_CAP_X2APIC_API:
2703 r = KVM_X2APIC_API_VALID_FLAGS;
2704 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002705 default:
2706 r = 0;
2707 break;
2708 }
2709 return r;
2710
2711}
2712
Carsten Otte043405e2007-10-10 17:16:19 +02002713long kvm_arch_dev_ioctl(struct file *filp,
2714 unsigned int ioctl, unsigned long arg)
2715{
2716 void __user *argp = (void __user *)arg;
2717 long r;
2718
2719 switch (ioctl) {
2720 case KVM_GET_MSR_INDEX_LIST: {
2721 struct kvm_msr_list __user *user_msr_list = argp;
2722 struct kvm_msr_list msr_list;
2723 unsigned n;
2724
2725 r = -EFAULT;
2726 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2727 goto out;
2728 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002729 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Carsten Otte043405e2007-10-10 17:16:19 +02002730 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2731 goto out;
2732 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002733 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002734 goto out;
2735 r = -EFAULT;
2736 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2737 num_msrs_to_save * sizeof(u32)))
2738 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002739 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002740 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02002741 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02002742 goto out;
2743 r = 0;
2744 break;
2745 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002746 case KVM_GET_SUPPORTED_CPUID:
2747 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02002748 struct kvm_cpuid2 __user *cpuid_arg = argp;
2749 struct kvm_cpuid2 cpuid;
2750
2751 r = -EFAULT;
2752 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2753 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02002754
2755 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
2756 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02002757 if (r)
2758 goto out;
2759
2760 r = -EFAULT;
2761 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2762 goto out;
2763 r = 0;
2764 break;
2765 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002766 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
Huang Ying890ca9a2009-05-11 16:48:15 +08002767 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002768 if (copy_to_user(argp, &kvm_mce_cap_supported,
2769 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08002770 goto out;
2771 r = 0;
2772 break;
2773 }
Carsten Otte043405e2007-10-10 17:16:19 +02002774 default:
2775 r = -EINVAL;
2776 }
2777out:
2778 return r;
2779}
2780
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002781static void wbinvd_ipi(void *garbage)
2782{
2783 wbinvd();
2784}
2785
2786static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2787{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06002788 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002789}
2790
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002791static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2792{
2793 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
2794}
2795
Carsten Otte313a3dc2007-10-11 19:16:52 +02002796void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2797{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002798 /* Address WBINVD may be executed by guest */
2799 if (need_emulate_wbinvd(vcpu)) {
2800 if (kvm_x86_ops->has_wbinvd_exit())
2801 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2802 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2803 smp_call_function_single(vcpu->cpu,
2804 wbinvd_ipi, NULL, 1);
2805 }
2806
Carsten Otte313a3dc2007-10-11 19:16:52 +02002807 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002808
2809 /* Apply any externally detected TSC adjustments (due to suspend) */
2810 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
2811 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
2812 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002813 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002814 }
2815
Zachary Amsden48434c202010-08-19 22:07:24 -10002816 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002817 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002818 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10002819 if (tsc_delta < 0)
2820 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07002821
Zachary Amsdenc2855452010-09-18 14:38:15 -10002822 if (check_tsc_unstable()) {
Haozhong Zhang07c14192015-10-20 15:39:05 +08002823 u64 offset = kvm_compute_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002824 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002825 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002826 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002827 }
Wanpeng Lie12c8f32016-08-30 16:14:00 +08002828 if (kvm_lapic_hv_timer_in_use(vcpu) &&
2829 kvm_x86_ops->set_hv_timer(vcpu,
Wanpeng Li498f8162016-10-24 18:23:11 +08002830 kvm_get_lapic_target_expiration_tsc(vcpu)))
Wanpeng Lie12c8f32016-08-30 16:14:00 +08002831 kvm_lapic_switch_to_sw_timer(vcpu);
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02002832 /*
2833 * On a host with synchronized TSC, there is no need to update
2834 * kvmclock on vcpu->cpu migration
2835 */
2836 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002837 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002838 if (vcpu->cpu != cpu)
2839 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002840 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002841 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002842
Glauber Costac9aaa892011-07-11 15:28:14 -04002843 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002844}
2845
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002846static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
2847{
2848 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2849 return;
2850
2851 vcpu->arch.st.steal.preempted = 1;
2852
Cao, Leibbd64112017-02-03 20:04:35 +00002853 kvm_vcpu_write_guest_offset_cached(vcpu, &vcpu->arch.st.stime,
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002854 &vcpu->arch.st.steal.preempted,
2855 offsetof(struct kvm_steal_time, preempted),
2856 sizeof(vcpu->arch.st.steal.preempted));
2857}
2858
Carsten Otte313a3dc2007-10-11 19:16:52 +02002859void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2860{
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002861 int idx;
Andrea Arcangeli931f2612016-12-17 18:43:52 +01002862 /*
2863 * Disable page faults because we're in atomic context here.
2864 * kvm_write_guest_offset_cached() would call might_fault()
2865 * that relies on pagefault_disable() to tell if there's a
2866 * bug. NOTE: the write to guest memory may not go through if
2867 * during postcopy live migration or if there's heavy guest
2868 * paging.
2869 */
2870 pagefault_disable();
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002871 /*
2872 * kvm_memslots() will be called by
2873 * kvm_write_guest_offset_cached() so take the srcu lock.
2874 */
2875 idx = srcu_read_lock(&vcpu->kvm->srcu);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002876 kvm_steal_time_set_preempted(vcpu);
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01002877 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Andrea Arcangeli931f2612016-12-17 18:43:52 +01002878 pagefault_enable();
Avi Kivity02daab22009-12-30 12:40:26 +02002879 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002880 kvm_put_guest_fpu(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002881 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02002882}
2883
Carsten Otte313a3dc2007-10-11 19:16:52 +02002884static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2885 struct kvm_lapic_state *s)
2886{
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01002887 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
Andrey Smetanind62caab2015-11-10 15:36:33 +03002888 kvm_x86_ops->sync_pir_to_irr(vcpu);
2889
Radim Krčmářa92e2542016-07-12 22:09:22 +02002890 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002891}
2892
2893static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2894 struct kvm_lapic_state *s)
2895{
Radim Krčmářa92e2542016-07-12 22:09:22 +02002896 int r;
2897
2898 r = kvm_apic_set_state(vcpu, s);
2899 if (r)
2900 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002901 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002902
2903 return 0;
2904}
2905
Matt Gingell127a4572015-11-17 17:32:05 +01002906static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
2907{
2908 return (!lapic_in_kernel(vcpu) ||
2909 kvm_apic_accept_pic_intr(vcpu));
2910}
2911
Matt Gingell782d4222015-11-16 15:26:00 -08002912/*
2913 * if userspace requested an interrupt window, check that the
2914 * interrupt window is open.
2915 *
2916 * No need to exit to userspace if we already have an interrupt queued.
2917 */
2918static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
2919{
2920 return kvm_arch_interrupt_allowed(vcpu) &&
2921 !kvm_cpu_has_interrupt(vcpu) &&
2922 !kvm_event_needs_reinjection(vcpu) &&
2923 kvm_cpu_accept_dm_intr(vcpu);
2924}
2925
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002926static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2927 struct kvm_interrupt *irq)
2928{
Chen Gang02cdb502013-02-27 11:33:25 +08002929 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002930 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002931
2932 if (!irqchip_in_kernel(vcpu->kvm)) {
2933 kvm_queue_interrupt(vcpu, irq->irq, false);
2934 kvm_make_request(KVM_REQ_EVENT, vcpu);
2935 return 0;
2936 }
2937
2938 /*
2939 * With in-kernel LAPIC, we only use this to inject EXTINT, so
2940 * fail for in-kernel 8259.
2941 */
2942 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002943 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002944
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002945 if (vcpu->arch.pending_external_vector != -1)
2946 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002947
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02002948 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08002949 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002950 return 0;
2951}
2952
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002953static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2954{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002955 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002956
2957 return 0;
2958}
2959
Paolo Bonzinif0778252015-04-01 15:06:40 +02002960static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
2961{
Paolo Bonzini64d60672015-05-07 11:36:11 +02002962 kvm_make_request(KVM_REQ_SMI, vcpu);
2963
Paolo Bonzinif0778252015-04-01 15:06:40 +02002964 return 0;
2965}
2966
Avi Kivityb209749f2007-10-22 16:50:39 +02002967static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2968 struct kvm_tpr_access_ctl *tac)
2969{
2970 if (tac->flags)
2971 return -EINVAL;
2972 vcpu->arch.tpr_access_reporting = !!tac->enabled;
2973 return 0;
2974}
2975
Huang Ying890ca9a2009-05-11 16:48:15 +08002976static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
2977 u64 mcg_cap)
2978{
2979 int r;
2980 unsigned bank_num = mcg_cap & 0xff, bank;
2981
2982 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02002983 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08002984 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002985 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08002986 goto out;
2987 r = 0;
2988 vcpu->arch.mcg_cap = mcg_cap;
2989 /* Init IA32_MCG_CTL to all 1s */
2990 if (mcg_cap & MCG_CTL_P)
2991 vcpu->arch.mcg_ctl = ~(u64)0;
2992 /* Init IA32_MCi_CTL to all 1s */
2993 for (bank = 0; bank < bank_num; bank++)
2994 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002995
2996 if (kvm_x86_ops->setup_mce)
2997 kvm_x86_ops->setup_mce(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002998out:
2999 return r;
3000}
3001
3002static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
3003 struct kvm_x86_mce *mce)
3004{
3005 u64 mcg_cap = vcpu->arch.mcg_cap;
3006 unsigned bank_num = mcg_cap & 0xff;
3007 u64 *banks = vcpu->arch.mce_banks;
3008
3009 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
3010 return -EINVAL;
3011 /*
3012 * if IA32_MCG_CTL is not all 1s, the uncorrected error
3013 * reporting is disabled
3014 */
3015 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
3016 vcpu->arch.mcg_ctl != ~(u64)0)
3017 return 0;
3018 banks += 4 * mce->bank;
3019 /*
3020 * if IA32_MCi_CTL is not all 1s, the uncorrected error
3021 * reporting is disabled for the bank
3022 */
3023 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
3024 return 0;
3025 if (mce->status & MCI_STATUS_UC) {
3026 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02003027 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003028 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08003029 return 0;
3030 }
3031 if (banks[1] & MCI_STATUS_VAL)
3032 mce->status |= MCI_STATUS_OVER;
3033 banks[2] = mce->addr;
3034 banks[3] = mce->misc;
3035 vcpu->arch.mcg_status = mce->mcg_status;
3036 banks[1] = mce->status;
3037 kvm_queue_exception(vcpu, MC_VECTOR);
3038 } else if (!(banks[1] & MCI_STATUS_VAL)
3039 || !(banks[1] & MCI_STATUS_UC)) {
3040 if (banks[1] & MCI_STATUS_VAL)
3041 mce->status |= MCI_STATUS_OVER;
3042 banks[2] = mce->addr;
3043 banks[3] = mce->misc;
3044 banks[1] = mce->status;
3045 } else
3046 banks[1] |= MCI_STATUS_OVER;
3047 return 0;
3048}
3049
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003050static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
3051 struct kvm_vcpu_events *events)
3052{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003053 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01003054 events->exception.injected =
3055 vcpu->arch.exception.pending &&
3056 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003057 events->exception.nr = vcpu->arch.exception.nr;
3058 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003059 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003060 events->exception.error_code = vcpu->arch.exception.error_code;
3061
Jan Kiszka03b82a32010-02-15 10:45:41 +01003062 events->interrupt.injected =
3063 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003064 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01003065 events->interrupt.soft = 0;
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02003066 events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003067
3068 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003069 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003070 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003071 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003072
Jan Kiszka66450a22013-03-13 12:42:34 +01003073 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003074
Paolo Bonzinif0778252015-04-01 15:06:40 +02003075 events->smi.smm = is_smm(vcpu);
3076 events->smi.pending = vcpu->arch.smi_pending;
3077 events->smi.smm_inside_nmi =
3078 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
3079 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
3080
Jan Kiszkadab4b912009-12-06 18:24:15 +01003081 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02003082 | KVM_VCPUEVENT_VALID_SHADOW
3083 | KVM_VCPUEVENT_VALID_SMM);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003084 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003085}
3086
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003087static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags);
3088
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003089static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
3090 struct kvm_vcpu_events *events)
3091{
Jan Kiszkadab4b912009-12-06 18:24:15 +01003092 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01003093 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02003094 | KVM_VCPUEVENT_VALID_SHADOW
3095 | KVM_VCPUEVENT_VALID_SMM))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003096 return -EINVAL;
3097
Paolo Bonzini78e546c2016-06-01 14:09:20 +02003098 if (events->exception.injected &&
Jim Mattson28d06352017-04-05 09:14:40 -07003099 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR ||
3100 is_guest_mode(vcpu)))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02003101 return -EINVAL;
3102
David Hildenbrand28bf2882017-03-23 11:46:03 +01003103 /* INITs are latched while in SMM */
3104 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
3105 (events->smi.smm || events->smi.pending) &&
3106 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
3107 return -EINVAL;
3108
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003109 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003110 vcpu->arch.exception.pending = events->exception.injected;
3111 vcpu->arch.exception.nr = events->exception.nr;
3112 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
3113 vcpu->arch.exception.error_code = events->exception.error_code;
3114
3115 vcpu->arch.interrupt.pending = events->interrupt.injected;
3116 vcpu->arch.interrupt.nr = events->interrupt.nr;
3117 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01003118 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
3119 kvm_x86_ops->set_interrupt_shadow(vcpu,
3120 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003121
3122 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01003123 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
3124 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003125 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
3126
Jan Kiszka66450a22013-03-13 12:42:34 +01003127 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003128 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01003129 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003130
Paolo Bonzinif0778252015-04-01 15:06:40 +02003131 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003132 u32 hflags = vcpu->arch.hflags;
Paolo Bonzinif0778252015-04-01 15:06:40 +02003133 if (events->smi.smm)
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003134 hflags |= HF_SMM_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02003135 else
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003136 hflags &= ~HF_SMM_MASK;
3137 kvm_set_hflags(vcpu, hflags);
3138
Paolo Bonzinif0778252015-04-01 15:06:40 +02003139 vcpu->arch.smi_pending = events->smi.pending;
3140 if (events->smi.smm_inside_nmi)
3141 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
3142 else
3143 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003144 if (lapic_in_kernel(vcpu)) {
Paolo Bonzinif0778252015-04-01 15:06:40 +02003145 if (events->smi.latched_init)
3146 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3147 else
3148 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
3149 }
3150 }
3151
Avi Kivity3842d132010-07-27 12:30:24 +03003152 kvm_make_request(KVM_REQ_EVENT, vcpu);
3153
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003154 return 0;
3155}
3156
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003157static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
3158 struct kvm_debugregs *dbgregs)
3159{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003160 unsigned long val;
3161
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003162 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03003163 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003164 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003165 dbgregs->dr7 = vcpu->arch.dr7;
3166 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003167 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003168}
3169
3170static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
3171 struct kvm_debugregs *dbgregs)
3172{
3173 if (dbgregs->flags)
3174 return -EINVAL;
3175
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02003176 if (dbgregs->dr6 & ~0xffffffffull)
3177 return -EINVAL;
3178 if (dbgregs->dr7 & ~0xffffffffull)
3179 return -EINVAL;
3180
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003181 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03003182 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003183 vcpu->arch.dr6 = dbgregs->dr6;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01003184 kvm_update_dr6(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003185 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01003186 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003187
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003188 return 0;
3189}
3190
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003191#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
3192
3193static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
3194{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003195 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02003196 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003197 u64 valid;
3198
3199 /*
3200 * Copy legacy XSAVE area, to avoid complications with CPUID
3201 * leaves 0 and 1 in the loop below.
3202 */
3203 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
3204
3205 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01003206 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003207 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
3208
3209 /*
3210 * Copy each region from the possibly compacted offset to the
3211 * non-compacted offset.
3212 */
Dave Hansend91cab72015-09-02 16:31:26 -07003213 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003214 while (valid) {
3215 u64 feature = valid & -valid;
3216 int index = fls64(feature) - 1;
3217 void *src = get_xsave_addr(xsave, feature);
3218
3219 if (src) {
3220 u32 size, offset, ecx, edx;
3221 cpuid_count(XSTATE_CPUID, index,
3222 &size, &offset, &ecx, &edx);
3223 memcpy(dest + offset, src, size);
3224 }
3225
3226 valid -= feature;
3227 }
3228}
3229
3230static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
3231{
Ingo Molnarc47ada32015-04-30 17:15:32 +02003232 struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003233 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
3234 u64 valid;
3235
3236 /*
3237 * Copy legacy XSAVE area, to avoid complications with CPUID
3238 * leaves 0 and 1 in the loop below.
3239 */
3240 memcpy(xsave, src, XSAVE_HDR_OFFSET);
3241
3242 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02003243 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02003244 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02003245 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003246
3247 /*
3248 * Copy each region from the non-compacted offset to the
3249 * possibly compacted offset.
3250 */
Dave Hansend91cab72015-09-02 16:31:26 -07003251 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003252 while (valid) {
3253 u64 feature = valid & -valid;
3254 int index = fls64(feature) - 1;
3255 void *dest = get_xsave_addr(xsave, feature);
3256
3257 if (dest) {
3258 u32 size, offset, ecx, edx;
3259 cpuid_count(XSTATE_CPUID, index,
3260 &size, &offset, &ecx, &edx);
3261 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08003262 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003263
3264 valid -= feature;
3265 }
3266}
3267
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003268static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
3269 struct kvm_xsave *guest_xsave)
3270{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003271 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003272 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
3273 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02003274 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003275 memcpy(guest_xsave->region,
Ingo Molnar7366ed72015-04-27 04:19:39 +02003276 &vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003277 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003278 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07003279 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003280 }
3281}
3282
3283static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
3284 struct kvm_xsave *guest_xsave)
3285{
3286 u64 xstate_bv =
3287 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
3288
Borislav Petkovd366bf72016-04-04 22:25:02 +02003289 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003290 /*
3291 * Here we allow setting states that are not present in
3292 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
3293 * with old userspace.
3294 */
Paolo Bonzini4ff41732014-02-24 12:15:16 +01003295 if (xstate_bv & ~kvm_supported_xcr0())
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003296 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01003297 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02003298 } else {
Dave Hansend91cab72015-09-02 16:31:26 -07003299 if (xstate_bv & ~XFEATURE_MASK_FPSSE)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003300 return -EINVAL;
Ingo Molnar7366ed72015-04-27 04:19:39 +02003301 memcpy(&vcpu->arch.guest_fpu.state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02003302 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003303 }
3304 return 0;
3305}
3306
3307static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
3308 struct kvm_xcrs *guest_xcrs)
3309{
Borislav Petkovd366bf72016-04-04 22:25:02 +02003310 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003311 guest_xcrs->nr_xcrs = 0;
3312 return;
3313 }
3314
3315 guest_xcrs->nr_xcrs = 1;
3316 guest_xcrs->flags = 0;
3317 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
3318 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
3319}
3320
3321static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
3322 struct kvm_xcrs *guest_xcrs)
3323{
3324 int i, r = 0;
3325
Borislav Petkovd366bf72016-04-04 22:25:02 +02003326 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003327 return -EINVAL;
3328
3329 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
3330 return -EINVAL;
3331
3332 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
3333 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003334 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003335 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02003336 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003337 break;
3338 }
3339 if (r)
3340 r = -EINVAL;
3341 return r;
3342}
3343
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003344/*
3345 * kvm_set_guest_paused() indicates to the guest kernel that it has been
3346 * stopped by the hypervisor. This function will be called from the host only.
3347 * EINVAL is returned when the host attempts to set the flag for a guest that
3348 * does not support pv clocks.
3349 */
3350static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
3351{
Andy Honig0b794592013-02-20 14:48:10 -08003352 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003353 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003354 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003355 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
3356 return 0;
3357}
3358
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003359static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
3360 struct kvm_enable_cap *cap)
3361{
3362 if (cap->flags)
3363 return -EINVAL;
3364
3365 switch (cap->cap) {
3366 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08003367 if (!irqchip_in_kernel(vcpu->kvm))
3368 return -EINVAL;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003369 return kvm_hv_activate_synic(vcpu);
3370 default:
3371 return -EINVAL;
3372 }
3373}
3374
Carsten Otte313a3dc2007-10-11 19:16:52 +02003375long kvm_arch_vcpu_ioctl(struct file *filp,
3376 unsigned int ioctl, unsigned long arg)
3377{
3378 struct kvm_vcpu *vcpu = filp->private_data;
3379 void __user *argp = (void __user *)arg;
3380 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003381 union {
3382 struct kvm_lapic_state *lapic;
3383 struct kvm_xsave *xsave;
3384 struct kvm_xcrs *xcrs;
3385 void *buffer;
3386 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003387
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003388 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003389 switch (ioctl) {
3390 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003391 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003392 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003393 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003394 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003395
Dave Hansenb772ff32008-08-11 10:01:47 -07003396 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003397 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003398 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003399 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003400 if (r)
3401 goto out;
3402 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003403 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003404 goto out;
3405 r = 0;
3406 break;
3407 }
3408 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003409 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01003410 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003411 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003412 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Guo Chao18595412012-11-02 18:33:21 +08003413 if (IS_ERR(u.lapic))
3414 return PTR_ERR(u.lapic);
Sasha Levinff5c2c02011-12-04 19:36:29 +02003415
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003416 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003417 break;
3418 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003419 case KVM_INTERRUPT: {
3420 struct kvm_interrupt irq;
3421
3422 r = -EFAULT;
3423 if (copy_from_user(&irq, argp, sizeof irq))
3424 goto out;
3425 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003426 break;
3427 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003428 case KVM_NMI: {
3429 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003430 break;
3431 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02003432 case KVM_SMI: {
3433 r = kvm_vcpu_ioctl_smi(vcpu);
3434 break;
3435 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003436 case KVM_SET_CPUID: {
3437 struct kvm_cpuid __user *cpuid_arg = argp;
3438 struct kvm_cpuid cpuid;
3439
3440 r = -EFAULT;
3441 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3442 goto out;
3443 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003444 break;
3445 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003446 case KVM_SET_CPUID2: {
3447 struct kvm_cpuid2 __user *cpuid_arg = argp;
3448 struct kvm_cpuid2 cpuid;
3449
3450 r = -EFAULT;
3451 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3452 goto out;
3453 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003454 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003455 break;
3456 }
3457 case KVM_GET_CPUID2: {
3458 struct kvm_cpuid2 __user *cpuid_arg = argp;
3459 struct kvm_cpuid2 cpuid;
3460
3461 r = -EFAULT;
3462 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3463 goto out;
3464 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003465 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003466 if (r)
3467 goto out;
3468 r = -EFAULT;
3469 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3470 goto out;
3471 r = 0;
3472 break;
3473 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003474 case KVM_GET_MSRS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003475 r = msr_io(vcpu, argp, do_get_msr, 1);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003476 break;
3477 case KVM_SET_MSRS:
3478 r = msr_io(vcpu, argp, do_set_msr, 0);
3479 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003480 case KVM_TPR_ACCESS_REPORTING: {
3481 struct kvm_tpr_access_ctl tac;
3482
3483 r = -EFAULT;
3484 if (copy_from_user(&tac, argp, sizeof tac))
3485 goto out;
3486 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3487 if (r)
3488 goto out;
3489 r = -EFAULT;
3490 if (copy_to_user(argp, &tac, sizeof tac))
3491 goto out;
3492 r = 0;
3493 break;
3494 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003495 case KVM_SET_VAPIC_ADDR: {
3496 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003497 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02003498
3499 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02003500 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02003501 goto out;
3502 r = -EFAULT;
3503 if (copy_from_user(&va, argp, sizeof va))
3504 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003505 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08003506 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01003507 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02003508 break;
3509 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003510 case KVM_X86_SETUP_MCE: {
3511 u64 mcg_cap;
3512
3513 r = -EFAULT;
3514 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3515 goto out;
3516 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3517 break;
3518 }
3519 case KVM_X86_SET_MCE: {
3520 struct kvm_x86_mce mce;
3521
3522 r = -EFAULT;
3523 if (copy_from_user(&mce, argp, sizeof mce))
3524 goto out;
3525 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3526 break;
3527 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003528 case KVM_GET_VCPU_EVENTS: {
3529 struct kvm_vcpu_events events;
3530
3531 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3532
3533 r = -EFAULT;
3534 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3535 break;
3536 r = 0;
3537 break;
3538 }
3539 case KVM_SET_VCPU_EVENTS: {
3540 struct kvm_vcpu_events events;
3541
3542 r = -EFAULT;
3543 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3544 break;
3545
3546 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3547 break;
3548 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003549 case KVM_GET_DEBUGREGS: {
3550 struct kvm_debugregs dbgregs;
3551
3552 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3553
3554 r = -EFAULT;
3555 if (copy_to_user(argp, &dbgregs,
3556 sizeof(struct kvm_debugregs)))
3557 break;
3558 r = 0;
3559 break;
3560 }
3561 case KVM_SET_DEBUGREGS: {
3562 struct kvm_debugregs dbgregs;
3563
3564 r = -EFAULT;
3565 if (copy_from_user(&dbgregs, argp,
3566 sizeof(struct kvm_debugregs)))
3567 break;
3568
3569 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3570 break;
3571 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003572 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003573 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003574 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003575 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003576 break;
3577
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003578 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003579
3580 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003581 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003582 break;
3583 r = 0;
3584 break;
3585 }
3586 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003587 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Guo Chao18595412012-11-02 18:33:21 +08003588 if (IS_ERR(u.xsave))
3589 return PTR_ERR(u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003590
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003591 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003592 break;
3593 }
3594 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003595 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003596 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003597 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003598 break;
3599
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003600 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003601
3602 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003603 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003604 sizeof(struct kvm_xcrs)))
3605 break;
3606 r = 0;
3607 break;
3608 }
3609 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003610 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Guo Chao18595412012-11-02 18:33:21 +08003611 if (IS_ERR(u.xcrs))
3612 return PTR_ERR(u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003613
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003614 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003615 break;
3616 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003617 case KVM_SET_TSC_KHZ: {
3618 u32 user_tsc_khz;
3619
3620 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003621 user_tsc_khz = (u32)arg;
3622
3623 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3624 goto out;
3625
Zachary Amsdencc578282012-02-03 15:43:50 -02003626 if (user_tsc_khz == 0)
3627 user_tsc_khz = tsc_khz;
3628
Haozhong Zhang381d5852015-10-20 15:39:04 +08003629 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
3630 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003631
Joerg Roedel92a1f122011-03-25 09:44:51 +01003632 goto out;
3633 }
3634 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02003635 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003636 goto out;
3637 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003638 case KVM_KVMCLOCK_CTRL: {
3639 r = kvm_set_guest_paused(vcpu);
3640 goto out;
3641 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003642 case KVM_ENABLE_CAP: {
3643 struct kvm_enable_cap cap;
3644
3645 r = -EFAULT;
3646 if (copy_from_user(&cap, argp, sizeof(cap)))
3647 goto out;
3648 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3649 break;
3650 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003651 default:
3652 r = -EINVAL;
3653 }
3654out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003655 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003656 return r;
3657}
3658
Carsten Otte5b1c1492012-01-04 10:25:23 +01003659int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3660{
3661 return VM_FAULT_SIGBUS;
3662}
3663
Carsten Otte1fe779f2007-10-29 16:08:35 +01003664static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3665{
3666 int ret;
3667
3668 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08003669 return -EINVAL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003670 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3671 return ret;
3672}
3673
Sheng Yangb927a3c2009-07-21 10:42:48 +08003674static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3675 u64 ident_addr)
3676{
3677 kvm->arch.ept_identity_map_addr = ident_addr;
3678 return 0;
3679}
3680
Carsten Otte1fe779f2007-10-29 16:08:35 +01003681static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3682 u32 kvm_nr_mmu_pages)
3683{
3684 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3685 return -EINVAL;
3686
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003687 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003688
3689 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003690 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003691
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003692 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003693 return 0;
3694}
3695
3696static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3697{
Dave Hansen39de71e2010-08-19 18:11:14 -07003698 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003699}
3700
Carsten Otte1fe779f2007-10-29 16:08:35 +01003701static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3702{
David Hildenbrand90bca052017-04-07 10:50:23 +02003703 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003704 int r;
3705
3706 r = 0;
3707 switch (chip->chip_id) {
3708 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02003709 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01003710 sizeof(struct kvm_pic_state));
3711 break;
3712 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02003713 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01003714 sizeof(struct kvm_pic_state));
3715 break;
3716 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02003717 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003718 break;
3719 default:
3720 r = -EINVAL;
3721 break;
3722 }
3723 return r;
3724}
3725
3726static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3727{
David Hildenbrand90bca052017-04-07 10:50:23 +02003728 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003729 int r;
3730
3731 r = 0;
3732 switch (chip->chip_id) {
3733 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02003734 spin_lock(&pic->lock);
3735 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01003736 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02003737 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003738 break;
3739 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02003740 spin_lock(&pic->lock);
3741 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01003742 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02003743 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003744 break;
3745 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02003746 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003747 break;
3748 default:
3749 r = -EINVAL;
3750 break;
3751 }
David Hildenbrand90bca052017-04-07 10:50:23 +02003752 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003753 return r;
3754}
3755
Sheng Yange0f63cb2008-03-04 00:50:59 +08003756static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3757{
Radim Krčmář34f39412016-03-02 22:56:50 +01003758 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
3759
3760 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
3761
3762 mutex_lock(&kps->lock);
3763 memcpy(ps, &kps->channels, sizeof(*ps));
3764 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303765 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003766}
3767
3768static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3769{
Andrew Honig01856042015-11-18 14:50:23 -08003770 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01003771 struct kvm_pit *pit = kvm->arch.vpit;
3772
3773 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01003774 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08003775 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003776 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
3777 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303778 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003779}
3780
3781static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3782{
Beth Kone9f42752009-07-07 11:50:38 -04003783 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3784 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3785 sizeof(ps->channels));
3786 ps->flags = kvm->arch.vpit->pit_state.flags;
3787 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003788 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303789 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04003790}
3791
3792static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3793{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303794 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08003795 int i;
Beth Kone9f42752009-07-07 11:50:38 -04003796 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01003797 struct kvm_pit *pit = kvm->arch.vpit;
3798
3799 mutex_lock(&pit->pit_state.lock);
3800 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04003801 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3802 if (!prev_legacy && cur_legacy)
3803 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01003804 memcpy(&pit->pit_state.channels, &ps->channels,
3805 sizeof(pit->pit_state.channels));
3806 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08003807 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01003808 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01003809 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01003810 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05303811 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08003812}
3813
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003814static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3815 struct kvm_reinject_control *control)
3816{
Radim Krčmář71474e22016-03-02 22:56:45 +01003817 struct kvm_pit *pit = kvm->arch.vpit;
3818
3819 if (!pit)
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003820 return -ENXIO;
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003821
Radim Krčmář71474e22016-03-02 22:56:45 +01003822 /* pit->pit_state.lock was overloaded to prevent userspace from getting
3823 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
3824 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
3825 */
3826 mutex_lock(&pit->pit_state.lock);
3827 kvm_pit_set_reinject(pit, control->pit_reinject);
3828 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01003829
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003830 return 0;
3831}
3832
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003833/**
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003834 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
3835 * @kvm: kvm instance
3836 * @log: slot id and address to which we copy the log
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003837 *
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003838 * Steps 1-4 below provide general overview of dirty page logging. See
3839 * kvm_get_dirty_log_protect() function description for additional details.
3840 *
3841 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
3842 * always flush the TLB (step 4) even if previous step failed and the dirty
3843 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
3844 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
3845 * writes will be marked dirty for next log read.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003846 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003847 * 1. Take a snapshot of the bit and clear it if needed.
3848 * 2. Write protect the corresponding page.
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003849 * 3. Copy the snapshot to the userspace.
3850 * 4. Flush TLB's if needed.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003851 */
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003852int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003853{
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003854 bool is_dirty = false;
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003855 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003856
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003857 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003858
Kai Huang88178fd2015-01-28 10:54:27 +08003859 /*
3860 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
3861 */
3862 if (kvm_x86_ops->flush_log_dirty)
3863 kvm_x86_ops->flush_log_dirty(kvm);
3864
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003865 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003866
3867 /*
3868 * All the TLBs can be flushed out of mmu lock, see the comments in
3869 * kvm_mmu_slot_remove_write_access().
3870 */
Paolo Bonzinie108ff22015-01-15 15:58:54 -08003871 lockdep_assert_held(&kvm->slots_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08003872 if (is_dirty)
3873 kvm_flush_remote_tlbs(kvm);
3874
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003875 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003876 return r;
3877}
3878
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003879int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
3880 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003881{
3882 if (!irqchip_in_kernel(kvm))
3883 return -ENXIO;
3884
3885 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003886 irq_event->irq, irq_event->level,
3887 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003888 return 0;
3889}
3890
Nadav Amit90de4a12015-04-13 01:53:41 +03003891static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
3892 struct kvm_enable_cap *cap)
3893{
3894 int r;
3895
3896 if (cap->flags)
3897 return -EINVAL;
3898
3899 switch (cap->cap) {
3900 case KVM_CAP_DISABLE_QUIRKS:
3901 kvm->arch.disabled_quirks = cap->args[0];
3902 r = 0;
3903 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07003904 case KVM_CAP_SPLIT_IRQCHIP: {
3905 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003906 r = -EINVAL;
3907 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
3908 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07003909 r = -EEXIST;
3910 if (irqchip_in_kernel(kvm))
3911 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003912 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07003913 goto split_irqchip_unlock;
David Hildenbrand637e3f82017-04-07 10:50:19 +02003914 kvm->arch.irqchip_mode = KVM_IRQCHIP_INIT_IN_PROGRESS;
Steve Rutherford49df6392015-07-29 23:21:40 -07003915 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand637e3f82017-04-07 10:50:19 +02003916 if (r) {
3917 kvm->arch.irqchip_mode = KVM_IRQCHIP_NONE;
3918 /* Pairs with smp_rmb() when reading irqchip_mode */
3919 smp_wmb();
Steve Rutherford49df6392015-07-29 23:21:40 -07003920 goto split_irqchip_unlock;
David Hildenbrand637e3f82017-04-07 10:50:19 +02003921 }
Steve Rutherford49df6392015-07-29 23:21:40 -07003922 /* Pairs with irqchip_in_kernel. */
3923 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01003924 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003925 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07003926 r = 0;
3927split_irqchip_unlock:
3928 mutex_unlock(&kvm->lock);
3929 break;
3930 }
Radim Krčmář371313132016-07-12 22:09:27 +02003931 case KVM_CAP_X2APIC_API:
3932 r = -EINVAL;
3933 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
3934 break;
3935
3936 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
3937 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02003938 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
3939 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02003940
3941 r = 0;
3942 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03003943 default:
3944 r = -EINVAL;
3945 break;
3946 }
3947 return r;
3948}
3949
Carsten Otte1fe779f2007-10-29 16:08:35 +01003950long kvm_arch_vm_ioctl(struct file *filp,
3951 unsigned int ioctl, unsigned long arg)
3952{
3953 struct kvm *kvm = filp->private_data;
3954 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003955 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003956 /*
3957 * This union makes it completely explicit to gcc-3.x
3958 * that these two variables' stack usage should be
3959 * combined, not added together.
3960 */
3961 union {
3962 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003963 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003964 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003965 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003966
3967 switch (ioctl) {
3968 case KVM_SET_TSS_ADDR:
3969 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003970 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003971 case KVM_SET_IDENTITY_MAP_ADDR: {
3972 u64 ident_addr;
3973
3974 r = -EFAULT;
3975 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3976 goto out;
3977 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08003978 break;
3979 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003980 case KVM_SET_NR_MMU_PAGES:
3981 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003982 break;
3983 case KVM_GET_NR_MMU_PAGES:
3984 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
3985 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003986 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003987 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01003988
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003989 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01003990 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003991 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01003992
Avi Kivity3e515702012-03-05 14:23:29 +02003993 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02003994 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02003995 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01003996
3997 r = kvm_pic_init(kvm);
3998 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003999 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01004000
4001 r = kvm_ioapic_init(kvm);
4002 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01004003 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01004004 goto create_irqchip_unlock;
4005 }
4006
David Hildenbrand637e3f82017-04-07 10:50:19 +02004007 kvm->arch.irqchip_mode = KVM_IRQCHIP_INIT_IN_PROGRESS;
Avi Kivity399ec802008-11-19 13:58:46 +02004008 r = kvm_setup_default_irq_routing(kvm);
4009 if (r) {
David Hildenbrand637e3f82017-04-07 10:50:19 +02004010 kvm->arch.irqchip_mode = KVM_IRQCHIP_NONE;
4011 /* Pairs with smp_rmb() when reading irqchip_mode */
4012 smp_wmb();
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08004013 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01004014 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02004015 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02004016 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01004017 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02004018 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01004019 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004020 create_irqchip_unlock:
4021 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004022 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004023 }
Sheng Yang78376992008-01-28 05:10:22 +08004024 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004025 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
4026 goto create_pit;
4027 case KVM_CREATE_PIT2:
4028 r = -EFAULT;
4029 if (copy_from_user(&u.pit_config, argp,
4030 sizeof(struct kvm_pit_config)))
4031 goto out;
4032 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02004033 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02004034 r = -EEXIST;
4035 if (kvm->arch.vpit)
4036 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08004037 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004038 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08004039 if (kvm->arch.vpit)
4040 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02004041 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02004042 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08004043 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004044 case KVM_GET_IRQCHIP: {
4045 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02004046 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004047
Sasha Levinff5c2c02011-12-04 19:36:29 +02004048 chip = memdup_user(argp, sizeof(*chip));
4049 if (IS_ERR(chip)) {
4050 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004051 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004052 }
4053
Carsten Otte1fe779f2007-10-29 16:08:35 +01004054 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01004055 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07004056 goto get_irqchip_out;
4057 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
4058 if (r)
4059 goto get_irqchip_out;
4060 r = -EFAULT;
4061 if (copy_to_user(argp, chip, sizeof *chip))
4062 goto get_irqchip_out;
4063 r = 0;
4064 get_irqchip_out:
4065 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004066 break;
4067 }
4068 case KVM_SET_IRQCHIP: {
4069 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02004070 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004071
Sasha Levinff5c2c02011-12-04 19:36:29 +02004072 chip = memdup_user(argp, sizeof(*chip));
4073 if (IS_ERR(chip)) {
4074 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004075 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004076 }
4077
Carsten Otte1fe779f2007-10-29 16:08:35 +01004078 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01004079 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07004080 goto set_irqchip_out;
4081 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
4082 if (r)
4083 goto set_irqchip_out;
4084 r = 0;
4085 set_irqchip_out:
4086 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004087 break;
4088 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08004089 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08004090 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004091 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004092 goto out;
4093 r = -ENXIO;
4094 if (!kvm->arch.vpit)
4095 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07004096 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08004097 if (r)
4098 goto out;
4099 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004100 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004101 goto out;
4102 r = 0;
4103 break;
4104 }
4105 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08004106 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07004107 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08004108 goto out;
4109 r = -ENXIO;
4110 if (!kvm->arch.vpit)
4111 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07004112 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08004113 break;
4114 }
Beth Kone9f42752009-07-07 11:50:38 -04004115 case KVM_GET_PIT2: {
4116 r = -ENXIO;
4117 if (!kvm->arch.vpit)
4118 goto out;
4119 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
4120 if (r)
4121 goto out;
4122 r = -EFAULT;
4123 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
4124 goto out;
4125 r = 0;
4126 break;
4127 }
4128 case KVM_SET_PIT2: {
4129 r = -EFAULT;
4130 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
4131 goto out;
4132 r = -ENXIO;
4133 if (!kvm->arch.vpit)
4134 goto out;
4135 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Beth Kone9f42752009-07-07 11:50:38 -04004136 break;
4137 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004138 case KVM_REINJECT_CONTROL: {
4139 struct kvm_reinject_control control;
4140 r = -EFAULT;
4141 if (copy_from_user(&control, argp, sizeof(control)))
4142 goto out;
4143 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004144 break;
4145 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004146 case KVM_SET_BOOT_CPU_ID:
4147 r = 0;
4148 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02004149 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004150 r = -EBUSY;
4151 else
4152 kvm->arch.bsp_vcpu_id = arg;
4153 mutex_unlock(&kvm->lock);
4154 break;
Ed Swierkffde22a2009-10-15 15:21:43 -07004155 case KVM_XEN_HVM_CONFIG: {
4156 r = -EFAULT;
4157 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
4158 sizeof(struct kvm_xen_hvm_config)))
4159 goto out;
4160 r = -EINVAL;
4161 if (kvm->arch.xen_hvm_config.flags)
4162 goto out;
4163 r = 0;
4164 break;
4165 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004166 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004167 struct kvm_clock_data user_ns;
4168 u64 now_ns;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004169
4170 r = -EFAULT;
4171 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
4172 goto out;
4173
4174 r = -EINVAL;
4175 if (user_ns.flags)
4176 goto out;
4177
4178 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02004179 local_irq_disable();
Paolo Bonzini108b2492016-09-01 14:21:03 +02004180 now_ns = __get_kvmclock_ns(kvm);
4181 kvm->arch.kvmclock_offset += user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02004182 local_irq_enable();
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03004183 kvm_gen_update_masterclock(kvm);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004184 break;
4185 }
4186 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004187 struct kvm_clock_data user_ns;
4188 u64 now_ns;
4189
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004190 local_irq_disable();
4191 now_ns = __get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02004192 user_ns.clock = now_ns;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004193 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
4194 local_irq_enable();
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004195 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004196
4197 r = -EFAULT;
4198 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
4199 goto out;
4200 r = 0;
4201 break;
4202 }
Nadav Amit90de4a12015-04-13 01:53:41 +03004203 case KVM_ENABLE_CAP: {
4204 struct kvm_enable_cap cap;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04004205
Nadav Amit90de4a12015-04-13 01:53:41 +03004206 r = -EFAULT;
4207 if (copy_from_user(&cap, argp, sizeof(cap)))
4208 goto out;
4209 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
4210 break;
4211 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01004212 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02004213 r = -ENOTTY;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004214 }
4215out:
4216 return r;
4217}
4218
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08004219static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02004220{
4221 u32 dummy[2];
4222 unsigned i, j;
4223
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004224 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02004225 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
4226 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004227
4228 /*
4229 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004230 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004231 */
4232 switch (msrs_to_save[i]) {
4233 case MSR_IA32_BNDCFGS:
4234 if (!kvm_x86_ops->mpx_supported())
4235 continue;
4236 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01004237 case MSR_TSC_AUX:
4238 if (!kvm_x86_ops->rdtscp_supported())
4239 continue;
4240 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004241 default:
4242 break;
4243 }
4244
Carsten Otte043405e2007-10-10 17:16:19 +02004245 if (j < i)
4246 msrs_to_save[j] = msrs_to_save[i];
4247 j++;
4248 }
4249 num_msrs_to_save = j;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004250
4251 for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) {
4252 switch (emulated_msrs[i]) {
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004253 case MSR_IA32_SMBASE:
4254 if (!kvm_x86_ops->cpu_has_high_real_mode_segbase())
4255 continue;
4256 break;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004257 default:
4258 break;
4259 }
4260
4261 if (j < i)
4262 emulated_msrs[j] = emulated_msrs[i];
4263 j++;
4264 }
4265 num_emulated_msrs = j;
Carsten Otte043405e2007-10-10 17:16:19 +02004266}
4267
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004268static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
4269 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004270{
Avi Kivity70252a12010-01-19 12:51:22 +02004271 int handled = 0;
4272 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004273
Avi Kivity70252a12010-01-19 12:51:22 +02004274 do {
4275 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004276 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004277 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
4278 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004279 break;
4280 handled += n;
4281 addr += n;
4282 len -= n;
4283 v += n;
4284 } while (len);
4285
4286 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004287}
4288
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03004289static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004290{
Avi Kivity70252a12010-01-19 12:51:22 +02004291 int handled = 0;
4292 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004293
Avi Kivity70252a12010-01-19 12:51:22 +02004294 do {
4295 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004296 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004297 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
4298 addr, n, v))
4299 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02004300 break;
4301 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
4302 handled += n;
4303 addr += n;
4304 len -= n;
4305 v += n;
4306 } while (len);
4307
4308 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004309}
4310
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004311static void kvm_set_segment(struct kvm_vcpu *vcpu,
4312 struct kvm_segment *var, int seg)
4313{
4314 kvm_x86_ops->set_segment(vcpu, var, seg);
4315}
4316
4317void kvm_get_segment(struct kvm_vcpu *vcpu,
4318 struct kvm_segment *var, int seg)
4319{
4320 kvm_x86_ops->get_segment(vcpu, var, seg);
4321}
4322
Paolo Bonzini54987b72014-09-02 13:23:06 +02004323gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
4324 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004325{
4326 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004327
4328 BUG_ON(!mmu_is_nested(vcpu));
4329
4330 /* NPT walks are always user-walks */
4331 access |= PFERR_USER_MASK;
Paolo Bonzini54987b72014-09-02 13:23:06 +02004332 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004333
4334 return t_gpa;
4335}
4336
Avi Kivityab9ae312010-11-22 17:53:26 +02004337gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
4338 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004339{
4340 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02004341 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004342}
4343
Avi Kivityab9ae312010-11-22 17:53:26 +02004344 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
4345 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004346{
4347 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4348 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004349 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004350}
4351
Avi Kivityab9ae312010-11-22 17:53:26 +02004352gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
4353 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004354{
4355 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4356 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02004357 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004358}
4359
4360/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02004361gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
4362 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004363{
Avi Kivityab9ae312010-11-22 17:53:26 +02004364 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004365}
4366
4367static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
4368 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004369 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004370{
4371 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004372 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004373
4374 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004375 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02004376 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004377 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02004378 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004379 int ret;
4380
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004381 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004382 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004383 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
4384 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004385 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004386 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004387 goto out;
4388 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01004389
Izik Eidus77c20022008-12-29 01:42:19 +02004390 bytes -= toread;
4391 data += toread;
4392 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004393 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004394out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004395 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004396}
Izik Eidus77c20022008-12-29 01:42:19 +02004397
Gleb Natapov1871c602010-02-10 14:21:32 +02004398/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03004399static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
4400 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004401 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004402{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004403 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004404 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004405 unsigned offset;
4406 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004407
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004408 /* Inline kvm_read_guest_virt_helper for speed. */
4409 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
4410 exception);
4411 if (unlikely(gpa == UNMAPPED_GVA))
4412 return X86EMUL_PROPAGATE_FAULT;
4413
4414 offset = addr & (PAGE_SIZE-1);
4415 if (WARN_ON(offset + bytes > PAGE_SIZE))
4416 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004417 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
4418 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02004419 if (unlikely(ret < 0))
4420 return X86EMUL_IO_NEEDED;
4421
4422 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02004423}
4424
Nadav Har'El064aea72011-05-25 23:04:56 +03004425int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004426 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004427 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004428{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004429 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004430 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004431
Gleb Natapov1871c602010-02-10 14:21:32 +02004432 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004433 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004434}
Nadav Har'El064aea72011-05-25 23:04:56 +03004435EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004436
Avi Kivity0f65dd72011-04-20 13:37:53 +03004437static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4438 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004439 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004440{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004441 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004442 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004443}
4444
Radim Krčmář7a036a62015-10-30 16:36:24 +01004445static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
4446 unsigned long addr, void *val, unsigned int bytes)
4447{
4448 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4449 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
4450
4451 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
4452}
4453
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004454int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004455 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004456 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004457 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004458{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004459 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004460 void *data = val;
4461 int r = X86EMUL_CONTINUE;
4462
4463 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004464 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4465 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004466 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004467 unsigned offset = addr & (PAGE_SIZE-1);
4468 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4469 int ret;
4470
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004471 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004472 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004473 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02004474 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004475 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004476 goto out;
4477 }
4478
4479 bytes -= towrite;
4480 data += towrite;
4481 addr += towrite;
4482 }
4483out:
4484 return r;
4485}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004486EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004487
Tom Lendacky0f89b202016-12-14 14:59:23 -05004488static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4489 gpa_t gpa, bool write)
4490{
4491 /* For APIC access vmexit */
4492 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4493 return 1;
4494
4495 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
4496 trace_vcpu_match_mmio(gva, gpa, write, true);
4497 return 1;
4498 }
4499
4500 return 0;
4501}
4502
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004503static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4504 gpa_t *gpa, struct x86_exception *exception,
4505 bool write)
4506{
Avi Kivity97d64b72012-09-12 14:52:00 +03004507 u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
4508 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004509
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004510 /*
4511 * currently PKRU is only applied to ept enabled guest so
4512 * there is no pkey in EPT page table for L1 guest or EPT
4513 * shadow page table for L2 guest.
4514 */
Avi Kivity97d64b72012-09-12 14:52:00 +03004515 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08004516 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08004517 vcpu->arch.access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004518 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4519 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004520 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004521 return 1;
4522 }
4523
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004524 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4525
4526 if (*gpa == UNMAPPED_GVA)
4527 return -1;
4528
Tom Lendacky0f89b202016-12-14 14:59:23 -05004529 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004530}
4531
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004532int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004533 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004534{
4535 int ret;
4536
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004537 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004538 if (ret < 0)
4539 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004540 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004541 return 1;
4542}
4543
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004544struct read_write_emulator_ops {
4545 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4546 int bytes);
4547 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4548 void *val, int bytes);
4549 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4550 int bytes, void *val);
4551 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4552 void *val, int bytes);
4553 bool write;
4554};
4555
4556static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4557{
4558 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004559 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Avi Kivityf78146b2012-04-18 19:22:47 +03004560 vcpu->mmio_fragments[0].gpa, *(u64 *)val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004561 vcpu->mmio_read_completed = 0;
4562 return 1;
4563 }
4564
4565 return 0;
4566}
4567
4568static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4569 void *val, int bytes)
4570{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004571 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004572}
4573
4574static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4575 void *val, int bytes)
4576{
4577 return emulator_write_phys(vcpu, gpa, val, bytes);
4578}
4579
4580static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4581{
4582 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4583 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4584}
4585
4586static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4587 void *val, int bytes)
4588{
4589 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4590 return X86EMUL_IO_NEEDED;
4591}
4592
4593static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4594 void *val, int bytes)
4595{
Avi Kivityf78146b2012-04-18 19:22:47 +03004596 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
4597
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004598 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004599 return X86EMUL_CONTINUE;
4600}
4601
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004602static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004603 .read_write_prepare = read_prepare,
4604 .read_write_emulate = read_emulate,
4605 .read_write_mmio = vcpu_mmio_read,
4606 .read_write_exit_mmio = read_exit_mmio,
4607};
4608
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004609static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004610 .read_write_emulate = write_emulate,
4611 .read_write_mmio = write_mmio,
4612 .read_write_exit_mmio = write_exit_mmio,
4613 .write = true,
4614};
4615
Xiao Guangrong22388a32011-07-13 14:32:31 +08004616static int emulator_read_write_onepage(unsigned long addr, void *val,
4617 unsigned int bytes,
4618 struct x86_exception *exception,
4619 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004620 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004621{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004622 gpa_t gpa;
4623 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004624 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03004625 struct kvm_mmio_fragment *frag;
Tom Lendacky0f89b202016-12-14 14:59:23 -05004626 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
4627
4628 /*
4629 * If the exit was due to a NPF we may already have a GPA.
4630 * If the GPA is present, use it to avoid the GVA to GPA table walk.
4631 * Note, this cannot be used on string operations since string
4632 * operation using rep will only have the initial GPA from the NPF
4633 * occurred.
4634 */
4635 if (vcpu->arch.gpa_available &&
4636 emulator_can_use_gpa(ctxt) &&
4637 vcpu_is_mmio_gpa(vcpu, addr, exception->address, write) &&
4638 (addr & ~PAGE_MASK) == (exception->address & ~PAGE_MASK)) {
4639 gpa = exception->address;
4640 goto mmio;
4641 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004642
4643 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004644
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004645 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004646 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004647
4648 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004649 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004650 goto mmio;
4651
Xiao Guangrong22388a32011-07-13 14:32:31 +08004652 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004653 return X86EMUL_CONTINUE;
4654
4655mmio:
4656 /*
4657 * Is this MMIO handled locally?
4658 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004659 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004660 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004661 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004662
Avi Kivity70252a12010-01-19 12:51:22 +02004663 gpa += handled;
4664 bytes -= handled;
4665 val += handled;
4666
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004667 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
4668 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
4669 frag->gpa = gpa;
4670 frag->data = val;
4671 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03004672 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004673}
4674
Xiubo Li52eb5a62015-03-13 17:39:45 +08004675static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
4676 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004677 void *val, unsigned int bytes,
4678 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004679 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004680{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004681 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03004682 gpa_t gpa;
4683 int rc;
4684
4685 if (ops->read_write_prepare &&
4686 ops->read_write_prepare(vcpu, val, bytes))
4687 return X86EMUL_CONTINUE;
4688
4689 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004690
Carsten Ottebbd9b642007-10-30 18:44:21 +01004691 /* Crossing a page boundary? */
4692 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03004693 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004694
4695 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004696 rc = emulator_read_write_onepage(addr, val, now, exception,
4697 vcpu, ops);
4698
Carsten Ottebbd9b642007-10-30 18:44:21 +01004699 if (rc != X86EMUL_CONTINUE)
4700 return rc;
4701 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02004702 if (ctxt->mode != X86EMUL_MODE_PROT64)
4703 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004704 val += now;
4705 bytes -= now;
4706 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004707
Avi Kivityf78146b2012-04-18 19:22:47 +03004708 rc = emulator_read_write_onepage(addr, val, bytes, exception,
4709 vcpu, ops);
4710 if (rc != X86EMUL_CONTINUE)
4711 return rc;
4712
4713 if (!vcpu->mmio_nr_fragments)
4714 return rc;
4715
4716 gpa = vcpu->mmio_fragments[0].gpa;
4717
4718 vcpu->mmio_needed = 1;
4719 vcpu->mmio_cur_fragment = 0;
4720
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004721 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03004722 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
4723 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4724 vcpu->run->mmio.phys_addr = gpa;
4725
4726 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004727}
4728
4729static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4730 unsigned long addr,
4731 void *val,
4732 unsigned int bytes,
4733 struct x86_exception *exception)
4734{
4735 return emulator_read_write(ctxt, addr, val, bytes,
4736 exception, &read_emultor);
4737}
4738
Xiubo Li52eb5a62015-03-13 17:39:45 +08004739static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08004740 unsigned long addr,
4741 const void *val,
4742 unsigned int bytes,
4743 struct x86_exception *exception)
4744{
4745 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4746 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004747}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004748
Avi Kivitydaea3e72010-03-15 13:59:54 +02004749#define CMPXCHG_TYPE(t, ptr, old, new) \
4750 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4751
4752#ifdef CONFIG_X86_64
4753# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4754#else
4755# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004756 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004757#endif
4758
Avi Kivity0f65dd72011-04-20 13:37:53 +03004759static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4760 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004761 const void *old,
4762 const void *new,
4763 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004764 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004765{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004766 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004767 gpa_t gpa;
4768 struct page *page;
4769 char *kaddr;
4770 bool exchanged;
4771
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004772 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004773 if (bytes > 8 || (bytes & (bytes - 1)))
4774 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004775
Avi Kivitydaea3e72010-03-15 13:59:54 +02004776 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004777
Avi Kivitydaea3e72010-03-15 13:59:54 +02004778 if (gpa == UNMAPPED_GVA ||
4779 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4780 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004781
Avi Kivitydaea3e72010-03-15 13:59:54 +02004782 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4783 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004784
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004785 page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +08004786 if (is_error_page(page))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08004787 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004788
Cong Wang8fd75e12011-11-25 23:14:17 +08004789 kaddr = kmap_atomic(page);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004790 kaddr += offset_in_page(gpa);
4791 switch (bytes) {
4792 case 1:
4793 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4794 break;
4795 case 2:
4796 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4797 break;
4798 case 4:
4799 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4800 break;
4801 case 8:
4802 exchanged = CMPXCHG64(kaddr, old, new);
4803 break;
4804 default:
4805 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004806 }
Cong Wang8fd75e12011-11-25 23:14:17 +08004807 kunmap_atomic(kaddr);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004808 kvm_release_page_dirty(page);
4809
4810 if (!exchanged)
4811 return X86EMUL_CMPXCHG_FAILED;
4812
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004813 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08004814 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004815
4816 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004817
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004818emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004819 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004820
Avi Kivity0f65dd72011-04-20 13:37:53 +03004821 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004822}
4823
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004824static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4825{
4826 /* TODO: String I/O for in kernel device */
4827 int r;
4828
4829 if (vcpu->arch.pio.in)
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004830 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004831 vcpu->arch.pio.size, pd);
4832 else
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00004833 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004834 vcpu->arch.pio.port, vcpu->arch.pio.size,
4835 pd);
4836 return r;
4837}
4838
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004839static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4840 unsigned short port, void *val,
4841 unsigned int count, bool in)
4842{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004843 vcpu->arch.pio.port = port;
4844 vcpu->arch.pio.in = in;
4845 vcpu->arch.pio.count = count;
4846 vcpu->arch.pio.size = size;
4847
4848 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4849 vcpu->arch.pio.count = 0;
4850 return 1;
4851 }
4852
4853 vcpu->run->exit_reason = KVM_EXIT_IO;
4854 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4855 vcpu->run->io.size = size;
4856 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4857 vcpu->run->io.count = count;
4858 vcpu->run->io.port = port;
4859
4860 return 0;
4861}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004862
Avi Kivityca1d4a92011-04-20 13:37:53 +03004863static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4864 int size, unsigned short port, void *val,
4865 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004866{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004867 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004868 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004869
Gleb Natapov79729952010-03-18 15:20:24 +02004870 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004871 goto data_avail;
4872
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004873 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4874 if (ret) {
4875data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004876 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004877 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02004878 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004879 return 1;
4880 }
4881
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004882 return 0;
4883}
4884
Avi Kivityca1d4a92011-04-20 13:37:53 +03004885static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4886 int size, unsigned short port,
4887 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004888{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004889 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4890
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004891 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02004892 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004893 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004894}
4895
Carsten Ottebbd9b642007-10-30 18:44:21 +01004896static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4897{
4898 return kvm_x86_ops->get_segment_base(vcpu, seg);
4899}
4900
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004901static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004902{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004903 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004904}
4905
Jiang Biaoae6a2372016-11-07 08:54:51 +08004906static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004907{
4908 if (!need_emulate_wbinvd(vcpu))
4909 return X86EMUL_CONTINUE;
4910
4911 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004912 int cpu = get_cpu();
4913
4914 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004915 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4916 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004917 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004918 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004919 } else
4920 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004921 return X86EMUL_CONTINUE;
4922}
Joel Schopp5cb56052015-03-02 13:43:31 -06004923
4924int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4925{
Kyle Huey6affcbe2016-11-29 12:40:40 -08004926 kvm_emulate_wbinvd_noskip(vcpu);
4927 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06004928}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004929EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4930
Joel Schopp5cb56052015-03-02 13:43:31 -06004931
4932
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004933static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4934{
Joel Schopp5cb56052015-03-02 13:43:31 -06004935 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004936}
4937
Xiubo Li52eb5a62015-03-13 17:39:45 +08004938static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
4939 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004940{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004941 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004942}
4943
Xiubo Li52eb5a62015-03-13 17:39:45 +08004944static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
4945 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004946{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004947
Avi Kivity717746e2011-04-20 13:37:53 +03004948 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004949}
4950
Gleb Natapov52a46612010-03-18 15:20:03 +02004951static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4952{
4953 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4954}
4955
Avi Kivity717746e2011-04-20 13:37:53 +03004956static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004957{
Avi Kivity717746e2011-04-20 13:37:53 +03004958 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004959 unsigned long value;
4960
4961 switch (cr) {
4962 case 0:
4963 value = kvm_read_cr0(vcpu);
4964 break;
4965 case 2:
4966 value = vcpu->arch.cr2;
4967 break;
4968 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004969 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004970 break;
4971 case 4:
4972 value = kvm_read_cr4(vcpu);
4973 break;
4974 case 8:
4975 value = kvm_get_cr8(vcpu);
4976 break;
4977 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004978 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02004979 return 0;
4980 }
4981
4982 return value;
4983}
4984
Avi Kivity717746e2011-04-20 13:37:53 +03004985static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02004986{
Avi Kivity717746e2011-04-20 13:37:53 +03004987 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03004988 int res = 0;
4989
Gleb Natapov52a46612010-03-18 15:20:03 +02004990 switch (cr) {
4991 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004992 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004993 break;
4994 case 2:
4995 vcpu->arch.cr2 = val;
4996 break;
4997 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004998 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004999 break;
5000 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03005001 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02005002 break;
5003 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005004 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02005005 break;
5006 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03005007 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03005008 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02005009 }
Gleb Natapov0f122442010-04-28 19:15:31 +03005010
5011 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02005012}
5013
Avi Kivity717746e2011-04-20 13:37:53 +03005014static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02005015{
Avi Kivity717746e2011-04-20 13:37:53 +03005016 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02005017}
5018
Avi Kivity4bff1e862011-04-20 13:37:53 +03005019static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005020{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005021 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005022}
5023
Avi Kivity4bff1e862011-04-20 13:37:53 +03005024static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005025{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005026 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005027}
5028
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005029static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
5030{
5031 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
5032}
5033
5034static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
5035{
5036 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
5037}
5038
Avi Kivity4bff1e862011-04-20 13:37:53 +03005039static unsigned long emulator_get_cached_segment_base(
5040 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03005041{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005042 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03005043}
5044
Avi Kivity1aa36612011-04-27 13:20:30 +03005045static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
5046 struct desc_struct *desc, u32 *base3,
5047 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005048{
5049 struct kvm_segment var;
5050
Avi Kivity4bff1e862011-04-20 13:37:53 +03005051 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03005052 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005053
Gleb Natapov378a8b02013-01-21 15:36:48 +02005054 if (var.unusable) {
5055 memset(desc, 0, sizeof(*desc));
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005056 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02005057 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005058
5059 if (var.g)
5060 var.limit >>= 12;
5061 set_desc_limit(desc, var.limit);
5062 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02005063#ifdef CONFIG_X86_64
5064 if (base3)
5065 *base3 = var.base >> 32;
5066#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005067 desc->type = var.type;
5068 desc->s = var.s;
5069 desc->dpl = var.dpl;
5070 desc->p = var.present;
5071 desc->avl = var.avl;
5072 desc->l = var.l;
5073 desc->d = var.db;
5074 desc->g = var.g;
5075
5076 return true;
5077}
5078
Avi Kivity1aa36612011-04-27 13:20:30 +03005079static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
5080 struct desc_struct *desc, u32 base3,
5081 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005082{
Avi Kivity4bff1e862011-04-20 13:37:53 +03005083 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005084 struct kvm_segment var;
5085
Avi Kivity1aa36612011-04-27 13:20:30 +03005086 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005087 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02005088#ifdef CONFIG_X86_64
5089 var.base |= ((u64)base3) << 32;
5090#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005091 var.limit = get_desc_limit(desc);
5092 if (desc->g)
5093 var.limit = (var.limit << 12) | 0xfff;
5094 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005095 var.dpl = desc->dpl;
5096 var.db = desc->d;
5097 var.s = desc->s;
5098 var.l = desc->l;
5099 var.g = desc->g;
5100 var.avl = desc->avl;
5101 var.present = desc->p;
5102 var.unusable = !var.present;
5103 var.padding = 0;
5104
5105 kvm_set_segment(vcpu, &var, seg);
5106 return;
5107}
5108
Avi Kivity717746e2011-04-20 13:37:53 +03005109static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
5110 u32 msr_index, u64 *pdata)
5111{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005112 struct msr_data msr;
5113 int r;
5114
5115 msr.index = msr_index;
5116 msr.host_initiated = false;
5117 r = kvm_get_msr(emul_to_vcpu(ctxt), &msr);
5118 if (r)
5119 return r;
5120
5121 *pdata = msr.data;
5122 return 0;
Avi Kivity717746e2011-04-20 13:37:53 +03005123}
5124
5125static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
5126 u32 msr_index, u64 data)
5127{
Will Auld8fe8ab42012-11-29 12:42:12 -08005128 struct msr_data msr;
5129
5130 msr.data = data;
5131 msr.index = msr_index;
5132 msr.host_initiated = false;
5133 return kvm_set_msr(emul_to_vcpu(ctxt), &msr);
Avi Kivity717746e2011-04-20 13:37:53 +03005134}
5135
Paolo Bonzini64d60672015-05-07 11:36:11 +02005136static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
5137{
5138 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5139
5140 return vcpu->arch.smbase;
5141}
5142
5143static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
5144{
5145 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5146
5147 vcpu->arch.smbase = smbase;
5148}
5149
Nadav Amit67f4d422014-06-02 18:34:09 +03005150static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
5151 u32 pmc)
5152{
Wei Huangc6702c92015-06-19 13:44:45 +02005153 return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03005154}
5155
Avi Kivity222d21a2011-11-10 14:57:30 +02005156static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
5157 u32 pmc, u64 *pdata)
5158{
Wei Huangc6702c92015-06-19 13:44:45 +02005159 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02005160}
5161
Avi Kivity6c3287f2011-04-20 15:43:05 +03005162static void emulator_halt(struct x86_emulate_ctxt *ctxt)
5163{
5164 emul_to_vcpu(ctxt)->arch.halt_request = 1;
5165}
5166
Avi Kivity5037f6f2011-03-28 16:53:59 +02005167static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
5168{
5169 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03005170 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02005171}
5172
5173static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
5174{
5175 preempt_enable();
5176}
5177
Avi Kivity29535382011-04-20 13:37:53 +03005178static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005179 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005180 enum x86_intercept_stage stage)
5181{
Avi Kivity29535382011-04-20 13:37:53 +03005182 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02005183}
5184
Avi Kivity0017f932012-06-07 14:10:16 +03005185static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005186 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
5187{
Avi Kivity0017f932012-06-07 14:10:16 +03005188 kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005189}
5190
Avi Kivitydd856ef2012-08-27 23:46:17 +03005191static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
5192{
5193 return kvm_register_read(emul_to_vcpu(ctxt), reg);
5194}
5195
5196static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
5197{
5198 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
5199}
5200
Nadav Amit801806d2015-01-26 09:32:23 +02005201static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
5202{
5203 kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked);
5204}
5205
Mathias Krause0225fb52012-08-30 01:30:16 +02005206static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03005207 .read_gpr = emulator_read_gpr,
5208 .write_gpr = emulator_write_gpr,
Gleb Natapov1871c602010-02-10 14:21:32 +02005209 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005210 .write_std = kvm_write_guest_virt_system,
Radim Krčmář7a036a62015-10-30 16:36:24 +01005211 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02005212 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005213 .read_emulated = emulator_read_emulated,
5214 .write_emulated = emulator_write_emulated,
5215 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03005216 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005217 .pio_in_emulated = emulator_pio_in_emulated,
5218 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03005219 .get_segment = emulator_get_segment,
5220 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03005221 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005222 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03005223 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03005224 .set_gdt = emulator_set_gdt,
5225 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02005226 .get_cr = emulator_get_cr,
5227 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02005228 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03005229 .get_dr = emulator_get_dr,
5230 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02005231 .get_smbase = emulator_get_smbase,
5232 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03005233 .set_msr = emulator_set_msr,
5234 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03005235 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02005236 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03005237 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03005238 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03005239 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02005240 .get_fpu = emulator_get_fpu,
5241 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02005242 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01005243 .get_cpuid = emulator_get_cpuid,
Nadav Amit801806d2015-01-26 09:32:23 +02005244 .set_nmi_mask = emulator_set_nmi_mask,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005245};
5246
Gleb Natapov95cb2292010-04-28 19:15:43 +03005247static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
5248{
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005249 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03005250 /*
5251 * an sti; sti; sequence only disable interrupts for the first
5252 * instruction. So, if the last instruction, be it emulated or
5253 * not, left the system with the INT_STI flag enabled, it
5254 * means that the last instruction is an sti. We should not
5255 * leave the flag on in this case. The same goes for mov ss
5256 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02005257 if (int_shadow & mask)
5258 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005259 if (unlikely(int_shadow || mask)) {
Gleb Natapov95cb2292010-04-28 19:15:43 +03005260 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005261 if (!mask)
5262 kvm_make_request(KVM_REQ_EVENT, vcpu);
5263 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03005264}
5265
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005266static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03005267{
5268 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02005269 if (ctxt->exception.vector == PF_VECTOR)
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005270 return kvm_propagate_fault(vcpu, &ctxt->exception);
5271
5272 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02005273 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
5274 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03005275 else
Avi Kivityda9cb572010-11-22 17:53:21 +02005276 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005277 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03005278}
5279
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005280static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
5281{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005282 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005283 int cs_db, cs_l;
5284
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005285 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5286
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005287 ctxt->eflags = kvm_get_rflags(vcpu);
5288 ctxt->eip = kvm_rip_read(vcpu);
5289 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
5290 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03005291 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005292 cs_db ? X86EMUL_MODE_PROT32 :
5293 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005294 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005295 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
5296 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005297 ctxt->emul_flags = vcpu->arch.hflags;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09005298
Avi Kivitydd856ef2012-08-27 23:46:17 +03005299 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005300 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005301}
5302
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005303int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02005304{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005305 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02005306 int ret;
5307
5308 init_emulate_ctxt(vcpu);
5309
Avi Kivity9dac77f2011-06-01 15:34:25 +03005310 ctxt->op_bytes = 2;
5311 ctxt->ad_bytes = 2;
5312 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005313 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02005314
5315 if (ret != X86EMUL_CONTINUE)
5316 return EMULATE_FAIL;
5317
Avi Kivity9dac77f2011-06-01 15:34:25 +03005318 ctxt->eip = ctxt->_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005319 kvm_rip_write(vcpu, ctxt->eip);
5320 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02005321
5322 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005323 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02005324 else
5325 vcpu->arch.interrupt.pending = false;
5326
5327 return EMULATE_DONE;
5328}
5329EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
5330
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005331static int handle_emulation_failure(struct kvm_vcpu *vcpu)
5332{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005333 int r = EMULATE_DONE;
5334
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005335 ++vcpu->stat.insn_emulation_fail;
5336 trace_kvm_emulate_insn_failed(vcpu);
Nadav Amita2b9e6c2014-09-17 02:50:50 +03005337 if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005338 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5339 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5340 vcpu->run->internal.ndata = 0;
5341 r = EMULATE_FAIL;
5342 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005343 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01005344
5345 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005346}
5347
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005348static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2,
Gleb Natapov991eebf2013-04-11 12:10:51 +03005349 bool write_fault_to_shadow_pgtable,
5350 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03005351{
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005352 gpa_t gpa = cr2;
Dan Williamsba049e92016-01-15 16:56:11 -08005353 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005354
Gleb Natapov991eebf2013-04-11 12:10:51 +03005355 if (emulation_type & EMULTYPE_NO_REEXECUTE)
5356 return false;
5357
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005358 if (!vcpu->arch.mmu.direct_map) {
5359 /*
5360 * Write permission should be allowed since only
5361 * write access need to be emulated.
5362 */
5363 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03005364
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005365 /*
5366 * If the mapping is invalid in guest, let cpu retry
5367 * it to generate fault.
5368 */
5369 if (gpa == UNMAPPED_GVA)
5370 return true;
5371 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005372
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005373 /*
5374 * Do not retry the unhandleable instruction if it faults on the
5375 * readonly host memory, otherwise it will goto a infinite loop:
5376 * retry instruction -> write #PF -> emulation fail -> retry
5377 * instruction -> ...
5378 */
5379 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005380
5381 /*
5382 * If the instruction failed on the error pfn, it can not be fixed,
5383 * report the error to userspace.
5384 */
5385 if (is_error_noslot_pfn(pfn))
5386 return false;
5387
5388 kvm_release_pfn_clean(pfn);
5389
5390 /* The instructions are well-emulated on direct mmu. */
5391 if (vcpu->arch.mmu.direct_map) {
5392 unsigned int indirect_shadow_pages;
5393
5394 spin_lock(&vcpu->kvm->mmu_lock);
5395 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
5396 spin_unlock(&vcpu->kvm->mmu_lock);
5397
5398 if (indirect_shadow_pages)
5399 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
5400
Gleb Natapova6f177e2010-07-08 12:41:12 +03005401 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08005402 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03005403
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08005404 /*
5405 * if emulation was due to access to shadowed page table
5406 * and it failed try to unshadow page and re-enter the
5407 * guest to let CPU execute the instruction.
5408 */
5409 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005410
5411 /*
5412 * If the access faults on its page table, it can not
5413 * be fixed by unprotecting shadow page and it should
5414 * be reported to userspace.
5415 */
5416 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03005417}
5418
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005419static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
5420 unsigned long cr2, int emulation_type)
5421{
5422 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5423 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
5424
5425 last_retry_eip = vcpu->arch.last_retry_eip;
5426 last_retry_addr = vcpu->arch.last_retry_addr;
5427
5428 /*
5429 * If the emulation is caused by #PF and it is non-page_table
5430 * writing instruction, it means the VM-EXIT is caused by shadow
5431 * page protected, we can zap the shadow page and retry this
5432 * instruction directly.
5433 *
5434 * Note: if the guest uses a non-page-table modifying instruction
5435 * on the PDE that points to the instruction, then we will unmap
5436 * the instruction and go to an infinite loop. So, we cache the
5437 * last retried eip and the last fault address, if we meet the eip
5438 * and the address again, we can break out of the potential infinite
5439 * loop.
5440 */
5441 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
5442
5443 if (!(emulation_type & EMULTYPE_RETRY))
5444 return false;
5445
5446 if (x86_page_table_writing_insn(ctxt))
5447 return false;
5448
5449 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
5450 return false;
5451
5452 vcpu->arch.last_retry_eip = ctxt->eip;
5453 vcpu->arch.last_retry_addr = cr2;
5454
5455 if (!vcpu->arch.mmu.direct_map)
5456 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
5457
Xiao Guangrong22368022013-01-13 23:44:12 +08005458 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005459
5460 return true;
5461}
5462
Gleb Natapov716d51a2012-09-03 15:24:26 +03005463static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
5464static int complete_emulated_pio(struct kvm_vcpu *vcpu);
5465
Paolo Bonzini64d60672015-05-07 11:36:11 +02005466static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02005467{
Paolo Bonzini64d60672015-05-07 11:36:11 +02005468 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02005469 /* This is a good place to trace that we are exiting SMM. */
5470 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
5471
Paolo Bonzinic43203c2016-06-01 22:26:00 +02005472 /* Process a latched INIT or SMI, if any. */
5473 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005474 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02005475
5476 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02005477}
5478
5479static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags)
5480{
5481 unsigned changed = vcpu->arch.hflags ^ emul_flags;
5482
Paolo Bonzinia5845392015-04-01 18:18:53 +02005483 vcpu->arch.hflags = emul_flags;
Paolo Bonzini64d60672015-05-07 11:36:11 +02005484
5485 if (changed & HF_SMM_MASK)
5486 kvm_smm_changed(vcpu);
Paolo Bonzinia5845392015-04-01 18:18:53 +02005487}
5488
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005489static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
5490 unsigned long *db)
5491{
5492 u32 dr6 = 0;
5493 int i;
5494 u32 enable, rwlen;
5495
5496 enable = dr7;
5497 rwlen = dr7 >> 16;
5498 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
5499 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
5500 dr6 |= (1 << i);
5501 return dr6;
5502}
5503
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005504static void kvm_vcpu_check_singlestep(struct kvm_vcpu *vcpu, unsigned long rflags, int *r)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005505{
5506 struct kvm_run *kvm_run = vcpu->run;
5507
5508 /*
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005509 * rflags is the old, "raw" value of the flags. The new value has
5510 * not been saved yet.
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005511 *
5512 * This is correct even for TF set by the guest, because "the
5513 * processor will not generate this exception after the instruction
5514 * that sets the TF flag".
5515 */
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005516 if (unlikely(rflags & X86_EFLAGS_TF)) {
5517 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005518 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 |
5519 DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005520 kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip;
5521 kvm_run->debug.arch.exception = DB_VECTOR;
5522 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5523 *r = EMULATE_USER_EXIT;
5524 } else {
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005525 /*
5526 * "Certain debug exceptions may clear bit 0-3. The
5527 * remaining contents of the DR6 register are never
5528 * cleared by the processor".
5529 */
5530 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005531 vcpu->arch.dr6 |= DR6_BS | DR6_RTM;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005532 kvm_queue_exception(vcpu, DB_VECTOR);
5533 }
5534 }
5535}
5536
Kyle Huey6affcbe2016-11-29 12:40:40 -08005537int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
5538{
5539 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
5540 int r = EMULATE_DONE;
5541
5542 kvm_x86_ops->skip_emulated_instruction(vcpu);
5543 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
5544 return r == EMULATE_DONE;
5545}
5546EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
5547
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005548static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
5549{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005550 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
5551 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005552 struct kvm_run *kvm_run = vcpu->run;
5553 unsigned long eip = kvm_get_linear_rip(vcpu);
5554 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005555 vcpu->arch.guest_debug_dr7,
5556 vcpu->arch.eff_db);
5557
5558 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03005559 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02005560 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005561 kvm_run->debug.arch.exception = DB_VECTOR;
5562 kvm_run->exit_reason = KVM_EXIT_DEBUG;
5563 *r = EMULATE_USER_EXIT;
5564 return true;
5565 }
5566 }
5567
Nadav Amit4161a562014-07-17 01:19:31 +03005568 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
5569 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02005570 unsigned long eip = kvm_get_linear_rip(vcpu);
5571 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005572 vcpu->arch.dr7,
5573 vcpu->arch.db);
5574
5575 if (dr6 != 0) {
5576 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005577 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005578 kvm_queue_exception(vcpu, DB_VECTOR);
5579 *r = EMULATE_DONE;
5580 return true;
5581 }
5582 }
5583
5584 return false;
5585}
5586
Andre Przywara51d8b662010-12-21 11:12:02 +01005587int x86_emulate_instruction(struct kvm_vcpu *vcpu,
5588 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01005589 int emulation_type,
5590 void *insn,
5591 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005592{
Gleb Natapov95cb2292010-04-28 19:15:43 +03005593 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005594 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005595 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005596 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005597
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005598 /*
5599 * Clear write_fault_to_shadow_pgtable here to ensure it is
5600 * never reused.
5601 */
5602 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03005603 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03005604
Sheng Yang571008d2008-01-02 14:49:22 +08005605 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005606 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005607
5608 /*
5609 * We will reenter on the same instruction since
5610 * we do not set complete_userspace_io. This does not
5611 * handle watchpoints yet, those would be handled in
5612 * the emulate_ops.
5613 */
5614 if (kvm_vcpu_check_breakpoint(vcpu, &r))
5615 return r;
5616
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005617 ctxt->interruptibility = 0;
5618 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02005619 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005620 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005621
Borislav Petkovb51e9742013-09-22 16:44:52 +02005622 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02005623
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005624 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02005625
Avi Kivitye46479f2010-04-11 13:05:16 +03005626 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02005627 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09005628 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02005629 if (emulation_type & EMULTYPE_TRAP_UD)
5630 return EMULATE_FAIL;
Gleb Natapov991eebf2013-04-11 12:10:51 +03005631 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5632 emulation_type))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005633 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005634 if (emulation_type & EMULTYPE_SKIP)
5635 return EMULATE_FAIL;
5636 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005637 }
5638 }
5639
Gleb Natapovba8afb62009-04-12 13:36:57 +03005640 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03005641 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03005642 if (ctxt->eflags & X86_EFLAGS_RF)
5643 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Gleb Natapovba8afb62009-04-12 13:36:57 +03005644 return EMULATE_DONE;
5645 }
5646
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005647 if (retry_instruction(ctxt, cr2, emulation_type))
5648 return EMULATE_DONE;
5649
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005650 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005651 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005652 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
5653 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03005654 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005655 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005656
Gleb Natapov5cd21912010-03-18 15:20:26 +02005657restart:
Tom Lendacky0f89b202016-12-14 14:59:23 -05005658 /* Save the faulting GPA (cr2) in the address field */
5659 ctxt->exception.address = cr2;
5660
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005661 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005662
Joerg Roedel775fde82011-04-04 12:39:24 +02005663 if (r == EMULATION_INTERCEPTED)
5664 return EMULATE_DONE;
5665
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005666 if (r == EMULATION_FAILED) {
Gleb Natapov991eebf2013-04-11 12:10:51 +03005667 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5668 emulation_type))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005669 return EMULATE_DONE;
5670
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005671 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005672 }
5673
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005674 if (ctxt->have_exception) {
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005675 r = EMULATE_DONE;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02005676 if (inject_emulated_exception(vcpu))
5677 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005678 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02005679 if (!vcpu->arch.pio.in) {
5680 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03005681 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02005682 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005683 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005684 vcpu->arch.complete_userspace_io = complete_emulated_pio;
5685 }
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005686 r = EMULATE_USER_EXIT;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005687 } else if (vcpu->mmio_needed) {
5688 if (!vcpu->mmio_is_write)
5689 writeback = false;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005690 r = EMULATE_USER_EXIT;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005691 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005692 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03005693 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005694 else
5695 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03005696
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005697 if (writeback) {
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005698 unsigned long rflags = kvm_x86_ops->get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005699 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005700 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Paolo Bonzinia5845392015-04-01 18:18:53 +02005701 if (vcpu->arch.hflags != ctxt->emul_flags)
5702 kvm_set_hflags(vcpu, ctxt->emul_flags);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005703 kvm_rip_write(vcpu, ctxt->eip);
Paolo Bonzini663f4c62013-06-25 18:32:07 +02005704 if (r == EMULATE_DONE)
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005705 kvm_vcpu_check_singlestep(vcpu, rflags, &r);
Nadav Amit38827db2014-11-02 11:54:53 +02005706 if (!ctxt->have_exception ||
5707 exception_type(ctxt->exception.vector) == EXCPT_TRAP)
5708 __kvm_set_rflags(vcpu, ctxt->eflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01005709
5710 /*
5711 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
5712 * do nothing, and it will be requested again as soon as
5713 * the shadow expires. But we still need to check here,
5714 * because POPF has no interrupt shadow.
5715 */
5716 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
5717 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005718 } else
5719 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005720
Gleb Natapove85d28f2010-07-29 15:11:52 +03005721 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005722}
Andre Przywara51d8b662010-12-21 11:12:02 +01005723EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005724
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005725int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005726{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005727 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005728 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5729 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005730 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005731 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005732 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005733}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005734EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005735
Tom Lendacky8370c3d2016-11-23 12:01:50 -05005736static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
5737{
5738 unsigned long val;
5739
5740 /* We should only ever be called with arch.pio.count equal to 1 */
5741 BUG_ON(vcpu->arch.pio.count != 1);
5742
5743 /* For size less than 4 we merge, else we zero extend */
5744 val = (vcpu->arch.pio.size < 4) ? kvm_register_read(vcpu, VCPU_REGS_RAX)
5745 : 0;
5746
5747 /*
5748 * Since vcpu->arch.pio.count == 1 let emulator_pio_in_emulated perform
5749 * the copy and tracing
5750 */
5751 emulator_pio_in_emulated(&vcpu->arch.emulate_ctxt, vcpu->arch.pio.size,
5752 vcpu->arch.pio.port, &val, 1);
5753 kvm_register_write(vcpu, VCPU_REGS_RAX, val);
5754
5755 return 1;
5756}
5757
5758int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size, unsigned short port)
5759{
5760 unsigned long val;
5761 int ret;
5762
5763 /* For size less than 4 we merge, else we zero extend */
5764 val = (size < 4) ? kvm_register_read(vcpu, VCPU_REGS_RAX) : 0;
5765
5766 ret = emulator_pio_in_emulated(&vcpu->arch.emulate_ctxt, size, port,
5767 &val, 1);
5768 if (ret) {
5769 kvm_register_write(vcpu, VCPU_REGS_RAX, val);
5770 return ret;
5771 }
5772
5773 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
5774
5775 return 0;
5776}
5777EXPORT_SYMBOL_GPL(kvm_fast_pio_in);
5778
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005779static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005780{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005781 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005782 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005783}
5784
5785static void tsc_khz_changed(void *data)
5786{
5787 struct cpufreq_freqs *freq = data;
5788 unsigned long khz = 0;
5789
5790 if (data)
5791 khz = freq->new;
5792 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5793 khz = cpufreq_quick_get(raw_smp_processor_id());
5794 if (!khz)
5795 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005796 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005797}
5798
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005799static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5800 void *data)
5801{
5802 struct cpufreq_freqs *freq = data;
5803 struct kvm *kvm;
5804 struct kvm_vcpu *vcpu;
5805 int i, send_ipi = 0;
5806
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005807 /*
5808 * We allow guests to temporarily run on slowing clocks,
5809 * provided we notify them after, or to run on accelerating
5810 * clocks, provided we notify them before. Thus time never
5811 * goes backwards.
5812 *
5813 * However, we have a problem. We can't atomically update
5814 * the frequency of a given CPU from this function; it is
5815 * merely a notifier, which can be called from any CPU.
5816 * Changing the TSC frequency at arbitrary points in time
5817 * requires a recomputation of local variables related to
5818 * the TSC for each VCPU. We must flag these local variables
5819 * to be updated and be sure the update takes place with the
5820 * new frequency before any guests proceed.
5821 *
5822 * Unfortunately, the combination of hotplug CPU and frequency
5823 * change creates an intractable locking scenario; the order
5824 * of when these callouts happen is undefined with respect to
5825 * CPU hotplug, and they can race with each other. As such,
5826 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5827 * undefined; you can actually have a CPU frequency change take
5828 * place in between the computation of X and the setting of the
5829 * variable. To protect against this problem, all updates of
5830 * the per_cpu tsc_khz variable are done in an interrupt
5831 * protected IPI, and all callers wishing to update the value
5832 * must wait for a synchronous IPI to complete (which is trivial
5833 * if the caller is on the CPU already). This establishes the
5834 * necessary total order on variable updates.
5835 *
5836 * Note that because a guest time update may take place
5837 * anytime after the setting of the VCPU's request bit, the
5838 * correct TSC value must be set before the request. However,
5839 * to ensure the update actually makes it to any guest which
5840 * starts running in hardware virtualization between the set
5841 * and the acquisition of the spinlock, we must also ping the
5842 * CPU after setting the request bit.
5843 *
5844 */
5845
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005846 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5847 return 0;
5848 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5849 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005850
5851 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005852
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005853 spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005854 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005855 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005856 if (vcpu->cpu != freq->cpu)
5857 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005858 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005859 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005860 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005861 }
5862 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005863 spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005864
5865 if (freq->old < freq->new && send_ipi) {
5866 /*
5867 * We upscale the frequency. Must make the guest
5868 * doesn't see old kvmclock values while running with
5869 * the new frequency, otherwise we risk the guest sees
5870 * time go backwards.
5871 *
5872 * In case we update the frequency for another cpu
5873 * (which might be in guest context) send an interrupt
5874 * to kick the cpu out of guest context. Next time
5875 * guest context is entered kvmclock will be updated,
5876 * so the guest will not see stale values.
5877 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005878 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005879 }
5880 return 0;
5881}
5882
5883static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005884 .notifier_call = kvmclock_cpufreq_notifier
5885};
5886
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005887static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005888{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005889 tsc_khz_changed(NULL);
5890 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005891}
5892
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005893static void kvm_timer_init(void)
5894{
Zachary Amsdenc2855452010-09-18 14:38:15 -10005895 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305896
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005897 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005898#ifdef CONFIG_CPU_FREQ
5899 struct cpufreq_policy policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02005900 int cpu;
5901
Zachary Amsdenc2855452010-09-18 14:38:15 -10005902 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005903 cpu = get_cpu();
5904 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005905 if (policy.cpuinfo.max_freq)
5906 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005907 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005908#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005909 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5910 CPUFREQ_TRANSITION_NOTIFIER);
5911 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005912 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05305913
Thomas Gleixner73c1b412016-12-21 20:19:54 +01005914 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00005915 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005916}
5917
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005918static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5919
Gleb Natapovf5132b02011-11-10 14:57:22 +02005920int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005921{
Alex,Shi086c9852011-10-20 15:34:01 +08005922 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005923}
5924
5925static int kvm_is_user_mode(void)
5926{
5927 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005928
Alex,Shi086c9852011-10-20 15:34:01 +08005929 if (__this_cpu_read(current_vcpu))
5930 user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005931
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005932 return user_mode != 0;
5933}
5934
5935static unsigned long kvm_get_guest_ip(void)
5936{
5937 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005938
Alex,Shi086c9852011-10-20 15:34:01 +08005939 if (__this_cpu_read(current_vcpu))
5940 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005941
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005942 return ip;
5943}
5944
5945static struct perf_guest_info_callbacks kvm_guest_cbs = {
5946 .is_in_guest = kvm_is_in_guest,
5947 .is_user_mode = kvm_is_user_mode,
5948 .get_guest_ip = kvm_get_guest_ip,
5949};
5950
5951void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5952{
Alex,Shi086c9852011-10-20 15:34:01 +08005953 __this_cpu_write(current_vcpu, vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005954}
5955EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5956
5957void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5958{
Alex,Shi086c9852011-10-20 15:34:01 +08005959 __this_cpu_write(current_vcpu, NULL);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005960}
5961EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5962
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005963static void kvm_set_mmio_spte_mask(void)
5964{
5965 u64 mask;
5966 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5967
5968 /*
5969 * Set the reserved bits and the present bit of an paging-structure
5970 * entry to generate page fault with PFER.RSV = 1.
5971 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08005972 /* Mask the reserved physical address bits. */
Tiejun Chend1431482014-09-01 18:44:04 +08005973 mask = rsvd_bits(maxphyaddr, 51);
Xiao Guangrong885032b2013-06-07 16:51:23 +08005974
Xiao Guangrong885032b2013-06-07 16:51:23 +08005975 /* Set the present bit. */
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005976 mask |= 1ull;
5977
5978#ifdef CONFIG_X86_64
5979 /*
5980 * If reserved bit is not supported, clear the present bit to disable
5981 * mmio page fault.
5982 */
5983 if (maxphyaddr == 52)
5984 mask &= ~1ull;
5985#endif
5986
5987 kvm_mmu_set_mmio_spte_mask(mask);
5988}
5989
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005990#ifdef CONFIG_X86_64
5991static void pvclock_gtod_update_fn(struct work_struct *work)
5992{
Marcelo Tosattid8281992012-11-27 23:29:01 -02005993 struct kvm *kvm;
5994
5995 struct kvm_vcpu *vcpu;
5996 int i;
5997
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005998 spin_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005999 list_for_each_entry(kvm, &vm_list, vm_list)
6000 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08006001 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006002 atomic_set(&kvm_guest_has_master_clock, 0);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02006003 spin_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006004}
6005
6006static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
6007
6008/*
6009 * Notification about pvclock gtod data update.
6010 */
6011static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
6012 void *priv)
6013{
6014 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
6015 struct timekeeper *tk = priv;
6016
6017 update_pvclock_gtod(tk);
6018
6019 /* disable master clock if host does not trust, or does not
6020 * use, TSC clocksource
6021 */
6022 if (gtod->clock.vclock_mode != VCLOCK_TSC &&
6023 atomic_read(&kvm_guest_has_master_clock) != 0)
6024 queue_work(system_long_wq, &pvclock_gtod_work);
6025
6026 return 0;
6027}
6028
6029static struct notifier_block pvclock_gtod_notifier = {
6030 .notifier_call = pvclock_gtod_notify,
6031};
6032#endif
6033
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006034int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02006035{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10006036 int r;
Mathias Krause6b61edf2013-06-26 20:36:23 +02006037 struct kvm_x86_ops *ops = opaque;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006038
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006039 if (kvm_x86_ops) {
6040 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006041 r = -EEXIST;
6042 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006043 }
6044
6045 if (!ops->cpu_has_kvm_support()) {
6046 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006047 r = -EOPNOTSUPP;
6048 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006049 }
6050 if (ops->disabled_by_bios()) {
6051 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006052 r = -EOPNOTSUPP;
6053 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006054 }
6055
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006056 r = -ENOMEM;
6057 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
6058 if (!shared_msrs) {
6059 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
6060 goto out;
6061 }
6062
Avi Kivity97db56c2008-01-13 13:23:56 +02006063 r = kvm_mmu_module_init();
6064 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006065 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02006066
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006067 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02006068
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006069 kvm_x86_ops = ops;
Paolo Bonzini920c8372014-03-26 15:54:00 +01006070
Sheng Yang7b523452008-04-25 21:13:50 +08006071 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Bandan Dasffb128c2016-07-12 18:18:49 -04006072 PT_DIRTY_MASK, PT64_NX_MASK, 0,
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006073 PT_PRESENT_MASK, 0);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10006074 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01006075
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08006076 perf_register_guest_info_callbacks(&kvm_guest_cbs);
6077
Borislav Petkovd366bf72016-04-04 22:25:02 +02006078 if (boot_cpu_has(X86_FEATURE_XSAVE))
Dexuan Cui2acf9232010-06-10 11:27:12 +08006079 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
6080
Gleb Natapovc5cc4212012-08-05 15:58:30 +03006081 kvm_lapic_init();
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006082#ifdef CONFIG_X86_64
6083 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
6084#endif
6085
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006086 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006087
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006088out_free_percpu:
6089 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006090out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006091 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02006092}
Hollis Blanchard8776e512007-10-31 17:24:24 -05006093
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006094void kvm_arch_exit(void)
6095{
David Matlackcef84c32016-12-16 14:30:36 -08006096 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08006097 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
6098
Jan Kiszka888d2562009-04-17 19:24:58 +02006099 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
6100 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
6101 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00006102 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02006103#ifdef CONFIG_X86_64
6104 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
6105#endif
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006106 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006107 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02006108 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08006109}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08006110
Joel Schopp5cb56052015-03-02 13:43:31 -06006111int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006112{
6113 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02006114 if (lapic_in_kernel(vcpu)) {
Avi Kivitya4535292008-04-13 17:54:35 +03006115 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006116 return 1;
6117 } else {
6118 vcpu->run->exit_reason = KVM_EXIT_HLT;
6119 return 0;
6120 }
6121}
Joel Schopp5cb56052015-03-02 13:43:31 -06006122EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
6123
6124int kvm_emulate_halt(struct kvm_vcpu *vcpu)
6125{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006126 int ret = kvm_skip_emulated_instruction(vcpu);
6127 /*
6128 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
6129 * KVM_EXIT_DEBUG here.
6130 */
6131 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06006132}
Hollis Blanchard8776e512007-10-31 17:24:24 -05006133EXPORT_SYMBOL_GPL(kvm_emulate_halt);
6134
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006135#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006136static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
6137 unsigned long clock_type)
6138{
6139 struct kvm_clock_pairing clock_pairing;
6140 struct timespec ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01006141 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006142 int ret;
6143
6144 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
6145 return -KVM_EOPNOTSUPP;
6146
6147 if (kvm_get_walltime_and_clockread(&ts, &cycle) == false)
6148 return -KVM_EOPNOTSUPP;
6149
6150 clock_pairing.sec = ts.tv_sec;
6151 clock_pairing.nsec = ts.tv_nsec;
6152 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
6153 clock_pairing.flags = 0;
6154
6155 ret = 0;
6156 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
6157 sizeof(struct kvm_clock_pairing)))
6158 ret = -KVM_EFAULT;
6159
6160 return ret;
6161}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006162#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006163
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306164/*
6165 * kvm_pv_kick_cpu_op: Kick a vcpu.
6166 *
6167 * @apicid - apicid of vcpu to be kicked.
6168 */
6169static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
6170{
Raghavendra K T24d21662013-08-26 14:18:35 +05306171 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306172
Raghavendra K T24d21662013-08-26 14:18:35 +05306173 lapic_irq.shorthand = 0;
6174 lapic_irq.dest_mode = 0;
6175 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06006176 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306177
Raghavendra K T24d21662013-08-26 14:18:35 +05306178 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08006179 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306180}
6181
Andrey Smetanind62caab2015-11-10 15:36:33 +03006182void kvm_vcpu_deactivate_apicv(struct kvm_vcpu *vcpu)
6183{
6184 vcpu->arch.apicv_active = false;
6185 kvm_x86_ops->refresh_apicv_exec_ctrl(vcpu);
6186}
6187
Hollis Blanchard8776e512007-10-31 17:24:24 -05006188int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
6189{
6190 unsigned long nr, a0, a1, a2, a3, ret;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006191 int op_64_bit, r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006192
Kyle Huey6affcbe2016-11-29 12:40:40 -08006193 r = kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06006194
Gleb Natapov55cd8e52010-01-17 15:51:22 +02006195 if (kvm_hv_hypercall_enabled(vcpu->kvm))
6196 return kvm_hv_hypercall(vcpu);
6197
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006198 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
6199 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
6200 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
6201 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
6202 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006203
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006204 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006205
Nadav Amita449c7a2014-06-18 17:19:24 +03006206 op_64_bit = is_64_bit_mode(vcpu);
6207 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05006208 nr &= 0xFFFFFFFF;
6209 a0 &= 0xFFFFFFFF;
6210 a1 &= 0xFFFFFFFF;
6211 a2 &= 0xFFFFFFFF;
6212 a3 &= 0xFFFFFFFF;
6213 }
6214
Jan Kiszka07708c42009-08-03 18:43:28 +02006215 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
6216 ret = -KVM_EPERM;
6217 goto out;
6218 }
6219
Hollis Blanchard8776e512007-10-31 17:24:24 -05006220 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02006221 case KVM_HC_VAPIC_POLL_IRQ:
6222 ret = 0;
6223 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05306224 case KVM_HC_KICK_CPU:
6225 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
6226 ret = 0;
6227 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006228#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02006229 case KVM_HC_CLOCK_PAIRING:
6230 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
6231 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01006232#endif
Hollis Blanchard8776e512007-10-31 17:24:24 -05006233 default:
6234 ret = -KVM_ENOSYS;
6235 break;
6236 }
Jan Kiszka07708c42009-08-03 18:43:28 +02006237out:
Nadav Amita449c7a2014-06-18 17:19:24 +03006238 if (!op_64_bit)
6239 ret = (u32)ret;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006240 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05306241 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05006242 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05006243}
6244EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
6245
Jan Kiszkab6785de2012-09-20 07:43:17 +02006246static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05006247{
Avi Kivityd6aa1002011-04-20 15:47:13 +03006248 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006249 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006250 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006251
Hollis Blanchard8776e512007-10-31 17:24:24 -05006252 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006253
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01006254 return emulator_write_emulated(ctxt, rip, instruction, 3,
6255 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05006256}
6257
Avi Kivity851ba692009-08-24 11:10:17 +03006258static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006259{
Matt Gingell782d4222015-11-16 15:26:00 -08006260 return vcpu->run->request_interrupt_window &&
6261 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006262}
6263
Avi Kivity851ba692009-08-24 11:10:17 +03006264static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006265{
Avi Kivity851ba692009-08-24 11:10:17 +03006266 struct kvm_run *kvm_run = vcpu->run;
6267
Jan Kiszka91586a32009-10-05 13:07:21 +02006268 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02006269 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006270 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006271 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01006272 kvm_run->ready_for_interrupt_injection =
6273 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08006274 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006275}
6276
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006277static void update_cr8_intercept(struct kvm_vcpu *vcpu)
6278{
6279 int max_irr, tpr;
6280
6281 if (!kvm_x86_ops->update_cr8_intercept)
6282 return;
6283
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006284 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03006285 return;
6286
Andrey Smetanind62caab2015-11-10 15:36:33 +03006287 if (vcpu->arch.apicv_active)
6288 return;
6289
Gleb Natapov8db3baa2009-05-11 13:35:54 +03006290 if (!vcpu->arch.apic->vapic_addr)
6291 max_irr = kvm_lapic_find_highest_irr(vcpu);
6292 else
6293 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006294
6295 if (max_irr != -1)
6296 max_irr >>= 4;
6297
6298 tpr = kvm_lapic_get_cr8(vcpu);
6299
6300 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
6301}
6302
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006303static int inject_pending_event(struct kvm_vcpu *vcpu, bool req_int_win)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006304{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006305 int r;
6306
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006307 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006308 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02006309 trace_kvm_inj_exception(vcpu->arch.exception.nr,
6310 vcpu->arch.exception.has_error_code,
6311 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03006312
6313 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
6314 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
6315 X86_EFLAGS_RF);
6316
Nadav Amit6bdf0662014-09-30 20:49:14 +03006317 if (vcpu->arch.exception.nr == DB_VECTOR &&
6318 (vcpu->arch.dr7 & DR7_GD)) {
6319 vcpu->arch.dr7 &= ~DR7_GD;
6320 kvm_update_dr7(vcpu);
6321 }
6322
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006323 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
6324 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02006325 vcpu->arch.exception.error_code,
6326 vcpu->arch.exception.reinject);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006327 return 0;
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03006328 }
6329
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006330 if (vcpu->arch.nmi_injected) {
6331 kvm_x86_ops->set_nmi(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006332 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006333 }
6334
6335 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006336 kvm_x86_ops->set_irq(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006337 return 0;
6338 }
6339
6340 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6341 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6342 if (r != 0)
6343 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006344 }
6345
6346 /* try to inject new event if pending */
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006347 if (vcpu->arch.smi_pending && !is_smm(vcpu)) {
6348 vcpu->arch.smi_pending = false;
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006349 enter_smm(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006350 } else if (vcpu->arch.nmi_pending && kvm_x86_ops->nmi_allowed(vcpu)) {
Yuki Shibuya321c5652016-03-24 05:17:03 +00006351 --vcpu->arch.nmi_pending;
6352 vcpu->arch.nmi_injected = true;
6353 kvm_x86_ops->set_nmi(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006354 } else if (kvm_cpu_has_injectable_intr(vcpu)) {
Bandan Das9242b5b2014-07-08 00:30:23 -04006355 /*
6356 * Because interrupts can be injected asynchronously, we are
6357 * calling check_nested_events again here to avoid a race condition.
6358 * See https://lkml.org/lkml/2014/7/2/60 for discussion about this
6359 * proposal and current concerns. Perhaps we should be setting
6360 * KVM_REQ_EVENT only on certain events and not unconditionally?
6361 */
6362 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) {
6363 r = kvm_x86_ops->check_nested_events(vcpu, req_int_win);
6364 if (r != 0)
6365 return r;
6366 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006367 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006368 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
6369 false);
6370 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006371 }
6372 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006373
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006374 return 0;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006375}
6376
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006377static void process_nmi(struct kvm_vcpu *vcpu)
6378{
6379 unsigned limit = 2;
6380
6381 /*
6382 * x86 is limited to one NMI running, and one NMI pending after it.
6383 * If an NMI is already in progress, limit further NMIs to just one.
6384 * Otherwise, allow two (and we'll inject the first one immediately).
6385 */
6386 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
6387 limit = 1;
6388
6389 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
6390 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
6391 kvm_make_request(KVM_REQ_EVENT, vcpu);
6392}
6393
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006394#define put_smstate(type, buf, offset, val) \
6395 *(type *)((buf) + (offset) - 0x7e00) = val
6396
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006397static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006398{
6399 u32 flags = 0;
6400 flags |= seg->g << 23;
6401 flags |= seg->db << 22;
6402 flags |= seg->l << 21;
6403 flags |= seg->avl << 20;
6404 flags |= seg->present << 15;
6405 flags |= seg->dpl << 13;
6406 flags |= seg->s << 12;
6407 flags |= seg->type << 8;
6408 return flags;
6409}
6410
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006411static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006412{
6413 struct kvm_segment seg;
6414 int offset;
6415
6416 kvm_get_segment(vcpu, &seg, n);
6417 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
6418
6419 if (n < 3)
6420 offset = 0x7f84 + n * 12;
6421 else
6422 offset = 0x7f2c + (n - 3) * 12;
6423
6424 put_smstate(u32, buf, offset + 8, seg.base);
6425 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006426 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006427}
6428
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006429#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006430static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006431{
6432 struct kvm_segment seg;
6433 int offset;
6434 u16 flags;
6435
6436 kvm_get_segment(vcpu, &seg, n);
6437 offset = 0x7e00 + n * 16;
6438
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006439 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006440 put_smstate(u16, buf, offset, seg.selector);
6441 put_smstate(u16, buf, offset + 2, flags);
6442 put_smstate(u32, buf, offset + 4, seg.limit);
6443 put_smstate(u64, buf, offset + 8, seg.base);
6444}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06006445#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006446
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006447static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006448{
6449 struct desc_ptr dt;
6450 struct kvm_segment seg;
6451 unsigned long val;
6452 int i;
6453
6454 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
6455 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
6456 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
6457 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
6458
6459 for (i = 0; i < 8; i++)
6460 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
6461
6462 kvm_get_dr(vcpu, 6, &val);
6463 put_smstate(u32, buf, 0x7fcc, (u32)val);
6464 kvm_get_dr(vcpu, 7, &val);
6465 put_smstate(u32, buf, 0x7fc8, (u32)val);
6466
6467 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6468 put_smstate(u32, buf, 0x7fc4, seg.selector);
6469 put_smstate(u32, buf, 0x7f64, seg.base);
6470 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006471 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006472
6473 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6474 put_smstate(u32, buf, 0x7fc0, seg.selector);
6475 put_smstate(u32, buf, 0x7f80, seg.base);
6476 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006477 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006478
6479 kvm_x86_ops->get_gdt(vcpu, &dt);
6480 put_smstate(u32, buf, 0x7f74, dt.address);
6481 put_smstate(u32, buf, 0x7f70, dt.size);
6482
6483 kvm_x86_ops->get_idt(vcpu, &dt);
6484 put_smstate(u32, buf, 0x7f58, dt.address);
6485 put_smstate(u32, buf, 0x7f54, dt.size);
6486
6487 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006488 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006489
6490 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
6491
6492 /* revision id */
6493 put_smstate(u32, buf, 0x7efc, 0x00020000);
6494 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
6495}
6496
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006497static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006498{
6499#ifdef CONFIG_X86_64
6500 struct desc_ptr dt;
6501 struct kvm_segment seg;
6502 unsigned long val;
6503 int i;
6504
6505 for (i = 0; i < 16; i++)
6506 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
6507
6508 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
6509 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
6510
6511 kvm_get_dr(vcpu, 6, &val);
6512 put_smstate(u64, buf, 0x7f68, val);
6513 kvm_get_dr(vcpu, 7, &val);
6514 put_smstate(u64, buf, 0x7f60, val);
6515
6516 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
6517 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
6518 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
6519
6520 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
6521
6522 /* revision id */
6523 put_smstate(u32, buf, 0x7efc, 0x00020064);
6524
6525 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
6526
6527 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
6528 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006529 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006530 put_smstate(u32, buf, 0x7e94, seg.limit);
6531 put_smstate(u64, buf, 0x7e98, seg.base);
6532
6533 kvm_x86_ops->get_idt(vcpu, &dt);
6534 put_smstate(u32, buf, 0x7e84, dt.size);
6535 put_smstate(u64, buf, 0x7e88, dt.address);
6536
6537 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
6538 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006539 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006540 put_smstate(u32, buf, 0x7e74, seg.limit);
6541 put_smstate(u64, buf, 0x7e78, seg.base);
6542
6543 kvm_x86_ops->get_gdt(vcpu, &dt);
6544 put_smstate(u32, buf, 0x7e64, dt.size);
6545 put_smstate(u64, buf, 0x7e68, dt.address);
6546
6547 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006548 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006549#else
6550 WARN_ON_ONCE(1);
6551#endif
6552}
6553
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006554static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02006555{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006556 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02006557 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006558 char buf[512];
6559 u32 cr0;
6560
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006561 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
6562 vcpu->arch.hflags |= HF_SMM_MASK;
6563 memset(buf, 0, 512);
6564 if (guest_cpuid_has_longmode(vcpu))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006565 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006566 else
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006567 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006568
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006569 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006570
6571 if (kvm_x86_ops->get_nmi_mask(vcpu))
6572 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
6573 else
6574 kvm_x86_ops->set_nmi_mask(vcpu, true);
6575
6576 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
6577 kvm_rip_write(vcpu, 0x8000);
6578
6579 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
6580 kvm_x86_ops->set_cr0(vcpu, cr0);
6581 vcpu->arch.cr0 = cr0;
6582
6583 kvm_x86_ops->set_cr4(vcpu, 0);
6584
Paolo Bonzini18c36262015-08-07 12:27:54 +02006585 /* Undocumented: IDT limit is set to zero on entry to SMM. */
6586 dt.address = dt.size = 0;
6587 kvm_x86_ops->set_idt(vcpu, &dt);
6588
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006589 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
6590
6591 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
6592 cs.base = vcpu->arch.smbase;
6593
6594 ds.selector = 0;
6595 ds.base = 0;
6596
6597 cs.limit = ds.limit = 0xffffffff;
6598 cs.type = ds.type = 0x3;
6599 cs.dpl = ds.dpl = 0;
6600 cs.db = ds.db = 0;
6601 cs.s = ds.s = 1;
6602 cs.l = ds.l = 0;
6603 cs.g = ds.g = 1;
6604 cs.avl = ds.avl = 0;
6605 cs.present = ds.present = 1;
6606 cs.unusable = ds.unusable = 0;
6607 cs.padding = ds.padding = 0;
6608
6609 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
6610 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
6611 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
6612 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
6613 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
6614 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
6615
6616 if (guest_cpuid_has_longmode(vcpu))
6617 kvm_x86_ops->set_efer(vcpu, 0);
6618
6619 kvm_update_cpuid(vcpu);
6620 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006621}
6622
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02006623static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006624{
6625 vcpu->arch.smi_pending = true;
6626 kvm_make_request(KVM_REQ_EVENT, vcpu);
6627}
6628
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01006629void kvm_make_scan_ioapic_request(struct kvm *kvm)
6630{
6631 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
6632}
6633
Yang Zhang3d81bc72013-04-11 19:25:13 +08006634static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006635{
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006636 u64 eoi_exit_bitmap[4];
6637
Yang Zhang3d81bc72013-04-11 19:25:13 +08006638 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
6639 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006640
Andrey Smetanin63086302015-11-10 15:36:32 +03006641 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006642
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07006643 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03006644 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006645 else {
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006646 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
Andrey Smetanind62caab2015-11-10 15:36:33 +03006647 kvm_x86_ops->sync_pir_to_irr(vcpu);
Andrey Smetanin63086302015-11-10 15:36:32 +03006648 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02006649 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006650 bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors,
6651 vcpu_to_synic(vcpu)->vec_bitmap, 256);
6652 kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006653}
6654
Radim Krčmářa70656b2014-09-18 12:38:36 -04006655static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu)
6656{
6657 ++vcpu->stat.tlb_flush;
6658 kvm_x86_ops->tlb_flush(vcpu);
6659}
6660
Tang Chen4256f432014-09-24 15:57:54 +08006661void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
6662{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006663 struct page *page = NULL;
6664
Paolo Bonzini35754c92015-07-29 12:05:37 +02006665 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02006666 return;
6667
Tang Chen4256f432014-09-24 15:57:54 +08006668 if (!kvm_x86_ops->set_apic_access_page_addr)
6669 return;
6670
Tang Chenc24ae0d2014-09-24 15:57:58 +08006671 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Andrea Arcangelie8fd5e92015-05-08 14:32:56 +02006672 if (is_error_page(page))
6673 return;
Tang Chenc24ae0d2014-09-24 15:57:58 +08006674 kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page));
6675
6676 /*
6677 * Do not pin apic access page in memory, the MMU notifier
6678 * will call us again if it is migrated or swapped out.
6679 */
6680 put_page(page);
Tang Chen4256f432014-09-24 15:57:54 +08006681}
6682EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page);
6683
Tang Chenfe71557a2014-09-24 15:57:57 +08006684void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
6685 unsigned long address)
6686{
Tang Chenc24ae0d2014-09-24 15:57:58 +08006687 /*
6688 * The physical address of apic access page is stored in the VMCS.
6689 * Update it when it becomes invalid.
6690 */
6691 if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT))
6692 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
Tang Chenfe71557a2014-09-24 15:57:57 +08006693}
6694
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006695/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01006696 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09006697 * exiting to the userspace. Otherwise, the value will be returned to the
6698 * userspace.
6699 */
Avi Kivity851ba692009-08-24 11:10:17 +03006700static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006701{
6702 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08006703 bool req_int_win =
6704 dm_request_for_irq_injection(vcpu) &&
6705 kvm_cpu_accept_dm_intr(vcpu);
6706
Jan Kiszka730dca42013-04-28 10:50:52 +02006707 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006708
Avi Kivity3e007502010-06-23 14:26:18 +03006709 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03006710 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05006711 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006712 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03006713 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006714 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
6715 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03006716 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
6717 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10006718 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
6719 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10006720 if (unlikely(r))
6721 goto out;
6722 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006723 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03006724 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006725 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Radim Krčmářa70656b2014-09-18 12:38:36 -04006726 kvm_vcpu_flush_tlb(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03006727 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006728 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02006729 r = 0;
6730 goto out;
6731 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03006732 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03006733 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01006734 r = 0;
6735 goto out;
6736 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006737 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
6738 /* Page is swapped out. Do synthetic halt */
6739 vcpu->arch.apf.halted = true;
6740 r = 1;
6741 goto out;
6742 }
Glauber Costac9aaa892011-07-11 15:28:14 -04006743 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
6744 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006745 if (kvm_check_request(KVM_REQ_SMI, vcpu))
6746 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006747 if (kvm_check_request(KVM_REQ_NMI, vcpu))
6748 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006749 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006750 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006751 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02006752 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07006753 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
6754 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
6755 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03006756 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07006757 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
6758 vcpu->run->eoi.vector =
6759 vcpu->arch.pending_ioapic_eoi;
6760 r = 0;
6761 goto out;
6762 }
6763 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08006764 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
6765 vcpu_scan_ioapic(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08006766 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
6767 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03006768 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
6769 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6770 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
6771 r = 0;
6772 goto out;
6773 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03006774 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
6775 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
6776 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
6777 r = 0;
6778 goto out;
6779 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03006780 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
6781 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
6782 vcpu->run->hyperv = vcpu->arch.hyperv.exit;
6783 r = 0;
6784 goto out;
6785 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03006786
6787 /*
6788 * KVM_REQ_HV_STIMER has to be processed after
6789 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
6790 * depend on the guest clock being up-to-date
6791 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03006792 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
6793 kvm_hv_process_stimers(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02006794 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006795
Avi Kivityb463a6f2010-07-20 15:06:17 +03006796 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01006797 ++vcpu->stat.req_event;
Jan Kiszka66450a22013-03-13 12:42:34 +01006798 kvm_apic_accept_events(vcpu);
6799 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
6800 r = 1;
6801 goto out;
6802 }
6803
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006804 if (inject_pending_event(vcpu, req_int_win) != 0)
6805 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006806 else {
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006807 /* Enable NMI/IRQ window open exits if needed.
6808 *
6809 * SMIs have two cases: 1) they can be nested, and
6810 * then there is nothing to do here because RSM will
6811 * cause a vmexit anyway; 2) or the SMI can be pending
6812 * because inject_pending_event has completed the
6813 * injection of an IRQ or NMI from the previous vmexit,
6814 * and then we request an immediate exit to inject the SMI.
6815 */
6816 if (vcpu->arch.smi_pending && !is_smm(vcpu))
6817 req_immediate_exit = true;
Yuki Shibuya321c5652016-03-24 05:17:03 +00006818 if (vcpu->arch.nmi_pending)
6819 kvm_x86_ops->enable_nmi_window(vcpu);
6820 if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win)
6821 kvm_x86_ops->enable_irq_window(vcpu);
6822 }
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03006823
Avi Kivity3842d132010-07-27 12:30:24 +03006824 if (kvm_lapic_enabled(vcpu)) {
6825 update_cr8_intercept(vcpu);
6826 kvm_lapic_sync_to_vapic(vcpu);
6827 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006828 }
Avi Kivityb93463a2007-10-25 16:52:32 +02006829
Avi Kivityd8368af2012-05-14 18:07:56 +03006830 r = kvm_mmu_reload(vcpu);
6831 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006832 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03006833 }
6834
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006835 preempt_disable();
6836
6837 kvm_x86_ops->prepare_guest_switch(vcpu);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006838 kvm_load_guest_fpu(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006839
6840 /*
6841 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
6842 * IPI are then delayed after guest entry, which ensures that they
6843 * result in virtual interrupt delivery.
6844 */
6845 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006846 vcpu->mode = IN_GUEST_MODE;
6847
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006848 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6849
Lan Tianyu0f127d12016-03-13 11:10:29 +08006850 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006851 * 1) We should set ->mode before checking ->requests. Please see
6852 * the comment in kvm_make_all_cpus_request.
6853 *
6854 * 2) For APICv, we should set ->mode before checking PIR.ON. This
6855 * pairs with the memory barrier implicit in pi_test_and_set_on
6856 * (see vmx_deliver_posted_interrupt).
6857 *
6858 * 3) This also orders the write to mode from any reads to the page
6859 * tables done while the VCPU is running. Please see the comment
6860 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006861 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006862 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006863
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006864 /*
6865 * This handles the case where a posted interrupt was
6866 * notified with kvm_vcpu_kick.
6867 */
6868 if (kvm_lapic_enabled(vcpu)) {
6869 if (kvm_x86_ops->sync_pir_to_irr && vcpu->arch.apicv_active)
6870 kvm_x86_ops->sync_pir_to_irr(vcpu);
6871 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006872
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006873 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006874 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006875 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006876 smp_wmb();
6877 local_irq_enable();
6878 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02006879 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006880 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006881 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006882 }
6883
David Matlackfc5b7f32016-03-30 12:24:47 -07006884 kvm_load_guest_xcr0(vcpu);
6885
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006886 if (req_immediate_exit) {
6887 kvm_make_request(KVM_REQ_EVENT, vcpu);
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006888 smp_send_reschedule(vcpu->cpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006889 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03006890
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01006891 trace_kvm_entry(vcpu->vcpu_id);
6892 wait_lapic_expire(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02006893 guest_enter_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006894
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006895 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006896 set_debugreg(0, 7);
6897 set_debugreg(vcpu->arch.eff_db[0], 0);
6898 set_debugreg(vcpu->arch.eff_db[1], 1);
6899 set_debugreg(vcpu->arch.eff_db[2], 2);
6900 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006901 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03006902 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006903 }
6904
Avi Kivity851ba692009-08-24 11:10:17 +03006905 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006906
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006907 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006908 * Do this here before restoring debug registers on the host. And
6909 * since we do this before handling the vmexit, a DR access vmexit
6910 * can (a) read the correct value of the debug registers, (b) set
6911 * KVM_DEBUGREG_WONT_EXIT again.
6912 */
6913 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006914 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
6915 kvm_x86_ops->sync_dirty_debug_regs(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01006916 kvm_update_dr0123(vcpu);
6917 kvm_update_dr6(vcpu);
6918 kvm_update_dr7(vcpu);
6919 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01006920 }
6921
6922 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006923 * If the guest has used debug registers, at least dr7
6924 * will be disabled while returning to the host.
6925 * If we don't have active breakpoints in the host, we don't
6926 * care about the messed up debug address registers. But if
6927 * we have some of them active, restore the old state.
6928 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01006929 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006930 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006931
Haozhong Zhang4ba76532015-10-20 15:39:07 +08006932 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10006933
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006934 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03006935 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08006936
David Matlackfc5b7f32016-03-30 12:24:47 -07006937 kvm_put_guest_xcr0(vcpu);
6938
Yang Zhanga547c6d2013-04-11 19:25:10 +08006939 kvm_x86_ops->handle_external_intr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006940
6941 ++vcpu->stat.exits;
6942
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006943 guest_exit_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006944
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006945 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006946 preempt_enable();
6947
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006948 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006949
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006950 /*
6951 * Profile KVM exit RIPs:
6952 */
6953 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006954 unsigned long rip = kvm_rip_read(vcpu);
6955 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006956 }
6957
Zachary Amsdencc578282012-02-03 15:43:50 -02006958 if (unlikely(vcpu->arch.tsc_always_catchup))
6959 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02006960
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03006961 if (vcpu->arch.apic_attention)
6962 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02006963
Avi Kivity851ba692009-08-24 11:10:17 +03006964 r = kvm_x86_ops->handle_exit(vcpu);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03006965 return r;
6966
6967cancel_injection:
6968 kvm_x86_ops->cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03006969 if (unlikely(vcpu->arch.apic_attention))
6970 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006971out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03006972 return r;
6973}
6974
Paolo Bonzini362c6982015-02-06 12:48:04 +01006975static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
6976{
Feng Wubf9f6ac2015-09-18 22:29:55 +08006977 if (!kvm_arch_vcpu_runnable(vcpu) &&
6978 (!kvm_x86_ops->pre_block || kvm_x86_ops->pre_block(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006979 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
6980 kvm_vcpu_block(vcpu);
6981 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08006982
6983 if (kvm_x86_ops->post_block)
6984 kvm_x86_ops->post_block(vcpu);
6985
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01006986 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
6987 return 1;
6988 }
Gleb Natapov09cec752009-03-23 15:11:44 +02006989
Paolo Bonzini362c6982015-02-06 12:48:04 +01006990 kvm_apic_accept_events(vcpu);
6991 switch(vcpu->arch.mp_state) {
6992 case KVM_MP_STATE_HALTED:
6993 vcpu->arch.pv.pv_unhalted = false;
6994 vcpu->arch.mp_state =
6995 KVM_MP_STATE_RUNNABLE;
6996 case KVM_MP_STATE_RUNNABLE:
6997 vcpu->arch.apf.halted = false;
6998 break;
6999 case KVM_MP_STATE_INIT_RECEIVED:
7000 break;
7001 default:
7002 return -EINTR;
7003 break;
7004 }
7005 return 1;
7006}
7007
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02007008static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
7009{
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01007010 if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events)
7011 kvm_x86_ops->check_nested_events(vcpu, false);
7012
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02007013 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
7014 !vcpu->arch.apf.halted);
7015}
7016
Paolo Bonzini362c6982015-02-06 12:48:04 +01007017static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03007018{
7019 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007020 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03007021
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007022 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007023
Paolo Bonzini362c6982015-02-06 12:48:04 +01007024 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02007025 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03007026 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007027 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01007028 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007029 }
7030
Gleb Natapov09cec752009-03-23 15:11:44 +02007031 if (r <= 0)
7032 break;
7033
7034 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
7035 if (kvm_cpu_has_pending_timer(vcpu))
7036 kvm_inject_pending_timer_irqs(vcpu);
7037
Matt Gingell782d4222015-11-16 15:26:00 -08007038 if (dm_request_for_irq_injection(vcpu) &&
7039 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02007040 r = 0;
7041 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02007042 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01007043 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02007044 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02007045
7046 kvm_check_async_pf_completion(vcpu);
7047
Gleb Natapov09cec752009-03-23 15:11:44 +02007048 if (signal_pending(current)) {
7049 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03007050 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02007051 ++vcpu->stat.signal_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01007052 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02007053 }
7054 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007055 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Takuya Yoshikawac08ac062013-12-13 15:07:21 +09007056 cond_resched();
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007057 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007058 }
7059 }
7060
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007061 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007062
7063 return r;
7064}
7065
Gleb Natapov716d51a2012-09-03 15:24:26 +03007066static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
7067{
7068 int r;
7069 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
7070 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
7071 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
7072 if (r != EMULATE_DONE)
7073 return 0;
7074 return 1;
7075}
7076
7077static int complete_emulated_pio(struct kvm_vcpu *vcpu)
7078{
7079 BUG_ON(!vcpu->arch.pio.count);
7080
7081 return complete_emulated_io(vcpu);
7082}
7083
Avi Kivityf78146b2012-04-18 19:22:47 +03007084/*
7085 * Implements the following, as a state machine:
7086 *
7087 * read:
7088 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007089 * for each mmio piece in the fragment
7090 * write gpa, len
7091 * exit
7092 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03007093 * execute insn
7094 *
7095 * write:
7096 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007097 * for each mmio piece in the fragment
7098 * write gpa, len
7099 * copy data
7100 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03007101 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03007102static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02007103{
7104 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03007105 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007106 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02007107
Gleb Natapov716d51a2012-09-03 15:24:26 +03007108 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02007109
Gleb Natapov716d51a2012-09-03 15:24:26 +03007110 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007111 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
7112 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03007113 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007114 memcpy(frag->data, run->mmio.data, len);
7115
7116 if (frag->len <= 8) {
7117 /* Switch to the next fragment. */
7118 frag++;
7119 vcpu->mmio_cur_fragment++;
7120 } else {
7121 /* Go forward to the next mmio piece. */
7122 frag->data += len;
7123 frag->gpa += len;
7124 frag->len -= len;
7125 }
7126
Andrew Honiga08d3b32014-02-27 19:35:14 +01007127 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03007128 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02007129
7130 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02007131 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03007132 return 1;
7133 vcpu->mmio_read_completed = 1;
7134 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02007135 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007136
Gleb Natapov716d51a2012-09-03 15:24:26 +03007137 run->exit_reason = KVM_EXIT_MMIO;
7138 run->mmio.phys_addr = frag->gpa;
7139 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007140 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
7141 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03007142 run->mmio.is_write = vcpu->mmio_is_write;
7143 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
7144 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02007145}
7146
Gleb Natapov716d51a2012-09-03 15:24:26 +03007147
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007148int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
7149{
Ingo Molnarc5bedc62015-04-23 12:49:20 +02007150 struct fpu *fpu = &current->thread.fpu;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007151 int r;
7152 sigset_t sigsaved;
7153
Ingo Molnarc4d72e22015-04-27 07:18:17 +02007154 fpu__activate_curr(fpu);
Avi Kivitye5c30142011-01-11 12:15:54 +02007155
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007156 if (vcpu->sigset_active)
7157 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
7158
Avi Kivityac9f6dc2008-07-06 15:48:31 +03007159 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
7160 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01007161 kvm_apic_accept_events(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03007162 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03007163 r = -EAGAIN;
7164 goto out;
7165 }
7166
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007167 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02007168 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007169 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
7170 r = -EINVAL;
7171 goto out;
7172 }
7173 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007174
Gleb Natapov716d51a2012-09-03 15:24:26 +03007175 if (unlikely(vcpu->arch.complete_userspace_io)) {
7176 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
7177 vcpu->arch.complete_userspace_io = NULL;
7178 r = cui(vcpu);
7179 if (r <= 0)
7180 goto out;
7181 } else
7182 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02007183
Paolo Bonzini460df4c2017-02-08 11:50:15 +01007184 if (kvm_run->immediate_exit)
7185 r = -EINTR;
7186 else
7187 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007188
7189out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03007190 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007191 if (vcpu->sigset_active)
7192 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
7193
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007194 return r;
7195}
7196
7197int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
7198{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007199 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
7200 /*
7201 * We are here if userspace calls get_regs() in the middle of
7202 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08007203 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007204 * that usually, but some bad designed PV devices (vmware
7205 * backdoor interface) need this to work
7206 */
Avi Kivitydd856ef2012-08-27 23:46:17 +03007207 emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007208 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
7209 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007210 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
7211 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
7212 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
7213 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
7214 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
7215 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
7216 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
7217 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007218#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007219 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
7220 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
7221 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
7222 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
7223 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
7224 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
7225 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
7226 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007227#endif
7228
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007229 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02007230 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007231
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007232 return 0;
7233}
7234
7235int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
7236{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007237 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
7238 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
7239
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007240 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
7241 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
7242 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
7243 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
7244 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
7245 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
7246 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
7247 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007248#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007249 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
7250 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
7251 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
7252 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
7253 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
7254 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
7255 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
7256 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007257#endif
7258
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007259 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02007260 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007261
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02007262 vcpu->arch.exception.pending = false;
7263
Avi Kivity3842d132010-07-27 12:30:24 +03007264 kvm_make_request(KVM_REQ_EVENT, vcpu);
7265
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007266 return 0;
7267}
7268
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007269void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
7270{
7271 struct kvm_segment cs;
7272
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007273 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007274 *db = cs.db;
7275 *l = cs.l;
7276}
7277EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
7278
7279int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
7280 struct kvm_sregs *sregs)
7281{
Gleb Natapov89a27f42010-02-16 10:51:48 +02007282 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007283
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007284 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7285 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7286 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7287 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7288 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7289 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007290
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007291 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7292 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007293
7294 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007295 sregs->idt.limit = dt.size;
7296 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007297 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007298 sregs->gdt.limit = dt.size;
7299 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007300
Avi Kivity4d4ec082009-12-29 18:07:30 +02007301 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007302 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007303 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02007304 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007305 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02007306 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007307 sregs->apic_base = kvm_get_apic_base(vcpu);
7308
Gleb Natapov923c61b2009-05-11 13:35:48 +03007309 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007310
Gleb Natapov36752c92009-05-11 13:35:53 +03007311 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03007312 set_bit(vcpu->arch.interrupt.nr,
7313 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03007314
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007315 return 0;
7316}
7317
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007318int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
7319 struct kvm_mp_state *mp_state)
7320{
Jan Kiszka66450a22013-03-13 12:42:34 +01007321 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307322 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
7323 vcpu->arch.pv.pv_unhalted)
7324 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
7325 else
7326 mp_state->mp_state = vcpu->arch.mp_state;
7327
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007328 return 0;
7329}
7330
7331int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
7332 struct kvm_mp_state *mp_state)
7333{
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007334 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01007335 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
7336 return -EINVAL;
7337
David Hildenbrand28bf2882017-03-23 11:46:03 +01007338 /* INITs are latched while in SMM */
7339 if ((is_smm(vcpu) || vcpu->arch.smi_pending) &&
7340 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
7341 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
7342 return -EINVAL;
7343
Jan Kiszka66450a22013-03-13 12:42:34 +01007344 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
7345 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
7346 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
7347 } else
7348 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03007349 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03007350 return 0;
7351}
7352
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007353int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
7354 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007355{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007356 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007357 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007358
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007359 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007360
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007361 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007362 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02007363
Gleb Natapovc6975182010-02-18 12:15:01 +02007364 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03007365 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02007366
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007367 kvm_rip_write(vcpu, ctxt->eip);
7368 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03007369 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03007370 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02007371}
7372EXPORT_SYMBOL_GPL(kvm_task_switch);
7373
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007374int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
7375 struct kvm_sregs *sregs)
7376{
Jan Kiszka58cb6282014-01-24 16:48:44 +01007377 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007378 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007379 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02007380 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007381
Petr Matousek6d1068b2012-11-06 19:24:07 +01007382 if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE))
7383 return -EINVAL;
7384
Gleb Natapov89a27f42010-02-16 10:51:48 +02007385 dt.size = sregs->idt.limit;
7386 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007387 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02007388 dt.size = sregs->gdt.limit;
7389 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007390 kvm_x86_ops->set_gdt(vcpu, &dt);
7391
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007392 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02007393 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02007394 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02007395 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007396
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007397 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007398
Avi Kivityf6801df2010-01-21 15:31:50 +02007399 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007400 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Jan Kiszka58cb6282014-01-24 16:48:44 +01007401 apic_base_msr.data = sregs->apic_base;
7402 apic_base_msr.host_initiated = true;
7403 kvm_set_apic_base(vcpu, &apic_base_msr);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007404
Avi Kivity4d4ec082009-12-29 18:07:30 +02007405 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007406 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00007407 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007408
Avi Kivityfc78f512009-12-07 12:16:48 +02007409 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007410 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Huaitong Hanb9baba82016-03-22 16:51:21 +08007411 if (sregs->cr4 & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +02007412 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007413
7414 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02007415 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02007416 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02007417 mmu_reset_needed = 1;
7418 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08007419 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007420
7421 if (mmu_reset_needed)
7422 kvm_mmu_reset_context(vcpu);
7423
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03007424 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03007425 pending_vec = find_first_bit(
7426 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
7427 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007428 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03007429 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007430 }
7431
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007432 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
7433 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
7434 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
7435 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
7436 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
7437 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007438
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02007439 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
7440 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007441
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03007442 update_cr8_intercept(vcpu);
7443
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007444 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03007445 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007446 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02007447 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03007448 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
7449
Avi Kivity3842d132010-07-27 12:30:24 +03007450 kvm_make_request(KVM_REQ_EVENT, vcpu);
7451
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007452 return 0;
7453}
7454
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007455int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
7456 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007457{
Jan Kiszka355be0b2009-10-03 00:31:21 +02007458 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007459 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007460
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007461 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
7462 r = -EBUSY;
7463 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03007464 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007465 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
7466 kvm_queue_exception(vcpu, DB_VECTOR);
7467 else
7468 kvm_queue_exception(vcpu, BP_VECTOR);
7469 }
7470
Jan Kiszka91586a32009-10-05 13:07:21 +02007471 /*
7472 * Read rflags as long as potentially injected trace flags are still
7473 * filtered out.
7474 */
7475 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007476
7477 vcpu->guest_debug = dbg->control;
7478 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
7479 vcpu->guest_debug = 0;
7480
7481 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007482 for (i = 0; i < KVM_NR_DB_REGS; ++i)
7483 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02007484 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007485 } else {
7486 for (i = 0; i < KVM_NR_DB_REGS; i++)
7487 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007488 }
Jan Kiszkac8639012012-09-21 05:42:55 +02007489 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01007490
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007491 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
7492 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
7493 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007494
Jan Kiszka91586a32009-10-05 13:07:21 +02007495 /*
7496 * Trigger an rflags update that will inject or remove the trace
7497 * flags.
7498 */
7499 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007500
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007501 kvm_x86_ops->update_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02007502
Jan Kiszka4f926bf22009-10-30 12:46:59 +01007503 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007504
Avi Kivity2122ff52010-05-13 11:25:04 +03007505out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007506
7507 return r;
7508}
7509
7510/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08007511 * Translate a guest virtual address to a guest physical address.
7512 */
7513int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
7514 struct kvm_translation *tr)
7515{
7516 unsigned long vaddr = tr->linear_address;
7517 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007518 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007519
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007520 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02007521 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007522 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08007523 tr->physical_address = gpa;
7524 tr->valid = gpa != UNMAPPED_GVA;
7525 tr->writeable = 1;
7526 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08007527
7528 return 0;
7529}
7530
Hollis Blanchardd0752062007-10-31 17:24:25 -05007531int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7532{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007533 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007534 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007535
Hollis Blanchardd0752062007-10-31 17:24:25 -05007536 memcpy(fpu->fpr, fxsave->st_space, 128);
7537 fpu->fcw = fxsave->cwd;
7538 fpu->fsw = fxsave->swd;
7539 fpu->ftwx = fxsave->twd;
7540 fpu->last_opcode = fxsave->fop;
7541 fpu->last_ip = fxsave->rip;
7542 fpu->last_dp = fxsave->rdp;
7543 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
7544
Hollis Blanchardd0752062007-10-31 17:24:25 -05007545 return 0;
7546}
7547
7548int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
7549{
Ingo Molnarc47ada32015-04-30 17:15:32 +02007550 struct fxregs_state *fxsave =
Ingo Molnar7366ed72015-04-27 04:19:39 +02007551 &vcpu->arch.guest_fpu.state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007552
Hollis Blanchardd0752062007-10-31 17:24:25 -05007553 memcpy(fxsave->st_space, fpu->fpr, 128);
7554 fxsave->cwd = fpu->fcw;
7555 fxsave->swd = fpu->fsw;
7556 fxsave->twd = fpu->ftwx;
7557 fxsave->fop = fpu->last_opcode;
7558 fxsave->rip = fpu->last_ip;
7559 fxsave->rdp = fpu->last_dp;
7560 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
7561
Hollis Blanchardd0752062007-10-31 17:24:25 -05007562 return 0;
7563}
7564
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007565static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007566{
Ingo Molnarbf935b02015-04-30 10:23:42 +02007567 fpstate_init(&vcpu->arch.guest_fpu.state);
Borislav Petkov782511b2016-04-04 22:25:03 +02007568 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar7366ed72015-04-27 04:19:39 +02007569 vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01007570 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007571
Dexuan Cui2acf9232010-06-10 11:27:12 +08007572 /*
7573 * Ensure guest xcr0 is valid for loading
7574 */
Dave Hansend91cab72015-09-02 16:31:26 -07007575 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +08007576
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007577 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05007578}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007579
7580void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
7581{
Avi Kivity2608d7a2010-01-21 15:31:45 +02007582 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007583 return;
7584
Dexuan Cui2acf9232010-06-10 11:27:12 +08007585 /*
7586 * Restore all possible states in the guest,
7587 * and assume host would use all available bits.
7588 * Guest xcr0 would be loaded later.
7589 */
Hollis Blanchardd0752062007-10-31 17:24:25 -05007590 vcpu->guest_fpu_loaded = 1;
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007591 __kernel_fpu_begin();
Ingo Molnar003e2e82015-05-25 11:59:35 +02007592 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state);
Avi Kivity0c048512010-01-21 15:31:52 +02007593 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007594}
Hollis Blanchardd0752062007-10-31 17:24:25 -05007595
7596void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
7597{
Rik van Riel3d42de22016-10-04 20:34:35 -04007598 if (!vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05007599 return;
7600
7601 vcpu->guest_fpu_loaded = 0;
Ingo Molnar4f836342015-04-27 02:53:16 +02007602 copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07007603 __kernel_fpu_end();
Avi Kivityf096ed82007-11-18 13:54:33 +02007604 ++vcpu->stat.fpu_reload;
Avi Kivity0c048512010-01-21 15:31:52 +02007605 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05007606}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007607
7608void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
7609{
Ido Yarivbd768e12016-10-21 12:39:57 -04007610 void *wbinvd_dirty_mask = vcpu->arch.wbinvd_dirty_mask;
7611
Glauber Costa12f9a482011-02-01 14:16:40 -05007612 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01007613
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007614 kvm_x86_ops->vcpu_free(vcpu);
Ido Yarivbd768e12016-10-21 12:39:57 -04007615 free_cpumask_var(wbinvd_dirty_mask);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007616}
7617
7618struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
7619 unsigned int id)
7620{
Liang Lic447e762015-05-21 04:41:25 +08007621 struct kvm_vcpu *vcpu;
7622
Zachary Amsden6755bae2010-08-19 22:07:22 -10007623 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
7624 printk_once(KERN_WARNING
7625 "kvm: SMP vm created on host with unstable TSC; "
7626 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08007627
7628 vcpu = kvm_x86_ops->vcpu_create(kvm, id);
7629
Liang Lic447e762015-05-21 04:41:25 +08007630 return vcpu;
Avi Kivity26e52152007-11-20 15:30:24 +02007631}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007632
Avi Kivity26e52152007-11-20 15:30:24 +02007633int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
7634{
7635 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007636
Xiao Guangrong19efffa2015-06-15 16:55:31 +08007637 kvm_vcpu_mtrr_init(vcpu);
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007638 r = vcpu_load(vcpu);
7639 if (r)
7640 return r;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007641 kvm_vcpu_reset(vcpu, false);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02007642 kvm_mmu_setup(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007643 vcpu_put(vcpu);
Avi Kivity26e52152007-11-20 15:30:24 +02007644 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007645}
7646
Dominik Dingel31928aa2014-12-04 15:47:07 +01007647void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007648{
Will Auld8fe8ab42012-11-29 12:42:12 -08007649 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01007650 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007651
Dominik Dingel31928aa2014-12-04 15:47:07 +01007652 if (vcpu_load(vcpu))
7653 return;
Will Auld8fe8ab42012-11-29 12:42:12 -08007654 msr.data = 0x0;
7655 msr.index = MSR_IA32_TSC;
7656 msr.host_initiated = true;
7657 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007658 vcpu_put(vcpu);
7659
Marcelo Tosatti630994b2015-05-12 22:42:04 -03007660 if (!kvmclock_periodic_sync)
7661 return;
7662
Andrew Jones332967a2014-02-28 12:52:55 +01007663 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
7664 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02007665}
7666
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06007667void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007668{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007669 int r;
Gleb Natapov344d9582010-10-14 11:22:50 +02007670 vcpu->arch.apf.msr_val = 0;
7671
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03007672 r = vcpu_load(vcpu);
7673 BUG_ON(r);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007674 kvm_mmu_unload(vcpu);
7675 vcpu_put(vcpu);
7676
7677 kvm_x86_ops->vcpu_free(vcpu);
7678}
7679
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007680void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007681{
Paolo Bonzinie69fab52015-06-04 10:44:44 +02007682 vcpu->arch.hflags = 0;
7683
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007684 vcpu->arch.smi_pending = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007685 atomic_set(&vcpu->arch.nmi_queued, 0);
7686 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007687 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03007688 kvm_clear_interrupt_queue(vcpu);
7689 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02007690
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007691 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03007692 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03007693 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007694 kvm_update_dr6(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007695 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02007696 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007697
Nadav Amit11190222015-04-02 03:10:38 +03007698 vcpu->arch.cr2 = 0;
7699
Avi Kivity3842d132010-07-27 12:30:24 +03007700 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02007701 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04007702 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03007703
Glauber Costa12f9a482011-02-01 14:16:40 -05007704 kvmclock_reset(vcpu);
7705
Gleb Natapovaf585b92010-10-14 11:22:46 +02007706 kvm_clear_async_pf_completion_queue(vcpu);
7707 kvm_async_pf_hash_reset(vcpu);
7708 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007709
Paolo Bonzini64d60672015-05-07 11:36:11 +02007710 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007711 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007712 vcpu->arch.smbase = 0x30000;
7713 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02007714
Julian Stecklina66f7b722012-12-05 15:26:19 +01007715 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
7716 vcpu->arch.regs_avail = ~0;
7717 vcpu->arch.regs_dirty = ~0;
7718
Nadav Amitd28bc9d2015-04-13 14:34:08 +03007719 kvm_x86_ops->vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007720}
7721
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01007722void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01007723{
7724 struct kvm_segment cs;
7725
7726 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
7727 cs.selector = vector << 8;
7728 cs.base = vector << 12;
7729 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
7730 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007731}
7732
Radim Krčmář13a34e02014-08-28 15:13:03 +02007733int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007734{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10007735 struct kvm *kvm;
7736 struct kvm_vcpu *vcpu;
7737 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007738 int ret;
7739 u64 local_tsc;
7740 u64 max_tsc = 0;
7741 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03007742
7743 kvm_shared_msr_cpu_online();
Radim Krčmář13a34e02014-08-28 15:13:03 +02007744 ret = kvm_x86_ops->hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007745 if (ret != 0)
7746 return ret;
7747
Andy Lutomirski4ea16362015-06-25 18:44:07 +02007748 local_tsc = rdtsc();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007749 stable = !check_tsc_unstable();
7750 list_for_each_entry(kvm, &vm_list, vm_list) {
7751 kvm_for_each_vcpu(i, vcpu, kvm) {
7752 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007753 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007754 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
7755 backwards_tsc = true;
7756 if (vcpu->arch.last_host_tsc > max_tsc)
7757 max_tsc = vcpu->arch.last_host_tsc;
7758 }
7759 }
7760 }
7761
7762 /*
7763 * Sometimes, even reliable TSCs go backwards. This happens on
7764 * platforms that reset TSC during suspend or hibernate actions, but
7765 * maintain synchronization. We must compensate. Fortunately, we can
7766 * detect that condition here, which happens early in CPU bringup,
7767 * before any KVM threads can be running. Unfortunately, we can't
7768 * bring the TSCs fully up to date with real time, as we aren't yet far
7769 * enough into CPU bringup that we know how much real time has actually
Paolo Bonzini108b2492016-09-01 14:21:03 +02007770 * elapsed; our helper function, ktime_get_boot_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007771 * variables that haven't been updated yet.
7772 *
7773 * So we simply find the maximum observed TSC above, then record the
7774 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
7775 * the adjustment will be applied. Note that we accumulate
7776 * adjustments, in case multiple suspend cycles happen before some VCPU
7777 * gets a chance to run again. In the event that no KVM threads get a
7778 * chance to run, we will miss the entire elapsed period, as we'll have
7779 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
7780 * loose cycle time. This isn't too big a deal, since the loss will be
7781 * uniform across all VCPUs (not to mention the scenario is extremely
7782 * unlikely). It is possible that a second hibernate recovery happens
7783 * much faster than a first, causing the observed TSC here to be
7784 * smaller; this would require additional padding adjustment, which is
7785 * why we set last_host_tsc to the local tsc observed here.
7786 *
7787 * N.B. - this code below runs only on platforms with reliable TSC,
7788 * as that is the only way backwards_tsc is set above. Also note
7789 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
7790 * have the same delta_cyc adjustment applied if backwards_tsc
7791 * is detected. Note further, this adjustment is only done once,
7792 * as we reset last_host_tsc on all VCPUs to stop this from being
7793 * called multiple times (one for each physical CPU bringup).
7794 *
Guo Chao4a969982012-06-28 15:17:27 +08007795 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007796 * will be compensated by the logic in vcpu_load, which sets the TSC to
7797 * catchup mode. This will catchup all VCPUs to real time, but cannot
7798 * guarantee that they stay in perfect synchronization.
7799 */
7800 if (backwards_tsc) {
7801 u64 delta_cyc = max_tsc - local_tsc;
Marcelo Tosatti16a96022014-05-14 12:43:24 -03007802 backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007803 list_for_each_entry(kvm, &vm_list, vm_list) {
7804 kvm_for_each_vcpu(i, vcpu, kvm) {
7805 vcpu->arch.tsc_offset_adjustment += delta_cyc;
7806 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007807 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02007808 }
7809
7810 /*
7811 * We have to disable TSC offset matching.. if you were
7812 * booting a VM while issuing an S4 host suspend....
7813 * you may have some problem. Solving this issue is
7814 * left as an exercise to the reader.
7815 */
7816 kvm->arch.last_tsc_nsec = 0;
7817 kvm->arch.last_tsc_write = 0;
7818 }
7819
7820 }
7821 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007822}
7823
Radim Krčmář13a34e02014-08-28 15:13:03 +02007824void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007825{
Radim Krčmář13a34e02014-08-28 15:13:03 +02007826 kvm_x86_ops->hardware_disable();
7827 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007828}
7829
7830int kvm_arch_hardware_setup(void)
7831{
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007832 int r;
7833
7834 r = kvm_x86_ops->hardware_setup();
7835 if (r != 0)
7836 return r;
7837
Haozhong Zhang35181e82015-10-20 15:39:03 +08007838 if (kvm_has_tsc_control) {
7839 /*
7840 * Make sure the user can only configure tsc_khz values that
7841 * fit into a signed integer.
7842 * A min value is not calculated needed because it will always
7843 * be 1 on all machines.
7844 */
7845 u64 max = min(0x7fffffffULL,
7846 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
7847 kvm_max_guest_tsc_khz = max;
7848
Haozhong Zhangad7218832015-10-20 15:39:02 +08007849 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +08007850 }
Haozhong Zhangad7218832015-10-20 15:39:02 +08007851
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03007852 kvm_init_msr_list();
7853 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007854}
7855
7856void kvm_arch_hardware_unsetup(void)
7857{
7858 kvm_x86_ops->hardware_unsetup();
7859}
7860
7861void kvm_arch_check_processor_compat(void *rtn)
7862{
7863 kvm_x86_ops->check_processor_compatibility(rtn);
7864}
7865
Paolo Bonzinid71ba782015-07-29 11:56:48 +02007866bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
7867{
7868 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
7869}
7870EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
7871
7872bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
7873{
7874 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
7875}
7876
Gleb Natapov54e98182012-08-05 15:58:32 +03007877struct static_key kvm_no_apic_vcpu __read_mostly;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007878EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +03007879
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007880int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
7881{
7882 struct page *page;
7883 struct kvm *kvm;
7884 int r;
7885
7886 BUG_ON(vcpu->kvm == NULL);
7887 kvm = vcpu->kvm;
7888
Andrey Smetanind62caab2015-11-10 15:36:33 +03007889 vcpu->arch.apicv_active = kvm_x86_ops->get_enable_apicv();
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307890 vcpu->arch.pv.pv_unhalted = false;
Avi Kivity9aabc88f2010-07-29 15:11:50 +03007891 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Nadav Amit58d269d2015-04-02 03:10:36 +03007892 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03007893 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007894 else
Avi Kivitya4535292008-04-13 17:54:35 +03007895 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007896
7897 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
7898 if (!page) {
7899 r = -ENOMEM;
7900 goto fail;
7901 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007902 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007903
Zachary Amsdencc578282012-02-03 15:43:50 -02007904 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10007905
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007906 r = kvm_mmu_create(vcpu);
7907 if (r < 0)
7908 goto fail_free_pio_data;
7909
7910 if (irqchip_in_kernel(kvm)) {
7911 r = kvm_create_lapic(vcpu);
7912 if (r < 0)
7913 goto fail_mmu_destroy;
Gleb Natapov54e98182012-08-05 15:58:32 +03007914 } else
7915 static_key_slow_inc(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007916
Huang Ying890ca9a2009-05-11 16:48:15 +08007917 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
7918 GFP_KERNEL);
7919 if (!vcpu->arch.mce_banks) {
7920 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08007921 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08007922 }
7923 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
7924
Wei Yongjunf1797352013-04-18 07:41:00 +08007925 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) {
7926 r = -ENOMEM;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007927 goto fail_free_mce_banks;
Wei Yongjunf1797352013-04-18 07:41:00 +08007928 }
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007929
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007930 fx_init(vcpu);
Julian Stecklina66f7b722012-12-05 15:26:19 +01007931
Will Auldba904632012-11-29 12:42:50 -08007932 vcpu->arch.ia32_tsc_adjust_msr = 0x0;
Andy Honig0b794592013-02-20 14:48:10 -08007933 vcpu->arch.pv_time_enabled = false;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007934
7935 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +02007936 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
Paolo Bonzinid7876f12013-10-02 16:06:15 +02007937
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +03007938 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
7939
Radim Krčmář74545702015-04-27 15:11:25 +02007940 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
7941
Gleb Natapovaf585b92010-10-14 11:22:46 +02007942 kvm_async_pf_hash_reset(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007943 kvm_pmu_init(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007944
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02007945 vcpu->arch.pending_external_vector = -1;
7946
Andrey Smetanin5c9194122015-11-10 15:36:34 +03007947 kvm_hv_vcpu_init(vcpu);
7948
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007949 return 0;
Ingo Molnar0ee6a512015-04-27 06:58:22 +02007950
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007951fail_free_mce_banks:
7952 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08007953fail_free_lapic:
7954 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007955fail_mmu_destroy:
7956 kvm_mmu_destroy(vcpu);
7957fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007958 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007959fail:
7960 return r;
7961}
7962
7963void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
7964{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007965 int idx;
7966
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03007967 kvm_hv_vcpu_uninit(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02007968 kvm_pmu_destroy(vcpu);
Wei Yongjun36cb93f2010-01-22 14:18:47 +08007969 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007970 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007971 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007972 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02007973 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007974 free_page((unsigned long)vcpu->arch.pio_data);
Paolo Bonzini35754c92015-07-29 12:05:37 +02007975 if (!lapic_in_kernel(vcpu))
Gleb Natapov54e98182012-08-05 15:58:32 +03007976 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08007977}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007978
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007979void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
7980{
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007981 kvm_x86_ops->sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02007982}
7983
Carsten Ottee08b9632012-01-04 10:25:20 +01007984int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007985{
Carsten Ottee08b9632012-01-04 10:25:20 +01007986 if (type)
7987 return -EINVAL;
7988
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01007989 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08007990 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Xiao Guangrong365c8862013-05-31 08:36:29 +08007991 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03007992 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06007993 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007994
Sheng Yang5550af42008-10-15 20:15:06 +08007995 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
7996 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06007997 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
7998 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
7999 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08008000
Jan Kiszka038f8c12011-02-04 10:49:11 +01008001 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03008002 mutex_init(&kvm->arch.apic_map_lock);
Paolo Bonzini3f5ad8b2016-12-12 10:12:53 +01008003 mutex_init(&kvm->arch.hyperv.hv_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008004 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
8005
Paolo Bonzini108b2492016-09-01 14:21:03 +02008006 kvm->arch.kvmclock_offset = -ktime_get_boot_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02008007 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01008008
Andrew Jones7e44e442014-02-28 12:52:54 +01008009 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01008010 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01008011
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08008012 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +08008013 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08008014
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05008015 if (kvm_x86_ops->vm_init)
8016 return kvm_x86_ops->vm_init(kvm);
8017
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01008018 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008019}
8020
8021static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
8022{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03008023 int r;
8024 r = vcpu_load(vcpu);
8025 BUG_ON(r);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008026 kvm_mmu_unload(vcpu);
8027 vcpu_put(vcpu);
8028}
8029
8030static void kvm_free_vcpus(struct kvm *kvm)
8031{
8032 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008033 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008034
8035 /*
8036 * Unpin any mmu pages first.
8037 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02008038 kvm_for_each_vcpu(i, vcpu, kvm) {
8039 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008040 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008041 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008042 kvm_for_each_vcpu(i, vcpu, kvm)
8043 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008044
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008045 mutex_lock(&kvm->lock);
8046 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
8047 kvm->vcpus[i] = NULL;
8048
8049 atomic_set(&kvm->online_vcpus, 0);
8050 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008051}
8052
Sheng Yangad8ba2c2009-01-06 10:03:02 +08008053void kvm_arch_sync_events(struct kvm *kvm)
8054{
Andrew Jones332967a2014-02-28 12:52:55 +01008055 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01008056 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08008057 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08008058}
8059
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008060int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008061{
8062 int i, r;
Paolo Bonzini25188b92015-10-14 15:51:08 +02008063 unsigned long hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008064 struct kvm_memslots *slots = kvm_memslots(kvm);
8065 struct kvm_memory_slot *slot, old;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008066
8067 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008068 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
8069 return -EINVAL;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008070
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008071 slot = id_to_memslot(slots, id);
8072 if (size) {
Paolo Bonzinib21629d2016-06-01 14:09:18 +02008073 if (slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008074 return -EEXIST;
8075
8076 /*
8077 * MAP_SHARED to prevent internal slot pages from being moved
8078 * by fork()/COW.
8079 */
8080 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
8081 MAP_SHARED | MAP_ANONYMOUS, 0);
8082 if (IS_ERR((void *)hva))
8083 return PTR_ERR((void *)hva);
8084 } else {
8085 if (!slot->npages)
8086 return 0;
8087
8088 hva = 0;
8089 }
8090
8091 old = *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008092 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008093 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008094
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008095 m.slot = id | (i << 16);
8096 m.flags = 0;
8097 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008098 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008099 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008100 r = __kvm_set_memory_region(kvm, &m);
8101 if (r < 0)
8102 return r;
8103 }
8104
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02008105 if (!size) {
8106 r = vm_munmap(old.userspace_addr, old.npages * PAGE_SIZE);
8107 WARN_ON(r < 0);
8108 }
8109
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008110 return 0;
8111}
8112EXPORT_SYMBOL_GPL(__x86_set_memory_region);
8113
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008114int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008115{
8116 int r;
8117
8118 mutex_lock(&kvm->slots_lock);
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008119 r = __x86_set_memory_region(kvm, id, gpa, size);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02008120 mutex_unlock(&kvm->slots_lock);
8121
8122 return r;
8123}
8124EXPORT_SYMBOL_GPL(x86_set_memory_region);
8125
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008126void kvm_arch_destroy_vm(struct kvm *kvm)
8127{
Andrew Honig27469d22013-04-18 09:38:14 -07008128 if (current->mm == kvm->mm) {
8129 /*
8130 * Free memory regions allocated on behalf of userspace,
8131 * unless the the memory map has changed due to process exit
8132 * or fd copying.
8133 */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02008134 x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, 0, 0);
8135 x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, 0, 0);
8136 x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
Andrew Honig27469d22013-04-18 09:38:14 -07008137 }
Suravee Suthikulpanit03543132016-05-04 14:09:42 -05008138 if (kvm_x86_ops->vm_destroy)
8139 kvm_x86_ops->vm_destroy(kvm);
Peter Xuc7611592017-03-15 16:01:19 +08008140 kvm_pic_destroy(kvm);
8141 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008142 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +02008143 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +08008144 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +02008145 kvm_page_track_cleanup(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08008146}
Zhang Xiantao0de10342007-11-20 16:25:04 +08008147
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05308148void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008149 struct kvm_memory_slot *dont)
8150{
8151 int i;
8152
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008153 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
8154 if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) {
Thomas Huth548ef282015-02-24 21:29:25 +01008155 kvfree(free->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008156 free->arch.rmap[i] = NULL;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008157 }
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008158 if (i == 0)
8159 continue;
8160
8161 if (!dont || free->arch.lpage_info[i - 1] !=
8162 dont->arch.lpage_info[i - 1]) {
Thomas Huth548ef282015-02-24 21:29:25 +01008163 kvfree(free->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008164 free->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008165 }
8166 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08008167
8168 kvm_page_track_free_memslot(free, dont);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008169}
8170
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05308171int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
8172 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008173{
8174 int i;
8175
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008176 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008177 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008178 unsigned long ugfn;
8179 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008180 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008181
8182 lpages = gfn_to_index(slot->base_gfn + npages - 1,
8183 slot->base_gfn, level) + 1;
8184
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008185 slot->arch.rmap[i] =
8186 kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i]));
8187 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008188 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008189 if (i == 0)
8190 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09008191
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008192 linfo = kvm_kvzalloc(lpages * sizeof(*linfo));
8193 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008194 goto out_free;
8195
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008196 slot->arch.lpage_info[i - 1] = linfo;
8197
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008198 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008199 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008200 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008201 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008202 ugfn = slot->userspace_addr >> PAGE_SHIFT;
8203 /*
8204 * If the gfn and userspace address are not aligned wrt each
8205 * other, or if explicitly asked to, disable large page
8206 * support for this slot
8207 */
8208 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
8209 !kvm_largepages_enabled()) {
8210 unsigned long j;
8211
8212 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08008213 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008214 }
8215 }
8216
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08008217 if (kvm_page_track_create_memslot(slot, npages))
8218 goto out_free;
8219
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008220 return 0;
8221
8222out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008223 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +01008224 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008225 slot->arch.rmap[i] = NULL;
8226 if (i == 0)
8227 continue;
8228
Thomas Huth548ef282015-02-24 21:29:25 +01008229 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09008230 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09008231 }
8232 return -ENOMEM;
8233}
8234
Paolo Bonzini15f46012015-05-17 21:26:08 +02008235void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008236{
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09008237 /*
8238 * memslots->generation has been incremented.
8239 * mmio generation may have reached its maximum value.
8240 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008241 kvm_mmu_invalidate_mmio_sptes(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09008242}
8243
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008244int kvm_arch_prepare_memory_region(struct kvm *kvm,
8245 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008246 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09008247 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +08008248{
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008249 return 0;
8250}
8251
Kai Huang88178fd2015-01-28 10:54:27 +08008252static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
8253 struct kvm_memory_slot *new)
8254{
8255 /* Still write protect RO slot */
8256 if (new->flags & KVM_MEM_READONLY) {
8257 kvm_mmu_slot_remove_write_access(kvm, new);
8258 return;
8259 }
8260
8261 /*
8262 * Call kvm_x86_ops dirty logging hooks when they are valid.
8263 *
8264 * kvm_x86_ops->slot_disable_log_dirty is called when:
8265 *
8266 * - KVM_MR_CREATE with dirty logging is disabled
8267 * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag
8268 *
8269 * The reason is, in case of PML, we need to set D-bit for any slots
8270 * with dirty logging disabled in order to eliminate unnecessary GPA
8271 * logging in PML buffer (and potential PML buffer full VMEXT). This
8272 * guarantees leaving PML enabled during guest's lifetime won't have
8273 * any additonal overhead from PML when guest is running with dirty
8274 * logging disabled for memory slots.
8275 *
8276 * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot
8277 * to dirty logging mode.
8278 *
8279 * If kvm_x86_ops dirty logging hooks are invalid, use write protect.
8280 *
8281 * In case of write protect:
8282 *
8283 * Write protect all pages for dirty logging.
8284 *
8285 * All the sptes including the large sptes which point to this
8286 * slot are set to readonly. We can not create any new large
8287 * spte on this slot until the end of the logging.
8288 *
8289 * See the comments in fast_page_fault().
8290 */
8291 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
8292 if (kvm_x86_ops->slot_enable_log_dirty)
8293 kvm_x86_ops->slot_enable_log_dirty(kvm, new);
8294 else
8295 kvm_mmu_slot_remove_write_access(kvm, new);
8296 } else {
8297 if (kvm_x86_ops->slot_disable_log_dirty)
8298 kvm_x86_ops->slot_disable_log_dirty(kvm, new);
8299 }
8300}
8301
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008302void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02008303 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008304 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008305 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008306 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008307{
Takuya Yoshikawa84826442013-02-27 19:45:25 +09008308 int nr_mmu_pages = 0;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02008309
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008310 if (!kvm->arch.n_requested_mmu_pages)
8311 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008312
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08008313 if (nr_mmu_pages)
8314 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Kai Huang1c91cad42015-01-28 10:54:26 +08008315
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008316 /*
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08008317 * Dirty logging tracks sptes in 4k granularity, meaning that large
8318 * sptes have to be split. If live migration is successful, the guest
8319 * in the source machine will be destroyed and large sptes will be
8320 * created in the destination. However, if the guest continues to run
8321 * in the source machine (for example if live migration fails), small
8322 * sptes will remain around and cause bad performance.
8323 *
8324 * Scan sptes if dirty logging has been stopped, dropping those
8325 * which can be collapsed into a single large-page spte. Later
8326 * page faults will create the large-page sptes.
8327 */
8328 if ((change != KVM_MR_DELETE) &&
8329 (old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
8330 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
8331 kvm_mmu_zap_collapsible_sptes(kvm, new);
8332
8333 /*
Kai Huang88178fd2015-01-28 10:54:27 +08008334 * Set up write protection and/or dirty logging for the new slot.
Xiao Guangrongc126d942014-04-17 17:06:14 +08008335 *
Kai Huang88178fd2015-01-28 10:54:27 +08008336 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have
8337 * been zapped so no dirty logging staff is needed for old slot. For
8338 * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the
8339 * new and it's also covered when dealing with the new slot.
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008340 *
8341 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09008342 */
Kai Huang88178fd2015-01-28 10:54:27 +08008343 if (change != KVM_MR_DELETE)
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02008344 kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new);
Zhang Xiantao0de10342007-11-20 16:25:04 +08008345}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008346
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008347void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008348{
Xiao Guangrong6ca18b692013-05-31 08:36:23 +08008349 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03008350}
8351
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008352void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
8353 struct kvm_memory_slot *slot)
8354{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +08008355 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03008356}
8357
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008358static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
8359{
8360 if (!list_empty_careful(&vcpu->async_pf.done))
8361 return true;
8362
8363 if (kvm_apic_has_events(vcpu))
8364 return true;
8365
8366 if (vcpu->arch.pv.pv_unhalted)
8367 return true;
8368
8369 if (atomic_read(&vcpu->arch.nmi_queued))
8370 return true;
8371
Paolo Bonzini73917732015-10-13 10:19:35 +02008372 if (test_bit(KVM_REQ_SMI, &vcpu->requests))
8373 return true;
8374
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008375 if (kvm_arch_interrupt_allowed(vcpu) &&
8376 kvm_cpu_has_interrupt(vcpu))
8377 return true;
8378
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03008379 if (kvm_hv_has_stimer_pending(vcpu))
8380 return true;
8381
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008382 return false;
8383}
8384
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008385int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
8386{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008387 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +08008388}
Zhang Xiantao57361992007-12-17 14:21:40 +08008389
Christoffer Dallb6d33832012-03-08 16:44:24 -05008390int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +08008391{
Christoffer Dallb6d33832012-03-08 16:44:24 -05008392 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +08008393}
Gleb Natapov78646122009-03-23 12:12:11 +02008394
8395int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
8396{
8397 return kvm_x86_ops->interrupt_allowed(vcpu);
8398}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008399
Nadav Amit82b32772014-11-02 11:54:45 +02008400unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
8401{
8402 if (is_64_bit_mode(vcpu))
8403 return kvm_rip_read(vcpu);
8404 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
8405 kvm_rip_read(vcpu));
8406}
8407EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
8408
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008409bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
8410{
Nadav Amit82b32772014-11-02 11:54:45 +02008411 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008412}
8413EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
8414
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008415unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
8416{
8417 unsigned long rflags;
8418
8419 rflags = kvm_x86_ops->get_rflags(vcpu);
8420 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01008421 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008422 return rflags;
8423}
8424EXPORT_SYMBOL_GPL(kvm_get_rflags);
8425
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008426static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008427{
8428 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01008429 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01008430 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008431 kvm_x86_ops->set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008432}
8433
8434void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
8435{
8436 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03008437 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02008438}
8439EXPORT_SYMBOL_GPL(kvm_set_rflags);
8440
Gleb Natapov56028d02010-10-17 18:13:42 +02008441void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
8442{
8443 int r;
8444
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008445 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +08008446 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +02008447 return;
8448
8449 r = kvm_mmu_reload(vcpu);
8450 if (unlikely(r))
8451 return;
8452
Xiao Guangrongfb67e142010-12-07 10:35:25 +08008453 if (!vcpu->arch.mmu.direct_map &&
8454 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
8455 return;
8456
Gleb Natapov56028d02010-10-17 18:13:42 +02008457 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
8458}
8459
Gleb Natapovaf585b92010-10-14 11:22:46 +02008460static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
8461{
8462 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
8463}
8464
8465static inline u32 kvm_async_pf_next_probe(u32 key)
8466{
8467 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
8468}
8469
8470static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8471{
8472 u32 key = kvm_async_pf_hash_fn(gfn);
8473
8474 while (vcpu->arch.apf.gfns[key] != ~0)
8475 key = kvm_async_pf_next_probe(key);
8476
8477 vcpu->arch.apf.gfns[key] = gfn;
8478}
8479
8480static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
8481{
8482 int i;
8483 u32 key = kvm_async_pf_hash_fn(gfn);
8484
8485 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08008486 (vcpu->arch.apf.gfns[key] != gfn &&
8487 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02008488 key = kvm_async_pf_next_probe(key);
8489
8490 return key;
8491}
8492
8493bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8494{
8495 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
8496}
8497
8498static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
8499{
8500 u32 i, j, k;
8501
8502 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
8503 while (true) {
8504 vcpu->arch.apf.gfns[i] = ~0;
8505 do {
8506 j = kvm_async_pf_next_probe(j);
8507 if (vcpu->arch.apf.gfns[j] == ~0)
8508 return;
8509 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
8510 /*
8511 * k lies cyclically in ]i,j]
8512 * | i.k.j |
8513 * |....j i.k.| or |.k..j i...|
8514 */
8515 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
8516 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
8517 i = j;
8518 }
8519}
8520
Gleb Natapov7c907052010-10-14 11:22:53 +02008521static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
8522{
Cao, Leibbd64112017-02-03 20:04:35 +00008523 return kvm_vcpu_write_guest_cached(vcpu, &vcpu->arch.apf.data, &val,
8524 sizeof(val));
Gleb Natapov7c907052010-10-14 11:22:53 +02008525}
8526
Gleb Natapovaf585b92010-10-14 11:22:46 +02008527void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
8528 struct kvm_async_pf *work)
8529{
Avi Kivity6389ee92010-11-29 16:12:30 +02008530 struct x86_exception fault;
8531
Gleb Natapov7c907052010-10-14 11:22:53 +02008532 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008533 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02008534
8535 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02008536 (vcpu->arch.apf.send_user_only &&
8537 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02008538 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
8539 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008540 fault.vector = PF_VECTOR;
8541 fault.error_code_valid = true;
8542 fault.error_code = 0;
8543 fault.nested_page_fault = false;
8544 fault.address = work->arch.token;
8545 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008546 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008547}
8548
8549void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
8550 struct kvm_async_pf *work)
8551{
Avi Kivity6389ee92010-11-29 16:12:30 +02008552 struct x86_exception fault;
8553
chai wenf2e10662013-10-14 22:22:33 +08008554 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +02008555 work->arch.token = ~0; /* broadcast wakeup */
8556 else
8557 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Wanpeng Li24dccf82017-03-20 21:18:55 -07008558 trace_kvm_async_pf_ready(work->arch.token, work->gva);
Gleb Natapov7c907052010-10-14 11:22:53 +02008559
8560 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
8561 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02008562 fault.vector = PF_VECTOR;
8563 fault.error_code_valid = true;
8564 fault.error_code = 0;
8565 fault.nested_page_fault = false;
8566 fault.address = work->arch.token;
8567 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02008568 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08008569 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +03008570 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +02008571}
8572
8573bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
8574{
8575 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
8576 return true;
8577 else
8578 return !kvm_event_needs_reinjection(vcpu) &&
8579 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02008580}
8581
Paolo Bonzini5544eb92015-07-07 15:41:58 +02008582void kvm_arch_start_assignment(struct kvm *kvm)
8583{
8584 atomic_inc(&kvm->arch.assigned_device_count);
8585}
8586EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
8587
8588void kvm_arch_end_assignment(struct kvm *kvm)
8589{
8590 atomic_dec(&kvm->arch.assigned_device_count);
8591}
8592EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
8593
8594bool kvm_arch_has_assigned_device(struct kvm *kvm)
8595{
8596 return atomic_read(&kvm->arch.assigned_device_count);
8597}
8598EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
8599
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06008600void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
8601{
8602 atomic_inc(&kvm->arch.noncoherent_dma_count);
8603}
8604EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
8605
8606void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
8607{
8608 atomic_dec(&kvm->arch.noncoherent_dma_count);
8609}
8610EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
8611
8612bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
8613{
8614 return atomic_read(&kvm->arch.noncoherent_dma_count);
8615}
8616EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
8617
Alex Williamson14717e22016-05-05 11:58:35 -06008618bool kvm_arch_has_irq_bypass(void)
8619{
8620 return kvm_x86_ops->update_pi_irte != NULL;
8621}
8622
Feng Wu87276882015-09-18 22:29:40 +08008623int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
8624 struct irq_bypass_producer *prod)
8625{
8626 struct kvm_kernel_irqfd *irqfd =
8627 container_of(cons, struct kvm_kernel_irqfd, consumer);
8628
Alex Williamson14717e22016-05-05 11:58:35 -06008629 irqfd->producer = prod;
Feng Wu87276882015-09-18 22:29:40 +08008630
Alex Williamson14717e22016-05-05 11:58:35 -06008631 return kvm_x86_ops->update_pi_irte(irqfd->kvm,
8632 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +08008633}
8634
8635void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
8636 struct irq_bypass_producer *prod)
8637{
8638 int ret;
8639 struct kvm_kernel_irqfd *irqfd =
8640 container_of(cons, struct kvm_kernel_irqfd, consumer);
8641
Feng Wu87276882015-09-18 22:29:40 +08008642 WARN_ON(irqfd->producer != prod);
8643 irqfd->producer = NULL;
8644
8645 /*
8646 * When producer of consumer is unregistered, we change back to
8647 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +02008648 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +08008649 * int this case doesn't want to receive the interrupts.
8650 */
8651 ret = kvm_x86_ops->update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0);
8652 if (ret)
8653 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
8654 " fails: %d\n", irqfd->consumer.token, ret);
8655}
8656
8657int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
8658 uint32_t guest_irq, bool set)
8659{
8660 if (!kvm_x86_ops->update_pi_irte)
8661 return -EINVAL;
8662
8663 return kvm_x86_ops->update_pi_irte(kvm, host_irq, guest_irq, set);
8664}
8665
Feng Wu520040142016-01-25 16:53:33 +08008666bool kvm_vector_hashing_enabled(void)
8667{
8668 return vector_hashing;
8669}
8670EXPORT_SYMBOL_GPL(kvm_vector_hashing_enabled);
8671
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008672EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
Jason Wang931c33b2015-09-15 14:41:58 +08008673EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008674EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
8675EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
8676EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
8677EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02008678EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02008679EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02008680EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02008681EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02008682EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02008683EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01008684EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09008685EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Radim Krčmář7b462682014-08-21 18:08:09 +02008686EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window);
Kai Huang843e4332015-01-28 10:54:28 +08008687EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
Feng Wuefc64402015-09-18 22:29:51 +08008688EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -05008689EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
8690EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);