blob: 89313187d7f7dd057a0fb5ecb60931ed0e2da54e [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"
Carsten Otte313a3dc2007-10-11 19:16:52 +020030
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020031#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030032#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020033#include <linux/kvm.h>
34#include <linux/fs.h>
35#include <linux/vmalloc.h>
Carsten Otte5fb76f92007-10-29 16:08:51 +010036#include <linux/module.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080037#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050038#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010039#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030040#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010041#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030042#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020043#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080045#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080046#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020047#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020048#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020049#include <linux/timekeeper_internal.h>
50#include <linux/pvclock_gtod.h>
Avi Kivityaec51dc2009-07-01 16:01:02 +030051#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080052
Marcelo Tosatti229456f2009-06-17 09:22:14 -030053#define CREATE_TRACE_POINTS
54#include "trace.h"
Carsten Otte043405e2007-10-10 17:16:19 +020055
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020056#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080057#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020058#include <asm/desc.h>
Sheng Yang0bed3b52008-10-09 16:01:54 +080059#include <asm/mtrr.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080060#include <asm/mce.h>
Sheng Yang7cf30852010-05-17 17:08:27 +080061#include <asm/i387.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080062#include <asm/fpu-internal.h> /* Ugh! */
Sheng Yang98918832010-05-17 17:08:28 +080063#include <asm/xcr.h>
Zachary Amsden1d5f0662010-08-19 22:07:30 -100064#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030065#include <asm/div64.h>
Carsten Otte043405e2007-10-10 17:16:19 +020066
Carsten Otte313a3dc2007-10-11 19:16:52 +020067#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080068#define KVM_MAX_MCE_BANKS 32
Huang Ying5854dbc2010-10-08 16:24:14 +080069#define KVM_MCE_CAP_SUPPORTED (MCG_CTL_P | MCG_SER_P)
Huang Ying890ca9a2009-05-11 16:48:15 +080070
Avi Kivity0f65dd72011-04-20 13:37:53 +030071#define emul_to_vcpu(ctxt) \
72 container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt)
73
Joerg Roedel50a37eb2008-01-31 14:57:38 +010074/* EFER defaults:
75 * - enable syscall per default because its emulated by KVM
76 * - enable LME and LMA per default on 64 bit KVM
77 */
78#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080079static
80u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010081#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080082static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010083#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020084
Avi Kivityba1389b2007-11-18 16:24:12 +020085#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
86#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050087
Gleb Natapovcb142eb2009-08-09 15:17:40 +030088static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +030089static void process_nmi(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +020090
Zhang Xiantao97896d02007-11-14 20:09:30 +080091struct kvm_x86_ops *kvm_x86_ops;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030092EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +080093
Rusty Russell476bc002012-01-13 09:32:18 +103094static bool ignore_msrs = 0;
95module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +020096
Joerg Roedel92a1f122011-03-25 09:44:51 +010097bool kvm_has_tsc_control;
98EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
99u32 kvm_max_guest_tsc_khz;
100EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
101
Zachary Amsdencc578282012-02-03 15:43:50 -0200102/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
103static u32 tsc_tolerance_ppm = 250;
104module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
105
Avi Kivity18863bd2009-09-07 11:12:18 +0300106#define KVM_NR_SHARED_MSRS 16
107
108struct kvm_shared_msrs_global {
109 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800110 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300111};
112
113struct kvm_shared_msrs {
114 struct user_return_notifier urn;
115 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800116 struct kvm_shared_msr_values {
117 u64 host;
118 u64 curr;
119 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300120};
121
122static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200123static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300124
Hollis Blanchard417bc302007-10-31 17:24:23 -0500125struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200126 { "pf_fixed", VCPU_STAT(pf_fixed) },
127 { "pf_guest", VCPU_STAT(pf_guest) },
128 { "tlb_flush", VCPU_STAT(tlb_flush) },
129 { "invlpg", VCPU_STAT(invlpg) },
130 { "exits", VCPU_STAT(exits) },
131 { "io_exits", VCPU_STAT(io_exits) },
132 { "mmio_exits", VCPU_STAT(mmio_exits) },
133 { "signal_exits", VCPU_STAT(signal_exits) },
134 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800135 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200136 { "halt_exits", VCPU_STAT(halt_exits) },
137 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530138 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200139 { "request_irq", VCPU_STAT(request_irq_exits) },
140 { "irq_exits", VCPU_STAT(irq_exits) },
141 { "host_state_reload", VCPU_STAT(host_state_reload) },
142 { "efer_reload", VCPU_STAT(efer_reload) },
143 { "fpu_reload", VCPU_STAT(fpu_reload) },
144 { "insn_emulation", VCPU_STAT(insn_emulation) },
145 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300146 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200147 { "nmi_injections", VCPU_STAT(nmi_injections) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200148 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
149 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
150 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
151 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
152 { "mmu_flooded", VM_STAT(mmu_flooded) },
153 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200154 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300155 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200156 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300157 { "largepages", VM_STAT(lpages) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500158 { NULL }
159};
160
Dexuan Cui2acf9232010-06-10 11:27:12 +0800161u64 __read_mostly host_xcr0;
162
Jan Kiszkab6785de2012-09-20 07:43:17 +0200163static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300164
Gleb Natapovaf585b92010-10-14 11:22:46 +0200165static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
166{
167 int i;
168 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
169 vcpu->arch.apf.gfns[i] = ~0;
170}
171
Avi Kivity18863bd2009-09-07 11:12:18 +0300172static void kvm_on_user_return(struct user_return_notifier *urn)
173{
174 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300175 struct kvm_shared_msrs *locals
176 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800177 struct kvm_shared_msr_values *values;
Avi Kivity18863bd2009-09-07 11:12:18 +0300178
179 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800180 values = &locals->values[slot];
181 if (values->host != values->curr) {
182 wrmsrl(shared_msrs_global.msrs[slot], values->host);
183 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300184 }
185 }
186 locals->registered = false;
187 user_return_notifier_unregister(urn);
188}
189
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800190static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300191{
Avi Kivity18863bd2009-09-07 11:12:18 +0300192 u64 value;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200193 unsigned int cpu = smp_processor_id();
194 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300195
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800196 /* only read, and nobody should modify it at this time,
197 * so don't need lock */
198 if (slot >= shared_msrs_global.nr) {
199 printk(KERN_ERR "kvm: invalid MSR slot!");
200 return;
201 }
202 rdmsrl_safe(msr, &value);
203 smsr->values[slot].host = value;
204 smsr->values[slot].curr = value;
205}
206
207void kvm_define_shared_msr(unsigned slot, u32 msr)
208{
Avi Kivity18863bd2009-09-07 11:12:18 +0300209 if (slot >= shared_msrs_global.nr)
210 shared_msrs_global.nr = slot + 1;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800211 shared_msrs_global.msrs[slot] = msr;
212 /* we need ensured the shared_msr_global have been updated */
213 smp_wmb();
Avi Kivity18863bd2009-09-07 11:12:18 +0300214}
215EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
216
217static void kvm_shared_msr_cpu_online(void)
218{
219 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300220
221 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800222 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300223}
224
Avi Kivityd5696722009-12-02 12:28:47 +0200225void kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300226{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200227 unsigned int cpu = smp_processor_id();
228 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity18863bd2009-09-07 11:12:18 +0300229
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800230 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Avi Kivity18863bd2009-09-07 11:12:18 +0300231 return;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800232 smsr->values[slot].curr = value;
233 wrmsrl(shared_msrs_global.msrs[slot], value);
Avi Kivity18863bd2009-09-07 11:12:18 +0300234 if (!smsr->registered) {
235 smsr->urn.on_user_return = kvm_on_user_return;
236 user_return_notifier_register(&smsr->urn);
237 smsr->registered = true;
238 }
239}
240EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
241
Avi Kivity3548bab2009-11-28 14:18:47 +0200242static void drop_user_return_notifiers(void *ignore)
243{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200244 unsigned int cpu = smp_processor_id();
245 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200246
247 if (smsr->registered)
248 kvm_on_user_return(&smsr->urn);
249}
250
Carsten Otte6866b832007-10-29 16:09:10 +0100251u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
252{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300253 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100254}
255EXPORT_SYMBOL_GPL(kvm_get_apic_base);
256
257void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data)
258{
259 /* TODO: reserve bits check */
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300260 kvm_lapic_set_base(vcpu, data);
Carsten Otte6866b832007-10-29 16:09:10 +0100261}
262EXPORT_SYMBOL_GPL(kvm_set_apic_base);
263
Geoff Levande3ba45b2013-04-05 19:20:30 +0000264asmlinkage void kvm_spurious_fault(void)
265{
266 /* Fault while not rebooting. We want the trace. */
267 BUG();
268}
269EXPORT_SYMBOL_GPL(kvm_spurious_fault);
270
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200271#define EXCPT_BENIGN 0
272#define EXCPT_CONTRIBUTORY 1
273#define EXCPT_PF 2
274
275static int exception_class(int vector)
276{
277 switch (vector) {
278 case PF_VECTOR:
279 return EXCPT_PF;
280 case DE_VECTOR:
281 case TS_VECTOR:
282 case NP_VECTOR:
283 case SS_VECTOR:
284 case GP_VECTOR:
285 return EXCPT_CONTRIBUTORY;
286 default:
287 break;
288 }
289 return EXCPT_BENIGN;
290}
291
292static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200293 unsigned nr, bool has_error, u32 error_code,
294 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200295{
296 u32 prev_nr;
297 int class1, class2;
298
Avi Kivity3842d132010-07-27 12:30:24 +0300299 kvm_make_request(KVM_REQ_EVENT, vcpu);
300
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200301 if (!vcpu->arch.exception.pending) {
302 queue:
303 vcpu->arch.exception.pending = true;
304 vcpu->arch.exception.has_error_code = has_error;
305 vcpu->arch.exception.nr = nr;
306 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200307 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200308 return;
309 }
310
311 /* to check exception */
312 prev_nr = vcpu->arch.exception.nr;
313 if (prev_nr == DF_VECTOR) {
314 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300315 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200316 return;
317 }
318 class1 = exception_class(prev_nr);
319 class2 = exception_class(nr);
320 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
321 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
322 /* generate double fault per SDM Table 5-5 */
323 vcpu->arch.exception.pending = true;
324 vcpu->arch.exception.has_error_code = true;
325 vcpu->arch.exception.nr = DF_VECTOR;
326 vcpu->arch.exception.error_code = 0;
327 } else
328 /* replace previous exception with a new one in a hope
329 that instruction re-execution will regenerate lost
330 exception */
331 goto queue;
332}
333
Avi Kivity298101d2007-11-25 13:41:11 +0200334void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
335{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200336 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200337}
338EXPORT_SYMBOL_GPL(kvm_queue_exception);
339
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200340void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
341{
342 kvm_multiple_exception(vcpu, nr, false, 0, true);
343}
344EXPORT_SYMBOL_GPL(kvm_requeue_exception);
345
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100346void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200347{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100348 if (err)
349 kvm_inject_gp(vcpu, 0);
350 else
351 kvm_x86_ops->skip_emulated_instruction(vcpu);
352}
353EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200354
Avi Kivity6389ee92010-11-29 16:12:30 +0200355void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200356{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200357 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200358 vcpu->arch.cr2 = fault->address;
359 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200360}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300361EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200362
Avi Kivity6389ee92010-11-29 16:12:30 +0200363void kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200364{
Avi Kivity6389ee92010-11-29 16:12:30 +0200365 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
366 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200367 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200368 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200369}
370
Sheng Yang3419ffc2008-05-15 09:52:48 +0800371void kvm_inject_nmi(struct kvm_vcpu *vcpu)
372{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300373 atomic_inc(&vcpu->arch.nmi_queued);
374 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800375}
376EXPORT_SYMBOL_GPL(kvm_inject_nmi);
377
Avi Kivity298101d2007-11-25 13:41:11 +0200378void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
379{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200380 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200381}
382EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
383
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200384void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
385{
386 kvm_multiple_exception(vcpu, nr, true, error_code, true);
387}
388EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
389
Carsten Ottea03490e2007-10-29 16:09:35 +0100390/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300391 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
392 * a #GP and return false.
393 */
394bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200395{
Avi Kivity0a79b002009-09-01 12:03:25 +0300396 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
397 return true;
398 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
399 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100400}
Avi Kivity0a79b002009-09-01 12:03:25 +0300401EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100402
403/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200404 * This function will be used to read from the physical memory of the currently
405 * running guest. The difference to kvm_read_guest_page is that this function
406 * can read from guest physical or from the guest's guest physical memory.
407 */
408int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
409 gfn_t ngfn, void *data, int offset, int len,
410 u32 access)
411{
412 gfn_t real_gfn;
413 gpa_t ngpa;
414
415 ngpa = gfn_to_gpa(ngfn);
416 real_gfn = mmu->translate_gpa(vcpu, ngpa, access);
417 if (real_gfn == UNMAPPED_GVA)
418 return -EFAULT;
419
420 real_gfn = gpa_to_gfn(real_gfn);
421
422 return kvm_read_guest_page(vcpu->kvm, real_gfn, data, offset, len);
423}
424EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
425
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200426int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
427 void *data, int offset, int len, u32 access)
428{
429 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
430 data, offset, len, access);
431}
432
Joerg Roedelec92fe42010-09-10 17:30:51 +0200433/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100434 * Load the pae pdptrs. Return true is they are all valid.
435 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200436int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100437{
438 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
439 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
440 int i;
441 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200442 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100443
Joerg Roedelff03a072010-09-10 17:30:57 +0200444 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
445 offset * sizeof(u64), sizeof(pdpte),
446 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100447 if (ret < 0) {
448 ret = 0;
449 goto out;
450 }
451 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Avi Kivity43a37952009-06-10 14:12:05 +0300452 if (is_present_gpte(pdpte[i]) &&
Dong, Eddie20c466b2009-03-31 23:03:45 +0800453 (pdpte[i] & vcpu->arch.mmu.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100454 ret = 0;
455 goto out;
456 }
457 }
458 ret = 1;
459
Joerg Roedelff03a072010-09-10 17:30:57 +0200460 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300461 __set_bit(VCPU_EXREG_PDPTR,
462 (unsigned long *)&vcpu->arch.regs_avail);
463 __set_bit(VCPU_EXREG_PDPTR,
464 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100465out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100466
467 return ret;
468}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100469EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100470
Avi Kivityd835dfe2007-11-21 02:57:59 +0200471static bool pdptrs_changed(struct kvm_vcpu *vcpu)
472{
Joerg Roedelff03a072010-09-10 17:30:57 +0200473 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200474 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200475 int offset;
476 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200477 int r;
478
479 if (is_long_mode(vcpu) || !is_pae(vcpu))
480 return false;
481
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300482 if (!test_bit(VCPU_EXREG_PDPTR,
483 (unsigned long *)&vcpu->arch.regs_avail))
484 return true;
485
Avi Kivity9f8fe502010-12-05 17:30:00 +0200486 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
487 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200488 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
489 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200490 if (r < 0)
491 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200492 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200493out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200494
495 return changed;
496}
497
Avi Kivity49a9b072010-06-10 17:02:14 +0300498int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100499{
Sheng Yangaad82702010-05-12 16:40:42 +0800500 unsigned long old_cr0 = kvm_read_cr0(vcpu);
501 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP |
502 X86_CR0_CD | X86_CR0_NW;
503
Avi Kivityf9a48e62010-01-06 19:10:22 +0200504 cr0 |= X86_CR0_ET;
505
Gleb Natapovab344822010-01-21 15:28:46 +0200506#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300507 if (cr0 & 0xffffffff00000000UL)
508 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200509#endif
510
511 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100512
Gleb Natapov0f122442010-04-28 19:15:31 +0300513 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
514 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100515
Gleb Natapov0f122442010-04-28 19:15:31 +0300516 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
517 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100518
519 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
520#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200521 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100522 int cs_db, cs_l;
523
Gleb Natapov0f122442010-04-28 19:15:31 +0300524 if (!is_pae(vcpu))
525 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100526 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300527 if (cs_l)
528 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100529 } else
530#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200531 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200532 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300533 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100534 }
535
Mao, Junjiead756a12012-07-02 01:18:48 +0000536 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
537 return 1;
538
Carsten Ottea03490e2007-10-29 16:09:35 +0100539 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100540
Lai Jiangshand170c412011-02-21 11:21:30 +0800541 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800542 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800543 kvm_async_pf_hash_reset(vcpu);
544 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800545
Sheng Yangaad82702010-05-12 16:40:42 +0800546 if ((cr0 ^ old_cr0) & update_bits)
547 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300548 return 0;
549}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200550EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100551
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200552void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100553{
Avi Kivity49a9b072010-06-10 17:02:14 +0300554 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100555}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200556EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100557
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300558static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
559{
560 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
561 !vcpu->guest_xcr0_loaded) {
562 /* kvm_set_xcr() also depends on this */
563 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
564 vcpu->guest_xcr0_loaded = 1;
565 }
566}
567
568static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
569{
570 if (vcpu->guest_xcr0_loaded) {
571 if (vcpu->arch.xcr0 != host_xcr0)
572 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
573 vcpu->guest_xcr0_loaded = 0;
574 }
575}
576
Dexuan Cui2acf9232010-06-10 11:27:12 +0800577int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
578{
579 u64 xcr0;
580
581 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
582 if (index != XCR_XFEATURE_ENABLED_MASK)
583 return 1;
584 xcr0 = xcr;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800585 if (!(xcr0 & XSTATE_FP))
586 return 1;
587 if ((xcr0 & XSTATE_YMM) && !(xcr0 & XSTATE_SSE))
588 return 1;
589 if (xcr0 & ~host_xcr0)
590 return 1;
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300591 kvm_put_guest_xcr0(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800592 vcpu->arch.xcr0 = xcr0;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800593 return 0;
594}
595
596int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
597{
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000598 if (kvm_x86_ops->get_cpl(vcpu) != 0 ||
599 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800600 kvm_inject_gp(vcpu, 0);
601 return 1;
602 }
603 return 0;
604}
605EXPORT_SYMBOL_GPL(kvm_set_xcr);
606
Avi Kivitya83b29c2010-06-10 17:02:15 +0300607int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100608{
Avi Kivityfc78f512009-12-07 12:16:48 +0200609 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800610 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE |
611 X86_CR4_PAE | X86_CR4_SMEP;
Gleb Natapov0f122442010-04-28 19:15:31 +0300612 if (cr4 & CR4_RESERVED_BITS)
613 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100614
Dexuan Cui2acf9232010-06-10 11:27:12 +0800615 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
616 return 1;
617
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800618 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
619 return 1;
620
H. Peter Anvinafcbf132013-04-27 16:37:47 -0700621 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE))
Yang, Wei74dc2b42011-06-14 20:10:18 +0800622 return 1;
623
Carsten Ottea03490e2007-10-29 16:09:35 +0100624 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300625 if (!(cr4 & X86_CR4_PAE))
626 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300627 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
628 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200629 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
630 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300631 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100632
Mao, Junjiead756a12012-07-02 01:18:48 +0000633 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
634 if (!guest_cpuid_has_pcid(vcpu))
635 return 1;
636
637 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
638 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
639 return 1;
640 }
641
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300642 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300643 return 1;
644
Mao, Junjiead756a12012-07-02 01:18:48 +0000645 if (((cr4 ^ old_cr4) & pdptr_bits) ||
646 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800647 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300648
Dexuan Cui2acf9232010-06-10 11:27:12 +0800649 if ((cr4 ^ old_cr4) & X86_CR4_OSXSAVE)
Avi Kivity00b27a32011-11-23 16:30:32 +0200650 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800651
Gleb Natapov0f122442010-04-28 19:15:31 +0300652 return 0;
653}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200654EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100655
Avi Kivity23902182010-06-10 17:02:16 +0300656int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100657{
Avi Kivity9f8fe502010-12-05 17:30:00 +0200658 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300659 kvm_mmu_sync_roots(vcpu);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200660 kvm_mmu_flush_tlb(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300661 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200662 }
663
Carsten Ottea03490e2007-10-29 16:09:35 +0100664 if (is_long_mode(vcpu)) {
Gleb Natapov471842e2012-10-15 09:49:08 +0200665 if (kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE)) {
Mao, Junjiead756a12012-07-02 01:18:48 +0000666 if (cr3 & CR3_PCID_ENABLED_RESERVED_BITS)
667 return 1;
668 } else
669 if (cr3 & CR3_L_MODE_RESERVED_BITS)
670 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100671 } else {
672 if (is_pae(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300673 if (cr3 & CR3_PAE_RESERVED_BITS)
674 return 1;
Joerg Roedelff03a072010-09-10 17:30:57 +0200675 if (is_paging(vcpu) &&
676 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Gleb Natapov0f122442010-04-28 19:15:31 +0300677 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100678 }
679 /*
680 * We don't check reserved bits in nonpae mode, because
681 * this isn't enforced, and VMware depends on this.
682 */
683 }
684
Carsten Ottea03490e2007-10-29 16:09:35 +0100685 /*
686 * Does the new cr3 value map to physical memory? (Note, we
687 * catch an invalid cr3 even in real-mode, because it would
688 * cause trouble later on when we turn on paging anyway.)
689 *
690 * A real CPU would silently accept an invalid cr3 and would
691 * attempt to use it - with largely undefined (and often hard
692 * to debug) behavior on the guest side.
693 */
694 if (unlikely(!gfn_to_memslot(vcpu->kvm, cr3 >> PAGE_SHIFT)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300695 return 1;
696 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200697 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Gleb Natapov0f122442010-04-28 19:15:31 +0300698 vcpu->arch.mmu.new_cr3(vcpu);
699 return 0;
700}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200701EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100702
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100703int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100704{
Gleb Natapov0f122442010-04-28 19:15:31 +0300705 if (cr8 & CR8_RESERVED_BITS)
706 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100707 if (irqchip_in_kernel(vcpu->kvm))
708 kvm_lapic_set_tpr(vcpu, cr8);
709 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800710 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300711 return 0;
712}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200713EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100714
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200715unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100716{
717 if (irqchip_in_kernel(vcpu->kvm))
718 return kvm_lapic_get_cr8(vcpu);
719 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800720 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100721}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200722EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100723
Jan Kiszkac8639012012-09-21 05:42:55 +0200724static void kvm_update_dr7(struct kvm_vcpu *vcpu)
725{
726 unsigned long dr7;
727
728 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
729 dr7 = vcpu->arch.guest_debug_dr7;
730 else
731 dr7 = vcpu->arch.dr7;
732 kvm_x86_ops->set_dr7(vcpu, dr7);
733 vcpu->arch.switch_db_regs = (dr7 & DR7_BP_EN_MASK);
734}
735
Gleb Natapov338dbc92010-04-28 19:15:32 +0300736static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300737{
738 switch (dr) {
739 case 0 ... 3:
740 vcpu->arch.db[dr] = val;
741 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
742 vcpu->arch.eff_db[dr] = val;
743 break;
744 case 4:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300745 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE))
746 return 1; /* #UD */
Gleb Natapov020df072010-04-13 10:05:23 +0300747 /* fall through */
748 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300749 if (val & 0xffffffff00000000ULL)
750 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300751 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
752 break;
753 case 5:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300754 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE))
755 return 1; /* #UD */
Gleb Natapov020df072010-04-13 10:05:23 +0300756 /* fall through */
757 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300758 if (val & 0xffffffff00000000ULL)
759 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300760 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +0200761 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +0300762 break;
763 }
764
765 return 0;
766}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300767
768int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
769{
770 int res;
771
772 res = __kvm_set_dr(vcpu, dr, val);
773 if (res > 0)
774 kvm_queue_exception(vcpu, UD_VECTOR);
775 else if (res < 0)
776 kvm_inject_gp(vcpu, 0);
777
778 return res;
779}
Gleb Natapov020df072010-04-13 10:05:23 +0300780EXPORT_SYMBOL_GPL(kvm_set_dr);
781
Gleb Natapov338dbc92010-04-28 19:15:32 +0300782static int _kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300783{
784 switch (dr) {
785 case 0 ... 3:
786 *val = vcpu->arch.db[dr];
787 break;
788 case 4:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300789 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE))
Gleb Natapov020df072010-04-13 10:05:23 +0300790 return 1;
Gleb Natapov020df072010-04-13 10:05:23 +0300791 /* fall through */
792 case 6:
793 *val = vcpu->arch.dr6;
794 break;
795 case 5:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300796 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE))
Gleb Natapov020df072010-04-13 10:05:23 +0300797 return 1;
Gleb Natapov020df072010-04-13 10:05:23 +0300798 /* fall through */
799 default: /* 7 */
800 *val = vcpu->arch.dr7;
801 break;
802 }
803
804 return 0;
805}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300806
807int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
808{
809 if (_kvm_get_dr(vcpu, dr, val)) {
810 kvm_queue_exception(vcpu, UD_VECTOR);
811 return 1;
812 }
813 return 0;
814}
Gleb Natapov020df072010-04-13 10:05:23 +0300815EXPORT_SYMBOL_GPL(kvm_get_dr);
816
Avi Kivity022cd0e2011-11-10 14:57:23 +0200817bool kvm_rdpmc(struct kvm_vcpu *vcpu)
818{
819 u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
820 u64 data;
821 int err;
822
823 err = kvm_pmu_read_pmc(vcpu, ecx, &data);
824 if (err)
825 return err;
826 kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data);
827 kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32);
828 return err;
829}
830EXPORT_SYMBOL_GPL(kvm_rdpmc);
831
Carsten Otte043405e2007-10-10 17:16:19 +0200832/*
833 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
834 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
835 *
836 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400837 * capabilities of the host cpu. This capabilities test skips MSRs that are
838 * kvm-specific. Those are put in the beginning of the list.
Carsten Otte043405e2007-10-10 17:16:19 +0200839 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400840
Gleb Natapov439793d2012-08-01 17:01:42 +0300841#define KVM_SAVE_MSRS_BEGIN 10
Carsten Otte043405e2007-10-10 17:16:19 +0200842static u32 msrs_to_save[] = {
Glauber Costae3267cb2009-10-06 13:24:50 -0400843 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
Glauber Costa11c6bff2010-05-11 12:17:41 -0400844 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
Gleb Natapov55cd8e52010-01-17 15:51:22 +0200845 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
Glauber Costac9aaa892011-07-11 15:28:14 -0400846 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300847 MSR_KVM_PV_EOI_EN,
Carsten Otte043405e2007-10-10 17:16:19 +0200848 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400849 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200850#ifdef CONFIG_X86_64
851 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
852#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800853 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
854 MSR_IA32_FEATURE_CONTROL
Carsten Otte043405e2007-10-10 17:16:19 +0200855};
856
857static unsigned num_msrs_to_save;
858
Mathias Krausef1d24832012-08-30 01:30:18 +0200859static const u32 emulated_msrs[] = {
Will Auldba904632012-11-29 12:42:50 -0800860 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800861 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +0200862 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +0300863 MSR_IA32_MCG_STATUS,
864 MSR_IA32_MCG_CTL,
Carsten Otte043405e2007-10-10 17:16:19 +0200865};
866
Jan Kiszka384bb782013-04-20 10:52:36 +0200867bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +0100868{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200869 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +0200870 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +0100871
Alexander Graf1b2fd702009-02-02 16:23:51 +0100872 if (efer & EFER_FFXSR) {
873 struct kvm_cpuid_entry2 *feat;
874
875 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200876 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
Jan Kiszka384bb782013-04-20 10:52:36 +0200877 return false;
Alexander Graf1b2fd702009-02-02 16:23:51 +0100878 }
879
Alexander Grafd8017472008-11-25 20:17:11 +0100880 if (efer & EFER_SVME) {
881 struct kvm_cpuid_entry2 *feat;
882
883 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200884 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
Jan Kiszka384bb782013-04-20 10:52:36 +0200885 return false;
Alexander Grafd8017472008-11-25 20:17:11 +0100886 }
887
Jan Kiszka384bb782013-04-20 10:52:36 +0200888 return true;
889}
890EXPORT_SYMBOL_GPL(kvm_valid_efer);
891
892static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
893{
894 u64 old_efer = vcpu->arch.efer;
895
896 if (!kvm_valid_efer(vcpu, efer))
897 return 1;
898
899 if (is_paging(vcpu)
900 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
901 return 1;
902
Carsten Otte15c4a642007-10-30 18:44:17 +0100903 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +0200904 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +0100905
Sheng Yanga3d204e2010-05-12 16:40:40 +0800906 kvm_x86_ops->set_efer(vcpu, efer);
907
Sheng Yangaad82702010-05-12 16:40:42 +0800908 /* Update reserved bits */
909 if ((efer ^ old_efer) & EFER_NX)
910 kvm_mmu_reset_context(vcpu);
911
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200912 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +0100913}
914
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +0100915void kvm_enable_efer_bits(u64 mask)
916{
917 efer_reserved_bits &= ~mask;
918}
919EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
920
921
Carsten Otte15c4a642007-10-30 18:44:17 +0100922/*
923 * Writes msr value into into the appropriate "register".
924 * Returns 0 on success, non-0 otherwise.
925 * Assumes vcpu_load() was already called.
926 */
Will Auld8fe8ab42012-11-29 12:42:12 -0800927int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr)
Carsten Otte15c4a642007-10-30 18:44:17 +0100928{
Will Auld8fe8ab42012-11-29 12:42:12 -0800929 return kvm_x86_ops->set_msr(vcpu, msr);
Carsten Otte15c4a642007-10-30 18:44:17 +0100930}
931
Carsten Otte313a3dc2007-10-11 19:16:52 +0200932/*
933 * Adapt set_msr() to msr_io()'s calling convention
934 */
935static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
936{
Will Auld8fe8ab42012-11-29 12:42:12 -0800937 struct msr_data msr;
938
939 msr.data = *data;
940 msr.index = index;
941 msr.host_initiated = true;
942 return kvm_set_msr(vcpu, &msr);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200943}
944
Marcelo Tosatti16e8d742012-11-27 23:29:00 -0200945#ifdef CONFIG_X86_64
946struct pvclock_gtod_data {
947 seqcount_t seq;
948
949 struct { /* extract of a clocksource struct */
950 int vclock_mode;
951 cycle_t cycle_last;
952 cycle_t mask;
953 u32 mult;
954 u32 shift;
955 } clock;
956
957 /* open coded 'struct timespec' */
958 u64 monotonic_time_snsec;
959 time_t monotonic_time_sec;
960};
961
962static struct pvclock_gtod_data pvclock_gtod_data;
963
964static void update_pvclock_gtod(struct timekeeper *tk)
965{
966 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
967
968 write_seqcount_begin(&vdata->seq);
969
970 /* copy pvclock gtod data */
971 vdata->clock.vclock_mode = tk->clock->archdata.vclock_mode;
972 vdata->clock.cycle_last = tk->clock->cycle_last;
973 vdata->clock.mask = tk->clock->mask;
974 vdata->clock.mult = tk->mult;
975 vdata->clock.shift = tk->shift;
976
977 vdata->monotonic_time_sec = tk->xtime_sec
978 + tk->wall_to_monotonic.tv_sec;
979 vdata->monotonic_time_snsec = tk->xtime_nsec
980 + (tk->wall_to_monotonic.tv_nsec
981 << tk->shift);
982 while (vdata->monotonic_time_snsec >=
983 (((u64)NSEC_PER_SEC) << tk->shift)) {
984 vdata->monotonic_time_snsec -=
985 ((u64)NSEC_PER_SEC) << tk->shift;
986 vdata->monotonic_time_sec++;
987 }
988
989 write_seqcount_end(&vdata->seq);
990}
991#endif
992
993
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200994static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
995{
Avi Kivity9ed3c442010-05-04 15:00:37 +0300996 int version;
997 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200998 struct pvclock_wall_clock wc;
Jason Wang923de3c2010-01-27 19:13:49 +0800999 struct timespec boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001000
1001 if (!wall_clock)
1002 return;
1003
Avi Kivity9ed3c442010-05-04 15:00:37 +03001004 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1005 if (r)
1006 return;
1007
1008 if (version & 1)
1009 ++version; /* first time write, random junk */
1010
1011 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001012
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001013 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
1014
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001015 /*
1016 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001017 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001018 * wall clock specified here. guest system time equals host
1019 * system time for us, thus we must fill in host boot time here.
1020 */
Jason Wang923de3c2010-01-27 19:13:49 +08001021 getboottime(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001022
Bruce Rogers4b648662012-07-20 10:44:24 -06001023 if (kvm->arch.kvmclock_offset) {
1024 struct timespec ts = ns_to_timespec(kvm->arch.kvmclock_offset);
1025 boot = timespec_sub(boot, ts);
1026 }
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001027 wc.sec = boot.tv_sec;
1028 wc.nsec = boot.tv_nsec;
1029 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001030
1031 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1032
1033 version++;
1034 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001035}
1036
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001037static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1038{
1039 uint32_t quotient, remainder;
1040
1041 /* Don't try to replace with do_div(), this one calculates
1042 * "(dividend << 32) / divisor" */
1043 __asm__ ( "divl %4"
1044 : "=a" (quotient), "=d" (remainder)
1045 : "0" (0), "1" (dividend), "r" (divisor) );
1046 return quotient;
1047}
1048
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001049static void kvm_get_time_scale(uint32_t scaled_khz, uint32_t base_khz,
1050 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001051{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001052 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001053 int32_t shift = 0;
1054 uint64_t tps64;
1055 uint32_t tps32;
1056
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001057 tps64 = base_khz * 1000LL;
1058 scaled64 = scaled_khz * 1000LL;
Jan Kiszka50933622010-09-26 13:00:53 +02001059 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001060 tps64 >>= 1;
1061 shift--;
1062 }
1063
1064 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001065 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1066 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001067 scaled64 >>= 1;
1068 else
1069 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001070 shift++;
1071 }
1072
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001073 *pshift = shift;
1074 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001075
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001076 pr_debug("%s: base_khz %u => %u, shift %d, mul %u\n",
1077 __func__, base_khz, scaled_khz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001078}
1079
Zachary Amsden759379d2010-08-19 22:07:25 -10001080static inline u64 get_kernel_ns(void)
1081{
1082 struct timespec ts;
1083
1084 WARN_ON(preemptible());
1085 ktime_get_ts(&ts);
1086 monotonic_to_bootbased(&ts);
1087 return timespec_to_ns(&ts);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001088}
1089
Marcelo Tosattid8281992012-11-27 23:29:01 -02001090#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001091static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001092#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001093
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001094static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001095unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001096
Joerg Roedel857e4092011-03-25 09:44:50 +01001097static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
Zachary Amsden759379d2010-08-19 22:07:25 -10001098{
Zachary Amsdencc578282012-02-03 15:43:50 -02001099 return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
1100 vcpu->arch.virtual_tsc_shift);
Zachary Amsden759379d2010-08-19 22:07:25 -10001101}
1102
Zachary Amsdencc578282012-02-03 15:43:50 -02001103static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001104{
Zachary Amsdencc578282012-02-03 15:43:50 -02001105 u64 v = (u64)khz * (1000000 + ppm);
1106 do_div(v, 1000000);
1107 return v;
1108}
1109
1110static void kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 this_tsc_khz)
1111{
1112 u32 thresh_lo, thresh_hi;
1113 int use_scaling = 0;
1114
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001115 /* tsc_khz can be zero if TSC calibration fails */
1116 if (this_tsc_khz == 0)
1117 return;
1118
Zachary Amsdenc2855452010-09-18 14:38:15 -10001119 /* Compute a scale to convert nanoseconds in TSC cycles */
1120 kvm_get_time_scale(this_tsc_khz, NSEC_PER_SEC / 1000,
Zachary Amsdencc578282012-02-03 15:43:50 -02001121 &vcpu->arch.virtual_tsc_shift,
1122 &vcpu->arch.virtual_tsc_mult);
1123 vcpu->arch.virtual_tsc_khz = this_tsc_khz;
1124
1125 /*
1126 * Compute the variation in TSC rate which is acceptable
1127 * within the range of tolerance and decide if the
1128 * rate being applied is within that bounds of the hardware
1129 * rate. If so, no scaling or compensation need be done.
1130 */
1131 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1132 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
1133 if (this_tsc_khz < thresh_lo || this_tsc_khz > thresh_hi) {
1134 pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", this_tsc_khz, thresh_lo, thresh_hi);
1135 use_scaling = 1;
1136 }
1137 kvm_x86_ops->set_tsc_khz(vcpu, this_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001138}
1139
1140static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1141{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001142 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001143 vcpu->arch.virtual_tsc_mult,
1144 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001145 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001146 return tsc;
1147}
1148
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001149void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
1150{
1151#ifdef CONFIG_X86_64
1152 bool vcpus_matched;
1153 bool do_request = false;
1154 struct kvm_arch *ka = &vcpu->kvm->arch;
1155 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1156
1157 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1158 atomic_read(&vcpu->kvm->online_vcpus));
1159
1160 if (vcpus_matched && gtod->clock.vclock_mode == VCLOCK_TSC)
1161 if (!ka->use_master_clock)
1162 do_request = 1;
1163
1164 if (!vcpus_matched && ka->use_master_clock)
1165 do_request = 1;
1166
1167 if (do_request)
1168 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1169
1170 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1171 atomic_read(&vcpu->kvm->online_vcpus),
1172 ka->use_master_clock, gtod->clock.vclock_mode);
1173#endif
1174}
1175
Will Auldba904632012-11-29 12:42:50 -08001176static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1177{
1178 u64 curr_offset = kvm_x86_ops->read_tsc_offset(vcpu);
1179 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1180}
1181
Will Auld8fe8ab42012-11-29 12:42:12 -08001182void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10001183{
1184 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001185 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001186 unsigned long flags;
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001187 s64 usdiff;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001188 bool matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08001189 u64 data = msr->data;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001190
Jan Kiszka038f8c12011-02-04 10:49:11 +01001191 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Joerg Roedel857e4092011-03-25 09:44:50 +01001192 offset = kvm_x86_ops->compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001193 ns = get_kernel_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001194 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001195
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001196 if (vcpu->arch.virtual_tsc_khz) {
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001197 int faulted = 0;
1198
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001199 /* n.b - signed multiplication and division required */
1200 usdiff = data - kvm->arch.last_tsc_write;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001201#ifdef CONFIG_X86_64
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001202 usdiff = (usdiff * 1000) / vcpu->arch.virtual_tsc_khz;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001203#else
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001204 /* do_div() only does unsigned */
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001205 asm("1: idivl %[divisor]\n"
1206 "2: xor %%edx, %%edx\n"
1207 " movl $0, %[faulted]\n"
1208 "3:\n"
1209 ".section .fixup,\"ax\"\n"
1210 "4: movl $1, %[faulted]\n"
1211 " jmp 3b\n"
1212 ".previous\n"
1213
1214 _ASM_EXTABLE(1b, 4b)
1215
1216 : "=A"(usdiff), [faulted] "=r" (faulted)
1217 : "A"(usdiff * 1000), [divisor] "rm"(vcpu->arch.virtual_tsc_khz));
1218
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001219#endif
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001220 do_div(elapsed, 1000);
1221 usdiff -= elapsed;
1222 if (usdiff < 0)
1223 usdiff = -usdiff;
Marcelo Tosatti8915aa272013-06-11 23:31:12 -03001224
1225 /* idivl overflow => difference is larger than USEC_PER_SEC */
1226 if (faulted)
1227 usdiff = USEC_PER_SEC;
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001228 } else
1229 usdiff = USEC_PER_SEC; /* disable TSC match window below */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001230
1231 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001232 * Special case: TSC write with a small delta (1 second) of virtual
1233 * cycle time against real time is interpreted as an attempt to
1234 * synchronize the CPU.
1235 *
1236 * For a reliable TSC, we can match TSC offsets, and for an unstable
1237 * TSC, we add elapsed time in this computation. We could let the
1238 * compensation code attempt to catch up if we fall behind, but
1239 * it's better to try to match offsets from the beginning.
1240 */
Marcelo Tosatti02626b62012-03-08 18:46:57 -03001241 if (usdiff < USEC_PER_SEC &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001242 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001243 if (!check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02001244 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001245 pr_debug("kvm: matched tsc offset for %llu\n", data);
1246 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001247 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001248 data += delta;
1249 offset = kvm_x86_ops->compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001250 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001251 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001252 matched = true;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001253 } else {
1254 /*
1255 * We split periods of matched TSC writes into generations.
1256 * For each generation, we track the original measured
1257 * nanosecond time, offset, and write, so if TSCs are in
1258 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08001259 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02001260 *
1261 * These values are tracked in kvm->arch.cur_xxx variables.
1262 */
1263 kvm->arch.cur_tsc_generation++;
1264 kvm->arch.cur_tsc_nsec = ns;
1265 kvm->arch.cur_tsc_write = data;
1266 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001267 matched = false;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001268 pr_debug("kvm: new tsc generation %u, clock %llu\n",
1269 kvm->arch.cur_tsc_generation, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001270 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02001271
1272 /*
1273 * We also track th most recent recorded KHZ, write and time to
1274 * allow the matching interval to be extended at each write.
1275 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001276 kvm->arch.last_tsc_nsec = ns;
1277 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02001278 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001279
1280 /* Reset of TSC must disable overshoot protection below */
1281 vcpu->arch.hv_clock.tsc_timestamp = 0;
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001282 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02001283
1284 /* Keep track of which generation this VCPU has synchronized to */
1285 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
1286 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
1287 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
1288
Will Auldba904632012-11-29 12:42:50 -08001289 if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated)
1290 update_ia32_tsc_adjust_msr(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001291 kvm_x86_ops->write_tsc_offset(vcpu, offset);
1292 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001293
1294 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
1295 if (matched)
1296 kvm->arch.nr_vcpus_matched_tsc++;
1297 else
1298 kvm->arch.nr_vcpus_matched_tsc = 0;
1299
1300 kvm_track_tsc_matching(vcpu);
1301 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001302}
Zachary Amsdene26101b2012-02-03 15:43:57 -02001303
Zachary Amsden99e3e302010-08-19 22:07:17 -10001304EXPORT_SYMBOL_GPL(kvm_write_tsc);
1305
Marcelo Tosattid8281992012-11-27 23:29:01 -02001306#ifdef CONFIG_X86_64
1307
1308static cycle_t read_tsc(void)
1309{
1310 cycle_t ret;
1311 u64 last;
1312
1313 /*
1314 * Empirically, a fence (of type that depends on the CPU)
1315 * before rdtsc is enough to ensure that rdtsc is ordered
1316 * with respect to loads. The various CPU manuals are unclear
1317 * as to whether rdtsc can be reordered with later loads,
1318 * but no one has ever seen it happen.
1319 */
1320 rdtsc_barrier();
1321 ret = (cycle_t)vget_cycles();
1322
1323 last = pvclock_gtod_data.clock.cycle_last;
1324
1325 if (likely(ret >= last))
1326 return ret;
1327
1328 /*
1329 * GCC likes to generate cmov here, but this branch is extremely
1330 * predictable (it's just a funciton of time and the likely is
1331 * very likely) and there's a data dependence, so force GCC
1332 * to generate a branch instead. I don't barrier() because
1333 * we don't actually need a barrier, and if this function
1334 * ever gets inlined it will generate worse code.
1335 */
1336 asm volatile ("");
1337 return last;
1338}
1339
1340static inline u64 vgettsc(cycle_t *cycle_now)
1341{
1342 long v;
1343 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1344
1345 *cycle_now = read_tsc();
1346
1347 v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask;
1348 return v * gtod->clock.mult;
1349}
1350
1351static int do_monotonic(struct timespec *ts, cycle_t *cycle_now)
1352{
1353 unsigned long seq;
1354 u64 ns;
1355 int mode;
1356 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1357
1358 ts->tv_nsec = 0;
1359 do {
1360 seq = read_seqcount_begin(&gtod->seq);
1361 mode = gtod->clock.vclock_mode;
1362 ts->tv_sec = gtod->monotonic_time_sec;
1363 ns = gtod->monotonic_time_snsec;
1364 ns += vgettsc(cycle_now);
1365 ns >>= gtod->clock.shift;
1366 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
1367 timespec_add_ns(ts, ns);
1368
1369 return mode;
1370}
1371
1372/* returns true if host is using tsc clocksource */
1373static bool kvm_get_time_and_clockread(s64 *kernel_ns, cycle_t *cycle_now)
1374{
1375 struct timespec ts;
1376
1377 /* checked again under seqlock below */
1378 if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC)
1379 return false;
1380
1381 if (do_monotonic(&ts, cycle_now) != VCLOCK_TSC)
1382 return false;
1383
1384 monotonic_to_bootbased(&ts);
1385 *kernel_ns = timespec_to_ns(&ts);
1386
1387 return true;
1388}
1389#endif
1390
1391/*
1392 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001393 * Assuming a stable TSC across physical CPUS, and a stable TSC
1394 * across virtual CPUs, the following condition is possible.
1395 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02001396 * CPUs at the next numbered event.
1397 *
1398 * "timespecX" represents host monotonic time. "tscX" represents
1399 * RDTSC value.
1400 *
1401 * VCPU0 on CPU0 | VCPU1 on CPU1
1402 *
1403 * 1. read timespec0,tsc0
1404 * 2. | timespec1 = timespec0 + N
1405 * | tsc1 = tsc0 + M
1406 * 3. transition to guest | transition to guest
1407 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
1408 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
1409 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
1410 *
1411 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
1412 *
1413 * - ret0 < ret1
1414 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
1415 * ...
1416 * - 0 < N - M => M < N
1417 *
1418 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
1419 * always the case (the difference between two distinct xtime instances
1420 * might be smaller then the difference between corresponding TSC reads,
1421 * when updating guest vcpus pvclock areas).
1422 *
1423 * To avoid that problem, do not allow visibility of distinct
1424 * system_timestamp/tsc_timestamp values simultaneously: use a master
1425 * copy of host monotonic time values. Update that master copy
1426 * in lockstep.
1427 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001428 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02001429 *
1430 */
1431
1432static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
1433{
1434#ifdef CONFIG_X86_64
1435 struct kvm_arch *ka = &kvm->arch;
1436 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001437 bool host_tsc_clocksource, vcpus_matched;
1438
1439 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1440 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02001441
1442 /*
1443 * If the host uses TSC clock, then passthrough TSC as stable
1444 * to the guest.
1445 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001446 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02001447 &ka->master_kernel_ns,
1448 &ka->master_cycle_now);
1449
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001450 ka->use_master_clock = host_tsc_clocksource & vcpus_matched;
1451
Marcelo Tosattid8281992012-11-27 23:29:01 -02001452 if (ka->use_master_clock)
1453 atomic_set(&kvm_guest_has_master_clock, 1);
1454
1455 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001456 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
1457 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001458#endif
1459}
1460
Zachary Amsden34c238a2010-09-18 14:38:14 -10001461static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001462{
Marcelo Tosattid8281992012-11-27 23:29:01 -02001463 unsigned long flags, this_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001464 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001465 struct kvm_arch *ka = &v->kvm->arch;
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001466 s64 kernel_ns, max_kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001467 u64 tsc_timestamp, host_tsc;
Andy Honig0b794592013-02-20 14:48:10 -08001468 struct pvclock_vcpu_time_info guest_hv_clock;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001469 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02001470 bool use_master_clock;
1471
1472 kernel_ns = 0;
1473 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001474
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001475 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02001476 * If the host uses TSC clock, then passthrough TSC as stable
1477 * to the guest.
1478 */
1479 spin_lock(&ka->pvclock_gtod_sync_lock);
1480 use_master_clock = ka->use_master_clock;
1481 if (use_master_clock) {
1482 host_tsc = ka->master_cycle_now;
1483 kernel_ns = ka->master_kernel_ns;
1484 }
1485 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03001486
1487 /* Keep irq disabled to prevent changes to the clock */
1488 local_irq_save(flags);
1489 this_tsc_khz = __get_cpu_var(cpu_tsc_khz);
1490 if (unlikely(this_tsc_khz == 0)) {
1491 local_irq_restore(flags);
1492 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
1493 return 1;
1494 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02001495 if (!use_master_clock) {
1496 host_tsc = native_read_tsc();
1497 kernel_ns = get_kernel_ns();
1498 }
1499
1500 tsc_timestamp = kvm_x86_ops->read_l1_tsc(v, host_tsc);
1501
1502 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001503 * We may have to catch up the TSC to match elapsed wall clock
1504 * time for two reasons, even if kvmclock is used.
1505 * 1) CPU could have been running below the maximum TSC rate
1506 * 2) Broken TSC compensation resets the base at each VCPU
1507 * entry to avoid unknown leaps of TSC even when running
1508 * again on the same CPU. This may cause apparent elapsed
1509 * time to disappear, and the guest to stand still or run
1510 * very slowly.
1511 */
1512 if (vcpu->tsc_catchup) {
1513 u64 tsc = compute_guest_tsc(v, kernel_ns);
1514 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02001515 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001516 tsc_timestamp = tsc;
1517 }
1518 }
1519
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001520 local_irq_restore(flags);
1521
Andy Honig0b794592013-02-20 14:48:10 -08001522 if (!vcpu->pv_time_enabled)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001523 return 0;
1524
1525 /*
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001526 * Time as measured by the TSC may go backwards when resetting the base
1527 * tsc_timestamp. The reason for this is that the TSC resolution is
1528 * higher than the resolution of the other clock scales. Thus, many
1529 * possible measurments of the TSC correspond to one measurement of any
1530 * other clock, and so a spread of values is possible. This is not a
1531 * problem for the computation of the nanosecond clock; with TSC rates
1532 * around 1GHZ, there can only be a few cycles which correspond to one
1533 * nanosecond value, and any path through this code will inevitably
1534 * take longer than that. However, with the kernel_ns value itself,
1535 * the precision may be much lower, down to HZ granularity. If the
1536 * first sampling of TSC against kernel_ns ends in the low part of the
1537 * range, and the second in the high end of the range, we can get:
1538 *
1539 * (TSC - offset_low) * S + kns_old > (TSC - offset_high) * S + kns_new
1540 *
1541 * As the sampling errors potentially range in the thousands of cycles,
1542 * it is possible such a time value has already been observed by the
1543 * guest. To protect against this, we must compute the system time as
1544 * observed by the guest and ensure the new system time is greater.
1545 */
1546 max_kernel_ns = 0;
Zachary Amsdenb183aa52012-02-03 15:43:53 -02001547 if (vcpu->hv_clock.tsc_timestamp) {
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001548 max_kernel_ns = vcpu->last_guest_tsc -
1549 vcpu->hv_clock.tsc_timestamp;
1550 max_kernel_ns = pvclock_scale_delta(max_kernel_ns,
1551 vcpu->hv_clock.tsc_to_system_mul,
1552 vcpu->hv_clock.tsc_shift);
1553 max_kernel_ns += vcpu->last_kernel_ns;
1554 }
1555
Zachary Amsdene48672f2010-08-19 22:07:23 -10001556 if (unlikely(vcpu->hw_tsc_khz != this_tsc_khz)) {
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001557 kvm_get_time_scale(NSEC_PER_SEC / 1000, this_tsc_khz,
1558 &vcpu->hv_clock.tsc_shift,
1559 &vcpu->hv_clock.tsc_to_system_mul);
Zachary Amsdene48672f2010-08-19 22:07:23 -10001560 vcpu->hw_tsc_khz = this_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001561 }
1562
Marcelo Tosattid8281992012-11-27 23:29:01 -02001563 /* with a master <monotonic time, tsc value> tuple,
1564 * pvclock clock reads always increase at the (scaled) rate
1565 * of guest TSC - no need to deal with sampling errors.
1566 */
1567 if (!use_master_clock) {
1568 if (max_kernel_ns > kernel_ns)
1569 kernel_ns = max_kernel_ns;
1570 }
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001571 /* With all the info we got, fill in the values */
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001572 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001573 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001574 vcpu->last_kernel_ns = kernel_ns;
Zachary Amsden28e46392010-09-18 14:38:12 -10001575 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03001576
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001577 /*
1578 * The interface expects us to write an even number signaling that the
1579 * update is finished. Since the guest won't see the intermediate
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001580 * state, we just increase by 2 at the end.
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001581 */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001582 vcpu->hv_clock.version += 2;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001583
Andy Honig0b794592013-02-20 14:48:10 -08001584 if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time,
1585 &guest_hv_clock, sizeof(guest_hv_clock))))
1586 return 0;
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001587
1588 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
Andy Honig0b794592013-02-20 14:48:10 -08001589 pvclock_flags = (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001590
1591 if (vcpu->pvclock_set_guest_stopped_request) {
1592 pvclock_flags |= PVCLOCK_GUEST_STOPPED;
1593 vcpu->pvclock_set_guest_stopped_request = false;
1594 }
1595
Marcelo Tosattid8281992012-11-27 23:29:01 -02001596 /* If the host uses TSC clocksource, then it is stable */
1597 if (use_master_clock)
1598 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
1599
Marcelo Tosatti78c03372012-11-27 23:28:47 -02001600 vcpu->hv_clock.flags = pvclock_flags;
1601
Andy Honig0b794592013-02-20 14:48:10 -08001602 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
1603 &vcpu->hv_clock,
1604 sizeof(vcpu->hv_clock));
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001605 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001606}
1607
Marcelo Tosatti0061d532013-05-09 20:21:41 -03001608/*
1609 * kvmclock updates which are isolated to a given vcpu, such as
1610 * vcpu->cpu migration, should not allow system_timestamp from
1611 * the rest of the vcpus to remain static. Otherwise ntp frequency
1612 * correction applies to one vcpu's system_timestamp but not
1613 * the others.
1614 *
1615 * So in those cases, request a kvmclock update for all vcpus.
1616 * The worst case for a remote vcpu to update its kvmclock
1617 * is then bounded by maximum nohz sleep latency.
1618 */
1619
1620static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
1621{
1622 int i;
1623 struct kvm *kvm = v->kvm;
1624 struct kvm_vcpu *vcpu;
1625
1626 kvm_for_each_vcpu(i, vcpu, kvm) {
1627 set_bit(KVM_REQ_CLOCK_UPDATE, &vcpu->requests);
1628 kvm_vcpu_kick(vcpu);
1629 }
1630}
1631
Avi Kivity9ba075a2008-05-26 20:06:35 +03001632static bool msr_mtrr_valid(unsigned msr)
1633{
1634 switch (msr) {
1635 case 0x200 ... 0x200 + 2 * KVM_NR_VAR_MTRR - 1:
1636 case MSR_MTRRfix64K_00000:
1637 case MSR_MTRRfix16K_80000:
1638 case MSR_MTRRfix16K_A0000:
1639 case MSR_MTRRfix4K_C0000:
1640 case MSR_MTRRfix4K_C8000:
1641 case MSR_MTRRfix4K_D0000:
1642 case MSR_MTRRfix4K_D8000:
1643 case MSR_MTRRfix4K_E0000:
1644 case MSR_MTRRfix4K_E8000:
1645 case MSR_MTRRfix4K_F0000:
1646 case MSR_MTRRfix4K_F8000:
1647 case MSR_MTRRdefType:
1648 case MSR_IA32_CR_PAT:
1649 return true;
1650 case 0x2f8:
1651 return true;
1652 }
1653 return false;
1654}
1655
Marcelo Tosattid6289b92009-06-22 15:27:56 -03001656static bool valid_pat_type(unsigned t)
1657{
1658 return t < 8 && (1 << t) & 0xf3; /* 0, 1, 4, 5, 6, 7 */
1659}
1660
1661static bool valid_mtrr_type(unsigned t)
1662{
1663 return t < 8 && (1 << t) & 0x73; /* 0, 1, 4, 5, 6 */
1664}
1665
1666static bool mtrr_valid(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1667{
1668 int i;
1669
1670 if (!msr_mtrr_valid(msr))
1671 return false;
1672
1673 if (msr == MSR_IA32_CR_PAT) {
1674 for (i = 0; i < 8; i++)
1675 if (!valid_pat_type((data >> (i * 8)) & 0xff))
1676 return false;
1677 return true;
1678 } else if (msr == MSR_MTRRdefType) {
1679 if (data & ~0xcff)
1680 return false;
1681 return valid_mtrr_type(data & 0xff);
1682 } else if (msr >= MSR_MTRRfix64K_00000 && msr <= MSR_MTRRfix4K_F8000) {
1683 for (i = 0; i < 8 ; i++)
1684 if (!valid_mtrr_type((data >> (i * 8)) & 0xff))
1685 return false;
1686 return true;
1687 }
1688
1689 /* variable MTRRs */
1690 return valid_mtrr_type(data & 0xff);
1691}
1692
Avi Kivity9ba075a2008-05-26 20:06:35 +03001693static int set_msr_mtrr(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1694{
Sheng Yang0bed3b52008-10-09 16:01:54 +08001695 u64 *p = (u64 *)&vcpu->arch.mtrr_state.fixed_ranges;
1696
Marcelo Tosattid6289b92009-06-22 15:27:56 -03001697 if (!mtrr_valid(vcpu, msr, data))
Avi Kivity9ba075a2008-05-26 20:06:35 +03001698 return 1;
1699
Sheng Yang0bed3b52008-10-09 16:01:54 +08001700 if (msr == MSR_MTRRdefType) {
1701 vcpu->arch.mtrr_state.def_type = data;
1702 vcpu->arch.mtrr_state.enabled = (data & 0xc00) >> 10;
1703 } else if (msr == MSR_MTRRfix64K_00000)
1704 p[0] = data;
1705 else if (msr == MSR_MTRRfix16K_80000 || msr == MSR_MTRRfix16K_A0000)
1706 p[1 + msr - MSR_MTRRfix16K_80000] = data;
1707 else if (msr >= MSR_MTRRfix4K_C0000 && msr <= MSR_MTRRfix4K_F8000)
1708 p[3 + msr - MSR_MTRRfix4K_C0000] = data;
1709 else if (msr == MSR_IA32_CR_PAT)
1710 vcpu->arch.pat = data;
1711 else { /* Variable MTRRs */
1712 int idx, is_mtrr_mask;
1713 u64 *pt;
1714
1715 idx = (msr - 0x200) / 2;
1716 is_mtrr_mask = msr - 0x200 - 2 * idx;
1717 if (!is_mtrr_mask)
1718 pt =
1719 (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].base_lo;
1720 else
1721 pt =
1722 (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].mask_lo;
1723 *pt = data;
1724 }
1725
1726 kvm_mmu_reset_context(vcpu);
Avi Kivity9ba075a2008-05-26 20:06:35 +03001727 return 0;
1728}
Carsten Otte15c4a642007-10-30 18:44:17 +01001729
Huang Ying890ca9a2009-05-11 16:48:15 +08001730static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1731{
1732 u64 mcg_cap = vcpu->arch.mcg_cap;
1733 unsigned bank_num = mcg_cap & 0xff;
1734
1735 switch (msr) {
1736 case MSR_IA32_MCG_STATUS:
1737 vcpu->arch.mcg_status = data;
1738 break;
1739 case MSR_IA32_MCG_CTL:
1740 if (!(mcg_cap & MCG_CTL_P))
1741 return 1;
1742 if (data != 0 && data != ~(u64)0)
1743 return -1;
1744 vcpu->arch.mcg_ctl = data;
1745 break;
1746 default:
1747 if (msr >= MSR_IA32_MC0_CTL &&
1748 msr < MSR_IA32_MC0_CTL + 4 * bank_num) {
1749 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01001750 /* only 0 or all 1s can be written to IA32_MCi_CTL
1751 * some Linux kernels though clear bit 10 in bank 4 to
1752 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
1753 * this to avoid an uncatched #GP in the guest
1754 */
Huang Ying890ca9a2009-05-11 16:48:15 +08001755 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01001756 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08001757 return -1;
1758 vcpu->arch.mce_banks[offset] = data;
1759 break;
1760 }
1761 return 1;
1762 }
1763 return 0;
1764}
1765
Ed Swierkffde22a2009-10-15 15:21:43 -07001766static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
1767{
1768 struct kvm *kvm = vcpu->kvm;
1769 int lm = is_long_mode(vcpu);
1770 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
1771 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
1772 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
1773 : kvm->arch.xen_hvm_config.blob_size_32;
1774 u32 page_num = data & ~PAGE_MASK;
1775 u64 page_addr = data & PAGE_MASK;
1776 u8 *page;
1777 int r;
1778
1779 r = -E2BIG;
1780 if (page_num >= blob_size)
1781 goto out;
1782 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001783 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
1784 if (IS_ERR(page)) {
1785 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07001786 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001787 }
Ed Swierkffde22a2009-10-15 15:21:43 -07001788 if (kvm_write_guest(kvm, page_addr, page, PAGE_SIZE))
1789 goto out_free;
1790 r = 0;
1791out_free:
1792 kfree(page);
1793out:
1794 return r;
1795}
1796
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001797static bool kvm_hv_hypercall_enabled(struct kvm *kvm)
1798{
1799 return kvm->arch.hv_hypercall & HV_X64_MSR_HYPERCALL_ENABLE;
1800}
1801
1802static bool kvm_hv_msr_partition_wide(u32 msr)
1803{
1804 bool r = false;
1805 switch (msr) {
1806 case HV_X64_MSR_GUEST_OS_ID:
1807 case HV_X64_MSR_HYPERCALL:
1808 r = true;
1809 break;
1810 }
1811
1812 return r;
1813}
1814
1815static int set_msr_hyperv_pw(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1816{
1817 struct kvm *kvm = vcpu->kvm;
1818
1819 switch (msr) {
1820 case HV_X64_MSR_GUEST_OS_ID:
1821 kvm->arch.hv_guest_os_id = data;
1822 /* setting guest os id to zero disables hypercall page */
1823 if (!kvm->arch.hv_guest_os_id)
1824 kvm->arch.hv_hypercall &= ~HV_X64_MSR_HYPERCALL_ENABLE;
1825 break;
1826 case HV_X64_MSR_HYPERCALL: {
1827 u64 gfn;
1828 unsigned long addr;
1829 u8 instructions[4];
1830
1831 /* if guest os id is not set hypercall should remain disabled */
1832 if (!kvm->arch.hv_guest_os_id)
1833 break;
1834 if (!(data & HV_X64_MSR_HYPERCALL_ENABLE)) {
1835 kvm->arch.hv_hypercall = data;
1836 break;
1837 }
1838 gfn = data >> HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_SHIFT;
1839 addr = gfn_to_hva(kvm, gfn);
1840 if (kvm_is_error_hva(addr))
1841 return 1;
1842 kvm_x86_ops->patch_hypercall(vcpu, instructions);
1843 ((unsigned char *)instructions)[3] = 0xc3; /* ret */
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001844 if (__copy_to_user((void __user *)addr, instructions, 4))
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001845 return 1;
1846 kvm->arch.hv_hypercall = data;
1847 break;
1848 }
1849 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03001850 vcpu_unimpl(vcpu, "HYPER-V unimplemented wrmsr: 0x%x "
1851 "data 0x%llx\n", msr, data);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001852 return 1;
1853 }
1854 return 0;
1855}
1856
1857static int set_msr_hyperv(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1858{
Gleb Natapov10388a02010-01-17 15:51:23 +02001859 switch (msr) {
1860 case HV_X64_MSR_APIC_ASSIST_PAGE: {
1861 unsigned long addr;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001862
Gleb Natapov10388a02010-01-17 15:51:23 +02001863 if (!(data & HV_X64_MSR_APIC_ASSIST_PAGE_ENABLE)) {
1864 vcpu->arch.hv_vapic = data;
1865 break;
1866 }
1867 addr = gfn_to_hva(vcpu->kvm, data >>
1868 HV_X64_MSR_APIC_ASSIST_PAGE_ADDRESS_SHIFT);
1869 if (kvm_is_error_hva(addr))
1870 return 1;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001871 if (__clear_user((void __user *)addr, PAGE_SIZE))
Gleb Natapov10388a02010-01-17 15:51:23 +02001872 return 1;
1873 vcpu->arch.hv_vapic = data;
1874 break;
1875 }
1876 case HV_X64_MSR_EOI:
1877 return kvm_hv_vapic_msr_write(vcpu, APIC_EOI, data);
1878 case HV_X64_MSR_ICR:
1879 return kvm_hv_vapic_msr_write(vcpu, APIC_ICR, data);
1880 case HV_X64_MSR_TPR:
1881 return kvm_hv_vapic_msr_write(vcpu, APIC_TASKPRI, data);
1882 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03001883 vcpu_unimpl(vcpu, "HYPER-V unimplemented wrmsr: 0x%x "
1884 "data 0x%llx\n", msr, data);
Gleb Natapov10388a02010-01-17 15:51:23 +02001885 return 1;
1886 }
1887
1888 return 0;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001889}
1890
Gleb Natapov344d9582010-10-14 11:22:50 +02001891static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
1892{
1893 gpa_t gpa = data & ~0x3f;
1894
Guo Chao4a969982012-06-28 15:17:27 +08001895 /* Bits 2:5 are reserved, Should be zero */
Gleb Natapov6adba522010-10-14 11:22:55 +02001896 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02001897 return 1;
1898
1899 vcpu->arch.apf.msr_val = data;
1900
1901 if (!(data & KVM_ASYNC_PF_ENABLED)) {
1902 kvm_clear_async_pf_completion_queue(vcpu);
1903 kvm_async_pf_hash_reset(vcpu);
1904 return 0;
1905 }
1906
Andrew Honig8f964522013-03-29 09:35:21 -07001907 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
1908 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02001909 return 1;
1910
Gleb Natapov6adba522010-10-14 11:22:55 +02001911 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02001912 kvm_async_pf_wakeup_all(vcpu);
1913 return 0;
1914}
1915
Glauber Costa12f9a482011-02-01 14:16:40 -05001916static void kvmclock_reset(struct kvm_vcpu *vcpu)
1917{
Andy Honig0b794592013-02-20 14:48:10 -08001918 vcpu->arch.pv_time_enabled = false;
Glauber Costa12f9a482011-02-01 14:16:40 -05001919}
1920
Glauber Costac9aaa892011-07-11 15:28:14 -04001921static void accumulate_steal_time(struct kvm_vcpu *vcpu)
1922{
1923 u64 delta;
1924
1925 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
1926 return;
1927
1928 delta = current->sched_info.run_delay - vcpu->arch.st.last_steal;
1929 vcpu->arch.st.last_steal = current->sched_info.run_delay;
1930 vcpu->arch.st.accum_steal = delta;
1931}
1932
1933static void record_steal_time(struct kvm_vcpu *vcpu)
1934{
1935 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
1936 return;
1937
1938 if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
1939 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
1940 return;
1941
1942 vcpu->arch.st.steal.steal += vcpu->arch.st.accum_steal;
1943 vcpu->arch.st.steal.version += 2;
1944 vcpu->arch.st.accum_steal = 0;
1945
1946 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
1947 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
1948}
1949
Will Auld8fe8ab42012-11-29 12:42:12 -08001950int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01001951{
Gleb Natapov57537852012-01-15 14:17:22 +02001952 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08001953 u32 msr = msr_info->index;
1954 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02001955
Carsten Otte15c4a642007-10-30 18:44:17 +01001956 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01001957 case MSR_AMD64_NB_CFG:
1958 case MSR_IA32_UCODE_REV:
1959 case MSR_IA32_UCODE_WRITE:
1960 case MSR_VM_HSAVE_PA:
1961 case MSR_AMD64_PATCH_LOADER:
1962 case MSR_AMD64_BU_CFG2:
1963 break;
1964
Carsten Otte15c4a642007-10-30 18:44:17 +01001965 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001966 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02001967 case MSR_K7_HWCR:
1968 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01001969 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08001970 data &= ~(u64)0x8; /* ignore TLB cache disable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02001971 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03001972 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
1973 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02001974 return 1;
1975 }
Carsten Otte15c4a642007-10-30 18:44:17 +01001976 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02001977 case MSR_FAM10H_MMIO_CONF_BASE:
1978 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03001979 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
1980 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02001981 return 1;
1982 }
Carsten Otte15c4a642007-10-30 18:44:17 +01001983 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02001984 case MSR_IA32_DEBUGCTLMSR:
1985 if (!data) {
1986 /* We support the non-activated case already */
1987 break;
1988 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
1989 /* Values other than LBR and BTF are vendor-specific,
1990 thus reserved and should throw a #GP */
1991 return 1;
1992 }
Christoffer Dalla737f252012-06-03 21:17:48 +03001993 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
1994 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02001995 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03001996 case 0x200 ... 0x2ff:
1997 return set_msr_mtrr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01001998 case MSR_IA32_APICBASE:
1999 kvm_set_apic_base(vcpu, data);
2000 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002001 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2002 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002003 case MSR_IA32_TSCDEADLINE:
2004 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2005 break;
Will Auldba904632012-11-29 12:42:50 -08002006 case MSR_IA32_TSC_ADJUST:
2007 if (guest_cpuid_has_tsc_adjust(vcpu)) {
2008 if (!msr_info->host_initiated) {
2009 u64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
2010 kvm_x86_ops->adjust_tsc_offset(vcpu, adj, true);
2011 }
2012 vcpu->arch.ia32_tsc_adjust_msr = data;
2013 }
2014 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002015 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002016 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01002017 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002018 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002019 case MSR_KVM_WALL_CLOCK:
2020 vcpu->kvm->arch.wall_clock = data;
2021 kvm_write_wall_clock(vcpu->kvm, data);
2022 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002023 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002024 case MSR_KVM_SYSTEM_TIME: {
Andy Honig0b794592013-02-20 14:48:10 -08002025 u64 gpa_offset;
Glauber Costa12f9a482011-02-01 14:16:40 -05002026 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002027
2028 vcpu->arch.time = data;
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002029 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002030
2031 /* we verify if the enable bit is set... */
2032 if (!(data & 1))
2033 break;
2034
Andy Honig0b794592013-02-20 14:48:10 -08002035 gpa_offset = data & ~(PAGE_MASK | 1);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002036
Andy Honig0b794592013-02-20 14:48:10 -08002037 if (kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andrew Honig8f964522013-03-29 09:35:21 -07002038 &vcpu->arch.pv_time, data & ~1ULL,
2039 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002040 vcpu->arch.pv_time_enabled = false;
2041 else
2042 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002043
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002044 break;
2045 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002046 case MSR_KVM_ASYNC_PF_EN:
2047 if (kvm_pv_enable_async_pf(vcpu, data))
2048 return 1;
2049 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002050 case MSR_KVM_STEAL_TIME:
2051
2052 if (unlikely(!sched_info_on()))
2053 return 1;
2054
2055 if (data & KVM_STEAL_RESERVED_MASK)
2056 return 1;
2057
2058 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.st.stime,
Andrew Honig8f964522013-03-29 09:35:21 -07002059 data & KVM_STEAL_VALID_BITS,
2060 sizeof(struct kvm_steal_time)))
Glauber Costac9aaa892011-07-11 15:28:14 -04002061 return 1;
2062
2063 vcpu->arch.st.msr_val = data;
2064
2065 if (!(data & KVM_MSR_ENABLED))
2066 break;
2067
2068 vcpu->arch.st.last_steal = current->sched_info.run_delay;
2069
2070 preempt_disable();
2071 accumulate_steal_time(vcpu);
2072 preempt_enable();
2073
2074 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2075
2076 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002077 case MSR_KVM_PV_EOI_EN:
2078 if (kvm_lapic_enable_pv_eoi(vcpu, data))
2079 return 1;
2080 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002081
Huang Ying890ca9a2009-05-11 16:48:15 +08002082 case MSR_IA32_MCG_CTL:
2083 case MSR_IA32_MCG_STATUS:
2084 case MSR_IA32_MC0_CTL ... MSR_IA32_MC0_CTL + 4 * KVM_MAX_MCE_BANKS - 1:
2085 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002086
2087 /* Performance counters are not protected by a CPUID bit,
2088 * so we should check all of them in the generic path for the sake of
2089 * cross vendor migration.
2090 * Writing a zero into the event select MSRs disables them,
2091 * which we perfectly emulate ;-). Any other value should be at least
2092 * reported, some guests depend on them.
2093 */
Andre Przywara71db6022009-06-12 22:01:29 +02002094 case MSR_K7_EVNTSEL0:
2095 case MSR_K7_EVNTSEL1:
2096 case MSR_K7_EVNTSEL2:
2097 case MSR_K7_EVNTSEL3:
2098 if (data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002099 vcpu_unimpl(vcpu, "unimplemented perfctr wrmsr: "
2100 "0x%x data 0x%llx\n", msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002101 break;
2102 /* at least RHEL 4 unconditionally writes to the perfctr registers,
2103 * so we ignore writes to make it happy.
2104 */
Andre Przywara71db6022009-06-12 22:01:29 +02002105 case MSR_K7_PERFCTR0:
2106 case MSR_K7_PERFCTR1:
2107 case MSR_K7_PERFCTR2:
2108 case MSR_K7_PERFCTR3:
Christoffer Dalla737f252012-06-03 21:17:48 +03002109 vcpu_unimpl(vcpu, "unimplemented perfctr wrmsr: "
2110 "0x%x data 0x%llx\n", msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02002111 break;
Gleb Natapov57537852012-01-15 14:17:22 +02002112 case MSR_P6_PERFCTR0:
2113 case MSR_P6_PERFCTR1:
2114 pr = true;
2115 case MSR_P6_EVNTSEL0:
2116 case MSR_P6_EVNTSEL1:
2117 if (kvm_pmu_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002118 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002119
2120 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002121 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2122 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002123 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002124 case MSR_K7_CLK_CTL:
2125 /*
2126 * Ignore all writes to this no longer documented MSR.
2127 * Writes are only relevant for old K7 processors,
2128 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002129 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002130 * affected processor models on the command line, hence
2131 * the need to ignore the workaround.
2132 */
2133 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002134 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
2135 if (kvm_hv_msr_partition_wide(msr)) {
2136 int r;
2137 mutex_lock(&vcpu->kvm->lock);
2138 r = set_msr_hyperv_pw(vcpu, msr, data);
2139 mutex_unlock(&vcpu->kvm->lock);
2140 return r;
2141 } else
2142 return set_msr_hyperv(vcpu, msr, data);
2143 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002144 case MSR_IA32_BBL_CR_CTL3:
2145 /* Drop writes to this legacy MSR -- see rdmsr
2146 * counterpart for further detail.
2147 */
Christoffer Dalla737f252012-06-03 21:17:48 +03002148 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002149 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002150 case MSR_AMD64_OSVW_ID_LENGTH:
2151 if (!guest_cpuid_has_osvw(vcpu))
2152 return 1;
2153 vcpu->arch.osvw.length = data;
2154 break;
2155 case MSR_AMD64_OSVW_STATUS:
2156 if (!guest_cpuid_has_osvw(vcpu))
2157 return 1;
2158 vcpu->arch.osvw.status = data;
2159 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002160 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07002161 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
2162 return xen_hvm_config(vcpu, data);
Gleb Natapovf5132b02011-11-10 14:57:22 +02002163 if (kvm_pmu_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002164 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02002165 if (!ignore_msrs) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002166 vcpu_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n",
2167 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002168 return 1;
2169 } else {
Christoffer Dalla737f252012-06-03 21:17:48 +03002170 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n",
2171 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02002172 break;
2173 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002174 }
2175 return 0;
2176}
2177EXPORT_SYMBOL_GPL(kvm_set_msr_common);
2178
2179
2180/*
2181 * Reads an msr value (of 'msr_index') into 'pdata'.
2182 * Returns 0 on success, non-0 otherwise.
2183 * Assumes vcpu_load() was already called.
2184 */
2185int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2186{
2187 return kvm_x86_ops->get_msr(vcpu, msr_index, pdata);
2188}
2189
Avi Kivity9ba075a2008-05-26 20:06:35 +03002190static int get_msr_mtrr(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2191{
Sheng Yang0bed3b52008-10-09 16:01:54 +08002192 u64 *p = (u64 *)&vcpu->arch.mtrr_state.fixed_ranges;
2193
Avi Kivity9ba075a2008-05-26 20:06:35 +03002194 if (!msr_mtrr_valid(msr))
2195 return 1;
2196
Sheng Yang0bed3b52008-10-09 16:01:54 +08002197 if (msr == MSR_MTRRdefType)
2198 *pdata = vcpu->arch.mtrr_state.def_type +
2199 (vcpu->arch.mtrr_state.enabled << 10);
2200 else if (msr == MSR_MTRRfix64K_00000)
2201 *pdata = p[0];
2202 else if (msr == MSR_MTRRfix16K_80000 || msr == MSR_MTRRfix16K_A0000)
2203 *pdata = p[1 + msr - MSR_MTRRfix16K_80000];
2204 else if (msr >= MSR_MTRRfix4K_C0000 && msr <= MSR_MTRRfix4K_F8000)
2205 *pdata = p[3 + msr - MSR_MTRRfix4K_C0000];
2206 else if (msr == MSR_IA32_CR_PAT)
2207 *pdata = vcpu->arch.pat;
2208 else { /* Variable MTRRs */
2209 int idx, is_mtrr_mask;
2210 u64 *pt;
2211
2212 idx = (msr - 0x200) / 2;
2213 is_mtrr_mask = msr - 0x200 - 2 * idx;
2214 if (!is_mtrr_mask)
2215 pt =
2216 (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].base_lo;
2217 else
2218 pt =
2219 (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].mask_lo;
2220 *pdata = *pt;
2221 }
2222
Avi Kivity9ba075a2008-05-26 20:06:35 +03002223 return 0;
2224}
2225
Huang Ying890ca9a2009-05-11 16:48:15 +08002226static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2227{
2228 u64 data;
2229 u64 mcg_cap = vcpu->arch.mcg_cap;
2230 unsigned bank_num = mcg_cap & 0xff;
2231
2232 switch (msr) {
2233 case MSR_IA32_P5_MC_ADDR:
2234 case MSR_IA32_P5_MC_TYPE:
2235 data = 0;
2236 break;
2237 case MSR_IA32_MCG_CAP:
2238 data = vcpu->arch.mcg_cap;
2239 break;
2240 case MSR_IA32_MCG_CTL:
2241 if (!(mcg_cap & MCG_CTL_P))
2242 return 1;
2243 data = vcpu->arch.mcg_ctl;
2244 break;
2245 case MSR_IA32_MCG_STATUS:
2246 data = vcpu->arch.mcg_status;
2247 break;
2248 default:
2249 if (msr >= MSR_IA32_MC0_CTL &&
2250 msr < MSR_IA32_MC0_CTL + 4 * bank_num) {
2251 u32 offset = msr - MSR_IA32_MC0_CTL;
2252 data = vcpu->arch.mce_banks[offset];
2253 break;
2254 }
2255 return 1;
2256 }
2257 *pdata = data;
2258 return 0;
2259}
2260
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002261static int get_msr_hyperv_pw(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2262{
2263 u64 data = 0;
2264 struct kvm *kvm = vcpu->kvm;
2265
2266 switch (msr) {
2267 case HV_X64_MSR_GUEST_OS_ID:
2268 data = kvm->arch.hv_guest_os_id;
2269 break;
2270 case HV_X64_MSR_HYPERCALL:
2271 data = kvm->arch.hv_hypercall;
2272 break;
2273 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03002274 vcpu_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002275 return 1;
2276 }
2277
2278 *pdata = data;
2279 return 0;
2280}
2281
2282static int get_msr_hyperv(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2283{
2284 u64 data = 0;
2285
2286 switch (msr) {
2287 case HV_X64_MSR_VP_INDEX: {
2288 int r;
2289 struct kvm_vcpu *v;
2290 kvm_for_each_vcpu(r, v, vcpu->kvm)
2291 if (v == vcpu)
2292 data = r;
2293 break;
2294 }
Gleb Natapov10388a02010-01-17 15:51:23 +02002295 case HV_X64_MSR_EOI:
2296 return kvm_hv_vapic_msr_read(vcpu, APIC_EOI, pdata);
2297 case HV_X64_MSR_ICR:
2298 return kvm_hv_vapic_msr_read(vcpu, APIC_ICR, pdata);
2299 case HV_X64_MSR_TPR:
2300 return kvm_hv_vapic_msr_read(vcpu, APIC_TASKPRI, pdata);
Mike Waychison14fa67e2011-07-21 15:38:10 -07002301 case HV_X64_MSR_APIC_ASSIST_PAGE:
Mike Waychisond1613ad2011-07-23 00:31:45 -07002302 data = vcpu->arch.hv_vapic;
2303 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002304 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03002305 vcpu_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002306 return 1;
2307 }
2308 *pdata = data;
2309 return 0;
2310}
2311
Carsten Otte15c4a642007-10-30 18:44:17 +01002312int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
2313{
2314 u64 data;
2315
2316 switch (msr) {
Carsten Otte15c4a642007-10-30 18:44:17 +01002317 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01002318 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002319 case MSR_IA32_DEBUGCTLMSR:
2320 case MSR_IA32_LASTBRANCHFROMIP:
2321 case MSR_IA32_LASTBRANCHTOIP:
2322 case MSR_IA32_LASTINTFROMIP:
2323 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05302324 case MSR_K8_SYSCFG:
2325 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02002326 case MSR_VM_HSAVE_PA:
Amit Shah9e699622009-06-15 13:25:34 +05302327 case MSR_K7_EVNTSEL0:
Amit Shah1f3ee612009-06-30 16:24:28 +05302328 case MSR_K7_PERFCTR0:
Andre Przywara1fdbd482009-06-24 12:44:34 +02002329 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02002330 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002331 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002332 case MSR_AMD64_BU_CFG2:
Carsten Otte15c4a642007-10-30 18:44:17 +01002333 data = 0;
2334 break;
Gleb Natapov57537852012-01-15 14:17:22 +02002335 case MSR_P6_PERFCTR0:
2336 case MSR_P6_PERFCTR1:
2337 case MSR_P6_EVNTSEL0:
2338 case MSR_P6_EVNTSEL1:
2339 if (kvm_pmu_msr(vcpu, msr))
2340 return kvm_pmu_get_msr(vcpu, msr, pdata);
2341 data = 0;
2342 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03002343 case MSR_IA32_UCODE_REV:
2344 data = 0x100000000ULL;
2345 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002346 case MSR_MTRRcap:
2347 data = 0x500 | KVM_NR_VAR_MTRR;
2348 break;
2349 case 0x200 ... 0x2ff:
2350 return get_msr_mtrr(vcpu, msr, pdata);
Carsten Otte15c4a642007-10-30 18:44:17 +01002351 case 0xcd: /* fsb frequency */
2352 data = 3;
2353 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02002354 /*
2355 * MSR_EBC_FREQUENCY_ID
2356 * Conservative value valid for even the basic CPU models.
2357 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
2358 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
2359 * and 266MHz for model 3, or 4. Set Core Clock
2360 * Frequency to System Bus Frequency Ratio to 1 (bits
2361 * 31:24) even though these are only valid for CPU
2362 * models > 2, however guests may end up dividing or
2363 * multiplying by zero otherwise.
2364 */
2365 case MSR_EBC_FREQUENCY_ID:
2366 data = 1 << 24;
2367 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002368 case MSR_IA32_APICBASE:
2369 data = kvm_get_apic_base(vcpu);
2370 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002371 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2372 return kvm_x2apic_msr_read(vcpu, msr, pdata);
2373 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002374 case MSR_IA32_TSCDEADLINE:
2375 data = kvm_get_lapic_tscdeadline_msr(vcpu);
2376 break;
Will Auldba904632012-11-29 12:42:50 -08002377 case MSR_IA32_TSC_ADJUST:
2378 data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
2379 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002380 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002381 data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01002382 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01002383 case MSR_IA32_PERF_STATUS:
2384 /* TSC increment by tick */
2385 data = 1000ULL;
2386 /* CPU multiplier */
2387 data |= (((uint64_t)4ULL) << 40);
2388 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002389 case MSR_EFER:
Avi Kivityf6801df2010-01-21 15:31:50 +02002390 data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01002391 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002392 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002393 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002394 data = vcpu->kvm->arch.wall_clock;
2395 break;
2396 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04002397 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002398 data = vcpu->arch.time;
2399 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02002400 case MSR_KVM_ASYNC_PF_EN:
2401 data = vcpu->arch.apf.msr_val;
2402 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002403 case MSR_KVM_STEAL_TIME:
2404 data = vcpu->arch.st.msr_val;
2405 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03002406 case MSR_KVM_PV_EOI_EN:
2407 data = vcpu->arch.pv_eoi.msr_val;
2408 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002409 case MSR_IA32_P5_MC_ADDR:
2410 case MSR_IA32_P5_MC_TYPE:
2411 case MSR_IA32_MCG_CAP:
2412 case MSR_IA32_MCG_CTL:
2413 case MSR_IA32_MCG_STATUS:
2414 case MSR_IA32_MC0_CTL ... MSR_IA32_MC0_CTL + 4 * KVM_MAX_MCE_BANKS - 1:
2415 return get_msr_mce(vcpu, msr, pdata);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002416 case MSR_K7_CLK_CTL:
2417 /*
2418 * Provide expected ramp-up count for K7. All other
2419 * are set to zero, indicating minimum divisors for
2420 * every field.
2421 *
2422 * This prevents guest kernels on AMD host with CPU
2423 * type 6, model 8 and higher from exploding due to
2424 * the rdmsr failing.
2425 */
2426 data = 0x20000000;
2427 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002428 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
2429 if (kvm_hv_msr_partition_wide(msr)) {
2430 int r;
2431 mutex_lock(&vcpu->kvm->lock);
2432 r = get_msr_hyperv_pw(vcpu, msr, pdata);
2433 mutex_unlock(&vcpu->kvm->lock);
2434 return r;
2435 } else
2436 return get_msr_hyperv(vcpu, msr, pdata);
2437 break;
john cooper91c9c3e2011-01-21 00:21:00 -05002438 case MSR_IA32_BBL_CR_CTL3:
2439 /* This legacy MSR exists but isn't fully documented in current
2440 * silicon. It is however accessed by winxp in very narrow
2441 * scenarios where it sets bit #19, itself documented as
2442 * a "reserved" bit. Best effort attempt to source coherent
2443 * read data here should the balance of the register be
2444 * interpreted by the guest:
2445 *
2446 * L2 cache control register 3: 64GB range, 256KB size,
2447 * enabled, latency 0x1, configured
2448 */
2449 data = 0xbe702111;
2450 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002451 case MSR_AMD64_OSVW_ID_LENGTH:
2452 if (!guest_cpuid_has_osvw(vcpu))
2453 return 1;
2454 data = vcpu->arch.osvw.length;
2455 break;
2456 case MSR_AMD64_OSVW_STATUS:
2457 if (!guest_cpuid_has_osvw(vcpu))
2458 return 1;
2459 data = vcpu->arch.osvw.status;
2460 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002461 default:
Gleb Natapovf5132b02011-11-10 14:57:22 +02002462 if (kvm_pmu_msr(vcpu, msr))
2463 return kvm_pmu_get_msr(vcpu, msr, pdata);
Andre Przywaraed85c062009-06-25 12:36:49 +02002464 if (!ignore_msrs) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002465 vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr);
Andre Przywaraed85c062009-06-25 12:36:49 +02002466 return 1;
2467 } else {
Christoffer Dalla737f252012-06-03 21:17:48 +03002468 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr);
Andre Przywaraed85c062009-06-25 12:36:49 +02002469 data = 0;
2470 }
2471 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002472 }
2473 *pdata = data;
2474 return 0;
2475}
2476EXPORT_SYMBOL_GPL(kvm_get_msr_common);
2477
Carsten Otte313a3dc2007-10-11 19:16:52 +02002478/*
2479 * Read or write a bunch of msrs. All parameters are kernel addresses.
2480 *
2481 * @return number of msrs set successfully.
2482 */
2483static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2484 struct kvm_msr_entry *entries,
2485 int (*do_msr)(struct kvm_vcpu *vcpu,
2486 unsigned index, u64 *data))
2487{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002488 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002489
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002490 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002491 for (i = 0; i < msrs->nmsrs; ++i)
2492 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2493 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002494 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002495
Carsten Otte313a3dc2007-10-11 19:16:52 +02002496 return i;
2497}
2498
2499/*
2500 * Read or write a bunch of msrs. Parameters are user addresses.
2501 *
2502 * @return number of msrs set successfully.
2503 */
2504static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2505 int (*do_msr)(struct kvm_vcpu *vcpu,
2506 unsigned index, u64 *data),
2507 int writeback)
2508{
2509 struct kvm_msrs msrs;
2510 struct kvm_msr_entry *entries;
2511 int r, n;
2512 unsigned size;
2513
2514 r = -EFAULT;
2515 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2516 goto out;
2517
2518 r = -E2BIG;
2519 if (msrs.nmsrs >= MAX_IO_MSRS)
2520 goto out;
2521
Carsten Otte313a3dc2007-10-11 19:16:52 +02002522 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002523 entries = memdup_user(user_msrs->entries, size);
2524 if (IS_ERR(entries)) {
2525 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002526 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002527 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02002528
2529 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2530 if (r < 0)
2531 goto out_free;
2532
2533 r = -EFAULT;
2534 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2535 goto out_free;
2536
2537 r = n;
2538
2539out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002540 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002541out:
2542 return r;
2543}
2544
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002545int kvm_dev_ioctl_check_extension(long ext)
2546{
2547 int r;
2548
2549 switch (ext) {
2550 case KVM_CAP_IRQCHIP:
2551 case KVM_CAP_HLT:
2552 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002553 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002554 case KVM_CAP_EXT_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002555 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002556 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002557 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002558 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002559 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002560 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002561 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002562 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskins721eecb2009-05-20 10:30:49 -04002563 case KVM_CAP_IRQFD:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002564 case KVM_CAP_IOEVENTFD:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002565 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002566 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002567 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002568 case KVM_CAP_XEN_HVM:
Glauber Costaafbcf7a2009-10-16 15:28:36 -04002569 case KVM_CAP_ADJUST_CLOCK:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002570 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002571 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002572 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002573 case KVM_CAP_HYPERV_SPIN:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002574 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002575 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002576 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002577 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002578 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002579 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002580 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002581 case KVM_CAP_READONLY_MEM:
Alex Williamson2a5bab12013-04-16 13:49:18 -06002582#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
2583 case KVM_CAP_ASSIGN_DEV_IRQ:
2584 case KVM_CAP_PCI_2_3:
2585#endif
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002586 r = 1;
2587 break;
Laurent Vivier542472b2008-05-30 16:05:55 +02002588 case KVM_CAP_COALESCED_MMIO:
2589 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
2590 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002591 case KVM_CAP_VAPIC:
2592 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2593 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002594 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002595 r = KVM_SOFT_MAX_VCPUS;
2596 break;
2597 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002598 r = KVM_MAX_VCPUS;
2599 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002600 case KVM_CAP_NR_MEMSLOTS:
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07002601 r = KVM_USER_MEM_SLOTS;
Avi Kivitya988b912008-02-20 11:59:20 +02002602 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002603 case KVM_CAP_PV_MMU: /* obsolete */
2604 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002605 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002606#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002607 case KVM_CAP_IOMMU:
Joerg Roedela1b60c12011-09-06 18:46:34 +02002608 r = iommu_present(&pci_bus_type);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002609 break;
Alex Williamson4cee4b72013-04-29 10:54:08 -06002610#endif
Huang Ying890ca9a2009-05-11 16:48:15 +08002611 case KVM_CAP_MCE:
2612 r = KVM_MAX_MCE_BANKS;
2613 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002614 case KVM_CAP_XCRS:
2615 r = cpu_has_xsave;
2616 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002617 case KVM_CAP_TSC_CONTROL:
2618 r = kvm_has_tsc_control;
2619 break;
Jan Kiszka4d25a0662011-12-21 12:28:29 +01002620 case KVM_CAP_TSC_DEADLINE_TIMER:
2621 r = boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER);
2622 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002623 default:
2624 r = 0;
2625 break;
2626 }
2627 return r;
2628
2629}
2630
Carsten Otte043405e2007-10-10 17:16:19 +02002631long kvm_arch_dev_ioctl(struct file *filp,
2632 unsigned int ioctl, unsigned long arg)
2633{
2634 void __user *argp = (void __user *)arg;
2635 long r;
2636
2637 switch (ioctl) {
2638 case KVM_GET_MSR_INDEX_LIST: {
2639 struct kvm_msr_list __user *user_msr_list = argp;
2640 struct kvm_msr_list msr_list;
2641 unsigned n;
2642
2643 r = -EFAULT;
2644 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2645 goto out;
2646 n = msr_list.nmsrs;
2647 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
2648 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2649 goto out;
2650 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002651 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002652 goto out;
2653 r = -EFAULT;
2654 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2655 num_msrs_to_save * sizeof(u32)))
2656 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002657 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002658 &emulated_msrs,
2659 ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
2660 goto out;
2661 r = 0;
2662 break;
2663 }
Avi Kivity674eea02008-02-11 18:37:23 +02002664 case KVM_GET_SUPPORTED_CPUID: {
2665 struct kvm_cpuid2 __user *cpuid_arg = argp;
2666 struct kvm_cpuid2 cpuid;
2667
2668 r = -EFAULT;
2669 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2670 goto out;
2671 r = kvm_dev_ioctl_get_supported_cpuid(&cpuid,
Amit Shah19355472009-01-14 16:56:00 +00002672 cpuid_arg->entries);
Avi Kivity674eea02008-02-11 18:37:23 +02002673 if (r)
2674 goto out;
2675
2676 r = -EFAULT;
2677 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2678 goto out;
2679 r = 0;
2680 break;
2681 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002682 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
2683 u64 mce_cap;
2684
2685 mce_cap = KVM_MCE_CAP_SUPPORTED;
2686 r = -EFAULT;
2687 if (copy_to_user(argp, &mce_cap, sizeof mce_cap))
2688 goto out;
2689 r = 0;
2690 break;
2691 }
Carsten Otte043405e2007-10-10 17:16:19 +02002692 default:
2693 r = -EINVAL;
2694 }
2695out:
2696 return r;
2697}
2698
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002699static void wbinvd_ipi(void *garbage)
2700{
2701 wbinvd();
2702}
2703
2704static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2705{
2706 return vcpu->kvm->arch.iommu_domain &&
2707 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY);
2708}
2709
Carsten Otte313a3dc2007-10-11 19:16:52 +02002710void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2711{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002712 /* Address WBINVD may be executed by guest */
2713 if (need_emulate_wbinvd(vcpu)) {
2714 if (kvm_x86_ops->has_wbinvd_exit())
2715 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2716 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2717 smp_call_function_single(vcpu->cpu,
2718 wbinvd_ipi, NULL, 1);
2719 }
2720
Carsten Otte313a3dc2007-10-11 19:16:52 +02002721 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02002722
2723 /* Apply any externally detected TSC adjustments (due to suspend) */
2724 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
2725 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
2726 vcpu->arch.tsc_offset_adjustment = 0;
2727 set_bit(KVM_REQ_CLOCK_UPDATE, &vcpu->requests);
2728 }
2729
Zachary Amsden48434c202010-08-19 22:07:24 -10002730 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002731 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
2732 native_read_tsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10002733 if (tsc_delta < 0)
2734 mark_tsc_unstable("KVM discovered backwards TSC");
Zachary Amsdenc2855452010-09-18 14:38:15 -10002735 if (check_tsc_unstable()) {
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002736 u64 offset = kvm_x86_ops->compute_tsc_offset(vcpu,
2737 vcpu->arch.last_guest_tsc);
2738 kvm_x86_ops->write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002739 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002740 }
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02002741 /*
2742 * On a host with synchronized TSC, there is no need to update
2743 * kvmclock on vcpu->cpu migration
2744 */
2745 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d532013-05-09 20:21:41 -03002746 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002747 if (vcpu->cpu != cpu)
2748 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002749 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002750 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002751
2752 accumulate_steal_time(vcpu);
2753 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002754}
2755
2756void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2757{
Avi Kivity02daab22009-12-30 12:40:26 +02002758 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002759 kvm_put_guest_fpu(vcpu);
Zachary Amsden6f526ec2012-02-03 15:43:54 -02002760 vcpu->arch.last_host_tsc = native_read_tsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02002761}
2762
Carsten Otte313a3dc2007-10-11 19:16:52 +02002763static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2764 struct kvm_lapic_state *s)
2765{
Yang Zhang5a717852013-04-11 19:25:16 +08002766 kvm_x86_ops->sync_pir_to_irr(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002767 memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002768
2769 return 0;
2770}
2771
2772static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2773 struct kvm_lapic_state *s)
2774{
Gleb Natapov64eb0622012-08-08 15:24:36 +03002775 kvm_apic_post_state_restore(vcpu, s);
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002776 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002777
2778 return 0;
2779}
2780
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002781static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2782 struct kvm_interrupt *irq)
2783{
Chen Gang02cdb502013-02-27 11:33:25 +08002784 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002785 return -EINVAL;
2786 if (irqchip_in_kernel(vcpu->kvm))
2787 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002788
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002789 kvm_queue_interrupt(vcpu, irq->irq, false);
Avi Kivity3842d132010-07-27 12:30:24 +03002790 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002791
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002792 return 0;
2793}
2794
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002795static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2796{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002797 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002798
2799 return 0;
2800}
2801
Avi Kivityb209749f2007-10-22 16:50:39 +02002802static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2803 struct kvm_tpr_access_ctl *tac)
2804{
2805 if (tac->flags)
2806 return -EINVAL;
2807 vcpu->arch.tpr_access_reporting = !!tac->enabled;
2808 return 0;
2809}
2810
Huang Ying890ca9a2009-05-11 16:48:15 +08002811static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
2812 u64 mcg_cap)
2813{
2814 int r;
2815 unsigned bank_num = mcg_cap & 0xff, bank;
2816
2817 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02002818 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08002819 goto out;
2820 if (mcg_cap & ~(KVM_MCE_CAP_SUPPORTED | 0xff | 0xff0000))
2821 goto out;
2822 r = 0;
2823 vcpu->arch.mcg_cap = mcg_cap;
2824 /* Init IA32_MCG_CTL to all 1s */
2825 if (mcg_cap & MCG_CTL_P)
2826 vcpu->arch.mcg_ctl = ~(u64)0;
2827 /* Init IA32_MCi_CTL to all 1s */
2828 for (bank = 0; bank < bank_num; bank++)
2829 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
2830out:
2831 return r;
2832}
2833
2834static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
2835 struct kvm_x86_mce *mce)
2836{
2837 u64 mcg_cap = vcpu->arch.mcg_cap;
2838 unsigned bank_num = mcg_cap & 0xff;
2839 u64 *banks = vcpu->arch.mce_banks;
2840
2841 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
2842 return -EINVAL;
2843 /*
2844 * if IA32_MCG_CTL is not all 1s, the uncorrected error
2845 * reporting is disabled
2846 */
2847 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
2848 vcpu->arch.mcg_ctl != ~(u64)0)
2849 return 0;
2850 banks += 4 * mce->bank;
2851 /*
2852 * if IA32_MCi_CTL is not all 1s, the uncorrected error
2853 * reporting is disabled for the bank
2854 */
2855 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
2856 return 0;
2857 if (mce->status & MCI_STATUS_UC) {
2858 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02002859 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03002860 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002861 return 0;
2862 }
2863 if (banks[1] & MCI_STATUS_VAL)
2864 mce->status |= MCI_STATUS_OVER;
2865 banks[2] = mce->addr;
2866 banks[3] = mce->misc;
2867 vcpu->arch.mcg_status = mce->mcg_status;
2868 banks[1] = mce->status;
2869 kvm_queue_exception(vcpu, MC_VECTOR);
2870 } else if (!(banks[1] & MCI_STATUS_VAL)
2871 || !(banks[1] & MCI_STATUS_UC)) {
2872 if (banks[1] & MCI_STATUS_VAL)
2873 mce->status |= MCI_STATUS_OVER;
2874 banks[2] = mce->addr;
2875 banks[3] = mce->misc;
2876 banks[1] = mce->status;
2877 } else
2878 banks[1] |= MCI_STATUS_OVER;
2879 return 0;
2880}
2881
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002882static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
2883 struct kvm_vcpu_events *events)
2884{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002885 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01002886 events->exception.injected =
2887 vcpu->arch.exception.pending &&
2888 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002889 events->exception.nr = vcpu->arch.exception.nr;
2890 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002891 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002892 events->exception.error_code = vcpu->arch.exception.error_code;
2893
Jan Kiszka03b82a32010-02-15 10:45:41 +01002894 events->interrupt.injected =
2895 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002896 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01002897 events->interrupt.soft = 0;
Jan Kiszka48005f62010-02-19 19:38:07 +01002898 events->interrupt.shadow =
2899 kvm_x86_ops->get_interrupt_shadow(vcpu,
2900 KVM_X86_SHADOW_INT_MOV_SS | KVM_X86_SHADOW_INT_STI);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002901
2902 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002903 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002904 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002905 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002906
Jan Kiszka66450a22013-03-13 12:42:34 +01002907 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002908
Jan Kiszkadab4b912009-12-06 18:24:15 +01002909 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01002910 | KVM_VCPUEVENT_VALID_SHADOW);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002911 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002912}
2913
2914static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
2915 struct kvm_vcpu_events *events)
2916{
Jan Kiszkadab4b912009-12-06 18:24:15 +01002917 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01002918 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
2919 | KVM_VCPUEVENT_VALID_SHADOW))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002920 return -EINVAL;
2921
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002922 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002923 vcpu->arch.exception.pending = events->exception.injected;
2924 vcpu->arch.exception.nr = events->exception.nr;
2925 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
2926 vcpu->arch.exception.error_code = events->exception.error_code;
2927
2928 vcpu->arch.interrupt.pending = events->interrupt.injected;
2929 vcpu->arch.interrupt.nr = events->interrupt.nr;
2930 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01002931 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
2932 kvm_x86_ops->set_interrupt_shadow(vcpu,
2933 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002934
2935 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01002936 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
2937 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002938 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
2939
Jan Kiszka66450a22013-03-13 12:42:34 +01002940 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
2941 kvm_vcpu_has_lapic(vcpu))
2942 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002943
Avi Kivity3842d132010-07-27 12:30:24 +03002944 kvm_make_request(KVM_REQ_EVENT, vcpu);
2945
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002946 return 0;
2947}
2948
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002949static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
2950 struct kvm_debugregs *dbgregs)
2951{
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002952 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
2953 dbgregs->dr6 = vcpu->arch.dr6;
2954 dbgregs->dr7 = vcpu->arch.dr7;
2955 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002956 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002957}
2958
2959static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
2960 struct kvm_debugregs *dbgregs)
2961{
2962 if (dbgregs->flags)
2963 return -EINVAL;
2964
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002965 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
2966 vcpu->arch.dr6 = dbgregs->dr6;
2967 vcpu->arch.dr7 = dbgregs->dr7;
2968
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002969 return 0;
2970}
2971
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002972static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
2973 struct kvm_xsave *guest_xsave)
2974{
2975 if (cpu_has_xsave)
2976 memcpy(guest_xsave->region,
2977 &vcpu->arch.guest_fpu.state->xsave,
Xiaotian Fengf45755b2010-08-13 15:19:11 +08002978 xstate_size);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002979 else {
2980 memcpy(guest_xsave->region,
2981 &vcpu->arch.guest_fpu.state->fxsave,
2982 sizeof(struct i387_fxsave_struct));
2983 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
2984 XSTATE_FPSSE;
2985 }
2986}
2987
2988static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
2989 struct kvm_xsave *guest_xsave)
2990{
2991 u64 xstate_bv =
2992 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
2993
2994 if (cpu_has_xsave)
2995 memcpy(&vcpu->arch.guest_fpu.state->xsave,
Xiaotian Fengf45755b2010-08-13 15:19:11 +08002996 guest_xsave->region, xstate_size);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002997 else {
2998 if (xstate_bv & ~XSTATE_FPSSE)
2999 return -EINVAL;
3000 memcpy(&vcpu->arch.guest_fpu.state->fxsave,
3001 guest_xsave->region, sizeof(struct i387_fxsave_struct));
3002 }
3003 return 0;
3004}
3005
3006static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
3007 struct kvm_xcrs *guest_xcrs)
3008{
3009 if (!cpu_has_xsave) {
3010 guest_xcrs->nr_xcrs = 0;
3011 return;
3012 }
3013
3014 guest_xcrs->nr_xcrs = 1;
3015 guest_xcrs->flags = 0;
3016 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
3017 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
3018}
3019
3020static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
3021 struct kvm_xcrs *guest_xcrs)
3022{
3023 int i, r = 0;
3024
3025 if (!cpu_has_xsave)
3026 return -EINVAL;
3027
3028 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
3029 return -EINVAL;
3030
3031 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
3032 /* Only support XCR0 currently */
3033 if (guest_xcrs->xcrs[0].xcr == XCR_XFEATURE_ENABLED_MASK) {
3034 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
3035 guest_xcrs->xcrs[0].value);
3036 break;
3037 }
3038 if (r)
3039 r = -EINVAL;
3040 return r;
3041}
3042
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003043/*
3044 * kvm_set_guest_paused() indicates to the guest kernel that it has been
3045 * stopped by the hypervisor. This function will be called from the host only.
3046 * EINVAL is returned when the host attempts to set the flag for a guest that
3047 * does not support pv clocks.
3048 */
3049static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
3050{
Andy Honig0b794592013-02-20 14:48:10 -08003051 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003052 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003053 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003054 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
3055 return 0;
3056}
3057
Carsten Otte313a3dc2007-10-11 19:16:52 +02003058long kvm_arch_vcpu_ioctl(struct file *filp,
3059 unsigned int ioctl, unsigned long arg)
3060{
3061 struct kvm_vcpu *vcpu = filp->private_data;
3062 void __user *argp = (void __user *)arg;
3063 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003064 union {
3065 struct kvm_lapic_state *lapic;
3066 struct kvm_xsave *xsave;
3067 struct kvm_xcrs *xcrs;
3068 void *buffer;
3069 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003070
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003071 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003072 switch (ioctl) {
3073 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003074 r = -EINVAL;
3075 if (!vcpu->arch.apic)
3076 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003077 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003078
Dave Hansenb772ff32008-08-11 10:01:47 -07003079 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003080 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003081 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003082 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003083 if (r)
3084 goto out;
3085 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003086 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003087 goto out;
3088 r = 0;
3089 break;
3090 }
3091 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003092 r = -EINVAL;
3093 if (!vcpu->arch.apic)
3094 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003095 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Guo Chao18595412012-11-02 18:33:21 +08003096 if (IS_ERR(u.lapic))
3097 return PTR_ERR(u.lapic);
Sasha Levinff5c2c02011-12-04 19:36:29 +02003098
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003099 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003100 break;
3101 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003102 case KVM_INTERRUPT: {
3103 struct kvm_interrupt irq;
3104
3105 r = -EFAULT;
3106 if (copy_from_user(&irq, argp, sizeof irq))
3107 goto out;
3108 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003109 break;
3110 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003111 case KVM_NMI: {
3112 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003113 break;
3114 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003115 case KVM_SET_CPUID: {
3116 struct kvm_cpuid __user *cpuid_arg = argp;
3117 struct kvm_cpuid cpuid;
3118
3119 r = -EFAULT;
3120 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3121 goto out;
3122 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003123 break;
3124 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003125 case KVM_SET_CPUID2: {
3126 struct kvm_cpuid2 __user *cpuid_arg = argp;
3127 struct kvm_cpuid2 cpuid;
3128
3129 r = -EFAULT;
3130 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3131 goto out;
3132 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003133 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003134 break;
3135 }
3136 case KVM_GET_CPUID2: {
3137 struct kvm_cpuid2 __user *cpuid_arg = argp;
3138 struct kvm_cpuid2 cpuid;
3139
3140 r = -EFAULT;
3141 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3142 goto out;
3143 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003144 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003145 if (r)
3146 goto out;
3147 r = -EFAULT;
3148 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3149 goto out;
3150 r = 0;
3151 break;
3152 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003153 case KVM_GET_MSRS:
3154 r = msr_io(vcpu, argp, kvm_get_msr, 1);
3155 break;
3156 case KVM_SET_MSRS:
3157 r = msr_io(vcpu, argp, do_set_msr, 0);
3158 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003159 case KVM_TPR_ACCESS_REPORTING: {
3160 struct kvm_tpr_access_ctl tac;
3161
3162 r = -EFAULT;
3163 if (copy_from_user(&tac, argp, sizeof tac))
3164 goto out;
3165 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3166 if (r)
3167 goto out;
3168 r = -EFAULT;
3169 if (copy_to_user(argp, &tac, sizeof tac))
3170 goto out;
3171 r = 0;
3172 break;
3173 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003174 case KVM_SET_VAPIC_ADDR: {
3175 struct kvm_vapic_addr va;
3176
3177 r = -EINVAL;
3178 if (!irqchip_in_kernel(vcpu->kvm))
3179 goto out;
3180 r = -EFAULT;
3181 if (copy_from_user(&va, argp, sizeof va))
3182 goto out;
3183 r = 0;
3184 kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
3185 break;
3186 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003187 case KVM_X86_SETUP_MCE: {
3188 u64 mcg_cap;
3189
3190 r = -EFAULT;
3191 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3192 goto out;
3193 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3194 break;
3195 }
3196 case KVM_X86_SET_MCE: {
3197 struct kvm_x86_mce mce;
3198
3199 r = -EFAULT;
3200 if (copy_from_user(&mce, argp, sizeof mce))
3201 goto out;
3202 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3203 break;
3204 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003205 case KVM_GET_VCPU_EVENTS: {
3206 struct kvm_vcpu_events events;
3207
3208 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3209
3210 r = -EFAULT;
3211 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3212 break;
3213 r = 0;
3214 break;
3215 }
3216 case KVM_SET_VCPU_EVENTS: {
3217 struct kvm_vcpu_events events;
3218
3219 r = -EFAULT;
3220 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3221 break;
3222
3223 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3224 break;
3225 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003226 case KVM_GET_DEBUGREGS: {
3227 struct kvm_debugregs dbgregs;
3228
3229 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3230
3231 r = -EFAULT;
3232 if (copy_to_user(argp, &dbgregs,
3233 sizeof(struct kvm_debugregs)))
3234 break;
3235 r = 0;
3236 break;
3237 }
3238 case KVM_SET_DEBUGREGS: {
3239 struct kvm_debugregs dbgregs;
3240
3241 r = -EFAULT;
3242 if (copy_from_user(&dbgregs, argp,
3243 sizeof(struct kvm_debugregs)))
3244 break;
3245
3246 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3247 break;
3248 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003249 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003250 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003251 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003252 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003253 break;
3254
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003255 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003256
3257 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003258 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003259 break;
3260 r = 0;
3261 break;
3262 }
3263 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003264 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Guo Chao18595412012-11-02 18:33:21 +08003265 if (IS_ERR(u.xsave))
3266 return PTR_ERR(u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003267
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003268 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003269 break;
3270 }
3271 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003272 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003273 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003274 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003275 break;
3276
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003277 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003278
3279 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003280 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003281 sizeof(struct kvm_xcrs)))
3282 break;
3283 r = 0;
3284 break;
3285 }
3286 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02003287 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Guo Chao18595412012-11-02 18:33:21 +08003288 if (IS_ERR(u.xcrs))
3289 return PTR_ERR(u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003290
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003291 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003292 break;
3293 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003294 case KVM_SET_TSC_KHZ: {
3295 u32 user_tsc_khz;
3296
3297 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003298 user_tsc_khz = (u32)arg;
3299
3300 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3301 goto out;
3302
Zachary Amsdencc578282012-02-03 15:43:50 -02003303 if (user_tsc_khz == 0)
3304 user_tsc_khz = tsc_khz;
3305
3306 kvm_set_tsc_khz(vcpu, user_tsc_khz);
Joerg Roedel92a1f122011-03-25 09:44:51 +01003307
3308 r = 0;
3309 goto out;
3310 }
3311 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02003312 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003313 goto out;
3314 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003315 case KVM_KVMCLOCK_CTRL: {
3316 r = kvm_set_guest_paused(vcpu);
3317 goto out;
3318 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003319 default:
3320 r = -EINVAL;
3321 }
3322out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003323 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003324 return r;
3325}
3326
Carsten Otte5b1c1492012-01-04 10:25:23 +01003327int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3328{
3329 return VM_FAULT_SIGBUS;
3330}
3331
Carsten Otte1fe779f2007-10-29 16:08:35 +01003332static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3333{
3334 int ret;
3335
3336 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08003337 return -EINVAL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003338 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3339 return ret;
3340}
3341
Sheng Yangb927a3c2009-07-21 10:42:48 +08003342static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3343 u64 ident_addr)
3344{
3345 kvm->arch.ept_identity_map_addr = ident_addr;
3346 return 0;
3347}
3348
Carsten Otte1fe779f2007-10-29 16:08:35 +01003349static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3350 u32 kvm_nr_mmu_pages)
3351{
3352 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3353 return -EINVAL;
3354
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003355 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003356
3357 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003358 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003359
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003360 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003361 return 0;
3362}
3363
3364static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3365{
Dave Hansen39de71e2010-08-19 18:11:14 -07003366 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003367}
3368
Carsten Otte1fe779f2007-10-29 16:08:35 +01003369static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3370{
3371 int r;
3372
3373 r = 0;
3374 switch (chip->chip_id) {
3375 case KVM_IRQCHIP_PIC_MASTER:
3376 memcpy(&chip->chip.pic,
3377 &pic_irqchip(kvm)->pics[0],
3378 sizeof(struct kvm_pic_state));
3379 break;
3380 case KVM_IRQCHIP_PIC_SLAVE:
3381 memcpy(&chip->chip.pic,
3382 &pic_irqchip(kvm)->pics[1],
3383 sizeof(struct kvm_pic_state));
3384 break;
3385 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003386 r = kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003387 break;
3388 default:
3389 r = -EINVAL;
3390 break;
3391 }
3392 return r;
3393}
3394
3395static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3396{
3397 int r;
3398
3399 r = 0;
3400 switch (chip->chip_id) {
3401 case KVM_IRQCHIP_PIC_MASTER:
Avi Kivityf4f51052010-09-19 18:44:07 +02003402 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003403 memcpy(&pic_irqchip(kvm)->pics[0],
3404 &chip->chip.pic,
3405 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003406 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003407 break;
3408 case KVM_IRQCHIP_PIC_SLAVE:
Avi Kivityf4f51052010-09-19 18:44:07 +02003409 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003410 memcpy(&pic_irqchip(kvm)->pics[1],
3411 &chip->chip.pic,
3412 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003413 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003414 break;
3415 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003416 r = kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003417 break;
3418 default:
3419 r = -EINVAL;
3420 break;
3421 }
3422 kvm_pic_update_irq(pic_irqchip(kvm));
3423 return r;
3424}
3425
Sheng Yange0f63cb2008-03-04 00:50:59 +08003426static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3427{
3428 int r = 0;
3429
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003430 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003431 memcpy(ps, &kvm->arch.vpit->pit_state, sizeof(struct kvm_pit_state));
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003432 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003433 return r;
3434}
3435
3436static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3437{
3438 int r = 0;
3439
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003440 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003441 memcpy(&kvm->arch.vpit->pit_state, ps, sizeof(struct kvm_pit_state));
Beth Kone9f42752009-07-07 11:50:38 -04003442 kvm_pit_load_count(kvm, 0, ps->channels[0].count, 0);
3443 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
3444 return r;
3445}
3446
3447static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3448{
3449 int r = 0;
3450
3451 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3452 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3453 sizeof(ps->channels));
3454 ps->flags = kvm->arch.vpit->pit_state.flags;
3455 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003456 memset(&ps->reserved, 0, sizeof(ps->reserved));
Beth Kone9f42752009-07-07 11:50:38 -04003457 return r;
3458}
3459
3460static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3461{
3462 int r = 0, start = 0;
3463 u32 prev_legacy, cur_legacy;
3464 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3465 prev_legacy = kvm->arch.vpit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
3466 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3467 if (!prev_legacy && cur_legacy)
3468 start = 1;
3469 memcpy(&kvm->arch.vpit->pit_state.channels, &ps->channels,
3470 sizeof(kvm->arch.vpit->pit_state.channels));
3471 kvm->arch.vpit->pit_state.flags = ps->flags;
3472 kvm_pit_load_count(kvm, 0, kvm->arch.vpit->pit_state.channels[0].count, start);
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003473 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003474 return r;
3475}
3476
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003477static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3478 struct kvm_reinject_control *control)
3479{
3480 if (!kvm->arch.vpit)
3481 return -ENXIO;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003482 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Avi Kivity26ef1922012-07-26 18:01:53 +03003483 kvm->arch.vpit->pit_state.reinject = control->pit_reinject;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003484 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003485 return 0;
3486}
3487
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003488/**
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003489 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
3490 * @kvm: kvm instance
3491 * @log: slot id and address to which we copy the log
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003492 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003493 * We need to keep it in mind that VCPU threads can write to the bitmap
3494 * concurrently. So, to avoid losing data, we keep the following order for
3495 * each bit:
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003496 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003497 * 1. Take a snapshot of the bit and clear it if needed.
3498 * 2. Write protect the corresponding page.
3499 * 3. Flush TLB's if needed.
3500 * 4. Copy the snapshot to the userspace.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003501 *
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003502 * Between 2 and 3, the guest may write to the page using the remaining TLB
3503 * entry. This is not a problem because the page will be reported dirty at
3504 * step 4 using the snapshot taken before and step 3 ensures that successive
3505 * writes will be logged for the next call.
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003506 */
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003507int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003508{
Takuya Yoshikawa7850ac52011-11-14 18:23:34 +09003509 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003510 struct kvm_memory_slot *memslot;
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003511 unsigned long n, i;
3512 unsigned long *dirty_bitmap;
3513 unsigned long *dirty_bitmap_buffer;
3514 bool is_dirty = false;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003515
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003516 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003517
Marcelo Tosattib050b012009-12-23 14:35:22 -02003518 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07003519 if (log->slot >= KVM_USER_MEM_SLOTS)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003520 goto out;
3521
Xiao Guangrong28a37542011-11-24 19:04:35 +08003522 memslot = id_to_memslot(kvm->memslots, log->slot);
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003523
3524 dirty_bitmap = memslot->dirty_bitmap;
Marcelo Tosattib050b012009-12-23 14:35:22 -02003525 r = -ENOENT;
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003526 if (!dirty_bitmap)
Marcelo Tosattib050b012009-12-23 14:35:22 -02003527 goto out;
3528
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09003529 n = kvm_dirty_bitmap_bytes(memslot);
Marcelo Tosattib050b012009-12-23 14:35:22 -02003530
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003531 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
3532 memset(dirty_bitmap_buffer, 0, n);
Marcelo Tosattib050b012009-12-23 14:35:22 -02003533
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003534 spin_lock(&kvm->mmu_lock);
Marcelo Tosattib050b012009-12-23 14:35:22 -02003535
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003536 for (i = 0; i < n / sizeof(long); i++) {
3537 unsigned long mask;
3538 gfn_t offset;
Sasha Levincdfca7b2011-12-04 19:36:28 +02003539
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003540 if (!dirty_bitmap[i])
3541 continue;
Marcelo Tosattib050b012009-12-23 14:35:22 -02003542
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003543 is_dirty = true;
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003544
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003545 mask = xchg(&dirty_bitmap[i], 0);
3546 dirty_bitmap_buffer[i] = mask;
Michael S. Tsirkinedde99c2010-10-25 03:21:24 +02003547
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003548 offset = i * BITS_PER_LONG;
3549 kvm_mmu_write_protect_pt_masked(kvm, memslot, offset, mask);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003550 }
Takuya Yoshikawa60c34612012-03-03 14:21:48 +09003551 if (is_dirty)
3552 kvm_flush_remote_tlbs(kvm);
3553
3554 spin_unlock(&kvm->mmu_lock);
3555
3556 r = -EFAULT;
3557 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
3558 goto out;
Marcelo Tosattib050b012009-12-23 14:35:22 -02003559
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003560 r = 0;
3561out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003562 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003563 return r;
3564}
3565
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003566int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
3567 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003568{
3569 if (!irqchip_in_kernel(kvm))
3570 return -ENXIO;
3571
3572 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003573 irq_event->irq, irq_event->level,
3574 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003575 return 0;
3576}
3577
Carsten Otte1fe779f2007-10-29 16:08:35 +01003578long kvm_arch_vm_ioctl(struct file *filp,
3579 unsigned int ioctl, unsigned long arg)
3580{
3581 struct kvm *kvm = filp->private_data;
3582 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003583 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003584 /*
3585 * This union makes it completely explicit to gcc-3.x
3586 * that these two variables' stack usage should be
3587 * combined, not added together.
3588 */
3589 union {
3590 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003591 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003592 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003593 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003594
3595 switch (ioctl) {
3596 case KVM_SET_TSS_ADDR:
3597 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003598 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003599 case KVM_SET_IDENTITY_MAP_ADDR: {
3600 u64 ident_addr;
3601
3602 r = -EFAULT;
3603 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3604 goto out;
3605 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08003606 break;
3607 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003608 case KVM_SET_NR_MMU_PAGES:
3609 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003610 break;
3611 case KVM_GET_NR_MMU_PAGES:
3612 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
3613 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003614 case KVM_CREATE_IRQCHIP: {
3615 struct kvm_pic *vpic;
3616
3617 mutex_lock(&kvm->lock);
3618 r = -EEXIST;
3619 if (kvm->arch.vpic)
3620 goto create_irqchip_unlock;
Avi Kivity3e515702012-03-05 14:23:29 +02003621 r = -EINVAL;
3622 if (atomic_read(&kvm->online_vcpus))
3623 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003624 r = -ENOMEM;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003625 vpic = kvm_create_pic(kvm);
3626 if (vpic) {
Carsten Otte1fe779f2007-10-29 16:08:35 +01003627 r = kvm_ioapic_init(kvm);
3628 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003629 mutex_lock(&kvm->slots_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003630 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
Sasha Levin743eeb02011-07-27 16:00:48 +03003631 &vpic->dev_master);
3632 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
3633 &vpic->dev_slave);
3634 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
3635 &vpic->dev_eclr);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003636 mutex_unlock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003637 kfree(vpic);
3638 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003639 }
3640 } else
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003641 goto create_irqchip_unlock;
3642 smp_wmb();
3643 kvm->arch.vpic = vpic;
3644 smp_wmb();
Avi Kivity399ec802008-11-19 13:58:46 +02003645 r = kvm_setup_default_irq_routing(kvm);
3646 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003647 mutex_lock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003648 mutex_lock(&kvm->irq_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003649 kvm_ioapic_destroy(kvm);
3650 kvm_destroy_pic(kvm);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003651 mutex_unlock(&kvm->irq_lock);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003652 mutex_unlock(&kvm->slots_lock);
Avi Kivity399ec802008-11-19 13:58:46 +02003653 }
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003654 create_irqchip_unlock:
3655 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003656 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003657 }
Sheng Yang78376992008-01-28 05:10:22 +08003658 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003659 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
3660 goto create_pit;
3661 case KVM_CREATE_PIT2:
3662 r = -EFAULT;
3663 if (copy_from_user(&u.pit_config, argp,
3664 sizeof(struct kvm_pit_config)))
3665 goto out;
3666 create_pit:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003667 mutex_lock(&kvm->slots_lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02003668 r = -EEXIST;
3669 if (kvm->arch.vpit)
3670 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08003671 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003672 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08003673 if (kvm->arch.vpit)
3674 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02003675 create_pit_unlock:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003676 mutex_unlock(&kvm->slots_lock);
Sheng Yang78376992008-01-28 05:10:22 +08003677 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003678 case KVM_GET_IRQCHIP: {
3679 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003680 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003681
Sasha Levinff5c2c02011-12-04 19:36:29 +02003682 chip = memdup_user(argp, sizeof(*chip));
3683 if (IS_ERR(chip)) {
3684 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003685 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003686 }
3687
Carsten Otte1fe779f2007-10-29 16:08:35 +01003688 r = -ENXIO;
3689 if (!irqchip_in_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003690 goto get_irqchip_out;
3691 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
3692 if (r)
3693 goto get_irqchip_out;
3694 r = -EFAULT;
3695 if (copy_to_user(argp, chip, sizeof *chip))
3696 goto get_irqchip_out;
3697 r = 0;
3698 get_irqchip_out:
3699 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003700 break;
3701 }
3702 case KVM_SET_IRQCHIP: {
3703 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02003704 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003705
Sasha Levinff5c2c02011-12-04 19:36:29 +02003706 chip = memdup_user(argp, sizeof(*chip));
3707 if (IS_ERR(chip)) {
3708 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003709 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003710 }
3711
Carsten Otte1fe779f2007-10-29 16:08:35 +01003712 r = -ENXIO;
3713 if (!irqchip_in_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003714 goto set_irqchip_out;
3715 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
3716 if (r)
3717 goto set_irqchip_out;
3718 r = 0;
3719 set_irqchip_out:
3720 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003721 break;
3722 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08003723 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003724 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003725 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003726 goto out;
3727 r = -ENXIO;
3728 if (!kvm->arch.vpit)
3729 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003730 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003731 if (r)
3732 goto out;
3733 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003734 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003735 goto out;
3736 r = 0;
3737 break;
3738 }
3739 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003740 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003741 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003742 goto out;
3743 r = -ENXIO;
3744 if (!kvm->arch.vpit)
3745 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003746 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003747 break;
3748 }
Beth Kone9f42752009-07-07 11:50:38 -04003749 case KVM_GET_PIT2: {
3750 r = -ENXIO;
3751 if (!kvm->arch.vpit)
3752 goto out;
3753 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
3754 if (r)
3755 goto out;
3756 r = -EFAULT;
3757 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
3758 goto out;
3759 r = 0;
3760 break;
3761 }
3762 case KVM_SET_PIT2: {
3763 r = -EFAULT;
3764 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
3765 goto out;
3766 r = -ENXIO;
3767 if (!kvm->arch.vpit)
3768 goto out;
3769 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Beth Kone9f42752009-07-07 11:50:38 -04003770 break;
3771 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003772 case KVM_REINJECT_CONTROL: {
3773 struct kvm_reinject_control control;
3774 r = -EFAULT;
3775 if (copy_from_user(&control, argp, sizeof(control)))
3776 goto out;
3777 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003778 break;
3779 }
Ed Swierkffde22a2009-10-15 15:21:43 -07003780 case KVM_XEN_HVM_CONFIG: {
3781 r = -EFAULT;
3782 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
3783 sizeof(struct kvm_xen_hvm_config)))
3784 goto out;
3785 r = -EINVAL;
3786 if (kvm->arch.xen_hvm_config.flags)
3787 goto out;
3788 r = 0;
3789 break;
3790 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003791 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003792 struct kvm_clock_data user_ns;
3793 u64 now_ns;
3794 s64 delta;
3795
3796 r = -EFAULT;
3797 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
3798 goto out;
3799
3800 r = -EINVAL;
3801 if (user_ns.flags)
3802 goto out;
3803
3804 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02003805 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10003806 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003807 delta = user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02003808 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003809 kvm->arch.kvmclock_offset = delta;
3810 break;
3811 }
3812 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003813 struct kvm_clock_data user_ns;
3814 u64 now_ns;
3815
Avi Kivity395c6b02010-10-04 12:55:49 +02003816 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10003817 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003818 user_ns.clock = kvm->arch.kvmclock_offset + now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02003819 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003820 user_ns.flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003821 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003822
3823 r = -EFAULT;
3824 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
3825 goto out;
3826 r = 0;
3827 break;
3828 }
3829
Carsten Otte1fe779f2007-10-29 16:08:35 +01003830 default:
3831 ;
3832 }
3833out:
3834 return r;
3835}
3836
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08003837static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02003838{
3839 u32 dummy[2];
3840 unsigned i, j;
3841
Glauber Costae3267cb2009-10-06 13:24:50 -04003842 /* skip the first msrs in the list. KVM-specific */
3843 for (i = j = KVM_SAVE_MSRS_BEGIN; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02003844 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
3845 continue;
3846 if (j < i)
3847 msrs_to_save[j] = msrs_to_save[i];
3848 j++;
3849 }
3850 num_msrs_to_save = j;
3851}
3852
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003853static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
3854 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01003855{
Avi Kivity70252a12010-01-19 12:51:22 +02003856 int handled = 0;
3857 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003858
Avi Kivity70252a12010-01-19 12:51:22 +02003859 do {
3860 n = min(len, 8);
3861 if (!(vcpu->arch.apic &&
3862 !kvm_iodevice_write(&vcpu->arch.apic->dev, addr, n, v))
3863 && kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, addr, n, v))
3864 break;
3865 handled += n;
3866 addr += n;
3867 len -= n;
3868 v += n;
3869 } while (len);
3870
3871 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003872}
3873
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003874static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01003875{
Avi Kivity70252a12010-01-19 12:51:22 +02003876 int handled = 0;
3877 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003878
Avi Kivity70252a12010-01-19 12:51:22 +02003879 do {
3880 n = min(len, 8);
3881 if (!(vcpu->arch.apic &&
3882 !kvm_iodevice_read(&vcpu->arch.apic->dev, addr, n, v))
3883 && kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, addr, n, v))
3884 break;
3885 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
3886 handled += n;
3887 addr += n;
3888 len -= n;
3889 v += n;
3890 } while (len);
3891
3892 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003893}
3894
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02003895static void kvm_set_segment(struct kvm_vcpu *vcpu,
3896 struct kvm_segment *var, int seg)
3897{
3898 kvm_x86_ops->set_segment(vcpu, var, seg);
3899}
3900
3901void kvm_get_segment(struct kvm_vcpu *vcpu,
3902 struct kvm_segment *var, int seg)
3903{
3904 kvm_x86_ops->get_segment(vcpu, var, seg);
3905}
3906
Xiao Guangronge459e322011-11-28 20:42:16 +08003907gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003908{
3909 gpa_t t_gpa;
Avi Kivityab9ae312010-11-22 17:53:26 +02003910 struct x86_exception exception;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003911
3912 BUG_ON(!mmu_is_nested(vcpu));
3913
3914 /* NPT walks are always user-walks */
3915 access |= PFERR_USER_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02003916 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, &exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003917
3918 return t_gpa;
3919}
3920
Avi Kivityab9ae312010-11-22 17:53:26 +02003921gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
3922 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003923{
3924 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02003925 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003926}
3927
Avi Kivityab9ae312010-11-22 17:53:26 +02003928 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
3929 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003930{
3931 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
3932 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02003933 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003934}
3935
Avi Kivityab9ae312010-11-22 17:53:26 +02003936gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
3937 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003938{
3939 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
3940 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02003941 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003942}
3943
3944/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02003945gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
3946 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003947{
Avi Kivityab9ae312010-11-22 17:53:26 +02003948 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003949}
3950
3951static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
3952 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02003953 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01003954{
3955 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003956 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003957
3958 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02003959 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02003960 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01003961 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02003962 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01003963 int ret;
3964
Avi Kivitybcc55cb2010-11-22 17:53:22 +02003965 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02003966 return X86EMUL_PROPAGATE_FAULT;
Izik Eidus77c20022008-12-29 01:42:19 +02003967 ret = kvm_read_guest(vcpu->kvm, gpa, data, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003968 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03003969 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003970 goto out;
3971 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01003972
Izik Eidus77c20022008-12-29 01:42:19 +02003973 bytes -= toread;
3974 data += toread;
3975 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003976 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003977out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003978 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003979}
Izik Eidus77c20022008-12-29 01:42:19 +02003980
Gleb Natapov1871c602010-02-10 14:21:32 +02003981/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03003982static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
3983 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02003984 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003985{
Avi Kivity0f65dd72011-04-20 13:37:53 +03003986 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02003987 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03003988
Gleb Natapov1871c602010-02-10 14:21:32 +02003989 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02003990 access | PFERR_FETCH_MASK,
3991 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003992}
3993
Nadav Har'El064aea72011-05-25 23:04:56 +03003994int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03003995 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02003996 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003997{
Avi Kivity0f65dd72011-04-20 13:37:53 +03003998 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02003999 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004000
Gleb Natapov1871c602010-02-10 14:21:32 +02004001 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004002 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004003}
Nadav Har'El064aea72011-05-25 23:04:56 +03004004EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004005
Avi Kivity0f65dd72011-04-20 13:37:53 +03004006static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4007 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004008 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004009{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004010 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004011 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004012}
4013
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004014int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004015 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004016 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004017 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004018{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004019 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004020 void *data = val;
4021 int r = X86EMUL_CONTINUE;
4022
4023 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004024 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4025 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004026 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004027 unsigned offset = addr & (PAGE_SIZE-1);
4028 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4029 int ret;
4030
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004031 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004032 return X86EMUL_PROPAGATE_FAULT;
Izik Eidus77c20022008-12-29 01:42:19 +02004033 ret = kvm_write_guest(vcpu->kvm, gpa, data, towrite);
4034 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004035 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004036 goto out;
4037 }
4038
4039 bytes -= towrite;
4040 data += towrite;
4041 addr += towrite;
4042 }
4043out:
4044 return r;
4045}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004046EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004047
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004048static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4049 gpa_t *gpa, struct x86_exception *exception,
4050 bool write)
4051{
Avi Kivity97d64b72012-09-12 14:52:00 +03004052 u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
4053 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004054
Avi Kivity97d64b72012-09-12 14:52:00 +03004055 if (vcpu_match_mmio_gva(vcpu, gva)
4056 && !permission_fault(vcpu->arch.walk_mmu, vcpu->arch.access, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004057 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4058 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004059 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004060 return 1;
4061 }
4062
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004063 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4064
4065 if (*gpa == UNMAPPED_GVA)
4066 return -1;
4067
4068 /* For APIC access vmexit */
4069 if ((*gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4070 return 1;
4071
Xiao Guangrong4f022642011-07-12 03:34:24 +08004072 if (vcpu_match_mmio_gpa(vcpu, *gpa)) {
4073 trace_vcpu_match_mmio(gva, *gpa, write, true);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004074 return 1;
Xiao Guangrong4f022642011-07-12 03:34:24 +08004075 }
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004076
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004077 return 0;
4078}
4079
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004080int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004081 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004082{
4083 int ret;
4084
4085 ret = kvm_write_guest(vcpu->kvm, gpa, val, bytes);
4086 if (ret < 0)
4087 return 0;
Xiao Guangrongf57f2ef2011-09-22 16:56:39 +08004088 kvm_mmu_pte_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004089 return 1;
4090}
4091
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004092struct read_write_emulator_ops {
4093 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4094 int bytes);
4095 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4096 void *val, int bytes);
4097 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4098 int bytes, void *val);
4099 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4100 void *val, int bytes);
4101 bool write;
4102};
4103
4104static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4105{
4106 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004107 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Avi Kivityf78146b2012-04-18 19:22:47 +03004108 vcpu->mmio_fragments[0].gpa, *(u64 *)val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004109 vcpu->mmio_read_completed = 0;
4110 return 1;
4111 }
4112
4113 return 0;
4114}
4115
4116static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4117 void *val, int bytes)
4118{
4119 return !kvm_read_guest(vcpu->kvm, gpa, val, bytes);
4120}
4121
4122static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4123 void *val, int bytes)
4124{
4125 return emulator_write_phys(vcpu, gpa, val, bytes);
4126}
4127
4128static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4129{
4130 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4131 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4132}
4133
4134static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4135 void *val, int bytes)
4136{
4137 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4138 return X86EMUL_IO_NEEDED;
4139}
4140
4141static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4142 void *val, int bytes)
4143{
Avi Kivityf78146b2012-04-18 19:22:47 +03004144 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
4145
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004146 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004147 return X86EMUL_CONTINUE;
4148}
4149
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004150static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004151 .read_write_prepare = read_prepare,
4152 .read_write_emulate = read_emulate,
4153 .read_write_mmio = vcpu_mmio_read,
4154 .read_write_exit_mmio = read_exit_mmio,
4155};
4156
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004157static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004158 .read_write_emulate = write_emulate,
4159 .read_write_mmio = write_mmio,
4160 .read_write_exit_mmio = write_exit_mmio,
4161 .write = true,
4162};
4163
Xiao Guangrong22388a32011-07-13 14:32:31 +08004164static int emulator_read_write_onepage(unsigned long addr, void *val,
4165 unsigned int bytes,
4166 struct x86_exception *exception,
4167 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004168 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004169{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004170 gpa_t gpa;
4171 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004172 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03004173 struct kvm_mmio_fragment *frag;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004174
4175 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004176
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004177 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004178 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004179
4180 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004181 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004182 goto mmio;
4183
Xiao Guangrong22388a32011-07-13 14:32:31 +08004184 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004185 return X86EMUL_CONTINUE;
4186
4187mmio:
4188 /*
4189 * Is this MMIO handled locally?
4190 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004191 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004192 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004193 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004194
Avi Kivity70252a12010-01-19 12:51:22 +02004195 gpa += handled;
4196 bytes -= handled;
4197 val += handled;
4198
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004199 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
4200 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
4201 frag->gpa = gpa;
4202 frag->data = val;
4203 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03004204 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004205}
4206
Xiao Guangrong22388a32011-07-13 14:32:31 +08004207int emulator_read_write(struct x86_emulate_ctxt *ctxt, unsigned long addr,
4208 void *val, unsigned int bytes,
4209 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02004210 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004211{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004212 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03004213 gpa_t gpa;
4214 int rc;
4215
4216 if (ops->read_write_prepare &&
4217 ops->read_write_prepare(vcpu, val, bytes))
4218 return X86EMUL_CONTINUE;
4219
4220 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004221
Carsten Ottebbd9b642007-10-30 18:44:21 +01004222 /* Crossing a page boundary? */
4223 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03004224 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004225
4226 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004227 rc = emulator_read_write_onepage(addr, val, now, exception,
4228 vcpu, ops);
4229
Carsten Ottebbd9b642007-10-30 18:44:21 +01004230 if (rc != X86EMUL_CONTINUE)
4231 return rc;
4232 addr += now;
4233 val += now;
4234 bytes -= now;
4235 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004236
Avi Kivityf78146b2012-04-18 19:22:47 +03004237 rc = emulator_read_write_onepage(addr, val, bytes, exception,
4238 vcpu, ops);
4239 if (rc != X86EMUL_CONTINUE)
4240 return rc;
4241
4242 if (!vcpu->mmio_nr_fragments)
4243 return rc;
4244
4245 gpa = vcpu->mmio_fragments[0].gpa;
4246
4247 vcpu->mmio_needed = 1;
4248 vcpu->mmio_cur_fragment = 0;
4249
Xiao Guangrong87da7e62012-10-24 14:07:59 +08004250 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03004251 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
4252 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4253 vcpu->run->mmio.phys_addr = gpa;
4254
4255 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004256}
4257
4258static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4259 unsigned long addr,
4260 void *val,
4261 unsigned int bytes,
4262 struct x86_exception *exception)
4263{
4264 return emulator_read_write(ctxt, addr, val, bytes,
4265 exception, &read_emultor);
4266}
4267
4268int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
4269 unsigned long addr,
4270 const void *val,
4271 unsigned int bytes,
4272 struct x86_exception *exception)
4273{
4274 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4275 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004276}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004277
Avi Kivitydaea3e72010-03-15 13:59:54 +02004278#define CMPXCHG_TYPE(t, ptr, old, new) \
4279 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4280
4281#ifdef CONFIG_X86_64
4282# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4283#else
4284# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004285 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004286#endif
4287
Avi Kivity0f65dd72011-04-20 13:37:53 +03004288static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4289 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004290 const void *old,
4291 const void *new,
4292 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004293 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004294{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004295 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004296 gpa_t gpa;
4297 struct page *page;
4298 char *kaddr;
4299 bool exchanged;
4300
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004301 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004302 if (bytes > 8 || (bytes & (bytes - 1)))
4303 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004304
Avi Kivitydaea3e72010-03-15 13:59:54 +02004305 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004306
Avi Kivitydaea3e72010-03-15 13:59:54 +02004307 if (gpa == UNMAPPED_GVA ||
4308 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4309 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004310
Avi Kivitydaea3e72010-03-15 13:59:54 +02004311 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4312 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004313
Avi Kivitydaea3e72010-03-15 13:59:54 +02004314 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +08004315 if (is_error_page(page))
Wei Yongjunc19b8bd62010-07-15 08:51:58 +08004316 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004317
Cong Wang8fd75e12011-11-25 23:14:17 +08004318 kaddr = kmap_atomic(page);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004319 kaddr += offset_in_page(gpa);
4320 switch (bytes) {
4321 case 1:
4322 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4323 break;
4324 case 2:
4325 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4326 break;
4327 case 4:
4328 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4329 break;
4330 case 8:
4331 exchanged = CMPXCHG64(kaddr, old, new);
4332 break;
4333 default:
4334 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004335 }
Cong Wang8fd75e12011-11-25 23:14:17 +08004336 kunmap_atomic(kaddr);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004337 kvm_release_page_dirty(page);
4338
4339 if (!exchanged)
4340 return X86EMUL_CMPXCHG_FAILED;
4341
Xiao Guangrongf57f2ef2011-09-22 16:56:39 +08004342 kvm_mmu_pte_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004343
4344 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004345
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004346emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004347 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004348
Avi Kivity0f65dd72011-04-20 13:37:53 +03004349 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004350}
4351
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004352static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4353{
4354 /* TODO: String I/O for in kernel device */
4355 int r;
4356
4357 if (vcpu->arch.pio.in)
4358 r = kvm_io_bus_read(vcpu->kvm, KVM_PIO_BUS, vcpu->arch.pio.port,
4359 vcpu->arch.pio.size, pd);
4360 else
4361 r = kvm_io_bus_write(vcpu->kvm, KVM_PIO_BUS,
4362 vcpu->arch.pio.port, vcpu->arch.pio.size,
4363 pd);
4364 return r;
4365}
4366
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004367static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4368 unsigned short port, void *val,
4369 unsigned int count, bool in)
4370{
4371 trace_kvm_pio(!in, port, size, count);
4372
4373 vcpu->arch.pio.port = port;
4374 vcpu->arch.pio.in = in;
4375 vcpu->arch.pio.count = count;
4376 vcpu->arch.pio.size = size;
4377
4378 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4379 vcpu->arch.pio.count = 0;
4380 return 1;
4381 }
4382
4383 vcpu->run->exit_reason = KVM_EXIT_IO;
4384 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4385 vcpu->run->io.size = size;
4386 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4387 vcpu->run->io.count = count;
4388 vcpu->run->io.port = port;
4389
4390 return 0;
4391}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004392
Avi Kivityca1d4a92011-04-20 13:37:53 +03004393static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4394 int size, unsigned short port, void *val,
4395 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004396{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004397 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004398 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004399
Gleb Natapov79729952010-03-18 15:20:24 +02004400 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004401 goto data_avail;
4402
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004403 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4404 if (ret) {
4405data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004406 memcpy(val, vcpu->arch.pio_data, size * count);
Gleb Natapov79729952010-03-18 15:20:24 +02004407 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004408 return 1;
4409 }
4410
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004411 return 0;
4412}
4413
Avi Kivityca1d4a92011-04-20 13:37:53 +03004414static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4415 int size, unsigned short port,
4416 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004417{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004418 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4419
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004420 memcpy(vcpu->arch.pio_data, val, size * count);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004421 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004422}
4423
Carsten Ottebbd9b642007-10-30 18:44:21 +01004424static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4425{
4426 return kvm_x86_ops->get_segment_base(vcpu, seg);
4427}
4428
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004429static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004430{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004431 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004432}
4433
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004434int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4435{
4436 if (!need_emulate_wbinvd(vcpu))
4437 return X86EMUL_CONTINUE;
4438
4439 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004440 int cpu = get_cpu();
4441
4442 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004443 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4444 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004445 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004446 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004447 } else
4448 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004449 return X86EMUL_CONTINUE;
4450}
4451EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4452
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004453static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4454{
4455 kvm_emulate_wbinvd(emul_to_vcpu(ctxt));
4456}
4457
Avi Kivity717746e2011-04-20 13:37:53 +03004458int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004459{
Avi Kivity717746e2011-04-20 13:37:53 +03004460 return _kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004461}
4462
Avi Kivity717746e2011-04-20 13:37:53 +03004463int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004464{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004465
Avi Kivity717746e2011-04-20 13:37:53 +03004466 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004467}
4468
Gleb Natapov52a46612010-03-18 15:20:03 +02004469static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4470{
4471 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4472}
4473
Avi Kivity717746e2011-04-20 13:37:53 +03004474static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004475{
Avi Kivity717746e2011-04-20 13:37:53 +03004476 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004477 unsigned long value;
4478
4479 switch (cr) {
4480 case 0:
4481 value = kvm_read_cr0(vcpu);
4482 break;
4483 case 2:
4484 value = vcpu->arch.cr2;
4485 break;
4486 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004487 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004488 break;
4489 case 4:
4490 value = kvm_read_cr4(vcpu);
4491 break;
4492 case 8:
4493 value = kvm_get_cr8(vcpu);
4494 break;
4495 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004496 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02004497 return 0;
4498 }
4499
4500 return value;
4501}
4502
Avi Kivity717746e2011-04-20 13:37:53 +03004503static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02004504{
Avi Kivity717746e2011-04-20 13:37:53 +03004505 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03004506 int res = 0;
4507
Gleb Natapov52a46612010-03-18 15:20:03 +02004508 switch (cr) {
4509 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004510 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004511 break;
4512 case 2:
4513 vcpu->arch.cr2 = val;
4514 break;
4515 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004516 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004517 break;
4518 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004519 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004520 break;
4521 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004522 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004523 break;
4524 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03004525 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03004526 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02004527 }
Gleb Natapov0f122442010-04-28 19:15:31 +03004528
4529 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02004530}
4531
Kevin Wolf4cee4792012-02-08 14:34:41 +01004532static void emulator_set_rflags(struct x86_emulate_ctxt *ctxt, ulong val)
4533{
4534 kvm_set_rflags(emul_to_vcpu(ctxt), val);
4535}
4536
Avi Kivity717746e2011-04-20 13:37:53 +03004537static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02004538{
Avi Kivity717746e2011-04-20 13:37:53 +03004539 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02004540}
4541
Avi Kivity4bff1e862011-04-20 13:37:53 +03004542static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004543{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004544 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004545}
4546
Avi Kivity4bff1e862011-04-20 13:37:53 +03004547static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004548{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004549 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004550}
4551
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03004552static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4553{
4554 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
4555}
4556
4557static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4558{
4559 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
4560}
4561
Avi Kivity4bff1e862011-04-20 13:37:53 +03004562static unsigned long emulator_get_cached_segment_base(
4563 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03004564{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004565 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03004566}
4567
Avi Kivity1aa36612011-04-27 13:20:30 +03004568static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
4569 struct desc_struct *desc, u32 *base3,
4570 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004571{
4572 struct kvm_segment var;
4573
Avi Kivity4bff1e862011-04-20 13:37:53 +03004574 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03004575 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004576
Gleb Natapov378a8b02013-01-21 15:36:48 +02004577 if (var.unusable) {
4578 memset(desc, 0, sizeof(*desc));
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004579 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02004580 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004581
4582 if (var.g)
4583 var.limit >>= 12;
4584 set_desc_limit(desc, var.limit);
4585 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02004586#ifdef CONFIG_X86_64
4587 if (base3)
4588 *base3 = var.base >> 32;
4589#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004590 desc->type = var.type;
4591 desc->s = var.s;
4592 desc->dpl = var.dpl;
4593 desc->p = var.present;
4594 desc->avl = var.avl;
4595 desc->l = var.l;
4596 desc->d = var.db;
4597 desc->g = var.g;
4598
4599 return true;
4600}
4601
Avi Kivity1aa36612011-04-27 13:20:30 +03004602static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
4603 struct desc_struct *desc, u32 base3,
4604 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004605{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004606 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004607 struct kvm_segment var;
4608
Avi Kivity1aa36612011-04-27 13:20:30 +03004609 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004610 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02004611#ifdef CONFIG_X86_64
4612 var.base |= ((u64)base3) << 32;
4613#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004614 var.limit = get_desc_limit(desc);
4615 if (desc->g)
4616 var.limit = (var.limit << 12) | 0xfff;
4617 var.type = desc->type;
4618 var.present = desc->p;
4619 var.dpl = desc->dpl;
4620 var.db = desc->d;
4621 var.s = desc->s;
4622 var.l = desc->l;
4623 var.g = desc->g;
4624 var.avl = desc->avl;
4625 var.present = desc->p;
4626 var.unusable = !var.present;
4627 var.padding = 0;
4628
4629 kvm_set_segment(vcpu, &var, seg);
4630 return;
4631}
4632
Avi Kivity717746e2011-04-20 13:37:53 +03004633static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
4634 u32 msr_index, u64 *pdata)
4635{
4636 return kvm_get_msr(emul_to_vcpu(ctxt), msr_index, pdata);
4637}
4638
4639static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
4640 u32 msr_index, u64 data)
4641{
Will Auld8fe8ab42012-11-29 12:42:12 -08004642 struct msr_data msr;
4643
4644 msr.data = data;
4645 msr.index = msr_index;
4646 msr.host_initiated = false;
4647 return kvm_set_msr(emul_to_vcpu(ctxt), &msr);
Avi Kivity717746e2011-04-20 13:37:53 +03004648}
4649
Avi Kivity222d21a2011-11-10 14:57:30 +02004650static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
4651 u32 pmc, u64 *pdata)
4652{
4653 return kvm_pmu_read_pmc(emul_to_vcpu(ctxt), pmc, pdata);
4654}
4655
Avi Kivity6c3287f2011-04-20 15:43:05 +03004656static void emulator_halt(struct x86_emulate_ctxt *ctxt)
4657{
4658 emul_to_vcpu(ctxt)->arch.halt_request = 1;
4659}
4660
Avi Kivity5037f6f2011-03-28 16:53:59 +02004661static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
4662{
4663 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03004664 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02004665 /*
4666 * CR0.TS may reference the host fpu state, not the guest fpu state,
4667 * so it may be clear at this point.
4668 */
4669 clts();
4670}
4671
4672static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
4673{
4674 preempt_enable();
4675}
4676
Avi Kivity29535382011-04-20 13:37:53 +03004677static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004678 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02004679 enum x86_intercept_stage stage)
4680{
Avi Kivity29535382011-04-20 13:37:53 +03004681 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02004682}
4683
Avi Kivity0017f932012-06-07 14:10:16 +03004684static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01004685 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
4686{
Avi Kivity0017f932012-06-07 14:10:16 +03004687 kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01004688}
4689
Avi Kivitydd856ef2012-08-27 23:46:17 +03004690static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
4691{
4692 return kvm_register_read(emul_to_vcpu(ctxt), reg);
4693}
4694
4695static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
4696{
4697 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
4698}
4699
Mathias Krause0225fb52012-08-30 01:30:16 +02004700static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03004701 .read_gpr = emulator_read_gpr,
4702 .write_gpr = emulator_write_gpr,
Gleb Natapov1871c602010-02-10 14:21:32 +02004703 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004704 .write_std = kvm_write_guest_virt_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02004705 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004706 .read_emulated = emulator_read_emulated,
4707 .write_emulated = emulator_write_emulated,
4708 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004709 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004710 .pio_in_emulated = emulator_pio_in_emulated,
4711 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03004712 .get_segment = emulator_get_segment,
4713 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03004714 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004715 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004716 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03004717 .set_gdt = emulator_set_gdt,
4718 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02004719 .get_cr = emulator_get_cr,
4720 .set_cr = emulator_set_cr,
Kevin Wolf4cee4792012-02-08 14:34:41 +01004721 .set_rflags = emulator_set_rflags,
Gleb Natapov9c537242010-03-18 15:20:05 +02004722 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03004723 .get_dr = emulator_get_dr,
4724 .set_dr = emulator_set_dr,
Avi Kivity717746e2011-04-20 13:37:53 +03004725 .set_msr = emulator_set_msr,
4726 .get_msr = emulator_get_msr,
Avi Kivity222d21a2011-11-10 14:57:30 +02004727 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03004728 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004729 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03004730 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02004731 .get_fpu = emulator_get_fpu,
4732 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02004733 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01004734 .get_cpuid = emulator_get_cpuid,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004735};
4736
Gleb Natapov95cb2292010-04-28 19:15:43 +03004737static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
4738{
4739 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu, mask);
4740 /*
4741 * an sti; sti; sequence only disable interrupts for the first
4742 * instruction. So, if the last instruction, be it emulated or
4743 * not, left the system with the INT_STI flag enabled, it
4744 * means that the last instruction is an sti. We should not
4745 * leave the flag on in this case. The same goes for mov ss
4746 */
4747 if (!(int_shadow & mask))
4748 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
4749}
4750
Gleb Natapov54b84862010-04-28 19:15:44 +03004751static void inject_emulated_exception(struct kvm_vcpu *vcpu)
4752{
4753 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02004754 if (ctxt->exception.vector == PF_VECTOR)
Avi Kivity6389ee92010-11-29 16:12:30 +02004755 kvm_propagate_fault(vcpu, &ctxt->exception);
Avi Kivityda9cb572010-11-22 17:53:21 +02004756 else if (ctxt->exception.error_code_valid)
4757 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
4758 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03004759 else
Avi Kivityda9cb572010-11-22 17:53:21 +02004760 kvm_queue_exception(vcpu, ctxt->exception.vector);
Gleb Natapov54b84862010-04-28 19:15:44 +03004761}
4762
Avi Kivitydd856ef2012-08-27 23:46:17 +03004763static void init_decode_cache(struct x86_emulate_ctxt *ctxt)
Takuya Yoshikawab5c9ff72011-05-25 11:09:38 +09004764{
Avi Kivity9dac77f2011-06-01 15:34:25 +03004765 memset(&ctxt->twobyte, 0,
Avi Kivitydd856ef2012-08-27 23:46:17 +03004766 (void *)&ctxt->_regs - (void *)&ctxt->twobyte);
Takuya Yoshikawab5c9ff72011-05-25 11:09:38 +09004767
Avi Kivity9dac77f2011-06-01 15:34:25 +03004768 ctxt->fetch.start = 0;
4769 ctxt->fetch.end = 0;
4770 ctxt->io_read.pos = 0;
4771 ctxt->io_read.end = 0;
4772 ctxt->mem_read.pos = 0;
4773 ctxt->mem_read.end = 0;
Takuya Yoshikawab5c9ff72011-05-25 11:09:38 +09004774}
4775
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004776static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
4777{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09004778 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004779 int cs_db, cs_l;
4780
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004781 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
4782
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09004783 ctxt->eflags = kvm_get_rflags(vcpu);
4784 ctxt->eip = kvm_rip_read(vcpu);
4785 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
4786 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
4787 cs_l ? X86EMUL_MODE_PROT64 :
4788 cs_db ? X86EMUL_MODE_PROT32 :
4789 X86EMUL_MODE_PROT16;
4790 ctxt->guest_mode = is_guest_mode(vcpu);
4791
Avi Kivitydd856ef2012-08-27 23:46:17 +03004792 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004793 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004794}
4795
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004796int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02004797{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004798 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02004799 int ret;
4800
4801 init_emulate_ctxt(vcpu);
4802
Avi Kivity9dac77f2011-06-01 15:34:25 +03004803 ctxt->op_bytes = 2;
4804 ctxt->ad_bytes = 2;
4805 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004806 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02004807
4808 if (ret != X86EMUL_CONTINUE)
4809 return EMULATE_FAIL;
4810
Avi Kivity9dac77f2011-06-01 15:34:25 +03004811 ctxt->eip = ctxt->_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004812 kvm_rip_write(vcpu, ctxt->eip);
4813 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02004814
4815 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004816 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02004817 else
4818 vcpu->arch.interrupt.pending = false;
4819
4820 return EMULATE_DONE;
4821}
4822EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
4823
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004824static int handle_emulation_failure(struct kvm_vcpu *vcpu)
4825{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01004826 int r = EMULATE_DONE;
4827
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004828 ++vcpu->stat.insn_emulation_fail;
4829 trace_kvm_emulate_insn_failed(vcpu);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01004830 if (!is_guest_mode(vcpu)) {
4831 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4832 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
4833 vcpu->run->internal.ndata = 0;
4834 r = EMULATE_FAIL;
4835 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004836 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01004837
4838 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004839}
4840
Xiao Guangrong93c05d32013-01-13 23:49:07 +08004841static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2,
Gleb Natapov991eebf2013-04-11 12:10:51 +03004842 bool write_fault_to_shadow_pgtable,
4843 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03004844{
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08004845 gpa_t gpa = cr2;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08004846 pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03004847
Gleb Natapov991eebf2013-04-11 12:10:51 +03004848 if (emulation_type & EMULTYPE_NO_REEXECUTE)
4849 return false;
4850
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08004851 if (!vcpu->arch.mmu.direct_map) {
4852 /*
4853 * Write permission should be allowed since only
4854 * write access need to be emulated.
4855 */
4856 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03004857
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08004858 /*
4859 * If the mapping is invalid in guest, let cpu retry
4860 * it to generate fault.
4861 */
4862 if (gpa == UNMAPPED_GVA)
4863 return true;
4864 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03004865
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08004866 /*
4867 * Do not retry the unhandleable instruction if it faults on the
4868 * readonly host memory, otherwise it will goto a infinite loop:
4869 * retry instruction -> write #PF -> emulation fail -> retry
4870 * instruction -> ...
4871 */
4872 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08004873
4874 /*
4875 * If the instruction failed on the error pfn, it can not be fixed,
4876 * report the error to userspace.
4877 */
4878 if (is_error_noslot_pfn(pfn))
4879 return false;
4880
4881 kvm_release_pfn_clean(pfn);
4882
4883 /* The instructions are well-emulated on direct mmu. */
4884 if (vcpu->arch.mmu.direct_map) {
4885 unsigned int indirect_shadow_pages;
4886
4887 spin_lock(&vcpu->kvm->mmu_lock);
4888 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
4889 spin_unlock(&vcpu->kvm->mmu_lock);
4890
4891 if (indirect_shadow_pages)
4892 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
4893
Gleb Natapova6f177e2010-07-08 12:41:12 +03004894 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08004895 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03004896
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08004897 /*
4898 * if emulation was due to access to shadowed page table
4899 * and it failed try to unshadow page and re-enter the
4900 * guest to let CPU execute the instruction.
4901 */
4902 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08004903
4904 /*
4905 * If the access faults on its page table, it can not
4906 * be fixed by unprotecting shadow page and it should
4907 * be reported to userspace.
4908 */
4909 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03004910}
4911
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004912static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
4913 unsigned long cr2, int emulation_type)
4914{
4915 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4916 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
4917
4918 last_retry_eip = vcpu->arch.last_retry_eip;
4919 last_retry_addr = vcpu->arch.last_retry_addr;
4920
4921 /*
4922 * If the emulation is caused by #PF and it is non-page_table
4923 * writing instruction, it means the VM-EXIT is caused by shadow
4924 * page protected, we can zap the shadow page and retry this
4925 * instruction directly.
4926 *
4927 * Note: if the guest uses a non-page-table modifying instruction
4928 * on the PDE that points to the instruction, then we will unmap
4929 * the instruction and go to an infinite loop. So, we cache the
4930 * last retried eip and the last fault address, if we meet the eip
4931 * and the address again, we can break out of the potential infinite
4932 * loop.
4933 */
4934 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
4935
4936 if (!(emulation_type & EMULTYPE_RETRY))
4937 return false;
4938
4939 if (x86_page_table_writing_insn(ctxt))
4940 return false;
4941
4942 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
4943 return false;
4944
4945 vcpu->arch.last_retry_eip = ctxt->eip;
4946 vcpu->arch.last_retry_addr = cr2;
4947
4948 if (!vcpu->arch.mmu.direct_map)
4949 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
4950
Xiao Guangrong22368022013-01-13 23:44:12 +08004951 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004952
4953 return true;
4954}
4955
Gleb Natapov716d51a2012-09-03 15:24:26 +03004956static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
4957static int complete_emulated_pio(struct kvm_vcpu *vcpu);
4958
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02004959static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
4960 unsigned long *db)
4961{
4962 u32 dr6 = 0;
4963 int i;
4964 u32 enable, rwlen;
4965
4966 enable = dr7;
4967 rwlen = dr7 >> 16;
4968 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
4969 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
4970 dr6 |= (1 << i);
4971 return dr6;
4972}
4973
4974static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
4975{
4976 struct kvm_run *kvm_run = vcpu->run;
4977 unsigned long eip = vcpu->arch.emulate_ctxt.eip;
4978 u32 dr6 = 0;
4979
4980 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
4981 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
4982 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
4983 vcpu->arch.guest_debug_dr7,
4984 vcpu->arch.eff_db);
4985
4986 if (dr6 != 0) {
4987 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
4988 kvm_run->debug.arch.pc = kvm_rip_read(vcpu) +
4989 get_segment_base(vcpu, VCPU_SREG_CS);
4990
4991 kvm_run->debug.arch.exception = DB_VECTOR;
4992 kvm_run->exit_reason = KVM_EXIT_DEBUG;
4993 *r = EMULATE_USER_EXIT;
4994 return true;
4995 }
4996 }
4997
4998 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK)) {
4999 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
5000 vcpu->arch.dr7,
5001 vcpu->arch.db);
5002
5003 if (dr6 != 0) {
5004 vcpu->arch.dr6 &= ~15;
5005 vcpu->arch.dr6 |= dr6;
5006 kvm_queue_exception(vcpu, DB_VECTOR);
5007 *r = EMULATE_DONE;
5008 return true;
5009 }
5010 }
5011
5012 return false;
5013}
5014
Andre Przywara51d8b662010-12-21 11:12:02 +01005015int x86_emulate_instruction(struct kvm_vcpu *vcpu,
5016 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01005017 int emulation_type,
5018 void *insn,
5019 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005020{
Gleb Natapov95cb2292010-04-28 19:15:43 +03005021 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005022 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005023 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005024 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005025
Xiao Guangrong93c05d32013-01-13 23:49:07 +08005026 /*
5027 * Clear write_fault_to_shadow_pgtable here to ensure it is
5028 * never reused.
5029 */
5030 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03005031 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03005032
Sheng Yang571008d2008-01-02 14:49:22 +08005033 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03005034 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02005035
5036 /*
5037 * We will reenter on the same instruction since
5038 * we do not set complete_userspace_io. This does not
5039 * handle watchpoints yet, those would be handled in
5040 * the emulate_ops.
5041 */
5042 if (kvm_vcpu_check_breakpoint(vcpu, &r))
5043 return r;
5044
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005045 ctxt->interruptibility = 0;
5046 ctxt->have_exception = false;
5047 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005048
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005049 ctxt->only_vendor_specific_insn
Avi Kivity40059962011-02-01 16:32:04 +02005050 = emulation_type & EMULTYPE_TRAP_UD;
5051
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005052 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02005053
Avi Kivitye46479f2010-04-11 13:05:16 +03005054 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02005055 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09005056 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02005057 if (emulation_type & EMULTYPE_TRAP_UD)
5058 return EMULATE_FAIL;
Gleb Natapov991eebf2013-04-11 12:10:51 +03005059 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5060 emulation_type))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005061 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005062 if (emulation_type & EMULTYPE_SKIP)
5063 return EMULATE_FAIL;
5064 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005065 }
5066 }
5067
Gleb Natapovba8afb62009-04-12 13:36:57 +03005068 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03005069 kvm_rip_write(vcpu, ctxt->_eip);
Gleb Natapovba8afb62009-04-12 13:36:57 +03005070 return EMULATE_DONE;
5071 }
5072
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08005073 if (retry_instruction(ctxt, cr2, emulation_type))
5074 return EMULATE_DONE;
5075
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005076 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005077 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005078 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
5079 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03005080 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005081 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03005082
Gleb Natapov5cd21912010-03-18 15:20:26 +02005083restart:
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005084 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005085
Joerg Roedel775fde82011-04-04 12:39:24 +02005086 if (r == EMULATION_INTERCEPTED)
5087 return EMULATE_DONE;
5088
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005089 if (r == EMULATION_FAILED) {
Gleb Natapov991eebf2013-04-11 12:10:51 +03005090 if (reexecute_instruction(vcpu, cr2, write_fault_to_spt,
5091 emulation_type))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005092 return EMULATE_DONE;
5093
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03005094 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005095 }
5096
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005097 if (ctxt->have_exception) {
Gleb Natapove85d28f2010-07-29 15:11:52 +03005098 inject_emulated_exception(vcpu);
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005099 r = EMULATE_DONE;
5100 } else if (vcpu->arch.pio.count) {
Gleb Natapove85d28f2010-07-29 15:11:52 +03005101 if (!vcpu->arch.pio.in)
5102 vcpu->arch.pio.count = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005103 else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005104 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005105 vcpu->arch.complete_userspace_io = complete_emulated_pio;
5106 }
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005107 r = EMULATE_USER_EXIT;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005108 } else if (vcpu->mmio_needed) {
5109 if (!vcpu->mmio_is_write)
5110 writeback = false;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005111 r = EMULATE_USER_EXIT;
Gleb Natapov716d51a2012-09-03 15:24:26 +03005112 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005113 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03005114 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03005115 else
5116 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03005117
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005118 if (writeback) {
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005119 toggle_interruptibility(vcpu, ctxt->interruptibility);
5120 kvm_set_rflags(vcpu, ctxt->eflags);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005121 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005122 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005123 kvm_rip_write(vcpu, ctxt->eip);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005124 } else
5125 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005126
Gleb Natapove85d28f2010-07-29 15:11:52 +03005127 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005128}
Andre Przywara51d8b662010-12-21 11:12:02 +01005129EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005130
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005131int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005132{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005133 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005134 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5135 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005136 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005137 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005138 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005139}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005140EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005141
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005142static void tsc_bad(void *info)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005143{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005144 __this_cpu_write(cpu_tsc_khz, 0);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005145}
5146
5147static void tsc_khz_changed(void *data)
5148{
5149 struct cpufreq_freqs *freq = data;
5150 unsigned long khz = 0;
5151
5152 if (data)
5153 khz = freq->new;
5154 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5155 khz = cpufreq_quick_get(raw_smp_processor_id());
5156 if (!khz)
5157 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005158 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005159}
5160
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005161static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5162 void *data)
5163{
5164 struct cpufreq_freqs *freq = data;
5165 struct kvm *kvm;
5166 struct kvm_vcpu *vcpu;
5167 int i, send_ipi = 0;
5168
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005169 /*
5170 * We allow guests to temporarily run on slowing clocks,
5171 * provided we notify them after, or to run on accelerating
5172 * clocks, provided we notify them before. Thus time never
5173 * goes backwards.
5174 *
5175 * However, we have a problem. We can't atomically update
5176 * the frequency of a given CPU from this function; it is
5177 * merely a notifier, which can be called from any CPU.
5178 * Changing the TSC frequency at arbitrary points in time
5179 * requires a recomputation of local variables related to
5180 * the TSC for each VCPU. We must flag these local variables
5181 * to be updated and be sure the update takes place with the
5182 * new frequency before any guests proceed.
5183 *
5184 * Unfortunately, the combination of hotplug CPU and frequency
5185 * change creates an intractable locking scenario; the order
5186 * of when these callouts happen is undefined with respect to
5187 * CPU hotplug, and they can race with each other. As such,
5188 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5189 * undefined; you can actually have a CPU frequency change take
5190 * place in between the computation of X and the setting of the
5191 * variable. To protect against this problem, all updates of
5192 * the per_cpu tsc_khz variable are done in an interrupt
5193 * protected IPI, and all callers wishing to update the value
5194 * must wait for a synchronous IPI to complete (which is trivial
5195 * if the caller is on the CPU already). This establishes the
5196 * necessary total order on variable updates.
5197 *
5198 * Note that because a guest time update may take place
5199 * anytime after the setting of the VCPU's request bit, the
5200 * correct TSC value must be set before the request. However,
5201 * to ensure the update actually makes it to any guest which
5202 * starts running in hardware virtualization between the set
5203 * and the acquisition of the spinlock, we must also ping the
5204 * CPU after setting the request bit.
5205 *
5206 */
5207
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005208 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5209 return 0;
5210 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5211 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005212
5213 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005214
Jan Kiszkae935b832011-02-08 12:55:33 +01005215 raw_spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005216 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005217 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005218 if (vcpu->cpu != freq->cpu)
5219 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005220 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005221 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005222 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005223 }
5224 }
Jan Kiszkae935b832011-02-08 12:55:33 +01005225 raw_spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005226
5227 if (freq->old < freq->new && send_ipi) {
5228 /*
5229 * We upscale the frequency. Must make the guest
5230 * doesn't see old kvmclock values while running with
5231 * the new frequency, otherwise we risk the guest sees
5232 * time go backwards.
5233 *
5234 * In case we update the frequency for another cpu
5235 * (which might be in guest context) send an interrupt
5236 * to kick the cpu out of guest context. Next time
5237 * guest context is entered kvmclock will be updated,
5238 * so the guest will not see stale values.
5239 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005240 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005241 }
5242 return 0;
5243}
5244
5245static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005246 .notifier_call = kvmclock_cpufreq_notifier
5247};
5248
5249static int kvmclock_cpu_notifier(struct notifier_block *nfb,
5250 unsigned long action, void *hcpu)
5251{
5252 unsigned int cpu = (unsigned long)hcpu;
5253
5254 switch (action) {
5255 case CPU_ONLINE:
5256 case CPU_DOWN_FAILED:
5257 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
5258 break;
5259 case CPU_DOWN_PREPARE:
5260 smp_call_function_single(cpu, tsc_bad, NULL, 1);
5261 break;
5262 }
5263 return NOTIFY_OK;
5264}
5265
5266static struct notifier_block kvmclock_cpu_notifier_block = {
5267 .notifier_call = kvmclock_cpu_notifier,
5268 .priority = -INT_MAX
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005269};
5270
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005271static void kvm_timer_init(void)
5272{
5273 int cpu;
5274
Zachary Amsdenc2855452010-09-18 14:38:15 -10005275 max_tsc_khz = tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005276 register_hotcpu_notifier(&kvmclock_cpu_notifier_block);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005277 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005278#ifdef CONFIG_CPU_FREQ
5279 struct cpufreq_policy policy;
5280 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005281 cpu = get_cpu();
5282 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005283 if (policy.cpuinfo.max_freq)
5284 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005285 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005286#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005287 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5288 CPUFREQ_TRANSITION_NOTIFIER);
5289 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005290 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005291 for_each_online_cpu(cpu)
5292 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005293}
5294
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005295static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5296
Gleb Natapovf5132b02011-11-10 14:57:22 +02005297int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005298{
Alex,Shi086c9852011-10-20 15:34:01 +08005299 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005300}
5301
5302static int kvm_is_user_mode(void)
5303{
5304 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005305
Alex,Shi086c9852011-10-20 15:34:01 +08005306 if (__this_cpu_read(current_vcpu))
5307 user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005308
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005309 return user_mode != 0;
5310}
5311
5312static unsigned long kvm_get_guest_ip(void)
5313{
5314 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005315
Alex,Shi086c9852011-10-20 15:34:01 +08005316 if (__this_cpu_read(current_vcpu))
5317 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005318
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005319 return ip;
5320}
5321
5322static struct perf_guest_info_callbacks kvm_guest_cbs = {
5323 .is_in_guest = kvm_is_in_guest,
5324 .is_user_mode = kvm_is_user_mode,
5325 .get_guest_ip = kvm_get_guest_ip,
5326};
5327
5328void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5329{
Alex,Shi086c9852011-10-20 15:34:01 +08005330 __this_cpu_write(current_vcpu, vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005331}
5332EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5333
5334void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5335{
Alex,Shi086c9852011-10-20 15:34:01 +08005336 __this_cpu_write(current_vcpu, NULL);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005337}
5338EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5339
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005340static void kvm_set_mmio_spte_mask(void)
5341{
5342 u64 mask;
5343 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5344
5345 /*
5346 * Set the reserved bits and the present bit of an paging-structure
5347 * entry to generate page fault with PFER.RSV = 1.
5348 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08005349 /* Mask the reserved physical address bits. */
5350 mask = ((1ull << (51 - maxphyaddr + 1)) - 1) << maxphyaddr;
5351
5352 /* Bit 62 is always reserved for 32bit host. */
5353 mask |= 0x3ull << 62;
5354
5355 /* Set the present bit. */
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005356 mask |= 1ull;
5357
5358#ifdef CONFIG_X86_64
5359 /*
5360 * If reserved bit is not supported, clear the present bit to disable
5361 * mmio page fault.
5362 */
5363 if (maxphyaddr == 52)
5364 mask &= ~1ull;
5365#endif
5366
5367 kvm_mmu_set_mmio_spte_mask(mask);
5368}
5369
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005370#ifdef CONFIG_X86_64
5371static void pvclock_gtod_update_fn(struct work_struct *work)
5372{
Marcelo Tosattid8281992012-11-27 23:29:01 -02005373 struct kvm *kvm;
5374
5375 struct kvm_vcpu *vcpu;
5376 int i;
5377
5378 raw_spin_lock(&kvm_lock);
5379 list_for_each_entry(kvm, &vm_list, vm_list)
5380 kvm_for_each_vcpu(i, vcpu, kvm)
5381 set_bit(KVM_REQ_MASTERCLOCK_UPDATE, &vcpu->requests);
5382 atomic_set(&kvm_guest_has_master_clock, 0);
5383 raw_spin_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005384}
5385
5386static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
5387
5388/*
5389 * Notification about pvclock gtod data update.
5390 */
5391static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
5392 void *priv)
5393{
5394 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
5395 struct timekeeper *tk = priv;
5396
5397 update_pvclock_gtod(tk);
5398
5399 /* disable master clock if host does not trust, or does not
5400 * use, TSC clocksource
5401 */
5402 if (gtod->clock.vclock_mode != VCLOCK_TSC &&
5403 atomic_read(&kvm_guest_has_master_clock) != 0)
5404 queue_work(system_long_wq, &pvclock_gtod_work);
5405
5406 return 0;
5407}
5408
5409static struct notifier_block pvclock_gtod_notifier = {
5410 .notifier_call = pvclock_gtod_notify,
5411};
5412#endif
5413
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005414int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02005415{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005416 int r;
Mathias Krause6b61edf2013-06-26 20:36:23 +02005417 struct kvm_x86_ops *ops = opaque;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005418
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005419 if (kvm_x86_ops) {
5420 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005421 r = -EEXIST;
5422 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005423 }
5424
5425 if (!ops->cpu_has_kvm_support()) {
5426 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005427 r = -EOPNOTSUPP;
5428 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005429 }
5430 if (ops->disabled_by_bios()) {
5431 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005432 r = -EOPNOTSUPP;
5433 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005434 }
5435
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005436 r = -ENOMEM;
5437 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
5438 if (!shared_msrs) {
5439 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
5440 goto out;
5441 }
5442
Avi Kivity97db56c2008-01-13 13:23:56 +02005443 r = kvm_mmu_module_init();
5444 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005445 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02005446
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005447 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02005448 kvm_init_msr_list();
5449
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005450 kvm_x86_ops = ops;
Sheng Yang7b523452008-04-25 21:13:50 +08005451 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005452 PT_DIRTY_MASK, PT64_NX_MASK, 0);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005453
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005454 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005455
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005456 perf_register_guest_info_callbacks(&kvm_guest_cbs);
5457
Dexuan Cui2acf9232010-06-10 11:27:12 +08005458 if (cpu_has_xsave)
5459 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
5460
Gleb Natapovc5cc4212012-08-05 15:58:30 +03005461 kvm_lapic_init();
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005462#ifdef CONFIG_X86_64
5463 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
5464#endif
5465
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005466 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005467
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005468out_free_percpu:
5469 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005470out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005471 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02005472}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005473
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005474void kvm_arch_exit(void)
5475{
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005476 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
5477
Jan Kiszka888d2562009-04-17 19:24:58 +02005478 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5479 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
5480 CPUFREQ_TRANSITION_NOTIFIER);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005481 unregister_hotcpu_notifier(&kvmclock_cpu_notifier_block);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02005482#ifdef CONFIG_X86_64
5483 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
5484#endif
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005485 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005486 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02005487 free_percpu(shared_msrs);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005488}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005489
Hollis Blanchard8776e512007-10-31 17:24:24 -05005490int kvm_emulate_halt(struct kvm_vcpu *vcpu)
5491{
5492 ++vcpu->stat.halt_exits;
5493 if (irqchip_in_kernel(vcpu->kvm)) {
Avi Kivitya4535292008-04-13 17:54:35 +03005494 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005495 return 1;
5496 } else {
5497 vcpu->run->exit_reason = KVM_EXIT_HLT;
5498 return 0;
5499 }
5500}
5501EXPORT_SYMBOL_GPL(kvm_emulate_halt);
5502
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005503int kvm_hv_hypercall(struct kvm_vcpu *vcpu)
5504{
5505 u64 param, ingpa, outgpa, ret;
5506 uint16_t code, rep_idx, rep_cnt, res = HV_STATUS_SUCCESS, rep_done = 0;
5507 bool fast, longmode;
5508 int cs_db, cs_l;
5509
5510 /*
5511 * hypercall generates UD from non zero cpl and real mode
5512 * per HYPER-V spec
5513 */
Avi Kivity3eeb3282010-01-21 15:31:48 +02005514 if (kvm_x86_ops->get_cpl(vcpu) != 0 || !is_protmode(vcpu)) {
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005515 kvm_queue_exception(vcpu, UD_VECTOR);
5516 return 0;
5517 }
5518
5519 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5520 longmode = is_long_mode(vcpu) && cs_l == 1;
5521
5522 if (!longmode) {
Gleb Natapovccd46932010-01-19 15:06:38 +02005523 param = ((u64)kvm_register_read(vcpu, VCPU_REGS_RDX) << 32) |
5524 (kvm_register_read(vcpu, VCPU_REGS_RAX) & 0xffffffff);
5525 ingpa = ((u64)kvm_register_read(vcpu, VCPU_REGS_RBX) << 32) |
5526 (kvm_register_read(vcpu, VCPU_REGS_RCX) & 0xffffffff);
5527 outgpa = ((u64)kvm_register_read(vcpu, VCPU_REGS_RDI) << 32) |
5528 (kvm_register_read(vcpu, VCPU_REGS_RSI) & 0xffffffff);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005529 }
5530#ifdef CONFIG_X86_64
5531 else {
5532 param = kvm_register_read(vcpu, VCPU_REGS_RCX);
5533 ingpa = kvm_register_read(vcpu, VCPU_REGS_RDX);
5534 outgpa = kvm_register_read(vcpu, VCPU_REGS_R8);
5535 }
5536#endif
5537
5538 code = param & 0xffff;
5539 fast = (param >> 16) & 0x1;
5540 rep_cnt = (param >> 32) & 0xfff;
5541 rep_idx = (param >> 48) & 0xfff;
5542
5543 trace_kvm_hv_hypercall(code, fast, rep_cnt, rep_idx, ingpa, outgpa);
5544
Gleb Natapovc25bc162010-01-17 15:51:24 +02005545 switch (code) {
5546 case HV_X64_HV_NOTIFY_LONG_SPIN_WAIT:
5547 kvm_vcpu_on_spin(vcpu);
5548 break;
5549 default:
5550 res = HV_STATUS_INVALID_HYPERCALL_CODE;
5551 break;
5552 }
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005553
5554 ret = res | (((u64)rep_done & 0xfff) << 32);
5555 if (longmode) {
5556 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
5557 } else {
5558 kvm_register_write(vcpu, VCPU_REGS_RDX, ret >> 32);
5559 kvm_register_write(vcpu, VCPU_REGS_RAX, ret & 0xffffffff);
5560 }
5561
5562 return 1;
5563}
5564
Hollis Blanchard8776e512007-10-31 17:24:24 -05005565int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
5566{
5567 unsigned long nr, a0, a1, a2, a3, ret;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05005568 int r = 1;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005569
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005570 if (kvm_hv_hypercall_enabled(vcpu->kvm))
5571 return kvm_hv_hypercall(vcpu);
5572
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005573 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
5574 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
5575 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
5576 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
5577 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005578
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005579 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005580
Hollis Blanchard8776e512007-10-31 17:24:24 -05005581 if (!is_long_mode(vcpu)) {
5582 nr &= 0xFFFFFFFF;
5583 a0 &= 0xFFFFFFFF;
5584 a1 &= 0xFFFFFFFF;
5585 a2 &= 0xFFFFFFFF;
5586 a3 &= 0xFFFFFFFF;
5587 }
5588
Jan Kiszka07708c42009-08-03 18:43:28 +02005589 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
5590 ret = -KVM_EPERM;
5591 goto out;
5592 }
5593
Hollis Blanchard8776e512007-10-31 17:24:24 -05005594 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02005595 case KVM_HC_VAPIC_POLL_IRQ:
5596 ret = 0;
5597 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005598 default:
5599 ret = -KVM_ENOSYS;
5600 break;
5601 }
Jan Kiszka07708c42009-08-03 18:43:28 +02005602out:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005603 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05305604 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05005605 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005606}
5607EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
5608
Jan Kiszkab6785de2012-09-20 07:43:17 +02005609static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05005610{
Avi Kivityd6aa1002011-04-20 15:47:13 +03005611 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005612 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005613 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005614
Hollis Blanchard8776e512007-10-31 17:24:24 -05005615 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005616
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005617 return emulator_write_emulated(ctxt, rip, instruction, 3, NULL);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005618}
5619
Hollis Blanchardd0752062007-10-31 17:24:25 -05005620/*
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005621 * Check if userspace requested an interrupt window, and that the
5622 * interrupt window is open.
5623 *
5624 * No need to exit to userspace if we already have an interrupt queued.
5625 */
Avi Kivity851ba692009-08-24 11:10:17 +03005626static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005627{
Gleb Natapov80618232009-04-21 17:44:56 +03005628 return (!irqchip_in_kernel(vcpu->kvm) && !kvm_cpu_has_interrupt(vcpu) &&
Avi Kivity851ba692009-08-24 11:10:17 +03005629 vcpu->run->request_interrupt_window &&
Gleb Natapov5df56642009-04-21 17:44:59 +03005630 kvm_arch_interrupt_allowed(vcpu));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005631}
5632
Avi Kivity851ba692009-08-24 11:10:17 +03005633static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005634{
Avi Kivity851ba692009-08-24 11:10:17 +03005635 struct kvm_run *kvm_run = vcpu->run;
5636
Jan Kiszka91586a32009-10-05 13:07:21 +02005637 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02005638 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005639 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Jan Kiszka45312202008-12-11 16:54:54 +01005640 if (irqchip_in_kernel(vcpu->kvm))
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005641 kvm_run->ready_for_interrupt_injection = 1;
Jan Kiszka45312202008-12-11 16:54:54 +01005642 else
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005643 kvm_run->ready_for_interrupt_injection =
Gleb Natapovfa9726b2009-05-11 13:35:47 +03005644 kvm_arch_interrupt_allowed(vcpu) &&
5645 !kvm_cpu_has_interrupt(vcpu) &&
5646 !kvm_event_needs_reinjection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005647}
5648
Xiao Guangrong44841412012-09-07 14:14:20 +08005649static int vapic_enter(struct kvm_vcpu *vcpu)
Avi Kivityb93463a2007-10-25 16:52:32 +02005650{
5651 struct kvm_lapic *apic = vcpu->arch.apic;
5652 struct page *page;
5653
5654 if (!apic || !apic->vapic_addr)
Xiao Guangrong44841412012-09-07 14:14:20 +08005655 return 0;
Avi Kivityb93463a2007-10-25 16:52:32 +02005656
5657 page = gfn_to_page(vcpu->kvm, apic->vapic_addr >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08005658 if (is_error_page(page))
5659 return -EFAULT;
Izik Eidus72dc67a2008-02-10 18:04:15 +02005660
5661 vcpu->arch.apic->vapic_page = page;
Xiao Guangrong44841412012-09-07 14:14:20 +08005662 return 0;
Avi Kivityb93463a2007-10-25 16:52:32 +02005663}
5664
5665static void vapic_exit(struct kvm_vcpu *vcpu)
5666{
5667 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005668 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005669
5670 if (!apic || !apic->vapic_addr)
5671 return;
5672
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005673 idx = srcu_read_lock(&vcpu->kvm->srcu);
Avi Kivityb93463a2007-10-25 16:52:32 +02005674 kvm_release_page_dirty(apic->vapic_page);
5675 mark_page_dirty(vcpu->kvm, apic->vapic_addr >> PAGE_SHIFT);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005676 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005677}
5678
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005679static void update_cr8_intercept(struct kvm_vcpu *vcpu)
5680{
5681 int max_irr, tpr;
5682
5683 if (!kvm_x86_ops->update_cr8_intercept)
5684 return;
5685
Avi Kivity88c808f2009-08-17 22:49:40 +03005686 if (!vcpu->arch.apic)
5687 return;
5688
Gleb Natapov8db3baa2009-05-11 13:35:54 +03005689 if (!vcpu->arch.apic->vapic_addr)
5690 max_irr = kvm_lapic_find_highest_irr(vcpu);
5691 else
5692 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005693
5694 if (max_irr != -1)
5695 max_irr >>= 4;
5696
5697 tpr = kvm_lapic_get_cr8(vcpu);
5698
5699 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
5700}
5701
Avi Kivity851ba692009-08-24 11:10:17 +03005702static void inject_pending_event(struct kvm_vcpu *vcpu)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005703{
5704 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03005705 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d2010-03-11 13:01:59 +02005706 trace_kvm_inj_exception(vcpu->arch.exception.nr,
5707 vcpu->arch.exception.has_error_code,
5708 vcpu->arch.exception.error_code);
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03005709 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
5710 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005711 vcpu->arch.exception.error_code,
5712 vcpu->arch.exception.reinject);
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03005713 return;
5714 }
5715
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005716 if (vcpu->arch.nmi_injected) {
5717 kvm_x86_ops->set_nmi(vcpu);
5718 return;
5719 }
5720
5721 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005722 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005723 return;
5724 }
5725
5726 /* try to inject new event if pending */
5727 if (vcpu->arch.nmi_pending) {
5728 if (kvm_x86_ops->nmi_allowed(vcpu)) {
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005729 --vcpu->arch.nmi_pending;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005730 vcpu->arch.nmi_injected = true;
5731 kvm_x86_ops->set_nmi(vcpu);
5732 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08005733 } else if (kvm_cpu_has_injectable_intr(vcpu)) {
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005734 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005735 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
5736 false);
5737 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005738 }
5739 }
5740}
5741
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005742static void process_nmi(struct kvm_vcpu *vcpu)
5743{
5744 unsigned limit = 2;
5745
5746 /*
5747 * x86 is limited to one NMI running, and one NMI pending after it.
5748 * If an NMI is already in progress, limit further NMIs to just one.
5749 * Otherwise, allow two (and we'll inject the first one immediately).
5750 */
5751 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
5752 limit = 1;
5753
5754 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
5755 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
5756 kvm_make_request(KVM_REQ_EVENT, vcpu);
5757}
5758
Marcelo Tosattid8281992012-11-27 23:29:01 -02005759static void kvm_gen_update_masterclock(struct kvm *kvm)
5760{
5761#ifdef CONFIG_X86_64
5762 int i;
5763 struct kvm_vcpu *vcpu;
5764 struct kvm_arch *ka = &kvm->arch;
5765
5766 spin_lock(&ka->pvclock_gtod_sync_lock);
5767 kvm_make_mclock_inprogress_request(kvm);
5768 /* no guest entries from this point */
5769 pvclock_update_vm_gtod_copy(kvm);
5770
5771 kvm_for_each_vcpu(i, vcpu, kvm)
5772 set_bit(KVM_REQ_CLOCK_UPDATE, &vcpu->requests);
5773
5774 /* guest entries allowed */
5775 kvm_for_each_vcpu(i, vcpu, kvm)
5776 clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests);
5777
5778 spin_unlock(&ka->pvclock_gtod_sync_lock);
5779#endif
5780}
5781
Yang Zhang3d81bc72013-04-11 19:25:13 +08005782static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08005783{
5784 u64 eoi_exit_bitmap[4];
Yang Zhangcf9e65b2013-04-11 19:25:14 +08005785 u32 tmr[8];
Yang Zhangc7c9c562013-01-25 10:18:51 +08005786
Yang Zhang3d81bc72013-04-11 19:25:13 +08005787 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
5788 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08005789
5790 memset(eoi_exit_bitmap, 0, 32);
Yang Zhangcf9e65b2013-04-11 19:25:14 +08005791 memset(tmr, 0, 32);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005792
Yang Zhangcf9e65b2013-04-11 19:25:14 +08005793 kvm_ioapic_scan_entry(vcpu, eoi_exit_bitmap, tmr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005794 kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangcf9e65b2013-04-11 19:25:14 +08005795 kvm_apic_update_tmr(vcpu, tmr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005796}
5797
Avi Kivity851ba692009-08-24 11:10:17 +03005798static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005799{
5800 int r;
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03005801 bool req_int_win = !irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03005802 vcpu->run->request_interrupt_window;
Jan Kiszka730dca42013-04-28 10:50:52 +02005803 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005804
Avi Kivity3e007502010-06-23 14:26:18 +03005805 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03005806 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05005807 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03005808 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03005809 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02005810 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
5811 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d532013-05-09 20:21:41 -03005812 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
5813 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10005814 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
5815 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005816 if (unlikely(r))
5817 goto out;
5818 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03005819 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03005820 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03005821 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Marcelo Tosattid4acf7e2008-06-06 16:37:35 -03005822 kvm_x86_ops->tlb_flush(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03005823 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03005824 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02005825 r = 0;
5826 goto out;
5827 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03005828 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03005829 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01005830 r = 0;
5831 goto out;
5832 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03005833 if (kvm_check_request(KVM_REQ_DEACTIVATE_FPU, vcpu)) {
Avi Kivity02daab22009-12-30 12:40:26 +02005834 vcpu->fpu_active = 0;
5835 kvm_x86_ops->fpu_deactivate(vcpu);
5836 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02005837 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
5838 /* Page is swapped out. Do synthetic halt */
5839 vcpu->arch.apf.halted = true;
5840 r = 1;
5841 goto out;
5842 }
Glauber Costac9aaa892011-07-11 15:28:14 -04005843 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
5844 record_steal_time(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005845 if (kvm_check_request(KVM_REQ_NMI, vcpu))
5846 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02005847 if (kvm_check_request(KVM_REQ_PMU, vcpu))
5848 kvm_handle_pmu_event(vcpu);
5849 if (kvm_check_request(KVM_REQ_PMI, vcpu))
5850 kvm_deliver_pmi(vcpu);
Yang Zhang3d81bc72013-04-11 19:25:13 +08005851 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
5852 vcpu_scan_ioapic(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02005853 }
Avi Kivityb93463a2007-10-25 16:52:32 +02005854
Avi Kivityb463a6f2010-07-20 15:06:17 +03005855 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Jan Kiszka66450a22013-03-13 12:42:34 +01005856 kvm_apic_accept_events(vcpu);
5857 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
5858 r = 1;
5859 goto out;
5860 }
5861
Avi Kivity3842d132010-07-27 12:30:24 +03005862 inject_pending_event(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005863
Avi Kivity3842d132010-07-27 12:30:24 +03005864 /* enable NMI/IRQ window open exits if needed */
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005865 if (vcpu->arch.nmi_pending)
Jan Kiszka03b28f82013-04-29 16:46:42 +02005866 req_immediate_exit =
5867 kvm_x86_ops->enable_nmi_window(vcpu) != 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08005868 else if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win)
Jan Kiszka730dca42013-04-28 10:50:52 +02005869 req_immediate_exit =
5870 kvm_x86_ops->enable_irq_window(vcpu) != 0;
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03005871
Avi Kivity3842d132010-07-27 12:30:24 +03005872 if (kvm_lapic_enabled(vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005873 /*
5874 * Update architecture specific hints for APIC
5875 * virtual interrupt delivery.
5876 */
5877 if (kvm_x86_ops->hwapic_irr_update)
5878 kvm_x86_ops->hwapic_irr_update(vcpu,
5879 kvm_lapic_find_highest_irr(vcpu));
Avi Kivity3842d132010-07-27 12:30:24 +03005880 update_cr8_intercept(vcpu);
5881 kvm_lapic_sync_to_vapic(vcpu);
5882 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005883 }
Avi Kivityb93463a2007-10-25 16:52:32 +02005884
Avi Kivityd8368af2012-05-14 18:07:56 +03005885 r = kvm_mmu_reload(vcpu);
5886 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03005887 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03005888 }
5889
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005890 preempt_disable();
5891
5892 kvm_x86_ops->prepare_guest_switch(vcpu);
5893 if (vcpu->fpu_active)
5894 kvm_load_guest_fpu(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005895 kvm_load_guest_xcr0(vcpu);
5896
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08005897 vcpu->mode = IN_GUEST_MODE;
5898
5899 /* We should set ->mode before check ->requests,
5900 * see the comment in make_all_cpus_request.
5901 */
5902 smp_mb();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005903
5904 local_irq_disable();
5905
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08005906 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005907 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08005908 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005909 smp_wmb();
5910 local_irq_enable();
5911 preempt_enable();
5912 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03005913 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005914 }
5915
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005916 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005917
Nadav Har'Eld6185f22011-09-22 13:52:56 +03005918 if (req_immediate_exit)
5919 smp_send_reschedule(vcpu->cpu);
5920
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005921 kvm_guest_enter();
5922
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005923 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005924 set_debugreg(0, 7);
5925 set_debugreg(vcpu->arch.eff_db[0], 0);
5926 set_debugreg(vcpu->arch.eff_db[1], 1);
5927 set_debugreg(vcpu->arch.eff_db[2], 2);
5928 set_debugreg(vcpu->arch.eff_db[3], 3);
5929 }
5930
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005931 trace_kvm_entry(vcpu->vcpu_id);
Avi Kivity851ba692009-08-24 11:10:17 +03005932 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005933
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005934 /*
5935 * If the guest has used debug registers, at least dr7
5936 * will be disabled while returning to the host.
5937 * If we don't have active breakpoints in the host, we don't
5938 * care about the messed up debug address registers. But if
5939 * we have some of them active, restore the old state.
5940 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01005941 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005942 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005943
Marcelo Tosatti886b4702012-11-27 23:28:58 -02005944 vcpu->arch.last_guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu,
5945 native_read_tsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10005946
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08005947 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03005948 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08005949
5950 /* Interrupt is enabled by handle_external_intr() */
5951 kvm_x86_ops->handle_external_intr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005952
5953 ++vcpu->stat.exits;
5954
5955 /*
5956 * We must have an instruction between local_irq_enable() and
5957 * kvm_guest_exit(), so the timer interrupt isn't delayed by
5958 * the interrupt shadow. The stat.exits increment will do nicely.
5959 * But we need to prevent reordering, hence this barrier():
5960 */
5961 barrier();
5962
5963 kvm_guest_exit();
5964
5965 preempt_enable();
5966
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005967 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03005968
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005969 /*
5970 * Profile KVM exit RIPs:
5971 */
5972 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005973 unsigned long rip = kvm_rip_read(vcpu);
5974 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005975 }
5976
Zachary Amsdencc578282012-02-03 15:43:50 -02005977 if (unlikely(vcpu->arch.tsc_always_catchup))
5978 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02005979
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03005980 if (vcpu->arch.apic_attention)
5981 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02005982
Avi Kivity851ba692009-08-24 11:10:17 +03005983 r = kvm_x86_ops->handle_exit(vcpu);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03005984 return r;
5985
5986cancel_injection:
5987 kvm_x86_ops->cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03005988 if (unlikely(vcpu->arch.apic_attention))
5989 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005990out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03005991 return r;
5992}
5993
Gleb Natapov09cec752009-03-23 15:11:44 +02005994
Avi Kivity851ba692009-08-24 11:10:17 +03005995static int __vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03005996{
5997 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005998 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03005999
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006000 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Xiao Guangrong44841412012-09-07 14:14:20 +08006001 r = vapic_enter(vcpu);
6002 if (r) {
6003 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
6004 return r;
6005 }
Marcelo Tosattid7690172008-09-08 15:23:48 -03006006
6007 r = 1;
6008 while (r > 0) {
Gleb Natapovaf585b92010-10-14 11:22:46 +02006009 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
6010 !vcpu->arch.apf.halted)
Avi Kivity851ba692009-08-24 11:10:17 +03006011 r = vcpu_enter_guest(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006012 else {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006013 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006014 kvm_vcpu_block(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006015 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka66450a22013-03-13 12:42:34 +01006016 if (kvm_check_request(KVM_REQ_UNHALT, vcpu)) {
6017 kvm_apic_accept_events(vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +02006018 switch(vcpu->arch.mp_state) {
6019 case KVM_MP_STATE_HALTED:
Marcelo Tosattid7690172008-09-08 15:23:48 -03006020 vcpu->arch.mp_state =
Gleb Natapov09cec752009-03-23 15:11:44 +02006021 KVM_MP_STATE_RUNNABLE;
6022 case KVM_MP_STATE_RUNNABLE:
Gleb Natapovaf585b92010-10-14 11:22:46 +02006023 vcpu->arch.apf.halted = false;
Gleb Natapov09cec752009-03-23 15:11:44 +02006024 break;
Jan Kiszka66450a22013-03-13 12:42:34 +01006025 case KVM_MP_STATE_INIT_RECEIVED:
6026 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02006027 default:
6028 r = -EINTR;
6029 break;
6030 }
6031 }
Marcelo Tosattid7690172008-09-08 15:23:48 -03006032 }
6033
Gleb Natapov09cec752009-03-23 15:11:44 +02006034 if (r <= 0)
6035 break;
6036
6037 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
6038 if (kvm_cpu_has_pending_timer(vcpu))
6039 kvm_inject_pending_timer_irqs(vcpu);
6040
Avi Kivity851ba692009-08-24 11:10:17 +03006041 if (dm_request_for_irq_injection(vcpu)) {
Gleb Natapov09cec752009-03-23 15:11:44 +02006042 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03006043 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02006044 ++vcpu->stat.request_irq_exits;
6045 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006046
6047 kvm_check_async_pf_completion(vcpu);
6048
Gleb Natapov09cec752009-03-23 15:11:44 +02006049 if (signal_pending(current)) {
6050 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03006051 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02006052 ++vcpu->stat.signal_exits;
6053 }
6054 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006055 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Gleb Natapov09cec752009-03-23 15:11:44 +02006056 kvm_resched(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006057 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006058 }
6059 }
6060
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006061 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006062
Avi Kivityb93463a2007-10-25 16:52:32 +02006063 vapic_exit(vcpu);
6064
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006065 return r;
6066}
6067
Gleb Natapov716d51a2012-09-03 15:24:26 +03006068static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
6069{
6070 int r;
6071 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
6072 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
6073 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
6074 if (r != EMULATE_DONE)
6075 return 0;
6076 return 1;
6077}
6078
6079static int complete_emulated_pio(struct kvm_vcpu *vcpu)
6080{
6081 BUG_ON(!vcpu->arch.pio.count);
6082
6083 return complete_emulated_io(vcpu);
6084}
6085
Avi Kivityf78146b2012-04-18 19:22:47 +03006086/*
6087 * Implements the following, as a state machine:
6088 *
6089 * read:
6090 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006091 * for each mmio piece in the fragment
6092 * write gpa, len
6093 * exit
6094 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03006095 * execute insn
6096 *
6097 * write:
6098 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006099 * for each mmio piece in the fragment
6100 * write gpa, len
6101 * copy data
6102 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03006103 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03006104static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02006105{
6106 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03006107 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006108 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02006109
Gleb Natapov716d51a2012-09-03 15:24:26 +03006110 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006111
Gleb Natapov716d51a2012-09-03 15:24:26 +03006112 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006113 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
6114 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006115 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006116 memcpy(frag->data, run->mmio.data, len);
6117
6118 if (frag->len <= 8) {
6119 /* Switch to the next fragment. */
6120 frag++;
6121 vcpu->mmio_cur_fragment++;
6122 } else {
6123 /* Go forward to the next mmio piece. */
6124 frag->data += len;
6125 frag->gpa += len;
6126 frag->len -= len;
6127 }
6128
Gleb Natapov716d51a2012-09-03 15:24:26 +03006129 if (vcpu->mmio_cur_fragment == vcpu->mmio_nr_fragments) {
6130 vcpu->mmio_needed = 0;
Avi Kivitycef4dea2010-01-20 12:01:20 +02006131 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03006132 return 1;
6133 vcpu->mmio_read_completed = 1;
6134 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02006135 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006136
Gleb Natapov716d51a2012-09-03 15:24:26 +03006137 run->exit_reason = KVM_EXIT_MMIO;
6138 run->mmio.phys_addr = frag->gpa;
6139 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006140 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
6141 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03006142 run->mmio.is_write = vcpu->mmio_is_write;
6143 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
6144 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02006145}
6146
Gleb Natapov716d51a2012-09-03 15:24:26 +03006147
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006148int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
6149{
6150 int r;
6151 sigset_t sigsaved;
6152
Avi Kivitye5c30142011-01-11 12:15:54 +02006153 if (!tsk_used_math(current) && init_fpu(current))
6154 return -ENOMEM;
6155
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006156 if (vcpu->sigset_active)
6157 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
6158
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006159 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
6160 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01006161 kvm_apic_accept_events(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006162 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006163 r = -EAGAIN;
6164 goto out;
6165 }
6166
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006167 /* re-sync apic's tpr */
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006168 if (!irqchip_in_kernel(vcpu->kvm)) {
6169 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
6170 r = -EINVAL;
6171 goto out;
6172 }
6173 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006174
Gleb Natapov716d51a2012-09-03 15:24:26 +03006175 if (unlikely(vcpu->arch.complete_userspace_io)) {
6176 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
6177 vcpu->arch.complete_userspace_io = NULL;
6178 r = cui(vcpu);
6179 if (r <= 0)
6180 goto out;
6181 } else
6182 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02006183
Avi Kivity851ba692009-08-24 11:10:17 +03006184 r = __vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006185
6186out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03006187 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006188 if (vcpu->sigset_active)
6189 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
6190
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006191 return r;
6192}
6193
6194int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6195{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006196 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
6197 /*
6198 * We are here if userspace calls get_regs() in the middle of
6199 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08006200 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006201 * that usually, but some bad designed PV devices (vmware
6202 * backdoor interface) need this to work
6203 */
Avi Kivitydd856ef2012-08-27 23:46:17 +03006204 emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006205 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6206 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006207 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
6208 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
6209 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
6210 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
6211 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
6212 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
6213 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
6214 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006215#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006216 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
6217 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
6218 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
6219 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
6220 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
6221 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
6222 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
6223 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006224#endif
6225
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006226 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02006227 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006228
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006229 return 0;
6230}
6231
6232int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6233{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006234 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
6235 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6236
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006237 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
6238 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
6239 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
6240 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
6241 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
6242 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
6243 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
6244 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006245#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006246 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
6247 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
6248 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
6249 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
6250 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
6251 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
6252 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
6253 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006254#endif
6255
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006256 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02006257 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006258
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02006259 vcpu->arch.exception.pending = false;
6260
Avi Kivity3842d132010-07-27 12:30:24 +03006261 kvm_make_request(KVM_REQ_EVENT, vcpu);
6262
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006263 return 0;
6264}
6265
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006266void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
6267{
6268 struct kvm_segment cs;
6269
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006270 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006271 *db = cs.db;
6272 *l = cs.l;
6273}
6274EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
6275
6276int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
6277 struct kvm_sregs *sregs)
6278{
Gleb Natapov89a27f42010-02-16 10:51:48 +02006279 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006280
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006281 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
6282 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
6283 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
6284 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
6285 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
6286 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006287
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006288 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
6289 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006290
6291 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02006292 sregs->idt.limit = dt.size;
6293 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006294 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02006295 sregs->gdt.limit = dt.size;
6296 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006297
Avi Kivity4d4ec082009-12-29 18:07:30 +02006298 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006299 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02006300 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02006301 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006302 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02006303 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006304 sregs->apic_base = kvm_get_apic_base(vcpu);
6305
Gleb Natapov923c61b2009-05-11 13:35:48 +03006306 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006307
Gleb Natapov36752c92009-05-11 13:35:53 +03006308 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03006309 set_bit(vcpu->arch.interrupt.nr,
6310 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03006311
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006312 return 0;
6313}
6314
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006315int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
6316 struct kvm_mp_state *mp_state)
6317{
Jan Kiszka66450a22013-03-13 12:42:34 +01006318 kvm_apic_accept_events(vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006319 mp_state->mp_state = vcpu->arch.mp_state;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006320 return 0;
6321}
6322
6323int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
6324 struct kvm_mp_state *mp_state)
6325{
Jan Kiszka66450a22013-03-13 12:42:34 +01006326 if (!kvm_vcpu_has_lapic(vcpu) &&
6327 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
6328 return -EINVAL;
6329
6330 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
6331 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
6332 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
6333 } else
6334 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03006335 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006336 return 0;
6337}
6338
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006339int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
6340 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006341{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006342 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006343 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006344
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006345 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006346
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006347 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006348 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02006349
Gleb Natapovc6975182010-02-18 12:15:01 +02006350 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03006351 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02006352
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006353 kvm_rip_write(vcpu, ctxt->eip);
6354 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03006355 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03006356 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02006357}
6358EXPORT_SYMBOL_GPL(kvm_task_switch);
6359
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006360int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
6361 struct kvm_sregs *sregs)
6362{
6363 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08006364 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02006365 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006366
Petr Matousek6d1068b2012-11-06 19:24:07 +01006367 if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE))
6368 return -EINVAL;
6369
Gleb Natapov89a27f42010-02-16 10:51:48 +02006370 dt.size = sregs->idt.limit;
6371 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006372 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02006373 dt.size = sregs->gdt.limit;
6374 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006375 kvm_x86_ops->set_gdt(vcpu, &dt);
6376
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006377 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02006378 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02006379 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02006380 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006381
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006382 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006383
Avi Kivityf6801df2010-01-21 15:31:50 +02006384 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006385 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006386 kvm_set_apic_base(vcpu, sregs->apic_base);
6387
Avi Kivity4d4ec082009-12-29 18:07:30 +02006388 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006389 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00006390 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006391
Avi Kivityfc78f512009-12-07 12:16:48 +02006392 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006393 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Sheng Yang3ea3aa82010-12-08 10:49:43 +08006394 if (sregs->cr4 & X86_CR4_OSXSAVE)
Avi Kivity00b27a32011-11-23 16:30:32 +02006395 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08006396
6397 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02006398 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02006399 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02006400 mmu_reset_needed = 1;
6401 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08006402 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006403
6404 if (mmu_reset_needed)
6405 kvm_mmu_reset_context(vcpu);
6406
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03006407 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03006408 pending_vec = find_first_bit(
6409 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
6410 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006411 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03006412 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006413 }
6414
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006415 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
6416 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
6417 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
6418 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
6419 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
6420 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006421
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006422 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
6423 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006424
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03006425 update_cr8_intercept(vcpu);
6426
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03006427 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03006428 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03006429 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02006430 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03006431 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
6432
Avi Kivity3842d132010-07-27 12:30:24 +03006433 kvm_make_request(KVM_REQ_EVENT, vcpu);
6434
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006435 return 0;
6436}
6437
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006438int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
6439 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006440{
Jan Kiszka355be0b2009-10-03 00:31:21 +02006441 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01006442 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006443
Jan Kiszka4f926bf22009-10-30 12:46:59 +01006444 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
6445 r = -EBUSY;
6446 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03006447 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01006448 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
6449 kvm_queue_exception(vcpu, DB_VECTOR);
6450 else
6451 kvm_queue_exception(vcpu, BP_VECTOR);
6452 }
6453
Jan Kiszka91586a32009-10-05 13:07:21 +02006454 /*
6455 * Read rflags as long as potentially injected trace flags are still
6456 * filtered out.
6457 */
6458 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02006459
6460 vcpu->guest_debug = dbg->control;
6461 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
6462 vcpu->guest_debug = 0;
6463
6464 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01006465 for (i = 0; i < KVM_NR_DB_REGS; ++i)
6466 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02006467 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01006468 } else {
6469 for (i = 0; i < KVM_NR_DB_REGS; i++)
6470 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01006471 }
Jan Kiszkac8639012012-09-21 05:42:55 +02006472 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01006473
Jan Kiszkaf92653e2010-02-23 17:47:55 +01006474 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6475 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
6476 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006477
Jan Kiszka91586a32009-10-05 13:07:21 +02006478 /*
6479 * Trigger an rflags update that will inject or remove the trace
6480 * flags.
6481 */
6482 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006483
Jan Kiszkac8639012012-09-21 05:42:55 +02006484 kvm_x86_ops->update_db_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02006485
Jan Kiszka4f926bf22009-10-30 12:46:59 +01006486 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006487
Avi Kivity2122ff52010-05-13 11:25:04 +03006488out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006489
6490 return r;
6491}
6492
6493/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08006494 * Translate a guest virtual address to a guest physical address.
6495 */
6496int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
6497 struct kvm_translation *tr)
6498{
6499 unsigned long vaddr = tr->linear_address;
6500 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006501 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08006502
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006503 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02006504 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006505 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08006506 tr->physical_address = gpa;
6507 tr->valid = gpa != UNMAPPED_GVA;
6508 tr->writeable = 1;
6509 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08006510
6511 return 0;
6512}
6513
Hollis Blanchardd0752062007-10-31 17:24:25 -05006514int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
6515{
Sheng Yang98918832010-05-17 17:08:28 +08006516 struct i387_fxsave_struct *fxsave =
6517 &vcpu->arch.guest_fpu.state->fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05006518
Hollis Blanchardd0752062007-10-31 17:24:25 -05006519 memcpy(fpu->fpr, fxsave->st_space, 128);
6520 fpu->fcw = fxsave->cwd;
6521 fpu->fsw = fxsave->swd;
6522 fpu->ftwx = fxsave->twd;
6523 fpu->last_opcode = fxsave->fop;
6524 fpu->last_ip = fxsave->rip;
6525 fpu->last_dp = fxsave->rdp;
6526 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
6527
Hollis Blanchardd0752062007-10-31 17:24:25 -05006528 return 0;
6529}
6530
6531int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
6532{
Sheng Yang98918832010-05-17 17:08:28 +08006533 struct i387_fxsave_struct *fxsave =
6534 &vcpu->arch.guest_fpu.state->fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05006535
Hollis Blanchardd0752062007-10-31 17:24:25 -05006536 memcpy(fxsave->st_space, fpu->fpr, 128);
6537 fxsave->cwd = fpu->fcw;
6538 fxsave->swd = fpu->fsw;
6539 fxsave->twd = fpu->ftwx;
6540 fxsave->fop = fpu->last_opcode;
6541 fxsave->rip = fpu->last_ip;
6542 fxsave->rdp = fpu->last_dp;
6543 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
6544
Hollis Blanchardd0752062007-10-31 17:24:25 -05006545 return 0;
6546}
6547
Jan Kiszka10ab25c2010-05-25 16:01:50 +02006548int fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05006549{
Jan Kiszka10ab25c2010-05-25 16:01:50 +02006550 int err;
6551
6552 err = fpu_alloc(&vcpu->arch.guest_fpu);
6553 if (err)
6554 return err;
6555
Sheng Yang98918832010-05-17 17:08:28 +08006556 fpu_finit(&vcpu->arch.guest_fpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05006557
Dexuan Cui2acf9232010-06-10 11:27:12 +08006558 /*
6559 * Ensure guest xcr0 is valid for loading
6560 */
6561 vcpu->arch.xcr0 = XSTATE_FP;
6562
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006563 vcpu->arch.cr0 |= X86_CR0_ET;
Jan Kiszka10ab25c2010-05-25 16:01:50 +02006564
6565 return 0;
Hollis Blanchardd0752062007-10-31 17:24:25 -05006566}
6567EXPORT_SYMBOL_GPL(fx_init);
6568
Sheng Yang98918832010-05-17 17:08:28 +08006569static void fx_free(struct kvm_vcpu *vcpu)
6570{
6571 fpu_free(&vcpu->arch.guest_fpu);
6572}
6573
Hollis Blanchardd0752062007-10-31 17:24:25 -05006574void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
6575{
Avi Kivity2608d7a2010-01-21 15:31:45 +02006576 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05006577 return;
6578
Dexuan Cui2acf9232010-06-10 11:27:12 +08006579 /*
6580 * Restore all possible states in the guest,
6581 * and assume host would use all available bits.
6582 * Guest xcr0 would be loaded later.
6583 */
6584 kvm_put_guest_xcr0(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05006585 vcpu->guest_fpu_loaded = 1;
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07006586 __kernel_fpu_begin();
Sheng Yang98918832010-05-17 17:08:28 +08006587 fpu_restore_checking(&vcpu->arch.guest_fpu);
Avi Kivity0c048512010-01-21 15:31:52 +02006588 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05006589}
Hollis Blanchardd0752062007-10-31 17:24:25 -05006590
6591void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
6592{
Dexuan Cui2acf9232010-06-10 11:27:12 +08006593 kvm_put_guest_xcr0(vcpu);
6594
Hollis Blanchardd0752062007-10-31 17:24:25 -05006595 if (!vcpu->guest_fpu_loaded)
6596 return;
6597
6598 vcpu->guest_fpu_loaded = 0;
Sheng Yang98918832010-05-17 17:08:28 +08006599 fpu_save_init(&vcpu->arch.guest_fpu);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07006600 __kernel_fpu_end();
Avi Kivityf096ed82007-11-18 13:54:33 +02006601 ++vcpu->stat.fpu_reload;
Avi Kivitya8eeb042010-05-10 12:34:53 +03006602 kvm_make_request(KVM_REQ_DEACTIVATE_FPU, vcpu);
Avi Kivity0c048512010-01-21 15:31:52 +02006603 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05006604}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006605
6606void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
6607{
Glauber Costa12f9a482011-02-01 14:16:40 -05006608 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01006609
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006610 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Sheng Yang98918832010-05-17 17:08:28 +08006611 fx_free(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006612 kvm_x86_ops->vcpu_free(vcpu);
6613}
6614
6615struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
6616 unsigned int id)
6617{
Zachary Amsden6755bae2010-08-19 22:07:22 -10006618 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
6619 printk_once(KERN_WARNING
6620 "kvm: SMP vm created on host with unstable TSC; "
6621 "guest TSC will not be reliable\n");
Avi Kivity26e52152007-11-20 15:30:24 +02006622 return kvm_x86_ops->vcpu_create(kvm, id);
6623}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006624
Avi Kivity26e52152007-11-20 15:30:24 +02006625int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
6626{
6627 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006628
Sheng Yang0bed3b52008-10-09 16:01:54 +08006629 vcpu->arch.mtrr_state.have_fixed = 1;
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03006630 r = vcpu_load(vcpu);
6631 if (r)
6632 return r;
Jan Kiszka57f252f2013-03-12 10:20:24 +01006633 kvm_vcpu_reset(vcpu);
6634 r = kvm_mmu_setup(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006635 vcpu_put(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006636
Avi Kivity26e52152007-11-20 15:30:24 +02006637 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006638}
6639
Marcelo Tosatti42897d82012-11-27 23:29:02 -02006640int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
6641{
6642 int r;
Will Auld8fe8ab42012-11-29 12:42:12 -08006643 struct msr_data msr;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02006644
6645 r = vcpu_load(vcpu);
6646 if (r)
6647 return r;
Will Auld8fe8ab42012-11-29 12:42:12 -08006648 msr.data = 0x0;
6649 msr.index = MSR_IA32_TSC;
6650 msr.host_initiated = true;
6651 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02006652 vcpu_put(vcpu);
6653
6654 return r;
6655}
6656
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06006657void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006658{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03006659 int r;
Gleb Natapov344d9582010-10-14 11:22:50 +02006660 vcpu->arch.apf.msr_val = 0;
6661
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03006662 r = vcpu_load(vcpu);
6663 BUG_ON(r);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006664 kvm_mmu_unload(vcpu);
6665 vcpu_put(vcpu);
6666
Sheng Yang98918832010-05-17 17:08:28 +08006667 fx_free(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006668 kvm_x86_ops->vcpu_free(vcpu);
6669}
6670
Jan Kiszka66450a22013-03-13 12:42:34 +01006671void kvm_vcpu_reset(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006672{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006673 atomic_set(&vcpu->arch.nmi_queued, 0);
6674 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02006675 vcpu->arch.nmi_injected = false;
6676
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006677 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
6678 vcpu->arch.dr6 = DR6_FIXED_1;
6679 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02006680 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006681
Avi Kivity3842d132010-07-27 12:30:24 +03006682 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02006683 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04006684 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03006685
Glauber Costa12f9a482011-02-01 14:16:40 -05006686 kvmclock_reset(vcpu);
6687
Gleb Natapovaf585b92010-10-14 11:22:46 +02006688 kvm_clear_async_pf_completion_queue(vcpu);
6689 kvm_async_pf_hash_reset(vcpu);
6690 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006691
Gleb Natapovf5132b02011-11-10 14:57:22 +02006692 kvm_pmu_reset(vcpu);
6693
Julian Stecklina66f7b722012-12-05 15:26:19 +01006694 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
6695 vcpu->arch.regs_avail = ~0;
6696 vcpu->arch.regs_dirty = ~0;
6697
Jan Kiszka57f252f2013-03-12 10:20:24 +01006698 kvm_x86_ops->vcpu_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006699}
6700
Jan Kiszka66450a22013-03-13 12:42:34 +01006701void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, unsigned int vector)
6702{
6703 struct kvm_segment cs;
6704
6705 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
6706 cs.selector = vector << 8;
6707 cs.base = vector << 12;
6708 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
6709 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006710}
6711
Alexander Graf10474ae2009-09-15 11:37:46 +02006712int kvm_arch_hardware_enable(void *garbage)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006713{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10006714 struct kvm *kvm;
6715 struct kvm_vcpu *vcpu;
6716 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02006717 int ret;
6718 u64 local_tsc;
6719 u64 max_tsc = 0;
6720 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03006721
6722 kvm_shared_msr_cpu_online();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02006723 ret = kvm_x86_ops->hardware_enable(garbage);
6724 if (ret != 0)
6725 return ret;
6726
6727 local_tsc = native_read_tsc();
6728 stable = !check_tsc_unstable();
6729 list_for_each_entry(kvm, &vm_list, vm_list) {
6730 kvm_for_each_vcpu(i, vcpu, kvm) {
6731 if (!stable && vcpu->cpu == smp_processor_id())
6732 set_bit(KVM_REQ_CLOCK_UPDATE, &vcpu->requests);
6733 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
6734 backwards_tsc = true;
6735 if (vcpu->arch.last_host_tsc > max_tsc)
6736 max_tsc = vcpu->arch.last_host_tsc;
6737 }
6738 }
6739 }
6740
6741 /*
6742 * Sometimes, even reliable TSCs go backwards. This happens on
6743 * platforms that reset TSC during suspend or hibernate actions, but
6744 * maintain synchronization. We must compensate. Fortunately, we can
6745 * detect that condition here, which happens early in CPU bringup,
6746 * before any KVM threads can be running. Unfortunately, we can't
6747 * bring the TSCs fully up to date with real time, as we aren't yet far
6748 * enough into CPU bringup that we know how much real time has actually
6749 * elapsed; our helper function, get_kernel_ns() will be using boot
6750 * variables that haven't been updated yet.
6751 *
6752 * So we simply find the maximum observed TSC above, then record the
6753 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
6754 * the adjustment will be applied. Note that we accumulate
6755 * adjustments, in case multiple suspend cycles happen before some VCPU
6756 * gets a chance to run again. In the event that no KVM threads get a
6757 * chance to run, we will miss the entire elapsed period, as we'll have
6758 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
6759 * loose cycle time. This isn't too big a deal, since the loss will be
6760 * uniform across all VCPUs (not to mention the scenario is extremely
6761 * unlikely). It is possible that a second hibernate recovery happens
6762 * much faster than a first, causing the observed TSC here to be
6763 * smaller; this would require additional padding adjustment, which is
6764 * why we set last_host_tsc to the local tsc observed here.
6765 *
6766 * N.B. - this code below runs only on platforms with reliable TSC,
6767 * as that is the only way backwards_tsc is set above. Also note
6768 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
6769 * have the same delta_cyc adjustment applied if backwards_tsc
6770 * is detected. Note further, this adjustment is only done once,
6771 * as we reset last_host_tsc on all VCPUs to stop this from being
6772 * called multiple times (one for each physical CPU bringup).
6773 *
Guo Chao4a969982012-06-28 15:17:27 +08006774 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02006775 * will be compensated by the logic in vcpu_load, which sets the TSC to
6776 * catchup mode. This will catchup all VCPUs to real time, but cannot
6777 * guarantee that they stay in perfect synchronization.
6778 */
6779 if (backwards_tsc) {
6780 u64 delta_cyc = max_tsc - local_tsc;
6781 list_for_each_entry(kvm, &vm_list, vm_list) {
6782 kvm_for_each_vcpu(i, vcpu, kvm) {
6783 vcpu->arch.tsc_offset_adjustment += delta_cyc;
6784 vcpu->arch.last_host_tsc = local_tsc;
Marcelo Tosattid8281992012-11-27 23:29:01 -02006785 set_bit(KVM_REQ_MASTERCLOCK_UPDATE,
6786 &vcpu->requests);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02006787 }
6788
6789 /*
6790 * We have to disable TSC offset matching.. if you were
6791 * booting a VM while issuing an S4 host suspend....
6792 * you may have some problem. Solving this issue is
6793 * left as an exercise to the reader.
6794 */
6795 kvm->arch.last_tsc_nsec = 0;
6796 kvm->arch.last_tsc_write = 0;
6797 }
6798
6799 }
6800 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006801}
6802
6803void kvm_arch_hardware_disable(void *garbage)
6804{
6805 kvm_x86_ops->hardware_disable(garbage);
Avi Kivity3548bab2009-11-28 14:18:47 +02006806 drop_user_return_notifiers(garbage);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006807}
6808
6809int kvm_arch_hardware_setup(void)
6810{
6811 return kvm_x86_ops->hardware_setup();
6812}
6813
6814void kvm_arch_hardware_unsetup(void)
6815{
6816 kvm_x86_ops->hardware_unsetup();
6817}
6818
6819void kvm_arch_check_processor_compat(void *rtn)
6820{
6821 kvm_x86_ops->check_processor_compatibility(rtn);
6822}
6823
Avi Kivity3e515702012-03-05 14:23:29 +02006824bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu)
6825{
6826 return irqchip_in_kernel(vcpu->kvm) == (vcpu->arch.apic != NULL);
6827}
6828
Gleb Natapov54e98182012-08-05 15:58:32 +03006829struct static_key kvm_no_apic_vcpu __read_mostly;
6830
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006831int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
6832{
6833 struct page *page;
6834 struct kvm *kvm;
6835 int r;
6836
6837 BUG_ON(vcpu->kvm == NULL);
6838 kvm = vcpu->kvm;
6839
Avi Kivity9aabc88f2010-07-29 15:11:50 +03006840 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03006841 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03006842 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006843 else
Avi Kivitya4535292008-04-13 17:54:35 +03006844 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006845
6846 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
6847 if (!page) {
6848 r = -ENOMEM;
6849 goto fail;
6850 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006851 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006852
Zachary Amsdencc578282012-02-03 15:43:50 -02006853 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10006854
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006855 r = kvm_mmu_create(vcpu);
6856 if (r < 0)
6857 goto fail_free_pio_data;
6858
6859 if (irqchip_in_kernel(kvm)) {
6860 r = kvm_create_lapic(vcpu);
6861 if (r < 0)
6862 goto fail_mmu_destroy;
Gleb Natapov54e98182012-08-05 15:58:32 +03006863 } else
6864 static_key_slow_inc(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006865
Huang Ying890ca9a2009-05-11 16:48:15 +08006866 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
6867 GFP_KERNEL);
6868 if (!vcpu->arch.mce_banks) {
6869 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08006870 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08006871 }
6872 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
6873
Wei Yongjunf1797352013-04-18 07:41:00 +08006874 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) {
6875 r = -ENOMEM;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006876 goto fail_free_mce_banks;
Wei Yongjunf1797352013-04-18 07:41:00 +08006877 }
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006878
Julian Stecklina66f7b722012-12-05 15:26:19 +01006879 r = fx_init(vcpu);
6880 if (r)
6881 goto fail_free_wbinvd_dirty_mask;
6882
Will Auldba904632012-11-29 12:42:50 -08006883 vcpu->arch.ia32_tsc_adjust_msr = 0x0;
Andy Honig0b794592013-02-20 14:48:10 -08006884 vcpu->arch.pv_time_enabled = false;
Gleb Natapovaf585b92010-10-14 11:22:46 +02006885 kvm_async_pf_hash_reset(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02006886 kvm_pmu_init(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02006887
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006888 return 0;
Julian Stecklina66f7b722012-12-05 15:26:19 +01006889fail_free_wbinvd_dirty_mask:
6890 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006891fail_free_mce_banks:
6892 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08006893fail_free_lapic:
6894 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006895fail_mmu_destroy:
6896 kvm_mmu_destroy(vcpu);
6897fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006898 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006899fail:
6900 return r;
6901}
6902
6903void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
6904{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006905 int idx;
6906
Gleb Natapovf5132b02011-11-10 14:57:22 +02006907 kvm_pmu_destroy(vcpu);
Wei Yongjun36cb93f2010-01-22 14:18:47 +08006908 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006909 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006910 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006911 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006912 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006913 free_page((unsigned long)vcpu->arch.pio_data);
Gleb Natapov54e98182012-08-05 15:58:32 +03006914 if (!irqchip_in_kernel(vcpu->kvm))
6915 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006916}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006917
Carsten Ottee08b9632012-01-04 10:25:20 +01006918int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006919{
Carsten Ottee08b9632012-01-04 10:25:20 +01006920 if (type)
6921 return -EINVAL;
6922
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08006923 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Xiao Guangrong365c8862013-05-31 08:36:29 +08006924 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03006925 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006926
Sheng Yang5550af42008-10-15 20:15:06 +08006927 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
6928 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06006929 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
6930 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
6931 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08006932
Jan Kiszka038f8c12011-02-04 10:49:11 +01006933 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03006934 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02006935 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
6936
6937 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01006938
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01006939 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006940}
6941
6942static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
6943{
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03006944 int r;
6945 r = vcpu_load(vcpu);
6946 BUG_ON(r);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006947 kvm_mmu_unload(vcpu);
6948 vcpu_put(vcpu);
6949}
6950
6951static void kvm_free_vcpus(struct kvm *kvm)
6952{
6953 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03006954 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006955
6956 /*
6957 * Unpin any mmu pages first.
6958 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02006959 kvm_for_each_vcpu(i, vcpu, kvm) {
6960 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03006961 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02006962 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03006963 kvm_for_each_vcpu(i, vcpu, kvm)
6964 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006965
Gleb Natapov988a2ca2009-06-09 15:56:29 +03006966 mutex_lock(&kvm->lock);
6967 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
6968 kvm->vcpus[i] = NULL;
6969
6970 atomic_set(&kvm->online_vcpus, 0);
6971 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006972}
6973
Sheng Yangad8ba2c2009-01-06 10:03:02 +08006974void kvm_arch_sync_events(struct kvm *kvm)
6975{
Sheng Yangba4cef32009-01-06 10:03:03 +08006976 kvm_free_all_assigned_devices(kvm);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08006977 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08006978}
6979
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006980void kvm_arch_destroy_vm(struct kvm *kvm)
6981{
Andrew Honig27469d22013-04-18 09:38:14 -07006982 if (current->mm == kvm->mm) {
6983 /*
6984 * Free memory regions allocated on behalf of userspace,
6985 * unless the the memory map has changed due to process exit
6986 * or fd copying.
6987 */
6988 struct kvm_userspace_memory_region mem;
6989 memset(&mem, 0, sizeof(mem));
6990 mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
6991 kvm_set_memory_region(kvm, &mem);
6992
6993 mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
6994 kvm_set_memory_region(kvm, &mem);
6995
6996 mem.slot = TSS_PRIVATE_MEMSLOT;
6997 kvm_set_memory_region(kvm, &mem);
6998 }
Sheng Yang6eb55812008-10-31 12:37:41 +08006999 kvm_iommu_unmap_guest(kvm);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08007000 kfree(kvm->arch.vpic);
7001 kfree(kvm->arch.vioapic);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007002 kvm_free_vcpus(kvm);
Avi Kivity3d458302008-03-25 11:26:13 +02007003 if (kvm->arch.apic_access_page)
7004 put_page(kvm->arch.apic_access_page);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08007005 if (kvm->arch.ept_identity_pagetable)
7006 put_page(kvm->arch.ept_identity_pagetable);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03007007 kfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08007008}
Zhang Xiantao0de10342007-11-20 16:25:04 +08007009
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007010void kvm_arch_free_memslot(struct kvm_memory_slot *free,
7011 struct kvm_memory_slot *dont)
7012{
7013 int i;
7014
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007015 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
7016 if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) {
7017 kvm_kvfree(free->arch.rmap[i]);
7018 free->arch.rmap[i] = NULL;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007019 }
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007020 if (i == 0)
7021 continue;
7022
7023 if (!dont || free->arch.lpage_info[i - 1] !=
7024 dont->arch.lpage_info[i - 1]) {
7025 kvm_kvfree(free->arch.lpage_info[i - 1]);
7026 free->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007027 }
7028 }
7029}
7030
7031int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages)
7032{
7033 int i;
7034
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007035 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007036 unsigned long ugfn;
7037 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007038 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007039
7040 lpages = gfn_to_index(slot->base_gfn + npages - 1,
7041 slot->base_gfn, level) + 1;
7042
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007043 slot->arch.rmap[i] =
7044 kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i]));
7045 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007046 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007047 if (i == 0)
7048 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09007049
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007050 slot->arch.lpage_info[i - 1] = kvm_kvzalloc(lpages *
7051 sizeof(*slot->arch.lpage_info[i - 1]));
7052 if (!slot->arch.lpage_info[i - 1])
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007053 goto out_free;
7054
7055 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007056 slot->arch.lpage_info[i - 1][0].write_count = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007057 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007058 slot->arch.lpage_info[i - 1][lpages - 1].write_count = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007059 ugfn = slot->userspace_addr >> PAGE_SHIFT;
7060 /*
7061 * If the gfn and userspace address are not aligned wrt each
7062 * other, or if explicitly asked to, disable large page
7063 * support for this slot
7064 */
7065 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
7066 !kvm_largepages_enabled()) {
7067 unsigned long j;
7068
7069 for (j = 0; j < lpages; ++j)
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007070 slot->arch.lpage_info[i - 1][j].write_count = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007071 }
7072 }
7073
7074 return 0;
7075
7076out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09007077 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
7078 kvm_kvfree(slot->arch.rmap[i]);
7079 slot->arch.rmap[i] = NULL;
7080 if (i == 0)
7081 continue;
7082
7083 kvm_kvfree(slot->arch.lpage_info[i - 1]);
7084 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09007085 }
7086 return -ENOMEM;
7087}
7088
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09007089void kvm_arch_memslots_updated(struct kvm *kvm)
7090{
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09007091 /*
7092 * memslots->generation has been incremented.
7093 * mmio generation may have reached its maximum value.
7094 */
7095 kvm_mmu_invalidate_mmio_sptes(kvm);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09007096}
7097
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007098int kvm_arch_prepare_memory_region(struct kvm *kvm,
7099 struct kvm_memory_slot *memslot,
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007100 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09007101 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +08007102{
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007103 /*
7104 * Only private memory slots need to be mapped here since
7105 * KVM_SET_MEMORY_REGION ioctl is no longer supported.
Zhang Xiantao0de10342007-11-20 16:25:04 +08007106 */
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09007107 if ((memslot->id >= KVM_USER_MEM_SLOTS) && (change == KVM_MR_CREATE)) {
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007108 unsigned long userspace_addr;
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02007109
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007110 /*
7111 * MAP_SHARED to prevent internal slot pages from being moved
7112 * by fork()/COW.
7113 */
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09007114 userspace_addr = vm_mmap(NULL, 0, memslot->npages * PAGE_SIZE,
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007115 PROT_READ | PROT_WRITE,
7116 MAP_SHARED | MAP_ANONYMOUS, 0);
Zhang Xiantao0de10342007-11-20 16:25:04 +08007117
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007118 if (IS_ERR((void *)userspace_addr))
7119 return PTR_ERR((void *)userspace_addr);
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02007120
Takuya Yoshikawa7a905b12013-02-07 18:55:57 +09007121 memslot->userspace_addr = userspace_addr;
Zhang Xiantao0de10342007-11-20 16:25:04 +08007122 }
7123
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007124 return 0;
7125}
7126
7127void kvm_arch_commit_memory_region(struct kvm *kvm,
7128 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007129 const struct kvm_memory_slot *old,
7130 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007131{
7132
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007133 int nr_mmu_pages = 0;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007134
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007135 if ((mem->slot >= KVM_USER_MEM_SLOTS) && (change == KVM_MR_DELETE)) {
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007136 int ret;
7137
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007138 ret = vm_munmap(old->userspace_addr,
7139 old->npages * PAGE_SIZE);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02007140 if (ret < 0)
7141 printk(KERN_WARNING
7142 "kvm_vm_ioctl_set_memory_region: "
7143 "failed to munmap memory\n");
7144 }
7145
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08007146 if (!kvm->arch.n_requested_mmu_pages)
7147 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08007148
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08007149 if (nr_mmu_pages)
7150 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09007151 /*
7152 * Write protect all pages for dirty logging.
7153 * Existing largepage mappings are destroyed here and new ones will
7154 * not be created until the end of the logging.
7155 */
Takuya Yoshikawa84826442013-02-27 19:45:25 +09007156 if ((change != KVM_MR_DELETE) && (mem->flags & KVM_MEM_LOG_DIRTY_PAGES))
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +09007157 kvm_mmu_slot_remove_write_access(kvm, mem->slot);
Zhang Xiantao0de10342007-11-20 16:25:04 +08007158}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08007159
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03007160void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03007161{
Xiao Guangrong6ca18b62013-05-31 08:36:23 +08007162 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03007163}
7164
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03007165void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
7166 struct kvm_memory_slot *slot)
7167{
Xiao Guangrong6ca18b62013-05-31 08:36:23 +08007168 kvm_mmu_invalidate_zap_all_pages(kvm);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03007169}
7170
Zhang Xiantao1d737c82007-12-14 09:35:10 +08007171int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
7172{
Gleb Natapovaf585b92010-10-14 11:22:46 +02007173 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
7174 !vcpu->arch.apf.halted)
7175 || !list_empty_careful(&vcpu->async_pf.done)
Jan Kiszka66450a22013-03-13 12:42:34 +01007176 || kvm_apic_has_events(vcpu)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007177 || atomic_read(&vcpu->arch.nmi_queued) ||
Gleb Natapova1b37102009-07-09 15:33:52 +03007178 (kvm_arch_interrupt_allowed(vcpu) &&
7179 kvm_cpu_has_interrupt(vcpu));
Zhang Xiantao1d737c82007-12-14 09:35:10 +08007180}
Zhang Xiantao57361992007-12-17 14:21:40 +08007181
Christoffer Dallb6d33832012-03-08 16:44:24 -05007182int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +08007183{
Christoffer Dallb6d33832012-03-08 16:44:24 -05007184 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +08007185}
Gleb Natapov78646122009-03-23 12:12:11 +02007186
7187int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
7188{
7189 return kvm_x86_ops->interrupt_allowed(vcpu);
7190}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007191
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007192bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
7193{
7194 unsigned long current_rip = kvm_rip_read(vcpu) +
7195 get_segment_base(vcpu, VCPU_SREG_CS);
7196
7197 return current_rip == linear_rip;
7198}
7199EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
7200
Jan Kiszka94fe45d2009-10-18 13:24:44 +02007201unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
7202{
7203 unsigned long rflags;
7204
7205 rflags = kvm_x86_ops->get_rflags(vcpu);
7206 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01007207 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02007208 return rflags;
7209}
7210EXPORT_SYMBOL_GPL(kvm_get_rflags);
7211
7212void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
7213{
7214 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01007215 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01007216 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02007217 kvm_x86_ops->set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03007218 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02007219}
7220EXPORT_SYMBOL_GPL(kvm_set_rflags);
7221
Gleb Natapov56028d02010-10-17 18:13:42 +02007222void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
7223{
7224 int r;
7225
Xiao Guangrongfb67e142010-12-07 10:35:25 +08007226 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
Xiao Guangrongc4806ac2010-11-12 14:49:55 +08007227 is_error_page(work->page))
Gleb Natapov56028d02010-10-17 18:13:42 +02007228 return;
7229
7230 r = kvm_mmu_reload(vcpu);
7231 if (unlikely(r))
7232 return;
7233
Xiao Guangrongfb67e142010-12-07 10:35:25 +08007234 if (!vcpu->arch.mmu.direct_map &&
7235 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
7236 return;
7237
Gleb Natapov56028d02010-10-17 18:13:42 +02007238 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
7239}
7240
Gleb Natapovaf585b92010-10-14 11:22:46 +02007241static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
7242{
7243 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
7244}
7245
7246static inline u32 kvm_async_pf_next_probe(u32 key)
7247{
7248 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
7249}
7250
7251static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
7252{
7253 u32 key = kvm_async_pf_hash_fn(gfn);
7254
7255 while (vcpu->arch.apf.gfns[key] != ~0)
7256 key = kvm_async_pf_next_probe(key);
7257
7258 vcpu->arch.apf.gfns[key] = gfn;
7259}
7260
7261static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
7262{
7263 int i;
7264 u32 key = kvm_async_pf_hash_fn(gfn);
7265
7266 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08007267 (vcpu->arch.apf.gfns[key] != gfn &&
7268 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02007269 key = kvm_async_pf_next_probe(key);
7270
7271 return key;
7272}
7273
7274bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
7275{
7276 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
7277}
7278
7279static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
7280{
7281 u32 i, j, k;
7282
7283 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
7284 while (true) {
7285 vcpu->arch.apf.gfns[i] = ~0;
7286 do {
7287 j = kvm_async_pf_next_probe(j);
7288 if (vcpu->arch.apf.gfns[j] == ~0)
7289 return;
7290 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
7291 /*
7292 * k lies cyclically in ]i,j]
7293 * | i.k.j |
7294 * |....j i.k.| or |.k..j i...|
7295 */
7296 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
7297 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
7298 i = j;
7299 }
7300}
7301
Gleb Natapov7c907052010-10-14 11:22:53 +02007302static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
7303{
7304
7305 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val,
7306 sizeof(val));
7307}
7308
Gleb Natapovaf585b92010-10-14 11:22:46 +02007309void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
7310 struct kvm_async_pf *work)
7311{
Avi Kivity6389ee92010-11-29 16:12:30 +02007312 struct x86_exception fault;
7313
Gleb Natapov7c907052010-10-14 11:22:53 +02007314 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007315 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02007316
7317 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02007318 (vcpu->arch.apf.send_user_only &&
7319 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02007320 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
7321 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02007322 fault.vector = PF_VECTOR;
7323 fault.error_code_valid = true;
7324 fault.error_code = 0;
7325 fault.nested_page_fault = false;
7326 fault.address = work->arch.token;
7327 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02007328 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02007329}
7330
7331void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
7332 struct kvm_async_pf *work)
7333{
Avi Kivity6389ee92010-11-29 16:12:30 +02007334 struct x86_exception fault;
7335
Gleb Natapov7c907052010-10-14 11:22:53 +02007336 trace_kvm_async_pf_ready(work->arch.token, work->gva);
7337 if (is_error_page(work->page))
7338 work->arch.token = ~0; /* broadcast wakeup */
7339 else
7340 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
7341
7342 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
7343 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02007344 fault.vector = PF_VECTOR;
7345 fault.error_code_valid = true;
7346 fault.error_code = 0;
7347 fault.nested_page_fault = false;
7348 fault.address = work->arch.token;
7349 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02007350 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08007351 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +03007352 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +02007353}
7354
7355bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
7356{
7357 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
7358 return true;
7359 else
7360 return !kvm_event_needs_reinjection(vcpu) &&
7361 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02007362}
7363
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007364EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
7365EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
7366EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
7367EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
7368EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02007369EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02007370EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02007371EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02007372EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02007373EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02007374EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01007375EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09007376EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);