blob: e3c6d891326b8f70f408c0143e3a71f7849e4517 [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"
19
Avi Kivity6aa8b732006-12-10 02:21:36 -080020#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020021#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include <linux/vmalloc.h>
23#include <linux/highmem.h>
Ingo Molnar07031e12007-01-10 23:15:38 -080024#include <linux/profile.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040025#include <linux/sched.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080026
Avi Kivitye4956062007-06-28 14:15:57 -040027#include <asm/desc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080028
29MODULE_AUTHOR("Qumranet");
30MODULE_LICENSE("GPL");
31
32#define IOPM_ALLOC_ORDER 2
33#define MSRPM_ALLOC_ORDER 1
34
35#define DB_VECTOR 1
36#define UD_VECTOR 6
37#define GP_VECTOR 13
38
39#define DR7_GD_MASK (1 << 13)
40#define DR6_BD_MASK (1 << 13)
Avi Kivity6aa8b732006-12-10 02:21:36 -080041
42#define SEG_TYPE_LDT 2
43#define SEG_TYPE_BUSY_TSS16 3
44
45#define KVM_EFER_LMA (1 << 10)
46#define KVM_EFER_LME (1 << 8)
47
Joerg Roedel80b77062007-03-30 17:02:14 +030048#define SVM_FEATURE_NPT (1 << 0)
49#define SVM_FEATURE_LBRV (1 << 1)
50#define SVM_DEATURE_SVML (1 << 2)
51
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040052static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
53{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100054 return container_of(vcpu, struct vcpu_svm, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040055}
56
Avi Kivity6aa8b732006-12-10 02:21:36 -080057unsigned long iopm_base;
58unsigned long msrpm_base;
59
60struct kvm_ldttss_desc {
61 u16 limit0;
62 u16 base0;
63 unsigned base1 : 8, type : 5, dpl : 2, p : 1;
64 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8;
65 u32 base3;
66 u32 zero1;
67} __attribute__((packed));
68
69struct svm_cpu_data {
70 int cpu;
71
Avi Kivity5008fdf2007-04-02 13:05:50 +030072 u64 asid_generation;
73 u32 max_asid;
74 u32 next_asid;
Avi Kivity6aa8b732006-12-10 02:21:36 -080075 struct kvm_ldttss_desc *tss_desc;
76
77 struct page *save_area;
78};
79
80static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
Joerg Roedel80b77062007-03-30 17:02:14 +030081static uint32_t svm_features;
Avi Kivity6aa8b732006-12-10 02:21:36 -080082
83struct svm_init_data {
84 int cpu;
85 int r;
86};
87
88static u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
89
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020090#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
Avi Kivity6aa8b732006-12-10 02:21:36 -080091#define MSRS_RANGE_SIZE 2048
92#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
93
94#define MAX_INST_SIZE 15
95
Joerg Roedel80b77062007-03-30 17:02:14 +030096static inline u32 svm_has(u32 feat)
97{
98 return svm_features & feat;
99}
100
Avi Kivity6aa8b732006-12-10 02:21:36 -0800101static inline u8 pop_irq(struct kvm_vcpu *vcpu)
102{
103 int word_index = __ffs(vcpu->irq_summary);
104 int bit_index = __ffs(vcpu->irq_pending[word_index]);
105 int irq = word_index * BITS_PER_LONG + bit_index;
106
107 clear_bit(bit_index, &vcpu->irq_pending[word_index]);
108 if (!vcpu->irq_pending[word_index])
109 clear_bit(word_index, &vcpu->irq_summary);
110 return irq;
111}
112
113static inline void push_irq(struct kvm_vcpu *vcpu, u8 irq)
114{
115 set_bit(irq, vcpu->irq_pending);
116 set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
117}
118
119static inline void clgi(void)
120{
121 asm volatile (SVM_CLGI);
122}
123
124static inline void stgi(void)
125{
126 asm volatile (SVM_STGI);
127}
128
129static inline void invlpga(unsigned long addr, u32 asid)
130{
131 asm volatile (SVM_INVLPGA :: "a"(addr), "c"(asid));
132}
133
134static inline unsigned long kvm_read_cr2(void)
135{
136 unsigned long cr2;
137
138 asm volatile ("mov %%cr2, %0" : "=r" (cr2));
139 return cr2;
140}
141
142static inline void kvm_write_cr2(unsigned long val)
143{
144 asm volatile ("mov %0, %%cr2" :: "r" (val));
145}
146
147static inline unsigned long read_dr6(void)
148{
149 unsigned long dr6;
150
151 asm volatile ("mov %%dr6, %0" : "=r" (dr6));
152 return dr6;
153}
154
155static inline void write_dr6(unsigned long val)
156{
157 asm volatile ("mov %0, %%dr6" :: "r" (val));
158}
159
160static inline unsigned long read_dr7(void)
161{
162 unsigned long dr7;
163
164 asm volatile ("mov %%dr7, %0" : "=r" (dr7));
165 return dr7;
166}
167
168static inline void write_dr7(unsigned long val)
169{
170 asm volatile ("mov %0, %%dr7" :: "r" (val));
171}
172
Avi Kivity6aa8b732006-12-10 02:21:36 -0800173static inline void force_new_asid(struct kvm_vcpu *vcpu)
174{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400175 to_svm(vcpu)->asid_generation--;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800176}
177
178static inline void flush_guest_tlb(struct kvm_vcpu *vcpu)
179{
180 force_new_asid(vcpu);
181}
182
183static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
184{
185 if (!(efer & KVM_EFER_LMA))
186 efer &= ~KVM_EFER_LME;
187
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400188 to_svm(vcpu)->vmcb->save.efer = efer | MSR_EFER_SVME_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800189 vcpu->shadow_efer = efer;
190}
191
192static void svm_inject_gp(struct kvm_vcpu *vcpu, unsigned error_code)
193{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400194 struct vcpu_svm *svm = to_svm(vcpu);
195
196 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800197 SVM_EVTINJ_VALID_ERR |
198 SVM_EVTINJ_TYPE_EXEPT |
199 GP_VECTOR;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400200 svm->vmcb->control.event_inj_err = error_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800201}
202
203static void inject_ud(struct kvm_vcpu *vcpu)
204{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400205 to_svm(vcpu)->vmcb->control.event_inj = SVM_EVTINJ_VALID |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800206 SVM_EVTINJ_TYPE_EXEPT |
207 UD_VECTOR;
208}
209
Avi Kivity6aa8b732006-12-10 02:21:36 -0800210static int is_page_fault(uint32_t info)
211{
212 info &= SVM_EVTINJ_VEC_MASK | SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
213 return info == (PF_VECTOR | SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_EXEPT);
214}
215
216static int is_external_interrupt(u32 info)
217{
218 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
219 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
220}
221
222static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
223{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400224 struct vcpu_svm *svm = to_svm(vcpu);
225
226 if (!svm->next_rip) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800227 printk(KERN_DEBUG "%s: NOP\n", __FUNCTION__);
228 return;
229 }
Rusty Russell3077c4512007-07-30 16:41:57 +1000230 if (svm->next_rip - svm->vmcb->save.rip > MAX_INST_SIZE) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800231 printk(KERN_ERR "%s: ip 0x%llx next 0x%llx\n",
232 __FUNCTION__,
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400233 svm->vmcb->save.rip,
234 svm->next_rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800235 }
236
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400237 vcpu->rip = svm->vmcb->save.rip = svm->next_rip;
238 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
Dor Laorc1150d82007-01-05 16:36:24 -0800239
240 vcpu->interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800241}
242
243static int has_svm(void)
244{
245 uint32_t eax, ebx, ecx, edx;
246
Avi Kivity1e885462006-12-29 16:49:34 -0800247 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800248 printk(KERN_INFO "has_svm: not amd\n");
249 return 0;
250 }
251
252 cpuid(0x80000000, &eax, &ebx, &ecx, &edx);
253 if (eax < SVM_CPUID_FUNC) {
254 printk(KERN_INFO "has_svm: can't execute cpuid_8000000a\n");
255 return 0;
256 }
257
258 cpuid(0x80000001, &eax, &ebx, &ecx, &edx);
259 if (!(ecx & (1 << SVM_CPUID_FEATURE_SHIFT))) {
260 printk(KERN_DEBUG "has_svm: svm not available\n");
261 return 0;
262 }
263 return 1;
264}
265
266static void svm_hardware_disable(void *garbage)
267{
268 struct svm_cpu_data *svm_data
269 = per_cpu(svm_data, raw_smp_processor_id());
270
271 if (svm_data) {
272 uint64_t efer;
273
274 wrmsrl(MSR_VM_HSAVE_PA, 0);
275 rdmsrl(MSR_EFER, efer);
276 wrmsrl(MSR_EFER, efer & ~MSR_EFER_SVME_MASK);
Al Viro8b6d44c2007-02-09 16:38:40 +0000277 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800278 __free_page(svm_data->save_area);
279 kfree(svm_data);
280 }
281}
282
283static void svm_hardware_enable(void *garbage)
284{
285
286 struct svm_cpu_data *svm_data;
287 uint64_t efer;
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800288#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800289 struct desc_ptr gdt_descr;
290#else
291 struct Xgt_desc_struct gdt_descr;
292#endif
293 struct desc_struct *gdt;
294 int me = raw_smp_processor_id();
295
296 if (!has_svm()) {
297 printk(KERN_ERR "svm_cpu_init: err EOPNOTSUPP on %d\n", me);
298 return;
299 }
300 svm_data = per_cpu(svm_data, me);
301
302 if (!svm_data) {
303 printk(KERN_ERR "svm_cpu_init: svm_data is NULL on %d\n",
304 me);
305 return;
306 }
307
308 svm_data->asid_generation = 1;
309 svm_data->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
310 svm_data->next_asid = svm_data->max_asid + 1;
Joerg Roedel80b77062007-03-30 17:02:14 +0300311 svm_features = cpuid_edx(SVM_CPUID_FUNC);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800312
313 asm volatile ( "sgdt %0" : "=m"(gdt_descr) );
314 gdt = (struct desc_struct *)gdt_descr.address;
315 svm_data->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
316
317 rdmsrl(MSR_EFER, efer);
318 wrmsrl(MSR_EFER, efer | MSR_EFER_SVME_MASK);
319
320 wrmsrl(MSR_VM_HSAVE_PA,
321 page_to_pfn(svm_data->save_area) << PAGE_SHIFT);
322}
323
324static int svm_cpu_init(int cpu)
325{
326 struct svm_cpu_data *svm_data;
327 int r;
328
329 svm_data = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
330 if (!svm_data)
331 return -ENOMEM;
332 svm_data->cpu = cpu;
333 svm_data->save_area = alloc_page(GFP_KERNEL);
334 r = -ENOMEM;
335 if (!svm_data->save_area)
336 goto err_1;
337
338 per_cpu(svm_data, cpu) = svm_data;
339
340 return 0;
341
342err_1:
343 kfree(svm_data);
344 return r;
345
346}
347
Rusty Russellbfc733a2007-07-31 20:42:42 +1000348static void set_msr_interception(u32 *msrpm, unsigned msr,
349 int read, int write)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800350{
351 int i;
352
353 for (i = 0; i < NUM_MSR_MAPS; i++) {
354 if (msr >= msrpm_ranges[i] &&
355 msr < msrpm_ranges[i] + MSRS_IN_RANGE) {
356 u32 msr_offset = (i * MSRS_IN_RANGE + msr -
357 msrpm_ranges[i]) * 2;
358
359 u32 *base = msrpm + (msr_offset / 32);
360 u32 msr_shift = msr_offset % 32;
361 u32 mask = ((write) ? 0 : 2) | ((read) ? 0 : 1);
362 *base = (*base & ~(0x3 << msr_shift)) |
363 (mask << msr_shift);
Rusty Russellbfc733a2007-07-31 20:42:42 +1000364 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800365 }
366 }
Rusty Russellbfc733a2007-07-31 20:42:42 +1000367 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800368}
369
370static __init int svm_hardware_setup(void)
371{
372 int cpu;
373 struct page *iopm_pages;
374 struct page *msrpm_pages;
Anthony Liguoric8681332007-04-30 09:48:11 +0300375 void *iopm_va, *msrpm_va;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800376 int r;
377
Avi Kivity873a7c42006-12-13 00:34:14 -0800378 kvm_emulator_want_group7_invlpg();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800379
380 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
381
382 if (!iopm_pages)
383 return -ENOMEM;
Anthony Liguoric8681332007-04-30 09:48:11 +0300384
385 iopm_va = page_address(iopm_pages);
386 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
387 clear_bit(0x80, iopm_va); /* allow direct access to PC debug port */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800388 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
389
390
391 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
392
393 r = -ENOMEM;
394 if (!msrpm_pages)
395 goto err_1;
396
397 msrpm_va = page_address(msrpm_pages);
398 memset(msrpm_va, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
399 msrpm_base = page_to_pfn(msrpm_pages) << PAGE_SHIFT;
400
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800401#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800402 set_msr_interception(msrpm_va, MSR_GS_BASE, 1, 1);
403 set_msr_interception(msrpm_va, MSR_FS_BASE, 1, 1);
404 set_msr_interception(msrpm_va, MSR_KERNEL_GS_BASE, 1, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800405 set_msr_interception(msrpm_va, MSR_LSTAR, 1, 1);
406 set_msr_interception(msrpm_va, MSR_CSTAR, 1, 1);
407 set_msr_interception(msrpm_va, MSR_SYSCALL_MASK, 1, 1);
408#endif
Avi Kivity0e859ca2006-12-22 01:05:08 -0800409 set_msr_interception(msrpm_va, MSR_K6_STAR, 1, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800410 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_CS, 1, 1);
411 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_ESP, 1, 1);
412 set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_EIP, 1, 1);
413
414 for_each_online_cpu(cpu) {
415 r = svm_cpu_init(cpu);
416 if (r)
417 goto err_2;
418 }
419 return 0;
420
421err_2:
422 __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
423 msrpm_base = 0;
424err_1:
425 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
426 iopm_base = 0;
427 return r;
428}
429
430static __exit void svm_hardware_unsetup(void)
431{
432 __free_pages(pfn_to_page(msrpm_base >> PAGE_SHIFT), MSRPM_ALLOC_ORDER);
433 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
434 iopm_base = msrpm_base = 0;
435}
436
437static void init_seg(struct vmcb_seg *seg)
438{
439 seg->selector = 0;
440 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
441 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
442 seg->limit = 0xffff;
443 seg->base = 0;
444}
445
446static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
447{
448 seg->selector = 0;
449 seg->attrib = SVM_SELECTOR_P_MASK | type;
450 seg->limit = 0xffff;
451 seg->base = 0;
452}
453
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454static void init_vmcb(struct vmcb *vmcb)
455{
456 struct vmcb_control_area *control = &vmcb->control;
457 struct vmcb_save_area *save = &vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800458
459 control->intercept_cr_read = INTERCEPT_CR0_MASK |
460 INTERCEPT_CR3_MASK |
461 INTERCEPT_CR4_MASK;
462
463 control->intercept_cr_write = INTERCEPT_CR0_MASK |
464 INTERCEPT_CR3_MASK |
465 INTERCEPT_CR4_MASK;
466
467 control->intercept_dr_read = INTERCEPT_DR0_MASK |
468 INTERCEPT_DR1_MASK |
469 INTERCEPT_DR2_MASK |
470 INTERCEPT_DR3_MASK;
471
472 control->intercept_dr_write = INTERCEPT_DR0_MASK |
473 INTERCEPT_DR1_MASK |
474 INTERCEPT_DR2_MASK |
475 INTERCEPT_DR3_MASK |
476 INTERCEPT_DR5_MASK |
477 INTERCEPT_DR7_MASK;
478
479 control->intercept_exceptions = 1 << PF_VECTOR;
480
481
482 control->intercept = (1ULL << INTERCEPT_INTR) |
483 (1ULL << INTERCEPT_NMI) |
Joerg Roedel01525272007-02-19 14:37:47 +0200484 (1ULL << INTERCEPT_SMI) |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800485 /*
486 * selective cr0 intercept bug?
487 * 0: 0f 22 d8 mov %eax,%cr3
488 * 3: 0f 20 c0 mov %cr0,%eax
489 * 6: 0d 00 00 00 80 or $0x80000000,%eax
490 * b: 0f 22 c0 mov %eax,%cr0
491 * set cr3 ->interception
492 * get cr0 ->interception
493 * set cr0 -> no interception
494 */
495 /* (1ULL << INTERCEPT_SELECTIVE_CR0) | */
496 (1ULL << INTERCEPT_CPUID) |
497 (1ULL << INTERCEPT_HLT) |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800498 (1ULL << INTERCEPT_INVLPGA) |
499 (1ULL << INTERCEPT_IOIO_PROT) |
500 (1ULL << INTERCEPT_MSR_PROT) |
501 (1ULL << INTERCEPT_TASK_SWITCH) |
Joerg Roedel46fe4dd2007-01-26 00:56:42 -0800502 (1ULL << INTERCEPT_SHUTDOWN) |
Avi Kivity6aa8b732006-12-10 02:21:36 -0800503 (1ULL << INTERCEPT_VMRUN) |
504 (1ULL << INTERCEPT_VMMCALL) |
505 (1ULL << INTERCEPT_VMLOAD) |
506 (1ULL << INTERCEPT_VMSAVE) |
507 (1ULL << INTERCEPT_STGI) |
508 (1ULL << INTERCEPT_CLGI) |
Joerg Roedel916ce232007-03-21 19:47:00 +0100509 (1ULL << INTERCEPT_SKINIT) |
510 (1ULL << INTERCEPT_MONITOR) |
511 (1ULL << INTERCEPT_MWAIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800512
513 control->iopm_base_pa = iopm_base;
514 control->msrpm_base_pa = msrpm_base;
Avi Kivity0cc50642007-03-25 12:07:27 +0200515 control->tsc_offset = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800516 control->int_ctl = V_INTR_MASKING_MASK;
517
518 init_seg(&save->es);
519 init_seg(&save->ss);
520 init_seg(&save->ds);
521 init_seg(&save->fs);
522 init_seg(&save->gs);
523
524 save->cs.selector = 0xf000;
525 /* Executable/Readable Code Segment */
526 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
527 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
528 save->cs.limit = 0xffff;
Avi Kivityd92899a2007-02-12 00:54:38 -0800529 /*
530 * cs.base should really be 0xffff0000, but vmx can't handle that, so
531 * be consistent with it.
532 *
533 * Replace when we have real mode working for vmx.
534 */
535 save->cs.base = 0xf0000;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800536
537 save->gdtr.limit = 0xffff;
538 save->idtr.limit = 0xffff;
539
540 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
541 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
542
543 save->efer = MSR_EFER_SVME_MASK;
544
545 save->dr6 = 0xffff0ff0;
546 save->dr7 = 0x400;
547 save->rflags = 2;
548 save->rip = 0x0000fff0;
549
550 /*
551 * cr0 val on cpu init should be 0x60000010, we enable cpu
552 * cache by default. the orderly way is to enable cache in bios.
553 */
Rusty Russell707d92fa2007-07-17 23:19:08 +1000554 save->cr0 = 0x00000010 | X86_CR0_PG | X86_CR0_WP;
Rusty Russell66aee912007-07-17 23:34:16 +1000555 save->cr4 = X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800556 /* rdx = ?? */
557}
558
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000559static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800560{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400561 struct vcpu_svm *svm;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800562 struct page *page;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000563 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800564
Rusty Russellc16f8622007-07-30 21:12:19 +1000565 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000566 if (!svm) {
567 err = -ENOMEM;
568 goto out;
569 }
570
571 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
572 if (err)
573 goto free_svm;
574
Avi Kivity6aa8b732006-12-10 02:21:36 -0800575 page = alloc_page(GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000576 if (!page) {
577 err = -ENOMEM;
578 goto uninit;
579 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800580
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400581 svm->vmcb = page_address(page);
582 clear_page(svm->vmcb);
583 svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
584 svm->asid_generation = 0;
585 memset(svm->db_regs, 0, sizeof(svm->db_regs));
586 init_vmcb(svm->vmcb);
587
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000588 fx_init(&svm->vcpu);
589 svm->vcpu.fpu_active = 1;
590 svm->vcpu.apic_base = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
591 if (svm->vcpu.vcpu_id == 0)
592 svm->vcpu.apic_base |= MSR_IA32_APICBASE_BSP;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800593
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000594 return &svm->vcpu;
Avi Kivity36241b82006-12-22 01:05:20 -0800595
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000596uninit:
597 kvm_vcpu_uninit(&svm->vcpu);
598free_svm:
Rusty Russella4770342007-08-01 14:46:11 +1000599 kmem_cache_free(kvm_vcpu_cache, svm);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000600out:
601 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800602}
603
604static void svm_free_vcpu(struct kvm_vcpu *vcpu)
605{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400606 struct vcpu_svm *svm = to_svm(vcpu);
607
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000608 __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
609 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +1000610 kmem_cache_free(kvm_vcpu_cache, svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800611}
612
Avi Kivity15ad7142007-07-11 18:17:21 +0300613static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800614{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400615 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300616 int i;
Avi Kivity0cc50642007-03-25 12:07:27 +0200617
Avi Kivity0cc50642007-03-25 12:07:27 +0200618 if (unlikely(cpu != vcpu->cpu)) {
619 u64 tsc_this, delta;
620
621 /*
622 * Make sure that the guest sees a monotonically
623 * increasing TSC.
624 */
625 rdtscll(tsc_this);
626 delta = vcpu->host_tsc - tsc_this;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400627 svm->vmcb->control.tsc_offset += delta;
Avi Kivity0cc50642007-03-25 12:07:27 +0200628 vcpu->cpu = cpu;
629 }
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300630
631 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400632 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800633}
634
635static void svm_vcpu_put(struct kvm_vcpu *vcpu)
636{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400637 struct vcpu_svm *svm = to_svm(vcpu);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300638 int i;
639
640 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400641 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300642
Avi Kivity0cc50642007-03-25 12:07:27 +0200643 rdtscll(vcpu->host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800644}
645
Avi Kivity774c47f2007-02-12 00:54:47 -0800646static void svm_vcpu_decache(struct kvm_vcpu *vcpu)
647{
648}
649
Avi Kivity6aa8b732006-12-10 02:21:36 -0800650static void svm_cache_regs(struct kvm_vcpu *vcpu)
651{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400652 struct vcpu_svm *svm = to_svm(vcpu);
653
654 vcpu->regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
655 vcpu->regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
656 vcpu->rip = svm->vmcb->save.rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657}
658
659static void svm_decache_regs(struct kvm_vcpu *vcpu)
660{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400661 struct vcpu_svm *svm = to_svm(vcpu);
662 svm->vmcb->save.rax = vcpu->regs[VCPU_REGS_RAX];
663 svm->vmcb->save.rsp = vcpu->regs[VCPU_REGS_RSP];
664 svm->vmcb->save.rip = vcpu->rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800665}
666
667static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
668{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400669 return to_svm(vcpu)->vmcb->save.rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800670}
671
672static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
673{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400674 to_svm(vcpu)->vmcb->save.rflags = rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800675}
676
677static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
678{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400679 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680
681 switch (seg) {
682 case VCPU_SREG_CS: return &save->cs;
683 case VCPU_SREG_DS: return &save->ds;
684 case VCPU_SREG_ES: return &save->es;
685 case VCPU_SREG_FS: return &save->fs;
686 case VCPU_SREG_GS: return &save->gs;
687 case VCPU_SREG_SS: return &save->ss;
688 case VCPU_SREG_TR: return &save->tr;
689 case VCPU_SREG_LDTR: return &save->ldtr;
690 }
691 BUG();
Al Viro8b6d44c2007-02-09 16:38:40 +0000692 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800693}
694
695static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
696{
697 struct vmcb_seg *s = svm_seg(vcpu, seg);
698
699 return s->base;
700}
701
702static void svm_get_segment(struct kvm_vcpu *vcpu,
703 struct kvm_segment *var, int seg)
704{
705 struct vmcb_seg *s = svm_seg(vcpu, seg);
706
707 var->base = s->base;
708 var->limit = s->limit;
709 var->selector = s->selector;
710 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
711 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
712 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
713 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
714 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
715 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
716 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
717 var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1;
718 var->unusable = !var->present;
719}
720
721static void svm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
722{
723 struct vmcb_seg *s = svm_seg(vcpu, VCPU_SREG_CS);
724
725 *db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
726 *l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
727}
728
729static void svm_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
730{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400731 struct vcpu_svm *svm = to_svm(vcpu);
732
733 dt->limit = svm->vmcb->save.idtr.limit;
734 dt->base = svm->vmcb->save.idtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800735}
736
737static void svm_set_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 svm->vmcb->save.idtr.limit = dt->limit;
742 svm->vmcb->save.idtr.base = dt->base ;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800743}
744
745static void svm_get_gdt(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 dt->limit = svm->vmcb->save.gdtr.limit;
750 dt->base = svm->vmcb->save.gdtr.base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800751}
752
753static void svm_set_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 svm->vmcb->save.gdtr.limit = dt->limit;
758 svm->vmcb->save.gdtr.base = dt->base ;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800759}
760
Anthony Liguori25c4c272007-04-27 09:29:21 +0300761static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -0800762{
763}
764
Avi Kivity6aa8b732006-12-10 02:21:36 -0800765static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
766{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400767 struct vcpu_svm *svm = to_svm(vcpu);
768
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800769#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770 if (vcpu->shadow_efer & KVM_EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +1000771 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772 vcpu->shadow_efer |= KVM_EFER_LMA;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400773 svm->vmcb->save.efer |= KVM_EFER_LMA | KVM_EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800774 }
775
Rusty Russell707d92fa2007-07-17 23:19:08 +1000776 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG) ) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800777 vcpu->shadow_efer &= ~KVM_EFER_LMA;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400778 svm->vmcb->save.efer &= ~(KVM_EFER_LMA | KVM_EFER_LME);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800779 }
780 }
781#endif
Rusty Russell707d92fa2007-07-17 23:19:08 +1000782 if ((vcpu->cr0 & X86_CR0_TS) && !(cr0 & X86_CR0_TS)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400783 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
Anthony Liguori7807fa62007-04-23 09:17:21 -0500784 vcpu->fpu_active = 1;
785 }
786
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787 vcpu->cr0 = cr0;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000788 cr0 |= X86_CR0_PG | X86_CR0_WP;
789 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400790 svm->vmcb->save.cr0 = cr0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791}
792
793static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
794{
795 vcpu->cr4 = cr4;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400796 to_svm(vcpu)->vmcb->save.cr4 = cr4 | X86_CR4_PAE;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800797}
798
799static void svm_set_segment(struct kvm_vcpu *vcpu,
800 struct kvm_segment *var, int seg)
801{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400802 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800803 struct vmcb_seg *s = svm_seg(vcpu, seg);
804
805 s->base = var->base;
806 s->limit = var->limit;
807 s->selector = var->selector;
808 if (var->unusable)
809 s->attrib = 0;
810 else {
811 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
812 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
813 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
814 s->attrib |= (var->present & 1) << SVM_SELECTOR_P_SHIFT;
815 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
816 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
817 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
818 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
819 }
820 if (seg == VCPU_SREG_CS)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400821 svm->vmcb->save.cpl
822 = (svm->vmcb->save.cs.attrib
Avi Kivity6aa8b732006-12-10 02:21:36 -0800823 >> SVM_SELECTOR_DPL_SHIFT) & 3;
824
825}
826
827/* FIXME:
828
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400829 svm(vcpu)->vmcb->control.int_ctl &= ~V_TPR_MASK;
830 svm(vcpu)->vmcb->control.int_ctl |= (sregs->cr8 & V_TPR_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800831
832*/
833
834static int svm_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
835{
836 return -EOPNOTSUPP;
837}
838
839static void load_host_msrs(struct kvm_vcpu *vcpu)
840{
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300841#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400842 wrmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300843#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800844}
845
846static void save_host_msrs(struct kvm_vcpu *vcpu)
847{
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300848#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400849 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
Anthony Liguori94dfbdb2007-04-29 11:56:06 +0300850#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800851}
852
Rusty Russelle756fc62007-07-30 20:07:08 +1000853static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *svm_data)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800854{
855 if (svm_data->next_asid > svm_data->max_asid) {
856 ++svm_data->asid_generation;
857 svm_data->next_asid = 1;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400858 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800859 }
860
Rusty Russelle756fc62007-07-30 20:07:08 +1000861 svm->vcpu.cpu = svm_data->cpu;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400862 svm->asid_generation = svm_data->asid_generation;
863 svm->vmcb->control.asid = svm_data->next_asid++;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864}
865
866static void svm_invlpg(struct kvm_vcpu *vcpu, gva_t address)
867{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400868 invlpga(address, to_svm(vcpu)->vmcb->control.asid); // is needed?
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869}
870
871static unsigned long svm_get_dr(struct kvm_vcpu *vcpu, int dr)
872{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400873 return to_svm(vcpu)->db_regs[dr];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800874}
875
876static void svm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long value,
877 int *exception)
878{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400879 struct vcpu_svm *svm = to_svm(vcpu);
880
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881 *exception = 0;
882
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400883 if (svm->vmcb->save.dr7 & DR7_GD_MASK) {
884 svm->vmcb->save.dr7 &= ~DR7_GD_MASK;
885 svm->vmcb->save.dr6 |= DR6_BD_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886 *exception = DB_VECTOR;
887 return;
888 }
889
890 switch (dr) {
891 case 0 ... 3:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400892 svm->db_regs[dr] = value;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800893 return;
894 case 4 ... 5:
Rusty Russell66aee912007-07-17 23:34:16 +1000895 if (vcpu->cr4 & X86_CR4_DE) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800896 *exception = UD_VECTOR;
897 return;
898 }
899 case 7: {
900 if (value & ~((1ULL << 32) - 1)) {
901 *exception = GP_VECTOR;
902 return;
903 }
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400904 svm->vmcb->save.dr7 = value;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905 return;
906 }
907 default:
908 printk(KERN_DEBUG "%s: unexpected dr %u\n",
909 __FUNCTION__, dr);
910 *exception = UD_VECTOR;
911 return;
912 }
913}
914
Rusty Russelle756fc62007-07-30 20:07:08 +1000915static int pf_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800916{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400917 u32 exit_int_info = svm->vmcb->control.exit_int_info;
Rusty Russelle756fc62007-07-30 20:07:08 +1000918 struct kvm *kvm = svm->vcpu.kvm;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 u64 fault_address;
920 u32 error_code;
921 enum emulation_result er;
Avi Kivitye2dec932007-01-05 16:36:54 -0800922 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923
924 if (is_external_interrupt(exit_int_info))
Rusty Russelle756fc62007-07-30 20:07:08 +1000925 push_irq(&svm->vcpu, exit_int_info & SVM_EVTINJ_VEC_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800926
Rusty Russelle756fc62007-07-30 20:07:08 +1000927 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800928
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400929 fault_address = svm->vmcb->control.exit_info_2;
930 error_code = svm->vmcb->control.exit_info_1;
Rusty Russelle756fc62007-07-30 20:07:08 +1000931 r = kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code);
Avi Kivitye2dec932007-01-05 16:36:54 -0800932 if (r < 0) {
Rusty Russelle756fc62007-07-30 20:07:08 +1000933 mutex_unlock(&kvm->lock);
Avi Kivitye2dec932007-01-05 16:36:54 -0800934 return r;
935 }
936 if (!r) {
Rusty Russelle756fc62007-07-30 20:07:08 +1000937 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938 return 1;
939 }
Rusty Russelle756fc62007-07-30 20:07:08 +1000940 er = emulate_instruction(&svm->vcpu, kvm_run, fault_address,
941 error_code);
942 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943
944 switch (er) {
945 case EMULATE_DONE:
946 return 1;
947 case EMULATE_DO_MMIO:
Rusty Russelle756fc62007-07-30 20:07:08 +1000948 ++svm->vcpu.stat.mmio_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800949 return 0;
950 case EMULATE_FAIL:
Rusty Russelle756fc62007-07-30 20:07:08 +1000951 vcpu_printf(&svm->vcpu, "%s: emulate fail\n", __FUNCTION__);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800952 break;
953 default:
954 BUG();
955 }
956
957 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
958 return 0;
959}
960
Rusty Russelle756fc62007-07-30 20:07:08 +1000961static int nm_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Anthony Liguori7807fa62007-04-23 09:17:21 -0500962{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400963 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
Rusty Russelle756fc62007-07-30 20:07:08 +1000964 if (!(svm->vcpu.cr0 & X86_CR0_TS))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400965 svm->vmcb->save.cr0 &= ~X86_CR0_TS;
Rusty Russelle756fc62007-07-30 20:07:08 +1000966 svm->vcpu.fpu_active = 1;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400967
968 return 1;
Anthony Liguori7807fa62007-04-23 09:17:21 -0500969}
970
Rusty Russelle756fc62007-07-30 20:07:08 +1000971static int shutdown_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Joerg Roedel46fe4dd2007-01-26 00:56:42 -0800972{
973 /*
974 * VMCB is undefined after a SHUTDOWN intercept
975 * so reinitialize it.
976 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400977 clear_page(svm->vmcb);
978 init_vmcb(svm->vmcb);
Joerg Roedel46fe4dd2007-01-26 00:56:42 -0800979
980 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
981 return 0;
982}
983
Rusty Russelle756fc62007-07-30 20:07:08 +1000984static int io_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400986 u32 io_info = svm->vmcb->control.exit_info_1; //address size bug?
Avi Kivity039576c2007-03-20 12:46:50 +0200987 int size, down, in, string, rep;
988 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989
Rusty Russelle756fc62007-07-30 20:07:08 +1000990 ++svm->vcpu.stat.io_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400992 svm->next_rip = svm->vmcb->control.exit_info_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800993
Laurent Viviere70669a2007-08-05 10:36:40 +0300994 string = (io_info & SVM_IOIO_STR_MASK) != 0;
995
996 if (string) {
997 if (emulate_instruction(&svm->vcpu, kvm_run, 0, 0) == EMULATE_DO_MMIO)
998 return 0;
999 return 1;
1000 }
1001
Avi Kivity039576c2007-03-20 12:46:50 +02001002 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
1003 port = io_info >> 16;
1004 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
Avi Kivity039576c2007-03-20 12:46:50 +02001005 rep = (io_info & SVM_IOIO_REP_MASK) != 0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001006 down = (svm->vmcb->save.rflags & X86_EFLAGS_DF) != 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001007
Laurent Vivier3090dd72007-08-05 10:43:32 +03001008 return kvm_emulate_pio(&svm->vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009}
1010
Rusty Russelle756fc62007-07-30 20:07:08 +10001011static int nop_on_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012{
1013 return 1;
1014}
1015
Rusty Russelle756fc62007-07-30 20:07:08 +10001016static int halt_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001017{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001018 svm->next_rip = svm->vmcb->save.rip + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10001019 skip_emulated_instruction(&svm->vcpu);
1020 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021}
1022
Rusty Russelle756fc62007-07-30 20:07:08 +10001023static int vmmcall_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity02e235b2007-02-19 14:37:47 +02001024{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001025 svm->next_rip = svm->vmcb->save.rip + 3;
Rusty Russelle756fc62007-07-30 20:07:08 +10001026 skip_emulated_instruction(&svm->vcpu);
1027 return kvm_hypercall(&svm->vcpu, kvm_run);
Avi Kivity02e235b2007-02-19 14:37:47 +02001028}
1029
Rusty Russelle756fc62007-07-30 20:07:08 +10001030static int invalid_op_interception(struct vcpu_svm *svm,
1031 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032{
Rusty Russelle756fc62007-07-30 20:07:08 +10001033 inject_ud(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034 return 1;
1035}
1036
Rusty Russelle756fc62007-07-30 20:07:08 +10001037static int task_switch_interception(struct vcpu_svm *svm,
1038 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039{
Rusty Russellf0242472007-08-01 10:48:02 +10001040 pr_unimpl(&svm->vcpu, "%s: task switch is unsupported\n", __FUNCTION__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001041 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
1042 return 0;
1043}
1044
Rusty Russelle756fc62007-07-30 20:07:08 +10001045static int cpuid_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001047 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001048 kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity06465c52007-02-28 20:46:53 +02001049 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001050}
1051
Rusty Russelle756fc62007-07-30 20:07:08 +10001052static int emulate_on_interception(struct vcpu_svm *svm,
1053 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001054{
Rusty Russelle756fc62007-07-30 20:07:08 +10001055 if (emulate_instruction(&svm->vcpu, NULL, 0, 0) != EMULATE_DONE)
Rusty Russellf0242472007-08-01 10:48:02 +10001056 pr_unimpl(&svm->vcpu, "%s: failed\n", __FUNCTION__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057 return 1;
1058}
1059
1060static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
1061{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001062 struct vcpu_svm *svm = to_svm(vcpu);
1063
Avi Kivity6aa8b732006-12-10 02:21:36 -08001064 switch (ecx) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001065 case MSR_IA32_TIME_STAMP_COUNTER: {
1066 u64 tsc;
1067
1068 rdtscll(tsc);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001069 *data = svm->vmcb->control.tsc_offset + tsc;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001070 break;
1071 }
Avi Kivity0e859ca2006-12-22 01:05:08 -08001072 case MSR_K6_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001073 *data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08001075#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001076 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001077 *data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001078 break;
1079 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001080 *data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001081 break;
1082 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001083 *data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084 break;
1085 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001086 *data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001087 break;
1088#endif
1089 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001090 *data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001091 break;
1092 case MSR_IA32_SYSENTER_EIP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001093 *data = svm->vmcb->save.sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001094 break;
1095 case MSR_IA32_SYSENTER_ESP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001096 *data = svm->vmcb->save.sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001097 break;
1098 default:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001099 return kvm_get_msr_common(vcpu, ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001100 }
1101 return 0;
1102}
1103
Rusty Russelle756fc62007-07-30 20:07:08 +10001104static int rdmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001105{
Rusty Russelle756fc62007-07-30 20:07:08 +10001106 u32 ecx = svm->vcpu.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107 u64 data;
1108
Rusty Russelle756fc62007-07-30 20:07:08 +10001109 if (svm_get_msr(&svm->vcpu, ecx, &data))
1110 svm_inject_gp(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001111 else {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001112 svm->vmcb->save.rax = data & 0xffffffff;
Rusty Russelle756fc62007-07-30 20:07:08 +10001113 svm->vcpu.regs[VCPU_REGS_RDX] = data >> 32;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001114 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001115 skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001116 }
1117 return 1;
1118}
1119
1120static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
1121{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001122 struct vcpu_svm *svm = to_svm(vcpu);
1123
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124 switch (ecx) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001125 case MSR_IA32_TIME_STAMP_COUNTER: {
1126 u64 tsc;
1127
1128 rdtscll(tsc);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001129 svm->vmcb->control.tsc_offset = data - tsc;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001130 break;
1131 }
Avi Kivity0e859ca2006-12-22 01:05:08 -08001132 case MSR_K6_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001133 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001134 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08001135#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001136 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001137 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001138 break;
1139 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001140 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001141 break;
1142 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001143 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001144 break;
1145 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001146 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001147 break;
1148#endif
1149 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001150 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001151 break;
1152 case MSR_IA32_SYSENTER_EIP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001153 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001154 break;
1155 case MSR_IA32_SYSENTER_ESP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001156 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001157 break;
1158 default:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001159 return kvm_set_msr_common(vcpu, ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001160 }
1161 return 0;
1162}
1163
Rusty Russelle756fc62007-07-30 20:07:08 +10001164static int wrmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001165{
Rusty Russelle756fc62007-07-30 20:07:08 +10001166 u32 ecx = svm->vcpu.regs[VCPU_REGS_RCX];
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001167 u64 data = (svm->vmcb->save.rax & -1u)
Rusty Russelle756fc62007-07-30 20:07:08 +10001168 | ((u64)(svm->vcpu.regs[VCPU_REGS_RDX] & -1u) << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001169 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001170 if (svm_set_msr(&svm->vcpu, ecx, data))
1171 svm_inject_gp(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001172 else
Rusty Russelle756fc62007-07-30 20:07:08 +10001173 skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001174 return 1;
1175}
1176
Rusty Russelle756fc62007-07-30 20:07:08 +10001177static int msr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001178{
Rusty Russelle756fc62007-07-30 20:07:08 +10001179 if (svm->vmcb->control.exit_info_1)
1180 return wrmsr_interception(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001181 else
Rusty Russelle756fc62007-07-30 20:07:08 +10001182 return rdmsr_interception(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001183}
1184
Rusty Russelle756fc62007-07-30 20:07:08 +10001185static int interrupt_window_interception(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001186 struct kvm_run *kvm_run)
1187{
1188 /*
1189 * If the user space waits to inject interrupts, exit as soon as
1190 * possible
1191 */
1192 if (kvm_run->request_interrupt_window &&
Rusty Russelle756fc62007-07-30 20:07:08 +10001193 !svm->vcpu.irq_summary) {
1194 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08001195 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
1196 return 0;
1197 }
1198
1199 return 1;
1200}
1201
Rusty Russelle756fc62007-07-30 20:07:08 +10001202static int (*svm_exit_handlers[])(struct vcpu_svm *svm,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001203 struct kvm_run *kvm_run) = {
1204 [SVM_EXIT_READ_CR0] = emulate_on_interception,
1205 [SVM_EXIT_READ_CR3] = emulate_on_interception,
1206 [SVM_EXIT_READ_CR4] = emulate_on_interception,
1207 /* for now: */
1208 [SVM_EXIT_WRITE_CR0] = emulate_on_interception,
1209 [SVM_EXIT_WRITE_CR3] = emulate_on_interception,
1210 [SVM_EXIT_WRITE_CR4] = emulate_on_interception,
1211 [SVM_EXIT_READ_DR0] = emulate_on_interception,
1212 [SVM_EXIT_READ_DR1] = emulate_on_interception,
1213 [SVM_EXIT_READ_DR2] = emulate_on_interception,
1214 [SVM_EXIT_READ_DR3] = emulate_on_interception,
1215 [SVM_EXIT_WRITE_DR0] = emulate_on_interception,
1216 [SVM_EXIT_WRITE_DR1] = emulate_on_interception,
1217 [SVM_EXIT_WRITE_DR2] = emulate_on_interception,
1218 [SVM_EXIT_WRITE_DR3] = emulate_on_interception,
1219 [SVM_EXIT_WRITE_DR5] = emulate_on_interception,
1220 [SVM_EXIT_WRITE_DR7] = emulate_on_interception,
1221 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Anthony Liguori7807fa62007-04-23 09:17:21 -05001222 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001223 [SVM_EXIT_INTR] = nop_on_interception,
1224 [SVM_EXIT_NMI] = nop_on_interception,
1225 [SVM_EXIT_SMI] = nop_on_interception,
1226 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08001227 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001228 /* [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception, */
1229 [SVM_EXIT_CPUID] = cpuid_interception,
1230 [SVM_EXIT_HLT] = halt_interception,
1231 [SVM_EXIT_INVLPG] = emulate_on_interception,
1232 [SVM_EXIT_INVLPGA] = invalid_op_interception,
1233 [SVM_EXIT_IOIO] = io_interception,
1234 [SVM_EXIT_MSR] = msr_interception,
1235 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08001236 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001237 [SVM_EXIT_VMRUN] = invalid_op_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02001238 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001239 [SVM_EXIT_VMLOAD] = invalid_op_interception,
1240 [SVM_EXIT_VMSAVE] = invalid_op_interception,
1241 [SVM_EXIT_STGI] = invalid_op_interception,
1242 [SVM_EXIT_CLGI] = invalid_op_interception,
1243 [SVM_EXIT_SKINIT] = invalid_op_interception,
Joerg Roedel916ce232007-03-21 19:47:00 +01001244 [SVM_EXIT_MONITOR] = invalid_op_interception,
1245 [SVM_EXIT_MWAIT] = invalid_op_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001246};
1247
1248
Rusty Russelle756fc62007-07-30 20:07:08 +10001249static int handle_exit(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001250{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001251 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001252
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001253 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08001254 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR)
1255 printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x "
1256 "exit_code 0x%x\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001257 __FUNCTION__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001258 exit_code);
1259
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02001260 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001261 || svm_exit_handlers[exit_code] == 0) {
1262 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
Avi Kivity364b6252007-04-16 14:28:40 +03001263 kvm_run->hw.hardware_exit_reason = exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001264 return 0;
1265 }
1266
Rusty Russelle756fc62007-07-30 20:07:08 +10001267 return svm_exit_handlers[exit_code](svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001268}
1269
1270static void reload_tss(struct kvm_vcpu *vcpu)
1271{
1272 int cpu = raw_smp_processor_id();
1273
1274 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1275 svm_data->tss_desc->type = 9; //available 32/64-bit TSS
1276 load_TR_desc();
1277}
1278
Rusty Russelle756fc62007-07-30 20:07:08 +10001279static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001280{
1281 int cpu = raw_smp_processor_id();
1282
1283 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1284
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001285 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
Rusty Russelle756fc62007-07-30 20:07:08 +10001286 if (svm->vcpu.cpu != cpu ||
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001287 svm->asid_generation != svm_data->asid_generation)
Rusty Russelle756fc62007-07-30 20:07:08 +10001288 new_asid(svm, svm_data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289}
1290
1291
Rusty Russell0e5017d2007-07-30 20:08:05 +10001292static inline void inject_irq(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001293{
1294 struct vmcb_control_area *control;
1295
Rusty Russelle756fc62007-07-30 20:07:08 +10001296 control = &svm->vmcb->control;
1297 control->int_vector = pop_irq(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298 control->int_ctl &= ~V_INTR_PRIO_MASK;
1299 control->int_ctl |= V_IRQ_MASK |
1300 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
1301}
1302
Rusty Russell0e5017d2007-07-30 20:08:05 +10001303static void reput_irq(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001304{
Rusty Russelle756fc62007-07-30 20:07:08 +10001305 struct vmcb_control_area *control = &svm->vmcb->control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001306
1307 if (control->int_ctl & V_IRQ_MASK) {
1308 control->int_ctl &= ~V_IRQ_MASK;
Rusty Russelle756fc62007-07-30 20:07:08 +10001309 push_irq(&svm->vcpu, control->int_vector);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001310 }
Dor Laorc1150d82007-01-05 16:36:24 -08001311
Rusty Russelle756fc62007-07-30 20:07:08 +10001312 svm->vcpu.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08001313 !(control->int_state & SVM_INTERRUPT_SHADOW_MASK);
1314}
1315
Rusty Russelle756fc62007-07-30 20:07:08 +10001316static void do_interrupt_requests(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001317 struct kvm_run *kvm_run)
1318{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001319 struct vmcb_control_area *control = &svm->vmcb->control;
Dor Laorc1150d82007-01-05 16:36:24 -08001320
Rusty Russelle756fc62007-07-30 20:07:08 +10001321 svm->vcpu.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08001322 (!(control->int_state & SVM_INTERRUPT_SHADOW_MASK) &&
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001323 (svm->vmcb->save.rflags & X86_EFLAGS_IF));
Dor Laorc1150d82007-01-05 16:36:24 -08001324
Rusty Russelle756fc62007-07-30 20:07:08 +10001325 if (svm->vcpu.interrupt_window_open && svm->vcpu.irq_summary)
Dor Laorc1150d82007-01-05 16:36:24 -08001326 /*
1327 * If interrupts enabled, and not blocked by sti or mov ss. Good.
1328 */
Rusty Russell0e5017d2007-07-30 20:08:05 +10001329 inject_irq(svm);
Dor Laorc1150d82007-01-05 16:36:24 -08001330
1331 /*
1332 * Interrupts blocked. Wait for unblock.
1333 */
Rusty Russelle756fc62007-07-30 20:07:08 +10001334 if (!svm->vcpu.interrupt_window_open &&
1335 (svm->vcpu.irq_summary || kvm_run->request_interrupt_window)) {
Dor Laorc1150d82007-01-05 16:36:24 -08001336 control->intercept |= 1ULL << INTERCEPT_VINTR;
1337 } else
1338 control->intercept &= ~(1ULL << INTERCEPT_VINTR);
1339}
1340
Rusty Russelle756fc62007-07-30 20:07:08 +10001341static void post_kvm_run_save(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001342 struct kvm_run *kvm_run)
1343{
Rusty Russelle756fc62007-07-30 20:07:08 +10001344 kvm_run->ready_for_interrupt_injection
1345 = (svm->vcpu.interrupt_window_open &&
1346 svm->vcpu.irq_summary == 0);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001347 kvm_run->if_flag = (svm->vmcb->save.rflags & X86_EFLAGS_IF) != 0;
Rusty Russelle756fc62007-07-30 20:07:08 +10001348 kvm_run->cr8 = svm->vcpu.cr8;
1349 kvm_run->apic_base = svm->vcpu.apic_base;
Dor Laorc1150d82007-01-05 16:36:24 -08001350}
1351
1352/*
1353 * Check if userspace requested an interrupt window, and that the
1354 * interrupt window is open.
1355 *
1356 * No need to exit to userspace if we already have an interrupt queued.
1357 */
Rusty Russelle756fc62007-07-30 20:07:08 +10001358static int dm_request_for_irq_injection(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001359 struct kvm_run *kvm_run)
1360{
Rusty Russelle756fc62007-07-30 20:07:08 +10001361 return (!svm->vcpu.irq_summary &&
Dor Laorc1150d82007-01-05 16:36:24 -08001362 kvm_run->request_interrupt_window &&
Rusty Russelle756fc62007-07-30 20:07:08 +10001363 svm->vcpu.interrupt_window_open &&
1364 (svm->vmcb->save.rflags & X86_EFLAGS_IF));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001365}
1366
1367static void save_db_regs(unsigned long *db_regs)
1368{
Avi Kivity5aff4582006-12-13 00:33:45 -08001369 asm volatile ("mov %%dr0, %0" : "=r"(db_regs[0]));
1370 asm volatile ("mov %%dr1, %0" : "=r"(db_regs[1]));
1371 asm volatile ("mov %%dr2, %0" : "=r"(db_regs[2]));
1372 asm volatile ("mov %%dr3, %0" : "=r"(db_regs[3]));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001373}
1374
1375static void load_db_regs(unsigned long *db_regs)
1376{
Avi Kivity5aff4582006-12-13 00:33:45 -08001377 asm volatile ("mov %0, %%dr0" : : "r"(db_regs[0]));
1378 asm volatile ("mov %0, %%dr1" : : "r"(db_regs[1]));
1379 asm volatile ("mov %0, %%dr2" : : "r"(db_regs[2]));
1380 asm volatile ("mov %0, %%dr3" : : "r"(db_regs[3]));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001381}
1382
Avi Kivityd9e368d2007-06-07 19:18:30 +03001383static void svm_flush_tlb(struct kvm_vcpu *vcpu)
1384{
1385 force_new_asid(vcpu);
1386}
1387
Avi Kivity6aa8b732006-12-10 02:21:36 -08001388static int svm_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1389{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001390 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001391 u16 fs_selector;
1392 u16 gs_selector;
1393 u16 ldt_selector;
Avi Kivitye2dec932007-01-05 16:36:54 -08001394 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001395
1396again:
Avi Kivity17c3ba92007-06-04 15:58:30 +03001397 r = kvm_mmu_reload(vcpu);
1398 if (unlikely(r))
1399 return r;
1400
Avi Kivitycccf7482007-01-22 20:40:39 -08001401 if (!vcpu->mmio_read_completed)
Rusty Russelle756fc62007-07-30 20:07:08 +10001402 do_interrupt_requests(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403
1404 clgi();
1405
Avi Kivityd9e368d2007-06-07 19:18:30 +03001406 vcpu->guest_mode = 1;
1407 if (vcpu->requests)
1408 if (test_and_clear_bit(KVM_TLB_FLUSH, &vcpu->requests))
1409 svm_flush_tlb(vcpu);
1410
Rusty Russelle756fc62007-07-30 20:07:08 +10001411 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001412
1413 save_host_msrs(vcpu);
1414 fs_selector = read_fs();
1415 gs_selector = read_gs();
1416 ldt_selector = read_ldt();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001417 svm->host_cr2 = kvm_read_cr2();
1418 svm->host_dr6 = read_dr6();
1419 svm->host_dr7 = read_dr7();
1420 svm->vmcb->save.cr2 = vcpu->cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001422 if (svm->vmcb->save.dr7 & 0xff) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001423 write_dr7(0);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001424 save_db_regs(svm->host_db_regs);
1425 load_db_regs(svm->db_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001426 }
Avi Kivity36241b82006-12-22 01:05:20 -08001427
Anthony Liguori7807fa62007-04-23 09:17:21 -05001428 if (vcpu->fpu_active) {
Rusty Russellb114b082007-07-30 21:13:43 +10001429 fx_save(&vcpu->host_fx_image);
1430 fx_restore(&vcpu->guest_fx_image);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001431 }
Avi Kivity36241b82006-12-22 01:05:20 -08001432
Avi Kivity6aa8b732006-12-10 02:21:36 -08001433 asm volatile (
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001434#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001435 "push %%rbx; push %%rcx; push %%rdx;"
1436 "push %%rsi; push %%rdi; push %%rbp;"
1437 "push %%r8; push %%r9; push %%r10; push %%r11;"
1438 "push %%r12; push %%r13; push %%r14; push %%r15;"
1439#else
1440 "push %%ebx; push %%ecx; push %%edx;"
1441 "push %%esi; push %%edi; push %%ebp;"
1442#endif
1443
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001444#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001445 "mov %c[rbx](%[svm]), %%rbx \n\t"
1446 "mov %c[rcx](%[svm]), %%rcx \n\t"
1447 "mov %c[rdx](%[svm]), %%rdx \n\t"
1448 "mov %c[rsi](%[svm]), %%rsi \n\t"
1449 "mov %c[rdi](%[svm]), %%rdi \n\t"
1450 "mov %c[rbp](%[svm]), %%rbp \n\t"
1451 "mov %c[r8](%[svm]), %%r8 \n\t"
1452 "mov %c[r9](%[svm]), %%r9 \n\t"
1453 "mov %c[r10](%[svm]), %%r10 \n\t"
1454 "mov %c[r11](%[svm]), %%r11 \n\t"
1455 "mov %c[r12](%[svm]), %%r12 \n\t"
1456 "mov %c[r13](%[svm]), %%r13 \n\t"
1457 "mov %c[r14](%[svm]), %%r14 \n\t"
1458 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001459#else
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001460 "mov %c[rbx](%[svm]), %%ebx \n\t"
1461 "mov %c[rcx](%[svm]), %%ecx \n\t"
1462 "mov %c[rdx](%[svm]), %%edx \n\t"
1463 "mov %c[rsi](%[svm]), %%esi \n\t"
1464 "mov %c[rdi](%[svm]), %%edi \n\t"
1465 "mov %c[rbp](%[svm]), %%ebp \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001466#endif
1467
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001468#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001469 /* Enter guest mode */
1470 "push %%rax \n\t"
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001471 "mov %c[vmcb](%[svm]), %%rax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001472 SVM_VMLOAD "\n\t"
1473 SVM_VMRUN "\n\t"
1474 SVM_VMSAVE "\n\t"
1475 "pop %%rax \n\t"
1476#else
1477 /* Enter guest mode */
1478 "push %%eax \n\t"
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001479 "mov %c[vmcb](%[svm]), %%eax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001480 SVM_VMLOAD "\n\t"
1481 SVM_VMRUN "\n\t"
1482 SVM_VMSAVE "\n\t"
1483 "pop %%eax \n\t"
1484#endif
1485
1486 /* Save guest registers, load host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001487#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001488 "mov %%rbx, %c[rbx](%[svm]) \n\t"
1489 "mov %%rcx, %c[rcx](%[svm]) \n\t"
1490 "mov %%rdx, %c[rdx](%[svm]) \n\t"
1491 "mov %%rsi, %c[rsi](%[svm]) \n\t"
1492 "mov %%rdi, %c[rdi](%[svm]) \n\t"
1493 "mov %%rbp, %c[rbp](%[svm]) \n\t"
1494 "mov %%r8, %c[r8](%[svm]) \n\t"
1495 "mov %%r9, %c[r9](%[svm]) \n\t"
1496 "mov %%r10, %c[r10](%[svm]) \n\t"
1497 "mov %%r11, %c[r11](%[svm]) \n\t"
1498 "mov %%r12, %c[r12](%[svm]) \n\t"
1499 "mov %%r13, %c[r13](%[svm]) \n\t"
1500 "mov %%r14, %c[r14](%[svm]) \n\t"
1501 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001502
1503 "pop %%r15; pop %%r14; pop %%r13; pop %%r12;"
1504 "pop %%r11; pop %%r10; pop %%r9; pop %%r8;"
1505 "pop %%rbp; pop %%rdi; pop %%rsi;"
1506 "pop %%rdx; pop %%rcx; pop %%rbx; \n\t"
1507#else
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001508 "mov %%ebx, %c[rbx](%[svm]) \n\t"
1509 "mov %%ecx, %c[rcx](%[svm]) \n\t"
1510 "mov %%edx, %c[rdx](%[svm]) \n\t"
1511 "mov %%esi, %c[rsi](%[svm]) \n\t"
1512 "mov %%edi, %c[rdi](%[svm]) \n\t"
1513 "mov %%ebp, %c[rbp](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001514
1515 "pop %%ebp; pop %%edi; pop %%esi;"
1516 "pop %%edx; pop %%ecx; pop %%ebx; \n\t"
1517#endif
1518 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001519 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08001520 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001521 [rbx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RBX])),
1522 [rcx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RCX])),
1523 [rdx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RDX])),
1524 [rsi]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RSI])),
1525 [rdi]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RDI])),
1526 [rbp]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001527#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001528 ,[r8 ]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R8])),
1529 [r9 ]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R9 ])),
1530 [r10]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R10])),
1531 [r11]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R11])),
1532 [r12]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R12])),
1533 [r13]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R13])),
1534 [r14]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R14])),
1535 [r15]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001536#endif
1537 : "cc", "memory" );
1538
Avi Kivityd9e368d2007-06-07 19:18:30 +03001539 vcpu->guest_mode = 0;
1540
Anthony Liguori7807fa62007-04-23 09:17:21 -05001541 if (vcpu->fpu_active) {
Rusty Russellb114b082007-07-30 21:13:43 +10001542 fx_save(&vcpu->guest_fx_image);
1543 fx_restore(&vcpu->host_fx_image);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001544 }
Avi Kivity36241b82006-12-22 01:05:20 -08001545
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001546 if ((svm->vmcb->save.dr7 & 0xff))
1547 load_db_regs(svm->host_db_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001548
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001549 vcpu->cr2 = svm->vmcb->save.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001550
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001551 write_dr6(svm->host_dr6);
1552 write_dr7(svm->host_dr7);
1553 kvm_write_cr2(svm->host_cr2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001554
1555 load_fs(fs_selector);
1556 load_gs(gs_selector);
1557 load_ldt(ldt_selector);
1558 load_host_msrs(vcpu);
1559
1560 reload_tss(vcpu);
1561
Ingo Molnar07031e12007-01-10 23:15:38 -08001562 /*
1563 * Profile KVM exit RIPs:
1564 */
1565 if (unlikely(prof_on == KVM_PROFILING))
1566 profile_hit(KVM_PROFILING,
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001567 (void *)(unsigned long)svm->vmcb->save.rip);
Ingo Molnar07031e12007-01-10 23:15:38 -08001568
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569 stgi();
1570
Rusty Russell0e5017d2007-07-30 20:08:05 +10001571 reput_irq(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001573 svm->next_rip = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001574
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001575 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
Avi Kivity8eb7d332007-03-04 14:17:08 +02001576 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
1577 kvm_run->fail_entry.hardware_entry_failure_reason
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001578 = svm->vmcb->control.exit_code;
Rusty Russelle756fc62007-07-30 20:07:08 +10001579 post_kvm_run_save(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001580 return 0;
1581 }
1582
Rusty Russelle756fc62007-07-30 20:07:08 +10001583 r = handle_exit(svm, kvm_run);
Avi Kivitye2dec932007-01-05 16:36:54 -08001584 if (r > 0) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001585 if (signal_pending(current)) {
Avi Kivity1165f5f2007-04-19 17:27:43 +03001586 ++vcpu->stat.signal_exits;
Rusty Russelle756fc62007-07-30 20:07:08 +10001587 post_kvm_run_save(svm, kvm_run);
Avi Kivity1b19f3e2007-03-04 14:24:03 +02001588 kvm_run->exit_reason = KVM_EXIT_INTR;
Dor Laorc1150d82007-01-05 16:36:24 -08001589 return -EINTR;
1590 }
1591
Rusty Russelle756fc62007-07-30 20:07:08 +10001592 if (dm_request_for_irq_injection(svm, kvm_run)) {
Avi Kivity1165f5f2007-04-19 17:27:43 +03001593 ++vcpu->stat.request_irq_exits;
Rusty Russelle756fc62007-07-30 20:07:08 +10001594 post_kvm_run_save(svm, kvm_run);
Avi Kivity1b19f3e2007-03-04 14:24:03 +02001595 kvm_run->exit_reason = KVM_EXIT_INTR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001596 return -EINTR;
1597 }
1598 kvm_resched(vcpu);
1599 goto again;
1600 }
Rusty Russelle756fc62007-07-30 20:07:08 +10001601 post_kvm_run_save(svm, kvm_run);
Avi Kivitye2dec932007-01-05 16:36:54 -08001602 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001603}
1604
Avi Kivity6aa8b732006-12-10 02:21:36 -08001605static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
1606{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001607 struct vcpu_svm *svm = to_svm(vcpu);
1608
1609 svm->vmcb->save.cr3 = root;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001610 force_new_asid(vcpu);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001611
1612 if (vcpu->fpu_active) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001613 svm->vmcb->control.intercept_exceptions |= (1 << NM_VECTOR);
1614 svm->vmcb->save.cr0 |= X86_CR0_TS;
Anthony Liguori7807fa62007-04-23 09:17:21 -05001615 vcpu->fpu_active = 0;
1616 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001617}
1618
1619static void svm_inject_page_fault(struct kvm_vcpu *vcpu,
1620 unsigned long addr,
1621 uint32_t err_code)
1622{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001623 struct vcpu_svm *svm = to_svm(vcpu);
1624 uint32_t exit_int_info = svm->vmcb->control.exit_int_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001625
Avi Kivity1165f5f2007-04-19 17:27:43 +03001626 ++vcpu->stat.pf_guest;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001627
1628 if (is_page_fault(exit_int_info)) {
1629
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001630 svm->vmcb->control.event_inj_err = 0;
1631 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
1632 SVM_EVTINJ_VALID_ERR |
1633 SVM_EVTINJ_TYPE_EXEPT |
1634 DF_VECTOR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001635 return;
1636 }
1637 vcpu->cr2 = addr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001638 svm->vmcb->save.cr2 = addr;
1639 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
1640 SVM_EVTINJ_VALID_ERR |
1641 SVM_EVTINJ_TYPE_EXEPT |
1642 PF_VECTOR;
1643 svm->vmcb->control.event_inj_err = err_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001644}
1645
1646
1647static int is_disabled(void)
1648{
Joerg Roedel6031a612007-06-22 12:29:50 +03001649 u64 vm_cr;
1650
1651 rdmsrl(MSR_VM_CR, vm_cr);
1652 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
1653 return 1;
1654
Avi Kivity6aa8b732006-12-10 02:21:36 -08001655 return 0;
1656}
1657
Ingo Molnar102d8322007-02-19 14:37:47 +02001658static void
1659svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1660{
1661 /*
1662 * Patch in the VMMCALL instruction:
1663 */
1664 hypercall[0] = 0x0f;
1665 hypercall[1] = 0x01;
1666 hypercall[2] = 0xd9;
1667 hypercall[3] = 0xc3;
1668}
1669
Yang, Sheng002c7f72007-07-31 14:23:01 +03001670static void svm_check_processor_compat(void *rtn)
1671{
1672 *(int *)rtn = 0;
1673}
1674
Avi Kivity6aa8b732006-12-10 02:21:36 -08001675static struct kvm_arch_ops svm_arch_ops = {
1676 .cpu_has_kvm_support = has_svm,
1677 .disabled_by_bios = is_disabled,
1678 .hardware_setup = svm_hardware_setup,
1679 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03001680 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681 .hardware_enable = svm_hardware_enable,
1682 .hardware_disable = svm_hardware_disable,
1683
1684 .vcpu_create = svm_create_vcpu,
1685 .vcpu_free = svm_free_vcpu,
1686
1687 .vcpu_load = svm_vcpu_load,
1688 .vcpu_put = svm_vcpu_put,
Avi Kivity774c47f2007-02-12 00:54:47 -08001689 .vcpu_decache = svm_vcpu_decache,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001690
1691 .set_guest_debug = svm_guest_debug,
1692 .get_msr = svm_get_msr,
1693 .set_msr = svm_set_msr,
1694 .get_segment_base = svm_get_segment_base,
1695 .get_segment = svm_get_segment,
1696 .set_segment = svm_set_segment,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001697 .get_cs_db_l_bits = svm_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03001698 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001699 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001700 .set_cr3 = svm_set_cr3,
1701 .set_cr4 = svm_set_cr4,
1702 .set_efer = svm_set_efer,
1703 .get_idt = svm_get_idt,
1704 .set_idt = svm_set_idt,
1705 .get_gdt = svm_get_gdt,
1706 .set_gdt = svm_set_gdt,
1707 .get_dr = svm_get_dr,
1708 .set_dr = svm_set_dr,
1709 .cache_regs = svm_cache_regs,
1710 .decache_regs = svm_decache_regs,
1711 .get_rflags = svm_get_rflags,
1712 .set_rflags = svm_set_rflags,
1713
1714 .invlpg = svm_invlpg,
1715 .tlb_flush = svm_flush_tlb,
1716 .inject_page_fault = svm_inject_page_fault,
1717
1718 .inject_gp = svm_inject_gp,
1719
1720 .run = svm_vcpu_run,
1721 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02001722 .patch_hypercall = svm_patch_hypercall,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001723};
1724
1725static int __init svm_init(void)
1726{
Rusty Russellc16f8622007-07-30 21:12:19 +10001727 return kvm_init_arch(&svm_arch_ops, sizeof(struct vcpu_svm),
1728 THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001729}
1730
1731static void __exit svm_exit(void)
1732{
1733 kvm_exit_arch();
1734}
1735
1736module_init(svm_init)
1737module_exit(svm_exit)