blob: 3de9ec35ebf9d899e777d0b7fd29bacad080d6d8 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * AMD SVM support
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
7 *
8 * Authors:
9 * Yaniv Kamay <yaniv@qumranet.com>
10 * Avi Kivity <avi@qumranet.com>
11 *
12 * This work is licensed under the terms of the GNU GPL, version 2. See
13 * the COPYING file in the top-level directory.
14 *
15 */
16
Avi Kivitye4956062007-06-28 14:15:57 -040017#include "kvm_svm.h"
18#include "x86_emulate.h"
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Avi Kivitye4956062007-06-28 14:15:57 -040020
Avi Kivity6aa8b732006-12-10 02:21:36 -080021#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020022#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080023#include <linux/vmalloc.h>
24#include <linux/highmem.h>
Ingo Molnar07031e12007-01-10 23:15:38 -080025#include <linux/profile.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040026#include <linux/sched.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027
Avi Kivitye4956062007-06-28 14:15:57 -040028#include <asm/desc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080029
30MODULE_AUTHOR("Qumranet");
31MODULE_LICENSE("GPL");
32
33#define IOPM_ALLOC_ORDER 2
34#define MSRPM_ALLOC_ORDER 1
35
36#define DB_VECTOR 1
37#define UD_VECTOR 6
38#define GP_VECTOR 13
39
40#define DR7_GD_MASK (1 << 13)
41#define DR6_BD_MASK (1 << 13)
Avi Kivity6aa8b732006-12-10 02:21:36 -080042
43#define SEG_TYPE_LDT 2
44#define SEG_TYPE_BUSY_TSS16 3
45
46#define KVM_EFER_LMA (1 << 10)
47#define KVM_EFER_LME (1 << 8)
48
Joerg Roedel80b77062007-03-30 17:02:14 +030049#define SVM_FEATURE_NPT (1 << 0)
50#define SVM_FEATURE_LBRV (1 << 1)
51#define SVM_DEATURE_SVML (1 << 2)
52
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040053static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
54{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100055 return container_of(vcpu, struct vcpu_svm, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040056}
57
Avi Kivity6aa8b732006-12-10 02:21:36 -080058unsigned long iopm_base;
59unsigned long msrpm_base;
60
61struct kvm_ldttss_desc {
62 u16 limit0;
63 u16 base0;
64 unsigned base1 : 8, type : 5, dpl : 2, p : 1;
65 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8;
66 u32 base3;
67 u32 zero1;
68} __attribute__((packed));
69
70struct svm_cpu_data {
71 int cpu;
72
Avi Kivity5008fdf2007-04-02 13:05:50 +030073 u64 asid_generation;
74 u32 max_asid;
75 u32 next_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -080076 struct kvm_ldttss_desc *tss_desc;
77
78 struct page *save_area;
79};
80
81static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
Joerg Roedel80b77062007-03-30 17:02:14 +030082static uint32_t svm_features;
Avi Kivity6aa8b732006-12-10 02:21:36 -080083
84struct svm_init_data {
85 int cpu;
86 int r;
87};
88
89static u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
90
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020091#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -080092#define MSRS_RANGE_SIZE 2048
93#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
94
95#define MAX_INST_SIZE 15
96
Joerg Roedel80b77062007-03-30 17:02:14 +030097static inline u32 svm_has(u32 feat)
98{
99 return svm_features & feat;
100}
101
Avi Kivity6aa8b732006-12-10 02:21:36 -0800102static inline u8 pop_irq(struct kvm_vcpu *vcpu)
103{
104 int word_index = __ffs(vcpu->irq_summary);
105 int bit_index = __ffs(vcpu->irq_pending[word_index]);
106 int irq = word_index * BITS_PER_LONG + bit_index;
107
108 clear_bit(bit_index, &vcpu->irq_pending[word_index]);
109 if (!vcpu->irq_pending[word_index])
110 clear_bit(word_index, &vcpu->irq_summary);
111 return irq;
112}
113
114static inline void push_irq(struct kvm_vcpu *vcpu, u8 irq)
115{
116 set_bit(irq, vcpu->irq_pending);
117 set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
118}
119
120static inline void clgi(void)
121{
122 asm volatile (SVM_CLGI);
123}
124
125static inline void stgi(void)
126{
127 asm volatile (SVM_STGI);
128}
129
130static inline void invlpga(unsigned long addr, u32 asid)
131{
132 asm volatile (SVM_INVLPGA :: "a"(addr), "c"(asid));
133}
134
135static inline unsigned long kvm_read_cr2(void)
136{
137 unsigned long cr2;
138
139 asm volatile ("mov %%cr2, %0" : "=r" (cr2));
140 return cr2;
141}
142
143static inline void kvm_write_cr2(unsigned long val)
144{
145 asm volatile ("mov %0, %%cr2" :: "r" (val));
146}
147
148static inline unsigned long read_dr6(void)
149{
150 unsigned long dr6;
151
152 asm volatile ("mov %%dr6, %0" : "=r" (dr6));
153 return dr6;
154}
155
156static inline void write_dr6(unsigned long val)
157{
158 asm volatile ("mov %0, %%dr6" :: "r" (val));
159}
160
161static inline unsigned long read_dr7(void)
162{
163 unsigned long dr7;
164
165 asm volatile ("mov %%dr7, %0" : "=r" (dr7));
166 return dr7;
167}
168
169static inline void write_dr7(unsigned long val)
170{
171 asm volatile ("mov %0, %%dr7" :: "r" (val));
172}
173
Avi Kivity6aa8b732006-12-10 02:21:36 -0800174static inline void force_new_asid(struct kvm_vcpu *vcpu)
175{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400176 to_svm(vcpu)->asid_generation--;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800177}
178
179static inline void flush_guest_tlb(struct kvm_vcpu *vcpu)
180{
181 force_new_asid(vcpu);
182}
183
184static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
185{
186 if (!(efer & KVM_EFER_LMA))
187 efer &= ~KVM_EFER_LME;
188
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400189 to_svm(vcpu)->vmcb->save.efer = efer | MSR_EFER_SVME_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800190 vcpu->shadow_efer = efer;
191}
192
193static void svm_inject_gp(struct kvm_vcpu *vcpu, unsigned error_code)
194{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400195 struct vcpu_svm *svm = to_svm(vcpu);
196
197 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800198 SVM_EVTINJ_VALID_ERR |
199 SVM_EVTINJ_TYPE_EXEPT |
200 GP_VECTOR;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400201 svm->vmcb->control.event_inj_err = error_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800202}
203
204static void inject_ud(struct kvm_vcpu *vcpu)
205{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400206 to_svm(vcpu)->vmcb->control.event_inj = SVM_EVTINJ_VALID |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800207 SVM_EVTINJ_TYPE_EXEPT |
208 UD_VECTOR;
209}
210
Avi Kivity6aa8b732006-12-10 02:21:36 -0800211static int is_page_fault(uint32_t info)
212{
213 info &= SVM_EVTINJ_VEC_MASK | SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
214 return info == (PF_VECTOR | SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_EXEPT);
215}
216
217static int is_external_interrupt(u32 info)
218{
219 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
220 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
221}
222
223static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
224{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400225 struct vcpu_svm *svm = to_svm(vcpu);
226
227 if (!svm->next_rip) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800228 printk(KERN_DEBUG "%s: NOP\n", __FUNCTION__);
229 return;
230 }
Rusty Russell3077c4512007-07-30 16:41:57 +1000231 if (svm->next_rip - svm->vmcb->save.rip > MAX_INST_SIZE) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800232 printk(KERN_ERR "%s: ip 0x%llx next 0x%llx\n",
233 __FUNCTION__,
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400234 svm->vmcb->save.rip,
235 svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800236 }
237
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400238 vcpu->rip = svm->vmcb->save.rip = svm->next_rip;
239 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
Dor Laorc1150d82007-01-05 16:36:24 -0800240
241 vcpu->interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800242}
243
244static int has_svm(void)
245{
246 uint32_t eax, ebx, ecx, edx;
247
Avi Kivity1e885462006-12-29 16:49:34 -0800248 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800249 printk(KERN_INFO "has_svm: not amd\n");
250 return 0;
251 }
252
253 cpuid(0x80000000, &eax, &ebx, &ecx, &edx);
254 if (eax < SVM_CPUID_FUNC) {
255 printk(KERN_INFO "has_svm: can't execute cpuid_8000000a\n");
256 return 0;
257 }
258
259 cpuid(0x80000001, &eax, &ebx, &ecx, &edx);
260 if (!(ecx & (1 << SVM_CPUID_FEATURE_SHIFT))) {
261 printk(KERN_DEBUG "has_svm: svm not available\n");
262 return 0;
263 }
264 return 1;
265}
266
267static void svm_hardware_disable(void *garbage)
268{
269 struct svm_cpu_data *svm_data
270 = per_cpu(svm_data, raw_smp_processor_id());
271
272 if (svm_data) {
273 uint64_t efer;
274
275 wrmsrl(MSR_VM_HSAVE_PA, 0);
276 rdmsrl(MSR_EFER, efer);
277 wrmsrl(MSR_EFER, efer & ~MSR_EFER_SVME_MASK);
Al Viro8b6d44c2007-02-09 16:38:40 +0000278 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800279 __free_page(svm_data->save_area);
280 kfree(svm_data);
281 }
282}
283
284static void svm_hardware_enable(void *garbage)
285{
286
287 struct svm_cpu_data *svm_data;
288 uint64_t efer;
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800289#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800290 struct desc_ptr gdt_descr;
291#else
292 struct Xgt_desc_struct gdt_descr;
293#endif
294 struct desc_struct *gdt;
295 int me = raw_smp_processor_id();
296
297 if (!has_svm()) {
298 printk(KERN_ERR "svm_cpu_init: err EOPNOTSUPP on %d\n", me);
299 return;
300 }
301 svm_data = per_cpu(svm_data, me);
302
303 if (!svm_data) {
304 printk(KERN_ERR "svm_cpu_init: svm_data is NULL on %d\n",
305 me);
306 return;
307 }
308
309 svm_data->asid_generation = 1;
310 svm_data->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
311 svm_data->next_asid = svm_data->max_asid + 1;
Joerg Roedel80b77062007-03-30 17:02:14 +0300312 svm_features = cpuid_edx(SVM_CPUID_FUNC);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800313
314 asm volatile ( "sgdt %0" : "=m"(gdt_descr) );
315 gdt = (struct desc_struct *)gdt_descr.address;
316 svm_data->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
317
318 rdmsrl(MSR_EFER, efer);
319 wrmsrl(MSR_EFER, efer | MSR_EFER_SVME_MASK);
320
321 wrmsrl(MSR_VM_HSAVE_PA,
322 page_to_pfn(svm_data->save_area) << PAGE_SHIFT);
323}
324
325static int svm_cpu_init(int cpu)
326{
327 struct svm_cpu_data *svm_data;
328 int r;
329
330 svm_data = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
331 if (!svm_data)
332 return -ENOMEM;
333 svm_data->cpu = cpu;
334 svm_data->save_area = alloc_page(GFP_KERNEL);
335 r = -ENOMEM;
336 if (!svm_data->save_area)
337 goto err_1;
338
339 per_cpu(svm_data, cpu) = svm_data;
340
341 return 0;
342
343err_1:
344 kfree(svm_data);
345 return r;
346
347}
348
Rusty Russellbfc733a2007-07-31 20:42:42 +1000349static void set_msr_interception(u32 *msrpm, unsigned msr,
350 int read, int write)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800351{
352 int i;
353
354 for (i = 0; i < NUM_MSR_MAPS; i++) {
355 if (msr >= msrpm_ranges[i] &&
356 msr < msrpm_ranges[i] + MSRS_IN_RANGE) {
357 u32 msr_offset = (i * MSRS_IN_RANGE + msr -
358 msrpm_ranges[i]) * 2;
359
360 u32 *base = msrpm + (msr_offset / 32);
361 u32 msr_shift = msr_offset % 32;
362 u32 mask = ((write) ? 0 : 2) | ((read) ? 0 : 1);
363 *base = (*base & ~(0x3 << msr_shift)) |
364 (mask << msr_shift);
Rusty Russellbfc733a2007-07-31 20:42:42 +1000365 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800366 }
367 }
Rusty Russellbfc733a2007-07-31 20:42:42 +1000368 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800369}
370
371static __init int svm_hardware_setup(void)
372{
373 int cpu;
374 struct page *iopm_pages;
375 struct page *msrpm_pages;
Anthony Liguoric8681332007-04-30 09:48:11 +0300376 void *iopm_va, *msrpm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800377 int r;
378
Avi Kivity873a7c42006-12-13 00:34:14 -0800379 kvm_emulator_want_group7_invlpg();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800380
381 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
382
383 if (!iopm_pages)
384 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +0300385
386 iopm_va = page_address(iopm_pages);
387 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
388 clear_bit(0x80, iopm_va); /* allow direct access to PC debug port */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800389 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
390
391
392 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
393
394 r = -ENOMEM;
395 if (!msrpm_pages)
396 goto err_1;
397
398 msrpm_va = page_address(msrpm_pages);
399 memset(msrpm_va, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
400 msrpm_base = page_to_pfn(msrpm_pages) << PAGE_SHIFT;
401
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800402#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800403 set_msr_interception(msrpm_va, MSR_GS_BASE, 1, 1);
404 set_msr_interception(msrpm_va, MSR_FS_BASE, 1, 1);
405 set_msr_interception(msrpm_va, MSR_KERNEL_GS_BASE, 1, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800406 set_msr_interception(msrpm_va, MSR_LSTAR, 1, 1);
407 set_msr_interception(msrpm_va, MSR_CSTAR, 1, 1);
408 set_msr_interception(msrpm_va, MSR_SYSCALL_MASK, 1, 1);
409#endif
Avi Kivity0e859ca2006-12-22 01:05:08 -0800410 set_msr_interception(msrpm_va, MSR_K6_STAR, 1, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800411 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_CS, 1, 1);
412 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_ESP, 1, 1);
413 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_EIP, 1, 1);
414
415 for_each_online_cpu(cpu) {
416 r = svm_cpu_init(cpu);
417 if (r)
418 goto err_2;
419 }
420 return 0;
421
422err_2:
423 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
424 msrpm_base = 0;
425err_1:
426 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
427 iopm_base = 0;
428 return r;
429}
430
431static __exit void svm_hardware_unsetup(void)
432{
433 __free_pages(pfn_to_page(msrpm_base >> PAGE_SHIFT), MSRPM_ALLOC_ORDER);
434 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
435 iopm_base = msrpm_base = 0;
436}
437
438static void init_seg(struct vmcb_seg *seg)
439{
440 seg->selector = 0;
441 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
442 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
443 seg->limit = 0xffff;
444 seg->base = 0;
445}
446
447static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
448{
449 seg->selector = 0;
450 seg->attrib = SVM_SELECTOR_P_MASK | type;
451 seg->limit = 0xffff;
452 seg->base = 0;
453}
454
Avi Kivity6aa8b732006-12-10 02:21:36 -0800455static void init_vmcb(struct vmcb *vmcb)
456{
457 struct vmcb_control_area *control = &vmcb->control;
458 struct vmcb_save_area *save = &vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800459
460 control->intercept_cr_read = INTERCEPT_CR0_MASK |
461 INTERCEPT_CR3_MASK |
462 INTERCEPT_CR4_MASK;
463
464 control->intercept_cr_write = INTERCEPT_CR0_MASK |
465 INTERCEPT_CR3_MASK |
466 INTERCEPT_CR4_MASK;
467
468 control->intercept_dr_read = INTERCEPT_DR0_MASK |
469 INTERCEPT_DR1_MASK |
470 INTERCEPT_DR2_MASK |
471 INTERCEPT_DR3_MASK;
472
473 control->intercept_dr_write = INTERCEPT_DR0_MASK |
474 INTERCEPT_DR1_MASK |
475 INTERCEPT_DR2_MASK |
476 INTERCEPT_DR3_MASK |
477 INTERCEPT_DR5_MASK |
478 INTERCEPT_DR7_MASK;
479
480 control->intercept_exceptions = 1 << PF_VECTOR;
481
482
483 control->intercept = (1ULL << INTERCEPT_INTR) |
484 (1ULL << INTERCEPT_NMI) |
Joerg Roedel01525272007-02-19 14:37:47 +0200485 (1ULL << INTERCEPT_SMI) |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800486 /*
487 * selective cr0 intercept bug?
488 * 0: 0f 22 d8 mov %eax,%cr3
489 * 3: 0f 20 c0 mov %cr0,%eax
490 * 6: 0d 00 00 00 80 or $0x80000000,%eax
491 * b: 0f 22 c0 mov %eax,%cr0
492 * set cr3 ->interception
493 * get cr0 ->interception
494 * set cr0 -> no interception
495 */
496 /* (1ULL << INTERCEPT_SELECTIVE_CR0) | */
497 (1ULL << INTERCEPT_CPUID) |
498 (1ULL << INTERCEPT_HLT) |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800499 (1ULL << INTERCEPT_INVLPGA) |
500 (1ULL << INTERCEPT_IOIO_PROT) |
501 (1ULL << INTERCEPT_MSR_PROT) |
502 (1ULL << INTERCEPT_TASK_SWITCH) |
Joerg Roedel46fe4dd2007-01-26 00:56:42 -0800503 (1ULL << INTERCEPT_SHUTDOWN) |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800504 (1ULL << INTERCEPT_VMRUN) |
505 (1ULL << INTERCEPT_VMMCALL) |
506 (1ULL << INTERCEPT_VMLOAD) |
507 (1ULL << INTERCEPT_VMSAVE) |
508 (1ULL << INTERCEPT_STGI) |
509 (1ULL << INTERCEPT_CLGI) |
Joerg Roedel916ce232007-03-21 19:47:00 +0100510 (1ULL << INTERCEPT_SKINIT) |
511 (1ULL << INTERCEPT_MONITOR) |
512 (1ULL << INTERCEPT_MWAIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800513
514 control->iopm_base_pa = iopm_base;
515 control->msrpm_base_pa = msrpm_base;
Avi Kivity0cc50642007-03-25 12:07:27 +0200516 control->tsc_offset = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800517 control->int_ctl = V_INTR_MASKING_MASK;
518
519 init_seg(&save->es);
520 init_seg(&save->ss);
521 init_seg(&save->ds);
522 init_seg(&save->fs);
523 init_seg(&save->gs);
524
525 save->cs.selector = 0xf000;
526 /* Executable/Readable Code Segment */
527 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
528 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
529 save->cs.limit = 0xffff;
Avi Kivityd92899a2007-02-12 00:54:38 -0800530 /*
531 * cs.base should really be 0xffff0000, but vmx can't handle that, so
532 * be consistent with it.
533 *
534 * Replace when we have real mode working for vmx.
535 */
536 save->cs.base = 0xf0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800537
538 save->gdtr.limit = 0xffff;
539 save->idtr.limit = 0xffff;
540
541 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
542 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
543
544 save->efer = MSR_EFER_SVME_MASK;
545
546 save->dr6 = 0xffff0ff0;
547 save->dr7 = 0x400;
548 save->rflags = 2;
549 save->rip = 0x0000fff0;
550
551 /*
552 * cr0 val on cpu init should be 0x60000010, we enable cpu
553 * cache by default. the orderly way is to enable cache in bios.
554 */
Rusty Russell707d92fa2007-07-17 23:19:08 +1000555 save->cr0 = 0x00000010 | X86_CR0_PG | X86_CR0_WP;
Rusty Russell66aee912007-07-17 23:34:16 +1000556 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800557 /* rdx = ?? */
558}
559
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000560static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800561{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400562 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800563 struct page *page;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000564 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800565
Rusty Russellc16f8622007-07-30 21:12:19 +1000566 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000567 if (!svm) {
568 err = -ENOMEM;
569 goto out;
570 }
571
572 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
573 if (err)
574 goto free_svm;
575
Eddie Dong97222cc2007-09-12 10:58:04 +0300576 if (irqchip_in_kernel(kvm)) {
577 err = kvm_create_lapic(&svm->vcpu);
578 if (err < 0)
579 goto free_svm;
580 }
581
Avi Kivity6aa8b732006-12-10 02:21:36 -0800582 page = alloc_page(GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000583 if (!page) {
584 err = -ENOMEM;
585 goto uninit;
586 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800587
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400588 svm->vmcb = page_address(page);
589 clear_page(svm->vmcb);
590 svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
591 svm->asid_generation = 0;
592 memset(svm->db_regs, 0, sizeof(svm->db_regs));
593 init_vmcb(svm->vmcb);
594
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000595 fx_init(&svm->vcpu);
596 svm->vcpu.fpu_active = 1;
597 svm->vcpu.apic_base = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
598 if (svm->vcpu.vcpu_id == 0)
599 svm->vcpu.apic_base |= MSR_IA32_APICBASE_BSP;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800600
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000601 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -0800602
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000603uninit:
604 kvm_vcpu_uninit(&svm->vcpu);
605free_svm:
Rusty Russella4770342007-08-01 14:46:11 +1000606 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000607out:
608 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800609}
610
611static void svm_free_vcpu(struct kvm_vcpu *vcpu)
612{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400613 struct vcpu_svm *svm = to_svm(vcpu);
614
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000615 __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
616 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +1000617 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800618}
619
Avi Kivity15ad7142007-07-11 18:17:21 +0300620static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800621{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400622 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300623 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +0200624
Avi Kivity0cc50642007-03-25 12:07:27 +0200625 if (unlikely(cpu != vcpu->cpu)) {
626 u64 tsc_this, delta;
627
628 /*
629 * Make sure that the guest sees a monotonically
630 * increasing TSC.
631 */
632 rdtscll(tsc_this);
633 delta = vcpu->host_tsc - tsc_this;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400634 svm->vmcb->control.tsc_offset += delta;
Avi Kivity0cc50642007-03-25 12:07:27 +0200635 vcpu->cpu = cpu;
Eddie Donga3d7f852007-09-03 16:15:12 +0300636 kvm_migrate_apic_timer(vcpu);
Avi Kivity0cc50642007-03-25 12:07:27 +0200637 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300638
639 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400640 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800641}
642
643static void svm_vcpu_put(struct kvm_vcpu *vcpu)
644{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400645 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300646 int i;
647
648 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400649 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300650
Avi Kivity0cc50642007-03-25 12:07:27 +0200651 rdtscll(vcpu->host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800652}
653
Avi Kivity774c47f2007-02-12 00:54:47 -0800654static void svm_vcpu_decache(struct kvm_vcpu *vcpu)
655{
656}
657
Avi Kivity6aa8b732006-12-10 02:21:36 -0800658static void svm_cache_regs(struct kvm_vcpu *vcpu)
659{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400660 struct vcpu_svm *svm = to_svm(vcpu);
661
662 vcpu->regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
663 vcpu->regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
664 vcpu->rip = svm->vmcb->save.rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800665}
666
667static void svm_decache_regs(struct kvm_vcpu *vcpu)
668{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400669 struct vcpu_svm *svm = to_svm(vcpu);
670 svm->vmcb->save.rax = vcpu->regs[VCPU_REGS_RAX];
671 svm->vmcb->save.rsp = vcpu->regs[VCPU_REGS_RSP];
672 svm->vmcb->save.rip = vcpu->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800673}
674
675static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
676{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400677 return to_svm(vcpu)->vmcb->save.rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800678}
679
680static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
681{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400682 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800683}
684
685static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
686{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400687 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800688
689 switch (seg) {
690 case VCPU_SREG_CS: return &save->cs;
691 case VCPU_SREG_DS: return &save->ds;
692 case VCPU_SREG_ES: return &save->es;
693 case VCPU_SREG_FS: return &save->fs;
694 case VCPU_SREG_GS: return &save->gs;
695 case VCPU_SREG_SS: return &save->ss;
696 case VCPU_SREG_TR: return &save->tr;
697 case VCPU_SREG_LDTR: return &save->ldtr;
698 }
699 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +0000700 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800701}
702
703static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
704{
705 struct vmcb_seg *s = svm_seg(vcpu, seg);
706
707 return s->base;
708}
709
710static void svm_get_segment(struct kvm_vcpu *vcpu,
711 struct kvm_segment *var, int seg)
712{
713 struct vmcb_seg *s = svm_seg(vcpu, seg);
714
715 var->base = s->base;
716 var->limit = s->limit;
717 var->selector = s->selector;
718 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
719 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
720 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
721 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
722 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
723 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
724 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
725 var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1;
726 var->unusable = !var->present;
727}
728
729static void svm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
730{
731 struct vmcb_seg *s = svm_seg(vcpu, VCPU_SREG_CS);
732
733 *db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
734 *l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
735}
736
737static void svm_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
738{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400739 struct vcpu_svm *svm = to_svm(vcpu);
740
741 dt->limit = svm->vmcb->save.idtr.limit;
742 dt->base = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800743}
744
745static void svm_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
746{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400747 struct vcpu_svm *svm = to_svm(vcpu);
748
749 svm->vmcb->save.idtr.limit = dt->limit;
750 svm->vmcb->save.idtr.base = dt->base ;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800751}
752
753static void svm_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
754{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400755 struct vcpu_svm *svm = to_svm(vcpu);
756
757 dt->limit = svm->vmcb->save.gdtr.limit;
758 dt->base = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800759}
760
761static void svm_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
762{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400763 struct vcpu_svm *svm = to_svm(vcpu);
764
765 svm->vmcb->save.gdtr.limit = dt->limit;
766 svm->vmcb->save.gdtr.base = dt->base ;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800767}
768
Anthony Liguori25c4c272007-04-27 09:29:21 +0300769static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -0800770{
771}
772
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
774{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400775 struct vcpu_svm *svm = to_svm(vcpu);
776
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800777#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800778 if (vcpu->shadow_efer & KVM_EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +1000779 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800780 vcpu->shadow_efer |= KVM_EFER_LMA;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400781 svm->vmcb->save.efer |= KVM_EFER_LMA | KVM_EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782 }
783
Rusty Russell707d92fa2007-07-17 23:19:08 +1000784 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG) ) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800785 vcpu->shadow_efer &= ~KVM_EFER_LMA;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400786 svm->vmcb->save.efer &= ~(KVM_EFER_LMA | KVM_EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787 }
788 }
789#endif
Rusty Russell707d92fa2007-07-17 23:19:08 +1000790 if ((vcpu->cr0 & X86_CR0_TS) && !(cr0 & X86_CR0_TS)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400791 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
Anthony Liguori7807fa62007-04-23 09:17:21 -0500792 vcpu->fpu_active = 1;
793 }
794
Avi Kivity6aa8b732006-12-10 02:21:36 -0800795 vcpu->cr0 = cr0;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000796 cr0 |= X86_CR0_PG | X86_CR0_WP;
797 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400798 svm->vmcb->save.cr0 = cr0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800799}
800
801static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
802{
803 vcpu->cr4 = cr4;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400804 to_svm(vcpu)->vmcb->save.cr4 = cr4 | X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800805}
806
807static void svm_set_segment(struct kvm_vcpu *vcpu,
808 struct kvm_segment *var, int seg)
809{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400810 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800811 struct vmcb_seg *s = svm_seg(vcpu, seg);
812
813 s->base = var->base;
814 s->limit = var->limit;
815 s->selector = var->selector;
816 if (var->unusable)
817 s->attrib = 0;
818 else {
819 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
820 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
821 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
822 s->attrib |= (var->present & 1) << SVM_SELECTOR_P_SHIFT;
823 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
824 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
825 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
826 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
827 }
828 if (seg == VCPU_SREG_CS)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400829 svm->vmcb->save.cpl
830 = (svm->vmcb->save.cs.attrib
Avi Kivity6aa8b732006-12-10 02:21:36 -0800831 >> SVM_SELECTOR_DPL_SHIFT) & 3;
832
833}
834
835/* FIXME:
836
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400837 svm(vcpu)->vmcb->control.int_ctl &= ~V_TPR_MASK;
838 svm(vcpu)->vmcb->control.int_ctl |= (sregs->cr8 & V_TPR_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839
840*/
841
842static int svm_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
843{
844 return -EOPNOTSUPP;
845}
846
Eddie Dong2a8067f2007-08-06 16:29:07 +0300847static int svm_get_irq(struct kvm_vcpu *vcpu)
848{
849 struct vcpu_svm *svm = to_svm(vcpu);
850 u32 exit_int_info = svm->vmcb->control.exit_int_info;
851
852 if (is_external_interrupt(exit_int_info))
853 return exit_int_info & SVM_EVTINJ_VEC_MASK;
854 return -1;
855}
856
Avi Kivity6aa8b732006-12-10 02:21:36 -0800857static void load_host_msrs(struct kvm_vcpu *vcpu)
858{
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300859#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400860 wrmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300861#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800862}
863
864static void save_host_msrs(struct kvm_vcpu *vcpu)
865{
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300866#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400867 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300868#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869}
870
Rusty Russelle756fc62007-07-30 20:07:08 +1000871static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *svm_data)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800872{
873 if (svm_data->next_asid > svm_data->max_asid) {
874 ++svm_data->asid_generation;
875 svm_data->next_asid = 1;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400876 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800877 }
878
Rusty Russelle756fc62007-07-30 20:07:08 +1000879 svm->vcpu.cpu = svm_data->cpu;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400880 svm->asid_generation = svm_data->asid_generation;
881 svm->vmcb->control.asid = svm_data->next_asid++;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882}
883
884static void svm_invlpg(struct kvm_vcpu *vcpu, gva_t address)
885{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400886 invlpga(address, to_svm(vcpu)->vmcb->control.asid); // is needed?
Avi Kivity6aa8b732006-12-10 02:21:36 -0800887}
888
889static unsigned long svm_get_dr(struct kvm_vcpu *vcpu, int dr)
890{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400891 return to_svm(vcpu)->db_regs[dr];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800892}
893
894static void svm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long value,
895 int *exception)
896{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400897 struct vcpu_svm *svm = to_svm(vcpu);
898
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899 *exception = 0;
900
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400901 if (svm->vmcb->save.dr7 & DR7_GD_MASK) {
902 svm->vmcb->save.dr7 &= ~DR7_GD_MASK;
903 svm->vmcb->save.dr6 |= DR6_BD_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904 *exception = DB_VECTOR;
905 return;
906 }
907
908 switch (dr) {
909 case 0 ... 3:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400910 svm->db_regs[dr] = value;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800911 return;
912 case 4 ... 5:
Rusty Russell66aee912007-07-17 23:34:16 +1000913 if (vcpu->cr4 & X86_CR4_DE) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 *exception = UD_VECTOR;
915 return;
916 }
917 case 7: {
918 if (value & ~((1ULL << 32) - 1)) {
919 *exception = GP_VECTOR;
920 return;
921 }
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400922 svm->vmcb->save.dr7 = value;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 return;
924 }
925 default:
926 printk(KERN_DEBUG "%s: unexpected dr %u\n",
927 __FUNCTION__, dr);
928 *exception = UD_VECTOR;
929 return;
930 }
931}
932
Rusty Russelle756fc62007-07-30 20:07:08 +1000933static int pf_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400935 u32 exit_int_info = svm->vmcb->control.exit_int_info;
Rusty Russelle756fc62007-07-30 20:07:08 +1000936 struct kvm *kvm = svm->vcpu.kvm;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937 u64 fault_address;
938 u32 error_code;
939 enum emulation_result er;
Avi Kivitye2dec932007-01-05 16:36:54 -0800940 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800941
Eddie Dong85f455f2007-07-06 12:20:49 +0300942 if (!irqchip_in_kernel(kvm) &&
943 is_external_interrupt(exit_int_info))
Rusty Russelle756fc62007-07-30 20:07:08 +1000944 push_irq(&svm->vcpu, exit_int_info & SVM_EVTINJ_VEC_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800945
Rusty Russelle756fc62007-07-30 20:07:08 +1000946 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800947
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400948 fault_address = svm->vmcb->control.exit_info_2;
949 error_code = svm->vmcb->control.exit_info_1;
Rusty Russelle756fc62007-07-30 20:07:08 +1000950 r = kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code);
Avi Kivitye2dec932007-01-05 16:36:54 -0800951 if (r < 0) {
Rusty Russelle756fc62007-07-30 20:07:08 +1000952 mutex_unlock(&kvm->lock);
Avi Kivitye2dec932007-01-05 16:36:54 -0800953 return r;
954 }
955 if (!r) {
Rusty Russelle756fc62007-07-30 20:07:08 +1000956 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800957 return 1;
958 }
Rusty Russelle756fc62007-07-30 20:07:08 +1000959 er = emulate_instruction(&svm->vcpu, kvm_run, fault_address,
960 error_code);
961 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800962
963 switch (er) {
964 case EMULATE_DONE:
965 return 1;
966 case EMULATE_DO_MMIO:
Rusty Russelle756fc62007-07-30 20:07:08 +1000967 ++svm->vcpu.stat.mmio_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968 return 0;
969 case EMULATE_FAIL:
Rusty Russelle756fc62007-07-30 20:07:08 +1000970 vcpu_printf(&svm->vcpu, "%s: emulate fail\n", __FUNCTION__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971 break;
972 default:
973 BUG();
974 }
975
976 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
977 return 0;
978}
979
Rusty Russelle756fc62007-07-30 20:07:08 +1000980static int nm_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Anthony Liguori7807fa62007-04-23 09:17:21 -0500981{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400982 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
Rusty Russelle756fc62007-07-30 20:07:08 +1000983 if (!(svm->vcpu.cr0 & X86_CR0_TS))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400984 svm->vmcb->save.cr0 &= ~X86_CR0_TS;
Rusty Russelle756fc62007-07-30 20:07:08 +1000985 svm->vcpu.fpu_active = 1;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400986
987 return 1;
Anthony Liguori7807fa62007-04-23 09:17:21 -0500988}
989
Rusty Russelle756fc62007-07-30 20:07:08 +1000990static int shutdown_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -0800991{
992 /*
993 * VMCB is undefined after a SHUTDOWN intercept
994 * so reinitialize it.
995 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400996 clear_page(svm->vmcb);
997 init_vmcb(svm->vmcb);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -0800998
999 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1000 return 0;
1001}
1002
Rusty Russelle756fc62007-07-30 20:07:08 +10001003static int io_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001005 u32 io_info = svm->vmcb->control.exit_info_1; //address size bug?
Avi Kivity039576c2007-03-20 12:46:50 +02001006 int size, down, in, string, rep;
1007 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008
Rusty Russelle756fc62007-07-30 20:07:08 +10001009 ++svm->vcpu.stat.io_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001011 svm->next_rip = svm->vmcb->control.exit_info_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012
Laurent Viviere70669a2007-08-05 10:36:40 +03001013 string = (io_info & SVM_IOIO_STR_MASK) != 0;
1014
1015 if (string) {
1016 if (emulate_instruction(&svm->vcpu, kvm_run, 0, 0) == EMULATE_DO_MMIO)
1017 return 0;
1018 return 1;
1019 }
1020
Avi Kivity039576c2007-03-20 12:46:50 +02001021 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
1022 port = io_info >> 16;
1023 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Avi Kivity039576c2007-03-20 12:46:50 +02001024 rep = (io_info & SVM_IOIO_REP_MASK) != 0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001025 down = (svm->vmcb->save.rflags & X86_EFLAGS_DF) != 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026
Laurent Vivier3090dd72007-08-05 10:43:32 +03001027 return kvm_emulate_pio(&svm->vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028}
1029
Rusty Russelle756fc62007-07-30 20:07:08 +10001030static int nop_on_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001031{
1032 return 1;
1033}
1034
Rusty Russelle756fc62007-07-30 20:07:08 +10001035static int halt_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001036{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001037 svm->next_rip = svm->vmcb->save.rip + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10001038 skip_emulated_instruction(&svm->vcpu);
1039 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001040}
1041
Rusty Russelle756fc62007-07-30 20:07:08 +10001042static int vmmcall_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity02e235b2007-02-19 14:37:47 +02001043{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001044 svm->next_rip = svm->vmcb->save.rip + 3;
Rusty Russelle756fc62007-07-30 20:07:08 +10001045 skip_emulated_instruction(&svm->vcpu);
1046 return kvm_hypercall(&svm->vcpu, kvm_run);
Avi Kivity02e235b2007-02-19 14:37:47 +02001047}
1048
Rusty Russelle756fc62007-07-30 20:07:08 +10001049static int invalid_op_interception(struct vcpu_svm *svm,
1050 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051{
Rusty Russelle756fc62007-07-30 20:07:08 +10001052 inject_ud(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001053 return 1;
1054}
1055
Rusty Russelle756fc62007-07-30 20:07:08 +10001056static int task_switch_interception(struct vcpu_svm *svm,
1057 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058{
Rusty Russellf0242472007-08-01 10:48:02 +10001059 pr_unimpl(&svm->vcpu, "%s: task switch is unsupported\n", __FUNCTION__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001060 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
1061 return 0;
1062}
1063
Rusty Russelle756fc62007-07-30 20:07:08 +10001064static int cpuid_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001065{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001066 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001067 kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity06465c52007-02-28 20:46:53 +02001068 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069}
1070
Rusty Russelle756fc62007-07-30 20:07:08 +10001071static int emulate_on_interception(struct vcpu_svm *svm,
1072 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073{
Rusty Russelle756fc62007-07-30 20:07:08 +10001074 if (emulate_instruction(&svm->vcpu, NULL, 0, 0) != EMULATE_DONE)
Rusty Russellf0242472007-08-01 10:48:02 +10001075 pr_unimpl(&svm->vcpu, "%s: failed\n", __FUNCTION__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001076 return 1;
1077}
1078
1079static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
1080{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001081 struct vcpu_svm *svm = to_svm(vcpu);
1082
Avi Kivity6aa8b732006-12-10 02:21:36 -08001083 switch (ecx) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084 case MSR_IA32_TIME_STAMP_COUNTER: {
1085 u64 tsc;
1086
1087 rdtscll(tsc);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001088 *data = svm->vmcb->control.tsc_offset + tsc;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001089 break;
1090 }
Avi Kivity0e859ca2006-12-22 01:05:08 -08001091 case MSR_K6_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001092 *data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001093 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08001094#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001095 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001096 *data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001097 break;
1098 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001099 *data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001100 break;
1101 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001102 *data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103 break;
1104 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001105 *data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001106 break;
1107#endif
1108 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001109 *data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001110 break;
1111 case MSR_IA32_SYSENTER_EIP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001112 *data = svm->vmcb->save.sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001113 break;
1114 case MSR_IA32_SYSENTER_ESP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001115 *data = svm->vmcb->save.sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001116 break;
1117 default:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001118 return kvm_get_msr_common(vcpu, ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001119 }
1120 return 0;
1121}
1122
Rusty Russelle756fc62007-07-30 20:07:08 +10001123static int rdmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124{
Rusty Russelle756fc62007-07-30 20:07:08 +10001125 u32 ecx = svm->vcpu.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001126 u64 data;
1127
Rusty Russelle756fc62007-07-30 20:07:08 +10001128 if (svm_get_msr(&svm->vcpu, ecx, &data))
1129 svm_inject_gp(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001130 else {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001131 svm->vmcb->save.rax = data & 0xffffffff;
Rusty Russelle756fc62007-07-30 20:07:08 +10001132 svm->vcpu.regs[VCPU_REGS_RDX] = data >> 32;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001133 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001134 skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135 }
1136 return 1;
1137}
1138
1139static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
1140{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001141 struct vcpu_svm *svm = to_svm(vcpu);
1142
Avi Kivity6aa8b732006-12-10 02:21:36 -08001143 switch (ecx) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001144 case MSR_IA32_TIME_STAMP_COUNTER: {
1145 u64 tsc;
1146
1147 rdtscll(tsc);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001148 svm->vmcb->control.tsc_offset = data - tsc;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001149 break;
1150 }
Avi Kivity0e859ca2006-12-22 01:05:08 -08001151 case MSR_K6_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001152 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08001154#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001155 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001156 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001157 break;
1158 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001159 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001160 break;
1161 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001162 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001163 break;
1164 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001165 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001166 break;
1167#endif
1168 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001169 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001170 break;
1171 case MSR_IA32_SYSENTER_EIP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001172 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001173 break;
1174 case MSR_IA32_SYSENTER_ESP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001175 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001176 break;
1177 default:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001178 return kvm_set_msr_common(vcpu, ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001179 }
1180 return 0;
1181}
1182
Rusty Russelle756fc62007-07-30 20:07:08 +10001183static int wrmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001184{
Rusty Russelle756fc62007-07-30 20:07:08 +10001185 u32 ecx = svm->vcpu.regs[VCPU_REGS_RCX];
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001186 u64 data = (svm->vmcb->save.rax & -1u)
Rusty Russelle756fc62007-07-30 20:07:08 +10001187 | ((u64)(svm->vcpu.regs[VCPU_REGS_RDX] & -1u) << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001188 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001189 if (svm_set_msr(&svm->vcpu, ecx, data))
1190 svm_inject_gp(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001191 else
Rusty Russelle756fc62007-07-30 20:07:08 +10001192 skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001193 return 1;
1194}
1195
Rusty Russelle756fc62007-07-30 20:07:08 +10001196static int msr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001197{
Rusty Russelle756fc62007-07-30 20:07:08 +10001198 if (svm->vmcb->control.exit_info_1)
1199 return wrmsr_interception(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001200 else
Rusty Russelle756fc62007-07-30 20:07:08 +10001201 return rdmsr_interception(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001202}
1203
Rusty Russelle756fc62007-07-30 20:07:08 +10001204static int interrupt_window_interception(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001205 struct kvm_run *kvm_run)
1206{
Eddie Dong85f455f2007-07-06 12:20:49 +03001207 svm->vmcb->control.intercept &= ~(1ULL << INTERCEPT_VINTR);
1208 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
Dor Laorc1150d82007-01-05 16:36:24 -08001209 /*
1210 * If the user space waits to inject interrupts, exit as soon as
1211 * possible
1212 */
1213 if (kvm_run->request_interrupt_window &&
Rusty Russelle756fc62007-07-30 20:07:08 +10001214 !svm->vcpu.irq_summary) {
1215 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08001216 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
1217 return 0;
1218 }
1219
1220 return 1;
1221}
1222
Rusty Russelle756fc62007-07-30 20:07:08 +10001223static int (*svm_exit_handlers[])(struct vcpu_svm *svm,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001224 struct kvm_run *kvm_run) = {
1225 [SVM_EXIT_READ_CR0] = emulate_on_interception,
1226 [SVM_EXIT_READ_CR3] = emulate_on_interception,
1227 [SVM_EXIT_READ_CR4] = emulate_on_interception,
1228 /* for now: */
1229 [SVM_EXIT_WRITE_CR0] = emulate_on_interception,
1230 [SVM_EXIT_WRITE_CR3] = emulate_on_interception,
1231 [SVM_EXIT_WRITE_CR4] = emulate_on_interception,
1232 [SVM_EXIT_READ_DR0] = emulate_on_interception,
1233 [SVM_EXIT_READ_DR1] = emulate_on_interception,
1234 [SVM_EXIT_READ_DR2] = emulate_on_interception,
1235 [SVM_EXIT_READ_DR3] = emulate_on_interception,
1236 [SVM_EXIT_WRITE_DR0] = emulate_on_interception,
1237 [SVM_EXIT_WRITE_DR1] = emulate_on_interception,
1238 [SVM_EXIT_WRITE_DR2] = emulate_on_interception,
1239 [SVM_EXIT_WRITE_DR3] = emulate_on_interception,
1240 [SVM_EXIT_WRITE_DR5] = emulate_on_interception,
1241 [SVM_EXIT_WRITE_DR7] = emulate_on_interception,
1242 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Anthony Liguori7807fa62007-04-23 09:17:21 -05001243 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001244 [SVM_EXIT_INTR] = nop_on_interception,
1245 [SVM_EXIT_NMI] = nop_on_interception,
1246 [SVM_EXIT_SMI] = nop_on_interception,
1247 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08001248 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001249 /* [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception, */
1250 [SVM_EXIT_CPUID] = cpuid_interception,
1251 [SVM_EXIT_HLT] = halt_interception,
1252 [SVM_EXIT_INVLPG] = emulate_on_interception,
1253 [SVM_EXIT_INVLPGA] = invalid_op_interception,
1254 [SVM_EXIT_IOIO] = io_interception,
1255 [SVM_EXIT_MSR] = msr_interception,
1256 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08001257 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001258 [SVM_EXIT_VMRUN] = invalid_op_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02001259 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001260 [SVM_EXIT_VMLOAD] = invalid_op_interception,
1261 [SVM_EXIT_VMSAVE] = invalid_op_interception,
1262 [SVM_EXIT_STGI] = invalid_op_interception,
1263 [SVM_EXIT_CLGI] = invalid_op_interception,
1264 [SVM_EXIT_SKINIT] = invalid_op_interception,
Joerg Roedel916ce232007-03-21 19:47:00 +01001265 [SVM_EXIT_MONITOR] = invalid_op_interception,
1266 [SVM_EXIT_MWAIT] = invalid_op_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001267};
1268
1269
Rusty Russelle756fc62007-07-30 20:07:08 +10001270static int handle_exit(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001271{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001272 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001273
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001274 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08001275 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR)
1276 printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x "
1277 "exit_code 0x%x\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001278 __FUNCTION__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001279 exit_code);
1280
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02001281 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001282 || svm_exit_handlers[exit_code] == 0) {
1283 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
Avi Kivity364b6252007-04-16 14:28:40 +03001284 kvm_run->hw.hardware_exit_reason = exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001285 return 0;
1286 }
1287
Rusty Russelle756fc62007-07-30 20:07:08 +10001288 return svm_exit_handlers[exit_code](svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289}
1290
1291static void reload_tss(struct kvm_vcpu *vcpu)
1292{
1293 int cpu = raw_smp_processor_id();
1294
1295 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1296 svm_data->tss_desc->type = 9; //available 32/64-bit TSS
1297 load_TR_desc();
1298}
1299
Rusty Russelle756fc62007-07-30 20:07:08 +10001300static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001301{
1302 int cpu = raw_smp_processor_id();
1303
1304 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1305
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001306 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
Rusty Russelle756fc62007-07-30 20:07:08 +10001307 if (svm->vcpu.cpu != cpu ||
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001308 svm->asid_generation != svm_data->asid_generation)
Rusty Russelle756fc62007-07-30 20:07:08 +10001309 new_asid(svm, svm_data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001310}
1311
1312
Eddie Dong85f455f2007-07-06 12:20:49 +03001313static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001314{
1315 struct vmcb_control_area *control;
1316
Rusty Russelle756fc62007-07-30 20:07:08 +10001317 control = &svm->vmcb->control;
Eddie Dong85f455f2007-07-06 12:20:49 +03001318 control->int_vector = irq;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001319 control->int_ctl &= ~V_INTR_PRIO_MASK;
1320 control->int_ctl |= V_IRQ_MASK |
1321 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
1322}
1323
Eddie Dong2a8067f2007-08-06 16:29:07 +03001324static void svm_set_irq(struct kvm_vcpu *vcpu, int irq)
1325{
1326 struct vcpu_svm *svm = to_svm(vcpu);
1327
1328 svm_inject_irq(svm, irq);
1329}
1330
Eddie Dong85f455f2007-07-06 12:20:49 +03001331static void svm_intr_assist(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001332{
Eddie Dong85f455f2007-07-06 12:20:49 +03001333 struct vmcb *vmcb = svm->vmcb;
1334 int intr_vector = -1;
Eddie Dong1b9778d2007-09-03 16:56:58 +03001335 struct kvm_vcpu *vcpu = &svm->vcpu;
Eddie Dong85f455f2007-07-06 12:20:49 +03001336
Eddie Dong1b9778d2007-09-03 16:56:58 +03001337 kvm_inject_pending_timer_irqs(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03001338 if ((vmcb->control.exit_int_info & SVM_EVTINJ_VALID) &&
1339 ((vmcb->control.exit_int_info & SVM_EVTINJ_TYPE_MASK) == 0)) {
1340 intr_vector = vmcb->control.exit_int_info &
1341 SVM_EVTINJ_VEC_MASK;
1342 vmcb->control.exit_int_info = 0;
1343 svm_inject_irq(svm, intr_vector);
1344 return;
1345 }
1346
1347 if (vmcb->control.int_ctl & V_IRQ_MASK)
1348 return;
1349
Eddie Dong1b9778d2007-09-03 16:56:58 +03001350 if (!kvm_cpu_has_interrupt(vcpu))
Eddie Dong85f455f2007-07-06 12:20:49 +03001351 return;
1352
1353 if (!(vmcb->save.rflags & X86_EFLAGS_IF) ||
1354 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
1355 (vmcb->control.event_inj & SVM_EVTINJ_VALID)) {
1356 /* unable to deliver irq, set pending irq */
1357 vmcb->control.intercept |= (1ULL << INTERCEPT_VINTR);
1358 svm_inject_irq(svm, 0x0);
1359 return;
1360 }
1361 /* Okay, we can deliver the interrupt: grab it and update PIC state. */
Eddie Dong1b9778d2007-09-03 16:56:58 +03001362 intr_vector = kvm_cpu_get_interrupt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03001363 svm_inject_irq(svm, intr_vector);
Eddie Dong1b9778d2007-09-03 16:56:58 +03001364 kvm_timer_intr_post(vcpu, intr_vector);
Eddie Dong85f455f2007-07-06 12:20:49 +03001365}
1366
1367static void kvm_reput_irq(struct vcpu_svm *svm)
1368{
Rusty Russelle756fc62007-07-30 20:07:08 +10001369 struct vmcb_control_area *control = &svm->vmcb->control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001370
Eddie Dong7017fc32007-07-18 11:34:57 +03001371 if ((control->int_ctl & V_IRQ_MASK)
1372 && !irqchip_in_kernel(svm->vcpu.kvm)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001373 control->int_ctl &= ~V_IRQ_MASK;
Rusty Russelle756fc62007-07-30 20:07:08 +10001374 push_irq(&svm->vcpu, control->int_vector);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001375 }
Dor Laorc1150d82007-01-05 16:36:24 -08001376
Rusty Russelle756fc62007-07-30 20:07:08 +10001377 svm->vcpu.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08001378 !(control->int_state & SVM_INTERRUPT_SHADOW_MASK);
1379}
1380
Eddie Dong85f455f2007-07-06 12:20:49 +03001381static void svm_do_inject_vector(struct vcpu_svm *svm)
1382{
1383 struct kvm_vcpu *vcpu = &svm->vcpu;
1384 int word_index = __ffs(vcpu->irq_summary);
1385 int bit_index = __ffs(vcpu->irq_pending[word_index]);
1386 int irq = word_index * BITS_PER_LONG + bit_index;
1387
1388 clear_bit(bit_index, &vcpu->irq_pending[word_index]);
1389 if (!vcpu->irq_pending[word_index])
1390 clear_bit(word_index, &vcpu->irq_summary);
1391 svm_inject_irq(svm, irq);
1392}
1393
Rusty Russelle756fc62007-07-30 20:07:08 +10001394static void do_interrupt_requests(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001395 struct kvm_run *kvm_run)
1396{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001397 struct vmcb_control_area *control = &svm->vmcb->control;
Dor Laorc1150d82007-01-05 16:36:24 -08001398
Rusty Russelle756fc62007-07-30 20:07:08 +10001399 svm->vcpu.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08001400 (!(control->int_state & SVM_INTERRUPT_SHADOW_MASK) &&
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001401 (svm->vmcb->save.rflags & X86_EFLAGS_IF));
Dor Laorc1150d82007-01-05 16:36:24 -08001402
Rusty Russelle756fc62007-07-30 20:07:08 +10001403 if (svm->vcpu.interrupt_window_open && svm->vcpu.irq_summary)
Dor Laorc1150d82007-01-05 16:36:24 -08001404 /*
1405 * If interrupts enabled, and not blocked by sti or mov ss. Good.
1406 */
Eddie Dong85f455f2007-07-06 12:20:49 +03001407 svm_do_inject_vector(svm);
Dor Laorc1150d82007-01-05 16:36:24 -08001408
1409 /*
1410 * Interrupts blocked. Wait for unblock.
1411 */
Rusty Russelle756fc62007-07-30 20:07:08 +10001412 if (!svm->vcpu.interrupt_window_open &&
1413 (svm->vcpu.irq_summary || kvm_run->request_interrupt_window)) {
Dor Laorc1150d82007-01-05 16:36:24 -08001414 control->intercept |= 1ULL << INTERCEPT_VINTR;
1415 } else
1416 control->intercept &= ~(1ULL << INTERCEPT_VINTR);
1417}
1418
Rusty Russelle756fc62007-07-30 20:07:08 +10001419static void post_kvm_run_save(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001420 struct kvm_run *kvm_run)
1421{
Eddie Dongb6958ce2007-07-18 12:15:21 +03001422 if (irqchip_in_kernel(svm->vcpu.kvm))
1423 kvm_run->ready_for_interrupt_injection = 1;
1424 else
1425 kvm_run->ready_for_interrupt_injection =
1426 (svm->vcpu.interrupt_window_open &&
1427 svm->vcpu.irq_summary == 0);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001428 kvm_run->if_flag = (svm->vmcb->save.rflags & X86_EFLAGS_IF) != 0;
Eddie Dong7017fc32007-07-18 11:34:57 +03001429 kvm_run->cr8 = get_cr8(&svm->vcpu);
1430 kvm_run->apic_base = kvm_get_apic_base(&svm->vcpu);
Dor Laorc1150d82007-01-05 16:36:24 -08001431}
1432
1433/*
1434 * Check if userspace requested an interrupt window, and that the
1435 * interrupt window is open.
1436 *
1437 * No need to exit to userspace if we already have an interrupt queued.
1438 */
Rusty Russelle756fc62007-07-30 20:07:08 +10001439static int dm_request_for_irq_injection(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001440 struct kvm_run *kvm_run)
1441{
Rusty Russelle756fc62007-07-30 20:07:08 +10001442 return (!svm->vcpu.irq_summary &&
Dor Laorc1150d82007-01-05 16:36:24 -08001443 kvm_run->request_interrupt_window &&
Rusty Russelle756fc62007-07-30 20:07:08 +10001444 svm->vcpu.interrupt_window_open &&
1445 (svm->vmcb->save.rflags & X86_EFLAGS_IF));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446}
1447
1448static void save_db_regs(unsigned long *db_regs)
1449{
Avi Kivity5aff4582006-12-13 00:33:45 -08001450 asm volatile ("mov %%dr0, %0" : "=r"(db_regs[0]));
1451 asm volatile ("mov %%dr1, %0" : "=r"(db_regs[1]));
1452 asm volatile ("mov %%dr2, %0" : "=r"(db_regs[2]));
1453 asm volatile ("mov %%dr3, %0" : "=r"(db_regs[3]));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001454}
1455
1456static void load_db_regs(unsigned long *db_regs)
1457{
Avi Kivity5aff4582006-12-13 00:33:45 -08001458 asm volatile ("mov %0, %%dr0" : : "r"(db_regs[0]));
1459 asm volatile ("mov %0, %%dr1" : : "r"(db_regs[1]));
1460 asm volatile ("mov %0, %%dr2" : : "r"(db_regs[2]));
1461 asm volatile ("mov %0, %%dr3" : : "r"(db_regs[3]));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001462}
1463
Avi Kivityd9e368d2007-06-07 19:18:30 +03001464static void svm_flush_tlb(struct kvm_vcpu *vcpu)
1465{
1466 force_new_asid(vcpu);
1467}
1468
Avi Kivity6aa8b732006-12-10 02:21:36 -08001469static int svm_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1470{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001471 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001472 u16 fs_selector;
1473 u16 gs_selector;
1474 u16 ldt_selector;
Avi Kivitye2dec932007-01-05 16:36:54 -08001475 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001476
1477again:
Avi Kivity17c3ba92007-06-04 15:58:30 +03001478 r = kvm_mmu_reload(vcpu);
1479 if (unlikely(r))
1480 return r;
1481
Avi Kivity7e66f352007-08-15 15:23:34 +03001482 clgi();
1483
1484 if (signal_pending(current)) {
1485 stgi();
1486 ++vcpu->stat.signal_exits;
1487 post_kvm_run_save(svm, kvm_run);
1488 kvm_run->exit_reason = KVM_EXIT_INTR;
1489 return -EINTR;
1490 }
1491
Eddie Dong85f455f2007-07-06 12:20:49 +03001492 if (irqchip_in_kernel(vcpu->kvm))
1493 svm_intr_assist(svm);
1494 else if (!vcpu->mmio_read_completed)
Rusty Russelle756fc62007-07-30 20:07:08 +10001495 do_interrupt_requests(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496
Avi Kivityd9e368d2007-06-07 19:18:30 +03001497 vcpu->guest_mode = 1;
1498 if (vcpu->requests)
1499 if (test_and_clear_bit(KVM_TLB_FLUSH, &vcpu->requests))
1500 svm_flush_tlb(vcpu);
1501
Rusty Russelle756fc62007-07-30 20:07:08 +10001502 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001503
1504 save_host_msrs(vcpu);
1505 fs_selector = read_fs();
1506 gs_selector = read_gs();
1507 ldt_selector = read_ldt();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001508 svm->host_cr2 = kvm_read_cr2();
1509 svm->host_dr6 = read_dr6();
1510 svm->host_dr7 = read_dr7();
1511 svm->vmcb->save.cr2 = vcpu->cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001512
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001513 if (svm->vmcb->save.dr7 & 0xff) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001514 write_dr7(0);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001515 save_db_regs(svm->host_db_regs);
1516 load_db_regs(svm->db_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001517 }
Avi Kivity36241b82006-12-22 01:05:20 -08001518
Anthony Liguori7807fa62007-04-23 09:17:21 -05001519 if (vcpu->fpu_active) {
Rusty Russellb114b082007-07-30 21:13:43 +10001520 fx_save(&vcpu->host_fx_image);
1521 fx_restore(&vcpu->guest_fx_image);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001522 }
Avi Kivity36241b82006-12-22 01:05:20 -08001523
Avi Kivity6aa8b732006-12-10 02:21:36 -08001524 asm volatile (
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001525#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001526 "push %%rbx; push %%rcx; push %%rdx;"
1527 "push %%rsi; push %%rdi; push %%rbp;"
1528 "push %%r8; push %%r9; push %%r10; push %%r11;"
1529 "push %%r12; push %%r13; push %%r14; push %%r15;"
1530#else
1531 "push %%ebx; push %%ecx; push %%edx;"
1532 "push %%esi; push %%edi; push %%ebp;"
1533#endif
1534
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001535#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001536 "mov %c[rbx](%[svm]), %%rbx \n\t"
1537 "mov %c[rcx](%[svm]), %%rcx \n\t"
1538 "mov %c[rdx](%[svm]), %%rdx \n\t"
1539 "mov %c[rsi](%[svm]), %%rsi \n\t"
1540 "mov %c[rdi](%[svm]), %%rdi \n\t"
1541 "mov %c[rbp](%[svm]), %%rbp \n\t"
1542 "mov %c[r8](%[svm]), %%r8 \n\t"
1543 "mov %c[r9](%[svm]), %%r9 \n\t"
1544 "mov %c[r10](%[svm]), %%r10 \n\t"
1545 "mov %c[r11](%[svm]), %%r11 \n\t"
1546 "mov %c[r12](%[svm]), %%r12 \n\t"
1547 "mov %c[r13](%[svm]), %%r13 \n\t"
1548 "mov %c[r14](%[svm]), %%r14 \n\t"
1549 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001550#else
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001551 "mov %c[rbx](%[svm]), %%ebx \n\t"
1552 "mov %c[rcx](%[svm]), %%ecx \n\t"
1553 "mov %c[rdx](%[svm]), %%edx \n\t"
1554 "mov %c[rsi](%[svm]), %%esi \n\t"
1555 "mov %c[rdi](%[svm]), %%edi \n\t"
1556 "mov %c[rbp](%[svm]), %%ebp \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001557#endif
1558
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001559#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001560 /* Enter guest mode */
1561 "push %%rax \n\t"
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001562 "mov %c[vmcb](%[svm]), %%rax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563 SVM_VMLOAD "\n\t"
1564 SVM_VMRUN "\n\t"
1565 SVM_VMSAVE "\n\t"
1566 "pop %%rax \n\t"
1567#else
1568 /* Enter guest mode */
1569 "push %%eax \n\t"
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001570 "mov %c[vmcb](%[svm]), %%eax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571 SVM_VMLOAD "\n\t"
1572 SVM_VMRUN "\n\t"
1573 SVM_VMSAVE "\n\t"
1574 "pop %%eax \n\t"
1575#endif
1576
1577 /* Save guest registers, load host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001578#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001579 "mov %%rbx, %c[rbx](%[svm]) \n\t"
1580 "mov %%rcx, %c[rcx](%[svm]) \n\t"
1581 "mov %%rdx, %c[rdx](%[svm]) \n\t"
1582 "mov %%rsi, %c[rsi](%[svm]) \n\t"
1583 "mov %%rdi, %c[rdi](%[svm]) \n\t"
1584 "mov %%rbp, %c[rbp](%[svm]) \n\t"
1585 "mov %%r8, %c[r8](%[svm]) \n\t"
1586 "mov %%r9, %c[r9](%[svm]) \n\t"
1587 "mov %%r10, %c[r10](%[svm]) \n\t"
1588 "mov %%r11, %c[r11](%[svm]) \n\t"
1589 "mov %%r12, %c[r12](%[svm]) \n\t"
1590 "mov %%r13, %c[r13](%[svm]) \n\t"
1591 "mov %%r14, %c[r14](%[svm]) \n\t"
1592 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001593
1594 "pop %%r15; pop %%r14; pop %%r13; pop %%r12;"
1595 "pop %%r11; pop %%r10; pop %%r9; pop %%r8;"
1596 "pop %%rbp; pop %%rdi; pop %%rsi;"
1597 "pop %%rdx; pop %%rcx; pop %%rbx; \n\t"
1598#else
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001599 "mov %%ebx, %c[rbx](%[svm]) \n\t"
1600 "mov %%ecx, %c[rcx](%[svm]) \n\t"
1601 "mov %%edx, %c[rdx](%[svm]) \n\t"
1602 "mov %%esi, %c[rsi](%[svm]) \n\t"
1603 "mov %%edi, %c[rdi](%[svm]) \n\t"
1604 "mov %%ebp, %c[rbp](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001605
1606 "pop %%ebp; pop %%edi; pop %%esi;"
1607 "pop %%edx; pop %%ecx; pop %%ebx; \n\t"
1608#endif
1609 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001610 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08001611 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001612 [rbx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RBX])),
1613 [rcx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RCX])),
1614 [rdx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RDX])),
1615 [rsi]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RSI])),
1616 [rdi]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RDI])),
1617 [rbp]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001618#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001619 ,[r8 ]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R8])),
1620 [r9 ]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R9 ])),
1621 [r10]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R10])),
1622 [r11]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R11])),
1623 [r12]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R12])),
1624 [r13]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R13])),
1625 [r14]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R14])),
1626 [r15]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001627#endif
1628 : "cc", "memory" );
1629
Avi Kivityd9e368d2007-06-07 19:18:30 +03001630 vcpu->guest_mode = 0;
1631
Anthony Liguori7807fa62007-04-23 09:17:21 -05001632 if (vcpu->fpu_active) {
Rusty Russellb114b082007-07-30 21:13:43 +10001633 fx_save(&vcpu->guest_fx_image);
1634 fx_restore(&vcpu->host_fx_image);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001635 }
Avi Kivity36241b82006-12-22 01:05:20 -08001636
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001637 if ((svm->vmcb->save.dr7 & 0xff))
1638 load_db_regs(svm->host_db_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001639
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001640 vcpu->cr2 = svm->vmcb->save.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001641
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001642 write_dr6(svm->host_dr6);
1643 write_dr7(svm->host_dr7);
1644 kvm_write_cr2(svm->host_cr2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001645
1646 load_fs(fs_selector);
1647 load_gs(gs_selector);
1648 load_ldt(ldt_selector);
1649 load_host_msrs(vcpu);
1650
1651 reload_tss(vcpu);
1652
Ingo Molnar07031e12007-01-10 23:15:38 -08001653 /*
1654 * Profile KVM exit RIPs:
1655 */
1656 if (unlikely(prof_on == KVM_PROFILING))
1657 profile_hit(KVM_PROFILING,
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001658 (void *)(unsigned long)svm->vmcb->save.rip);
Ingo Molnar07031e12007-01-10 23:15:38 -08001659
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660 stgi();
1661
Eddie Dong85f455f2007-07-06 12:20:49 +03001662 kvm_reput_irq(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001663
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001664 svm->next_rip = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001665
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001666 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
Avi Kivity8eb7d332007-03-04 14:17:08 +02001667 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
1668 kvm_run->fail_entry.hardware_entry_failure_reason
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001669 = svm->vmcb->control.exit_code;
Rusty Russelle756fc62007-07-30 20:07:08 +10001670 post_kvm_run_save(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001671 return 0;
1672 }
1673
Rusty Russelle756fc62007-07-30 20:07:08 +10001674 r = handle_exit(svm, kvm_run);
Avi Kivitye2dec932007-01-05 16:36:54 -08001675 if (r > 0) {
Rusty Russelle756fc62007-07-30 20:07:08 +10001676 if (dm_request_for_irq_injection(svm, kvm_run)) {
Avi Kivity1165f5f2007-04-19 17:27:43 +03001677 ++vcpu->stat.request_irq_exits;
Rusty Russelle756fc62007-07-30 20:07:08 +10001678 post_kvm_run_save(svm, kvm_run);
Avi Kivity1b19f3e2007-03-04 14:24:03 +02001679 kvm_run->exit_reason = KVM_EXIT_INTR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001680 return -EINTR;
1681 }
1682 kvm_resched(vcpu);
1683 goto again;
1684 }
Rusty Russelle756fc62007-07-30 20:07:08 +10001685 post_kvm_run_save(svm, kvm_run);
Avi Kivitye2dec932007-01-05 16:36:54 -08001686 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001687}
1688
Avi Kivity6aa8b732006-12-10 02:21:36 -08001689static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
1690{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001691 struct vcpu_svm *svm = to_svm(vcpu);
1692
1693 svm->vmcb->save.cr3 = root;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001694 force_new_asid(vcpu);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001695
1696 if (vcpu->fpu_active) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001697 svm->vmcb->control.intercept_exceptions |= (1 << NM_VECTOR);
1698 svm->vmcb->save.cr0 |= X86_CR0_TS;
Anthony Liguori7807fa62007-04-23 09:17:21 -05001699 vcpu->fpu_active = 0;
1700 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701}
1702
1703static void svm_inject_page_fault(struct kvm_vcpu *vcpu,
1704 unsigned long addr,
1705 uint32_t err_code)
1706{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001707 struct vcpu_svm *svm = to_svm(vcpu);
1708 uint32_t exit_int_info = svm->vmcb->control.exit_int_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709
Avi Kivity1165f5f2007-04-19 17:27:43 +03001710 ++vcpu->stat.pf_guest;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711
1712 if (is_page_fault(exit_int_info)) {
1713
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001714 svm->vmcb->control.event_inj_err = 0;
1715 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
1716 SVM_EVTINJ_VALID_ERR |
1717 SVM_EVTINJ_TYPE_EXEPT |
1718 DF_VECTOR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001719 return;
1720 }
1721 vcpu->cr2 = addr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001722 svm->vmcb->save.cr2 = addr;
1723 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
1724 SVM_EVTINJ_VALID_ERR |
1725 SVM_EVTINJ_TYPE_EXEPT |
1726 PF_VECTOR;
1727 svm->vmcb->control.event_inj_err = err_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728}
1729
1730
1731static int is_disabled(void)
1732{
Joerg Roedel6031a612007-06-22 12:29:50 +03001733 u64 vm_cr;
1734
1735 rdmsrl(MSR_VM_CR, vm_cr);
1736 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
1737 return 1;
1738
Avi Kivity6aa8b732006-12-10 02:21:36 -08001739 return 0;
1740}
1741
Ingo Molnar102d8322007-02-19 14:37:47 +02001742static void
1743svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1744{
1745 /*
1746 * Patch in the VMMCALL instruction:
1747 */
1748 hypercall[0] = 0x0f;
1749 hypercall[1] = 0x01;
1750 hypercall[2] = 0xd9;
1751 hypercall[3] = 0xc3;
1752}
1753
Yang, Sheng002c7f72007-07-31 14:23:01 +03001754static void svm_check_processor_compat(void *rtn)
1755{
1756 *(int *)rtn = 0;
1757}
1758
Avi Kivity6aa8b732006-12-10 02:21:36 -08001759static struct kvm_arch_ops svm_arch_ops = {
1760 .cpu_has_kvm_support = has_svm,
1761 .disabled_by_bios = is_disabled,
1762 .hardware_setup = svm_hardware_setup,
1763 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03001764 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765 .hardware_enable = svm_hardware_enable,
1766 .hardware_disable = svm_hardware_disable,
1767
1768 .vcpu_create = svm_create_vcpu,
1769 .vcpu_free = svm_free_vcpu,
1770
1771 .vcpu_load = svm_vcpu_load,
1772 .vcpu_put = svm_vcpu_put,
Avi Kivity774c47f2007-02-12 00:54:47 -08001773 .vcpu_decache = svm_vcpu_decache,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001774
1775 .set_guest_debug = svm_guest_debug,
1776 .get_msr = svm_get_msr,
1777 .set_msr = svm_set_msr,
1778 .get_segment_base = svm_get_segment_base,
1779 .get_segment = svm_get_segment,
1780 .set_segment = svm_set_segment,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001781 .get_cs_db_l_bits = svm_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03001782 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001783 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001784 .set_cr3 = svm_set_cr3,
1785 .set_cr4 = svm_set_cr4,
1786 .set_efer = svm_set_efer,
1787 .get_idt = svm_get_idt,
1788 .set_idt = svm_set_idt,
1789 .get_gdt = svm_get_gdt,
1790 .set_gdt = svm_set_gdt,
1791 .get_dr = svm_get_dr,
1792 .set_dr = svm_set_dr,
1793 .cache_regs = svm_cache_regs,
1794 .decache_regs = svm_decache_regs,
1795 .get_rflags = svm_get_rflags,
1796 .set_rflags = svm_set_rflags,
1797
1798 .invlpg = svm_invlpg,
1799 .tlb_flush = svm_flush_tlb,
1800 .inject_page_fault = svm_inject_page_fault,
1801
1802 .inject_gp = svm_inject_gp,
1803
1804 .run = svm_vcpu_run,
1805 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02001806 .patch_hypercall = svm_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03001807 .get_irq = svm_get_irq,
1808 .set_irq = svm_set_irq,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001809};
1810
1811static int __init svm_init(void)
1812{
Rusty Russellc16f8622007-07-30 21:12:19 +10001813 return kvm_init_arch(&svm_arch_ops, sizeof(struct vcpu_svm),
1814 THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001815}
1816
1817static void __exit svm_exit(void)
1818{
1819 kvm_exit_arch();
1820}
1821
1822module_init(svm_init)
1823module_exit(svm_exit)