blob: a83ff01bb01488dd8b3bfd7cf4cca02524677e93 [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 Russell707d92f2007-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 Russell707d92f2007-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 Russell707d92f2007-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 Russell707d92f2007-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 Russell707d92f2007-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 Viviere70669a2007-08-05 10:36:40 +03001008 return kvm_setup_pio(&svm->vcpu, kvm_run, in, size, 1, 0,
1009 down, 0, rep, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010}
1011
Rusty Russelle756fc62007-07-30 20:07:08 +10001012static int nop_on_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013{
1014 return 1;
1015}
1016
Rusty Russelle756fc62007-07-30 20:07:08 +10001017static int halt_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001019 svm->next_rip = svm->vmcb->save.rip + 1;
Rusty Russelle756fc62007-07-30 20:07:08 +10001020 skip_emulated_instruction(&svm->vcpu);
1021 return kvm_emulate_halt(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022}
1023
Rusty Russelle756fc62007-07-30 20:07:08 +10001024static int vmmcall_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity02e235b2007-02-19 14:37:47 +02001025{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001026 svm->next_rip = svm->vmcb->save.rip + 3;
Rusty Russelle756fc62007-07-30 20:07:08 +10001027 skip_emulated_instruction(&svm->vcpu);
1028 return kvm_hypercall(&svm->vcpu, kvm_run);
Avi Kivity02e235b2007-02-19 14:37:47 +02001029}
1030
Rusty Russelle756fc62007-07-30 20:07:08 +10001031static int invalid_op_interception(struct vcpu_svm *svm,
1032 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001033{
Rusty Russelle756fc62007-07-30 20:07:08 +10001034 inject_ud(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001035 return 1;
1036}
1037
Rusty Russelle756fc62007-07-30 20:07:08 +10001038static int task_switch_interception(struct vcpu_svm *svm,
1039 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001040{
Rusty Russellf0242472007-08-01 10:48:02 +10001041 pr_unimpl(&svm->vcpu, "%s: task switch is unsupported\n", __FUNCTION__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
1043 return 0;
1044}
1045
Rusty Russelle756fc62007-07-30 20:07:08 +10001046static int cpuid_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001047{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001048 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001049 kvm_emulate_cpuid(&svm->vcpu);
Avi Kivity06465c52007-02-28 20:46:53 +02001050 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051}
1052
Rusty Russelle756fc62007-07-30 20:07:08 +10001053static int emulate_on_interception(struct vcpu_svm *svm,
1054 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055{
Rusty Russelle756fc62007-07-30 20:07:08 +10001056 if (emulate_instruction(&svm->vcpu, NULL, 0, 0) != EMULATE_DONE)
Rusty Russellf0242472007-08-01 10:48:02 +10001057 pr_unimpl(&svm->vcpu, "%s: failed\n", __FUNCTION__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058 return 1;
1059}
1060
1061static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
1062{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001063 struct vcpu_svm *svm = to_svm(vcpu);
1064
Avi Kivity6aa8b732006-12-10 02:21:36 -08001065 switch (ecx) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001066 case MSR_IA32_TIME_STAMP_COUNTER: {
1067 u64 tsc;
1068
1069 rdtscll(tsc);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001070 *data = svm->vmcb->control.tsc_offset + tsc;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001071 break;
1072 }
Avi Kivity0e859ca2006-12-22 01:05:08 -08001073 case MSR_K6_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001074 *data = svm->vmcb->save.star;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075 break;
Avi Kivity0e859ca2006-12-22 01:05:08 -08001076#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001077 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001078 *data = svm->vmcb->save.lstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079 break;
1080 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001081 *data = svm->vmcb->save.cstar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001082 break;
1083 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001084 *data = svm->vmcb->save.kernel_gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001085 break;
1086 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001087 *data = svm->vmcb->save.sfmask;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001088 break;
1089#endif
1090 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001091 *data = svm->vmcb->save.sysenter_cs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001092 break;
1093 case MSR_IA32_SYSENTER_EIP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001094 *data = svm->vmcb->save.sysenter_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001095 break;
1096 case MSR_IA32_SYSENTER_ESP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001097 *data = svm->vmcb->save.sysenter_esp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001098 break;
1099 default:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001100 return kvm_get_msr_common(vcpu, ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001101 }
1102 return 0;
1103}
1104
Rusty Russelle756fc62007-07-30 20:07:08 +10001105static int rdmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001106{
Rusty Russelle756fc62007-07-30 20:07:08 +10001107 u32 ecx = svm->vcpu.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001108 u64 data;
1109
Rusty Russelle756fc62007-07-30 20:07:08 +10001110 if (svm_get_msr(&svm->vcpu, ecx, &data))
1111 svm_inject_gp(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001112 else {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001113 svm->vmcb->save.rax = data & 0xffffffff;
Rusty Russelle756fc62007-07-30 20:07:08 +10001114 svm->vcpu.regs[VCPU_REGS_RDX] = data >> 32;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001115 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001116 skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001117 }
1118 return 1;
1119}
1120
1121static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
1122{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001123 struct vcpu_svm *svm = to_svm(vcpu);
1124
Avi Kivity6aa8b732006-12-10 02:21:36 -08001125 switch (ecx) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001126 case MSR_IA32_TIME_STAMP_COUNTER: {
1127 u64 tsc;
1128
1129 rdtscll(tsc);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001130 svm->vmcb->control.tsc_offset = data - tsc;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001131 break;
1132 }
Avi Kivity0e859ca2006-12-22 01:05:08 -08001133 case MSR_K6_STAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001134 svm->vmcb->save.star = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135 break;
Robert P. J. Day49b14f22007-01-29 13:19:50 -08001136#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001137 case MSR_LSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001138 svm->vmcb->save.lstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001139 break;
1140 case MSR_CSTAR:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001141 svm->vmcb->save.cstar = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142 break;
1143 case MSR_KERNEL_GS_BASE:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001144 svm->vmcb->save.kernel_gs_base = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001145 break;
1146 case MSR_SYSCALL_MASK:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001147 svm->vmcb->save.sfmask = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001148 break;
1149#endif
1150 case MSR_IA32_SYSENTER_CS:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001151 svm->vmcb->save.sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001152 break;
1153 case MSR_IA32_SYSENTER_EIP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001154 svm->vmcb->save.sysenter_eip = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001155 break;
1156 case MSR_IA32_SYSENTER_ESP:
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001157 svm->vmcb->save.sysenter_esp = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001158 break;
1159 default:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001160 return kvm_set_msr_common(vcpu, ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001161 }
1162 return 0;
1163}
1164
Rusty Russelle756fc62007-07-30 20:07:08 +10001165static int wrmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001166{
Rusty Russelle756fc62007-07-30 20:07:08 +10001167 u32 ecx = svm->vcpu.regs[VCPU_REGS_RCX];
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001168 u64 data = (svm->vmcb->save.rax & -1u)
Rusty Russelle756fc62007-07-30 20:07:08 +10001169 | ((u64)(svm->vcpu.regs[VCPU_REGS_RDX] & -1u) << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001170 svm->next_rip = svm->vmcb->save.rip + 2;
Rusty Russelle756fc62007-07-30 20:07:08 +10001171 if (svm_set_msr(&svm->vcpu, ecx, data))
1172 svm_inject_gp(&svm->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001173 else
Rusty Russelle756fc62007-07-30 20:07:08 +10001174 skip_emulated_instruction(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001175 return 1;
1176}
1177
Rusty Russelle756fc62007-07-30 20:07:08 +10001178static int msr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001179{
Rusty Russelle756fc62007-07-30 20:07:08 +10001180 if (svm->vmcb->control.exit_info_1)
1181 return wrmsr_interception(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001182 else
Rusty Russelle756fc62007-07-30 20:07:08 +10001183 return rdmsr_interception(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001184}
1185
Rusty Russelle756fc62007-07-30 20:07:08 +10001186static int interrupt_window_interception(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001187 struct kvm_run *kvm_run)
1188{
1189 /*
1190 * If the user space waits to inject interrupts, exit as soon as
1191 * possible
1192 */
1193 if (kvm_run->request_interrupt_window &&
Rusty Russelle756fc62007-07-30 20:07:08 +10001194 !svm->vcpu.irq_summary) {
1195 ++svm->vcpu.stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08001196 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
1197 return 0;
1198 }
1199
1200 return 1;
1201}
1202
Rusty Russelle756fc62007-07-30 20:07:08 +10001203static int (*svm_exit_handlers[])(struct vcpu_svm *svm,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001204 struct kvm_run *kvm_run) = {
1205 [SVM_EXIT_READ_CR0] = emulate_on_interception,
1206 [SVM_EXIT_READ_CR3] = emulate_on_interception,
1207 [SVM_EXIT_READ_CR4] = emulate_on_interception,
1208 /* for now: */
1209 [SVM_EXIT_WRITE_CR0] = emulate_on_interception,
1210 [SVM_EXIT_WRITE_CR3] = emulate_on_interception,
1211 [SVM_EXIT_WRITE_CR4] = emulate_on_interception,
1212 [SVM_EXIT_READ_DR0] = emulate_on_interception,
1213 [SVM_EXIT_READ_DR1] = emulate_on_interception,
1214 [SVM_EXIT_READ_DR2] = emulate_on_interception,
1215 [SVM_EXIT_READ_DR3] = emulate_on_interception,
1216 [SVM_EXIT_WRITE_DR0] = emulate_on_interception,
1217 [SVM_EXIT_WRITE_DR1] = emulate_on_interception,
1218 [SVM_EXIT_WRITE_DR2] = emulate_on_interception,
1219 [SVM_EXIT_WRITE_DR3] = emulate_on_interception,
1220 [SVM_EXIT_WRITE_DR5] = emulate_on_interception,
1221 [SVM_EXIT_WRITE_DR7] = emulate_on_interception,
1222 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
Anthony Liguori7807fa62007-04-23 09:17:21 -05001223 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001224 [SVM_EXIT_INTR] = nop_on_interception,
1225 [SVM_EXIT_NMI] = nop_on_interception,
1226 [SVM_EXIT_SMI] = nop_on_interception,
1227 [SVM_EXIT_INIT] = nop_on_interception,
Dor Laorc1150d82007-01-05 16:36:24 -08001228 [SVM_EXIT_VINTR] = interrupt_window_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001229 /* [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception, */
1230 [SVM_EXIT_CPUID] = cpuid_interception,
1231 [SVM_EXIT_HLT] = halt_interception,
1232 [SVM_EXIT_INVLPG] = emulate_on_interception,
1233 [SVM_EXIT_INVLPGA] = invalid_op_interception,
1234 [SVM_EXIT_IOIO] = io_interception,
1235 [SVM_EXIT_MSR] = msr_interception,
1236 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
Joerg Roedel46fe4dd2007-01-26 00:56:42 -08001237 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001238 [SVM_EXIT_VMRUN] = invalid_op_interception,
Avi Kivity02e235b2007-02-19 14:37:47 +02001239 [SVM_EXIT_VMMCALL] = vmmcall_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001240 [SVM_EXIT_VMLOAD] = invalid_op_interception,
1241 [SVM_EXIT_VMSAVE] = invalid_op_interception,
1242 [SVM_EXIT_STGI] = invalid_op_interception,
1243 [SVM_EXIT_CLGI] = invalid_op_interception,
1244 [SVM_EXIT_SKINIT] = invalid_op_interception,
Joerg Roedel916ce232007-03-21 19:47:00 +01001245 [SVM_EXIT_MONITOR] = invalid_op_interception,
1246 [SVM_EXIT_MWAIT] = invalid_op_interception,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001247};
1248
1249
Rusty Russelle756fc62007-07-30 20:07:08 +10001250static int handle_exit(struct vcpu_svm *svm, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001251{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001252 u32 exit_code = svm->vmcb->control.exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001253
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001254 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08001255 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR)
1256 printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x "
1257 "exit_code 0x%x\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001258 __FUNCTION__, svm->vmcb->control.exit_int_info,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001259 exit_code);
1260
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +02001261 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001262 || svm_exit_handlers[exit_code] == 0) {
1263 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
Avi Kivity364b6252007-04-16 14:28:40 +03001264 kvm_run->hw.hardware_exit_reason = exit_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001265 return 0;
1266 }
1267
Rusty Russelle756fc62007-07-30 20:07:08 +10001268 return svm_exit_handlers[exit_code](svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001269}
1270
1271static void reload_tss(struct kvm_vcpu *vcpu)
1272{
1273 int cpu = raw_smp_processor_id();
1274
1275 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1276 svm_data->tss_desc->type = 9; //available 32/64-bit TSS
1277 load_TR_desc();
1278}
1279
Rusty Russelle756fc62007-07-30 20:07:08 +10001280static void pre_svm_run(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001281{
1282 int cpu = raw_smp_processor_id();
1283
1284 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1285
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001286 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
Rusty Russelle756fc62007-07-30 20:07:08 +10001287 if (svm->vcpu.cpu != cpu ||
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001288 svm->asid_generation != svm_data->asid_generation)
Rusty Russelle756fc62007-07-30 20:07:08 +10001289 new_asid(svm, svm_data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001290}
1291
1292
Rusty Russell0e5017d2007-07-30 20:08:05 +10001293static inline void inject_irq(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001294{
1295 struct vmcb_control_area *control;
1296
Rusty Russelle756fc62007-07-30 20:07:08 +10001297 control = &svm->vmcb->control;
1298 control->int_vector = pop_irq(&svm->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001299 control->int_ctl &= ~V_INTR_PRIO_MASK;
1300 control->int_ctl |= V_IRQ_MASK |
1301 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
1302}
1303
Rusty Russell0e5017d2007-07-30 20:08:05 +10001304static void reput_irq(struct vcpu_svm *svm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001305{
Rusty Russelle756fc62007-07-30 20:07:08 +10001306 struct vmcb_control_area *control = &svm->vmcb->control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307
1308 if (control->int_ctl & V_IRQ_MASK) {
1309 control->int_ctl &= ~V_IRQ_MASK;
Rusty Russelle756fc62007-07-30 20:07:08 +10001310 push_irq(&svm->vcpu, control->int_vector);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001311 }
Dor Laorc1150d82007-01-05 16:36:24 -08001312
Rusty Russelle756fc62007-07-30 20:07:08 +10001313 svm->vcpu.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08001314 !(control->int_state & SVM_INTERRUPT_SHADOW_MASK);
1315}
1316
Rusty Russelle756fc62007-07-30 20:07:08 +10001317static void do_interrupt_requests(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001318 struct kvm_run *kvm_run)
1319{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001320 struct vmcb_control_area *control = &svm->vmcb->control;
Dor Laorc1150d82007-01-05 16:36:24 -08001321
Rusty Russelle756fc62007-07-30 20:07:08 +10001322 svm->vcpu.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08001323 (!(control->int_state & SVM_INTERRUPT_SHADOW_MASK) &&
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001324 (svm->vmcb->save.rflags & X86_EFLAGS_IF));
Dor Laorc1150d82007-01-05 16:36:24 -08001325
Rusty Russelle756fc62007-07-30 20:07:08 +10001326 if (svm->vcpu.interrupt_window_open && svm->vcpu.irq_summary)
Dor Laorc1150d82007-01-05 16:36:24 -08001327 /*
1328 * If interrupts enabled, and not blocked by sti or mov ss. Good.
1329 */
Rusty Russell0e5017d2007-07-30 20:08:05 +10001330 inject_irq(svm);
Dor Laorc1150d82007-01-05 16:36:24 -08001331
1332 /*
1333 * Interrupts blocked. Wait for unblock.
1334 */
Rusty Russelle756fc62007-07-30 20:07:08 +10001335 if (!svm->vcpu.interrupt_window_open &&
1336 (svm->vcpu.irq_summary || kvm_run->request_interrupt_window)) {
Dor Laorc1150d82007-01-05 16:36:24 -08001337 control->intercept |= 1ULL << INTERCEPT_VINTR;
1338 } else
1339 control->intercept &= ~(1ULL << INTERCEPT_VINTR);
1340}
1341
Rusty Russelle756fc62007-07-30 20:07:08 +10001342static void post_kvm_run_save(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001343 struct kvm_run *kvm_run)
1344{
Rusty Russelle756fc62007-07-30 20:07:08 +10001345 kvm_run->ready_for_interrupt_injection
1346 = (svm->vcpu.interrupt_window_open &&
1347 svm->vcpu.irq_summary == 0);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001348 kvm_run->if_flag = (svm->vmcb->save.rflags & X86_EFLAGS_IF) != 0;
Rusty Russelle756fc62007-07-30 20:07:08 +10001349 kvm_run->cr8 = svm->vcpu.cr8;
1350 kvm_run->apic_base = svm->vcpu.apic_base;
Dor Laorc1150d82007-01-05 16:36:24 -08001351}
1352
1353/*
1354 * Check if userspace requested an interrupt window, and that the
1355 * interrupt window is open.
1356 *
1357 * No need to exit to userspace if we already have an interrupt queued.
1358 */
Rusty Russelle756fc62007-07-30 20:07:08 +10001359static int dm_request_for_irq_injection(struct vcpu_svm *svm,
Dor Laorc1150d82007-01-05 16:36:24 -08001360 struct kvm_run *kvm_run)
1361{
Rusty Russelle756fc62007-07-30 20:07:08 +10001362 return (!svm->vcpu.irq_summary &&
Dor Laorc1150d82007-01-05 16:36:24 -08001363 kvm_run->request_interrupt_window &&
Rusty Russelle756fc62007-07-30 20:07:08 +10001364 svm->vcpu.interrupt_window_open &&
1365 (svm->vmcb->save.rflags & X86_EFLAGS_IF));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001366}
1367
1368static void save_db_regs(unsigned long *db_regs)
1369{
Avi Kivity5aff4582006-12-13 00:33:45 -08001370 asm volatile ("mov %%dr0, %0" : "=r"(db_regs[0]));
1371 asm volatile ("mov %%dr1, %0" : "=r"(db_regs[1]));
1372 asm volatile ("mov %%dr2, %0" : "=r"(db_regs[2]));
1373 asm volatile ("mov %%dr3, %0" : "=r"(db_regs[3]));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001374}
1375
1376static void load_db_regs(unsigned long *db_regs)
1377{
Avi Kivity5aff4582006-12-13 00:33:45 -08001378 asm volatile ("mov %0, %%dr0" : : "r"(db_regs[0]));
1379 asm volatile ("mov %0, %%dr1" : : "r"(db_regs[1]));
1380 asm volatile ("mov %0, %%dr2" : : "r"(db_regs[2]));
1381 asm volatile ("mov %0, %%dr3" : : "r"(db_regs[3]));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001382}
1383
Avi Kivityd9e368d2007-06-07 19:18:30 +03001384static void svm_flush_tlb(struct kvm_vcpu *vcpu)
1385{
1386 force_new_asid(vcpu);
1387}
1388
Avi Kivity6aa8b732006-12-10 02:21:36 -08001389static int svm_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1390{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001391 struct vcpu_svm *svm = to_svm(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001392 u16 fs_selector;
1393 u16 gs_selector;
1394 u16 ldt_selector;
Avi Kivitye2dec932007-01-05 16:36:54 -08001395 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001396
1397again:
Avi Kivity17c3ba92007-06-04 15:58:30 +03001398 r = kvm_mmu_reload(vcpu);
1399 if (unlikely(r))
1400 return r;
1401
Avi Kivitycccf7482007-01-22 20:40:39 -08001402 if (!vcpu->mmio_read_completed)
Rusty Russelle756fc62007-07-30 20:07:08 +10001403 do_interrupt_requests(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001404
1405 clgi();
1406
Avi Kivityd9e368d2007-06-07 19:18:30 +03001407 vcpu->guest_mode = 1;
1408 if (vcpu->requests)
1409 if (test_and_clear_bit(KVM_TLB_FLUSH, &vcpu->requests))
1410 svm_flush_tlb(vcpu);
1411
Rusty Russelle756fc62007-07-30 20:07:08 +10001412 pre_svm_run(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413
1414 save_host_msrs(vcpu);
1415 fs_selector = read_fs();
1416 gs_selector = read_gs();
1417 ldt_selector = read_ldt();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001418 svm->host_cr2 = kvm_read_cr2();
1419 svm->host_dr6 = read_dr6();
1420 svm->host_dr7 = read_dr7();
1421 svm->vmcb->save.cr2 = vcpu->cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001422
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001423 if (svm->vmcb->save.dr7 & 0xff) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424 write_dr7(0);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001425 save_db_regs(svm->host_db_regs);
1426 load_db_regs(svm->db_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001427 }
Avi Kivity36241b82006-12-22 01:05:20 -08001428
Anthony Liguori7807fa62007-04-23 09:17:21 -05001429 if (vcpu->fpu_active) {
Rusty Russellb114b082007-07-30 21:13:43 +10001430 fx_save(&vcpu->host_fx_image);
1431 fx_restore(&vcpu->guest_fx_image);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001432 }
Avi Kivity36241b82006-12-22 01:05:20 -08001433
Avi Kivity6aa8b732006-12-10 02:21:36 -08001434 asm volatile (
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001435#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001436 "push %%rbx; push %%rcx; push %%rdx;"
1437 "push %%rsi; push %%rdi; push %%rbp;"
1438 "push %%r8; push %%r9; push %%r10; push %%r11;"
1439 "push %%r12; push %%r13; push %%r14; push %%r15;"
1440#else
1441 "push %%ebx; push %%ecx; push %%edx;"
1442 "push %%esi; push %%edi; push %%ebp;"
1443#endif
1444
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001445#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001446 "mov %c[rbx](%[svm]), %%rbx \n\t"
1447 "mov %c[rcx](%[svm]), %%rcx \n\t"
1448 "mov %c[rdx](%[svm]), %%rdx \n\t"
1449 "mov %c[rsi](%[svm]), %%rsi \n\t"
1450 "mov %c[rdi](%[svm]), %%rdi \n\t"
1451 "mov %c[rbp](%[svm]), %%rbp \n\t"
1452 "mov %c[r8](%[svm]), %%r8 \n\t"
1453 "mov %c[r9](%[svm]), %%r9 \n\t"
1454 "mov %c[r10](%[svm]), %%r10 \n\t"
1455 "mov %c[r11](%[svm]), %%r11 \n\t"
1456 "mov %c[r12](%[svm]), %%r12 \n\t"
1457 "mov %c[r13](%[svm]), %%r13 \n\t"
1458 "mov %c[r14](%[svm]), %%r14 \n\t"
1459 "mov %c[r15](%[svm]), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001460#else
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001461 "mov %c[rbx](%[svm]), %%ebx \n\t"
1462 "mov %c[rcx](%[svm]), %%ecx \n\t"
1463 "mov %c[rdx](%[svm]), %%edx \n\t"
1464 "mov %c[rsi](%[svm]), %%esi \n\t"
1465 "mov %c[rdi](%[svm]), %%edi \n\t"
1466 "mov %c[rbp](%[svm]), %%ebp \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001467#endif
1468
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001469#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001470 /* Enter guest mode */
1471 "push %%rax \n\t"
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001472 "mov %c[vmcb](%[svm]), %%rax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001473 SVM_VMLOAD "\n\t"
1474 SVM_VMRUN "\n\t"
1475 SVM_VMSAVE "\n\t"
1476 "pop %%rax \n\t"
1477#else
1478 /* Enter guest mode */
1479 "push %%eax \n\t"
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001480 "mov %c[vmcb](%[svm]), %%eax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001481 SVM_VMLOAD "\n\t"
1482 SVM_VMRUN "\n\t"
1483 SVM_VMSAVE "\n\t"
1484 "pop %%eax \n\t"
1485#endif
1486
1487 /* Save guest registers, load host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001488#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001489 "mov %%rbx, %c[rbx](%[svm]) \n\t"
1490 "mov %%rcx, %c[rcx](%[svm]) \n\t"
1491 "mov %%rdx, %c[rdx](%[svm]) \n\t"
1492 "mov %%rsi, %c[rsi](%[svm]) \n\t"
1493 "mov %%rdi, %c[rdi](%[svm]) \n\t"
1494 "mov %%rbp, %c[rbp](%[svm]) \n\t"
1495 "mov %%r8, %c[r8](%[svm]) \n\t"
1496 "mov %%r9, %c[r9](%[svm]) \n\t"
1497 "mov %%r10, %c[r10](%[svm]) \n\t"
1498 "mov %%r11, %c[r11](%[svm]) \n\t"
1499 "mov %%r12, %c[r12](%[svm]) \n\t"
1500 "mov %%r13, %c[r13](%[svm]) \n\t"
1501 "mov %%r14, %c[r14](%[svm]) \n\t"
1502 "mov %%r15, %c[r15](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001503
1504 "pop %%r15; pop %%r14; pop %%r13; pop %%r12;"
1505 "pop %%r11; pop %%r10; pop %%r9; pop %%r8;"
1506 "pop %%rbp; pop %%rdi; pop %%rsi;"
1507 "pop %%rdx; pop %%rcx; pop %%rbx; \n\t"
1508#else
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001509 "mov %%ebx, %c[rbx](%[svm]) \n\t"
1510 "mov %%ecx, %c[rcx](%[svm]) \n\t"
1511 "mov %%edx, %c[rdx](%[svm]) \n\t"
1512 "mov %%esi, %c[rsi](%[svm]) \n\t"
1513 "mov %%edi, %c[rdi](%[svm]) \n\t"
1514 "mov %%ebp, %c[rbp](%[svm]) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08001515
1516 "pop %%ebp; pop %%edi; pop %%esi;"
1517 "pop %%edx; pop %%ecx; pop %%ebx; \n\t"
1518#endif
1519 :
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001520 : [svm]"a"(svm),
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001522 [rbx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RBX])),
1523 [rcx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RCX])),
1524 [rdx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RDX])),
1525 [rsi]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RSI])),
1526 [rdi]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RDI])),
1527 [rbp]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RBP]))
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001528#ifdef CONFIG_X86_64
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001529 ,[r8 ]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R8])),
1530 [r9 ]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R9 ])),
1531 [r10]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R10])),
1532 [r11]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R11])),
1533 [r12]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R12])),
1534 [r13]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R13])),
1535 [r14]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R14])),
1536 [r15]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R15]))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001537#endif
1538 : "cc", "memory" );
1539
Avi Kivityd9e368d2007-06-07 19:18:30 +03001540 vcpu->guest_mode = 0;
1541
Anthony Liguori7807fa62007-04-23 09:17:21 -05001542 if (vcpu->fpu_active) {
Rusty Russellb114b082007-07-30 21:13:43 +10001543 fx_save(&vcpu->guest_fx_image);
1544 fx_restore(&vcpu->host_fx_image);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001545 }
Avi Kivity36241b82006-12-22 01:05:20 -08001546
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001547 if ((svm->vmcb->save.dr7 & 0xff))
1548 load_db_regs(svm->host_db_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001550 vcpu->cr2 = svm->vmcb->save.cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001551
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001552 write_dr6(svm->host_dr6);
1553 write_dr7(svm->host_dr7);
1554 kvm_write_cr2(svm->host_cr2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001555
1556 load_fs(fs_selector);
1557 load_gs(gs_selector);
1558 load_ldt(ldt_selector);
1559 load_host_msrs(vcpu);
1560
1561 reload_tss(vcpu);
1562
Ingo Molnar07031e12007-01-10 23:15:38 -08001563 /*
1564 * Profile KVM exit RIPs:
1565 */
1566 if (unlikely(prof_on == KVM_PROFILING))
1567 profile_hit(KVM_PROFILING,
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001568 (void *)(unsigned long)svm->vmcb->save.rip);
Ingo Molnar07031e12007-01-10 23:15:38 -08001569
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570 stgi();
1571
Rusty Russell0e5017d2007-07-30 20:08:05 +10001572 reput_irq(svm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001573
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001574 svm->next_rip = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001576 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
Avi Kivity8eb7d332007-03-04 14:17:08 +02001577 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
1578 kvm_run->fail_entry.hardware_entry_failure_reason
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001579 = svm->vmcb->control.exit_code;
Rusty Russelle756fc62007-07-30 20:07:08 +10001580 post_kvm_run_save(svm, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001581 return 0;
1582 }
1583
Rusty Russelle756fc62007-07-30 20:07:08 +10001584 r = handle_exit(svm, kvm_run);
Avi Kivitye2dec932007-01-05 16:36:54 -08001585 if (r > 0) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001586 if (signal_pending(current)) {
Avi Kivity1165f5f2007-04-19 17:27:43 +03001587 ++vcpu->stat.signal_exits;
Rusty Russelle756fc62007-07-30 20:07:08 +10001588 post_kvm_run_save(svm, kvm_run);
Avi Kivity1b19f3e2007-03-04 14:24:03 +02001589 kvm_run->exit_reason = KVM_EXIT_INTR;
Dor Laorc1150d82007-01-05 16:36:24 -08001590 return -EINTR;
1591 }
1592
Rusty Russelle756fc62007-07-30 20:07:08 +10001593 if (dm_request_for_irq_injection(svm, kvm_run)) {
Avi Kivity1165f5f2007-04-19 17:27:43 +03001594 ++vcpu->stat.request_irq_exits;
Rusty Russelle756fc62007-07-30 20:07:08 +10001595 post_kvm_run_save(svm, kvm_run);
Avi Kivity1b19f3e2007-03-04 14:24:03 +02001596 kvm_run->exit_reason = KVM_EXIT_INTR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001597 return -EINTR;
1598 }
1599 kvm_resched(vcpu);
1600 goto again;
1601 }
Rusty Russelle756fc62007-07-30 20:07:08 +10001602 post_kvm_run_save(svm, kvm_run);
Avi Kivitye2dec932007-01-05 16:36:54 -08001603 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001604}
1605
Avi Kivity6aa8b732006-12-10 02:21:36 -08001606static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
1607{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001608 struct vcpu_svm *svm = to_svm(vcpu);
1609
1610 svm->vmcb->save.cr3 = root;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001611 force_new_asid(vcpu);
Anthony Liguori7807fa62007-04-23 09:17:21 -05001612
1613 if (vcpu->fpu_active) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001614 svm->vmcb->control.intercept_exceptions |= (1 << NM_VECTOR);
1615 svm->vmcb->save.cr0 |= X86_CR0_TS;
Anthony Liguori7807fa62007-04-23 09:17:21 -05001616 vcpu->fpu_active = 0;
1617 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001618}
1619
1620static void svm_inject_page_fault(struct kvm_vcpu *vcpu,
1621 unsigned long addr,
1622 uint32_t err_code)
1623{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001624 struct vcpu_svm *svm = to_svm(vcpu);
1625 uint32_t exit_int_info = svm->vmcb->control.exit_int_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001626
Avi Kivity1165f5f2007-04-19 17:27:43 +03001627 ++vcpu->stat.pf_guest;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001628
1629 if (is_page_fault(exit_int_info)) {
1630
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001631 svm->vmcb->control.event_inj_err = 0;
1632 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
1633 SVM_EVTINJ_VALID_ERR |
1634 SVM_EVTINJ_TYPE_EXEPT |
1635 DF_VECTOR;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001636 return;
1637 }
1638 vcpu->cr2 = addr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001639 svm->vmcb->save.cr2 = addr;
1640 svm->vmcb->control.event_inj = SVM_EVTINJ_VALID |
1641 SVM_EVTINJ_VALID_ERR |
1642 SVM_EVTINJ_TYPE_EXEPT |
1643 PF_VECTOR;
1644 svm->vmcb->control.event_inj_err = err_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001645}
1646
1647
1648static int is_disabled(void)
1649{
Joerg Roedel6031a612007-06-22 12:29:50 +03001650 u64 vm_cr;
1651
1652 rdmsrl(MSR_VM_CR, vm_cr);
1653 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
1654 return 1;
1655
Avi Kivity6aa8b732006-12-10 02:21:36 -08001656 return 0;
1657}
1658
Ingo Molnar102d8322007-02-19 14:37:47 +02001659static void
1660svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1661{
1662 /*
1663 * Patch in the VMMCALL instruction:
1664 */
1665 hypercall[0] = 0x0f;
1666 hypercall[1] = 0x01;
1667 hypercall[2] = 0xd9;
1668 hypercall[3] = 0xc3;
1669}
1670
Yang, Sheng002c7f72007-07-31 14:23:01 +03001671static void svm_check_processor_compat(void *rtn)
1672{
1673 *(int *)rtn = 0;
1674}
1675
Avi Kivity6aa8b732006-12-10 02:21:36 -08001676static struct kvm_arch_ops svm_arch_ops = {
1677 .cpu_has_kvm_support = has_svm,
1678 .disabled_by_bios = is_disabled,
1679 .hardware_setup = svm_hardware_setup,
1680 .hardware_unsetup = svm_hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03001681 .check_processor_compatibility = svm_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001682 .hardware_enable = svm_hardware_enable,
1683 .hardware_disable = svm_hardware_disable,
1684
1685 .vcpu_create = svm_create_vcpu,
1686 .vcpu_free = svm_free_vcpu,
1687
1688 .vcpu_load = svm_vcpu_load,
1689 .vcpu_put = svm_vcpu_put,
Avi Kivity774c47f2007-02-12 00:54:47 -08001690 .vcpu_decache = svm_vcpu_decache,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691
1692 .set_guest_debug = svm_guest_debug,
1693 .get_msr = svm_get_msr,
1694 .set_msr = svm_set_msr,
1695 .get_segment_base = svm_get_segment_base,
1696 .get_segment = svm_get_segment,
1697 .set_segment = svm_set_segment,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001698 .get_cs_db_l_bits = svm_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03001699 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001700 .set_cr0 = svm_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701 .set_cr3 = svm_set_cr3,
1702 .set_cr4 = svm_set_cr4,
1703 .set_efer = svm_set_efer,
1704 .get_idt = svm_get_idt,
1705 .set_idt = svm_set_idt,
1706 .get_gdt = svm_get_gdt,
1707 .set_gdt = svm_set_gdt,
1708 .get_dr = svm_get_dr,
1709 .set_dr = svm_set_dr,
1710 .cache_regs = svm_cache_regs,
1711 .decache_regs = svm_decache_regs,
1712 .get_rflags = svm_get_rflags,
1713 .set_rflags = svm_set_rflags,
1714
1715 .invlpg = svm_invlpg,
1716 .tlb_flush = svm_flush_tlb,
1717 .inject_page_fault = svm_inject_page_fault,
1718
1719 .inject_gp = svm_inject_gp,
1720
1721 .run = svm_vcpu_run,
1722 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02001723 .patch_hypercall = svm_patch_hypercall,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001724};
1725
1726static int __init svm_init(void)
1727{
Rusty Russellc16f8622007-07-30 21:12:19 +10001728 return kvm_init_arch(&svm_arch_ops, sizeof(struct vcpu_svm),
1729 THIS_MODULE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001730}
1731
1732static void __exit svm_exit(void)
1733{
1734 kvm_exit_arch();
1735}
1736
1737module_init(svm_init)
1738module_exit(svm_exit)