blob: 917a287d21c8117ebdd377d0961b61f8186de090 [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"
Carsten Otte313a3dc2007-10-11 19:16:52 +020029
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020030#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030031#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020032#include <linux/kvm.h>
33#include <linux/fs.h>
34#include <linux/vmalloc.h>
Carsten Otte5fb76f92007-10-29 16:08:51 +010035#include <linux/module.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080036#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050037#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010038#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030039#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010040#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030041#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020042#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080044#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080045#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020046#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020047#include <linux/pci.h>
Avi Kivityaec51dc2009-07-01 16:01:02 +030048#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080049
Marcelo Tosatti229456f2009-06-17 09:22:14 -030050#define CREATE_TRACE_POINTS
51#include "trace.h"
Carsten Otte043405e2007-10-10 17:16:19 +020052
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020053#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080054#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020055#include <asm/desc.h>
Sheng Yang0bed3b52008-10-09 16:01:54 +080056#include <asm/mtrr.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080057#include <asm/mce.h>
Sheng Yang7cf30852010-05-17 17:08:27 +080058#include <asm/i387.h>
Sheng Yang98918832010-05-17 17:08:28 +080059#include <asm/xcr.h>
Zachary Amsden1d5f0662010-08-19 22:07:30 -100060#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030061#include <asm/div64.h>
Carsten Otte043405e2007-10-10 17:16:19 +020062
Carsten Otte313a3dc2007-10-11 19:16:52 +020063#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080064#define KVM_MAX_MCE_BANKS 32
Huang Ying5854dbc2010-10-08 16:24:14 +080065#define KVM_MCE_CAP_SUPPORTED (MCG_CTL_P | MCG_SER_P)
Huang Ying890ca9a2009-05-11 16:48:15 +080066
Avi Kivity0f65dd72011-04-20 13:37:53 +030067#define emul_to_vcpu(ctxt) \
68 container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt)
69
Joerg Roedel50a37eb2008-01-31 14:57:38 +010070/* EFER defaults:
71 * - enable syscall per default because its emulated by KVM
72 * - enable LME and LMA per default on 64 bit KVM
73 */
74#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080075static
76u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010077#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080078static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010079#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020080
Avi Kivityba1389b2007-11-18 16:24:12 +020081#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
82#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050083
Gleb Natapovcb142eb2009-08-09 15:17:40 +030084static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +020085static int kvm_dev_ioctl_get_supported_cpuid(struct kvm_cpuid2 *cpuid,
86 struct kvm_cpuid_entry2 __user *entries);
Avi Kivity7460fb4a2011-09-20 13:43:14 +030087static void process_nmi(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +020088
Zhang Xiantao97896d02007-11-14 20:09:30 +080089struct kvm_x86_ops *kvm_x86_ops;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030090EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +080091
Andre Przywaraed85c062009-06-25 12:36:49 +020092int ignore_msrs = 0;
93module_param_named(ignore_msrs, ignore_msrs, bool, S_IRUGO | S_IWUSR);
94
Joerg Roedel92a1f122011-03-25 09:44:51 +010095bool kvm_has_tsc_control;
96EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
97u32 kvm_max_guest_tsc_khz;
98EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
99
Avi Kivity18863bd2009-09-07 11:12:18 +0300100#define KVM_NR_SHARED_MSRS 16
101
102struct kvm_shared_msrs_global {
103 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800104 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300105};
106
107struct kvm_shared_msrs {
108 struct user_return_notifier urn;
109 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800110 struct kvm_shared_msr_values {
111 u64 host;
112 u64 curr;
113 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300114};
115
116static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
117static DEFINE_PER_CPU(struct kvm_shared_msrs, shared_msrs);
118
Hollis Blanchard417bc302007-10-31 17:24:23 -0500119struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +0200120 { "pf_fixed", VCPU_STAT(pf_fixed) },
121 { "pf_guest", VCPU_STAT(pf_guest) },
122 { "tlb_flush", VCPU_STAT(tlb_flush) },
123 { "invlpg", VCPU_STAT(invlpg) },
124 { "exits", VCPU_STAT(exits) },
125 { "io_exits", VCPU_STAT(io_exits) },
126 { "mmio_exits", VCPU_STAT(mmio_exits) },
127 { "signal_exits", VCPU_STAT(signal_exits) },
128 { "irq_window", VCPU_STAT(irq_window_exits) },
Sheng Yangf08864b2008-05-15 18:23:25 +0800129 { "nmi_window", VCPU_STAT(nmi_window_exits) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200130 { "halt_exits", VCPU_STAT(halt_exits) },
131 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +0530132 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +0200133 { "request_irq", VCPU_STAT(request_irq_exits) },
134 { "irq_exits", VCPU_STAT(irq_exits) },
135 { "host_state_reload", VCPU_STAT(host_state_reload) },
136 { "efer_reload", VCPU_STAT(efer_reload) },
137 { "fpu_reload", VCPU_STAT(fpu_reload) },
138 { "insn_emulation", VCPU_STAT(insn_emulation) },
139 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivityfa89a812008-09-01 15:57:51 +0300140 { "irq_injections", VCPU_STAT(irq_injections) },
Jan Kiszkac4abb7c2008-09-26 09:30:55 +0200141 { "nmi_injections", VCPU_STAT(nmi_injections) },
Avi Kivity4cee5762007-11-18 16:37:07 +0200142 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
143 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
144 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
145 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
146 { "mmu_flooded", VM_STAT(mmu_flooded) },
147 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +0200148 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300149 { "mmu_unsync", VM_STAT(mmu_unsync) },
Avi Kivity0f74a242007-11-20 23:01:14 +0200150 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300151 { "largepages", VM_STAT(lpages) },
Hollis Blanchard417bc302007-10-31 17:24:23 -0500152 { NULL }
153};
154
Dexuan Cui2acf9232010-06-10 11:27:12 +0800155u64 __read_mostly host_xcr0;
156
Avi Kivityd6aa1002011-04-20 15:47:13 +0300157int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
158
Gleb Natapovaf585b92010-10-14 11:22:46 +0200159static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
160{
161 int i;
162 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++)
163 vcpu->arch.apf.gfns[i] = ~0;
164}
165
Avi Kivity18863bd2009-09-07 11:12:18 +0300166static void kvm_on_user_return(struct user_return_notifier *urn)
167{
168 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300169 struct kvm_shared_msrs *locals
170 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800171 struct kvm_shared_msr_values *values;
Avi Kivity18863bd2009-09-07 11:12:18 +0300172
173 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800174 values = &locals->values[slot];
175 if (values->host != values->curr) {
176 wrmsrl(shared_msrs_global.msrs[slot], values->host);
177 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300178 }
179 }
180 locals->registered = false;
181 user_return_notifier_unregister(urn);
182}
183
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800184static void shared_msr_update(unsigned slot, u32 msr)
Avi Kivity18863bd2009-09-07 11:12:18 +0300185{
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800186 struct kvm_shared_msrs *smsr;
Avi Kivity18863bd2009-09-07 11:12:18 +0300187 u64 value;
188
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800189 smsr = &__get_cpu_var(shared_msrs);
190 /* only read, and nobody should modify it at this time,
191 * so don't need lock */
192 if (slot >= shared_msrs_global.nr) {
193 printk(KERN_ERR "kvm: invalid MSR slot!");
194 return;
195 }
196 rdmsrl_safe(msr, &value);
197 smsr->values[slot].host = value;
198 smsr->values[slot].curr = value;
199}
200
201void kvm_define_shared_msr(unsigned slot, u32 msr)
202{
Avi Kivity18863bd2009-09-07 11:12:18 +0300203 if (slot >= shared_msrs_global.nr)
204 shared_msrs_global.nr = slot + 1;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800205 shared_msrs_global.msrs[slot] = msr;
206 /* we need ensured the shared_msr_global have been updated */
207 smp_wmb();
Avi Kivity18863bd2009-09-07 11:12:18 +0300208}
209EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
210
211static void kvm_shared_msr_cpu_online(void)
212{
213 unsigned i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300214
215 for (i = 0; i < shared_msrs_global.nr; ++i)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800216 shared_msr_update(i, shared_msrs_global.msrs[i]);
Avi Kivity18863bd2009-09-07 11:12:18 +0300217}
218
Avi Kivityd5696722009-12-02 12:28:47 +0200219void kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300220{
221 struct kvm_shared_msrs *smsr = &__get_cpu_var(shared_msrs);
222
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800223 if (((value ^ smsr->values[slot].curr) & mask) == 0)
Avi Kivity18863bd2009-09-07 11:12:18 +0300224 return;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800225 smsr->values[slot].curr = value;
226 wrmsrl(shared_msrs_global.msrs[slot], value);
Avi Kivity18863bd2009-09-07 11:12:18 +0300227 if (!smsr->registered) {
228 smsr->urn.on_user_return = kvm_on_user_return;
229 user_return_notifier_register(&smsr->urn);
230 smsr->registered = true;
231 }
232}
233EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
234
Avi Kivity3548bab2009-11-28 14:18:47 +0200235static void drop_user_return_notifiers(void *ignore)
236{
237 struct kvm_shared_msrs *smsr = &__get_cpu_var(shared_msrs);
238
239 if (smsr->registered)
240 kvm_on_user_return(&smsr->urn);
241}
242
Carsten Otte6866b832007-10-29 16:09:10 +0100243u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
244{
245 if (irqchip_in_kernel(vcpu->kvm))
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800246 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100247 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800248 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100249}
250EXPORT_SYMBOL_GPL(kvm_get_apic_base);
251
252void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data)
253{
254 /* TODO: reserve bits check */
255 if (irqchip_in_kernel(vcpu->kvm))
256 kvm_lapic_set_base(vcpu, data);
257 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800258 vcpu->arch.apic_base = data;
Carsten Otte6866b832007-10-29 16:09:10 +0100259}
260EXPORT_SYMBOL_GPL(kvm_set_apic_base);
261
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200262#define EXCPT_BENIGN 0
263#define EXCPT_CONTRIBUTORY 1
264#define EXCPT_PF 2
265
266static int exception_class(int vector)
267{
268 switch (vector) {
269 case PF_VECTOR:
270 return EXCPT_PF;
271 case DE_VECTOR:
272 case TS_VECTOR:
273 case NP_VECTOR:
274 case SS_VECTOR:
275 case GP_VECTOR:
276 return EXCPT_CONTRIBUTORY;
277 default:
278 break;
279 }
280 return EXCPT_BENIGN;
281}
282
283static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200284 unsigned nr, bool has_error, u32 error_code,
285 bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200286{
287 u32 prev_nr;
288 int class1, class2;
289
Avi Kivity3842d132010-07-27 12:30:24 +0300290 kvm_make_request(KVM_REQ_EVENT, vcpu);
291
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200292 if (!vcpu->arch.exception.pending) {
293 queue:
294 vcpu->arch.exception.pending = true;
295 vcpu->arch.exception.has_error_code = has_error;
296 vcpu->arch.exception.nr = nr;
297 vcpu->arch.exception.error_code = error_code;
Joerg Roedel3f0fd292010-05-05 16:04:41 +0200298 vcpu->arch.exception.reinject = reinject;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200299 return;
300 }
301
302 /* to check exception */
303 prev_nr = vcpu->arch.exception.nr;
304 if (prev_nr == DF_VECTOR) {
305 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300306 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200307 return;
308 }
309 class1 = exception_class(prev_nr);
310 class2 = exception_class(nr);
311 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
312 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
313 /* generate double fault per SDM Table 5-5 */
314 vcpu->arch.exception.pending = true;
315 vcpu->arch.exception.has_error_code = true;
316 vcpu->arch.exception.nr = DF_VECTOR;
317 vcpu->arch.exception.error_code = 0;
318 } else
319 /* replace previous exception with a new one in a hope
320 that instruction re-execution will regenerate lost
321 exception */
322 goto queue;
323}
324
Avi Kivity298101d2007-11-25 13:41:11 +0200325void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
326{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200327 kvm_multiple_exception(vcpu, nr, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200328}
329EXPORT_SYMBOL_GPL(kvm_queue_exception);
330
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200331void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
332{
333 kvm_multiple_exception(vcpu, nr, false, 0, true);
334}
335EXPORT_SYMBOL_GPL(kvm_requeue_exception);
336
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100337void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200338{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100339 if (err)
340 kvm_inject_gp(vcpu, 0);
341 else
342 kvm_x86_ops->skip_emulated_instruction(vcpu);
343}
344EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200345
Avi Kivity6389ee92010-11-29 16:12:30 +0200346void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200347{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200348 ++vcpu->stat.pf_guest;
Avi Kivity6389ee92010-11-29 16:12:30 +0200349 vcpu->arch.cr2 = fault->address;
350 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200351}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300352EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200353
Avi Kivity6389ee92010-11-29 16:12:30 +0200354void kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200355{
Avi Kivity6389ee92010-11-29 16:12:30 +0200356 if (mmu_is_nested(vcpu) && !fault->nested_page_fault)
357 vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200358 else
Avi Kivity6389ee92010-11-29 16:12:30 +0200359 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200360}
361
Sheng Yang3419ffc2008-05-15 09:52:48 +0800362void kvm_inject_nmi(struct kvm_vcpu *vcpu)
363{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300364 atomic_inc(&vcpu->arch.nmi_queued);
365 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800366}
367EXPORT_SYMBOL_GPL(kvm_inject_nmi);
368
Avi Kivity298101d2007-11-25 13:41:11 +0200369void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
370{
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200371 kvm_multiple_exception(vcpu, nr, true, error_code, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200372}
373EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
374
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200375void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
376{
377 kvm_multiple_exception(vcpu, nr, true, error_code, true);
378}
379EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
380
Carsten Ottea03490e2007-10-29 16:09:35 +0100381/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300382 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
383 * a #GP and return false.
384 */
385bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200386{
Avi Kivity0a79b002009-09-01 12:03:25 +0300387 if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl)
388 return true;
389 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
390 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100391}
Avi Kivity0a79b002009-09-01 12:03:25 +0300392EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100393
394/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200395 * This function will be used to read from the physical memory of the currently
396 * running guest. The difference to kvm_read_guest_page is that this function
397 * can read from guest physical or from the guest's guest physical memory.
398 */
399int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
400 gfn_t ngfn, void *data, int offset, int len,
401 u32 access)
402{
403 gfn_t real_gfn;
404 gpa_t ngpa;
405
406 ngpa = gfn_to_gpa(ngfn);
407 real_gfn = mmu->translate_gpa(vcpu, ngpa, access);
408 if (real_gfn == UNMAPPED_GVA)
409 return -EFAULT;
410
411 real_gfn = gpa_to_gfn(real_gfn);
412
413 return kvm_read_guest_page(vcpu->kvm, real_gfn, data, offset, len);
414}
415EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
416
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200417int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
418 void *data, int offset, int len, u32 access)
419{
420 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
421 data, offset, len, access);
422}
423
Joerg Roedelec92fe42010-09-10 17:30:51 +0200424/*
Carsten Ottea03490e2007-10-29 16:09:35 +0100425 * Load the pae pdptrs. Return true is they are all valid.
426 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200427int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100428{
429 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
430 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
431 int i;
432 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200433 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100434
Joerg Roedelff03a072010-09-10 17:30:57 +0200435 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
436 offset * sizeof(u64), sizeof(pdpte),
437 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100438 if (ret < 0) {
439 ret = 0;
440 goto out;
441 }
442 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Avi Kivity43a37952009-06-10 14:12:05 +0300443 if (is_present_gpte(pdpte[i]) &&
Dong, Eddie20c466b2009-03-31 23:03:45 +0800444 (pdpte[i] & vcpu->arch.mmu.rsvd_bits_mask[0][2])) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100445 ret = 0;
446 goto out;
447 }
448 }
449 ret = 1;
450
Joerg Roedelff03a072010-09-10 17:30:57 +0200451 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300452 __set_bit(VCPU_EXREG_PDPTR,
453 (unsigned long *)&vcpu->arch.regs_avail);
454 __set_bit(VCPU_EXREG_PDPTR,
455 (unsigned long *)&vcpu->arch.regs_dirty);
Carsten Ottea03490e2007-10-29 16:09:35 +0100456out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100457
458 return ret;
459}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100460EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100461
Avi Kivityd835dfe2007-11-21 02:57:59 +0200462static bool pdptrs_changed(struct kvm_vcpu *vcpu)
463{
Joerg Roedelff03a072010-09-10 17:30:57 +0200464 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200465 bool changed = true;
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200466 int offset;
467 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200468 int r;
469
470 if (is_long_mode(vcpu) || !is_pae(vcpu))
471 return false;
472
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300473 if (!test_bit(VCPU_EXREG_PDPTR,
474 (unsigned long *)&vcpu->arch.regs_avail))
475 return true;
476
Avi Kivity9f8fe502010-12-05 17:30:00 +0200477 gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT;
478 offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200479 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
480 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200481 if (r < 0)
482 goto out;
Joerg Roedelff03a072010-09-10 17:30:57 +0200483 changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200484out:
Avi Kivityd835dfe2007-11-21 02:57:59 +0200485
486 return changed;
487}
488
Avi Kivity49a9b072010-06-10 17:02:14 +0300489int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100490{
Sheng Yangaad82702010-05-12 16:40:42 +0800491 unsigned long old_cr0 = kvm_read_cr0(vcpu);
492 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP |
493 X86_CR0_CD | X86_CR0_NW;
494
Avi Kivityf9a48e62010-01-06 19:10:22 +0200495 cr0 |= X86_CR0_ET;
496
Gleb Natapovab344822010-01-21 15:28:46 +0200497#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300498 if (cr0 & 0xffffffff00000000UL)
499 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200500#endif
501
502 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100503
Gleb Natapov0f122442010-04-28 19:15:31 +0300504 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
505 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100506
Gleb Natapov0f122442010-04-28 19:15:31 +0300507 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
508 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100509
510 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
511#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200512 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100513 int cs_db, cs_l;
514
Gleb Natapov0f122442010-04-28 19:15:31 +0300515 if (!is_pae(vcpu))
516 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100517 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300518 if (cs_l)
519 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100520 } else
521#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200522 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200523 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300524 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100525 }
526
527 kvm_x86_ops->set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100528
Lai Jiangshand170c412011-02-21 11:21:30 +0800529 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800530 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800531 kvm_async_pf_hash_reset(vcpu);
532 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800533
Sheng Yangaad82702010-05-12 16:40:42 +0800534 if ((cr0 ^ old_cr0) & update_bits)
535 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300536 return 0;
537}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200538EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100539
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200540void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100541{
Avi Kivity49a9b072010-06-10 17:02:14 +0300542 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100543}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200544EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100545
Dexuan Cui2acf9232010-06-10 11:27:12 +0800546int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
547{
548 u64 xcr0;
549
550 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
551 if (index != XCR_XFEATURE_ENABLED_MASK)
552 return 1;
553 xcr0 = xcr;
554 if (kvm_x86_ops->get_cpl(vcpu) != 0)
555 return 1;
556 if (!(xcr0 & XSTATE_FP))
557 return 1;
558 if ((xcr0 & XSTATE_YMM) && !(xcr0 & XSTATE_SSE))
559 return 1;
560 if (xcr0 & ~host_xcr0)
561 return 1;
562 vcpu->arch.xcr0 = xcr0;
563 vcpu->guest_xcr0_loaded = 0;
564 return 0;
565}
566
567int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
568{
569 if (__kvm_set_xcr(vcpu, index, xcr)) {
570 kvm_inject_gp(vcpu, 0);
571 return 1;
572 }
573 return 0;
574}
575EXPORT_SYMBOL_GPL(kvm_set_xcr);
576
577static bool guest_cpuid_has_xsave(struct kvm_vcpu *vcpu)
578{
579 struct kvm_cpuid_entry2 *best;
580
581 best = kvm_find_cpuid_entry(vcpu, 1, 0);
582 return best && (best->ecx & bit(X86_FEATURE_XSAVE));
583}
584
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800585static bool guest_cpuid_has_smep(struct kvm_vcpu *vcpu)
586{
587 struct kvm_cpuid_entry2 *best;
588
589 best = kvm_find_cpuid_entry(vcpu, 7, 0);
590 return best && (best->ebx & bit(X86_FEATURE_SMEP));
591}
592
Yang, Wei74dc2b42011-06-14 20:10:18 +0800593static bool guest_cpuid_has_fsgsbase(struct kvm_vcpu *vcpu)
594{
595 struct kvm_cpuid_entry2 *best;
596
597 best = kvm_find_cpuid_entry(vcpu, 7, 0);
598 return best && (best->ebx & bit(X86_FEATURE_FSGSBASE));
599}
600
Dexuan Cui2acf9232010-06-10 11:27:12 +0800601static void update_cpuid(struct kvm_vcpu *vcpu)
602{
603 struct kvm_cpuid_entry2 *best;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800604 struct kvm_lapic *apic = vcpu->arch.apic;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800605
606 best = kvm_find_cpuid_entry(vcpu, 1, 0);
607 if (!best)
608 return;
609
610 /* Update OSXSAVE bit */
611 if (cpu_has_xsave && best->function == 0x1) {
612 best->ecx &= ~(bit(X86_FEATURE_OSXSAVE));
613 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE))
614 best->ecx |= bit(X86_FEATURE_OSXSAVE);
615 }
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800616
Jan Kiszka4d25a0662011-12-21 12:28:29 +0100617 if (apic) {
618 if (best->ecx & bit(X86_FEATURE_TSC_DEADLINE_TIMER))
619 apic->lapic_timer.timer_mode_mask = 3 << 17;
620 else
621 apic->lapic_timer.timer_mode_mask = 1 << 17;
622 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800623}
624
Avi Kivitya83b29c2010-06-10 17:02:15 +0300625int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100626{
Avi Kivityfc78f512009-12-07 12:16:48 +0200627 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800628 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE |
629 X86_CR4_PAE | X86_CR4_SMEP;
Gleb Natapov0f122442010-04-28 19:15:31 +0300630 if (cr4 & CR4_RESERVED_BITS)
631 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100632
Dexuan Cui2acf9232010-06-10 11:27:12 +0800633 if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE))
634 return 1;
635
Yang, Wei Yc68b7342011-06-03 11:13:42 +0800636 if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP))
637 return 1;
638
Yang, Wei74dc2b42011-06-14 20:10:18 +0800639 if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_RDWRGSFS))
640 return 1;
641
Carsten Ottea03490e2007-10-29 16:09:35 +0100642 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300643 if (!(cr4 & X86_CR4_PAE))
644 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300645 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
646 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200647 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
648 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300649 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100650
Nadav Har'El5e1746d2011-05-25 23:03:24 +0300651 if (kvm_x86_ops->set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300652 return 1;
653
Sheng Yangaad82702010-05-12 16:40:42 +0800654 if ((cr4 ^ old_cr4) & pdptr_bits)
655 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300656
Dexuan Cui2acf9232010-06-10 11:27:12 +0800657 if ((cr4 ^ old_cr4) & X86_CR4_OSXSAVE)
658 update_cpuid(vcpu);
659
Gleb Natapov0f122442010-04-28 19:15:31 +0300660 return 0;
661}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200662EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100663
Avi Kivity23902182010-06-10 17:02:16 +0300664int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100665{
Avi Kivity9f8fe502010-12-05 17:30:00 +0200666 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -0300667 kvm_mmu_sync_roots(vcpu);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200668 kvm_mmu_flush_tlb(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300669 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200670 }
671
Carsten Ottea03490e2007-10-29 16:09:35 +0100672 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300673 if (cr3 & CR3_L_MODE_RESERVED_BITS)
674 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100675 } else {
676 if (is_pae(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300677 if (cr3 & CR3_PAE_RESERVED_BITS)
678 return 1;
Joerg Roedelff03a072010-09-10 17:30:57 +0200679 if (is_paging(vcpu) &&
680 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Gleb Natapov0f122442010-04-28 19:15:31 +0300681 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100682 }
683 /*
684 * We don't check reserved bits in nonpae mode, because
685 * this isn't enforced, and VMware depends on this.
686 */
687 }
688
Carsten Ottea03490e2007-10-29 16:09:35 +0100689 /*
690 * Does the new cr3 value map to physical memory? (Note, we
691 * catch an invalid cr3 even in real-mode, because it would
692 * cause trouble later on when we turn on paging anyway.)
693 *
694 * A real CPU would silently accept an invalid cr3 and would
695 * attempt to use it - with largely undefined (and often hard
696 * to debug) behavior on the guest side.
697 */
698 if (unlikely(!gfn_to_memslot(vcpu->kvm, cr3 >> PAGE_SHIFT)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300699 return 1;
700 vcpu->arch.cr3 = cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +0200701 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Gleb Natapov0f122442010-04-28 19:15:31 +0300702 vcpu->arch.mmu.new_cr3(vcpu);
703 return 0;
704}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200705EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100706
Andre Przywaraeea1cff2010-12-21 11:12:00 +0100707int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100708{
Gleb Natapov0f122442010-04-28 19:15:31 +0300709 if (cr8 & CR8_RESERVED_BITS)
710 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100711 if (irqchip_in_kernel(vcpu->kvm))
712 kvm_lapic_set_tpr(vcpu, cr8);
713 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800714 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +0300715 return 0;
716}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200717EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100718
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200719unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100720{
721 if (irqchip_in_kernel(vcpu->kvm))
722 return kvm_lapic_get_cr8(vcpu);
723 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800724 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100725}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200726EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100727
Gleb Natapov338dbc92010-04-28 19:15:32 +0300728static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +0300729{
730 switch (dr) {
731 case 0 ... 3:
732 vcpu->arch.db[dr] = val;
733 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
734 vcpu->arch.eff_db[dr] = val;
735 break;
736 case 4:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300737 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE))
738 return 1; /* #UD */
Gleb Natapov020df072010-04-13 10:05:23 +0300739 /* fall through */
740 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300741 if (val & 0xffffffff00000000ULL)
742 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300743 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
744 break;
745 case 5:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300746 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE))
747 return 1; /* #UD */
Gleb Natapov020df072010-04-13 10:05:23 +0300748 /* fall through */
749 default: /* 7 */
Gleb Natapov338dbc92010-04-28 19:15:32 +0300750 if (val & 0xffffffff00000000ULL)
751 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +0300752 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
753 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
754 kvm_x86_ops->set_dr7(vcpu, vcpu->arch.dr7);
755 vcpu->arch.switch_db_regs = (val & DR7_BP_EN_MASK);
756 }
757 break;
758 }
759
760 return 0;
761}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300762
763int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
764{
765 int res;
766
767 res = __kvm_set_dr(vcpu, dr, val);
768 if (res > 0)
769 kvm_queue_exception(vcpu, UD_VECTOR);
770 else if (res < 0)
771 kvm_inject_gp(vcpu, 0);
772
773 return res;
774}
Gleb Natapov020df072010-04-13 10:05:23 +0300775EXPORT_SYMBOL_GPL(kvm_set_dr);
776
Gleb Natapov338dbc92010-04-28 19:15:32 +0300777static int _kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +0300778{
779 switch (dr) {
780 case 0 ... 3:
781 *val = vcpu->arch.db[dr];
782 break;
783 case 4:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300784 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE))
Gleb Natapov020df072010-04-13 10:05:23 +0300785 return 1;
Gleb Natapov020df072010-04-13 10:05:23 +0300786 /* fall through */
787 case 6:
788 *val = vcpu->arch.dr6;
789 break;
790 case 5:
Gleb Natapov338dbc92010-04-28 19:15:32 +0300791 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE))
Gleb Natapov020df072010-04-13 10:05:23 +0300792 return 1;
Gleb Natapov020df072010-04-13 10:05:23 +0300793 /* fall through */
794 default: /* 7 */
795 *val = vcpu->arch.dr7;
796 break;
797 }
798
799 return 0;
800}
Gleb Natapov338dbc92010-04-28 19:15:32 +0300801
802int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
803{
804 if (_kvm_get_dr(vcpu, dr, val)) {
805 kvm_queue_exception(vcpu, UD_VECTOR);
806 return 1;
807 }
808 return 0;
809}
Gleb Natapov020df072010-04-13 10:05:23 +0300810EXPORT_SYMBOL_GPL(kvm_get_dr);
811
Carsten Otte043405e2007-10-10 17:16:19 +0200812/*
813 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
814 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
815 *
816 * This list is modified at module load time to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -0400817 * capabilities of the host cpu. This capabilities test skips MSRs that are
818 * kvm-specific. Those are put in the beginning of the list.
Carsten Otte043405e2007-10-10 17:16:19 +0200819 */
Glauber Costae3267cb2009-10-06 13:24:50 -0400820
Glauber Costac9aaa892011-07-11 15:28:14 -0400821#define KVM_SAVE_MSRS_BEGIN 9
Carsten Otte043405e2007-10-10 17:16:19 +0200822static u32 msrs_to_save[] = {
Glauber Costae3267cb2009-10-06 13:24:50 -0400823 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
Glauber Costa11c6bff2010-05-11 12:17:41 -0400824 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
Gleb Natapov55cd8e52010-01-17 15:51:22 +0200825 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
Glauber Costac9aaa892011-07-11 15:28:14 -0400826 HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Carsten Otte043405e2007-10-10 17:16:19 +0200827 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -0400828 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +0200829#ifdef CONFIG_X86_64
830 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
831#endif
Avi Kivitye90aa412010-09-01 10:23:35 +0300832 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA
Carsten Otte043405e2007-10-10 17:16:19 +0200833};
834
835static unsigned num_msrs_to_save;
836
837static u32 emulated_msrs[] = {
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +0800838 MSR_IA32_TSCDEADLINE,
Carsten Otte043405e2007-10-10 17:16:19 +0200839 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +0300840 MSR_IA32_MCG_STATUS,
841 MSR_IA32_MCG_CTL,
Carsten Otte043405e2007-10-10 17:16:19 +0200842};
843
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200844static int set_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +0100845{
Sheng Yangaad82702010-05-12 16:40:42 +0800846 u64 old_efer = vcpu->arch.efer;
847
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200848 if (efer & efer_reserved_bits)
849 return 1;
Carsten Otte15c4a642007-10-30 18:44:17 +0100850
851 if (is_paging(vcpu)
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200852 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
853 return 1;
Carsten Otte15c4a642007-10-30 18:44:17 +0100854
Alexander Graf1b2fd702009-02-02 16:23:51 +0100855 if (efer & EFER_FFXSR) {
856 struct kvm_cpuid_entry2 *feat;
857
858 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200859 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT)))
860 return 1;
Alexander Graf1b2fd702009-02-02 16:23:51 +0100861 }
862
Alexander Grafd8017472008-11-25 20:17:11 +0100863 if (efer & EFER_SVME) {
864 struct kvm_cpuid_entry2 *feat;
865
866 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200867 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM)))
868 return 1;
Alexander Grafd8017472008-11-25 20:17:11 +0100869 }
870
Carsten Otte15c4a642007-10-30 18:44:17 +0100871 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +0200872 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +0100873
Sheng Yanga3d204e2010-05-12 16:40:40 +0800874 kvm_x86_ops->set_efer(vcpu, efer);
875
Avi Kivity9645bb562009-03-31 11:31:54 +0300876 vcpu->arch.mmu.base_role.nxe = (efer & EFER_NX) && !tdp_enabled;
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200877
Sheng Yangaad82702010-05-12 16:40:42 +0800878 /* Update reserved bits */
879 if ((efer ^ old_efer) & EFER_NX)
880 kvm_mmu_reset_context(vcpu);
881
Roedel, Joergb69e8ca2010-05-06 11:38:43 +0200882 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +0100883}
884
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +0100885void kvm_enable_efer_bits(u64 mask)
886{
887 efer_reserved_bits &= ~mask;
888}
889EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
890
891
Carsten Otte15c4a642007-10-30 18:44:17 +0100892/*
893 * Writes msr value into into the appropriate "register".
894 * Returns 0 on success, non-0 otherwise.
895 * Assumes vcpu_load() was already called.
896 */
897int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
898{
899 return kvm_x86_ops->set_msr(vcpu, msr_index, data);
900}
901
Carsten Otte313a3dc2007-10-11 19:16:52 +0200902/*
903 * Adapt set_msr() to msr_io()'s calling convention
904 */
905static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
906{
907 return kvm_set_msr(vcpu, index, *data);
908}
909
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200910static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
911{
Avi Kivity9ed3c442010-05-04 15:00:37 +0300912 int version;
913 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200914 struct pvclock_wall_clock wc;
Jason Wang923de3c2010-01-27 19:13:49 +0800915 struct timespec boot;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200916
917 if (!wall_clock)
918 return;
919
Avi Kivity9ed3c442010-05-04 15:00:37 +0300920 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
921 if (r)
922 return;
923
924 if (version & 1)
925 ++version; /* first time write, random junk */
926
927 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200928
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200929 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
930
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200931 /*
932 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -1000933 * system time (updated by kvm_guest_time_update below) to the
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200934 * wall clock specified here. guest system time equals host
935 * system time for us, thus we must fill in host boot time here.
936 */
Jason Wang923de3c2010-01-27 19:13:49 +0800937 getboottime(&boot);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200938
939 wc.sec = boot.tv_sec;
940 wc.nsec = boot.tv_nsec;
941 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200942
943 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
944
945 version++;
946 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200947}
948
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200949static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
950{
951 uint32_t quotient, remainder;
952
953 /* Don't try to replace with do_div(), this one calculates
954 * "(dividend << 32) / divisor" */
955 __asm__ ( "divl %4"
956 : "=a" (quotient), "=d" (remainder)
957 : "0" (0), "1" (dividend), "r" (divisor) );
958 return quotient;
959}
960
Zachary Amsden5f4e3f82010-09-18 14:38:13 -1000961static void kvm_get_time_scale(uint32_t scaled_khz, uint32_t base_khz,
962 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200963{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -1000964 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200965 int32_t shift = 0;
966 uint64_t tps64;
967 uint32_t tps32;
968
Zachary Amsden5f4e3f82010-09-18 14:38:13 -1000969 tps64 = base_khz * 1000LL;
970 scaled64 = scaled_khz * 1000LL;
Jan Kiszka50933622010-09-26 13:00:53 +0200971 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200972 tps64 >>= 1;
973 shift--;
974 }
975
976 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +0200977 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
978 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -1000979 scaled64 >>= 1;
980 else
981 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200982 shift++;
983 }
984
Zachary Amsden5f4e3f82010-09-18 14:38:13 -1000985 *pshift = shift;
986 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200987
Zachary Amsden5f4e3f82010-09-18 14:38:13 -1000988 pr_debug("%s: base_khz %u => %u, shift %d, mul %u\n",
989 __func__, base_khz, scaled_khz, shift, *pmultiplier);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +0200990}
991
Zachary Amsden759379d2010-08-19 22:07:25 -1000992static inline u64 get_kernel_ns(void)
993{
994 struct timespec ts;
995
996 WARN_ON(preemptible());
997 ktime_get_ts(&ts);
998 monotonic_to_bootbased(&ts);
999 return timespec_to_ns(&ts);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001000}
1001
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001002static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001003unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001004
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001005static inline int kvm_tsc_changes_freq(void)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001006{
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001007 int cpu = get_cpu();
1008 int ret = !boot_cpu_has(X86_FEATURE_CONSTANT_TSC) &&
1009 cpufreq_quick_get(cpu) != 0;
1010 put_cpu();
1011 return ret;
1012}
1013
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001014u64 vcpu_tsc_khz(struct kvm_vcpu *vcpu)
Joerg Roedel1e993612011-03-25 09:44:47 +01001015{
1016 if (vcpu->arch.virtual_tsc_khz)
1017 return vcpu->arch.virtual_tsc_khz;
1018 else
1019 return __this_cpu_read(cpu_tsc_khz);
1020}
1021
Joerg Roedel857e4092011-03-25 09:44:50 +01001022static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
Zachary Amsden759379d2010-08-19 22:07:25 -10001023{
Avi Kivity217fc9c2010-08-26 13:38:03 +03001024 u64 ret;
1025
Zachary Amsden759379d2010-08-19 22:07:25 -10001026 WARN_ON(preemptible());
1027 if (kvm_tsc_changes_freq())
1028 printk_once(KERN_WARNING
1029 "kvm: unreliable cycle conversion on adjustable rate TSC\n");
Joerg Roedel857e4092011-03-25 09:44:50 +01001030 ret = nsec * vcpu_tsc_khz(vcpu);
Avi Kivity217fc9c2010-08-26 13:38:03 +03001031 do_div(ret, USEC_PER_SEC);
1032 return ret;
Zachary Amsden759379d2010-08-19 22:07:25 -10001033}
1034
Joerg Roedel1e993612011-03-25 09:44:47 +01001035static void kvm_init_tsc_catchup(struct kvm_vcpu *vcpu, u32 this_tsc_khz)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001036{
1037 /* Compute a scale to convert nanoseconds in TSC cycles */
1038 kvm_get_time_scale(this_tsc_khz, NSEC_PER_SEC / 1000,
Joerg Roedel1e993612011-03-25 09:44:47 +01001039 &vcpu->arch.tsc_catchup_shift,
1040 &vcpu->arch.tsc_catchup_mult);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001041}
1042
1043static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1044{
1045 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.last_tsc_nsec,
Joerg Roedel1e993612011-03-25 09:44:47 +01001046 vcpu->arch.tsc_catchup_mult,
1047 vcpu->arch.tsc_catchup_shift);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001048 tsc += vcpu->arch.last_tsc_write;
1049 return tsc;
1050}
1051
Zachary Amsden99e3e302010-08-19 22:07:17 -10001052void kvm_write_tsc(struct kvm_vcpu *vcpu, u64 data)
1053{
1054 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001055 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001056 unsigned long flags;
Zachary Amsden46543ba2010-08-19 22:07:26 -10001057 s64 sdiff;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001058
Jan Kiszka038f8c12011-02-04 10:49:11 +01001059 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Joerg Roedel857e4092011-03-25 09:44:50 +01001060 offset = kvm_x86_ops->compute_tsc_offset(vcpu, data);
Zachary Amsden759379d2010-08-19 22:07:25 -10001061 ns = get_kernel_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001062 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden46543ba2010-08-19 22:07:26 -10001063 sdiff = data - kvm->arch.last_tsc_write;
1064 if (sdiff < 0)
1065 sdiff = -sdiff;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001066
1067 /*
Zachary Amsden46543ba2010-08-19 22:07:26 -10001068 * Special case: close write to TSC within 5 seconds of
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001069 * another CPU is interpreted as an attempt to synchronize
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001070 * The 5 seconds is to accommodate host load / swapping as
Zachary Amsden46543ba2010-08-19 22:07:26 -10001071 * well as any reset of TSC during the boot process.
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001072 *
1073 * In that case, for a reliable TSC, we can match TSC offsets,
Zachary Amsden46543ba2010-08-19 22:07:26 -10001074 * or make a best guest using elapsed value.
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001075 */
Joerg Roedel857e4092011-03-25 09:44:50 +01001076 if (sdiff < nsec_to_cycles(vcpu, 5ULL * NSEC_PER_SEC) &&
Zachary Amsden46543ba2010-08-19 22:07:26 -10001077 elapsed < 5ULL * NSEC_PER_SEC) {
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001078 if (!check_tsc_unstable()) {
1079 offset = kvm->arch.last_tsc_offset;
1080 pr_debug("kvm: matched tsc offset for %llu\n", data);
1081 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01001082 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden759379d2010-08-19 22:07:25 -10001083 offset += delta;
1084 pr_debug("kvm: adjusted tsc offset by %llu\n", delta);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10001085 }
1086 ns = kvm->arch.last_tsc_nsec;
1087 }
1088 kvm->arch.last_tsc_nsec = ns;
1089 kvm->arch.last_tsc_write = data;
1090 kvm->arch.last_tsc_offset = offset;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001091 kvm_x86_ops->write_tsc_offset(vcpu, offset);
Jan Kiszka038f8c12011-02-04 10:49:11 +01001092 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10001093
1094 /* Reset of TSC must disable overshoot protection below */
1095 vcpu->arch.hv_clock.tsc_timestamp = 0;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001096 vcpu->arch.last_tsc_write = data;
1097 vcpu->arch.last_tsc_nsec = ns;
Zachary Amsden99e3e302010-08-19 22:07:17 -10001098}
1099EXPORT_SYMBOL_GPL(kvm_write_tsc);
1100
Zachary Amsden34c238a2010-09-18 14:38:14 -10001101static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001102{
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001103 unsigned long flags;
1104 struct kvm_vcpu_arch *vcpu = &v->arch;
1105 void *shared_kaddr;
Avi Kivity463656c2009-04-12 15:49:07 +03001106 unsigned long this_tsc_khz;
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001107 s64 kernel_ns, max_kernel_ns;
1108 u64 tsc_timestamp;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001109
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001110 /* Keep irq disabled to prevent changes to the clock */
1111 local_irq_save(flags);
Nadav Har'Eld5c17852011-08-02 15:54:20 +03001112 tsc_timestamp = kvm_x86_ops->read_l1_tsc(v);
Zachary Amsden759379d2010-08-19 22:07:25 -10001113 kernel_ns = get_kernel_ns();
Joerg Roedel1e993612011-03-25 09:44:47 +01001114 this_tsc_khz = vcpu_tsc_khz(v);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001115 if (unlikely(this_tsc_khz == 0)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10001116 local_irq_restore(flags);
Zachary Amsden34c238a2010-09-18 14:38:14 -10001117 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001118 return 1;
1119 }
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001120
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001121 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10001122 * We may have to catch up the TSC to match elapsed wall clock
1123 * time for two reasons, even if kvmclock is used.
1124 * 1) CPU could have been running below the maximum TSC rate
1125 * 2) Broken TSC compensation resets the base at each VCPU
1126 * entry to avoid unknown leaps of TSC even when running
1127 * again on the same CPU. This may cause apparent elapsed
1128 * time to disappear, and the guest to stand still or run
1129 * very slowly.
1130 */
1131 if (vcpu->tsc_catchup) {
1132 u64 tsc = compute_guest_tsc(v, kernel_ns);
1133 if (tsc > tsc_timestamp) {
1134 kvm_x86_ops->adjust_tsc_offset(v, tsc - tsc_timestamp);
1135 tsc_timestamp = tsc;
1136 }
1137 }
1138
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001139 local_irq_restore(flags);
1140
Zachary Amsdenc2855452010-09-18 14:38:15 -10001141 if (!vcpu->time_page)
1142 return 0;
1143
1144 /*
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001145 * Time as measured by the TSC may go backwards when resetting the base
1146 * tsc_timestamp. The reason for this is that the TSC resolution is
1147 * higher than the resolution of the other clock scales. Thus, many
1148 * possible measurments of the TSC correspond to one measurement of any
1149 * other clock, and so a spread of values is possible. This is not a
1150 * problem for the computation of the nanosecond clock; with TSC rates
1151 * around 1GHZ, there can only be a few cycles which correspond to one
1152 * nanosecond value, and any path through this code will inevitably
1153 * take longer than that. However, with the kernel_ns value itself,
1154 * the precision may be much lower, down to HZ granularity. If the
1155 * first sampling of TSC against kernel_ns ends in the low part of the
1156 * range, and the second in the high end of the range, we can get:
1157 *
1158 * (TSC - offset_low) * S + kns_old > (TSC - offset_high) * S + kns_new
1159 *
1160 * As the sampling errors potentially range in the thousands of cycles,
1161 * it is possible such a time value has already been observed by the
1162 * guest. To protect against this, we must compute the system time as
1163 * observed by the guest and ensure the new system time is greater.
1164 */
1165 max_kernel_ns = 0;
1166 if (vcpu->hv_clock.tsc_timestamp && vcpu->last_guest_tsc) {
1167 max_kernel_ns = vcpu->last_guest_tsc -
1168 vcpu->hv_clock.tsc_timestamp;
1169 max_kernel_ns = pvclock_scale_delta(max_kernel_ns,
1170 vcpu->hv_clock.tsc_to_system_mul,
1171 vcpu->hv_clock.tsc_shift);
1172 max_kernel_ns += vcpu->last_kernel_ns;
1173 }
1174
Zachary Amsdene48672f2010-08-19 22:07:23 -10001175 if (unlikely(vcpu->hw_tsc_khz != this_tsc_khz)) {
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001176 kvm_get_time_scale(NSEC_PER_SEC / 1000, this_tsc_khz,
1177 &vcpu->hv_clock.tsc_shift,
1178 &vcpu->hv_clock.tsc_to_system_mul);
Zachary Amsdene48672f2010-08-19 22:07:23 -10001179 vcpu->hw_tsc_khz = this_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001180 }
1181
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001182 if (max_kernel_ns > kernel_ns)
1183 kernel_ns = max_kernel_ns;
1184
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001185 /* With all the info we got, fill in the values */
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001186 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10001187 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden1d5f0662010-08-19 22:07:30 -10001188 vcpu->last_kernel_ns = kernel_ns;
Zachary Amsden28e46392010-09-18 14:38:12 -10001189 vcpu->last_guest_tsc = tsc_timestamp;
Glauber Costa371bcf62010-05-11 12:17:46 -04001190 vcpu->hv_clock.flags = 0;
1191
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001192 /*
1193 * The interface expects us to write an even number signaling that the
1194 * update is finished. Since the guest won't see the intermediate
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001195 * state, we just increase by 2 at the end.
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001196 */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001197 vcpu->hv_clock.version += 2;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001198
1199 shared_kaddr = kmap_atomic(vcpu->time_page, KM_USER0);
1200
1201 memcpy(shared_kaddr + vcpu->time_offset, &vcpu->hv_clock,
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001202 sizeof(vcpu->hv_clock));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001203
1204 kunmap_atomic(shared_kaddr, KM_USER0);
1205
1206 mark_page_dirty(v->kvm, vcpu->time >> PAGE_SHIFT);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10001207 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001208}
1209
Avi Kivity9ba075a2008-05-26 20:06:35 +03001210static bool msr_mtrr_valid(unsigned msr)
1211{
1212 switch (msr) {
1213 case 0x200 ... 0x200 + 2 * KVM_NR_VAR_MTRR - 1:
1214 case MSR_MTRRfix64K_00000:
1215 case MSR_MTRRfix16K_80000:
1216 case MSR_MTRRfix16K_A0000:
1217 case MSR_MTRRfix4K_C0000:
1218 case MSR_MTRRfix4K_C8000:
1219 case MSR_MTRRfix4K_D0000:
1220 case MSR_MTRRfix4K_D8000:
1221 case MSR_MTRRfix4K_E0000:
1222 case MSR_MTRRfix4K_E8000:
1223 case MSR_MTRRfix4K_F0000:
1224 case MSR_MTRRfix4K_F8000:
1225 case MSR_MTRRdefType:
1226 case MSR_IA32_CR_PAT:
1227 return true;
1228 case 0x2f8:
1229 return true;
1230 }
1231 return false;
1232}
1233
Marcelo Tosattid6289b92009-06-22 15:27:56 -03001234static bool valid_pat_type(unsigned t)
1235{
1236 return t < 8 && (1 << t) & 0xf3; /* 0, 1, 4, 5, 6, 7 */
1237}
1238
1239static bool valid_mtrr_type(unsigned t)
1240{
1241 return t < 8 && (1 << t) & 0x73; /* 0, 1, 4, 5, 6 */
1242}
1243
1244static bool mtrr_valid(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1245{
1246 int i;
1247
1248 if (!msr_mtrr_valid(msr))
1249 return false;
1250
1251 if (msr == MSR_IA32_CR_PAT) {
1252 for (i = 0; i < 8; i++)
1253 if (!valid_pat_type((data >> (i * 8)) & 0xff))
1254 return false;
1255 return true;
1256 } else if (msr == MSR_MTRRdefType) {
1257 if (data & ~0xcff)
1258 return false;
1259 return valid_mtrr_type(data & 0xff);
1260 } else if (msr >= MSR_MTRRfix64K_00000 && msr <= MSR_MTRRfix4K_F8000) {
1261 for (i = 0; i < 8 ; i++)
1262 if (!valid_mtrr_type((data >> (i * 8)) & 0xff))
1263 return false;
1264 return true;
1265 }
1266
1267 /* variable MTRRs */
1268 return valid_mtrr_type(data & 0xff);
1269}
1270
Avi Kivity9ba075a2008-05-26 20:06:35 +03001271static int set_msr_mtrr(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1272{
Sheng Yang0bed3b52008-10-09 16:01:54 +08001273 u64 *p = (u64 *)&vcpu->arch.mtrr_state.fixed_ranges;
1274
Marcelo Tosattid6289b92009-06-22 15:27:56 -03001275 if (!mtrr_valid(vcpu, msr, data))
Avi Kivity9ba075a2008-05-26 20:06:35 +03001276 return 1;
1277
Sheng Yang0bed3b52008-10-09 16:01:54 +08001278 if (msr == MSR_MTRRdefType) {
1279 vcpu->arch.mtrr_state.def_type = data;
1280 vcpu->arch.mtrr_state.enabled = (data & 0xc00) >> 10;
1281 } else if (msr == MSR_MTRRfix64K_00000)
1282 p[0] = data;
1283 else if (msr == MSR_MTRRfix16K_80000 || msr == MSR_MTRRfix16K_A0000)
1284 p[1 + msr - MSR_MTRRfix16K_80000] = data;
1285 else if (msr >= MSR_MTRRfix4K_C0000 && msr <= MSR_MTRRfix4K_F8000)
1286 p[3 + msr - MSR_MTRRfix4K_C0000] = data;
1287 else if (msr == MSR_IA32_CR_PAT)
1288 vcpu->arch.pat = data;
1289 else { /* Variable MTRRs */
1290 int idx, is_mtrr_mask;
1291 u64 *pt;
1292
1293 idx = (msr - 0x200) / 2;
1294 is_mtrr_mask = msr - 0x200 - 2 * idx;
1295 if (!is_mtrr_mask)
1296 pt =
1297 (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].base_lo;
1298 else
1299 pt =
1300 (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].mask_lo;
1301 *pt = data;
1302 }
1303
1304 kvm_mmu_reset_context(vcpu);
Avi Kivity9ba075a2008-05-26 20:06:35 +03001305 return 0;
1306}
Carsten Otte15c4a642007-10-30 18:44:17 +01001307
Huang Ying890ca9a2009-05-11 16:48:15 +08001308static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1309{
1310 u64 mcg_cap = vcpu->arch.mcg_cap;
1311 unsigned bank_num = mcg_cap & 0xff;
1312
1313 switch (msr) {
1314 case MSR_IA32_MCG_STATUS:
1315 vcpu->arch.mcg_status = data;
1316 break;
1317 case MSR_IA32_MCG_CTL:
1318 if (!(mcg_cap & MCG_CTL_P))
1319 return 1;
1320 if (data != 0 && data != ~(u64)0)
1321 return -1;
1322 vcpu->arch.mcg_ctl = data;
1323 break;
1324 default:
1325 if (msr >= MSR_IA32_MC0_CTL &&
1326 msr < MSR_IA32_MC0_CTL + 4 * bank_num) {
1327 u32 offset = msr - MSR_IA32_MC0_CTL;
Andre Przywara114be422010-03-24 17:46:42 +01001328 /* only 0 or all 1s can be written to IA32_MCi_CTL
1329 * some Linux kernels though clear bit 10 in bank 4 to
1330 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
1331 * this to avoid an uncatched #GP in the guest
1332 */
Huang Ying890ca9a2009-05-11 16:48:15 +08001333 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01001334 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08001335 return -1;
1336 vcpu->arch.mce_banks[offset] = data;
1337 break;
1338 }
1339 return 1;
1340 }
1341 return 0;
1342}
1343
Ed Swierkffde22a2009-10-15 15:21:43 -07001344static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
1345{
1346 struct kvm *kvm = vcpu->kvm;
1347 int lm = is_long_mode(vcpu);
1348 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
1349 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
1350 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
1351 : kvm->arch.xen_hvm_config.blob_size_32;
1352 u32 page_num = data & ~PAGE_MASK;
1353 u64 page_addr = data & PAGE_MASK;
1354 u8 *page;
1355 int r;
1356
1357 r = -E2BIG;
1358 if (page_num >= blob_size)
1359 goto out;
1360 r = -ENOMEM;
1361 page = kzalloc(PAGE_SIZE, GFP_KERNEL);
1362 if (!page)
1363 goto out;
1364 r = -EFAULT;
1365 if (copy_from_user(page, blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE))
1366 goto out_free;
1367 if (kvm_write_guest(kvm, page_addr, page, PAGE_SIZE))
1368 goto out_free;
1369 r = 0;
1370out_free:
1371 kfree(page);
1372out:
1373 return r;
1374}
1375
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001376static bool kvm_hv_hypercall_enabled(struct kvm *kvm)
1377{
1378 return kvm->arch.hv_hypercall & HV_X64_MSR_HYPERCALL_ENABLE;
1379}
1380
1381static bool kvm_hv_msr_partition_wide(u32 msr)
1382{
1383 bool r = false;
1384 switch (msr) {
1385 case HV_X64_MSR_GUEST_OS_ID:
1386 case HV_X64_MSR_HYPERCALL:
1387 r = true;
1388 break;
1389 }
1390
1391 return r;
1392}
1393
1394static int set_msr_hyperv_pw(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1395{
1396 struct kvm *kvm = vcpu->kvm;
1397
1398 switch (msr) {
1399 case HV_X64_MSR_GUEST_OS_ID:
1400 kvm->arch.hv_guest_os_id = data;
1401 /* setting guest os id to zero disables hypercall page */
1402 if (!kvm->arch.hv_guest_os_id)
1403 kvm->arch.hv_hypercall &= ~HV_X64_MSR_HYPERCALL_ENABLE;
1404 break;
1405 case HV_X64_MSR_HYPERCALL: {
1406 u64 gfn;
1407 unsigned long addr;
1408 u8 instructions[4];
1409
1410 /* if guest os id is not set hypercall should remain disabled */
1411 if (!kvm->arch.hv_guest_os_id)
1412 break;
1413 if (!(data & HV_X64_MSR_HYPERCALL_ENABLE)) {
1414 kvm->arch.hv_hypercall = data;
1415 break;
1416 }
1417 gfn = data >> HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_SHIFT;
1418 addr = gfn_to_hva(kvm, gfn);
1419 if (kvm_is_error_hva(addr))
1420 return 1;
1421 kvm_x86_ops->patch_hypercall(vcpu, instructions);
1422 ((unsigned char *)instructions)[3] = 0xc3; /* ret */
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001423 if (__copy_to_user((void __user *)addr, instructions, 4))
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001424 return 1;
1425 kvm->arch.hv_hypercall = data;
1426 break;
1427 }
1428 default:
1429 pr_unimpl(vcpu, "HYPER-V unimplemented wrmsr: 0x%x "
1430 "data 0x%llx\n", msr, data);
1431 return 1;
1432 }
1433 return 0;
1434}
1435
1436static int set_msr_hyperv(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1437{
Gleb Natapov10388a02010-01-17 15:51:23 +02001438 switch (msr) {
1439 case HV_X64_MSR_APIC_ASSIST_PAGE: {
1440 unsigned long addr;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001441
Gleb Natapov10388a02010-01-17 15:51:23 +02001442 if (!(data & HV_X64_MSR_APIC_ASSIST_PAGE_ENABLE)) {
1443 vcpu->arch.hv_vapic = data;
1444 break;
1445 }
1446 addr = gfn_to_hva(vcpu->kvm, data >>
1447 HV_X64_MSR_APIC_ASSIST_PAGE_ADDRESS_SHIFT);
1448 if (kvm_is_error_hva(addr))
1449 return 1;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001450 if (__clear_user((void __user *)addr, PAGE_SIZE))
Gleb Natapov10388a02010-01-17 15:51:23 +02001451 return 1;
1452 vcpu->arch.hv_vapic = data;
1453 break;
1454 }
1455 case HV_X64_MSR_EOI:
1456 return kvm_hv_vapic_msr_write(vcpu, APIC_EOI, data);
1457 case HV_X64_MSR_ICR:
1458 return kvm_hv_vapic_msr_write(vcpu, APIC_ICR, data);
1459 case HV_X64_MSR_TPR:
1460 return kvm_hv_vapic_msr_write(vcpu, APIC_TASKPRI, data);
1461 default:
1462 pr_unimpl(vcpu, "HYPER-V unimplemented wrmsr: 0x%x "
1463 "data 0x%llx\n", msr, data);
1464 return 1;
1465 }
1466
1467 return 0;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001468}
1469
Gleb Natapov344d9582010-10-14 11:22:50 +02001470static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
1471{
1472 gpa_t gpa = data & ~0x3f;
1473
Gleb Natapov6adba522010-10-14 11:22:55 +02001474 /* Bits 2:5 are resrved, Should be zero */
1475 if (data & 0x3c)
Gleb Natapov344d9582010-10-14 11:22:50 +02001476 return 1;
1477
1478 vcpu->arch.apf.msr_val = data;
1479
1480 if (!(data & KVM_ASYNC_PF_ENABLED)) {
1481 kvm_clear_async_pf_completion_queue(vcpu);
1482 kvm_async_pf_hash_reset(vcpu);
1483 return 0;
1484 }
1485
1486 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa))
1487 return 1;
1488
Gleb Natapov6adba522010-10-14 11:22:55 +02001489 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Gleb Natapov344d9582010-10-14 11:22:50 +02001490 kvm_async_pf_wakeup_all(vcpu);
1491 return 0;
1492}
1493
Glauber Costa12f9a482011-02-01 14:16:40 -05001494static void kvmclock_reset(struct kvm_vcpu *vcpu)
1495{
1496 if (vcpu->arch.time_page) {
1497 kvm_release_page_dirty(vcpu->arch.time_page);
1498 vcpu->arch.time_page = NULL;
1499 }
1500}
1501
Glauber Costac9aaa892011-07-11 15:28:14 -04001502static void accumulate_steal_time(struct kvm_vcpu *vcpu)
1503{
1504 u64 delta;
1505
1506 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
1507 return;
1508
1509 delta = current->sched_info.run_delay - vcpu->arch.st.last_steal;
1510 vcpu->arch.st.last_steal = current->sched_info.run_delay;
1511 vcpu->arch.st.accum_steal = delta;
1512}
1513
1514static void record_steal_time(struct kvm_vcpu *vcpu)
1515{
1516 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
1517 return;
1518
1519 if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
1520 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
1521 return;
1522
1523 vcpu->arch.st.steal.steal += vcpu->arch.st.accum_steal;
1524 vcpu->arch.st.steal.version += 2;
1525 vcpu->arch.st.accum_steal = 0;
1526
1527 kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
1528 &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
1529}
1530
Carsten Otte15c4a642007-10-30 18:44:17 +01001531int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1532{
1533 switch (msr) {
Carsten Otte15c4a642007-10-30 18:44:17 +01001534 case MSR_EFER:
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001535 return set_efer(vcpu, data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02001536 case MSR_K7_HWCR:
1537 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01001538 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Andre Przywara8f1589d2009-06-24 12:44:33 +02001539 if (data != 0) {
1540 pr_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
1541 data);
1542 return 1;
1543 }
Carsten Otte15c4a642007-10-30 18:44:17 +01001544 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02001545 case MSR_FAM10H_MMIO_CONF_BASE:
1546 if (data != 0) {
1547 pr_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
1548 "0x%llx\n", data);
1549 return 1;
1550 }
Carsten Otte15c4a642007-10-30 18:44:17 +01001551 break;
Andre Przywarac323c0e2009-06-24 15:37:05 +02001552 case MSR_AMD64_NB_CFG:
Joerg Roedelc7ac6792008-02-11 20:28:27 +01001553 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02001554 case MSR_IA32_DEBUGCTLMSR:
1555 if (!data) {
1556 /* We support the non-activated case already */
1557 break;
1558 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
1559 /* Values other than LBR and BTF are vendor-specific,
1560 thus reserved and should throw a #GP */
1561 return 1;
1562 }
1563 pr_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
1564 __func__, data);
1565 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01001566 case MSR_IA32_UCODE_REV:
1567 case MSR_IA32_UCODE_WRITE:
Avi Kivity61a6bd62008-12-29 17:32:28 +02001568 case MSR_VM_HSAVE_PA:
Andre Przywara6098ca92009-07-03 16:00:14 +02001569 case MSR_AMD64_PATCH_LOADER:
Carsten Otte15c4a642007-10-30 18:44:17 +01001570 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03001571 case 0x200 ... 0x2ff:
1572 return set_msr_mtrr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01001573 case MSR_IA32_APICBASE:
1574 kvm_set_apic_base(vcpu, data);
1575 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001576 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
1577 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001578 case MSR_IA32_TSCDEADLINE:
1579 kvm_set_lapic_tscdeadline_msr(vcpu, data);
1580 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01001581 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001582 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +01001583 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04001584 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001585 case MSR_KVM_WALL_CLOCK:
1586 vcpu->kvm->arch.wall_clock = data;
1587 kvm_write_wall_clock(vcpu->kvm, data);
1588 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04001589 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001590 case MSR_KVM_SYSTEM_TIME: {
Glauber Costa12f9a482011-02-01 14:16:40 -05001591 kvmclock_reset(vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001592
1593 vcpu->arch.time = data;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001594 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001595
1596 /* we verify if the enable bit is set... */
1597 if (!(data & 1))
1598 break;
1599
1600 /* ...but clean it before doing the actual write */
1601 vcpu->arch.time_offset = data & ~(PAGE_MASK | 1);
1602
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001603 vcpu->arch.time_page =
1604 gfn_to_page(vcpu->kvm, data >> PAGE_SHIFT);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001605
1606 if (is_error_page(vcpu->arch.time_page)) {
1607 kvm_release_page_clean(vcpu->arch.time_page);
1608 vcpu->arch.time_page = NULL;
1609 }
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001610 break;
1611 }
Gleb Natapov344d9582010-10-14 11:22:50 +02001612 case MSR_KVM_ASYNC_PF_EN:
1613 if (kvm_pv_enable_async_pf(vcpu, data))
1614 return 1;
1615 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04001616 case MSR_KVM_STEAL_TIME:
1617
1618 if (unlikely(!sched_info_on()))
1619 return 1;
1620
1621 if (data & KVM_STEAL_RESERVED_MASK)
1622 return 1;
1623
1624 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.st.stime,
1625 data & KVM_STEAL_VALID_BITS))
1626 return 1;
1627
1628 vcpu->arch.st.msr_val = data;
1629
1630 if (!(data & KVM_MSR_ENABLED))
1631 break;
1632
1633 vcpu->arch.st.last_steal = current->sched_info.run_delay;
1634
1635 preempt_disable();
1636 accumulate_steal_time(vcpu);
1637 preempt_enable();
1638
1639 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
1640
1641 break;
1642
Huang Ying890ca9a2009-05-11 16:48:15 +08001643 case MSR_IA32_MCG_CTL:
1644 case MSR_IA32_MCG_STATUS:
1645 case MSR_IA32_MC0_CTL ... MSR_IA32_MC0_CTL + 4 * KVM_MAX_MCE_BANKS - 1:
1646 return set_msr_mce(vcpu, msr, data);
Andre Przywara71db6022009-06-12 22:01:29 +02001647
1648 /* Performance counters are not protected by a CPUID bit,
1649 * so we should check all of them in the generic path for the sake of
1650 * cross vendor migration.
1651 * Writing a zero into the event select MSRs disables them,
1652 * which we perfectly emulate ;-). Any other value should be at least
1653 * reported, some guests depend on them.
1654 */
1655 case MSR_P6_EVNTSEL0:
1656 case MSR_P6_EVNTSEL1:
1657 case MSR_K7_EVNTSEL0:
1658 case MSR_K7_EVNTSEL1:
1659 case MSR_K7_EVNTSEL2:
1660 case MSR_K7_EVNTSEL3:
1661 if (data != 0)
1662 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: "
1663 "0x%x data 0x%llx\n", msr, data);
1664 break;
1665 /* at least RHEL 4 unconditionally writes to the perfctr registers,
1666 * so we ignore writes to make it happy.
1667 */
1668 case MSR_P6_PERFCTR0:
1669 case MSR_P6_PERFCTR1:
1670 case MSR_K7_PERFCTR0:
1671 case MSR_K7_PERFCTR1:
1672 case MSR_K7_PERFCTR2:
1673 case MSR_K7_PERFCTR3:
1674 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: "
1675 "0x%x data 0x%llx\n", msr, data);
1676 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02001677 case MSR_K7_CLK_CTL:
1678 /*
1679 * Ignore all writes to this no longer documented MSR.
1680 * Writes are only relevant for old K7 processors,
1681 * all pre-dating SVM, but a recommended workaround from
1682 * AMD for these chips. It is possible to speicify the
1683 * affected processor models on the command line, hence
1684 * the need to ignore the workaround.
1685 */
1686 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001687 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
1688 if (kvm_hv_msr_partition_wide(msr)) {
1689 int r;
1690 mutex_lock(&vcpu->kvm->lock);
1691 r = set_msr_hyperv_pw(vcpu, msr, data);
1692 mutex_unlock(&vcpu->kvm->lock);
1693 return r;
1694 } else
1695 return set_msr_hyperv(vcpu, msr, data);
1696 break;
john cooper91c9c3e2011-01-21 00:21:00 -05001697 case MSR_IA32_BBL_CR_CTL3:
1698 /* Drop writes to this legacy MSR -- see rdmsr
1699 * counterpart for further detail.
1700 */
1701 pr_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", msr, data);
1702 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01001703 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07001704 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
1705 return xen_hvm_config(vcpu, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02001706 if (!ignore_msrs) {
1707 pr_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n",
1708 msr, data);
1709 return 1;
1710 } else {
1711 pr_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n",
1712 msr, data);
1713 break;
1714 }
Carsten Otte15c4a642007-10-30 18:44:17 +01001715 }
1716 return 0;
1717}
1718EXPORT_SYMBOL_GPL(kvm_set_msr_common);
1719
1720
1721/*
1722 * Reads an msr value (of 'msr_index') into 'pdata'.
1723 * Returns 0 on success, non-0 otherwise.
1724 * Assumes vcpu_load() was already called.
1725 */
1726int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1727{
1728 return kvm_x86_ops->get_msr(vcpu, msr_index, pdata);
1729}
1730
Avi Kivity9ba075a2008-05-26 20:06:35 +03001731static int get_msr_mtrr(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1732{
Sheng Yang0bed3b52008-10-09 16:01:54 +08001733 u64 *p = (u64 *)&vcpu->arch.mtrr_state.fixed_ranges;
1734
Avi Kivity9ba075a2008-05-26 20:06:35 +03001735 if (!msr_mtrr_valid(msr))
1736 return 1;
1737
Sheng Yang0bed3b52008-10-09 16:01:54 +08001738 if (msr == MSR_MTRRdefType)
1739 *pdata = vcpu->arch.mtrr_state.def_type +
1740 (vcpu->arch.mtrr_state.enabled << 10);
1741 else if (msr == MSR_MTRRfix64K_00000)
1742 *pdata = p[0];
1743 else if (msr == MSR_MTRRfix16K_80000 || msr == MSR_MTRRfix16K_A0000)
1744 *pdata = p[1 + msr - MSR_MTRRfix16K_80000];
1745 else if (msr >= MSR_MTRRfix4K_C0000 && msr <= MSR_MTRRfix4K_F8000)
1746 *pdata = p[3 + msr - MSR_MTRRfix4K_C0000];
1747 else if (msr == MSR_IA32_CR_PAT)
1748 *pdata = vcpu->arch.pat;
1749 else { /* Variable MTRRs */
1750 int idx, is_mtrr_mask;
1751 u64 *pt;
1752
1753 idx = (msr - 0x200) / 2;
1754 is_mtrr_mask = msr - 0x200 - 2 * idx;
1755 if (!is_mtrr_mask)
1756 pt =
1757 (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].base_lo;
1758 else
1759 pt =
1760 (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].mask_lo;
1761 *pdata = *pt;
1762 }
1763
Avi Kivity9ba075a2008-05-26 20:06:35 +03001764 return 0;
1765}
1766
Huang Ying890ca9a2009-05-11 16:48:15 +08001767static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1768{
1769 u64 data;
1770 u64 mcg_cap = vcpu->arch.mcg_cap;
1771 unsigned bank_num = mcg_cap & 0xff;
1772
1773 switch (msr) {
1774 case MSR_IA32_P5_MC_ADDR:
1775 case MSR_IA32_P5_MC_TYPE:
1776 data = 0;
1777 break;
1778 case MSR_IA32_MCG_CAP:
1779 data = vcpu->arch.mcg_cap;
1780 break;
1781 case MSR_IA32_MCG_CTL:
1782 if (!(mcg_cap & MCG_CTL_P))
1783 return 1;
1784 data = vcpu->arch.mcg_ctl;
1785 break;
1786 case MSR_IA32_MCG_STATUS:
1787 data = vcpu->arch.mcg_status;
1788 break;
1789 default:
1790 if (msr >= MSR_IA32_MC0_CTL &&
1791 msr < MSR_IA32_MC0_CTL + 4 * bank_num) {
1792 u32 offset = msr - MSR_IA32_MC0_CTL;
1793 data = vcpu->arch.mce_banks[offset];
1794 break;
1795 }
1796 return 1;
1797 }
1798 *pdata = data;
1799 return 0;
1800}
1801
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001802static int get_msr_hyperv_pw(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1803{
1804 u64 data = 0;
1805 struct kvm *kvm = vcpu->kvm;
1806
1807 switch (msr) {
1808 case HV_X64_MSR_GUEST_OS_ID:
1809 data = kvm->arch.hv_guest_os_id;
1810 break;
1811 case HV_X64_MSR_HYPERCALL:
1812 data = kvm->arch.hv_hypercall;
1813 break;
1814 default:
1815 pr_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr);
1816 return 1;
1817 }
1818
1819 *pdata = data;
1820 return 0;
1821}
1822
1823static int get_msr_hyperv(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1824{
1825 u64 data = 0;
1826
1827 switch (msr) {
1828 case HV_X64_MSR_VP_INDEX: {
1829 int r;
1830 struct kvm_vcpu *v;
1831 kvm_for_each_vcpu(r, v, vcpu->kvm)
1832 if (v == vcpu)
1833 data = r;
1834 break;
1835 }
Gleb Natapov10388a02010-01-17 15:51:23 +02001836 case HV_X64_MSR_EOI:
1837 return kvm_hv_vapic_msr_read(vcpu, APIC_EOI, pdata);
1838 case HV_X64_MSR_ICR:
1839 return kvm_hv_vapic_msr_read(vcpu, APIC_ICR, pdata);
1840 case HV_X64_MSR_TPR:
1841 return kvm_hv_vapic_msr_read(vcpu, APIC_TASKPRI, pdata);
Mike Waychison14fa67e2011-07-21 15:38:10 -07001842 case HV_X64_MSR_APIC_ASSIST_PAGE:
Mike Waychisond1613ad2011-07-23 00:31:45 -07001843 data = vcpu->arch.hv_vapic;
1844 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001845 default:
1846 pr_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr);
1847 return 1;
1848 }
1849 *pdata = data;
1850 return 0;
1851}
1852
Carsten Otte15c4a642007-10-30 18:44:17 +01001853int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1854{
1855 u64 data;
1856
1857 switch (msr) {
Carsten Otte15c4a642007-10-30 18:44:17 +01001858 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01001859 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02001860 case MSR_IA32_DEBUGCTLMSR:
1861 case MSR_IA32_LASTBRANCHFROMIP:
1862 case MSR_IA32_LASTBRANCHTOIP:
1863 case MSR_IA32_LASTINTFROMIP:
1864 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05301865 case MSR_K8_SYSCFG:
1866 case MSR_K7_HWCR:
Avi Kivity61a6bd62008-12-29 17:32:28 +02001867 case MSR_VM_HSAVE_PA:
Amit Shah1f3ee612009-06-30 16:24:28 +05301868 case MSR_P6_PERFCTR0:
1869 case MSR_P6_PERFCTR1:
Amit Shah7fe29e02009-03-20 12:39:00 +05301870 case MSR_P6_EVNTSEL0:
1871 case MSR_P6_EVNTSEL1:
Amit Shah9e699622009-06-15 13:25:34 +05301872 case MSR_K7_EVNTSEL0:
Amit Shah1f3ee612009-06-30 16:24:28 +05301873 case MSR_K7_PERFCTR0:
Andre Przywara1fdbd482009-06-24 12:44:34 +02001874 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02001875 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02001876 case MSR_FAM10H_MMIO_CONF_BASE:
Carsten Otte15c4a642007-10-30 18:44:17 +01001877 data = 0;
1878 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03001879 case MSR_IA32_UCODE_REV:
1880 data = 0x100000000ULL;
1881 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03001882 case MSR_MTRRcap:
1883 data = 0x500 | KVM_NR_VAR_MTRR;
1884 break;
1885 case 0x200 ... 0x2ff:
1886 return get_msr_mtrr(vcpu, msr, pdata);
Carsten Otte15c4a642007-10-30 18:44:17 +01001887 case 0xcd: /* fsb frequency */
1888 data = 3;
1889 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02001890 /*
1891 * MSR_EBC_FREQUENCY_ID
1892 * Conservative value valid for even the basic CPU models.
1893 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
1894 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
1895 * and 266MHz for model 3, or 4. Set Core Clock
1896 * Frequency to System Bus Frequency Ratio to 1 (bits
1897 * 31:24) even though these are only valid for CPU
1898 * models > 2, however guests may end up dividing or
1899 * multiplying by zero otherwise.
1900 */
1901 case MSR_EBC_FREQUENCY_ID:
1902 data = 1 << 24;
1903 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01001904 case MSR_IA32_APICBASE:
1905 data = kvm_get_apic_base(vcpu);
1906 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03001907 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
1908 return kvm_x2apic_msr_read(vcpu, msr, pdata);
1909 break;
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001910 case MSR_IA32_TSCDEADLINE:
1911 data = kvm_get_lapic_tscdeadline_msr(vcpu);
1912 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01001913 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001914 data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01001915 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01001916 case MSR_IA32_PERF_STATUS:
1917 /* TSC increment by tick */
1918 data = 1000ULL;
1919 /* CPU multiplier */
1920 data |= (((uint64_t)4ULL) << 40);
1921 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01001922 case MSR_EFER:
Avi Kivityf6801df2010-01-21 15:31:50 +02001923 data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01001924 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001925 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04001926 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001927 data = vcpu->kvm->arch.wall_clock;
1928 break;
1929 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04001930 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001931 data = vcpu->arch.time;
1932 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02001933 case MSR_KVM_ASYNC_PF_EN:
1934 data = vcpu->arch.apf.msr_val;
1935 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04001936 case MSR_KVM_STEAL_TIME:
1937 data = vcpu->arch.st.msr_val;
1938 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08001939 case MSR_IA32_P5_MC_ADDR:
1940 case MSR_IA32_P5_MC_TYPE:
1941 case MSR_IA32_MCG_CAP:
1942 case MSR_IA32_MCG_CTL:
1943 case MSR_IA32_MCG_STATUS:
1944 case MSR_IA32_MC0_CTL ... MSR_IA32_MC0_CTL + 4 * KVM_MAX_MCE_BANKS - 1:
1945 return get_msr_mce(vcpu, msr, pdata);
Jes Sorensen84e0cef2010-09-01 11:42:04 +02001946 case MSR_K7_CLK_CTL:
1947 /*
1948 * Provide expected ramp-up count for K7. All other
1949 * are set to zero, indicating minimum divisors for
1950 * every field.
1951 *
1952 * This prevents guest kernels on AMD host with CPU
1953 * type 6, model 8 and higher from exploding due to
1954 * the rdmsr failing.
1955 */
1956 data = 0x20000000;
1957 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02001958 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
1959 if (kvm_hv_msr_partition_wide(msr)) {
1960 int r;
1961 mutex_lock(&vcpu->kvm->lock);
1962 r = get_msr_hyperv_pw(vcpu, msr, pdata);
1963 mutex_unlock(&vcpu->kvm->lock);
1964 return r;
1965 } else
1966 return get_msr_hyperv(vcpu, msr, pdata);
1967 break;
john cooper91c9c3e2011-01-21 00:21:00 -05001968 case MSR_IA32_BBL_CR_CTL3:
1969 /* This legacy MSR exists but isn't fully documented in current
1970 * silicon. It is however accessed by winxp in very narrow
1971 * scenarios where it sets bit #19, itself documented as
1972 * a "reserved" bit. Best effort attempt to source coherent
1973 * read data here should the balance of the register be
1974 * interpreted by the guest:
1975 *
1976 * L2 cache control register 3: 64GB range, 256KB size,
1977 * enabled, latency 0x1, configured
1978 */
1979 data = 0xbe702111;
1980 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01001981 default:
Andre Przywaraed85c062009-06-25 12:36:49 +02001982 if (!ignore_msrs) {
1983 pr_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr);
1984 return 1;
1985 } else {
1986 pr_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr);
1987 data = 0;
1988 }
1989 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01001990 }
1991 *pdata = data;
1992 return 0;
1993}
1994EXPORT_SYMBOL_GPL(kvm_get_msr_common);
1995
Carsten Otte313a3dc2007-10-11 19:16:52 +02001996/*
1997 * Read or write a bunch of msrs. All parameters are kernel addresses.
1998 *
1999 * @return number of msrs set successfully.
2000 */
2001static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
2002 struct kvm_msr_entry *entries,
2003 int (*do_msr)(struct kvm_vcpu *vcpu,
2004 unsigned index, u64 *data))
2005{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002006 int i, idx;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002007
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002008 idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002009 for (i = 0; i < msrs->nmsrs; ++i)
2010 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2011 break;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002012 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002013
Carsten Otte313a3dc2007-10-11 19:16:52 +02002014 return i;
2015}
2016
2017/*
2018 * Read or write a bunch of msrs. Parameters are user addresses.
2019 *
2020 * @return number of msrs set successfully.
2021 */
2022static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
2023 int (*do_msr)(struct kvm_vcpu *vcpu,
2024 unsigned index, u64 *data),
2025 int writeback)
2026{
2027 struct kvm_msrs msrs;
2028 struct kvm_msr_entry *entries;
2029 int r, n;
2030 unsigned size;
2031
2032 r = -EFAULT;
2033 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2034 goto out;
2035
2036 r = -E2BIG;
2037 if (msrs.nmsrs >= MAX_IO_MSRS)
2038 goto out;
2039
2040 r = -ENOMEM;
2041 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Avi Kivity7a73c022010-07-22 23:24:52 +03002042 entries = kmalloc(size, GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002043 if (!entries)
2044 goto out;
2045
2046 r = -EFAULT;
2047 if (copy_from_user(entries, user_msrs->entries, size))
2048 goto out_free;
2049
2050 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
2051 if (r < 0)
2052 goto out_free;
2053
2054 r = -EFAULT;
2055 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2056 goto out_free;
2057
2058 r = n;
2059
2060out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03002061 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002062out:
2063 return r;
2064}
2065
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002066int kvm_dev_ioctl_check_extension(long ext)
2067{
2068 int r;
2069
2070 switch (ext) {
2071 case KVM_CAP_IRQCHIP:
2072 case KVM_CAP_HLT:
2073 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002074 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02002075 case KVM_CAP_EXT_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002076 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08002077 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05002078 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002079 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03002080 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08002081 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02002082 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02002083 case KVM_CAP_IRQ_INJECT_STATUS:
Sheng Yange56d5322009-03-12 21:45:39 +08002084 case KVM_CAP_ASSIGN_DEV_IRQ:
Gregory Haskins721eecb2009-05-20 10:30:49 -04002085 case KVM_CAP_IRQFD:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002086 case KVM_CAP_IOEVENTFD:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02002087 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04002088 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08002089 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07002090 case KVM_CAP_XEN_HVM:
Glauber Costaafbcf7a2009-10-16 15:28:36 -04002091 case KVM_CAP_ADJUST_CLOCK:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002092 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002093 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02002094 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02002095 case KVM_CAP_HYPERV_SPIN:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08002096 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002097 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01002098 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002099 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02002100 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01002101 case KVM_CAP_GET_TSC_KHZ:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002102 r = 1;
2103 break;
Laurent Vivier542472b2008-05-30 16:05:55 +02002104 case KVM_CAP_COALESCED_MMIO:
2105 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
2106 break;
Avi Kivity774ead32007-12-26 13:57:04 +02002107 case KVM_CAP_VAPIC:
2108 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
2109 break;
Avi Kivityf7252302008-02-20 11:53:16 +02002110 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03002111 r = KVM_SOFT_MAX_VCPUS;
2112 break;
2113 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02002114 r = KVM_MAX_VCPUS;
2115 break;
Avi Kivitya988b912008-02-20 11:59:20 +02002116 case KVM_CAP_NR_MEMSLOTS:
2117 r = KVM_MEMORY_SLOTS;
2118 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03002119 case KVM_CAP_PV_MMU: /* obsolete */
2120 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002121 break;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002122 case KVM_CAP_IOMMU:
Joerg Roedela1b60c12011-09-06 18:46:34 +02002123 r = iommu_present(&pci_bus_type);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03002124 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08002125 case KVM_CAP_MCE:
2126 r = KVM_MAX_MCE_BANKS;
2127 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002128 case KVM_CAP_XCRS:
2129 r = cpu_has_xsave;
2130 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01002131 case KVM_CAP_TSC_CONTROL:
2132 r = kvm_has_tsc_control;
2133 break;
Jan Kiszka4d25a0662011-12-21 12:28:29 +01002134 case KVM_CAP_TSC_DEADLINE_TIMER:
2135 r = boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER);
2136 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002137 default:
2138 r = 0;
2139 break;
2140 }
2141 return r;
2142
2143}
2144
Carsten Otte043405e2007-10-10 17:16:19 +02002145long kvm_arch_dev_ioctl(struct file *filp,
2146 unsigned int ioctl, unsigned long arg)
2147{
2148 void __user *argp = (void __user *)arg;
2149 long r;
2150
2151 switch (ioctl) {
2152 case KVM_GET_MSR_INDEX_LIST: {
2153 struct kvm_msr_list __user *user_msr_list = argp;
2154 struct kvm_msr_list msr_list;
2155 unsigned n;
2156
2157 r = -EFAULT;
2158 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2159 goto out;
2160 n = msr_list.nmsrs;
2161 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
2162 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2163 goto out;
2164 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002165 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02002166 goto out;
2167 r = -EFAULT;
2168 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
2169 num_msrs_to_save * sizeof(u32)))
2170 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02002171 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02002172 &emulated_msrs,
2173 ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
2174 goto out;
2175 r = 0;
2176 break;
2177 }
Avi Kivity674eea02008-02-11 18:37:23 +02002178 case KVM_GET_SUPPORTED_CPUID: {
2179 struct kvm_cpuid2 __user *cpuid_arg = argp;
2180 struct kvm_cpuid2 cpuid;
2181
2182 r = -EFAULT;
2183 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2184 goto out;
2185 r = kvm_dev_ioctl_get_supported_cpuid(&cpuid,
Amit Shah19355472009-01-14 16:56:00 +00002186 cpuid_arg->entries);
Avi Kivity674eea02008-02-11 18:37:23 +02002187 if (r)
2188 goto out;
2189
2190 r = -EFAULT;
2191 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
2192 goto out;
2193 r = 0;
2194 break;
2195 }
Huang Ying890ca9a2009-05-11 16:48:15 +08002196 case KVM_X86_GET_MCE_CAP_SUPPORTED: {
2197 u64 mce_cap;
2198
2199 mce_cap = KVM_MCE_CAP_SUPPORTED;
2200 r = -EFAULT;
2201 if (copy_to_user(argp, &mce_cap, sizeof mce_cap))
2202 goto out;
2203 r = 0;
2204 break;
2205 }
Carsten Otte043405e2007-10-10 17:16:19 +02002206 default:
2207 r = -EINVAL;
2208 }
2209out:
2210 return r;
2211}
2212
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002213static void wbinvd_ipi(void *garbage)
2214{
2215 wbinvd();
2216}
2217
2218static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
2219{
2220 return vcpu->kvm->arch.iommu_domain &&
2221 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY);
2222}
2223
Carsten Otte313a3dc2007-10-11 19:16:52 +02002224void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2225{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08002226 /* Address WBINVD may be executed by guest */
2227 if (need_emulate_wbinvd(vcpu)) {
2228 if (kvm_x86_ops->has_wbinvd_exit())
2229 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
2230 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
2231 smp_call_function_single(vcpu->cpu,
2232 wbinvd_ipi, NULL, 1);
2233 }
2234
Carsten Otte313a3dc2007-10-11 19:16:52 +02002235 kvm_x86_ops->vcpu_load(vcpu, cpu);
Zachary Amsden48434c202010-08-19 22:07:24 -10002236 if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) {
Zachary Amsdene48672f2010-08-19 22:07:23 -10002237 /* Make sure TSC doesn't go backwards */
Joerg Roedel8f6055c2011-03-25 09:44:48 +01002238 s64 tsc_delta;
2239 u64 tsc;
2240
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002241 tsc = kvm_x86_ops->read_l1_tsc(vcpu);
Joerg Roedel8f6055c2011-03-25 09:44:48 +01002242 tsc_delta = !vcpu->arch.last_guest_tsc ? 0 :
2243 tsc - vcpu->arch.last_guest_tsc;
2244
Zachary Amsdene48672f2010-08-19 22:07:23 -10002245 if (tsc_delta < 0)
2246 mark_tsc_unstable("KVM discovered backwards TSC");
Zachary Amsdenc2855452010-09-18 14:38:15 -10002247 if (check_tsc_unstable()) {
Zachary Amsdene48672f2010-08-19 22:07:23 -10002248 kvm_x86_ops->adjust_tsc_offset(vcpu, -tsc_delta);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002249 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002250 }
Nikola Ciprich1aa8cee2011-03-09 23:36:51 +01002251 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002252 if (vcpu->cpu != cpu)
2253 kvm_migrate_timers(vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002254 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10002255 }
Glauber Costac9aaa892011-07-11 15:28:14 -04002256
2257 accumulate_steal_time(vcpu);
2258 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002259}
2260
2261void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2262{
Avi Kivity02daab22009-12-30 12:40:26 +02002263 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity1c11e712010-05-03 16:05:44 +03002264 kvm_put_guest_fpu(vcpu);
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002265 vcpu->arch.last_guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002266}
2267
Dan Kenigsberg07716712007-11-21 17:10:04 +02002268static int is_efer_nx(void)
Carsten Otte313a3dc2007-10-11 19:16:52 +02002269{
Avi Kivitye286e862009-05-03 18:50:55 +03002270 unsigned long long efer = 0;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002271
Avi Kivitye286e862009-05-03 18:50:55 +03002272 rdmsrl_safe(MSR_EFER, &efer);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002273 return efer & EFER_NX;
2274}
2275
2276static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
2277{
2278 int i;
2279 struct kvm_cpuid_entry2 *e, *entry;
2280
Carsten Otte313a3dc2007-10-11 19:16:52 +02002281 entry = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002282 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
2283 e = &vcpu->arch.cpuid_entries[i];
Carsten Otte313a3dc2007-10-11 19:16:52 +02002284 if (e->function == 0x80000001) {
2285 entry = e;
2286 break;
2287 }
2288 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02002289 if (entry && (entry->edx & (1 << 20)) && !is_efer_nx()) {
Carsten Otte313a3dc2007-10-11 19:16:52 +02002290 entry->edx &= ~(1 << 20);
2291 printk(KERN_INFO "kvm: guest NX capability removed\n");
2292 }
2293}
2294
Dan Kenigsberg07716712007-11-21 17:10:04 +02002295/* when an old userspace process fills a new kernel module */
Carsten Otte313a3dc2007-10-11 19:16:52 +02002296static int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
2297 struct kvm_cpuid *cpuid,
2298 struct kvm_cpuid_entry __user *entries)
2299{
Dan Kenigsberg07716712007-11-21 17:10:04 +02002300 int r, i;
2301 struct kvm_cpuid_entry *cpuid_entries;
2302
2303 r = -E2BIG;
2304 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
2305 goto out;
2306 r = -ENOMEM;
2307 cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry) * cpuid->nent);
2308 if (!cpuid_entries)
2309 goto out;
2310 r = -EFAULT;
2311 if (copy_from_user(cpuid_entries, entries,
2312 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
2313 goto out_free;
2314 for (i = 0; i < cpuid->nent; i++) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002315 vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function;
2316 vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax;
2317 vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx;
2318 vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx;
2319 vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx;
2320 vcpu->arch.cpuid_entries[i].index = 0;
2321 vcpu->arch.cpuid_entries[i].flags = 0;
2322 vcpu->arch.cpuid_entries[i].padding[0] = 0;
2323 vcpu->arch.cpuid_entries[i].padding[1] = 0;
2324 vcpu->arch.cpuid_entries[i].padding[2] = 0;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002325 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002326 vcpu->arch.cpuid_nent = cpuid->nent;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002327 cpuid_fix_nx_cap(vcpu);
2328 r = 0;
Gleb Natapovfc61b802009-07-05 17:39:35 +03002329 kvm_apic_set_version(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08002330 kvm_x86_ops->cpuid_update(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08002331 update_cpuid(vcpu);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002332
2333out_free:
2334 vfree(cpuid_entries);
2335out:
2336 return r;
2337}
2338
2339static int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
Amit Shah19355472009-01-14 16:56:00 +00002340 struct kvm_cpuid2 *cpuid,
2341 struct kvm_cpuid_entry2 __user *entries)
Dan Kenigsberg07716712007-11-21 17:10:04 +02002342{
Carsten Otte313a3dc2007-10-11 19:16:52 +02002343 int r;
2344
2345 r = -E2BIG;
2346 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
2347 goto out;
2348 r = -EFAULT;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002349 if (copy_from_user(&vcpu->arch.cpuid_entries, entries,
Dan Kenigsberg07716712007-11-21 17:10:04 +02002350 cpuid->nent * sizeof(struct kvm_cpuid_entry2)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02002351 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002352 vcpu->arch.cpuid_nent = cpuid->nent;
Gleb Natapovfc61b802009-07-05 17:39:35 +03002353 kvm_apic_set_version(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08002354 kvm_x86_ops->cpuid_update(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08002355 update_cpuid(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002356 return 0;
2357
2358out:
2359 return r;
2360}
2361
Dan Kenigsberg07716712007-11-21 17:10:04 +02002362static int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
Amit Shah19355472009-01-14 16:56:00 +00002363 struct kvm_cpuid2 *cpuid,
2364 struct kvm_cpuid_entry2 __user *entries)
Dan Kenigsberg07716712007-11-21 17:10:04 +02002365{
2366 int r;
2367
2368 r = -E2BIG;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002369 if (cpuid->nent < vcpu->arch.cpuid_nent)
Dan Kenigsberg07716712007-11-21 17:10:04 +02002370 goto out;
2371 r = -EFAULT;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002372 if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
Amit Shah19355472009-01-14 16:56:00 +00002373 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02002374 goto out;
2375 return 0;
2376
2377out:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002378 cpuid->nent = vcpu->arch.cpuid_nent;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002379 return r;
2380}
2381
Avi Kivity945ee352010-11-09 16:15:43 +02002382static void cpuid_mask(u32 *word, int wordnum)
2383{
2384 *word &= boot_cpu_data.x86_capability[wordnum];
2385}
2386
Dan Kenigsberg07716712007-11-21 17:10:04 +02002387static void do_cpuid_1_ent(struct kvm_cpuid_entry2 *entry, u32 function,
Amit Shah19355472009-01-14 16:56:00 +00002388 u32 index)
Dan Kenigsberg07716712007-11-21 17:10:04 +02002389{
2390 entry->function = function;
2391 entry->index = index;
2392 cpuid_count(entry->function, entry->index,
Amit Shah19355472009-01-14 16:56:00 +00002393 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002394 entry->flags = 0;
2395}
2396
Avi Kivity24c82e52011-05-18 05:56:07 -04002397static bool supported_xcr0_bit(unsigned bit)
2398{
2399 u64 mask = ((u64)1 << bit);
2400
2401 return mask & (XSTATE_FP | XSTATE_SSE | XSTATE_YMM) & host_xcr0;
2402}
2403
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002404#define F(x) bit(X86_FEATURE_##x)
2405
Dan Kenigsberg07716712007-11-21 17:10:04 +02002406static void do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
2407 u32 index, int *nent, int maxnent)
2408{
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002409 unsigned f_nx = is_efer_nx() ? F(NX) : 0;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002410#ifdef CONFIG_X86_64
Sheng Yang17cc3932010-01-05 19:02:27 +08002411 unsigned f_gbpages = (kvm_x86_ops->get_lpage_level() == PT_PDPE_LEVEL)
2412 ? F(GBPAGES) : 0;
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002413 unsigned f_lm = F(LM);
2414#else
Sheng Yang17cc3932010-01-05 19:02:27 +08002415 unsigned f_gbpages = 0;
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002416 unsigned f_lm = 0;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002417#endif
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002418 unsigned f_rdtscp = kvm_x86_ops->rdtscp_supported() ? F(RDTSCP) : 0;
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002419
2420 /* cpuid 1.edx */
2421 const u32 kvm_supported_word0_x86_features =
2422 F(FPU) | F(VME) | F(DE) | F(PSE) |
2423 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
2424 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) |
2425 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
2426 F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLSH) |
2427 0 /* Reserved, DS, ACPI */ | F(MMX) |
2428 F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) |
2429 0 /* HTT, TM, Reserved, PBE */;
2430 /* cpuid 0x80000001.edx */
2431 const u32 kvm_supported_word1_x86_features =
2432 F(FPU) | F(VME) | F(DE) | F(PSE) |
2433 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
2434 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) |
2435 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
2436 F(PAT) | F(PSE36) | 0 /* Reserved */ |
2437 f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002438 F(FXSR) | F(FXSR_OPT) | f_gbpages | f_rdtscp |
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002439 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW);
2440 /* cpuid 1.ecx */
2441 const u32 kvm_supported_word4_x86_features =
Sheng Yang6c3f6042010-06-22 13:49:21 +08002442 F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ |
Avi Kivityd149c732009-05-10 14:41:56 +03002443 0 /* DS-CPL, VMX, SMX, EST */ |
2444 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ |
2445 0 /* Reserved */ | F(CX16) | 0 /* xTPR Update, PDCM */ |
2446 0 /* Reserved, DCA */ | F(XMM4_1) |
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002447 F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) |
Andre Przywara6d886fd2010-09-06 15:14:19 +02002448 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) |
Yang, Wei Y4a00efd2011-06-13 21:52:33 +08002449 F(F16C) | F(RDRAND);
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002450 /* cpuid 0x80000001.ecx */
Dan Kenigsberg07716712007-11-21 17:10:04 +02002451 const u32 kvm_supported_word6_x86_features =
Joerg Roedel4c62a2d2010-09-10 17:31:06 +02002452 F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ |
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002453 F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) |
Andre Przywara7ef8aa72010-09-06 15:14:17 +02002454 F(3DNOWPREFETCH) | 0 /* OSVW */ | 0 /* IBS */ | F(XOP) |
Andre Przywara6d886fd2010-09-06 15:14:19 +02002455 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002456
BrillyWu@viatech.com.cn4429d5d2011-04-25 13:55:15 +08002457 /* cpuid 0xC0000001.edx */
2458 const u32 kvm_supported_word5_x86_features =
2459 F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) |
2460 F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) |
2461 F(PMM) | F(PMM_EN);
2462
Yang, Wei Y611c1202011-06-03 11:14:03 +08002463 /* cpuid 7.0.ebx */
2464 const u32 kvm_supported_word9_x86_features =
Yang, Weia01c8f92011-06-14 15:19:06 +08002465 F(SMEP) | F(FSGSBASE) | F(ERMS);
Yang, Wei Y611c1202011-06-03 11:14:03 +08002466
Amit Shah19355472009-01-14 16:56:00 +00002467 /* all calls to cpuid_count() should be made on the same cpu */
Dan Kenigsberg07716712007-11-21 17:10:04 +02002468 get_cpu();
2469 do_cpuid_1_ent(entry, function, index);
2470 ++*nent;
2471
2472 switch (function) {
2473 case 0:
Dexuan Cui2acf9232010-06-10 11:27:12 +08002474 entry->eax = min(entry->eax, (u32)0xd);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002475 break;
2476 case 1:
2477 entry->edx &= kvm_supported_word0_x86_features;
Avi Kivity945ee352010-11-09 16:15:43 +02002478 cpuid_mask(&entry->edx, 0);
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002479 entry->ecx &= kvm_supported_word4_x86_features;
Avi Kivity945ee352010-11-09 16:15:43 +02002480 cpuid_mask(&entry->ecx, 4);
Gleb Natapov0d1de2d2009-07-12 16:10:55 +03002481 /* we support x2apic emulation even if host does not support
2482 * it since we emulate x2apic in software */
2483 entry->ecx |= F(X2APIC);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002484 break;
2485 /* function 2 entries are STATEFUL. That is, repeated cpuid commands
2486 * may return different values. This forces us to get_cpu() before
2487 * issuing the first command, and also to emulate this annoying behavior
2488 * in kvm_emulate_cpuid() using KVM_CPUID_FLAG_STATE_READ_NEXT */
2489 case 2: {
2490 int t, times = entry->eax & 0xff;
2491
2492 entry->flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
Nitin A Kamble0fdf8e52008-11-05 15:56:21 -08002493 entry->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002494 for (t = 1; t < times && *nent < maxnent; ++t) {
2495 do_cpuid_1_ent(&entry[t], function, 0);
2496 entry[t].flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
2497 ++*nent;
2498 }
2499 break;
2500 }
Yang, Wei Y611c1202011-06-03 11:14:03 +08002501 /* function 4 has additional index. */
Dan Kenigsberg07716712007-11-21 17:10:04 +02002502 case 4: {
Harvey Harrison14af3f32008-02-19 10:25:50 -08002503 int i, cache_type;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002504
2505 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
2506 /* read more entries until cache_type is zero */
Harvey Harrison14af3f32008-02-19 10:25:50 -08002507 for (i = 1; *nent < maxnent; ++i) {
2508 cache_type = entry[i - 1].eax & 0x1f;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002509 if (!cache_type)
2510 break;
Harvey Harrison14af3f32008-02-19 10:25:50 -08002511 do_cpuid_1_ent(&entry[i], function, i);
2512 entry[i].flags |=
Dan Kenigsberg07716712007-11-21 17:10:04 +02002513 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
2514 ++*nent;
2515 }
2516 break;
2517 }
Yang, Wei Y611c1202011-06-03 11:14:03 +08002518 case 7: {
2519 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
2520 /* Mask ebx against host capbability word 9 */
2521 if (index == 0) {
2522 entry->ebx &= kvm_supported_word9_x86_features;
2523 cpuid_mask(&entry->ebx, 9);
2524 } else
2525 entry->ebx = 0;
2526 entry->eax = 0;
2527 entry->ecx = 0;
2528 entry->edx = 0;
2529 break;
2530 }
Avi Kivity24c82e52011-05-18 05:56:07 -04002531 case 9:
2532 break;
Yang, Wei Y611c1202011-06-03 11:14:03 +08002533 /* function 0xb has additional index. */
Dan Kenigsberg07716712007-11-21 17:10:04 +02002534 case 0xb: {
Harvey Harrison14af3f32008-02-19 10:25:50 -08002535 int i, level_type;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002536
2537 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
2538 /* read more entries until level_type is zero */
Harvey Harrison14af3f32008-02-19 10:25:50 -08002539 for (i = 1; *nent < maxnent; ++i) {
Nitin A Kamble0853d2c2008-11-05 15:37:36 -08002540 level_type = entry[i - 1].ecx & 0xff00;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002541 if (!level_type)
2542 break;
Harvey Harrison14af3f32008-02-19 10:25:50 -08002543 do_cpuid_1_ent(&entry[i], function, i);
2544 entry[i].flags |=
Dan Kenigsberg07716712007-11-21 17:10:04 +02002545 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
2546 ++*nent;
2547 }
2548 break;
2549 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08002550 case 0xd: {
Andre Przywara02668b062011-06-10 11:35:30 +02002551 int idx, i;
Dexuan Cui2acf9232010-06-10 11:27:12 +08002552
2553 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Andre Przywara02668b062011-06-10 11:35:30 +02002554 for (idx = 1, i = 1; *nent < maxnent && idx < 64; ++idx) {
2555 do_cpuid_1_ent(&entry[i], function, idx);
2556 if (entry[i].eax == 0 || !supported_xcr0_bit(idx))
Andre Przywara20800bc2011-03-30 15:01:45 +02002557 continue;
Dexuan Cui2acf9232010-06-10 11:27:12 +08002558 entry[i].flags |=
2559 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
2560 ++*nent;
Andre Przywara02668b062011-06-10 11:35:30 +02002561 ++i;
Dexuan Cui2acf9232010-06-10 11:27:12 +08002562 }
2563 break;
2564 }
Glauber Costa84478c82010-05-11 12:17:43 -04002565 case KVM_CPUID_SIGNATURE: {
2566 char signature[12] = "KVMKVMKVM\0\0";
2567 u32 *sigptr = (u32 *)signature;
2568 entry->eax = 0;
2569 entry->ebx = sigptr[0];
2570 entry->ecx = sigptr[1];
2571 entry->edx = sigptr[2];
2572 break;
2573 }
2574 case KVM_CPUID_FEATURES:
2575 entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) |
2576 (1 << KVM_FEATURE_NOP_IO_DELAY) |
Glauber Costa371bcf62010-05-11 12:17:46 -04002577 (1 << KVM_FEATURE_CLOCKSOURCE2) |
Glauber Costa32918922011-03-23 13:40:42 -03002578 (1 << KVM_FEATURE_ASYNC_PF) |
Glauber Costa371bcf62010-05-11 12:17:46 -04002579 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT);
Glauber Costac9aaa892011-07-11 15:28:14 -04002580
2581 if (sched_info_on())
2582 entry->eax |= (1 << KVM_FEATURE_STEAL_TIME);
2583
Glauber Costa84478c82010-05-11 12:17:43 -04002584 entry->ebx = 0;
2585 entry->ecx = 0;
2586 entry->edx = 0;
2587 break;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002588 case 0x80000000:
2589 entry->eax = min(entry->eax, 0x8000001a);
2590 break;
2591 case 0x80000001:
2592 entry->edx &= kvm_supported_word1_x86_features;
Avi Kivity945ee352010-11-09 16:15:43 +02002593 cpuid_mask(&entry->edx, 1);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002594 entry->ecx &= kvm_supported_word6_x86_features;
Avi Kivity945ee352010-11-09 16:15:43 +02002595 cpuid_mask(&entry->ecx, 6);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002596 break;
Avi Kivity24c82e52011-05-18 05:56:07 -04002597 case 0x80000008: {
2598 unsigned g_phys_as = (entry->eax >> 16) & 0xff;
2599 unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U);
2600 unsigned phys_as = entry->eax & 0xff;
2601
2602 if (!g_phys_as)
2603 g_phys_as = phys_as;
2604 entry->eax = g_phys_as | (virt_as << 8);
2605 entry->ebx = entry->edx = 0;
2606 break;
2607 }
2608 case 0x80000019:
2609 entry->ecx = entry->edx = 0;
2610 break;
2611 case 0x8000001a:
2612 break;
2613 case 0x8000001d:
2614 break;
BrillyWu@viatech.com.cn4429d5d2011-04-25 13:55:15 +08002615 /*Add support for Centaur's CPUID instruction*/
2616 case 0xC0000000:
2617 /*Just support up to 0xC0000004 now*/
2618 entry->eax = min(entry->eax, 0xC0000004);
2619 break;
2620 case 0xC0000001:
2621 entry->edx &= kvm_supported_word5_x86_features;
2622 cpuid_mask(&entry->edx, 5);
2623 break;
Avi Kivity24c82e52011-05-18 05:56:07 -04002624 case 3: /* Processor serial number */
2625 case 5: /* MONITOR/MWAIT */
2626 case 6: /* Thermal management */
2627 case 0xA: /* Architectural Performance Monitoring */
2628 case 0x80000007: /* Advanced power management */
BrillyWu@viatech.com.cn4429d5d2011-04-25 13:55:15 +08002629 case 0xC0000002:
2630 case 0xC0000003:
2631 case 0xC0000004:
Avi Kivity24c82e52011-05-18 05:56:07 -04002632 default:
2633 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
BrillyWu@viatech.com.cn4429d5d2011-04-25 13:55:15 +08002634 break;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002635 }
Joerg Roedeld4330ef2010-04-22 12:33:11 +02002636
2637 kvm_x86_ops->set_supported_cpuid(function, entry);
2638
Dan Kenigsberg07716712007-11-21 17:10:04 +02002639 put_cpu();
2640}
2641
Avi Kivity7faa4ee2009-05-10 13:55:35 +03002642#undef F
2643
Avi Kivity674eea02008-02-11 18:37:23 +02002644static int kvm_dev_ioctl_get_supported_cpuid(struct kvm_cpuid2 *cpuid,
Amit Shah19355472009-01-14 16:56:00 +00002645 struct kvm_cpuid_entry2 __user *entries)
Dan Kenigsberg07716712007-11-21 17:10:04 +02002646{
2647 struct kvm_cpuid_entry2 *cpuid_entries;
2648 int limit, nent = 0, r = -E2BIG;
2649 u32 func;
2650
2651 if (cpuid->nent < 1)
2652 goto out;
Avi Kivity6a544352009-10-04 16:45:13 +02002653 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
2654 cpuid->nent = KVM_MAX_CPUID_ENTRIES;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002655 r = -ENOMEM;
2656 cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry2) * cpuid->nent);
2657 if (!cpuid_entries)
2658 goto out;
2659
2660 do_cpuid_ent(&cpuid_entries[0], 0, 0, &nent, cpuid->nent);
2661 limit = cpuid_entries[0].eax;
2662 for (func = 1; func <= limit && nent < cpuid->nent; ++func)
2663 do_cpuid_ent(&cpuid_entries[nent], func, 0,
Amit Shah19355472009-01-14 16:56:00 +00002664 &nent, cpuid->nent);
Dan Kenigsberg07716712007-11-21 17:10:04 +02002665 r = -E2BIG;
2666 if (nent >= cpuid->nent)
2667 goto out_free;
2668
2669 do_cpuid_ent(&cpuid_entries[nent], 0x80000000, 0, &nent, cpuid->nent);
2670 limit = cpuid_entries[nent - 1].eax;
2671 for (func = 0x80000001; func <= limit && nent < cpuid->nent; ++func)
2672 do_cpuid_ent(&cpuid_entries[nent], func, 0,
Amit Shah19355472009-01-14 16:56:00 +00002673 &nent, cpuid->nent);
Glauber Costa84478c82010-05-11 12:17:43 -04002674
2675
2676
2677 r = -E2BIG;
2678 if (nent >= cpuid->nent)
2679 goto out_free;
2680
BrillyWu@viatech.com.cn4429d5d2011-04-25 13:55:15 +08002681 /* Add support for Centaur's CPUID instruction. */
2682 if (boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR) {
2683 do_cpuid_ent(&cpuid_entries[nent], 0xC0000000, 0,
2684 &nent, cpuid->nent);
2685
2686 r = -E2BIG;
2687 if (nent >= cpuid->nent)
2688 goto out_free;
2689
2690 limit = cpuid_entries[nent - 1].eax;
2691 for (func = 0xC0000001;
2692 func <= limit && nent < cpuid->nent; ++func)
2693 do_cpuid_ent(&cpuid_entries[nent], func, 0,
2694 &nent, cpuid->nent);
2695
2696 r = -E2BIG;
2697 if (nent >= cpuid->nent)
2698 goto out_free;
2699 }
2700
Glauber Costa84478c82010-05-11 12:17:43 -04002701 do_cpuid_ent(&cpuid_entries[nent], KVM_CPUID_SIGNATURE, 0, &nent,
2702 cpuid->nent);
2703
2704 r = -E2BIG;
2705 if (nent >= cpuid->nent)
2706 goto out_free;
2707
2708 do_cpuid_ent(&cpuid_entries[nent], KVM_CPUID_FEATURES, 0, &nent,
2709 cpuid->nent);
2710
Mark McLoughlincb007642009-05-12 12:36:44 +01002711 r = -E2BIG;
2712 if (nent >= cpuid->nent)
2713 goto out_free;
2714
Dan Kenigsberg07716712007-11-21 17:10:04 +02002715 r = -EFAULT;
2716 if (copy_to_user(entries, cpuid_entries,
Amit Shah19355472009-01-14 16:56:00 +00002717 nent * sizeof(struct kvm_cpuid_entry2)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02002718 goto out_free;
2719 cpuid->nent = nent;
2720 r = 0;
2721
2722out_free:
2723 vfree(cpuid_entries);
2724out:
2725 return r;
2726}
2727
Carsten Otte313a3dc2007-10-11 19:16:52 +02002728static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2729 struct kvm_lapic_state *s)
2730{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002731 memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002732
2733 return 0;
2734}
2735
2736static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2737 struct kvm_lapic_state *s)
2738{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002739 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002740 kvm_apic_post_state_restore(vcpu);
Gleb Natapovcb142eb2009-08-09 15:17:40 +03002741 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002742
2743 return 0;
2744}
2745
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002746static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2747 struct kvm_interrupt *irq)
2748{
2749 if (irq->irq < 0 || irq->irq >= 256)
2750 return -EINVAL;
2751 if (irqchip_in_kernel(vcpu->kvm))
2752 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002753
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002754 kvm_queue_interrupt(vcpu, irq->irq, false);
Avi Kivity3842d132010-07-27 12:30:24 +03002755 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002756
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08002757 return 0;
2758}
2759
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002760static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
2761{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002762 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02002763
2764 return 0;
2765}
2766
Avi Kivityb209749f2007-10-22 16:50:39 +02002767static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
2768 struct kvm_tpr_access_ctl *tac)
2769{
2770 if (tac->flags)
2771 return -EINVAL;
2772 vcpu->arch.tpr_access_reporting = !!tac->enabled;
2773 return 0;
2774}
2775
Huang Ying890ca9a2009-05-11 16:48:15 +08002776static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
2777 u64 mcg_cap)
2778{
2779 int r;
2780 unsigned bank_num = mcg_cap & 0xff, bank;
2781
2782 r = -EINVAL;
Jan Kiszkaa9e38c3e2009-10-23 09:37:00 +02002783 if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08002784 goto out;
2785 if (mcg_cap & ~(KVM_MCE_CAP_SUPPORTED | 0xff | 0xff0000))
2786 goto out;
2787 r = 0;
2788 vcpu->arch.mcg_cap = mcg_cap;
2789 /* Init IA32_MCG_CTL to all 1s */
2790 if (mcg_cap & MCG_CTL_P)
2791 vcpu->arch.mcg_ctl = ~(u64)0;
2792 /* Init IA32_MCi_CTL to all 1s */
2793 for (bank = 0; bank < bank_num; bank++)
2794 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
2795out:
2796 return r;
2797}
2798
2799static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
2800 struct kvm_x86_mce *mce)
2801{
2802 u64 mcg_cap = vcpu->arch.mcg_cap;
2803 unsigned bank_num = mcg_cap & 0xff;
2804 u64 *banks = vcpu->arch.mce_banks;
2805
2806 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
2807 return -EINVAL;
2808 /*
2809 * if IA32_MCG_CTL is not all 1s, the uncorrected error
2810 * reporting is disabled
2811 */
2812 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
2813 vcpu->arch.mcg_ctl != ~(u64)0)
2814 return 0;
2815 banks += 4 * mce->bank;
2816 /*
2817 * if IA32_MCi_CTL is not all 1s, the uncorrected error
2818 * reporting is disabled for the bank
2819 */
2820 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
2821 return 0;
2822 if (mce->status & MCI_STATUS_UC) {
2823 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02002824 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03002825 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08002826 return 0;
2827 }
2828 if (banks[1] & MCI_STATUS_VAL)
2829 mce->status |= MCI_STATUS_OVER;
2830 banks[2] = mce->addr;
2831 banks[3] = mce->misc;
2832 vcpu->arch.mcg_status = mce->mcg_status;
2833 banks[1] = mce->status;
2834 kvm_queue_exception(vcpu, MC_VECTOR);
2835 } else if (!(banks[1] & MCI_STATUS_VAL)
2836 || !(banks[1] & MCI_STATUS_UC)) {
2837 if (banks[1] & MCI_STATUS_VAL)
2838 mce->status |= MCI_STATUS_OVER;
2839 banks[2] = mce->addr;
2840 banks[3] = mce->misc;
2841 banks[1] = mce->status;
2842 } else
2843 banks[1] |= MCI_STATUS_OVER;
2844 return 0;
2845}
2846
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002847static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
2848 struct kvm_vcpu_events *events)
2849{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002850 process_nmi(vcpu);
Jan Kiszka03b82a32010-02-15 10:45:41 +01002851 events->exception.injected =
2852 vcpu->arch.exception.pending &&
2853 !kvm_exception_is_soft(vcpu->arch.exception.nr);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002854 events->exception.nr = vcpu->arch.exception.nr;
2855 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002856 events->exception.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002857 events->exception.error_code = vcpu->arch.exception.error_code;
2858
Jan Kiszka03b82a32010-02-15 10:45:41 +01002859 events->interrupt.injected =
2860 vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002861 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01002862 events->interrupt.soft = 0;
Jan Kiszka48005f62010-02-19 19:38:07 +01002863 events->interrupt.shadow =
2864 kvm_x86_ops->get_interrupt_shadow(vcpu,
2865 KVM_X86_SHADOW_INT_MOV_SS | KVM_X86_SHADOW_INT_STI);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002866
2867 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002868 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002869 events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002870 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002871
2872 events->sipi_vector = vcpu->arch.sipi_vector;
2873
Jan Kiszkadab4b912009-12-06 18:24:15 +01002874 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01002875 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
2876 | KVM_VCPUEVENT_VALID_SHADOW);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002877 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002878}
2879
2880static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
2881 struct kvm_vcpu_events *events)
2882{
Jan Kiszkadab4b912009-12-06 18:24:15 +01002883 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01002884 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
2885 | KVM_VCPUEVENT_VALID_SHADOW))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002886 return -EINVAL;
2887
Avi Kivity7460fb4a2011-09-20 13:43:14 +03002888 process_nmi(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002889 vcpu->arch.exception.pending = events->exception.injected;
2890 vcpu->arch.exception.nr = events->exception.nr;
2891 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
2892 vcpu->arch.exception.error_code = events->exception.error_code;
2893
2894 vcpu->arch.interrupt.pending = events->interrupt.injected;
2895 vcpu->arch.interrupt.nr = events->interrupt.nr;
2896 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01002897 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
2898 kvm_x86_ops->set_interrupt_shadow(vcpu,
2899 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002900
2901 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01002902 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
2903 vcpu->arch.nmi_pending = events->nmi.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002904 kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked);
2905
Jan Kiszkadab4b912009-12-06 18:24:15 +01002906 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR)
2907 vcpu->arch.sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002908
Avi Kivity3842d132010-07-27 12:30:24 +03002909 kvm_make_request(KVM_REQ_EVENT, vcpu);
2910
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002911 return 0;
2912}
2913
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002914static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
2915 struct kvm_debugregs *dbgregs)
2916{
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002917 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
2918 dbgregs->dr6 = vcpu->arch.dr6;
2919 dbgregs->dr7 = vcpu->arch.dr7;
2920 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04002921 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002922}
2923
2924static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
2925 struct kvm_debugregs *dbgregs)
2926{
2927 if (dbgregs->flags)
2928 return -EINVAL;
2929
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002930 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
2931 vcpu->arch.dr6 = dbgregs->dr6;
2932 vcpu->arch.dr7 = dbgregs->dr7;
2933
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01002934 return 0;
2935}
2936
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002937static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
2938 struct kvm_xsave *guest_xsave)
2939{
2940 if (cpu_has_xsave)
2941 memcpy(guest_xsave->region,
2942 &vcpu->arch.guest_fpu.state->xsave,
Xiaotian Fengf45755b2010-08-13 15:19:11 +08002943 xstate_size);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002944 else {
2945 memcpy(guest_xsave->region,
2946 &vcpu->arch.guest_fpu.state->fxsave,
2947 sizeof(struct i387_fxsave_struct));
2948 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
2949 XSTATE_FPSSE;
2950 }
2951}
2952
2953static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
2954 struct kvm_xsave *guest_xsave)
2955{
2956 u64 xstate_bv =
2957 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
2958
2959 if (cpu_has_xsave)
2960 memcpy(&vcpu->arch.guest_fpu.state->xsave,
Xiaotian Fengf45755b2010-08-13 15:19:11 +08002961 guest_xsave->region, xstate_size);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08002962 else {
2963 if (xstate_bv & ~XSTATE_FPSSE)
2964 return -EINVAL;
2965 memcpy(&vcpu->arch.guest_fpu.state->fxsave,
2966 guest_xsave->region, sizeof(struct i387_fxsave_struct));
2967 }
2968 return 0;
2969}
2970
2971static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
2972 struct kvm_xcrs *guest_xcrs)
2973{
2974 if (!cpu_has_xsave) {
2975 guest_xcrs->nr_xcrs = 0;
2976 return;
2977 }
2978
2979 guest_xcrs->nr_xcrs = 1;
2980 guest_xcrs->flags = 0;
2981 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
2982 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
2983}
2984
2985static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
2986 struct kvm_xcrs *guest_xcrs)
2987{
2988 int i, r = 0;
2989
2990 if (!cpu_has_xsave)
2991 return -EINVAL;
2992
2993 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
2994 return -EINVAL;
2995
2996 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
2997 /* Only support XCR0 currently */
2998 if (guest_xcrs->xcrs[0].xcr == XCR_XFEATURE_ENABLED_MASK) {
2999 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
3000 guest_xcrs->xcrs[0].value);
3001 break;
3002 }
3003 if (r)
3004 r = -EINVAL;
3005 return r;
3006}
3007
Carsten Otte313a3dc2007-10-11 19:16:52 +02003008long kvm_arch_vcpu_ioctl(struct file *filp,
3009 unsigned int ioctl, unsigned long arg)
3010{
3011 struct kvm_vcpu *vcpu = filp->private_data;
3012 void __user *argp = (void __user *)arg;
3013 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003014 union {
3015 struct kvm_lapic_state *lapic;
3016 struct kvm_xsave *xsave;
3017 struct kvm_xcrs *xcrs;
3018 void *buffer;
3019 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003020
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003021 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003022 switch (ioctl) {
3023 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003024 r = -EINVAL;
3025 if (!vcpu->arch.apic)
3026 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003027 u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003028
Dave Hansenb772ff32008-08-11 10:01:47 -07003029 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003030 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07003031 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003032 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003033 if (r)
3034 goto out;
3035 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003036 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003037 goto out;
3038 r = 0;
3039 break;
3040 }
3041 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02003042 r = -EINVAL;
3043 if (!vcpu->arch.apic)
3044 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003045 u.lapic = kmalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
Dave Hansenb772ff32008-08-11 10:01:47 -07003046 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003047 if (!u.lapic)
Carsten Otte313a3dc2007-10-11 19:16:52 +02003048 goto out;
Dave Hansenb772ff32008-08-11 10:01:47 -07003049 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003050 if (copy_from_user(u.lapic, argp, sizeof(struct kvm_lapic_state)))
Dave Hansenb772ff32008-08-11 10:01:47 -07003051 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003052 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003053 if (r)
3054 goto out;
3055 r = 0;
3056 break;
3057 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003058 case KVM_INTERRUPT: {
3059 struct kvm_interrupt irq;
3060
3061 r = -EFAULT;
3062 if (copy_from_user(&irq, argp, sizeof irq))
3063 goto out;
3064 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
3065 if (r)
3066 goto out;
3067 r = 0;
3068 break;
3069 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003070 case KVM_NMI: {
3071 r = kvm_vcpu_ioctl_nmi(vcpu);
3072 if (r)
3073 goto out;
3074 r = 0;
3075 break;
3076 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003077 case KVM_SET_CPUID: {
3078 struct kvm_cpuid __user *cpuid_arg = argp;
3079 struct kvm_cpuid cpuid;
3080
3081 r = -EFAULT;
3082 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3083 goto out;
3084 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
3085 if (r)
3086 goto out;
3087 break;
3088 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02003089 case KVM_SET_CPUID2: {
3090 struct kvm_cpuid2 __user *cpuid_arg = argp;
3091 struct kvm_cpuid2 cpuid;
3092
3093 r = -EFAULT;
3094 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3095 goto out;
3096 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003097 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003098 if (r)
3099 goto out;
3100 break;
3101 }
3102 case KVM_GET_CPUID2: {
3103 struct kvm_cpuid2 __user *cpuid_arg = argp;
3104 struct kvm_cpuid2 cpuid;
3105
3106 r = -EFAULT;
3107 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
3108 goto out;
3109 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00003110 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02003111 if (r)
3112 goto out;
3113 r = -EFAULT;
3114 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
3115 goto out;
3116 r = 0;
3117 break;
3118 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003119 case KVM_GET_MSRS:
3120 r = msr_io(vcpu, argp, kvm_get_msr, 1);
3121 break;
3122 case KVM_SET_MSRS:
3123 r = msr_io(vcpu, argp, do_set_msr, 0);
3124 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02003125 case KVM_TPR_ACCESS_REPORTING: {
3126 struct kvm_tpr_access_ctl tac;
3127
3128 r = -EFAULT;
3129 if (copy_from_user(&tac, argp, sizeof tac))
3130 goto out;
3131 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
3132 if (r)
3133 goto out;
3134 r = -EFAULT;
3135 if (copy_to_user(argp, &tac, sizeof tac))
3136 goto out;
3137 r = 0;
3138 break;
3139 };
Avi Kivityb93463a2007-10-25 16:52:32 +02003140 case KVM_SET_VAPIC_ADDR: {
3141 struct kvm_vapic_addr va;
3142
3143 r = -EINVAL;
3144 if (!irqchip_in_kernel(vcpu->kvm))
3145 goto out;
3146 r = -EFAULT;
3147 if (copy_from_user(&va, argp, sizeof va))
3148 goto out;
3149 r = 0;
3150 kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
3151 break;
3152 }
Huang Ying890ca9a2009-05-11 16:48:15 +08003153 case KVM_X86_SETUP_MCE: {
3154 u64 mcg_cap;
3155
3156 r = -EFAULT;
3157 if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap))
3158 goto out;
3159 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
3160 break;
3161 }
3162 case KVM_X86_SET_MCE: {
3163 struct kvm_x86_mce mce;
3164
3165 r = -EFAULT;
3166 if (copy_from_user(&mce, argp, sizeof mce))
3167 goto out;
3168 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
3169 break;
3170 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003171 case KVM_GET_VCPU_EVENTS: {
3172 struct kvm_vcpu_events events;
3173
3174 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
3175
3176 r = -EFAULT;
3177 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
3178 break;
3179 r = 0;
3180 break;
3181 }
3182 case KVM_SET_VCPU_EVENTS: {
3183 struct kvm_vcpu_events events;
3184
3185 r = -EFAULT;
3186 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
3187 break;
3188
3189 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
3190 break;
3191 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003192 case KVM_GET_DEBUGREGS: {
3193 struct kvm_debugregs dbgregs;
3194
3195 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
3196
3197 r = -EFAULT;
3198 if (copy_to_user(argp, &dbgregs,
3199 sizeof(struct kvm_debugregs)))
3200 break;
3201 r = 0;
3202 break;
3203 }
3204 case KVM_SET_DEBUGREGS: {
3205 struct kvm_debugregs dbgregs;
3206
3207 r = -EFAULT;
3208 if (copy_from_user(&dbgregs, argp,
3209 sizeof(struct kvm_debugregs)))
3210 break;
3211
3212 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
3213 break;
3214 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003215 case KVM_GET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003216 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003217 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003218 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003219 break;
3220
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003221 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003222
3223 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003224 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003225 break;
3226 r = 0;
3227 break;
3228 }
3229 case KVM_SET_XSAVE: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003230 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003231 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003232 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003233 break;
3234
3235 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003236 if (copy_from_user(u.xsave, argp, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003237 break;
3238
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003239 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003240 break;
3241 }
3242 case KVM_GET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003243 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003244 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003245 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003246 break;
3247
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003248 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003249
3250 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003251 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003252 sizeof(struct kvm_xcrs)))
3253 break;
3254 r = 0;
3255 break;
3256 }
3257 case KVM_SET_XCRS: {
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003258 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003259 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003260 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003261 break;
3262
3263 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003264 if (copy_from_user(u.xcrs, argp,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003265 sizeof(struct kvm_xcrs)))
3266 break;
3267
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003268 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003269 break;
3270 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01003271 case KVM_SET_TSC_KHZ: {
3272 u32 user_tsc_khz;
3273
3274 r = -EINVAL;
3275 if (!kvm_has_tsc_control)
3276 break;
3277
3278 user_tsc_khz = (u32)arg;
3279
3280 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
3281 goto out;
3282
3283 kvm_x86_ops->set_tsc_khz(vcpu, user_tsc_khz);
3284
3285 r = 0;
3286 goto out;
3287 }
3288 case KVM_GET_TSC_KHZ: {
3289 r = -EIO;
3290 if (check_tsc_unstable())
3291 goto out;
3292
3293 r = vcpu_tsc_khz(vcpu);
3294
3295 goto out;
3296 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003297 default:
3298 r = -EINVAL;
3299 }
3300out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03003301 kfree(u.buffer);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003302 return r;
3303}
3304
Carsten Otte1fe779f2007-10-29 16:08:35 +01003305static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
3306{
3307 int ret;
3308
3309 if (addr > (unsigned int)(-3 * PAGE_SIZE))
3310 return -1;
3311 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
3312 return ret;
3313}
3314
Sheng Yangb927a3c2009-07-21 10:42:48 +08003315static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
3316 u64 ident_addr)
3317{
3318 kvm->arch.ept_identity_map_addr = ident_addr;
3319 return 0;
3320}
3321
Carsten Otte1fe779f2007-10-29 16:08:35 +01003322static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
3323 u32 kvm_nr_mmu_pages)
3324{
3325 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
3326 return -EINVAL;
3327
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003328 mutex_lock(&kvm->slots_lock);
Marcelo Tosatti7c8a83b2009-05-12 18:55:43 -03003329 spin_lock(&kvm->mmu_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003330
3331 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003332 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003333
Marcelo Tosatti7c8a83b2009-05-12 18:55:43 -03003334 spin_unlock(&kvm->mmu_lock);
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003335 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003336 return 0;
3337}
3338
3339static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
3340{
Dave Hansen39de71e2010-08-19 18:11:14 -07003341 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003342}
3343
Carsten Otte1fe779f2007-10-29 16:08:35 +01003344static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3345{
3346 int r;
3347
3348 r = 0;
3349 switch (chip->chip_id) {
3350 case KVM_IRQCHIP_PIC_MASTER:
3351 memcpy(&chip->chip.pic,
3352 &pic_irqchip(kvm)->pics[0],
3353 sizeof(struct kvm_pic_state));
3354 break;
3355 case KVM_IRQCHIP_PIC_SLAVE:
3356 memcpy(&chip->chip.pic,
3357 &pic_irqchip(kvm)->pics[1],
3358 sizeof(struct kvm_pic_state));
3359 break;
3360 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003361 r = kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003362 break;
3363 default:
3364 r = -EINVAL;
3365 break;
3366 }
3367 return r;
3368}
3369
3370static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
3371{
3372 int r;
3373
3374 r = 0;
3375 switch (chip->chip_id) {
3376 case KVM_IRQCHIP_PIC_MASTER:
Avi Kivityf4f51052010-09-19 18:44:07 +02003377 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003378 memcpy(&pic_irqchip(kvm)->pics[0],
3379 &chip->chip.pic,
3380 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003381 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003382 break;
3383 case KVM_IRQCHIP_PIC_SLAVE:
Avi Kivityf4f51052010-09-19 18:44:07 +02003384 spin_lock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003385 memcpy(&pic_irqchip(kvm)->pics[1],
3386 &chip->chip.pic,
3387 sizeof(struct kvm_pic_state));
Avi Kivityf4f51052010-09-19 18:44:07 +02003388 spin_unlock(&pic_irqchip(kvm)->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003389 break;
3390 case KVM_IRQCHIP_IOAPIC:
Gleb Natapoveba02262009-08-24 11:54:25 +03003391 r = kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003392 break;
3393 default:
3394 r = -EINVAL;
3395 break;
3396 }
3397 kvm_pic_update_irq(pic_irqchip(kvm));
3398 return r;
3399}
3400
Sheng Yange0f63cb2008-03-04 00:50:59 +08003401static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3402{
3403 int r = 0;
3404
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003405 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003406 memcpy(ps, &kvm->arch.vpit->pit_state, sizeof(struct kvm_pit_state));
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003407 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003408 return r;
3409}
3410
3411static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
3412{
3413 int r = 0;
3414
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003415 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003416 memcpy(&kvm->arch.vpit->pit_state, ps, sizeof(struct kvm_pit_state));
Beth Kone9f42752009-07-07 11:50:38 -04003417 kvm_pit_load_count(kvm, 0, ps->channels[0].count, 0);
3418 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
3419 return r;
3420}
3421
3422static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3423{
3424 int r = 0;
3425
3426 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3427 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
3428 sizeof(ps->channels));
3429 ps->flags = kvm->arch.vpit->pit_state.flags;
3430 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003431 memset(&ps->reserved, 0, sizeof(ps->reserved));
Beth Kone9f42752009-07-07 11:50:38 -04003432 return r;
3433}
3434
3435static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3436{
3437 int r = 0, start = 0;
3438 u32 prev_legacy, cur_legacy;
3439 mutex_lock(&kvm->arch.vpit->pit_state.lock);
3440 prev_legacy = kvm->arch.vpit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
3441 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
3442 if (!prev_legacy && cur_legacy)
3443 start = 1;
3444 memcpy(&kvm->arch.vpit->pit_state.channels, &ps->channels,
3445 sizeof(kvm->arch.vpit->pit_state.channels));
3446 kvm->arch.vpit->pit_state.flags = ps->flags;
3447 kvm_pit_load_count(kvm, 0, kvm->arch.vpit->pit_state.channels[0].count, start);
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003448 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003449 return r;
3450}
3451
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003452static int kvm_vm_ioctl_reinject(struct kvm *kvm,
3453 struct kvm_reinject_control *control)
3454{
3455 if (!kvm->arch.vpit)
3456 return -ENXIO;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003457 mutex_lock(&kvm->arch.vpit->pit_state.lock);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003458 kvm->arch.vpit->pit_state.pit_timer.reinject = control->pit_reinject;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03003459 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003460 return 0;
3461}
3462
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003463/**
3464 * write_protect_slot - write protect a slot for dirty logging
3465 * @kvm: the kvm instance
3466 * @memslot: the slot we protect
3467 * @dirty_bitmap: the bitmap indicating which pages are dirty
3468 * @nr_dirty_pages: the number of dirty pages
3469 *
3470 * We have two ways to find all sptes to protect:
3471 * 1. Use kvm_mmu_slot_remove_write_access() which walks all shadow pages and
3472 * checks ones that have a spte mapping a page in the slot.
3473 * 2. Use kvm_mmu_rmap_write_protect() for each gfn found in the bitmap.
3474 *
3475 * Generally speaking, if there are not so many dirty pages compared to the
3476 * number of shadow pages, we should use the latter.
3477 *
3478 * Note that letting others write into a page marked dirty in the old bitmap
3479 * by using the remaining tlb entry is not a problem. That page will become
3480 * write protected again when we flush the tlb and then be reported dirty to
3481 * the user space by copying the old bitmap.
3482 */
3483static void write_protect_slot(struct kvm *kvm,
3484 struct kvm_memory_slot *memslot,
3485 unsigned long *dirty_bitmap,
3486 unsigned long nr_dirty_pages)
3487{
3488 /* Not many dirty pages compared to # of shadow pages. */
3489 if (nr_dirty_pages < kvm->arch.n_used_mmu_pages) {
3490 unsigned long gfn_offset;
3491
3492 for_each_set_bit(gfn_offset, dirty_bitmap, memslot->npages) {
3493 unsigned long gfn = memslot->base_gfn + gfn_offset;
3494
3495 spin_lock(&kvm->mmu_lock);
3496 kvm_mmu_rmap_write_protect(kvm, gfn, memslot);
3497 spin_unlock(&kvm->mmu_lock);
3498 }
3499 kvm_flush_remote_tlbs(kvm);
3500 } else {
3501 spin_lock(&kvm->mmu_lock);
3502 kvm_mmu_slot_remove_write_access(kvm, memslot->id);
3503 spin_unlock(&kvm->mmu_lock);
3504 }
3505}
3506
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003507/*
3508 * Get (and clear) the dirty memory log for a memory slot.
3509 */
3510int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
3511 struct kvm_dirty_log *log)
3512{
Takuya Yoshikawa7850ac52011-11-14 18:23:34 +09003513 int r;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003514 struct kvm_memory_slot *memslot;
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003515 unsigned long n, nr_dirty_pages;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003516
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003517 mutex_lock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003518
Marcelo Tosattib050b012009-12-23 14:35:22 -02003519 r = -EINVAL;
3520 if (log->slot >= KVM_MEMORY_SLOTS)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003521 goto out;
3522
Marcelo Tosattib050b012009-12-23 14:35:22 -02003523 memslot = &kvm->memslots->memslots[log->slot];
3524 r = -ENOENT;
3525 if (!memslot->dirty_bitmap)
3526 goto out;
3527
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09003528 n = kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003529 nr_dirty_pages = memslot->nr_dirty_pages;
Marcelo Tosattib050b012009-12-23 14:35:22 -02003530
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003531 /* If nothing is dirty, don't bother messing with page tables. */
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003532 if (nr_dirty_pages) {
Marcelo Tosattib050b012009-12-23 14:35:22 -02003533 struct kvm_memslots *slots, *old_slots;
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003534 unsigned long *dirty_bitmap;
Marcelo Tosattib050b012009-12-23 14:35:22 -02003535
Takuya Yoshikawa515a0122010-10-27 18:23:54 +09003536 dirty_bitmap = memslot->dirty_bitmap_head;
3537 if (memslot->dirty_bitmap == dirty_bitmap)
3538 dirty_bitmap += n / sizeof(long);
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003539 memset(dirty_bitmap, 0, n);
Marcelo Tosattib050b012009-12-23 14:35:22 -02003540
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003541 r = -ENOMEM;
3542 slots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
Takuya Yoshikawa515a0122010-10-27 18:23:54 +09003543 if (!slots)
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003544 goto out;
Marcelo Tosattib050b012009-12-23 14:35:22 -02003545 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003546 memslot = &slots->memslots[log->slot];
3547 memslot->dirty_bitmap = dirty_bitmap;
3548 memslot->nr_dirty_pages = 0;
Xiao Guangrongbe593d62011-11-24 17:38:24 +08003549 update_memslots(slots, NULL);
Marcelo Tosattib050b012009-12-23 14:35:22 -02003550
3551 old_slots = kvm->memslots;
3552 rcu_assign_pointer(kvm->memslots, slots);
3553 synchronize_srcu_expedited(&kvm->srcu);
3554 dirty_bitmap = old_slots->memslots[log->slot].dirty_bitmap;
3555 kfree(old_slots);
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003556
Takuya Yoshikawa95d4c162011-11-14 18:24:50 +09003557 write_protect_slot(kvm, memslot, dirty_bitmap, nr_dirty_pages);
Michael S. Tsirkinedde99c2010-10-25 03:21:24 +02003558
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003559 r = -EFAULT;
Takuya Yoshikawa515a0122010-10-27 18:23:54 +09003560 if (copy_to_user(log->dirty_bitmap, dirty_bitmap, n))
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003561 goto out;
Takuya Yoshikawa914ebcc2010-04-28 18:50:36 +09003562 } else {
3563 r = -EFAULT;
3564 if (clear_user(log->dirty_bitmap, n))
3565 goto out;
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003566 }
Marcelo Tosattib050b012009-12-23 14:35:22 -02003567
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003568 r = 0;
3569out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003570 mutex_unlock(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08003571 return r;
3572}
3573
Carsten Otte1fe779f2007-10-29 16:08:35 +01003574long kvm_arch_vm_ioctl(struct file *filp,
3575 unsigned int ioctl, unsigned long arg)
3576{
3577 struct kvm *kvm = filp->private_data;
3578 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03003579 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07003580 /*
3581 * This union makes it completely explicit to gcc-3.x
3582 * that these two variables' stack usage should be
3583 * combined, not added together.
3584 */
3585 union {
3586 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04003587 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003588 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07003589 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003590
3591 switch (ioctl) {
3592 case KVM_SET_TSS_ADDR:
3593 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
3594 if (r < 0)
3595 goto out;
3596 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003597 case KVM_SET_IDENTITY_MAP_ADDR: {
3598 u64 ident_addr;
3599
3600 r = -EFAULT;
3601 if (copy_from_user(&ident_addr, argp, sizeof ident_addr))
3602 goto out;
3603 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
3604 if (r < 0)
3605 goto out;
3606 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);
3610 if (r)
3611 goto out;
3612 break;
3613 case KVM_GET_NR_MMU_PAGES:
3614 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
3615 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003616 case KVM_CREATE_IRQCHIP: {
3617 struct kvm_pic *vpic;
3618
3619 mutex_lock(&kvm->lock);
3620 r = -EEXIST;
3621 if (kvm->arch.vpic)
3622 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003623 r = -ENOMEM;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003624 vpic = kvm_create_pic(kvm);
3625 if (vpic) {
Carsten Otte1fe779f2007-10-29 16:08:35 +01003626 r = kvm_ioapic_init(kvm);
3627 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003628 mutex_lock(&kvm->slots_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003629 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
Sasha Levin743eeb02011-07-27 16:00:48 +03003630 &vpic->dev_master);
3631 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
3632 &vpic->dev_slave);
3633 kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS,
3634 &vpic->dev_eclr);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003635 mutex_unlock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003636 kfree(vpic);
3637 goto create_irqchip_unlock;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003638 }
3639 } else
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003640 goto create_irqchip_unlock;
3641 smp_wmb();
3642 kvm->arch.vpic = vpic;
3643 smp_wmb();
Avi Kivity399ec802008-11-19 13:58:46 +02003644 r = kvm_setup_default_irq_routing(kvm);
3645 if (r) {
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003646 mutex_lock(&kvm->slots_lock);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003647 mutex_lock(&kvm->irq_lock);
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08003648 kvm_ioapic_destroy(kvm);
3649 kvm_destroy_pic(kvm);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003650 mutex_unlock(&kvm->irq_lock);
Takuya Yoshikawa175504c2010-12-16 01:41:37 +09003651 mutex_unlock(&kvm->slots_lock);
Avi Kivity399ec802008-11-19 13:58:46 +02003652 }
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003653 create_irqchip_unlock:
3654 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003655 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02003656 }
Sheng Yang78376992008-01-28 05:10:22 +08003657 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003658 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
3659 goto create_pit;
3660 case KVM_CREATE_PIT2:
3661 r = -EFAULT;
3662 if (copy_from_user(&u.pit_config, argp,
3663 sizeof(struct kvm_pit_config)))
3664 goto out;
3665 create_pit:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003666 mutex_lock(&kvm->slots_lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02003667 r = -EEXIST;
3668 if (kvm->arch.vpit)
3669 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08003670 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003671 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08003672 if (kvm->arch.vpit)
3673 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02003674 create_pit_unlock:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003675 mutex_unlock(&kvm->slots_lock);
Sheng Yang78376992008-01-28 05:10:22 +08003676 break;
Gleb Natapov49256632009-02-04 17:28:14 +02003677 case KVM_IRQ_LINE_STATUS:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003678 case KVM_IRQ_LINE: {
3679 struct kvm_irq_level irq_event;
3680
3681 r = -EFAULT;
3682 if (copy_from_user(&irq_event, argp, sizeof irq_event))
3683 goto out;
Wei Yongjun160d2f62010-03-12 10:09:45 +08003684 r = -ENXIO;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003685 if (irqchip_in_kernel(kvm)) {
Gleb Natapov49256632009-02-04 17:28:14 +02003686 __s32 status;
Gleb Natapov49256632009-02-04 17:28:14 +02003687 status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
3688 irq_event.irq, irq_event.level);
Gleb Natapov49256632009-02-04 17:28:14 +02003689 if (ioctl == KVM_IRQ_LINE_STATUS) {
Wei Yongjun160d2f62010-03-12 10:09:45 +08003690 r = -EFAULT;
Gleb Natapov49256632009-02-04 17:28:14 +02003691 irq_event.status = status;
3692 if (copy_to_user(argp, &irq_event,
3693 sizeof irq_event))
3694 goto out;
3695 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01003696 r = 0;
3697 }
3698 break;
3699 }
3700 case KVM_GET_IRQCHIP: {
3701 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Dave Hansenf0d66272008-08-11 10:01:45 -07003702 struct kvm_irqchip *chip = kmalloc(sizeof(*chip), GFP_KERNEL);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003703
Dave Hansenf0d66272008-08-11 10:01:45 -07003704 r = -ENOMEM;
3705 if (!chip)
Carsten Otte1fe779f2007-10-29 16:08:35 +01003706 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003707 r = -EFAULT;
3708 if (copy_from_user(chip, argp, sizeof *chip))
3709 goto get_irqchip_out;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003710 r = -ENXIO;
3711 if (!irqchip_in_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003712 goto get_irqchip_out;
3713 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
3714 if (r)
3715 goto get_irqchip_out;
3716 r = -EFAULT;
3717 if (copy_to_user(argp, chip, sizeof *chip))
3718 goto get_irqchip_out;
3719 r = 0;
3720 get_irqchip_out:
3721 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003722 if (r)
3723 goto out;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003724 break;
3725 }
3726 case KVM_SET_IRQCHIP: {
3727 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Dave Hansenf0d66272008-08-11 10:01:45 -07003728 struct kvm_irqchip *chip = kmalloc(sizeof(*chip), GFP_KERNEL);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003729
Dave Hansenf0d66272008-08-11 10:01:45 -07003730 r = -ENOMEM;
3731 if (!chip)
Carsten Otte1fe779f2007-10-29 16:08:35 +01003732 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003733 r = -EFAULT;
3734 if (copy_from_user(chip, argp, sizeof *chip))
3735 goto set_irqchip_out;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003736 r = -ENXIO;
3737 if (!irqchip_in_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07003738 goto set_irqchip_out;
3739 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
3740 if (r)
3741 goto set_irqchip_out;
3742 r = 0;
3743 set_irqchip_out:
3744 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01003745 if (r)
3746 goto out;
Carsten Otte1fe779f2007-10-29 16:08:35 +01003747 break;
3748 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08003749 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003750 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003751 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003752 goto out;
3753 r = -ENXIO;
3754 if (!kvm->arch.vpit)
3755 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003756 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003757 if (r)
3758 goto out;
3759 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003760 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003761 goto out;
3762 r = 0;
3763 break;
3764 }
3765 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08003766 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07003767 if (copy_from_user(&u.ps, argp, sizeof u.ps))
Sheng Yange0f63cb2008-03-04 00:50:59 +08003768 goto out;
3769 r = -ENXIO;
3770 if (!kvm->arch.vpit)
3771 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07003772 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08003773 if (r)
3774 goto out;
3775 r = 0;
3776 break;
3777 }
Beth Kone9f42752009-07-07 11:50:38 -04003778 case KVM_GET_PIT2: {
3779 r = -ENXIO;
3780 if (!kvm->arch.vpit)
3781 goto out;
3782 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
3783 if (r)
3784 goto out;
3785 r = -EFAULT;
3786 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
3787 goto out;
3788 r = 0;
3789 break;
3790 }
3791 case KVM_SET_PIT2: {
3792 r = -EFAULT;
3793 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
3794 goto out;
3795 r = -ENXIO;
3796 if (!kvm->arch.vpit)
3797 goto out;
3798 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
3799 if (r)
3800 goto out;
3801 r = 0;
3802 break;
3803 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003804 case KVM_REINJECT_CONTROL: {
3805 struct kvm_reinject_control control;
3806 r = -EFAULT;
3807 if (copy_from_user(&control, argp, sizeof(control)))
3808 goto out;
3809 r = kvm_vm_ioctl_reinject(kvm, &control);
3810 if (r)
3811 goto out;
3812 r = 0;
3813 break;
3814 }
Ed Swierkffde22a2009-10-15 15:21:43 -07003815 case KVM_XEN_HVM_CONFIG: {
3816 r = -EFAULT;
3817 if (copy_from_user(&kvm->arch.xen_hvm_config, argp,
3818 sizeof(struct kvm_xen_hvm_config)))
3819 goto out;
3820 r = -EINVAL;
3821 if (kvm->arch.xen_hvm_config.flags)
3822 goto out;
3823 r = 0;
3824 break;
3825 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003826 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003827 struct kvm_clock_data user_ns;
3828 u64 now_ns;
3829 s64 delta;
3830
3831 r = -EFAULT;
3832 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
3833 goto out;
3834
3835 r = -EINVAL;
3836 if (user_ns.flags)
3837 goto out;
3838
3839 r = 0;
Avi Kivity395c6b02010-10-04 12:55:49 +02003840 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10003841 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003842 delta = user_ns.clock - now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02003843 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003844 kvm->arch.kvmclock_offset = delta;
3845 break;
3846 }
3847 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003848 struct kvm_clock_data user_ns;
3849 u64 now_ns;
3850
Avi Kivity395c6b02010-10-04 12:55:49 +02003851 local_irq_disable();
Zachary Amsden759379d2010-08-19 22:07:25 -10003852 now_ns = get_kernel_ns();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003853 user_ns.clock = kvm->arch.kvmclock_offset + now_ns;
Avi Kivity395c6b02010-10-04 12:55:49 +02003854 local_irq_enable();
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003855 user_ns.flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003856 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04003857
3858 r = -EFAULT;
3859 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
3860 goto out;
3861 r = 0;
3862 break;
3863 }
3864
Carsten Otte1fe779f2007-10-29 16:08:35 +01003865 default:
3866 ;
3867 }
3868out:
3869 return r;
3870}
3871
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08003872static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02003873{
3874 u32 dummy[2];
3875 unsigned i, j;
3876
Glauber Costae3267cb2009-10-06 13:24:50 -04003877 /* skip the first msrs in the list. KVM-specific */
3878 for (i = j = KVM_SAVE_MSRS_BEGIN; i < ARRAY_SIZE(msrs_to_save); i++) {
Carsten Otte043405e2007-10-10 17:16:19 +02003879 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
3880 continue;
3881 if (j < i)
3882 msrs_to_save[j] = msrs_to_save[i];
3883 j++;
3884 }
3885 num_msrs_to_save = j;
3886}
3887
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003888static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
3889 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01003890{
Avi Kivity70252a12010-01-19 12:51:22 +02003891 int handled = 0;
3892 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003893
Avi Kivity70252a12010-01-19 12:51:22 +02003894 do {
3895 n = min(len, 8);
3896 if (!(vcpu->arch.apic &&
3897 !kvm_iodevice_write(&vcpu->arch.apic->dev, addr, n, v))
3898 && kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, addr, n, v))
3899 break;
3900 handled += n;
3901 addr += n;
3902 len -= n;
3903 v += n;
3904 } while (len);
3905
3906 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003907}
3908
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003909static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01003910{
Avi Kivity70252a12010-01-19 12:51:22 +02003911 int handled = 0;
3912 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003913
Avi Kivity70252a12010-01-19 12:51:22 +02003914 do {
3915 n = min(len, 8);
3916 if (!(vcpu->arch.apic &&
3917 !kvm_iodevice_read(&vcpu->arch.apic->dev, addr, n, v))
3918 && kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, addr, n, v))
3919 break;
3920 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v);
3921 handled += n;
3922 addr += n;
3923 len -= n;
3924 v += n;
3925 } while (len);
3926
3927 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003928}
3929
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02003930static void kvm_set_segment(struct kvm_vcpu *vcpu,
3931 struct kvm_segment *var, int seg)
3932{
3933 kvm_x86_ops->set_segment(vcpu, var, seg);
3934}
3935
3936void kvm_get_segment(struct kvm_vcpu *vcpu,
3937 struct kvm_segment *var, int seg)
3938{
3939 kvm_x86_ops->get_segment(vcpu, var, seg);
3940}
3941
Joerg Roedelc30a3582010-09-10 17:30:48 +02003942static gpa_t translate_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access)
3943{
3944 return gpa;
3945}
3946
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003947static gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access)
3948{
3949 gpa_t t_gpa;
Avi Kivityab9ae312010-11-22 17:53:26 +02003950 struct x86_exception exception;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003951
3952 BUG_ON(!mmu_is_nested(vcpu));
3953
3954 /* NPT walks are always user-walks */
3955 access |= PFERR_USER_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02003956 t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, &exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003957
3958 return t_gpa;
3959}
3960
Avi Kivityab9ae312010-11-22 17:53:26 +02003961gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
3962 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003963{
3964 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02003965 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003966}
3967
Avi Kivityab9ae312010-11-22 17:53:26 +02003968 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
3969 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003970{
3971 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
3972 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02003973 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003974}
3975
Avi Kivityab9ae312010-11-22 17:53:26 +02003976gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
3977 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003978{
3979 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
3980 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02003981 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003982}
3983
3984/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02003985gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
3986 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02003987{
Avi Kivityab9ae312010-11-22 17:53:26 +02003988 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02003989}
3990
3991static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
3992 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02003993 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01003994{
3995 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003996 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01003997
3998 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02003999 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02004000 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004001 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02004002 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004003 int ret;
4004
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004005 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004006 return X86EMUL_PROPAGATE_FAULT;
Izik Eidus77c20022008-12-29 01:42:19 +02004007 ret = kvm_read_guest(vcpu->kvm, gpa, data, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004008 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004009 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004010 goto out;
4011 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01004012
Izik Eidus77c20022008-12-29 01:42:19 +02004013 bytes -= toread;
4014 data += toread;
4015 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004016 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004017out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004018 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004019}
Izik Eidus77c20022008-12-29 01:42:19 +02004020
Gleb Natapov1871c602010-02-10 14:21:32 +02004021/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03004022static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
4023 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004024 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004025{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004026 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004027 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004028
Gleb Natapov1871c602010-02-10 14:21:32 +02004029 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004030 access | PFERR_FETCH_MASK,
4031 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004032}
4033
Nadav Har'El064aea72011-05-25 23:04:56 +03004034int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004035 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004036 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004037{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004038 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004039 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03004040
Gleb Natapov1871c602010-02-10 14:21:32 +02004041 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004042 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004043}
Nadav Har'El064aea72011-05-25 23:04:56 +03004044EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02004045
Avi Kivity0f65dd72011-04-20 13:37:53 +03004046static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt,
4047 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004048 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02004049{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004050 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004051 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02004052}
4053
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004054int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004055 gva_t addr, void *val,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004056 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004057 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02004058{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004059 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Izik Eidus77c20022008-12-29 01:42:19 +02004060 void *data = val;
4061 int r = X86EMUL_CONTINUE;
4062
4063 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02004064 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
4065 PFERR_WRITE_MASK,
Avi Kivityab9ae312010-11-22 17:53:26 +02004066 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02004067 unsigned offset = addr & (PAGE_SIZE-1);
4068 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
4069 int ret;
4070
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004071 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02004072 return X86EMUL_PROPAGATE_FAULT;
Izik Eidus77c20022008-12-29 01:42:19 +02004073 ret = kvm_write_guest(vcpu->kvm, gpa, data, towrite);
4074 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004075 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02004076 goto out;
4077 }
4078
4079 bytes -= towrite;
4080 data += towrite;
4081 addr += towrite;
4082 }
4083out:
4084 return r;
4085}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03004086EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02004087
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004088static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
4089 gpa_t *gpa, struct x86_exception *exception,
4090 bool write)
4091{
4092 u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
4093
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004094 if (vcpu_match_mmio_gva(vcpu, gva) &&
4095 check_write_user_access(vcpu, write, access,
4096 vcpu->arch.access)) {
4097 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
4098 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08004099 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004100 return 1;
4101 }
4102
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004103 if (write)
4104 access |= PFERR_WRITE_MASK;
4105
4106 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
4107
4108 if (*gpa == UNMAPPED_GVA)
4109 return -1;
4110
4111 /* For APIC access vmexit */
4112 if ((*gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4113 return 1;
4114
Xiao Guangrong4f022642011-07-12 03:34:24 +08004115 if (vcpu_match_mmio_gpa(vcpu, *gpa)) {
4116 trace_vcpu_match_mmio(gva, *gpa, write, true);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004117 return 1;
Xiao Guangrong4f022642011-07-12 03:34:24 +08004118 }
Xiao Guangrongbebb1062011-07-12 03:23:20 +08004119
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004120 return 0;
4121}
4122
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004123int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02004124 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02004125{
4126 int ret;
4127
4128 ret = kvm_write_guest(vcpu->kvm, gpa, val, bytes);
4129 if (ret < 0)
4130 return 0;
Xiao Guangrongf57f2ef2011-09-22 16:56:39 +08004131 kvm_mmu_pte_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02004132 return 1;
4133}
4134
Xiao Guangrong77d197b2011-07-13 14:31:50 +08004135struct read_write_emulator_ops {
4136 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
4137 int bytes);
4138 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
4139 void *val, int bytes);
4140 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4141 int bytes, void *val);
4142 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
4143 void *val, int bytes);
4144 bool write;
4145};
4146
4147static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
4148{
4149 if (vcpu->mmio_read_completed) {
4150 memcpy(val, vcpu->mmio_data, bytes);
4151 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
4152 vcpu->mmio_phys_addr, *(u64 *)val);
4153 vcpu->mmio_read_completed = 0;
4154 return 1;
4155 }
4156
4157 return 0;
4158}
4159
4160static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4161 void *val, int bytes)
4162{
4163 return !kvm_read_guest(vcpu->kvm, gpa, val, bytes);
4164}
4165
4166static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
4167 void *val, int bytes)
4168{
4169 return emulator_write_phys(vcpu, gpa, val, bytes);
4170}
4171
4172static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
4173{
4174 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val);
4175 return vcpu_mmio_write(vcpu, gpa, bytes, val);
4176}
4177
4178static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4179 void *val, int bytes)
4180{
4181 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0);
4182 return X86EMUL_IO_NEEDED;
4183}
4184
4185static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
4186 void *val, int bytes)
4187{
4188 memcpy(vcpu->mmio_data, val, bytes);
4189 memcpy(vcpu->run->mmio.data, vcpu->mmio_data, 8);
4190 return X86EMUL_CONTINUE;
4191}
4192
4193static struct read_write_emulator_ops read_emultor = {
4194 .read_write_prepare = read_prepare,
4195 .read_write_emulate = read_emulate,
4196 .read_write_mmio = vcpu_mmio_read,
4197 .read_write_exit_mmio = read_exit_mmio,
4198};
4199
4200static struct read_write_emulator_ops write_emultor = {
4201 .read_write_emulate = write_emulate,
4202 .read_write_mmio = write_mmio,
4203 .read_write_exit_mmio = write_exit_mmio,
4204 .write = true,
4205};
4206
Xiao Guangrong22388a32011-07-13 14:32:31 +08004207static int emulator_read_write_onepage(unsigned long addr, void *val,
4208 unsigned int bytes,
4209 struct x86_exception *exception,
4210 struct kvm_vcpu *vcpu,
4211 struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004212{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004213 gpa_t gpa;
4214 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004215 bool write = ops->write;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004216
Xiao Guangrong22388a32011-07-13 14:32:31 +08004217 if (ops->read_write_prepare &&
4218 ops->read_write_prepare(vcpu, val, bytes))
4219 return X86EMUL_CONTINUE;
4220
4221 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004222
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004223 if (ret < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004224 return X86EMUL_PROPAGATE_FAULT;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004225
4226 /* For APIC access vmexit */
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08004227 if (ret)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004228 goto mmio;
4229
Xiao Guangrong22388a32011-07-13 14:32:31 +08004230 if (ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004231 return X86EMUL_CONTINUE;
4232
4233mmio:
4234 /*
4235 * Is this MMIO handled locally?
4236 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08004237 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02004238 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004239 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004240
Avi Kivity70252a12010-01-19 12:51:22 +02004241 gpa += handled;
4242 bytes -= handled;
4243 val += handled;
4244
Carsten Ottebbd9b642007-10-30 18:44:21 +01004245 vcpu->mmio_needed = 1;
Gleb Natapov411c35b2010-04-28 19:15:34 +03004246 vcpu->run->exit_reason = KVM_EXIT_MMIO;
4247 vcpu->run->mmio.phys_addr = vcpu->mmio_phys_addr = gpa;
Avi Kivitycef4dea2010-01-20 12:01:20 +02004248 vcpu->mmio_size = bytes;
4249 vcpu->run->mmio.len = min(vcpu->mmio_size, 8);
Xiao Guangrong22388a32011-07-13 14:32:31 +08004250 vcpu->run->mmio.is_write = vcpu->mmio_is_write = write;
Avi Kivitycef4dea2010-01-20 12:01:20 +02004251 vcpu->mmio_index = 0;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004252
Xiao Guangrong22388a32011-07-13 14:32:31 +08004253 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004254}
4255
Xiao Guangrong22388a32011-07-13 14:32:31 +08004256int emulator_read_write(struct x86_emulate_ctxt *ctxt, unsigned long addr,
4257 void *val, unsigned int bytes,
4258 struct x86_exception *exception,
4259 struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004260{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004261 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4262
Carsten Ottebbd9b642007-10-30 18:44:21 +01004263 /* Crossing a page boundary? */
4264 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
4265 int rc, now;
4266
4267 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08004268 rc = emulator_read_write_onepage(addr, val, now, exception,
4269 vcpu, ops);
4270
Carsten Ottebbd9b642007-10-30 18:44:21 +01004271 if (rc != X86EMUL_CONTINUE)
4272 return rc;
4273 addr += now;
4274 val += now;
4275 bytes -= now;
4276 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08004277
4278 return emulator_read_write_onepage(addr, val, bytes, exception,
4279 vcpu, ops);
4280}
4281
4282static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
4283 unsigned long addr,
4284 void *val,
4285 unsigned int bytes,
4286 struct x86_exception *exception)
4287{
4288 return emulator_read_write(ctxt, addr, val, bytes,
4289 exception, &read_emultor);
4290}
4291
4292int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
4293 unsigned long addr,
4294 const void *val,
4295 unsigned int bytes,
4296 struct x86_exception *exception)
4297{
4298 return emulator_read_write(ctxt, addr, (void *)val, bytes,
4299 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004300}
Carsten Ottebbd9b642007-10-30 18:44:21 +01004301
Avi Kivitydaea3e72010-03-15 13:59:54 +02004302#define CMPXCHG_TYPE(t, ptr, old, new) \
4303 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
4304
4305#ifdef CONFIG_X86_64
4306# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
4307#else
4308# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01004309 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02004310#endif
4311
Avi Kivity0f65dd72011-04-20 13:37:53 +03004312static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
4313 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004314 const void *old,
4315 const void *new,
4316 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03004317 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004318{
Avi Kivity0f65dd72011-04-20 13:37:53 +03004319 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivitydaea3e72010-03-15 13:59:54 +02004320 gpa_t gpa;
4321 struct page *page;
4322 char *kaddr;
4323 bool exchanged;
4324
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004325 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02004326 if (bytes > 8 || (bytes & (bytes - 1)))
4327 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004328
Avi Kivitydaea3e72010-03-15 13:59:54 +02004329 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004330
Avi Kivitydaea3e72010-03-15 13:59:54 +02004331 if (gpa == UNMAPPED_GVA ||
4332 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
4333 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004334
Avi Kivitydaea3e72010-03-15 13:59:54 +02004335 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
4336 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004337
Avi Kivitydaea3e72010-03-15 13:59:54 +02004338 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Wei Yongjunc19b8bd62010-07-15 08:51:58 +08004339 if (is_error_page(page)) {
4340 kvm_release_page_clean(page);
4341 goto emul_write;
4342 }
Izik Eidus72dc67a2008-02-10 18:04:15 +02004343
Avi Kivitydaea3e72010-03-15 13:59:54 +02004344 kaddr = kmap_atomic(page, KM_USER0);
4345 kaddr += offset_in_page(gpa);
4346 switch (bytes) {
4347 case 1:
4348 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
4349 break;
4350 case 2:
4351 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
4352 break;
4353 case 4:
4354 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
4355 break;
4356 case 8:
4357 exchanged = CMPXCHG64(kaddr, old, new);
4358 break;
4359 default:
4360 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004361 }
Avi Kivitydaea3e72010-03-15 13:59:54 +02004362 kunmap_atomic(kaddr, KM_USER0);
4363 kvm_release_page_dirty(page);
4364
4365 if (!exchanged)
4366 return X86EMUL_CMPXCHG_FAILED;
4367
Xiao Guangrongf57f2ef2011-09-22 16:56:39 +08004368 kvm_mmu_pte_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03004369
4370 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02004371
Marcelo Tosatti3200f402008-03-29 20:17:59 -03004372emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02004373 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05004374
Avi Kivity0f65dd72011-04-20 13:37:53 +03004375 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004376}
4377
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004378static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
4379{
4380 /* TODO: String I/O for in kernel device */
4381 int r;
4382
4383 if (vcpu->arch.pio.in)
4384 r = kvm_io_bus_read(vcpu->kvm, KVM_PIO_BUS, vcpu->arch.pio.port,
4385 vcpu->arch.pio.size, pd);
4386 else
4387 r = kvm_io_bus_write(vcpu->kvm, KVM_PIO_BUS,
4388 vcpu->arch.pio.port, vcpu->arch.pio.size,
4389 pd);
4390 return r;
4391}
4392
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004393static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
4394 unsigned short port, void *val,
4395 unsigned int count, bool in)
4396{
4397 trace_kvm_pio(!in, port, size, count);
4398
4399 vcpu->arch.pio.port = port;
4400 vcpu->arch.pio.in = in;
4401 vcpu->arch.pio.count = count;
4402 vcpu->arch.pio.size = size;
4403
4404 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
4405 vcpu->arch.pio.count = 0;
4406 return 1;
4407 }
4408
4409 vcpu->run->exit_reason = KVM_EXIT_IO;
4410 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
4411 vcpu->run->io.size = size;
4412 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
4413 vcpu->run->io.count = count;
4414 vcpu->run->io.port = port;
4415
4416 return 0;
4417}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004418
Avi Kivityca1d4a92011-04-20 13:37:53 +03004419static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
4420 int size, unsigned short port, void *val,
4421 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004422{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004423 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004424 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03004425
Gleb Natapov79729952010-03-18 15:20:24 +02004426 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004427 goto data_avail;
4428
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004429 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
4430 if (ret) {
4431data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004432 memcpy(val, vcpu->arch.pio_data, size * count);
Gleb Natapov79729952010-03-18 15:20:24 +02004433 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004434 return 1;
4435 }
4436
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004437 return 0;
4438}
4439
Avi Kivityca1d4a92011-04-20 13:37:53 +03004440static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
4441 int size, unsigned short port,
4442 const void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004443{
Avi Kivityca1d4a92011-04-20 13:37:53 +03004444 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4445
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004446 memcpy(vcpu->arch.pio_data, val, size * count);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08004447 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004448}
4449
Carsten Ottebbd9b642007-10-30 18:44:21 +01004450static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
4451{
4452 return kvm_x86_ops->get_segment_base(vcpu, seg);
4453}
4454
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004455static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004456{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004457 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004458}
4459
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004460int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
4461{
4462 if (!need_emulate_wbinvd(vcpu))
4463 return X86EMUL_CONTINUE;
4464
4465 if (kvm_x86_ops->has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01004466 int cpu = get_cpu();
4467
4468 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004469 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
4470 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004471 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004472 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01004473 } else
4474 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004475 return X86EMUL_CONTINUE;
4476}
4477EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
4478
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004479static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
4480{
4481 kvm_emulate_wbinvd(emul_to_vcpu(ctxt));
4482}
4483
Avi Kivity717746e2011-04-20 13:37:53 +03004484int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004485{
Avi Kivity717746e2011-04-20 13:37:53 +03004486 return _kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004487}
4488
Avi Kivity717746e2011-04-20 13:37:53 +03004489int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004490{
Gleb Natapov338dbc92010-04-28 19:15:32 +03004491
Avi Kivity717746e2011-04-20 13:37:53 +03004492 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004493}
4494
Gleb Natapov52a46612010-03-18 15:20:03 +02004495static u64 mk_cr_64(u64 curr_cr, u32 new_val)
4496{
4497 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
4498}
4499
Avi Kivity717746e2011-04-20 13:37:53 +03004500static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02004501{
Avi Kivity717746e2011-04-20 13:37:53 +03004502 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02004503 unsigned long value;
4504
4505 switch (cr) {
4506 case 0:
4507 value = kvm_read_cr0(vcpu);
4508 break;
4509 case 2:
4510 value = vcpu->arch.cr2;
4511 break;
4512 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004513 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02004514 break;
4515 case 4:
4516 value = kvm_read_cr4(vcpu);
4517 break;
4518 case 8:
4519 value = kvm_get_cr8(vcpu);
4520 break;
4521 default:
4522 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
4523 return 0;
4524 }
4525
4526 return value;
4527}
4528
Avi Kivity717746e2011-04-20 13:37:53 +03004529static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02004530{
Avi Kivity717746e2011-04-20 13:37:53 +03004531 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03004532 int res = 0;
4533
Gleb Natapov52a46612010-03-18 15:20:03 +02004534 switch (cr) {
4535 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004536 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004537 break;
4538 case 2:
4539 vcpu->arch.cr2 = val;
4540 break;
4541 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004542 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004543 break;
4544 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004545 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02004546 break;
4547 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004548 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02004549 break;
4550 default:
4551 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03004552 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02004553 }
Gleb Natapov0f122442010-04-28 19:15:31 +03004554
4555 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02004556}
4557
Avi Kivity717746e2011-04-20 13:37:53 +03004558static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02004559{
Avi Kivity717746e2011-04-20 13:37:53 +03004560 return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02004561}
4562
Avi Kivity4bff1e862011-04-20 13:37:53 +03004563static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004564{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004565 kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004566}
4567
Avi Kivity4bff1e862011-04-20 13:37:53 +03004568static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004569{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004570 kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004571}
4572
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03004573static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4574{
4575 kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt);
4576}
4577
4578static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
4579{
4580 kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt);
4581}
4582
Avi Kivity4bff1e862011-04-20 13:37:53 +03004583static unsigned long emulator_get_cached_segment_base(
4584 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03004585{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004586 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03004587}
4588
Avi Kivity1aa36612011-04-27 13:20:30 +03004589static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
4590 struct desc_struct *desc, u32 *base3,
4591 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004592{
4593 struct kvm_segment var;
4594
Avi Kivity4bff1e862011-04-20 13:37:53 +03004595 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03004596 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004597
4598 if (var.unusable)
4599 return false;
4600
4601 if (var.g)
4602 var.limit >>= 12;
4603 set_desc_limit(desc, var.limit);
4604 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02004605#ifdef CONFIG_X86_64
4606 if (base3)
4607 *base3 = var.base >> 32;
4608#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004609 desc->type = var.type;
4610 desc->s = var.s;
4611 desc->dpl = var.dpl;
4612 desc->p = var.present;
4613 desc->avl = var.avl;
4614 desc->l = var.l;
4615 desc->d = var.db;
4616 desc->g = var.g;
4617
4618 return true;
4619}
4620
Avi Kivity1aa36612011-04-27 13:20:30 +03004621static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
4622 struct desc_struct *desc, u32 base3,
4623 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004624{
Avi Kivity4bff1e862011-04-20 13:37:53 +03004625 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004626 struct kvm_segment var;
4627
Avi Kivity1aa36612011-04-27 13:20:30 +03004628 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004629 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02004630#ifdef CONFIG_X86_64
4631 var.base |= ((u64)base3) << 32;
4632#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004633 var.limit = get_desc_limit(desc);
4634 if (desc->g)
4635 var.limit = (var.limit << 12) | 0xfff;
4636 var.type = desc->type;
4637 var.present = desc->p;
4638 var.dpl = desc->dpl;
4639 var.db = desc->d;
4640 var.s = desc->s;
4641 var.l = desc->l;
4642 var.g = desc->g;
4643 var.avl = desc->avl;
4644 var.present = desc->p;
4645 var.unusable = !var.present;
4646 var.padding = 0;
4647
4648 kvm_set_segment(vcpu, &var, seg);
4649 return;
4650}
4651
Avi Kivity717746e2011-04-20 13:37:53 +03004652static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
4653 u32 msr_index, u64 *pdata)
4654{
4655 return kvm_get_msr(emul_to_vcpu(ctxt), msr_index, pdata);
4656}
4657
4658static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
4659 u32 msr_index, u64 data)
4660{
4661 return kvm_set_msr(emul_to_vcpu(ctxt), msr_index, data);
4662}
4663
Avi Kivity6c3287f2011-04-20 15:43:05 +03004664static void emulator_halt(struct x86_emulate_ctxt *ctxt)
4665{
4666 emul_to_vcpu(ctxt)->arch.halt_request = 1;
4667}
4668
Avi Kivity5037f6f2011-03-28 16:53:59 +02004669static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt)
4670{
4671 preempt_disable();
Avi Kivity5197b802011-04-20 15:55:40 +03004672 kvm_load_guest_fpu(emul_to_vcpu(ctxt));
Avi Kivity5037f6f2011-03-28 16:53:59 +02004673 /*
4674 * CR0.TS may reference the host fpu state, not the guest fpu state,
4675 * so it may be clear at this point.
4676 */
4677 clts();
4678}
4679
4680static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt)
4681{
4682 preempt_enable();
4683}
4684
Avi Kivity29535382011-04-20 13:37:53 +03004685static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02004686 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02004687 enum x86_intercept_stage stage)
4688{
Avi Kivity29535382011-04-20 13:37:53 +03004689 return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage);
Avi Kivityc4f035c2011-04-04 12:39:22 +02004690}
4691
Harvey Harrison14af3f32008-02-19 10:25:50 -08004692static struct x86_emulate_ops emulate_ops = {
Gleb Natapov1871c602010-02-10 14:21:32 +02004693 .read_std = kvm_read_guest_virt_system,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004694 .write_std = kvm_write_guest_virt_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02004695 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004696 .read_emulated = emulator_read_emulated,
4697 .write_emulated = emulator_write_emulated,
4698 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03004699 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004700 .pio_in_emulated = emulator_pio_in_emulated,
4701 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03004702 .get_segment = emulator_get_segment,
4703 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03004704 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02004705 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03004706 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03004707 .set_gdt = emulator_set_gdt,
4708 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02004709 .get_cr = emulator_get_cr,
4710 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02004711 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03004712 .get_dr = emulator_get_dr,
4713 .set_dr = emulator_set_dr,
Avi Kivity717746e2011-04-20 13:37:53 +03004714 .set_msr = emulator_set_msr,
4715 .get_msr = emulator_get_msr,
Avi Kivity6c3287f2011-04-20 15:43:05 +03004716 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03004717 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03004718 .fix_hypercall = emulator_fix_hypercall,
Avi Kivity5037f6f2011-03-28 16:53:59 +02004719 .get_fpu = emulator_get_fpu,
4720 .put_fpu = emulator_put_fpu,
Avi Kivityc4f035c2011-04-04 12:39:22 +02004721 .intercept = emulator_intercept,
Carsten Ottebbd9b642007-10-30 18:44:21 +01004722};
4723
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004724static void cache_all_regs(struct kvm_vcpu *vcpu)
4725{
4726 kvm_register_read(vcpu, VCPU_REGS_RAX);
4727 kvm_register_read(vcpu, VCPU_REGS_RSP);
4728 kvm_register_read(vcpu, VCPU_REGS_RIP);
4729 vcpu->arch.regs_dirty = ~0;
4730}
4731
Gleb Natapov95cb2292010-04-28 19:15:43 +03004732static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
4733{
4734 u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu, mask);
4735 /*
4736 * an sti; sti; sequence only disable interrupts for the first
4737 * instruction. So, if the last instruction, be it emulated or
4738 * not, left the system with the INT_STI flag enabled, it
4739 * means that the last instruction is an sti. We should not
4740 * leave the flag on in this case. The same goes for mov ss
4741 */
4742 if (!(int_shadow & mask))
4743 kvm_x86_ops->set_interrupt_shadow(vcpu, mask);
4744}
4745
Gleb Natapov54b84862010-04-28 19:15:44 +03004746static void inject_emulated_exception(struct kvm_vcpu *vcpu)
4747{
4748 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02004749 if (ctxt->exception.vector == PF_VECTOR)
Avi Kivity6389ee92010-11-29 16:12:30 +02004750 kvm_propagate_fault(vcpu, &ctxt->exception);
Avi Kivityda9cb572010-11-22 17:53:21 +02004751 else if (ctxt->exception.error_code_valid)
4752 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
4753 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03004754 else
Avi Kivityda9cb572010-11-22 17:53:21 +02004755 kvm_queue_exception(vcpu, ctxt->exception.vector);
Gleb Natapov54b84862010-04-28 19:15:44 +03004756}
4757
Avi Kivity9dac77f2011-06-01 15:34:25 +03004758static void init_decode_cache(struct x86_emulate_ctxt *ctxt,
Takuya Yoshikawab5c9ff72011-05-25 11:09:38 +09004759 const unsigned long *regs)
4760{
Avi Kivity9dac77f2011-06-01 15:34:25 +03004761 memset(&ctxt->twobyte, 0,
4762 (void *)&ctxt->regs - (void *)&ctxt->twobyte);
4763 memcpy(ctxt->regs, regs, sizeof(ctxt->regs));
Takuya Yoshikawab5c9ff72011-05-25 11:09:38 +09004764
Avi Kivity9dac77f2011-06-01 15:34:25 +03004765 ctxt->fetch.start = 0;
4766 ctxt->fetch.end = 0;
4767 ctxt->io_read.pos = 0;
4768 ctxt->io_read.end = 0;
4769 ctxt->mem_read.pos = 0;
4770 ctxt->mem_read.end = 0;
Takuya Yoshikawab5c9ff72011-05-25 11:09:38 +09004771}
4772
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004773static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
4774{
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09004775 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004776 int cs_db, cs_l;
4777
Gleb Natapov2aab2c52011-04-12 12:36:25 +03004778 /*
4779 * TODO: fix emulate.c to use guest_read/write_register
4780 * instead of direct ->regs accesses, can save hundred cycles
4781 * on Intel for instructions that don't read/change RSP, for
4782 * for example.
4783 */
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004784 cache_all_regs(vcpu);
4785
4786 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
4787
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09004788 ctxt->eflags = kvm_get_rflags(vcpu);
4789 ctxt->eip = kvm_rip_read(vcpu);
4790 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
4791 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
4792 cs_l ? X86EMUL_MODE_PROT64 :
4793 cs_db ? X86EMUL_MODE_PROT32 :
4794 X86EMUL_MODE_PROT16;
4795 ctxt->guest_mode = is_guest_mode(vcpu);
4796
Avi Kivity9dac77f2011-06-01 15:34:25 +03004797 init_decode_cache(ctxt, vcpu->arch.regs);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004798 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004799}
4800
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004801int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02004802{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004803 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02004804 int ret;
4805
4806 init_emulate_ctxt(vcpu);
4807
Avi Kivity9dac77f2011-06-01 15:34:25 +03004808 ctxt->op_bytes = 2;
4809 ctxt->ad_bytes = 2;
4810 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004811 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02004812
4813 if (ret != X86EMUL_CONTINUE)
4814 return EMULATE_FAIL;
4815
Avi Kivity9dac77f2011-06-01 15:34:25 +03004816 ctxt->eip = ctxt->_eip;
4817 memcpy(vcpu->arch.regs, ctxt->regs, sizeof ctxt->regs);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004818 kvm_rip_write(vcpu, ctxt->eip);
4819 kvm_set_rflags(vcpu, ctxt->eflags);
Mohammed Gamal63995652010-09-19 14:34:06 +02004820
4821 if (irq == NMI_VECTOR)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004822 vcpu->arch.nmi_pending = 0;
Mohammed Gamal63995652010-09-19 14:34:06 +02004823 else
4824 vcpu->arch.interrupt.pending = false;
4825
4826 return EMULATE_DONE;
4827}
4828EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
4829
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004830static int handle_emulation_failure(struct kvm_vcpu *vcpu)
4831{
Joerg Roedelfc3a9152010-11-29 17:51:49 +01004832 int r = EMULATE_DONE;
4833
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004834 ++vcpu->stat.insn_emulation_fail;
4835 trace_kvm_emulate_insn_failed(vcpu);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01004836 if (!is_guest_mode(vcpu)) {
4837 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4838 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
4839 vcpu->run->internal.ndata = 0;
4840 r = EMULATE_FAIL;
4841 }
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004842 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedelfc3a9152010-11-29 17:51:49 +01004843
4844 return r;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004845}
4846
Gleb Natapova6f177e2010-07-08 12:41:12 +03004847static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t gva)
4848{
4849 gpa_t gpa;
4850
Gleb Natapov68be0802010-07-14 19:05:45 +03004851 if (tdp_enabled)
4852 return false;
4853
Gleb Natapova6f177e2010-07-08 12:41:12 +03004854 /*
4855 * if emulation was due to access to shadowed page table
4856 * and it failed try to unshadow page and re-entetr the
4857 * guest to let CPU execute the instruction.
4858 */
4859 if (kvm_mmu_unprotect_page_virt(vcpu, gva))
4860 return true;
4861
4862 gpa = kvm_mmu_gva_to_gpa_system(vcpu, gva, NULL);
4863
4864 if (gpa == UNMAPPED_GVA)
4865 return true; /* let cpu generate fault */
4866
4867 if (!kvm_is_error_hva(gfn_to_hva(vcpu->kvm, gpa >> PAGE_SHIFT)))
4868 return true;
4869
4870 return false;
4871}
4872
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004873static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
4874 unsigned long cr2, int emulation_type)
4875{
4876 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
4877 unsigned long last_retry_eip, last_retry_addr, gpa = cr2;
4878
4879 last_retry_eip = vcpu->arch.last_retry_eip;
4880 last_retry_addr = vcpu->arch.last_retry_addr;
4881
4882 /*
4883 * If the emulation is caused by #PF and it is non-page_table
4884 * writing instruction, it means the VM-EXIT is caused by shadow
4885 * page protected, we can zap the shadow page and retry this
4886 * instruction directly.
4887 *
4888 * Note: if the guest uses a non-page-table modifying instruction
4889 * on the PDE that points to the instruction, then we will unmap
4890 * the instruction and go to an infinite loop. So, we cache the
4891 * last retried eip and the last fault address, if we meet the eip
4892 * and the address again, we can break out of the potential infinite
4893 * loop.
4894 */
4895 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
4896
4897 if (!(emulation_type & EMULTYPE_RETRY))
4898 return false;
4899
4900 if (x86_page_table_writing_insn(ctxt))
4901 return false;
4902
4903 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2)
4904 return false;
4905
4906 vcpu->arch.last_retry_eip = ctxt->eip;
4907 vcpu->arch.last_retry_addr = cr2;
4908
4909 if (!vcpu->arch.mmu.direct_map)
4910 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL);
4911
4912 kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
4913
4914 return true;
4915}
4916
Andre Przywara51d8b662010-12-21 11:12:02 +01004917int x86_emulate_instruction(struct kvm_vcpu *vcpu,
4918 unsigned long cr2,
Andre Przywaradc25e892010-12-21 11:12:07 +01004919 int emulation_type,
4920 void *insn,
4921 int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01004922{
Gleb Natapov95cb2292010-04-28 19:15:43 +03004923 int r;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004924 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004925 bool writeback = true;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004926
Avi Kivity26eef702008-07-03 14:59:22 +03004927 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03004928
Sheng Yang571008d2008-01-02 14:49:22 +08004929 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03004930 init_emulate_ctxt(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004931 ctxt->interruptibility = 0;
4932 ctxt->have_exception = false;
4933 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01004934
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004935 ctxt->only_vendor_specific_insn
Avi Kivity40059962011-02-01 16:32:04 +02004936 = emulation_type & EMULTYPE_TRAP_UD;
4937
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004938 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02004939
Avi Kivitye46479f2010-04-11 13:05:16 +03004940 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02004941 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09004942 if (r != EMULATION_OK) {
Avi Kivity40059962011-02-01 16:32:04 +02004943 if (emulation_type & EMULTYPE_TRAP_UD)
4944 return EMULATE_FAIL;
Gleb Natapova6f177e2010-07-08 12:41:12 +03004945 if (reexecute_instruction(vcpu, cr2))
Carsten Ottebbd9b642007-10-30 18:44:21 +01004946 return EMULATE_DONE;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004947 if (emulation_type & EMULTYPE_SKIP)
4948 return EMULATE_FAIL;
4949 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004950 }
4951 }
4952
Gleb Natapovba8afb62009-04-12 13:36:57 +03004953 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03004954 kvm_rip_write(vcpu, ctxt->_eip);
Gleb Natapovba8afb62009-04-12 13:36:57 +03004955 return EMULATE_DONE;
4956 }
4957
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004958 if (retry_instruction(ctxt, cr2, emulation_type))
4959 return EMULATE_DONE;
4960
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004961 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03004962 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004963 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
4964 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivity9dac77f2011-06-01 15:34:25 +03004965 memcpy(ctxt->regs, vcpu->arch.regs, sizeof ctxt->regs);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004966 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03004967
Gleb Natapov5cd21912010-03-18 15:20:26 +02004968restart:
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004969 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004970
Joerg Roedel775fde82011-04-04 12:39:24 +02004971 if (r == EMULATION_INTERCEPTED)
4972 return EMULATE_DONE;
4973
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03004974 if (r == EMULATION_FAILED) {
Gleb Natapova6f177e2010-07-08 12:41:12 +03004975 if (reexecute_instruction(vcpu, cr2))
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03004976 return EMULATE_DONE;
4977
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004978 return handle_emulation_failure(vcpu);
Carsten Ottebbd9b642007-10-30 18:44:21 +01004979 }
4980
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09004981 if (ctxt->have_exception) {
Gleb Natapove85d28f2010-07-29 15:11:52 +03004982 inject_emulated_exception(vcpu);
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03004983 r = EMULATE_DONE;
4984 } else if (vcpu->arch.pio.count) {
Gleb Natapove85d28f2010-07-29 15:11:52 +03004985 if (!vcpu->arch.pio.in)
4986 vcpu->arch.pio.count = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004987 else
4988 writeback = false;
Gleb Natapove85d28f2010-07-29 15:11:52 +03004989 r = EMULATE_DO_MMIO;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004990 } else if (vcpu->mmio_needed) {
4991 if (!vcpu->mmio_is_write)
4992 writeback = false;
Gleb Natapove85d28f2010-07-29 15:11:52 +03004993 r = EMULATE_DO_MMIO;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004994 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03004995 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03004996 else
4997 r = EMULATE_DONE;
Gleb Natapove85d28f2010-07-29 15:11:52 +03004998
Gleb Natapov7ae441e2011-03-31 12:06:41 +02004999 if (writeback) {
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005000 toggle_interruptibility(vcpu, ctxt->interruptibility);
5001 kvm_set_rflags(vcpu, ctxt->eflags);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005002 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity9dac77f2011-06-01 15:34:25 +03005003 memcpy(vcpu->arch.regs, ctxt->regs, sizeof ctxt->regs);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005004 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005005 kvm_rip_write(vcpu, ctxt->eip);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02005006 } else
5007 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03005008
Gleb Natapove85d28f2010-07-29 15:11:52 +03005009 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005010}
Andre Przywara51d8b662010-12-21 11:12:02 +01005011EXPORT_SYMBOL_GPL(x86_emulate_instruction);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005012
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005013int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01005014{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005015 unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX);
Avi Kivityca1d4a92011-04-20 13:37:53 +03005016 int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt,
5017 size, port, &val, 1);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005018 /* do not return to emulator after return from userspace */
Gleb Natapov79729952010-03-18 15:20:24 +02005019 vcpu->arch.pio.count = 0;
Izik Eidus0f346072008-12-29 01:42:20 +02005020 return ret;
Carsten Ottede7d7892007-10-30 18:44:25 +01005021}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005022EXPORT_SYMBOL_GPL(kvm_fast_pio_out);
Carsten Ottede7d7892007-10-30 18:44:25 +01005023
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005024static void tsc_bad(void *info)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005025{
Tejun Heo0a3aee02010-12-18 16:28:55 +01005026 __this_cpu_write(cpu_tsc_khz, 0);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005027}
5028
5029static void tsc_khz_changed(void *data)
5030{
5031 struct cpufreq_freqs *freq = data;
5032 unsigned long khz = 0;
5033
5034 if (data)
5035 khz = freq->new;
5036 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5037 khz = cpufreq_quick_get(raw_smp_processor_id());
5038 if (!khz)
5039 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01005040 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005041}
5042
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005043static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
5044 void *data)
5045{
5046 struct cpufreq_freqs *freq = data;
5047 struct kvm *kvm;
5048 struct kvm_vcpu *vcpu;
5049 int i, send_ipi = 0;
5050
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005051 /*
5052 * We allow guests to temporarily run on slowing clocks,
5053 * provided we notify them after, or to run on accelerating
5054 * clocks, provided we notify them before. Thus time never
5055 * goes backwards.
5056 *
5057 * However, we have a problem. We can't atomically update
5058 * the frequency of a given CPU from this function; it is
5059 * merely a notifier, which can be called from any CPU.
5060 * Changing the TSC frequency at arbitrary points in time
5061 * requires a recomputation of local variables related to
5062 * the TSC for each VCPU. We must flag these local variables
5063 * to be updated and be sure the update takes place with the
5064 * new frequency before any guests proceed.
5065 *
5066 * Unfortunately, the combination of hotplug CPU and frequency
5067 * change creates an intractable locking scenario; the order
5068 * of when these callouts happen is undefined with respect to
5069 * CPU hotplug, and they can race with each other. As such,
5070 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
5071 * undefined; you can actually have a CPU frequency change take
5072 * place in between the computation of X and the setting of the
5073 * variable. To protect against this problem, all updates of
5074 * the per_cpu tsc_khz variable are done in an interrupt
5075 * protected IPI, and all callers wishing to update the value
5076 * must wait for a synchronous IPI to complete (which is trivial
5077 * if the caller is on the CPU already). This establishes the
5078 * necessary total order on variable updates.
5079 *
5080 * Note that because a guest time update may take place
5081 * anytime after the setting of the VCPU's request bit, the
5082 * correct TSC value must be set before the request. However,
5083 * to ensure the update actually makes it to any guest which
5084 * starts running in hardware virtualization between the set
5085 * and the acquisition of the spinlock, we must also ping the
5086 * CPU after setting the request bit.
5087 *
5088 */
5089
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005090 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
5091 return 0;
5092 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
5093 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005094
5095 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005096
Jan Kiszkae935b832011-02-08 12:55:33 +01005097 raw_spin_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005098 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03005099 kvm_for_each_vcpu(i, vcpu, kvm) {
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005100 if (vcpu->cpu != freq->cpu)
5101 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10005102 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005103 if (vcpu->cpu != smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005104 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005105 }
5106 }
Jan Kiszkae935b832011-02-08 12:55:33 +01005107 raw_spin_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005108
5109 if (freq->old < freq->new && send_ipi) {
5110 /*
5111 * We upscale the frequency. Must make the guest
5112 * doesn't see old kvmclock values while running with
5113 * the new frequency, otherwise we risk the guest sees
5114 * time go backwards.
5115 *
5116 * In case we update the frequency for another cpu
5117 * (which might be in guest context) send an interrupt
5118 * to kick the cpu out of guest context. Next time
5119 * guest context is entered kvmclock will be updated,
5120 * so the guest will not see stale values.
5121 */
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005122 smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005123 }
5124 return 0;
5125}
5126
5127static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005128 .notifier_call = kvmclock_cpufreq_notifier
5129};
5130
5131static int kvmclock_cpu_notifier(struct notifier_block *nfb,
5132 unsigned long action, void *hcpu)
5133{
5134 unsigned int cpu = (unsigned long)hcpu;
5135
5136 switch (action) {
5137 case CPU_ONLINE:
5138 case CPU_DOWN_FAILED:
5139 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
5140 break;
5141 case CPU_DOWN_PREPARE:
5142 smp_call_function_single(cpu, tsc_bad, NULL, 1);
5143 break;
5144 }
5145 return NOTIFY_OK;
5146}
5147
5148static struct notifier_block kvmclock_cpu_notifier_block = {
5149 .notifier_call = kvmclock_cpu_notifier,
5150 .priority = -INT_MAX
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005151};
5152
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005153static void kvm_timer_init(void)
5154{
5155 int cpu;
5156
Zachary Amsdenc2855452010-09-18 14:38:15 -10005157 max_tsc_khz = tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005158 register_hotcpu_notifier(&kvmclock_cpu_notifier_block);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005159 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10005160#ifdef CONFIG_CPU_FREQ
5161 struct cpufreq_policy policy;
5162 memset(&policy, 0, sizeof(policy));
Avi Kivity3e26f232010-12-16 12:16:34 +02005163 cpu = get_cpu();
5164 cpufreq_get_policy(&policy, cpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10005165 if (policy.cpuinfo.max_freq)
5166 max_tsc_khz = policy.cpuinfo.max_freq;
Avi Kivity3e26f232010-12-16 12:16:34 +02005167 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10005168#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005169 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
5170 CPUFREQ_TRANSITION_NOTIFIER);
5171 }
Zachary Amsdenc2855452010-09-18 14:38:15 -10005172 pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005173 for_each_online_cpu(cpu)
5174 smp_call_function_single(cpu, tsc_khz_changed, NULL, 1);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005175}
5176
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005177static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
5178
5179static int kvm_is_in_guest(void)
5180{
5181 return percpu_read(current_vcpu) != NULL;
5182}
5183
5184static int kvm_is_user_mode(void)
5185{
5186 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005187
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005188 if (percpu_read(current_vcpu))
5189 user_mode = kvm_x86_ops->get_cpl(percpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005190
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005191 return user_mode != 0;
5192}
5193
5194static unsigned long kvm_get_guest_ip(void)
5195{
5196 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005197
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005198 if (percpu_read(current_vcpu))
5199 ip = kvm_rip_read(percpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08005200
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005201 return ip;
5202}
5203
5204static struct perf_guest_info_callbacks kvm_guest_cbs = {
5205 .is_in_guest = kvm_is_in_guest,
5206 .is_user_mode = kvm_is_user_mode,
5207 .get_guest_ip = kvm_get_guest_ip,
5208};
5209
5210void kvm_before_handle_nmi(struct kvm_vcpu *vcpu)
5211{
5212 percpu_write(current_vcpu, vcpu);
5213}
5214EXPORT_SYMBOL_GPL(kvm_before_handle_nmi);
5215
5216void kvm_after_handle_nmi(struct kvm_vcpu *vcpu)
5217{
5218 percpu_write(current_vcpu, NULL);
5219}
5220EXPORT_SYMBOL_GPL(kvm_after_handle_nmi);
5221
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005222static void kvm_set_mmio_spte_mask(void)
5223{
5224 u64 mask;
5225 int maxphyaddr = boot_cpu_data.x86_phys_bits;
5226
5227 /*
5228 * Set the reserved bits and the present bit of an paging-structure
5229 * entry to generate page fault with PFER.RSV = 1.
5230 */
5231 mask = ((1ull << (62 - maxphyaddr + 1)) - 1) << maxphyaddr;
5232 mask |= 1ull;
5233
5234#ifdef CONFIG_X86_64
5235 /*
5236 * If reserved bit is not supported, clear the present bit to disable
5237 * mmio page fault.
5238 */
5239 if (maxphyaddr == 52)
5240 mask &= ~1ull;
5241#endif
5242
5243 kvm_mmu_set_mmio_spte_mask(mask);
5244}
5245
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005246int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02005247{
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005248 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005249 struct kvm_x86_ops *ops = (struct kvm_x86_ops *)opaque;
5250
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005251 if (kvm_x86_ops) {
5252 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005253 r = -EEXIST;
5254 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005255 }
5256
5257 if (!ops->cpu_has_kvm_support()) {
5258 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005259 r = -EOPNOTSUPP;
5260 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005261 }
5262 if (ops->disabled_by_bios()) {
5263 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005264 r = -EOPNOTSUPP;
5265 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005266 }
5267
Avi Kivity97db56c2008-01-13 13:23:56 +02005268 r = kvm_mmu_module_init();
5269 if (r)
5270 goto out;
5271
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005272 kvm_set_mmio_spte_mask();
Avi Kivity97db56c2008-01-13 13:23:56 +02005273 kvm_init_msr_list();
5274
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005275 kvm_x86_ops = ops;
Sheng Yang7b523452008-04-25 21:13:50 +08005276 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005277 PT_DIRTY_MASK, PT64_NX_MASK, 0);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005278
Zachary Amsdenb820cc02009-09-29 11:38:34 -10005279 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01005280
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005281 perf_register_guest_info_callbacks(&kvm_guest_cbs);
5282
Dexuan Cui2acf9232010-06-10 11:27:12 +08005283 if (cpu_has_xsave)
5284 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
5285
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005286 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005287
5288out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005289 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02005290}
Hollis Blanchard8776e512007-10-31 17:24:24 -05005291
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005292void kvm_arch_exit(void)
5293{
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005294 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
5295
Jan Kiszka888d2562009-04-17 19:24:58 +02005296 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
5297 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
5298 CPUFREQ_TRANSITION_NOTIFIER);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005299 unregister_hotcpu_notifier(&kvmclock_cpu_notifier_block);
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005300 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08005301 kvm_mmu_module_exit();
5302}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08005303
Hollis Blanchard8776e512007-10-31 17:24:24 -05005304int kvm_emulate_halt(struct kvm_vcpu *vcpu)
5305{
5306 ++vcpu->stat.halt_exits;
5307 if (irqchip_in_kernel(vcpu->kvm)) {
Avi Kivitya4535292008-04-13 17:54:35 +03005308 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005309 return 1;
5310 } else {
5311 vcpu->run->exit_reason = KVM_EXIT_HLT;
5312 return 0;
5313 }
5314}
5315EXPORT_SYMBOL_GPL(kvm_emulate_halt);
5316
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005317int kvm_hv_hypercall(struct kvm_vcpu *vcpu)
5318{
5319 u64 param, ingpa, outgpa, ret;
5320 uint16_t code, rep_idx, rep_cnt, res = HV_STATUS_SUCCESS, rep_done = 0;
5321 bool fast, longmode;
5322 int cs_db, cs_l;
5323
5324 /*
5325 * hypercall generates UD from non zero cpl and real mode
5326 * per HYPER-V spec
5327 */
Avi Kivity3eeb3282010-01-21 15:31:48 +02005328 if (kvm_x86_ops->get_cpl(vcpu) != 0 || !is_protmode(vcpu)) {
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005329 kvm_queue_exception(vcpu, UD_VECTOR);
5330 return 0;
5331 }
5332
5333 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
5334 longmode = is_long_mode(vcpu) && cs_l == 1;
5335
5336 if (!longmode) {
Gleb Natapovccd46932010-01-19 15:06:38 +02005337 param = ((u64)kvm_register_read(vcpu, VCPU_REGS_RDX) << 32) |
5338 (kvm_register_read(vcpu, VCPU_REGS_RAX) & 0xffffffff);
5339 ingpa = ((u64)kvm_register_read(vcpu, VCPU_REGS_RBX) << 32) |
5340 (kvm_register_read(vcpu, VCPU_REGS_RCX) & 0xffffffff);
5341 outgpa = ((u64)kvm_register_read(vcpu, VCPU_REGS_RDI) << 32) |
5342 (kvm_register_read(vcpu, VCPU_REGS_RSI) & 0xffffffff);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005343 }
5344#ifdef CONFIG_X86_64
5345 else {
5346 param = kvm_register_read(vcpu, VCPU_REGS_RCX);
5347 ingpa = kvm_register_read(vcpu, VCPU_REGS_RDX);
5348 outgpa = kvm_register_read(vcpu, VCPU_REGS_R8);
5349 }
5350#endif
5351
5352 code = param & 0xffff;
5353 fast = (param >> 16) & 0x1;
5354 rep_cnt = (param >> 32) & 0xfff;
5355 rep_idx = (param >> 48) & 0xfff;
5356
5357 trace_kvm_hv_hypercall(code, fast, rep_cnt, rep_idx, ingpa, outgpa);
5358
Gleb Natapovc25bc162010-01-17 15:51:24 +02005359 switch (code) {
5360 case HV_X64_HV_NOTIFY_LONG_SPIN_WAIT:
5361 kvm_vcpu_on_spin(vcpu);
5362 break;
5363 default:
5364 res = HV_STATUS_INVALID_HYPERCALL_CODE;
5365 break;
5366 }
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005367
5368 ret = res | (((u64)rep_done & 0xfff) << 32);
5369 if (longmode) {
5370 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
5371 } else {
5372 kvm_register_write(vcpu, VCPU_REGS_RDX, ret >> 32);
5373 kvm_register_write(vcpu, VCPU_REGS_RAX, ret & 0xffffffff);
5374 }
5375
5376 return 1;
5377}
5378
Hollis Blanchard8776e512007-10-31 17:24:24 -05005379int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
5380{
5381 unsigned long nr, a0, a1, a2, a3, ret;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05005382 int r = 1;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005383
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005384 if (kvm_hv_hypercall_enabled(vcpu->kvm))
5385 return kvm_hv_hypercall(vcpu);
5386
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005387 nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
5388 a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
5389 a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
5390 a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
5391 a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005392
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005393 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005394
Hollis Blanchard8776e512007-10-31 17:24:24 -05005395 if (!is_long_mode(vcpu)) {
5396 nr &= 0xFFFFFFFF;
5397 a0 &= 0xFFFFFFFF;
5398 a1 &= 0xFFFFFFFF;
5399 a2 &= 0xFFFFFFFF;
5400 a3 &= 0xFFFFFFFF;
5401 }
5402
Jan Kiszka07708c42009-08-03 18:43:28 +02005403 if (kvm_x86_ops->get_cpl(vcpu) != 0) {
5404 ret = -KVM_EPERM;
5405 goto out;
5406 }
5407
Hollis Blanchard8776e512007-10-31 17:24:24 -05005408 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02005409 case KVM_HC_VAPIC_POLL_IRQ:
5410 ret = 0;
5411 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005412 default:
5413 ret = -KVM_ENOSYS;
5414 break;
5415 }
Jan Kiszka07708c42009-08-03 18:43:28 +02005416out:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005417 kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
Amit Shahf11c3a82008-02-21 01:00:30 +05305418 ++vcpu->stat.hypercalls;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05005419 return r;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005420}
5421EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
5422
Avi Kivityd6aa1002011-04-20 15:47:13 +03005423int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05005424{
Avi Kivityd6aa1002011-04-20 15:47:13 +03005425 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005426 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005427 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005428
Hollis Blanchard8776e512007-10-31 17:24:24 -05005429 /*
5430 * Blow out the MMU to ensure that no other VCPU has an active mapping
5431 * to ensure that the updated hypercall appears atomically across all
5432 * VCPUs.
5433 */
5434 kvm_mmu_zap_all(vcpu->kvm);
5435
Hollis Blanchard8776e512007-10-31 17:24:24 -05005436 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005437
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09005438 return emulator_write_emulated(ctxt, rip, instruction, 3, NULL);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005439}
5440
Dan Kenigsberg07716712007-11-21 17:10:04 +02005441static int move_to_next_stateful_cpuid_entry(struct kvm_vcpu *vcpu, int i)
5442{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005443 struct kvm_cpuid_entry2 *e = &vcpu->arch.cpuid_entries[i];
5444 int j, nent = vcpu->arch.cpuid_nent;
Dan Kenigsberg07716712007-11-21 17:10:04 +02005445
5446 e->flags &= ~KVM_CPUID_FLAG_STATE_READ_NEXT;
5447 /* when no next entry is found, the current entry[i] is reselected */
Nitin A Kamble0fdf8e52008-11-05 15:56:21 -08005448 for (j = i + 1; ; j = (j + 1) % nent) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005449 struct kvm_cpuid_entry2 *ej = &vcpu->arch.cpuid_entries[j];
Dan Kenigsberg07716712007-11-21 17:10:04 +02005450 if (ej->function == e->function) {
5451 ej->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
5452 return j;
5453 }
5454 }
5455 return 0; /* silence gcc, even though control never reaches here */
5456}
5457
5458/* find an entry with matching function, matching index (if needed), and that
5459 * should be read next (if it's stateful) */
5460static int is_matching_cpuid_entry(struct kvm_cpuid_entry2 *e,
5461 u32 function, u32 index)
5462{
5463 if (e->function != function)
5464 return 0;
5465 if ((e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX) && e->index != index)
5466 return 0;
5467 if ((e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC) &&
Amit Shah19355472009-01-14 16:56:00 +00005468 !(e->flags & KVM_CPUID_FLAG_STATE_READ_NEXT))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005469 return 0;
5470 return 1;
5471}
5472
Alexander Grafd8017472008-11-25 20:17:11 +01005473struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
5474 u32 function, u32 index)
Hollis Blanchard8776e512007-10-31 17:24:24 -05005475{
5476 int i;
Alexander Grafd8017472008-11-25 20:17:11 +01005477 struct kvm_cpuid_entry2 *best = NULL;
Hollis Blanchard8776e512007-10-31 17:24:24 -05005478
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005479 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
Alexander Grafd8017472008-11-25 20:17:11 +01005480 struct kvm_cpuid_entry2 *e;
5481
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005482 e = &vcpu->arch.cpuid_entries[i];
Dan Kenigsberg07716712007-11-21 17:10:04 +02005483 if (is_matching_cpuid_entry(e, function, index)) {
5484 if (e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC)
5485 move_to_next_stateful_cpuid_entry(vcpu, i);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005486 best = e;
5487 break;
5488 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05005489 }
Alexander Grafd8017472008-11-25 20:17:11 +01005490 return best;
5491}
Sheng Yang0e851882009-12-18 16:48:46 +08005492EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry);
Alexander Grafd8017472008-11-25 20:17:11 +01005493
Dong, Eddie82725b22009-03-30 16:21:08 +08005494int cpuid_maxphyaddr(struct kvm_vcpu *vcpu)
5495{
5496 struct kvm_cpuid_entry2 *best;
5497
Avi Kivityf7a71192010-04-11 15:33:32 +03005498 best = kvm_find_cpuid_entry(vcpu, 0x80000000, 0);
5499 if (!best || best->eax < 0x80000008)
5500 goto not_found;
Dong, Eddie82725b22009-03-30 16:21:08 +08005501 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
5502 if (best)
5503 return best->eax & 0xff;
Avi Kivityf7a71192010-04-11 15:33:32 +03005504not_found:
Dong, Eddie82725b22009-03-30 16:21:08 +08005505 return 36;
5506}
5507
Andre Przywarabd22f5c2011-03-31 16:58:49 +02005508/*
5509 * If no match is found, check whether we exceed the vCPU's limit
5510 * and return the content of the highest valid _standard_ leaf instead.
5511 * This is to satisfy the CPUID specification.
5512 */
5513static struct kvm_cpuid_entry2* check_cpuid_limit(struct kvm_vcpu *vcpu,
5514 u32 function, u32 index)
5515{
5516 struct kvm_cpuid_entry2 *maxlevel;
5517
5518 maxlevel = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0);
5519 if (!maxlevel || maxlevel->eax >= function)
5520 return NULL;
5521 if (function & 0x80000000) {
5522 maxlevel = kvm_find_cpuid_entry(vcpu, 0, 0);
5523 if (!maxlevel)
5524 return NULL;
5525 }
5526 return kvm_find_cpuid_entry(vcpu, maxlevel->eax, index);
5527}
5528
Alexander Grafd8017472008-11-25 20:17:11 +01005529void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
5530{
5531 u32 function, index;
5532 struct kvm_cpuid_entry2 *best;
5533
5534 function = kvm_register_read(vcpu, VCPU_REGS_RAX);
5535 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
5536 kvm_register_write(vcpu, VCPU_REGS_RAX, 0);
5537 kvm_register_write(vcpu, VCPU_REGS_RBX, 0);
5538 kvm_register_write(vcpu, VCPU_REGS_RCX, 0);
5539 kvm_register_write(vcpu, VCPU_REGS_RDX, 0);
5540 best = kvm_find_cpuid_entry(vcpu, function, index);
Andre Przywarabd22f5c2011-03-31 16:58:49 +02005541
5542 if (!best)
5543 best = check_cpuid_limit(vcpu, function, index);
5544
Hollis Blanchard8776e512007-10-31 17:24:24 -05005545 if (best) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005546 kvm_register_write(vcpu, VCPU_REGS_RAX, best->eax);
5547 kvm_register_write(vcpu, VCPU_REGS_RBX, best->ebx);
5548 kvm_register_write(vcpu, VCPU_REGS_RCX, best->ecx);
5549 kvm_register_write(vcpu, VCPU_REGS_RDX, best->edx);
Hollis Blanchard8776e512007-10-31 17:24:24 -05005550 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05005551 kvm_x86_ops->skip_emulated_instruction(vcpu);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005552 trace_kvm_cpuid(function,
5553 kvm_register_read(vcpu, VCPU_REGS_RAX),
5554 kvm_register_read(vcpu, VCPU_REGS_RBX),
5555 kvm_register_read(vcpu, VCPU_REGS_RCX),
5556 kvm_register_read(vcpu, VCPU_REGS_RDX));
Hollis Blanchard8776e512007-10-31 17:24:24 -05005557}
5558EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);
Hollis Blanchardd0752062007-10-31 17:24:25 -05005559
5560/*
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005561 * Check if userspace requested an interrupt window, and that the
5562 * interrupt window is open.
5563 *
5564 * No need to exit to userspace if we already have an interrupt queued.
5565 */
Avi Kivity851ba692009-08-24 11:10:17 +03005566static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005567{
Gleb Natapov80618232009-04-21 17:44:56 +03005568 return (!irqchip_in_kernel(vcpu->kvm) && !kvm_cpu_has_interrupt(vcpu) &&
Avi Kivity851ba692009-08-24 11:10:17 +03005569 vcpu->run->request_interrupt_window &&
Gleb Natapov5df56642009-04-21 17:44:59 +03005570 kvm_arch_interrupt_allowed(vcpu));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005571}
5572
Avi Kivity851ba692009-08-24 11:10:17 +03005573static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005574{
Avi Kivity851ba692009-08-24 11:10:17 +03005575 struct kvm_run *kvm_run = vcpu->run;
5576
Jan Kiszka91586a32009-10-05 13:07:21 +02005577 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02005578 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005579 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Jan Kiszka45312202008-12-11 16:54:54 +01005580 if (irqchip_in_kernel(vcpu->kvm))
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005581 kvm_run->ready_for_interrupt_injection = 1;
Jan Kiszka45312202008-12-11 16:54:54 +01005582 else
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005583 kvm_run->ready_for_interrupt_injection =
Gleb Natapovfa9726b2009-05-11 13:35:47 +03005584 kvm_arch_interrupt_allowed(vcpu) &&
5585 !kvm_cpu_has_interrupt(vcpu) &&
5586 !kvm_event_needs_reinjection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005587}
5588
Avi Kivityb93463a2007-10-25 16:52:32 +02005589static void vapic_enter(struct kvm_vcpu *vcpu)
5590{
5591 struct kvm_lapic *apic = vcpu->arch.apic;
5592 struct page *page;
5593
5594 if (!apic || !apic->vapic_addr)
5595 return;
5596
5597 page = gfn_to_page(vcpu->kvm, apic->vapic_addr >> PAGE_SHIFT);
Izik Eidus72dc67a2008-02-10 18:04:15 +02005598
5599 vcpu->arch.apic->vapic_page = page;
Avi Kivityb93463a2007-10-25 16:52:32 +02005600}
5601
5602static void vapic_exit(struct kvm_vcpu *vcpu)
5603{
5604 struct kvm_lapic *apic = vcpu->arch.apic;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005605 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005606
5607 if (!apic || !apic->vapic_addr)
5608 return;
5609
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005610 idx = srcu_read_lock(&vcpu->kvm->srcu);
Avi Kivityb93463a2007-10-25 16:52:32 +02005611 kvm_release_page_dirty(apic->vapic_page);
5612 mark_page_dirty(vcpu->kvm, apic->vapic_addr >> PAGE_SHIFT);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005613 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005614}
5615
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005616static void update_cr8_intercept(struct kvm_vcpu *vcpu)
5617{
5618 int max_irr, tpr;
5619
5620 if (!kvm_x86_ops->update_cr8_intercept)
5621 return;
5622
Avi Kivity88c808f2009-08-17 22:49:40 +03005623 if (!vcpu->arch.apic)
5624 return;
5625
Gleb Natapov8db3baa2009-05-11 13:35:54 +03005626 if (!vcpu->arch.apic->vapic_addr)
5627 max_irr = kvm_lapic_find_highest_irr(vcpu);
5628 else
5629 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005630
5631 if (max_irr != -1)
5632 max_irr >>= 4;
5633
5634 tpr = kvm_lapic_get_cr8(vcpu);
5635
5636 kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr);
5637}
5638
Avi Kivity851ba692009-08-24 11:10:17 +03005639static void inject_pending_event(struct kvm_vcpu *vcpu)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005640{
5641 /* try to reinject previous events if any */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03005642 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d2010-03-11 13:01:59 +02005643 trace_kvm_inj_exception(vcpu->arch.exception.nr,
5644 vcpu->arch.exception.has_error_code,
5645 vcpu->arch.exception.error_code);
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03005646 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
5647 vcpu->arch.exception.has_error_code,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02005648 vcpu->arch.exception.error_code,
5649 vcpu->arch.exception.reinject);
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03005650 return;
5651 }
5652
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005653 if (vcpu->arch.nmi_injected) {
5654 kvm_x86_ops->set_nmi(vcpu);
5655 return;
5656 }
5657
5658 if (vcpu->arch.interrupt.pending) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005659 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005660 return;
5661 }
5662
5663 /* try to inject new event if pending */
5664 if (vcpu->arch.nmi_pending) {
5665 if (kvm_x86_ops->nmi_allowed(vcpu)) {
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005666 --vcpu->arch.nmi_pending;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005667 vcpu->arch.nmi_injected = true;
5668 kvm_x86_ops->set_nmi(vcpu);
5669 }
5670 } else if (kvm_cpu_has_interrupt(vcpu)) {
5671 if (kvm_x86_ops->interrupt_allowed(vcpu)) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005672 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu),
5673 false);
5674 kvm_x86_ops->set_irq(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005675 }
5676 }
5677}
5678
Dexuan Cui2acf9232010-06-10 11:27:12 +08005679static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu)
5680{
5681 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) &&
5682 !vcpu->guest_xcr0_loaded) {
5683 /* kvm_set_xcr() also depends on this */
5684 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
5685 vcpu->guest_xcr0_loaded = 1;
5686 }
5687}
5688
5689static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu)
5690{
5691 if (vcpu->guest_xcr0_loaded) {
5692 if (vcpu->arch.xcr0 != host_xcr0)
5693 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
5694 vcpu->guest_xcr0_loaded = 0;
5695 }
5696}
5697
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005698static void process_nmi(struct kvm_vcpu *vcpu)
5699{
5700 unsigned limit = 2;
5701
5702 /*
5703 * x86 is limited to one NMI running, and one NMI pending after it.
5704 * If an NMI is already in progress, limit further NMIs to just one.
5705 * Otherwise, allow two (and we'll inject the first one immediately).
5706 */
5707 if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
5708 limit = 1;
5709
5710 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
5711 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
5712 kvm_make_request(KVM_REQ_EVENT, vcpu);
5713}
5714
Avi Kivity851ba692009-08-24 11:10:17 +03005715static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005716{
5717 int r;
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03005718 bool req_int_win = !irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03005719 vcpu->run->request_interrupt_window;
Nadav Har'Eld6185f22011-09-22 13:52:56 +03005720 bool req_immediate_exit = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005721
Avi Kivity3e007502010-06-23 14:26:18 +03005722 if (vcpu->requests) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03005723 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05005724 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03005725 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03005726 __kvm_migrate_timers(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10005727 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
5728 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10005729 if (unlikely(r))
5730 goto out;
5731 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03005732 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03005733 kvm_mmu_sync_roots(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03005734 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
Marcelo Tosattid4acf7e2008-06-06 16:37:35 -03005735 kvm_x86_ops->tlb_flush(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03005736 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03005737 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02005738 r = 0;
5739 goto out;
5740 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03005741 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03005742 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01005743 r = 0;
5744 goto out;
5745 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03005746 if (kvm_check_request(KVM_REQ_DEACTIVATE_FPU, vcpu)) {
Avi Kivity02daab22009-12-30 12:40:26 +02005747 vcpu->fpu_active = 0;
5748 kvm_x86_ops->fpu_deactivate(vcpu);
5749 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02005750 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
5751 /* Page is swapped out. Do synthetic halt */
5752 vcpu->arch.apf.halted = true;
5753 r = 1;
5754 goto out;
5755 }
Glauber Costac9aaa892011-07-11 15:28:14 -04005756 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
5757 record_steal_time(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005758 if (kvm_check_request(KVM_REQ_NMI, vcpu))
5759 process_nmi(vcpu);
Nadav Har'Eld6185f22011-09-22 13:52:56 +03005760 req_immediate_exit =
5761 kvm_check_request(KVM_REQ_IMMEDIATE_EXIT, vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02005762 }
Avi Kivityb93463a2007-10-25 16:52:32 +02005763
Avi Kivity3e007502010-06-23 14:26:18 +03005764 r = kvm_mmu_reload(vcpu);
5765 if (unlikely(r))
5766 goto out;
5767
Avi Kivityb463a6f2010-07-20 15:06:17 +03005768 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Avi Kivity3842d132010-07-27 12:30:24 +03005769 inject_pending_event(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005770
Avi Kivity3842d132010-07-27 12:30:24 +03005771 /* enable NMI/IRQ window open exits if needed */
Avi Kivity7460fb4a2011-09-20 13:43:14 +03005772 if (vcpu->arch.nmi_pending)
Avi Kivity3842d132010-07-27 12:30:24 +03005773 kvm_x86_ops->enable_nmi_window(vcpu);
5774 else if (kvm_cpu_has_interrupt(vcpu) || req_int_win)
5775 kvm_x86_ops->enable_irq_window(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03005776
Avi Kivity3842d132010-07-27 12:30:24 +03005777 if (kvm_lapic_enabled(vcpu)) {
5778 update_cr8_intercept(vcpu);
5779 kvm_lapic_sync_to_vapic(vcpu);
5780 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005781 }
Avi Kivityb93463a2007-10-25 16:52:32 +02005782
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005783 preempt_disable();
5784
5785 kvm_x86_ops->prepare_guest_switch(vcpu);
5786 if (vcpu->fpu_active)
5787 kvm_load_guest_fpu(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005788 kvm_load_guest_xcr0(vcpu);
5789
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08005790 vcpu->mode = IN_GUEST_MODE;
5791
5792 /* We should set ->mode before check ->requests,
5793 * see the comment in make_all_cpus_request.
5794 */
5795 smp_mb();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005796
5797 local_irq_disable();
5798
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08005799 if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005800 || need_resched() || signal_pending(current)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08005801 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005802 smp_wmb();
5803 local_irq_enable();
5804 preempt_enable();
Avi Kivityb463a6f2010-07-20 15:06:17 +03005805 kvm_x86_ops->cancel_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005806 r = 1;
5807 goto out;
5808 }
5809
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005810 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005811
Nadav Har'Eld6185f22011-09-22 13:52:56 +03005812 if (req_immediate_exit)
5813 smp_send_reschedule(vcpu->cpu);
5814
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005815 kvm_guest_enter();
5816
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005817 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005818 set_debugreg(0, 7);
5819 set_debugreg(vcpu->arch.eff_db[0], 0);
5820 set_debugreg(vcpu->arch.eff_db[1], 1);
5821 set_debugreg(vcpu->arch.eff_db[2], 2);
5822 set_debugreg(vcpu->arch.eff_db[3], 3);
5823 }
5824
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005825 trace_kvm_entry(vcpu->vcpu_id);
Avi Kivity851ba692009-08-24 11:10:17 +03005826 kvm_x86_ops->run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005827
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005828 /*
5829 * If the guest has used debug registers, at least dr7
5830 * will be disabled while returning to the host.
5831 * If we don't have active breakpoints in the host, we don't
5832 * care about the messed up debug address registers. But if
5833 * we have some of them active, restore the old state.
5834 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01005835 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005836 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005837
Nadav Har'Eld5c17852011-08-02 15:54:20 +03005838 vcpu->arch.last_guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu);
Zachary Amsden1d5f0662010-08-19 22:07:30 -10005839
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08005840 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03005841 smp_wmb();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005842 local_irq_enable();
5843
5844 ++vcpu->stat.exits;
5845
5846 /*
5847 * We must have an instruction between local_irq_enable() and
5848 * kvm_guest_exit(), so the timer interrupt isn't delayed by
5849 * the interrupt shadow. The stat.exits increment will do nicely.
5850 * But we need to prevent reordering, hence this barrier():
5851 */
5852 barrier();
5853
5854 kvm_guest_exit();
5855
5856 preempt_enable();
5857
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005858 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03005859
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005860 /*
5861 * Profile KVM exit RIPs:
5862 */
5863 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005864 unsigned long rip = kvm_rip_read(vcpu);
5865 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005866 }
5867
Avi Kivity298101d2007-11-25 13:41:11 +02005868
Avi Kivityb93463a2007-10-25 16:52:32 +02005869 kvm_lapic_sync_from_vapic(vcpu);
5870
Avi Kivity851ba692009-08-24 11:10:17 +03005871 r = kvm_x86_ops->handle_exit(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005872out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03005873 return r;
5874}
5875
Gleb Natapov09cec752009-03-23 15:11:44 +02005876
Avi Kivity851ba692009-08-24 11:10:17 +03005877static int __vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03005878{
5879 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005880 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03005881
5882 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED)) {
Jan Kiszka1b10bf32008-09-30 10:41:06 +02005883 pr_debug("vcpu %d received sipi with vector # %x\n",
5884 vcpu->vcpu_id, vcpu->arch.sipi_vector);
Marcelo Tosattid7690172008-09-08 15:23:48 -03005885 kvm_lapic_reset(vcpu);
Gleb Natapov5f179282008-10-07 15:42:33 +02005886 r = kvm_arch_vcpu_reset(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03005887 if (r)
5888 return r;
5889 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005890 }
5891
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005892 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03005893 vapic_enter(vcpu);
5894
5895 r = 1;
5896 while (r > 0) {
Gleb Natapovaf585b92010-10-14 11:22:46 +02005897 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
5898 !vcpu->arch.apf.halted)
Avi Kivity851ba692009-08-24 11:10:17 +03005899 r = vcpu_enter_guest(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03005900 else {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005901 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Marcelo Tosattid7690172008-09-08 15:23:48 -03005902 kvm_vcpu_block(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005903 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03005904 if (kvm_check_request(KVM_REQ_UNHALT, vcpu))
Gleb Natapov09cec752009-03-23 15:11:44 +02005905 {
5906 switch(vcpu->arch.mp_state) {
5907 case KVM_MP_STATE_HALTED:
Marcelo Tosattid7690172008-09-08 15:23:48 -03005908 vcpu->arch.mp_state =
Gleb Natapov09cec752009-03-23 15:11:44 +02005909 KVM_MP_STATE_RUNNABLE;
5910 case KVM_MP_STATE_RUNNABLE:
Gleb Natapovaf585b92010-10-14 11:22:46 +02005911 vcpu->arch.apf.halted = false;
Gleb Natapov09cec752009-03-23 15:11:44 +02005912 break;
5913 case KVM_MP_STATE_SIPI_RECEIVED:
5914 default:
5915 r = -EINTR;
5916 break;
5917 }
5918 }
Marcelo Tosattid7690172008-09-08 15:23:48 -03005919 }
5920
Gleb Natapov09cec752009-03-23 15:11:44 +02005921 if (r <= 0)
5922 break;
5923
5924 clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
5925 if (kvm_cpu_has_pending_timer(vcpu))
5926 kvm_inject_pending_timer_irqs(vcpu);
5927
Avi Kivity851ba692009-08-24 11:10:17 +03005928 if (dm_request_for_irq_injection(vcpu)) {
Gleb Natapov09cec752009-03-23 15:11:44 +02005929 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03005930 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02005931 ++vcpu->stat.request_irq_exits;
5932 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02005933
5934 kvm_check_async_pf_completion(vcpu);
5935
Gleb Natapov09cec752009-03-23 15:11:44 +02005936 if (signal_pending(current)) {
5937 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03005938 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02005939 ++vcpu->stat.signal_exits;
5940 }
5941 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005942 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Gleb Natapov09cec752009-03-23 15:11:44 +02005943 kvm_resched(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005944 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03005945 }
5946 }
5947
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005948 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005949
Avi Kivityb93463a2007-10-25 16:52:32 +02005950 vapic_exit(vcpu);
5951
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005952 return r;
5953}
5954
Avi Kivity5287f192010-01-19 14:20:10 +02005955static int complete_mmio(struct kvm_vcpu *vcpu)
5956{
5957 struct kvm_run *run = vcpu->run;
5958 int r;
5959
5960 if (!(vcpu->arch.pio.count || vcpu->mmio_needed))
5961 return 1;
5962
5963 if (vcpu->mmio_needed) {
Avi Kivity5287f192010-01-19 14:20:10 +02005964 vcpu->mmio_needed = 0;
Avi Kivitycef4dea2010-01-20 12:01:20 +02005965 if (!vcpu->mmio_is_write)
Gleb Natapov0004c7c2011-04-12 12:36:24 +03005966 memcpy(vcpu->mmio_data + vcpu->mmio_index,
5967 run->mmio.data, 8);
Avi Kivitycef4dea2010-01-20 12:01:20 +02005968 vcpu->mmio_index += 8;
5969 if (vcpu->mmio_index < vcpu->mmio_size) {
5970 run->exit_reason = KVM_EXIT_MMIO;
5971 run->mmio.phys_addr = vcpu->mmio_phys_addr + vcpu->mmio_index;
5972 memcpy(run->mmio.data, vcpu->mmio_data + vcpu->mmio_index, 8);
5973 run->mmio.len = min(vcpu->mmio_size - vcpu->mmio_index, 8);
5974 run->mmio.is_write = vcpu->mmio_is_write;
5975 vcpu->mmio_needed = 1;
5976 return 0;
5977 }
5978 if (vcpu->mmio_is_write)
5979 return 1;
5980 vcpu->mmio_read_completed = 1;
Avi Kivity5287f192010-01-19 14:20:10 +02005981 }
5982 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
5983 r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
5984 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
5985 if (r != EMULATE_DONE)
5986 return 0;
5987 return 1;
5988}
5989
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005990int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
5991{
5992 int r;
5993 sigset_t sigsaved;
5994
Avi Kivitye5c30142011-01-11 12:15:54 +02005995 if (!tsk_used_math(current) && init_fpu(current))
5996 return -ENOMEM;
5997
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05005998 if (vcpu->sigset_active)
5999 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
6000
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006001 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
6002 kvm_vcpu_block(vcpu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03006003 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03006004 r = -EAGAIN;
6005 goto out;
6006 }
6007
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006008 /* re-sync apic's tpr */
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006009 if (!irqchip_in_kernel(vcpu->kvm)) {
6010 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
6011 r = -EINVAL;
6012 goto out;
6013 }
6014 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006015
Avi Kivity5287f192010-01-19 14:20:10 +02006016 r = complete_mmio(vcpu);
6017 if (r <= 0)
6018 goto out;
6019
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006020 if (kvm_run->exit_reason == KVM_EXIT_HYPERCALL)
6021 kvm_register_write(vcpu, VCPU_REGS_RAX,
6022 kvm_run->hypercall.ret);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006023
Avi Kivity851ba692009-08-24 11:10:17 +03006024 r = __vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006025
6026out:
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03006027 post_kvm_run_save(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006028 if (vcpu->sigset_active)
6029 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
6030
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006031 return r;
6032}
6033
6034int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6035{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006036 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
6037 /*
6038 * We are here if userspace calls get_regs() in the middle of
6039 * instruction emulation. Registers state needs to be copied
6040 * back from emulation context to vcpu. Usrapace shouldn't do
6041 * that usually, but some bad designed PV devices (vmware
6042 * backdoor interface) need this to work
6043 */
Avi Kivity9dac77f2011-06-01 15:34:25 +03006044 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
6045 memcpy(vcpu->arch.regs, ctxt->regs, sizeof ctxt->regs);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006046 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6047 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006048 regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
6049 regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
6050 regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
6051 regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
6052 regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
6053 regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
6054 regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
6055 regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006056#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006057 regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
6058 regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
6059 regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
6060 regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
6061 regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
6062 regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
6063 regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
6064 regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006065#endif
6066
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006067 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02006068 regs->rflags = kvm_get_rflags(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006069
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006070 return 0;
6071}
6072
6073int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
6074{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006075 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
6076 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
6077
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006078 kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
6079 kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
6080 kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
6081 kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
6082 kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
6083 kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
6084 kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
6085 kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006086#ifdef CONFIG_X86_64
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006087 kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
6088 kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
6089 kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
6090 kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
6091 kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
6092 kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
6093 kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
6094 kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006095#endif
6096
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006097 kvm_rip_write(vcpu, regs->rip);
Jan Kiszka91586a32009-10-05 13:07:21 +02006098 kvm_set_rflags(vcpu, regs->rflags);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006099
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02006100 vcpu->arch.exception.pending = false;
6101
Avi Kivity3842d132010-07-27 12:30:24 +03006102 kvm_make_request(KVM_REQ_EVENT, vcpu);
6103
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006104 return 0;
6105}
6106
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006107void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
6108{
6109 struct kvm_segment cs;
6110
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006111 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006112 *db = cs.db;
6113 *l = cs.l;
6114}
6115EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
6116
6117int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
6118 struct kvm_sregs *sregs)
6119{
Gleb Natapov89a27f42010-02-16 10:51:48 +02006120 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006121
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006122 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
6123 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
6124 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
6125 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
6126 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
6127 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006128
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006129 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
6130 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006131
6132 kvm_x86_ops->get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02006133 sregs->idt.limit = dt.size;
6134 sregs->idt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006135 kvm_x86_ops->get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02006136 sregs->gdt.limit = dt.size;
6137 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006138
Avi Kivity4d4ec082009-12-29 18:07:30 +02006139 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006140 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02006141 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02006142 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006143 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02006144 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006145 sregs->apic_base = kvm_get_apic_base(vcpu);
6146
Gleb Natapov923c61b2009-05-11 13:35:48 +03006147 memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006148
Gleb Natapov36752c92009-05-11 13:35:53 +03006149 if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03006150 set_bit(vcpu->arch.interrupt.nr,
6151 (unsigned long *)sregs->interrupt_bitmap);
Gleb Natapov16d7a192009-04-21 17:45:10 +03006152
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006153 return 0;
6154}
6155
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006156int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
6157 struct kvm_mp_state *mp_state)
6158{
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006159 mp_state->mp_state = vcpu->arch.mp_state;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006160 return 0;
6161}
6162
6163int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
6164 struct kvm_mp_state *mp_state)
6165{
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006166 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03006167 kvm_make_request(KVM_REQ_EVENT, vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03006168 return 0;
6169}
6170
Jan Kiszkae269fb22010-04-14 15:51:09 +02006171int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int reason,
6172 bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006173{
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006174 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006175 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006176
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006177 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006178
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006179 ret = emulator_task_switch(ctxt, tss_selector, reason,
6180 has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02006181
Gleb Natapovc6975182010-02-18 12:15:01 +02006182 if (ret)
Gleb Natapov19d04432010-04-15 12:29:50 +03006183 return EMULATE_FAIL;
Gleb Natapovc6975182010-02-18 12:15:01 +02006184
Avi Kivity9dac77f2011-06-01 15:34:25 +03006185 memcpy(vcpu->arch.regs, ctxt->regs, sizeof ctxt->regs);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006186 kvm_rip_write(vcpu, ctxt->eip);
6187 kvm_set_rflags(vcpu, ctxt->eflags);
Avi Kivity3842d132010-07-27 12:30:24 +03006188 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov19d04432010-04-15 12:29:50 +03006189 return EMULATE_DONE;
Izik Eidus37817f22008-03-24 23:14:53 +02006190}
6191EXPORT_SYMBOL_GPL(kvm_task_switch);
6192
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006193int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
6194 struct kvm_sregs *sregs)
6195{
6196 int mmu_reset_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08006197 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02006198 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006199
Gleb Natapov89a27f42010-02-16 10:51:48 +02006200 dt.size = sregs->idt.limit;
6201 dt.address = sregs->idt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006202 kvm_x86_ops->set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02006203 dt.size = sregs->gdt.limit;
6204 dt.address = sregs->gdt.base;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006205 kvm_x86_ops->set_gdt(vcpu, &dt);
6206
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006207 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02006208 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02006209 vcpu->arch.cr3 = sregs->cr3;
Avi Kivityaff48ba2010-12-05 18:56:11 +02006210 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006211
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02006212 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006213
Avi Kivityf6801df2010-01-21 15:31:50 +02006214 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006215 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006216 kvm_set_apic_base(vcpu, sregs->apic_base);
6217
Avi Kivity4d4ec082009-12-29 18:07:30 +02006218 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006219 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00006220 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006221
Avi Kivityfc78f512009-12-07 12:16:48 +02006222 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006223 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Sheng Yang3ea3aa82010-12-08 10:49:43 +08006224 if (sregs->cr4 & X86_CR4_OSXSAVE)
6225 update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08006226
6227 idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02006228 if (!is_long_mode(vcpu) && is_pae(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02006229 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02006230 mmu_reset_needed = 1;
6231 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08006232 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006233
6234 if (mmu_reset_needed)
6235 kvm_mmu_reset_context(vcpu);
6236
Gleb Natapov923c61b2009-05-11 13:35:48 +03006237 max_bits = (sizeof sregs->interrupt_bitmap) << 3;
6238 pending_vec = find_first_bit(
6239 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
6240 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006241 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03006242 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006243 }
6244
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006245 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
6246 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
6247 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
6248 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
6249 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
6250 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006251
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02006252 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
6253 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006254
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03006255 update_cr8_intercept(vcpu);
6256
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03006257 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03006258 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03006259 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02006260 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03006261 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
6262
Avi Kivity3842d132010-07-27 12:30:24 +03006263 kvm_make_request(KVM_REQ_EVENT, vcpu);
6264
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006265 return 0;
6266}
6267
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006268int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
6269 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006270{
Jan Kiszka355be0b2009-10-03 00:31:21 +02006271 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01006272 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006273
Jan Kiszka4f926bf22009-10-30 12:46:59 +01006274 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
6275 r = -EBUSY;
6276 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03006277 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01006278 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
6279 kvm_queue_exception(vcpu, DB_VECTOR);
6280 else
6281 kvm_queue_exception(vcpu, BP_VECTOR);
6282 }
6283
Jan Kiszka91586a32009-10-05 13:07:21 +02006284 /*
6285 * Read rflags as long as potentially injected trace flags are still
6286 * filtered out.
6287 */
6288 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02006289
6290 vcpu->guest_debug = dbg->control;
6291 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
6292 vcpu->guest_debug = 0;
6293
6294 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01006295 for (i = 0; i < KVM_NR_DB_REGS; ++i)
6296 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
6297 vcpu->arch.switch_db_regs =
6298 (dbg->arch.debugreg[7] & DR7_BP_EN_MASK);
6299 } else {
6300 for (i = 0; i < KVM_NR_DB_REGS; i++)
6301 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
6302 vcpu->arch.switch_db_regs = (vcpu->arch.dr7 & DR7_BP_EN_MASK);
6303 }
6304
Jan Kiszkaf92653e2010-02-23 17:47:55 +01006305 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6306 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
6307 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006308
Jan Kiszka91586a32009-10-05 13:07:21 +02006309 /*
6310 * Trigger an rflags update that will inject or remove the trace
6311 * flags.
6312 */
6313 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006314
Jan Kiszka355be0b2009-10-03 00:31:21 +02006315 kvm_x86_ops->set_guest_debug(vcpu, dbg);
6316
Jan Kiszka4f926bf22009-10-30 12:46:59 +01006317 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006318
Avi Kivity2122ff52010-05-13 11:25:04 +03006319out:
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05006320
6321 return r;
6322}
6323
6324/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08006325 * Translate a guest virtual address to a guest physical address.
6326 */
6327int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
6328 struct kvm_translation *tr)
6329{
6330 unsigned long vaddr = tr->linear_address;
6331 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006332 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08006333
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006334 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02006335 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006336 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08006337 tr->physical_address = gpa;
6338 tr->valid = gpa != UNMAPPED_GVA;
6339 tr->writeable = 1;
6340 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08006341
6342 return 0;
6343}
6344
Hollis Blanchardd0752062007-10-31 17:24:25 -05006345int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
6346{
Sheng Yang98918832010-05-17 17:08:28 +08006347 struct i387_fxsave_struct *fxsave =
6348 &vcpu->arch.guest_fpu.state->fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05006349
Hollis Blanchardd0752062007-10-31 17:24:25 -05006350 memcpy(fpu->fpr, fxsave->st_space, 128);
6351 fpu->fcw = fxsave->cwd;
6352 fpu->fsw = fxsave->swd;
6353 fpu->ftwx = fxsave->twd;
6354 fpu->last_opcode = fxsave->fop;
6355 fpu->last_ip = fxsave->rip;
6356 fpu->last_dp = fxsave->rdp;
6357 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
6358
Hollis Blanchardd0752062007-10-31 17:24:25 -05006359 return 0;
6360}
6361
6362int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
6363{
Sheng Yang98918832010-05-17 17:08:28 +08006364 struct i387_fxsave_struct *fxsave =
6365 &vcpu->arch.guest_fpu.state->fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05006366
Hollis Blanchardd0752062007-10-31 17:24:25 -05006367 memcpy(fxsave->st_space, fpu->fpr, 128);
6368 fxsave->cwd = fpu->fcw;
6369 fxsave->swd = fpu->fsw;
6370 fxsave->twd = fpu->ftwx;
6371 fxsave->fop = fpu->last_opcode;
6372 fxsave->rip = fpu->last_ip;
6373 fxsave->rdp = fpu->last_dp;
6374 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
6375
Hollis Blanchardd0752062007-10-31 17:24:25 -05006376 return 0;
6377}
6378
Jan Kiszka10ab25c2010-05-25 16:01:50 +02006379int fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05006380{
Jan Kiszka10ab25c2010-05-25 16:01:50 +02006381 int err;
6382
6383 err = fpu_alloc(&vcpu->arch.guest_fpu);
6384 if (err)
6385 return err;
6386
Sheng Yang98918832010-05-17 17:08:28 +08006387 fpu_finit(&vcpu->arch.guest_fpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05006388
Dexuan Cui2acf9232010-06-10 11:27:12 +08006389 /*
6390 * Ensure guest xcr0 is valid for loading
6391 */
6392 vcpu->arch.xcr0 = XSTATE_FP;
6393
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006394 vcpu->arch.cr0 |= X86_CR0_ET;
Jan Kiszka10ab25c2010-05-25 16:01:50 +02006395
6396 return 0;
Hollis Blanchardd0752062007-10-31 17:24:25 -05006397}
6398EXPORT_SYMBOL_GPL(fx_init);
6399
Sheng Yang98918832010-05-17 17:08:28 +08006400static void fx_free(struct kvm_vcpu *vcpu)
6401{
6402 fpu_free(&vcpu->arch.guest_fpu);
6403}
6404
Hollis Blanchardd0752062007-10-31 17:24:25 -05006405void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
6406{
Avi Kivity2608d7a2010-01-21 15:31:45 +02006407 if (vcpu->guest_fpu_loaded)
Hollis Blanchardd0752062007-10-31 17:24:25 -05006408 return;
6409
Dexuan Cui2acf9232010-06-10 11:27:12 +08006410 /*
6411 * Restore all possible states in the guest,
6412 * and assume host would use all available bits.
6413 * Guest xcr0 would be loaded later.
6414 */
6415 kvm_put_guest_xcr0(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05006416 vcpu->guest_fpu_loaded = 1;
Sheng Yang7cf30852010-05-17 17:08:27 +08006417 unlazy_fpu(current);
Sheng Yang98918832010-05-17 17:08:28 +08006418 fpu_restore_checking(&vcpu->arch.guest_fpu);
Avi Kivity0c048512010-01-21 15:31:52 +02006419 trace_kvm_fpu(1);
Hollis Blanchardd0752062007-10-31 17:24:25 -05006420}
Hollis Blanchardd0752062007-10-31 17:24:25 -05006421
6422void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
6423{
Dexuan Cui2acf9232010-06-10 11:27:12 +08006424 kvm_put_guest_xcr0(vcpu);
6425
Hollis Blanchardd0752062007-10-31 17:24:25 -05006426 if (!vcpu->guest_fpu_loaded)
6427 return;
6428
6429 vcpu->guest_fpu_loaded = 0;
Sheng Yang98918832010-05-17 17:08:28 +08006430 fpu_save_init(&vcpu->arch.guest_fpu);
Avi Kivityf096ed82007-11-18 13:54:33 +02006431 ++vcpu->stat.fpu_reload;
Avi Kivitya8eeb042010-05-10 12:34:53 +03006432 kvm_make_request(KVM_REQ_DEACTIVATE_FPU, vcpu);
Avi Kivity0c048512010-01-21 15:31:52 +02006433 trace_kvm_fpu(0);
Hollis Blanchardd0752062007-10-31 17:24:25 -05006434}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006435
6436void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
6437{
Glauber Costa12f9a482011-02-01 14:16:40 -05006438 kvmclock_reset(vcpu);
Joerg Roedel7f1ea202009-02-25 16:08:31 +01006439
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006440 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Sheng Yang98918832010-05-17 17:08:28 +08006441 fx_free(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006442 kvm_x86_ops->vcpu_free(vcpu);
6443}
6444
6445struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
6446 unsigned int id)
6447{
Zachary Amsden6755bae2010-08-19 22:07:22 -10006448 if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
6449 printk_once(KERN_WARNING
6450 "kvm: SMP vm created on host with unstable TSC; "
6451 "guest TSC will not be reliable\n");
Avi Kivity26e52152007-11-20 15:30:24 +02006452 return kvm_x86_ops->vcpu_create(kvm, id);
6453}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006454
Avi Kivity26e52152007-11-20 15:30:24 +02006455int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
6456{
6457 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006458
Sheng Yang0bed3b52008-10-09 16:01:54 +08006459 vcpu->arch.mtrr_state.have_fixed = 1;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006460 vcpu_load(vcpu);
6461 r = kvm_arch_vcpu_reset(vcpu);
6462 if (r == 0)
6463 r = kvm_mmu_setup(vcpu);
6464 vcpu_put(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006465
Avi Kivity26e52152007-11-20 15:30:24 +02006466 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006467}
6468
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06006469void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006470{
Gleb Natapov344d9582010-10-14 11:22:50 +02006471 vcpu->arch.apf.msr_val = 0;
6472
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006473 vcpu_load(vcpu);
6474 kvm_mmu_unload(vcpu);
6475 vcpu_put(vcpu);
6476
Sheng Yang98918832010-05-17 17:08:28 +08006477 fx_free(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006478 kvm_x86_ops->vcpu_free(vcpu);
6479}
6480
6481int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu)
6482{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006483 atomic_set(&vcpu->arch.nmi_queued, 0);
6484 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02006485 vcpu->arch.nmi_injected = false;
6486
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006487 vcpu->arch.switch_db_regs = 0;
6488 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
6489 vcpu->arch.dr6 = DR6_FIXED_1;
6490 vcpu->arch.dr7 = DR7_FIXED_1;
6491
Avi Kivity3842d132010-07-27 12:30:24 +03006492 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02006493 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04006494 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03006495
Glauber Costa12f9a482011-02-01 14:16:40 -05006496 kvmclock_reset(vcpu);
6497
Gleb Natapovaf585b92010-10-14 11:22:46 +02006498 kvm_clear_async_pf_completion_queue(vcpu);
6499 kvm_async_pf_hash_reset(vcpu);
6500 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006501
6502 return kvm_x86_ops->vcpu_reset(vcpu);
6503}
6504
Alexander Graf10474ae2009-09-15 11:37:46 +02006505int kvm_arch_hardware_enable(void *garbage)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006506{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10006507 struct kvm *kvm;
6508 struct kvm_vcpu *vcpu;
6509 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +03006510
6511 kvm_shared_msr_cpu_online();
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10006512 list_for_each_entry(kvm, &vm_list, vm_list)
6513 kvm_for_each_vcpu(i, vcpu, kvm)
6514 if (vcpu->cpu == smp_processor_id())
Zachary Amsdenc2855452010-09-18 14:38:15 -10006515 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02006516 return kvm_x86_ops->hardware_enable(garbage);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006517}
6518
6519void kvm_arch_hardware_disable(void *garbage)
6520{
6521 kvm_x86_ops->hardware_disable(garbage);
Avi Kivity3548bab2009-11-28 14:18:47 +02006522 drop_user_return_notifiers(garbage);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006523}
6524
6525int kvm_arch_hardware_setup(void)
6526{
6527 return kvm_x86_ops->hardware_setup();
6528}
6529
6530void kvm_arch_hardware_unsetup(void)
6531{
6532 kvm_x86_ops->hardware_unsetup();
6533}
6534
6535void kvm_arch_check_processor_compat(void *rtn)
6536{
6537 kvm_x86_ops->check_processor_compatibility(rtn);
6538}
6539
6540int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
6541{
6542 struct page *page;
6543 struct kvm *kvm;
6544 int r;
6545
6546 BUG_ON(vcpu->kvm == NULL);
6547 kvm = vcpu->kvm;
6548
Avi Kivity9aabc88f2010-07-29 15:11:50 +03006549 vcpu->arch.emulate_ctxt.ops = &emulate_ops;
Joerg Roedel14dfe852010-09-10 17:30:49 +02006550 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006551 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Joerg Roedelc30a3582010-09-10 17:30:48 +02006552 vcpu->arch.mmu.translate_gpa = translate_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006553 vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03006554 if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_bsp(vcpu))
Avi Kivitya4535292008-04-13 17:54:35 +03006555 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006556 else
Avi Kivitya4535292008-04-13 17:54:35 +03006557 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006558
6559 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
6560 if (!page) {
6561 r = -ENOMEM;
6562 goto fail;
6563 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006564 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006565
Joerg Roedel1e993612011-03-25 09:44:47 +01006566 kvm_init_tsc_catchup(vcpu, max_tsc_khz);
Zachary Amsdenc2855452010-09-18 14:38:15 -10006567
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006568 r = kvm_mmu_create(vcpu);
6569 if (r < 0)
6570 goto fail_free_pio_data;
6571
6572 if (irqchip_in_kernel(kvm)) {
6573 r = kvm_create_lapic(vcpu);
6574 if (r < 0)
6575 goto fail_mmu_destroy;
6576 }
6577
Huang Ying890ca9a2009-05-11 16:48:15 +08006578 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
6579 GFP_KERNEL);
6580 if (!vcpu->arch.mce_banks) {
6581 r = -ENOMEM;
Wei Yongjun443c39b2010-01-22 14:21:29 +08006582 goto fail_free_lapic;
Huang Ying890ca9a2009-05-11 16:48:15 +08006583 }
6584 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
6585
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006586 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL))
6587 goto fail_free_mce_banks;
6588
Gleb Natapovaf585b92010-10-14 11:22:46 +02006589 kvm_async_pf_hash_reset(vcpu);
6590
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006591 return 0;
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006592fail_free_mce_banks:
6593 kfree(vcpu->arch.mce_banks);
Wei Yongjun443c39b2010-01-22 14:21:29 +08006594fail_free_lapic:
6595 kvm_free_lapic(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006596fail_mmu_destroy:
6597 kvm_mmu_destroy(vcpu);
6598fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006599 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006600fail:
6601 return r;
6602}
6603
6604void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
6605{
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006606 int idx;
6607
Wei Yongjun36cb93f2010-01-22 14:18:47 +08006608 kfree(vcpu->arch.mce_banks);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006609 kvm_free_lapic(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006610 idx = srcu_read_lock(&vcpu->kvm->srcu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006611 kvm_mmu_destroy(vcpu);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02006612 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006613 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08006614}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006615
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01006616int kvm_arch_init_vm(struct kvm *kvm)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006617{
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08006618 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03006619 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006620
Sheng Yang5550af42008-10-15 20:15:06 +08006621 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
6622 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
6623
Jan Kiszka038f8c12011-02-04 10:49:11 +01006624 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01006625
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01006626 return 0;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006627}
6628
6629static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
6630{
6631 vcpu_load(vcpu);
6632 kvm_mmu_unload(vcpu);
6633 vcpu_put(vcpu);
6634}
6635
6636static void kvm_free_vcpus(struct kvm *kvm)
6637{
6638 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03006639 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006640
6641 /*
6642 * Unpin any mmu pages first.
6643 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02006644 kvm_for_each_vcpu(i, vcpu, kvm) {
6645 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03006646 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02006647 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03006648 kvm_for_each_vcpu(i, vcpu, kvm)
6649 kvm_arch_vcpu_free(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006650
Gleb Natapov988a2ca2009-06-09 15:56:29 +03006651 mutex_lock(&kvm->lock);
6652 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
6653 kvm->vcpus[i] = NULL;
6654
6655 atomic_set(&kvm->online_vcpus, 0);
6656 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006657}
6658
Sheng Yangad8ba2c2009-01-06 10:03:02 +08006659void kvm_arch_sync_events(struct kvm *kvm)
6660{
Sheng Yangba4cef32009-01-06 10:03:03 +08006661 kvm_free_all_assigned_devices(kvm);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08006662 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08006663}
6664
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006665void kvm_arch_destroy_vm(struct kvm *kvm)
6666{
Sheng Yang6eb55812008-10-31 12:37:41 +08006667 kvm_iommu_unmap_guest(kvm);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08006668 kfree(kvm->arch.vpic);
6669 kfree(kvm->arch.vioapic);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006670 kvm_free_vcpus(kvm);
Avi Kivity3d458302008-03-25 11:26:13 +02006671 if (kvm->arch.apic_access_page)
6672 put_page(kvm->arch.apic_access_page);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006673 if (kvm->arch.ept_identity_pagetable)
6674 put_page(kvm->arch.ept_identity_pagetable);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08006675}
Zhang Xiantao0de10342007-11-20 16:25:04 +08006676
Marcelo Tosattif7784b82009-12-23 14:35:18 -02006677int kvm_arch_prepare_memory_region(struct kvm *kvm,
6678 struct kvm_memory_slot *memslot,
Zhang Xiantao0de10342007-11-20 16:25:04 +08006679 struct kvm_memory_slot old,
Marcelo Tosattif7784b82009-12-23 14:35:18 -02006680 struct kvm_userspace_memory_region *mem,
Zhang Xiantao0de10342007-11-20 16:25:04 +08006681 int user_alloc)
6682{
Marcelo Tosattif7784b82009-12-23 14:35:18 -02006683 int npages = memslot->npages;
Avi Kivity7ac77092010-06-21 10:57:45 +03006684 int map_flags = MAP_PRIVATE | MAP_ANONYMOUS;
6685
6686 /* Prevent internal slot pages from being moved by fork()/COW. */
6687 if (memslot->id >= KVM_MEMORY_SLOTS)
6688 map_flags = MAP_SHARED | MAP_ANONYMOUS;
Zhang Xiantao0de10342007-11-20 16:25:04 +08006689
6690 /*To keep backward compatibility with older userspace,
6691 *x86 needs to hanlde !user_alloc case.
6692 */
6693 if (!user_alloc) {
6694 if (npages && !old.rmap) {
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02006695 unsigned long userspace_addr;
6696
Izik Eidus72dc67a2008-02-10 18:04:15 +02006697 down_write(&current->mm->mmap_sem);
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02006698 userspace_addr = do_mmap(NULL, 0,
6699 npages * PAGE_SIZE,
6700 PROT_READ | PROT_WRITE,
Avi Kivity7ac77092010-06-21 10:57:45 +03006701 map_flags,
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02006702 0);
Izik Eidus72dc67a2008-02-10 18:04:15 +02006703 up_write(&current->mm->mmap_sem);
Zhang Xiantao0de10342007-11-20 16:25:04 +08006704
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02006705 if (IS_ERR((void *)userspace_addr))
6706 return PTR_ERR((void *)userspace_addr);
6707
Andrea Arcangeli604b38a2008-07-25 16:32:03 +02006708 memslot->userspace_addr = userspace_addr;
Zhang Xiantao0de10342007-11-20 16:25:04 +08006709 }
6710 }
6711
Marcelo Tosattif7784b82009-12-23 14:35:18 -02006712
6713 return 0;
6714}
6715
6716void kvm_arch_commit_memory_region(struct kvm *kvm,
6717 struct kvm_userspace_memory_region *mem,
6718 struct kvm_memory_slot old,
6719 int user_alloc)
6720{
6721
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08006722 int nr_mmu_pages = 0, npages = mem->memory_size >> PAGE_SHIFT;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02006723
6724 if (!user_alloc && !old.user_alloc && old.rmap && !npages) {
6725 int ret;
6726
6727 down_write(&current->mm->mmap_sem);
6728 ret = do_munmap(current->mm, old.userspace_addr,
6729 old.npages * PAGE_SIZE);
6730 up_write(&current->mm->mmap_sem);
6731 if (ret < 0)
6732 printk(KERN_WARNING
6733 "kvm_vm_ioctl_set_memory_region: "
6734 "failed to munmap memory\n");
6735 }
6736
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08006737 if (!kvm->arch.n_requested_mmu_pages)
6738 nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
Zhang Xiantao0de10342007-11-20 16:25:04 +08006739
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +08006740 spin_lock(&kvm->mmu_lock);
6741 if (nr_mmu_pages)
6742 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
Zhang Xiantao0de10342007-11-20 16:25:04 +08006743 kvm_mmu_slot_remove_write_access(kvm, mem->slot);
Marcelo Tosatti7c8a83b2009-05-12 18:55:43 -03006744 spin_unlock(&kvm->mmu_lock);
Zhang Xiantao0de10342007-11-20 16:25:04 +08006745}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08006746
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03006747void kvm_arch_flush_shadow(struct kvm *kvm)
6748{
6749 kvm_mmu_zap_all(kvm);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03006750 kvm_reload_remote_mmus(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03006751}
6752
Zhang Xiantao1d737c82007-12-14 09:35:10 +08006753int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
6754{
Gleb Natapovaf585b92010-10-14 11:22:46 +02006755 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
6756 !vcpu->arch.apf.halted)
6757 || !list_empty_careful(&vcpu->async_pf.done)
Gleb Natapova1b37102009-07-09 15:33:52 +03006758 || vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED
Avi Kivity7460fb4a2011-09-20 13:43:14 +03006759 || atomic_read(&vcpu->arch.nmi_queued) ||
Gleb Natapova1b37102009-07-09 15:33:52 +03006760 (kvm_arch_interrupt_allowed(vcpu) &&
6761 kvm_cpu_has_interrupt(vcpu));
Zhang Xiantao1d737c82007-12-14 09:35:10 +08006762}
Zhang Xiantao57361992007-12-17 14:21:40 +08006763
Zhang Xiantao57361992007-12-17 14:21:40 +08006764void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
6765{
Marcelo Tosatti32f88402009-05-07 17:55:12 -03006766 int me;
6767 int cpu = vcpu->cpu;
Zhang Xiantao57361992007-12-17 14:21:40 +08006768
6769 if (waitqueue_active(&vcpu->wq)) {
6770 wake_up_interruptible(&vcpu->wq);
6771 ++vcpu->stat.halt_wakeup;
6772 }
Marcelo Tosatti32f88402009-05-07 17:55:12 -03006773
6774 me = get_cpu();
6775 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08006776 if (kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE)
Marcelo Tosatti32f88402009-05-07 17:55:12 -03006777 smp_send_reschedule(cpu);
Marcelo Tosattie9571ed2008-04-11 15:01:22 -03006778 put_cpu();
Zhang Xiantao57361992007-12-17 14:21:40 +08006779}
Gleb Natapov78646122009-03-23 12:12:11 +02006780
6781int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
6782{
6783 return kvm_x86_ops->interrupt_allowed(vcpu);
6784}
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006785
Jan Kiszkaf92653e2010-02-23 17:47:55 +01006786bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
6787{
6788 unsigned long current_rip = kvm_rip_read(vcpu) +
6789 get_segment_base(vcpu, VCPU_SREG_CS);
6790
6791 return current_rip == linear_rip;
6792}
6793EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
6794
Jan Kiszka94fe45d2009-10-18 13:24:44 +02006795unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
6796{
6797 unsigned long rflags;
6798
6799 rflags = kvm_x86_ops->get_rflags(vcpu);
6800 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +01006801 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02006802 return rflags;
6803}
6804EXPORT_SYMBOL_GPL(kvm_get_rflags);
6805
6806void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
6807{
6808 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +01006809 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +01006810 rflags |= X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +02006811 kvm_x86_ops->set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +03006812 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +02006813}
6814EXPORT_SYMBOL_GPL(kvm_set_rflags);
6815
Gleb Natapov56028d02010-10-17 18:13:42 +02006816void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
6817{
6818 int r;
6819
Xiao Guangrongfb67e142010-12-07 10:35:25 +08006820 if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) ||
Xiao Guangrongc4806ac2010-11-12 14:49:55 +08006821 is_error_page(work->page))
Gleb Natapov56028d02010-10-17 18:13:42 +02006822 return;
6823
6824 r = kvm_mmu_reload(vcpu);
6825 if (unlikely(r))
6826 return;
6827
Xiao Guangrongfb67e142010-12-07 10:35:25 +08006828 if (!vcpu->arch.mmu.direct_map &&
6829 work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu))
6830 return;
6831
Gleb Natapov56028d02010-10-17 18:13:42 +02006832 vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true);
6833}
6834
Gleb Natapovaf585b92010-10-14 11:22:46 +02006835static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
6836{
6837 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
6838}
6839
6840static inline u32 kvm_async_pf_next_probe(u32 key)
6841{
6842 return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1);
6843}
6844
6845static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
6846{
6847 u32 key = kvm_async_pf_hash_fn(gfn);
6848
6849 while (vcpu->arch.apf.gfns[key] != ~0)
6850 key = kvm_async_pf_next_probe(key);
6851
6852 vcpu->arch.apf.gfns[key] = gfn;
6853}
6854
6855static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
6856{
6857 int i;
6858 u32 key = kvm_async_pf_hash_fn(gfn);
6859
6860 for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +08006861 (vcpu->arch.apf.gfns[key] != gfn &&
6862 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +02006863 key = kvm_async_pf_next_probe(key);
6864
6865 return key;
6866}
6867
6868bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
6869{
6870 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
6871}
6872
6873static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
6874{
6875 u32 i, j, k;
6876
6877 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
6878 while (true) {
6879 vcpu->arch.apf.gfns[i] = ~0;
6880 do {
6881 j = kvm_async_pf_next_probe(j);
6882 if (vcpu->arch.apf.gfns[j] == ~0)
6883 return;
6884 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
6885 /*
6886 * k lies cyclically in ]i,j]
6887 * | i.k.j |
6888 * |....j i.k.| or |.k..j i...|
6889 */
6890 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
6891 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
6892 i = j;
6893 }
6894}
6895
Gleb Natapov7c907052010-10-14 11:22:53 +02006896static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
6897{
6898
6899 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val,
6900 sizeof(val));
6901}
6902
Gleb Natapovaf585b92010-10-14 11:22:46 +02006903void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
6904 struct kvm_async_pf *work)
6905{
Avi Kivity6389ee92010-11-29 16:12:30 +02006906 struct x86_exception fault;
6907
Gleb Natapov7c907052010-10-14 11:22:53 +02006908 trace_kvm_async_pf_not_present(work->arch.token, work->gva);
Gleb Natapovaf585b92010-10-14 11:22:46 +02006909 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +02006910
6911 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
Gleb Natapovfc5f06f2010-10-14 11:22:56 +02006912 (vcpu->arch.apf.send_user_only &&
6913 kvm_x86_ops->get_cpl(vcpu) == 0))
Gleb Natapov7c907052010-10-14 11:22:53 +02006914 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
6915 else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02006916 fault.vector = PF_VECTOR;
6917 fault.error_code_valid = true;
6918 fault.error_code = 0;
6919 fault.nested_page_fault = false;
6920 fault.address = work->arch.token;
6921 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02006922 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02006923}
6924
6925void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
6926 struct kvm_async_pf *work)
6927{
Avi Kivity6389ee92010-11-29 16:12:30 +02006928 struct x86_exception fault;
6929
Gleb Natapov7c907052010-10-14 11:22:53 +02006930 trace_kvm_async_pf_ready(work->arch.token, work->gva);
6931 if (is_error_page(work->page))
6932 work->arch.token = ~0; /* broadcast wakeup */
6933 else
6934 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
6935
6936 if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) &&
6937 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
Avi Kivity6389ee92010-11-29 16:12:30 +02006938 fault.vector = PF_VECTOR;
6939 fault.error_code_valid = true;
6940 fault.error_code = 0;
6941 fault.nested_page_fault = false;
6942 fault.address = work->arch.token;
6943 kvm_inject_page_fault(vcpu, &fault);
Gleb Natapov7c907052010-10-14 11:22:53 +02006944 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +08006945 vcpu->arch.apf.halted = false;
Gleb Natapov7c907052010-10-14 11:22:53 +02006946}
6947
6948bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
6949{
6950 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
6951 return true;
6952 else
6953 return !kvm_event_needs_reinjection(vcpu) &&
6954 kvm_x86_ops->interrupt_allowed(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02006955}
6956
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006957EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
6958EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
6959EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
6960EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
6961EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +02006962EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +02006963EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +02006964EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +02006965EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Joerg Roedelec1ff792009-10-09 16:08:31 +02006966EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +02006967EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +01006968EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);