KVM: SVM: Implement GIF, clgi and stgi
[deliverable/linux.git] / arch / x86 / kvm / svm.c
CommitLineData
6aa8b732
AK
1/*
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 */
edf88417
AK
16#include <linux/kvm_host.h>
17
e495606d 18#include "kvm_svm.h"
85f455f7 19#include "irq.h"
1d737c8a 20#include "mmu.h"
5fdbf976 21#include "kvm_cache_regs.h"
e495606d 22
6aa8b732 23#include <linux/module.h>
9d8f549d 24#include <linux/kernel.h>
6aa8b732
AK
25#include <linux/vmalloc.h>
26#include <linux/highmem.h>
e8edc6e0 27#include <linux/sched.h>
6aa8b732 28
e495606d 29#include <asm/desc.h>
6aa8b732 30
63d1142f
EH
31#include <asm/virtext.h>
32
4ecac3fd
AK
33#define __ex(x) __kvm_handle_fault_on_reboot(x)
34
6aa8b732
AK
35MODULE_AUTHOR("Qumranet");
36MODULE_LICENSE("GPL");
37
38#define IOPM_ALLOC_ORDER 2
39#define MSRPM_ALLOC_ORDER 1
40
6aa8b732
AK
41#define DR7_GD_MASK (1 << 13)
42#define DR6_BD_MASK (1 << 13)
6aa8b732
AK
43
44#define SEG_TYPE_LDT 2
45#define SEG_TYPE_BUSY_TSS16 3
46
80b7706e
JR
47#define SVM_FEATURE_NPT (1 << 0)
48#define SVM_FEATURE_LBRV (1 << 1)
94c935a1 49#define SVM_FEATURE_SVML (1 << 2)
80b7706e 50
24e09cbf
JR
51#define DEBUGCTL_RESERVED_BITS (~(0x3fULL))
52
c0725420
AG
53/* Turn on to get debugging output*/
54/* #define NESTED_DEBUG */
55
56#ifdef NESTED_DEBUG
57#define nsvm_printk(fmt, args...) printk(KERN_INFO fmt, ## args)
58#else
59#define nsvm_printk(fmt, args...) do {} while(0)
60#endif
61
709ddebf
JR
62/* enable NPT for AMD64 and X86 with PAE */
63#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
64static bool npt_enabled = true;
65#else
e3da3acd 66static bool npt_enabled = false;
709ddebf 67#endif
6c7dac72
JR
68static int npt = 1;
69
70module_param(npt, int, S_IRUGO);
e3da3acd 71
04d2cc77 72static void kvm_reput_irq(struct vcpu_svm *svm);
44874f84 73static void svm_flush_tlb(struct kvm_vcpu *vcpu);
04d2cc77 74
a2fa3e9f
GH
75static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
76{
fb3f0f51 77 return container_of(vcpu, struct vcpu_svm, vcpu);
a2fa3e9f
GH
78}
79
4866d5e3 80static unsigned long iopm_base;
6aa8b732
AK
81
82struct kvm_ldttss_desc {
83 u16 limit0;
84 u16 base0;
85 unsigned base1 : 8, type : 5, dpl : 2, p : 1;
86 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8;
87 u32 base3;
88 u32 zero1;
89} __attribute__((packed));
90
91struct svm_cpu_data {
92 int cpu;
93
5008fdf5
AK
94 u64 asid_generation;
95 u32 max_asid;
96 u32 next_asid;
6aa8b732
AK
97 struct kvm_ldttss_desc *tss_desc;
98
99 struct page *save_area;
100};
101
102static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
80b7706e 103static uint32_t svm_features;
6aa8b732
AK
104
105struct svm_init_data {
106 int cpu;
107 int r;
108};
109
110static u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
111
9d8f549d 112#define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
6aa8b732
AK
113#define MSRS_RANGE_SIZE 2048
114#define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
115
116#define MAX_INST_SIZE 15
117
80b7706e
JR
118static inline u32 svm_has(u32 feat)
119{
120 return svm_features & feat;
121}
122
6aa8b732
AK
123static inline u8 pop_irq(struct kvm_vcpu *vcpu)
124{
ad312c7c
ZX
125 int word_index = __ffs(vcpu->arch.irq_summary);
126 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
6aa8b732
AK
127 int irq = word_index * BITS_PER_LONG + bit_index;
128
ad312c7c
ZX
129 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
130 if (!vcpu->arch.irq_pending[word_index])
131 clear_bit(word_index, &vcpu->arch.irq_summary);
6aa8b732
AK
132 return irq;
133}
134
135static inline void push_irq(struct kvm_vcpu *vcpu, u8 irq)
136{
ad312c7c
ZX
137 set_bit(irq, vcpu->arch.irq_pending);
138 set_bit(irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
6aa8b732
AK
139}
140
141static inline void clgi(void)
142{
4ecac3fd 143 asm volatile (__ex(SVM_CLGI));
6aa8b732
AK
144}
145
146static inline void stgi(void)
147{
4ecac3fd 148 asm volatile (__ex(SVM_STGI));
6aa8b732
AK
149}
150
151static inline void invlpga(unsigned long addr, u32 asid)
152{
4ecac3fd 153 asm volatile (__ex(SVM_INVLPGA) :: "a"(addr), "c"(asid));
6aa8b732
AK
154}
155
156static inline unsigned long kvm_read_cr2(void)
157{
158 unsigned long cr2;
159
160 asm volatile ("mov %%cr2, %0" : "=r" (cr2));
161 return cr2;
162}
163
164static inline void kvm_write_cr2(unsigned long val)
165{
166 asm volatile ("mov %0, %%cr2" :: "r" (val));
167}
168
169static inline unsigned long read_dr6(void)
170{
171 unsigned long dr6;
172
173 asm volatile ("mov %%dr6, %0" : "=r" (dr6));
174 return dr6;
175}
176
177static inline void write_dr6(unsigned long val)
178{
179 asm volatile ("mov %0, %%dr6" :: "r" (val));
180}
181
182static inline unsigned long read_dr7(void)
183{
184 unsigned long dr7;
185
186 asm volatile ("mov %%dr7, %0" : "=r" (dr7));
187 return dr7;
188}
189
190static inline void write_dr7(unsigned long val)
191{
192 asm volatile ("mov %0, %%dr7" :: "r" (val));
193}
194
6aa8b732
AK
195static inline void force_new_asid(struct kvm_vcpu *vcpu)
196{
a2fa3e9f 197 to_svm(vcpu)->asid_generation--;
6aa8b732
AK
198}
199
200static inline void flush_guest_tlb(struct kvm_vcpu *vcpu)
201{
202 force_new_asid(vcpu);
203}
204
205static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
206{
709ddebf 207 if (!npt_enabled && !(efer & EFER_LMA))
2b5203ee 208 efer &= ~EFER_LME;
6aa8b732 209
9962d032 210 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME;
ad312c7c 211 vcpu->arch.shadow_efer = efer;
6aa8b732
AK
212}
213
298101da
AK
214static void svm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
215 bool has_error_code, u32 error_code)
216{
217 struct vcpu_svm *svm = to_svm(vcpu);
218
219 svm->vmcb->control.event_inj = nr
220 | SVM_EVTINJ_VALID
221 | (has_error_code ? SVM_EVTINJ_VALID_ERR : 0)
222 | SVM_EVTINJ_TYPE_EXEPT;
223 svm->vmcb->control.event_inj_err = error_code;
224}
225
226static bool svm_exception_injected(struct kvm_vcpu *vcpu)
227{
228 struct vcpu_svm *svm = to_svm(vcpu);
229
230 return !(svm->vmcb->control.exit_int_info & SVM_EXITINTINFO_VALID);
231}
232
6aa8b732
AK
233static int is_external_interrupt(u32 info)
234{
235 info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
236 return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
237}
238
239static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
240{
a2fa3e9f
GH
241 struct vcpu_svm *svm = to_svm(vcpu);
242
243 if (!svm->next_rip) {
b8688d51 244 printk(KERN_DEBUG "%s: NOP\n", __func__);
6aa8b732
AK
245 return;
246 }
5fdbf976
MT
247 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
248 printk(KERN_ERR "%s: ip 0x%lx next 0x%llx\n",
249 __func__, kvm_rip_read(vcpu), svm->next_rip);
6aa8b732 250
5fdbf976 251 kvm_rip_write(vcpu, svm->next_rip);
a2fa3e9f 252 svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
c1150d8c 253
1371d904 254 vcpu->arch.interrupt_window_open = (svm->vcpu.arch.hflags & HF_GIF_MASK);
6aa8b732
AK
255}
256
257static int has_svm(void)
258{
63d1142f 259 const char *msg;
6aa8b732 260
63d1142f
EH
261 if (!cpu_has_svm(&msg)) {
262 printk(KERN_INFO "has_svn: %s\n", msg);
6aa8b732
AK
263 return 0;
264 }
265
6aa8b732
AK
266 return 1;
267}
268
269static void svm_hardware_disable(void *garbage)
270{
2c8dceeb 271 cpu_svm_disable();
6aa8b732
AK
272}
273
274static void svm_hardware_enable(void *garbage)
275{
276
277 struct svm_cpu_data *svm_data;
278 uint64_t efer;
6aa8b732 279 struct desc_ptr gdt_descr;
6aa8b732
AK
280 struct desc_struct *gdt;
281 int me = raw_smp_processor_id();
282
283 if (!has_svm()) {
284 printk(KERN_ERR "svm_cpu_init: err EOPNOTSUPP on %d\n", me);
285 return;
286 }
287 svm_data = per_cpu(svm_data, me);
288
289 if (!svm_data) {
290 printk(KERN_ERR "svm_cpu_init: svm_data is NULL on %d\n",
291 me);
292 return;
293 }
294
295 svm_data->asid_generation = 1;
296 svm_data->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
297 svm_data->next_asid = svm_data->max_asid + 1;
298
d77c26fc 299 asm volatile ("sgdt %0" : "=m"(gdt_descr));
6aa8b732
AK
300 gdt = (struct desc_struct *)gdt_descr.address;
301 svm_data->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
302
303 rdmsrl(MSR_EFER, efer);
9962d032 304 wrmsrl(MSR_EFER, efer | EFER_SVME);
6aa8b732
AK
305
306 wrmsrl(MSR_VM_HSAVE_PA,
307 page_to_pfn(svm_data->save_area) << PAGE_SHIFT);
308}
309
0da1db75
JR
310static void svm_cpu_uninit(int cpu)
311{
312 struct svm_cpu_data *svm_data
313 = per_cpu(svm_data, raw_smp_processor_id());
314
315 if (!svm_data)
316 return;
317
318 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
319 __free_page(svm_data->save_area);
320 kfree(svm_data);
321}
322
6aa8b732
AK
323static int svm_cpu_init(int cpu)
324{
325 struct svm_cpu_data *svm_data;
326 int r;
327
328 svm_data = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
329 if (!svm_data)
330 return -ENOMEM;
331 svm_data->cpu = cpu;
332 svm_data->save_area = alloc_page(GFP_KERNEL);
333 r = -ENOMEM;
334 if (!svm_data->save_area)
335 goto err_1;
336
337 per_cpu(svm_data, cpu) = svm_data;
338
339 return 0;
340
341err_1:
342 kfree(svm_data);
343 return r;
344
345}
346
bfc733a7
RR
347static void set_msr_interception(u32 *msrpm, unsigned msr,
348 int read, int write)
6aa8b732
AK
349{
350 int i;
351
352 for (i = 0; i < NUM_MSR_MAPS; i++) {
353 if (msr >= msrpm_ranges[i] &&
354 msr < msrpm_ranges[i] + MSRS_IN_RANGE) {
355 u32 msr_offset = (i * MSRS_IN_RANGE + msr -
356 msrpm_ranges[i]) * 2;
357
358 u32 *base = msrpm + (msr_offset / 32);
359 u32 msr_shift = msr_offset % 32;
360 u32 mask = ((write) ? 0 : 2) | ((read) ? 0 : 1);
361 *base = (*base & ~(0x3 << msr_shift)) |
362 (mask << msr_shift);
bfc733a7 363 return;
6aa8b732
AK
364 }
365 }
bfc733a7 366 BUG();
6aa8b732
AK
367}
368
f65c229c
JR
369static void svm_vcpu_init_msrpm(u32 *msrpm)
370{
371 memset(msrpm, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
372
373#ifdef CONFIG_X86_64
374 set_msr_interception(msrpm, MSR_GS_BASE, 1, 1);
375 set_msr_interception(msrpm, MSR_FS_BASE, 1, 1);
376 set_msr_interception(msrpm, MSR_KERNEL_GS_BASE, 1, 1);
377 set_msr_interception(msrpm, MSR_LSTAR, 1, 1);
378 set_msr_interception(msrpm, MSR_CSTAR, 1, 1);
379 set_msr_interception(msrpm, MSR_SYSCALL_MASK, 1, 1);
380#endif
381 set_msr_interception(msrpm, MSR_K6_STAR, 1, 1);
382 set_msr_interception(msrpm, MSR_IA32_SYSENTER_CS, 1, 1);
383 set_msr_interception(msrpm, MSR_IA32_SYSENTER_ESP, 1, 1);
384 set_msr_interception(msrpm, MSR_IA32_SYSENTER_EIP, 1, 1);
385}
386
24e09cbf
JR
387static void svm_enable_lbrv(struct vcpu_svm *svm)
388{
389 u32 *msrpm = svm->msrpm;
390
391 svm->vmcb->control.lbr_ctl = 1;
392 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 1, 1);
393 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1);
394 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 1, 1);
395 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 1, 1);
396}
397
398static void svm_disable_lbrv(struct vcpu_svm *svm)
399{
400 u32 *msrpm = svm->msrpm;
401
402 svm->vmcb->control.lbr_ctl = 0;
403 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHFROMIP, 0, 0);
404 set_msr_interception(msrpm, MSR_IA32_LASTBRANCHTOIP, 0, 0);
405 set_msr_interception(msrpm, MSR_IA32_LASTINTFROMIP, 0, 0);
406 set_msr_interception(msrpm, MSR_IA32_LASTINTTOIP, 0, 0);
407}
408
6aa8b732
AK
409static __init int svm_hardware_setup(void)
410{
411 int cpu;
412 struct page *iopm_pages;
f65c229c 413 void *iopm_va;
6aa8b732
AK
414 int r;
415
6aa8b732
AK
416 iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
417
418 if (!iopm_pages)
419 return -ENOMEM;
c8681339
AL
420
421 iopm_va = page_address(iopm_pages);
422 memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
423 clear_bit(0x80, iopm_va); /* allow direct access to PC debug port */
6aa8b732
AK
424 iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
425
50a37eb4
JR
426 if (boot_cpu_has(X86_FEATURE_NX))
427 kvm_enable_efer_bits(EFER_NX);
428
6aa8b732
AK
429 for_each_online_cpu(cpu) {
430 r = svm_cpu_init(cpu);
431 if (r)
f65c229c 432 goto err;
6aa8b732 433 }
33bd6a0b
JR
434
435 svm_features = cpuid_edx(SVM_CPUID_FUNC);
436
e3da3acd
JR
437 if (!svm_has(SVM_FEATURE_NPT))
438 npt_enabled = false;
439
6c7dac72
JR
440 if (npt_enabled && !npt) {
441 printk(KERN_INFO "kvm: Nested Paging disabled\n");
442 npt_enabled = false;
443 }
444
18552672 445 if (npt_enabled) {
e3da3acd 446 printk(KERN_INFO "kvm: Nested Paging enabled\n");
18552672 447 kvm_enable_tdp();
5f4cb662
JR
448 } else
449 kvm_disable_tdp();
e3da3acd 450
6aa8b732
AK
451 return 0;
452
f65c229c 453err:
6aa8b732
AK
454 __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
455 iopm_base = 0;
456 return r;
457}
458
459static __exit void svm_hardware_unsetup(void)
460{
0da1db75
JR
461 int cpu;
462
463 for_each_online_cpu(cpu)
464 svm_cpu_uninit(cpu);
465
6aa8b732 466 __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
f65c229c 467 iopm_base = 0;
6aa8b732
AK
468}
469
470static void init_seg(struct vmcb_seg *seg)
471{
472 seg->selector = 0;
473 seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
474 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
475 seg->limit = 0xffff;
476 seg->base = 0;
477}
478
479static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
480{
481 seg->selector = 0;
482 seg->attrib = SVM_SELECTOR_P_MASK | type;
483 seg->limit = 0xffff;
484 seg->base = 0;
485}
486
e6101a96 487static void init_vmcb(struct vcpu_svm *svm)
6aa8b732 488{
e6101a96
JR
489 struct vmcb_control_area *control = &svm->vmcb->control;
490 struct vmcb_save_area *save = &svm->vmcb->save;
6aa8b732
AK
491
492 control->intercept_cr_read = INTERCEPT_CR0_MASK |
493 INTERCEPT_CR3_MASK |
649d6864 494 INTERCEPT_CR4_MASK;
6aa8b732
AK
495
496 control->intercept_cr_write = INTERCEPT_CR0_MASK |
497 INTERCEPT_CR3_MASK |
80a8119c
AK
498 INTERCEPT_CR4_MASK |
499 INTERCEPT_CR8_MASK;
6aa8b732
AK
500
501 control->intercept_dr_read = INTERCEPT_DR0_MASK |
502 INTERCEPT_DR1_MASK |
503 INTERCEPT_DR2_MASK |
504 INTERCEPT_DR3_MASK;
505
506 control->intercept_dr_write = INTERCEPT_DR0_MASK |
507 INTERCEPT_DR1_MASK |
508 INTERCEPT_DR2_MASK |
509 INTERCEPT_DR3_MASK |
510 INTERCEPT_DR5_MASK |
511 INTERCEPT_DR7_MASK;
512
7aa81cc0 513 control->intercept_exceptions = (1 << PF_VECTOR) |
53371b50
JR
514 (1 << UD_VECTOR) |
515 (1 << MC_VECTOR);
6aa8b732
AK
516
517
518 control->intercept = (1ULL << INTERCEPT_INTR) |
519 (1ULL << INTERCEPT_NMI) |
0152527b 520 (1ULL << INTERCEPT_SMI) |
6aa8b732 521 (1ULL << INTERCEPT_CPUID) |
cf5a94d1 522 (1ULL << INTERCEPT_INVD) |
6aa8b732 523 (1ULL << INTERCEPT_HLT) |
a7052897 524 (1ULL << INTERCEPT_INVLPG) |
6aa8b732
AK
525 (1ULL << INTERCEPT_INVLPGA) |
526 (1ULL << INTERCEPT_IOIO_PROT) |
527 (1ULL << INTERCEPT_MSR_PROT) |
528 (1ULL << INTERCEPT_TASK_SWITCH) |
46fe4ddd 529 (1ULL << INTERCEPT_SHUTDOWN) |
6aa8b732
AK
530 (1ULL << INTERCEPT_VMRUN) |
531 (1ULL << INTERCEPT_VMMCALL) |
532 (1ULL << INTERCEPT_VMLOAD) |
533 (1ULL << INTERCEPT_VMSAVE) |
534 (1ULL << INTERCEPT_STGI) |
535 (1ULL << INTERCEPT_CLGI) |
916ce236 536 (1ULL << INTERCEPT_SKINIT) |
cf5a94d1 537 (1ULL << INTERCEPT_WBINVD) |
916ce236
JR
538 (1ULL << INTERCEPT_MONITOR) |
539 (1ULL << INTERCEPT_MWAIT);
6aa8b732
AK
540
541 control->iopm_base_pa = iopm_base;
f65c229c 542 control->msrpm_base_pa = __pa(svm->msrpm);
0cc5064d 543 control->tsc_offset = 0;
6aa8b732
AK
544 control->int_ctl = V_INTR_MASKING_MASK;
545
546 init_seg(&save->es);
547 init_seg(&save->ss);
548 init_seg(&save->ds);
549 init_seg(&save->fs);
550 init_seg(&save->gs);
551
552 save->cs.selector = 0xf000;
553 /* Executable/Readable Code Segment */
554 save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
555 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
556 save->cs.limit = 0xffff;
d92899a0
AK
557 /*
558 * cs.base should really be 0xffff0000, but vmx can't handle that, so
559 * be consistent with it.
560 *
561 * Replace when we have real mode working for vmx.
562 */
563 save->cs.base = 0xf0000;
6aa8b732
AK
564
565 save->gdtr.limit = 0xffff;
566 save->idtr.limit = 0xffff;
567
568 init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
569 init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
570
9962d032 571 save->efer = EFER_SVME;
d77c26fc 572 save->dr6 = 0xffff0ff0;
6aa8b732
AK
573 save->dr7 = 0x400;
574 save->rflags = 2;
575 save->rip = 0x0000fff0;
5fdbf976 576 svm->vcpu.arch.regs[VCPU_REGS_RIP] = save->rip;
6aa8b732
AK
577
578 /*
579 * cr0 val on cpu init should be 0x60000010, we enable cpu
580 * cache by default. the orderly way is to enable cache in bios.
581 */
707d92fa 582 save->cr0 = 0x00000010 | X86_CR0_PG | X86_CR0_WP;
66aee91a 583 save->cr4 = X86_CR4_PAE;
6aa8b732 584 /* rdx = ?? */
709ddebf
JR
585
586 if (npt_enabled) {
587 /* Setup VMCB for Nested Paging */
588 control->nested_ctl = 1;
a7052897
MT
589 control->intercept &= ~((1ULL << INTERCEPT_TASK_SWITCH) |
590 (1ULL << INTERCEPT_INVLPG));
709ddebf
JR
591 control->intercept_exceptions &= ~(1 << PF_VECTOR);
592 control->intercept_cr_read &= ~(INTERCEPT_CR0_MASK|
593 INTERCEPT_CR3_MASK);
594 control->intercept_cr_write &= ~(INTERCEPT_CR0_MASK|
595 INTERCEPT_CR3_MASK);
596 save->g_pat = 0x0007040600070406ULL;
597 /* enable caching because the QEMU Bios doesn't enable it */
598 save->cr0 = X86_CR0_ET;
599 save->cr3 = 0;
600 save->cr4 = 0;
601 }
a79d2f18 602 force_new_asid(&svm->vcpu);
1371d904
AG
603
604 svm->vcpu.arch.hflags = HF_GIF_MASK;
6aa8b732
AK
605}
606
e00c8cf2 607static int svm_vcpu_reset(struct kvm_vcpu *vcpu)
04d2cc77
AK
608{
609 struct vcpu_svm *svm = to_svm(vcpu);
610
e6101a96 611 init_vmcb(svm);
70433389
AK
612
613 if (vcpu->vcpu_id != 0) {
5fdbf976 614 kvm_rip_write(vcpu, 0);
ad312c7c
ZX
615 svm->vmcb->save.cs.base = svm->vcpu.arch.sipi_vector << 12;
616 svm->vmcb->save.cs.selector = svm->vcpu.arch.sipi_vector << 8;
70433389 617 }
5fdbf976
MT
618 vcpu->arch.regs_avail = ~0;
619 vcpu->arch.regs_dirty = ~0;
e00c8cf2
AK
620
621 return 0;
04d2cc77
AK
622}
623
fb3f0f51 624static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
6aa8b732 625{
a2fa3e9f 626 struct vcpu_svm *svm;
6aa8b732 627 struct page *page;
f65c229c 628 struct page *msrpm_pages;
fb3f0f51 629 int err;
6aa8b732 630
c16f862d 631 svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
fb3f0f51
RR
632 if (!svm) {
633 err = -ENOMEM;
634 goto out;
635 }
636
637 err = kvm_vcpu_init(&svm->vcpu, kvm, id);
638 if (err)
639 goto free_svm;
640
6aa8b732 641 page = alloc_page(GFP_KERNEL);
fb3f0f51
RR
642 if (!page) {
643 err = -ENOMEM;
644 goto uninit;
645 }
6aa8b732 646
f65c229c
JR
647 err = -ENOMEM;
648 msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
649 if (!msrpm_pages)
650 goto uninit;
651 svm->msrpm = page_address(msrpm_pages);
652 svm_vcpu_init_msrpm(svm->msrpm);
653
a2fa3e9f
GH
654 svm->vmcb = page_address(page);
655 clear_page(svm->vmcb);
656 svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
657 svm->asid_generation = 0;
658 memset(svm->db_regs, 0, sizeof(svm->db_regs));
e6101a96 659 init_vmcb(svm);
a2fa3e9f 660
fb3f0f51
RR
661 fx_init(&svm->vcpu);
662 svm->vcpu.fpu_active = 1;
ad312c7c 663 svm->vcpu.arch.apic_base = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
fb3f0f51 664 if (svm->vcpu.vcpu_id == 0)
ad312c7c 665 svm->vcpu.arch.apic_base |= MSR_IA32_APICBASE_BSP;
6aa8b732 666
fb3f0f51 667 return &svm->vcpu;
36241b8c 668
fb3f0f51
RR
669uninit:
670 kvm_vcpu_uninit(&svm->vcpu);
671free_svm:
a4770347 672 kmem_cache_free(kvm_vcpu_cache, svm);
fb3f0f51
RR
673out:
674 return ERR_PTR(err);
6aa8b732
AK
675}
676
677static void svm_free_vcpu(struct kvm_vcpu *vcpu)
678{
a2fa3e9f
GH
679 struct vcpu_svm *svm = to_svm(vcpu);
680
fb3f0f51 681 __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
f65c229c 682 __free_pages(virt_to_page(svm->msrpm), MSRPM_ALLOC_ORDER);
fb3f0f51 683 kvm_vcpu_uninit(vcpu);
a4770347 684 kmem_cache_free(kvm_vcpu_cache, svm);
6aa8b732
AK
685}
686
15ad7146 687static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
6aa8b732 688{
a2fa3e9f 689 struct vcpu_svm *svm = to_svm(vcpu);
15ad7146 690 int i;
0cc5064d 691
0cc5064d
AK
692 if (unlikely(cpu != vcpu->cpu)) {
693 u64 tsc_this, delta;
694
695 /*
696 * Make sure that the guest sees a monotonically
697 * increasing TSC.
698 */
699 rdtscll(tsc_this);
ad312c7c 700 delta = vcpu->arch.host_tsc - tsc_this;
a2fa3e9f 701 svm->vmcb->control.tsc_offset += delta;
0cc5064d 702 vcpu->cpu = cpu;
2f599714 703 kvm_migrate_timers(vcpu);
0cc5064d 704 }
94dfbdb3
AL
705
706 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 707 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
6aa8b732
AK
708}
709
710static void svm_vcpu_put(struct kvm_vcpu *vcpu)
711{
a2fa3e9f 712 struct vcpu_svm *svm = to_svm(vcpu);
94dfbdb3
AL
713 int i;
714
e1beb1d3 715 ++vcpu->stat.host_state_reload;
94dfbdb3 716 for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
a2fa3e9f 717 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
94dfbdb3 718
ad312c7c 719 rdtscll(vcpu->arch.host_tsc);
6aa8b732
AK
720}
721
6aa8b732
AK
722static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
723{
a2fa3e9f 724 return to_svm(vcpu)->vmcb->save.rflags;
6aa8b732
AK
725}
726
727static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
728{
a2fa3e9f 729 to_svm(vcpu)->vmcb->save.rflags = rflags;
6aa8b732
AK
730}
731
f0b85051
AG
732static void svm_set_vintr(struct vcpu_svm *svm)
733{
734 svm->vmcb->control.intercept |= 1ULL << INTERCEPT_VINTR;
735}
736
737static void svm_clear_vintr(struct vcpu_svm *svm)
738{
739 svm->vmcb->control.intercept &= ~(1ULL << INTERCEPT_VINTR);
740}
741
6aa8b732
AK
742static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
743{
a2fa3e9f 744 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
6aa8b732
AK
745
746 switch (seg) {
747 case VCPU_SREG_CS: return &save->cs;
748 case VCPU_SREG_DS: return &save->ds;
749 case VCPU_SREG_ES: return &save->es;
750 case VCPU_SREG_FS: return &save->fs;
751 case VCPU_SREG_GS: return &save->gs;
752 case VCPU_SREG_SS: return &save->ss;
753 case VCPU_SREG_TR: return &save->tr;
754 case VCPU_SREG_LDTR: return &save->ldtr;
755 }
756 BUG();
8b6d44c7 757 return NULL;
6aa8b732
AK
758}
759
760static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
761{
762 struct vmcb_seg *s = svm_seg(vcpu, seg);
763
764 return s->base;
765}
766
767static void svm_get_segment(struct kvm_vcpu *vcpu,
768 struct kvm_segment *var, int seg)
769{
770 struct vmcb_seg *s = svm_seg(vcpu, seg);
771
772 var->base = s->base;
773 var->limit = s->limit;
774 var->selector = s->selector;
775 var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
776 var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
777 var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
778 var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
779 var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
780 var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
781 var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
782 var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1;
25022acc
AS
783
784 /*
785 * SVM always stores 0 for the 'G' bit in the CS selector in
786 * the VMCB on a VMEXIT. This hurts cross-vendor migration:
787 * Intel's VMENTRY has a check on the 'G' bit.
788 */
789 if (seg == VCPU_SREG_CS)
790 var->g = s->limit > 0xfffff;
791
c0d09828
AS
792 /*
793 * Work around a bug where the busy flag in the tr selector
794 * isn't exposed
795 */
796 if (seg == VCPU_SREG_TR)
797 var->type |= 0x2;
798
6aa8b732
AK
799 var->unusable = !var->present;
800}
801
2e4d2653
IE
802static int svm_get_cpl(struct kvm_vcpu *vcpu)
803{
804 struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
805
806 return save->cpl;
807}
808
6aa8b732
AK
809static void svm_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
810{
a2fa3e9f
GH
811 struct vcpu_svm *svm = to_svm(vcpu);
812
813 dt->limit = svm->vmcb->save.idtr.limit;
814 dt->base = svm->vmcb->save.idtr.base;
6aa8b732
AK
815}
816
817static void svm_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
818{
a2fa3e9f
GH
819 struct vcpu_svm *svm = to_svm(vcpu);
820
821 svm->vmcb->save.idtr.limit = dt->limit;
822 svm->vmcb->save.idtr.base = dt->base ;
6aa8b732
AK
823}
824
825static void svm_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
826{
a2fa3e9f
GH
827 struct vcpu_svm *svm = to_svm(vcpu);
828
829 dt->limit = svm->vmcb->save.gdtr.limit;
830 dt->base = svm->vmcb->save.gdtr.base;
6aa8b732
AK
831}
832
833static void svm_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
834{
a2fa3e9f
GH
835 struct vcpu_svm *svm = to_svm(vcpu);
836
837 svm->vmcb->save.gdtr.limit = dt->limit;
838 svm->vmcb->save.gdtr.base = dt->base ;
6aa8b732
AK
839}
840
25c4c276 841static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
399badf3
AK
842{
843}
844
6aa8b732
AK
845static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
846{
a2fa3e9f
GH
847 struct vcpu_svm *svm = to_svm(vcpu);
848
05b3e0c2 849#ifdef CONFIG_X86_64
ad312c7c 850 if (vcpu->arch.shadow_efer & EFER_LME) {
707d92fa 851 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
ad312c7c 852 vcpu->arch.shadow_efer |= EFER_LMA;
2b5203ee 853 svm->vmcb->save.efer |= EFER_LMA | EFER_LME;
6aa8b732
AK
854 }
855
d77c26fc 856 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) {
ad312c7c 857 vcpu->arch.shadow_efer &= ~EFER_LMA;
2b5203ee 858 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME);
6aa8b732
AK
859 }
860 }
861#endif
709ddebf
JR
862 if (npt_enabled)
863 goto set;
864
ad312c7c 865 if ((vcpu->arch.cr0 & X86_CR0_TS) && !(cr0 & X86_CR0_TS)) {
a2fa3e9f 866 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
7807fa6c
AL
867 vcpu->fpu_active = 1;
868 }
869
ad312c7c 870 vcpu->arch.cr0 = cr0;
707d92fa 871 cr0 |= X86_CR0_PG | X86_CR0_WP;
6b390b63
JR
872 if (!vcpu->fpu_active) {
873 svm->vmcb->control.intercept_exceptions |= (1 << NM_VECTOR);
334df50a 874 cr0 |= X86_CR0_TS;
6b390b63 875 }
709ddebf
JR
876set:
877 /*
878 * re-enable caching here because the QEMU bios
879 * does not do it - this results in some delay at
880 * reboot
881 */
882 cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
a2fa3e9f 883 svm->vmcb->save.cr0 = cr0;
6aa8b732
AK
884}
885
886static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
887{
6394b649 888 unsigned long host_cr4_mce = read_cr4() & X86_CR4_MCE;
e5eab0ce
JR
889 unsigned long old_cr4 = to_svm(vcpu)->vmcb->save.cr4;
890
891 if (npt_enabled && ((old_cr4 ^ cr4) & X86_CR4_PGE))
892 force_new_asid(vcpu);
6394b649 893
ec077263
JR
894 vcpu->arch.cr4 = cr4;
895 if (!npt_enabled)
896 cr4 |= X86_CR4_PAE;
6394b649 897 cr4 |= host_cr4_mce;
ec077263 898 to_svm(vcpu)->vmcb->save.cr4 = cr4;
6aa8b732
AK
899}
900
901static void svm_set_segment(struct kvm_vcpu *vcpu,
902 struct kvm_segment *var, int seg)
903{
a2fa3e9f 904 struct vcpu_svm *svm = to_svm(vcpu);
6aa8b732
AK
905 struct vmcb_seg *s = svm_seg(vcpu, seg);
906
907 s->base = var->base;
908 s->limit = var->limit;
909 s->selector = var->selector;
910 if (var->unusable)
911 s->attrib = 0;
912 else {
913 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
914 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
915 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
916 s->attrib |= (var->present & 1) << SVM_SELECTOR_P_SHIFT;
917 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
918 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
919 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
920 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
921 }
922 if (seg == VCPU_SREG_CS)
a2fa3e9f
GH
923 svm->vmcb->save.cpl
924 = (svm->vmcb->save.cs.attrib
6aa8b732
AK
925 >> SVM_SELECTOR_DPL_SHIFT) & 3;
926
927}
928
6aa8b732
AK
929static int svm_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
930{
931 return -EOPNOTSUPP;
932}
933
2a8067f1
ED
934static int svm_get_irq(struct kvm_vcpu *vcpu)
935{
936 struct vcpu_svm *svm = to_svm(vcpu);
937 u32 exit_int_info = svm->vmcb->control.exit_int_info;
938
939 if (is_external_interrupt(exit_int_info))
940 return exit_int_info & SVM_EVTINJ_VEC_MASK;
941 return -1;
942}
943
6aa8b732
AK
944static void load_host_msrs(struct kvm_vcpu *vcpu)
945{
94dfbdb3 946#ifdef CONFIG_X86_64
a2fa3e9f 947 wrmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
94dfbdb3 948#endif
6aa8b732
AK
949}
950
951static void save_host_msrs(struct kvm_vcpu *vcpu)
952{
94dfbdb3 953#ifdef CONFIG_X86_64
a2fa3e9f 954 rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
94dfbdb3 955#endif
6aa8b732
AK
956}
957
e756fc62 958static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *svm_data)
6aa8b732
AK
959{
960 if (svm_data->next_asid > svm_data->max_asid) {
961 ++svm_data->asid_generation;
962 svm_data->next_asid = 1;
a2fa3e9f 963 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
6aa8b732
AK
964 }
965
e756fc62 966 svm->vcpu.cpu = svm_data->cpu;
a2fa3e9f
GH
967 svm->asid_generation = svm_data->asid_generation;
968 svm->vmcb->control.asid = svm_data->next_asid++;
6aa8b732
AK
969}
970
6aa8b732
AK
971static unsigned long svm_get_dr(struct kvm_vcpu *vcpu, int dr)
972{
af9ca2d7
JR
973 unsigned long val = to_svm(vcpu)->db_regs[dr];
974 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
975 return val;
6aa8b732
AK
976}
977
978static void svm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long value,
979 int *exception)
980{
a2fa3e9f
GH
981 struct vcpu_svm *svm = to_svm(vcpu);
982
6aa8b732
AK
983 *exception = 0;
984
a2fa3e9f
GH
985 if (svm->vmcb->save.dr7 & DR7_GD_MASK) {
986 svm->vmcb->save.dr7 &= ~DR7_GD_MASK;
987 svm->vmcb->save.dr6 |= DR6_BD_MASK;
6aa8b732
AK
988 *exception = DB_VECTOR;
989 return;
990 }
991
992 switch (dr) {
993 case 0 ... 3:
a2fa3e9f 994 svm->db_regs[dr] = value;
6aa8b732
AK
995 return;
996 case 4 ... 5:
ad312c7c 997 if (vcpu->arch.cr4 & X86_CR4_DE) {
6aa8b732
AK
998 *exception = UD_VECTOR;
999 return;
1000 }
1001 case 7: {
1002 if (value & ~((1ULL << 32) - 1)) {
1003 *exception = GP_VECTOR;
1004 return;
1005 }
a2fa3e9f 1006 svm->vmcb->save.dr7 = value;
6aa8b732
AK
1007 return;
1008 }
1009 default:
1010 printk(KERN_DEBUG "%s: unexpected dr %u\n",
b8688d51 1011 __func__, dr);
6aa8b732
AK
1012 *exception = UD_VECTOR;
1013 return;
1014 }
1015}
1016
e756fc62 1017static int pf_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
6aa8b732 1018{
a2fa3e9f 1019 u32 exit_int_info = svm->vmcb->control.exit_int_info;
e756fc62 1020 struct kvm *kvm = svm->vcpu.kvm;
6aa8b732
AK
1021 u64 fault_address;
1022 u32 error_code;
577bdc49 1023 bool event_injection = false;
6aa8b732 1024
85f455f7 1025 if (!irqchip_in_kernel(kvm) &&
577bdc49
AK
1026 is_external_interrupt(exit_int_info)) {
1027 event_injection = true;
e756fc62 1028 push_irq(&svm->vcpu, exit_int_info & SVM_EVTINJ_VEC_MASK);
577bdc49 1029 }
6aa8b732 1030
a2fa3e9f
GH
1031 fault_address = svm->vmcb->control.exit_info_2;
1032 error_code = svm->vmcb->control.exit_info_1;
af9ca2d7
JR
1033
1034 if (!npt_enabled)
1035 KVMTRACE_3D(PAGE_FAULT, &svm->vcpu, error_code,
1036 (u32)fault_address, (u32)(fault_address >> 32),
1037 handler);
d2ebb410
JR
1038 else
1039 KVMTRACE_3D(TDP_FAULT, &svm->vcpu, error_code,
1040 (u32)fault_address, (u32)(fault_address >> 32),
1041 handler);
44874f84
JR
1042 /*
1043 * FIXME: Tis shouldn't be necessary here, but there is a flush
1044 * missing in the MMU code. Until we find this bug, flush the
1045 * complete TLB here on an NPF
1046 */
1047 if (npt_enabled)
1048 svm_flush_tlb(&svm->vcpu);
af9ca2d7 1049
48d15039 1050 if (!npt_enabled && event_injection)
577bdc49 1051 kvm_mmu_unprotect_page_virt(&svm->vcpu, fault_address);
3067714c 1052 return kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code);
6aa8b732
AK
1053}
1054
7aa81cc0
AL
1055static int ud_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1056{
1057 int er;
1058
571008da 1059 er = emulate_instruction(&svm->vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
7aa81cc0 1060 if (er != EMULATE_DONE)
7ee5d940 1061 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
7aa81cc0
AL
1062 return 1;
1063}
1064
e756fc62 1065static int nm_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
7807fa6c 1066{
a2fa3e9f 1067 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
ad312c7c 1068 if (!(svm->vcpu.arch.cr0 & X86_CR0_TS))
a2fa3e9f 1069 svm->vmcb->save.cr0 &= ~X86_CR0_TS;
e756fc62 1070 svm->vcpu.fpu_active = 1;
a2fa3e9f
GH
1071
1072 return 1;
7807fa6c
AL
1073}
1074
53371b50
JR
1075static int mc_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1076{
1077 /*
1078 * On an #MC intercept the MCE handler is not called automatically in
1079 * the host. So do it by hand here.
1080 */
1081 asm volatile (
1082 "int $0x12\n");
1083 /* not sure if we ever come back to this point */
1084
1085 return 1;
1086}
1087
e756fc62 1088static int shutdown_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
46fe4ddd
JR
1089{
1090 /*
1091 * VMCB is undefined after a SHUTDOWN intercept
1092 * so reinitialize it.
1093 */
a2fa3e9f 1094 clear_page(svm->vmcb);
e6101a96 1095 init_vmcb(svm);
46fe4ddd
JR
1096
1097 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1098 return 0;
1099}
1100
e756fc62 1101static int io_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
6aa8b732 1102{
d77c26fc 1103 u32 io_info = svm->vmcb->control.exit_info_1; /* address size bug? */
039576c0
AK
1104 int size, down, in, string, rep;
1105 unsigned port;
6aa8b732 1106
e756fc62 1107 ++svm->vcpu.stat.io_exits;
6aa8b732 1108
a2fa3e9f 1109 svm->next_rip = svm->vmcb->control.exit_info_2;
6aa8b732 1110
e70669ab
LV
1111 string = (io_info & SVM_IOIO_STR_MASK) != 0;
1112
1113 if (string) {
3427318f
LV
1114 if (emulate_instruction(&svm->vcpu,
1115 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
e70669ab
LV
1116 return 0;
1117 return 1;
1118 }
1119
039576c0
AK
1120 in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
1121 port = io_info >> 16;
1122 size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
039576c0 1123 rep = (io_info & SVM_IOIO_REP_MASK) != 0;
a2fa3e9f 1124 down = (svm->vmcb->save.rflags & X86_EFLAGS_DF) != 0;
6aa8b732 1125
e93f36bc 1126 skip_emulated_instruction(&svm->vcpu);
3090dd73 1127 return kvm_emulate_pio(&svm->vcpu, kvm_run, in, size, port);
6aa8b732
AK
1128}
1129
c47f098d
JR
1130static int nmi_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1131{
af9ca2d7 1132 KVMTRACE_0D(NMI, &svm->vcpu, handler);
c47f098d
JR
1133 return 1;
1134}
1135
a0698055
JR
1136static int intr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1137{
1138 ++svm->vcpu.stat.irq_exits;
af9ca2d7 1139 KVMTRACE_0D(INTR, &svm->vcpu, handler);
a0698055
JR
1140 return 1;
1141}
1142
e756fc62 1143static int nop_on_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
6aa8b732
AK
1144{
1145 return 1;
1146}
1147
e756fc62 1148static int halt_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
6aa8b732 1149{
5fdbf976 1150 svm->next_rip = kvm_rip_read(&svm->vcpu) + 1;
e756fc62
RR
1151 skip_emulated_instruction(&svm->vcpu);
1152 return kvm_emulate_halt(&svm->vcpu);
6aa8b732
AK
1153}
1154
e756fc62 1155static int vmmcall_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
02e235bc 1156{
5fdbf976 1157 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
e756fc62 1158 skip_emulated_instruction(&svm->vcpu);
7aa81cc0
AL
1159 kvm_emulate_hypercall(&svm->vcpu);
1160 return 1;
02e235bc
AK
1161}
1162
c0725420
AG
1163static int nested_svm_check_permissions(struct vcpu_svm *svm)
1164{
1165 if (!(svm->vcpu.arch.shadow_efer & EFER_SVME)
1166 || !is_paging(&svm->vcpu)) {
1167 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
1168 return 1;
1169 }
1170
1171 if (svm->vmcb->save.cpl) {
1172 kvm_inject_gp(&svm->vcpu, 0);
1173 return 1;
1174 }
1175
1176 return 0;
1177}
1178
1179static struct page *nested_svm_get_page(struct vcpu_svm *svm, u64 gpa)
1180{
1181 struct page *page;
1182
1183 down_read(&current->mm->mmap_sem);
1184 page = gfn_to_page(svm->vcpu.kvm, gpa >> PAGE_SHIFT);
1185 up_read(&current->mm->mmap_sem);
1186
1187 if (is_error_page(page)) {
1188 printk(KERN_INFO "%s: could not find page at 0x%llx\n",
1189 __func__, gpa);
1190 kvm_release_page_clean(page);
1191 kvm_inject_gp(&svm->vcpu, 0);
1192 return NULL;
1193 }
1194 return page;
1195}
1196
1197static int nested_svm_do(struct vcpu_svm *svm,
1198 u64 arg1_gpa, u64 arg2_gpa, void *opaque,
1199 int (*handler)(struct vcpu_svm *svm,
1200 void *arg1,
1201 void *arg2,
1202 void *opaque))
1203{
1204 struct page *arg1_page;
1205 struct page *arg2_page = NULL;
1206 void *arg1;
1207 void *arg2 = NULL;
1208 int retval;
1209
1210 arg1_page = nested_svm_get_page(svm, arg1_gpa);
1211 if(arg1_page == NULL)
1212 return 1;
1213
1214 if (arg2_gpa) {
1215 arg2_page = nested_svm_get_page(svm, arg2_gpa);
1216 if(arg2_page == NULL) {
1217 kvm_release_page_clean(arg1_page);
1218 return 1;
1219 }
1220 }
1221
1222 arg1 = kmap_atomic(arg1_page, KM_USER0);
1223 if (arg2_gpa)
1224 arg2 = kmap_atomic(arg2_page, KM_USER1);
1225
1226 retval = handler(svm, arg1, arg2, opaque);
1227
1228 kunmap_atomic(arg1, KM_USER0);
1229 if (arg2_gpa)
1230 kunmap_atomic(arg2, KM_USER1);
1231
1232 kvm_release_page_dirty(arg1_page);
1233 if (arg2_gpa)
1234 kvm_release_page_dirty(arg2_page);
1235
1236 return retval;
1237}
1238
1371d904
AG
1239static int stgi_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1240{
1241 if (nested_svm_check_permissions(svm))
1242 return 1;
1243
1244 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
1245 skip_emulated_instruction(&svm->vcpu);
1246
1247 svm->vcpu.arch.hflags |= HF_GIF_MASK;
1248
1249 return 1;
1250}
1251
1252static int clgi_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1253{
1254 if (nested_svm_check_permissions(svm))
1255 return 1;
1256
1257 svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
1258 skip_emulated_instruction(&svm->vcpu);
1259
1260 svm->vcpu.arch.hflags &= ~HF_GIF_MASK;
1261
1262 /* After a CLGI no interrupts should come */
1263 svm_clear_vintr(svm);
1264 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
1265
1266 return 1;
1267}
1268
e756fc62
RR
1269static int invalid_op_interception(struct vcpu_svm *svm,
1270 struct kvm_run *kvm_run)
6aa8b732 1271{
7ee5d940 1272 kvm_queue_exception(&svm->vcpu, UD_VECTOR);
6aa8b732
AK
1273 return 1;
1274}
1275
e756fc62
RR
1276static int task_switch_interception(struct vcpu_svm *svm,
1277 struct kvm_run *kvm_run)
6aa8b732 1278{
37817f29
IE
1279 u16 tss_selector;
1280
1281 tss_selector = (u16)svm->vmcb->control.exit_info_1;
1282 if (svm->vmcb->control.exit_info_2 &
1283 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_IRET))
1284 return kvm_task_switch(&svm->vcpu, tss_selector,
1285 TASK_SWITCH_IRET);
1286 if (svm->vmcb->control.exit_info_2 &
1287 (1ULL << SVM_EXITINFOSHIFT_TS_REASON_JMP))
1288 return kvm_task_switch(&svm->vcpu, tss_selector,
1289 TASK_SWITCH_JMP);
1290 return kvm_task_switch(&svm->vcpu, tss_selector, TASK_SWITCH_CALL);
6aa8b732
AK
1291}
1292
e756fc62 1293static int cpuid_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
6aa8b732 1294{
5fdbf976 1295 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
e756fc62 1296 kvm_emulate_cpuid(&svm->vcpu);
06465c5a 1297 return 1;
6aa8b732
AK
1298}
1299
a7052897
MT
1300static int invlpg_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1301{
1302 if (emulate_instruction(&svm->vcpu, kvm_run, 0, 0, 0) != EMULATE_DONE)
1303 pr_unimpl(&svm->vcpu, "%s: failed\n", __func__);
1304 return 1;
1305}
1306
e756fc62
RR
1307static int emulate_on_interception(struct vcpu_svm *svm,
1308 struct kvm_run *kvm_run)
6aa8b732 1309{
3427318f 1310 if (emulate_instruction(&svm->vcpu, NULL, 0, 0, 0) != EMULATE_DONE)
b8688d51 1311 pr_unimpl(&svm->vcpu, "%s: failed\n", __func__);
6aa8b732
AK
1312 return 1;
1313}
1314
1d075434
JR
1315static int cr8_write_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1316{
1317 emulate_instruction(&svm->vcpu, NULL, 0, 0, 0);
1318 if (irqchip_in_kernel(svm->vcpu.kvm))
1319 return 1;
1320 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
1321 return 0;
1322}
1323
6aa8b732
AK
1324static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
1325{
a2fa3e9f
GH
1326 struct vcpu_svm *svm = to_svm(vcpu);
1327
6aa8b732 1328 switch (ecx) {
6aa8b732
AK
1329 case MSR_IA32_TIME_STAMP_COUNTER: {
1330 u64 tsc;
1331
1332 rdtscll(tsc);
a2fa3e9f 1333 *data = svm->vmcb->control.tsc_offset + tsc;
6aa8b732
AK
1334 break;
1335 }
0e859cac 1336 case MSR_K6_STAR:
a2fa3e9f 1337 *data = svm->vmcb->save.star;
6aa8b732 1338 break;
0e859cac 1339#ifdef CONFIG_X86_64
6aa8b732 1340 case MSR_LSTAR:
a2fa3e9f 1341 *data = svm->vmcb->save.lstar;
6aa8b732
AK
1342 break;
1343 case MSR_CSTAR:
a2fa3e9f 1344 *data = svm->vmcb->save.cstar;
6aa8b732
AK
1345 break;
1346 case MSR_KERNEL_GS_BASE:
a2fa3e9f 1347 *data = svm->vmcb->save.kernel_gs_base;
6aa8b732
AK
1348 break;
1349 case MSR_SYSCALL_MASK:
a2fa3e9f 1350 *data = svm->vmcb->save.sfmask;
6aa8b732
AK
1351 break;
1352#endif
1353 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 1354 *data = svm->vmcb->save.sysenter_cs;
6aa8b732
AK
1355 break;
1356 case MSR_IA32_SYSENTER_EIP:
a2fa3e9f 1357 *data = svm->vmcb->save.sysenter_eip;
6aa8b732
AK
1358 break;
1359 case MSR_IA32_SYSENTER_ESP:
a2fa3e9f 1360 *data = svm->vmcb->save.sysenter_esp;
6aa8b732 1361 break;
a2938c80
JR
1362 /* Nobody will change the following 5 values in the VMCB so
1363 we can safely return them on rdmsr. They will always be 0
1364 until LBRV is implemented. */
1365 case MSR_IA32_DEBUGCTLMSR:
1366 *data = svm->vmcb->save.dbgctl;
1367 break;
1368 case MSR_IA32_LASTBRANCHFROMIP:
1369 *data = svm->vmcb->save.br_from;
1370 break;
1371 case MSR_IA32_LASTBRANCHTOIP:
1372 *data = svm->vmcb->save.br_to;
1373 break;
1374 case MSR_IA32_LASTINTFROMIP:
1375 *data = svm->vmcb->save.last_excp_from;
1376 break;
1377 case MSR_IA32_LASTINTTOIP:
1378 *data = svm->vmcb->save.last_excp_to;
1379 break;
6aa8b732 1380 default:
3bab1f5d 1381 return kvm_get_msr_common(vcpu, ecx, data);
6aa8b732
AK
1382 }
1383 return 0;
1384}
1385
e756fc62 1386static int rdmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
6aa8b732 1387{
ad312c7c 1388 u32 ecx = svm->vcpu.arch.regs[VCPU_REGS_RCX];
6aa8b732
AK
1389 u64 data;
1390
e756fc62 1391 if (svm_get_msr(&svm->vcpu, ecx, &data))
c1a5d4f9 1392 kvm_inject_gp(&svm->vcpu, 0);
6aa8b732 1393 else {
af9ca2d7
JR
1394 KVMTRACE_3D(MSR_READ, &svm->vcpu, ecx, (u32)data,
1395 (u32)(data >> 32), handler);
1396
5fdbf976 1397 svm->vcpu.arch.regs[VCPU_REGS_RAX] = data & 0xffffffff;
ad312c7c 1398 svm->vcpu.arch.regs[VCPU_REGS_RDX] = data >> 32;
5fdbf976 1399 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
e756fc62 1400 skip_emulated_instruction(&svm->vcpu);
6aa8b732
AK
1401 }
1402 return 1;
1403}
1404
1405static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
1406{
a2fa3e9f
GH
1407 struct vcpu_svm *svm = to_svm(vcpu);
1408
6aa8b732 1409 switch (ecx) {
6aa8b732
AK
1410 case MSR_IA32_TIME_STAMP_COUNTER: {
1411 u64 tsc;
1412
1413 rdtscll(tsc);
a2fa3e9f 1414 svm->vmcb->control.tsc_offset = data - tsc;
6aa8b732
AK
1415 break;
1416 }
0e859cac 1417 case MSR_K6_STAR:
a2fa3e9f 1418 svm->vmcb->save.star = data;
6aa8b732 1419 break;
49b14f24 1420#ifdef CONFIG_X86_64
6aa8b732 1421 case MSR_LSTAR:
a2fa3e9f 1422 svm->vmcb->save.lstar = data;
6aa8b732
AK
1423 break;
1424 case MSR_CSTAR:
a2fa3e9f 1425 svm->vmcb->save.cstar = data;
6aa8b732
AK
1426 break;
1427 case MSR_KERNEL_GS_BASE:
a2fa3e9f 1428 svm->vmcb->save.kernel_gs_base = data;
6aa8b732
AK
1429 break;
1430 case MSR_SYSCALL_MASK:
a2fa3e9f 1431 svm->vmcb->save.sfmask = data;
6aa8b732
AK
1432 break;
1433#endif
1434 case MSR_IA32_SYSENTER_CS:
a2fa3e9f 1435 svm->vmcb->save.sysenter_cs = data;
6aa8b732
AK
1436 break;
1437 case MSR_IA32_SYSENTER_EIP:
a2fa3e9f 1438 svm->vmcb->save.sysenter_eip = data;
6aa8b732
AK
1439 break;
1440 case MSR_IA32_SYSENTER_ESP:
a2fa3e9f 1441 svm->vmcb->save.sysenter_esp = data;
6aa8b732 1442 break;
a2938c80 1443 case MSR_IA32_DEBUGCTLMSR:
24e09cbf
JR
1444 if (!svm_has(SVM_FEATURE_LBRV)) {
1445 pr_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTL 0x%llx, nop\n",
b8688d51 1446 __func__, data);
24e09cbf
JR
1447 break;
1448 }
1449 if (data & DEBUGCTL_RESERVED_BITS)
1450 return 1;
1451
1452 svm->vmcb->save.dbgctl = data;
1453 if (data & (1ULL<<0))
1454 svm_enable_lbrv(svm);
1455 else
1456 svm_disable_lbrv(svm);
a2938c80 1457 break;
62b9abaa
JR
1458 case MSR_K7_EVNTSEL0:
1459 case MSR_K7_EVNTSEL1:
1460 case MSR_K7_EVNTSEL2:
1461 case MSR_K7_EVNTSEL3:
14ae51b6
CL
1462 case MSR_K7_PERFCTR0:
1463 case MSR_K7_PERFCTR1:
1464 case MSR_K7_PERFCTR2:
1465 case MSR_K7_PERFCTR3:
62b9abaa 1466 /*
14ae51b6
CL
1467 * Just discard all writes to the performance counters; this
1468 * should keep both older linux and windows 64-bit guests
1469 * happy
62b9abaa 1470 */
14ae51b6
CL
1471 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: 0x%x data 0x%llx\n", ecx, data);
1472
62b9abaa 1473 break;
6aa8b732 1474 default:
3bab1f5d 1475 return kvm_set_msr_common(vcpu, ecx, data);
6aa8b732
AK
1476 }
1477 return 0;
1478}
1479
e756fc62 1480static int wrmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
6aa8b732 1481{
ad312c7c 1482 u32 ecx = svm->vcpu.arch.regs[VCPU_REGS_RCX];
5fdbf976 1483 u64 data = (svm->vcpu.arch.regs[VCPU_REGS_RAX] & -1u)
ad312c7c 1484 | ((u64)(svm->vcpu.arch.regs[VCPU_REGS_RDX] & -1u) << 32);
af9ca2d7
JR
1485
1486 KVMTRACE_3D(MSR_WRITE, &svm->vcpu, ecx, (u32)data, (u32)(data >> 32),
1487 handler);
1488
5fdbf976 1489 svm->next_rip = kvm_rip_read(&svm->vcpu) + 2;
e756fc62 1490 if (svm_set_msr(&svm->vcpu, ecx, data))
c1a5d4f9 1491 kvm_inject_gp(&svm->vcpu, 0);
6aa8b732 1492 else
e756fc62 1493 skip_emulated_instruction(&svm->vcpu);
6aa8b732
AK
1494 return 1;
1495}
1496
e756fc62 1497static int msr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
6aa8b732 1498{
e756fc62
RR
1499 if (svm->vmcb->control.exit_info_1)
1500 return wrmsr_interception(svm, kvm_run);
6aa8b732 1501 else
e756fc62 1502 return rdmsr_interception(svm, kvm_run);
6aa8b732
AK
1503}
1504
e756fc62 1505static int interrupt_window_interception(struct vcpu_svm *svm,
c1150d8c
DL
1506 struct kvm_run *kvm_run)
1507{
af9ca2d7
JR
1508 KVMTRACE_0D(PEND_INTR, &svm->vcpu, handler);
1509
f0b85051 1510 svm_clear_vintr(svm);
85f455f7 1511 svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
c1150d8c
DL
1512 /*
1513 * If the user space waits to inject interrupts, exit as soon as
1514 * possible
1515 */
1516 if (kvm_run->request_interrupt_window &&
ad312c7c 1517 !svm->vcpu.arch.irq_summary) {
e756fc62 1518 ++svm->vcpu.stat.irq_window_exits;
c1150d8c
DL
1519 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
1520 return 0;
1521 }
1522
1523 return 1;
1524}
1525
e756fc62 1526static int (*svm_exit_handlers[])(struct vcpu_svm *svm,
6aa8b732
AK
1527 struct kvm_run *kvm_run) = {
1528 [SVM_EXIT_READ_CR0] = emulate_on_interception,
1529 [SVM_EXIT_READ_CR3] = emulate_on_interception,
1530 [SVM_EXIT_READ_CR4] = emulate_on_interception,
80a8119c 1531 [SVM_EXIT_READ_CR8] = emulate_on_interception,
6aa8b732
AK
1532 /* for now: */
1533 [SVM_EXIT_WRITE_CR0] = emulate_on_interception,
1534 [SVM_EXIT_WRITE_CR3] = emulate_on_interception,
1535 [SVM_EXIT_WRITE_CR4] = emulate_on_interception,
1d075434 1536 [SVM_EXIT_WRITE_CR8] = cr8_write_interception,
6aa8b732
AK
1537 [SVM_EXIT_READ_DR0] = emulate_on_interception,
1538 [SVM_EXIT_READ_DR1] = emulate_on_interception,
1539 [SVM_EXIT_READ_DR2] = emulate_on_interception,
1540 [SVM_EXIT_READ_DR3] = emulate_on_interception,
1541 [SVM_EXIT_WRITE_DR0] = emulate_on_interception,
1542 [SVM_EXIT_WRITE_DR1] = emulate_on_interception,
1543 [SVM_EXIT_WRITE_DR2] = emulate_on_interception,
1544 [SVM_EXIT_WRITE_DR3] = emulate_on_interception,
1545 [SVM_EXIT_WRITE_DR5] = emulate_on_interception,
1546 [SVM_EXIT_WRITE_DR7] = emulate_on_interception,
7aa81cc0 1547 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
6aa8b732 1548 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
7807fa6c 1549 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception,
53371b50 1550 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
a0698055 1551 [SVM_EXIT_INTR] = intr_interception,
c47f098d 1552 [SVM_EXIT_NMI] = nmi_interception,
6aa8b732
AK
1553 [SVM_EXIT_SMI] = nop_on_interception,
1554 [SVM_EXIT_INIT] = nop_on_interception,
c1150d8c 1555 [SVM_EXIT_VINTR] = interrupt_window_interception,
6aa8b732
AK
1556 /* [SVM_EXIT_CR0_SEL_WRITE] = emulate_on_interception, */
1557 [SVM_EXIT_CPUID] = cpuid_interception,
cf5a94d1 1558 [SVM_EXIT_INVD] = emulate_on_interception,
6aa8b732 1559 [SVM_EXIT_HLT] = halt_interception,
a7052897 1560 [SVM_EXIT_INVLPG] = invlpg_interception,
6aa8b732
AK
1561 [SVM_EXIT_INVLPGA] = invalid_op_interception,
1562 [SVM_EXIT_IOIO] = io_interception,
1563 [SVM_EXIT_MSR] = msr_interception,
1564 [SVM_EXIT_TASK_SWITCH] = task_switch_interception,
46fe4ddd 1565 [SVM_EXIT_SHUTDOWN] = shutdown_interception,
6aa8b732 1566 [SVM_EXIT_VMRUN] = invalid_op_interception,
02e235bc 1567 [SVM_EXIT_VMMCALL] = vmmcall_interception,
6aa8b732
AK
1568 [SVM_EXIT_VMLOAD] = invalid_op_interception,
1569 [SVM_EXIT_VMSAVE] = invalid_op_interception,
1371d904
AG
1570 [SVM_EXIT_STGI] = stgi_interception,
1571 [SVM_EXIT_CLGI] = clgi_interception,
6aa8b732 1572 [SVM_EXIT_SKINIT] = invalid_op_interception,
cf5a94d1 1573 [SVM_EXIT_WBINVD] = emulate_on_interception,
916ce236
JR
1574 [SVM_EXIT_MONITOR] = invalid_op_interception,
1575 [SVM_EXIT_MWAIT] = invalid_op_interception,
709ddebf 1576 [SVM_EXIT_NPF] = pf_interception,
6aa8b732
AK
1577};
1578
04d2cc77 1579static int handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
6aa8b732 1580{
04d2cc77 1581 struct vcpu_svm *svm = to_svm(vcpu);
a2fa3e9f 1582 u32 exit_code = svm->vmcb->control.exit_code;
6aa8b732 1583
af9ca2d7
JR
1584 KVMTRACE_3D(VMEXIT, vcpu, exit_code, (u32)svm->vmcb->save.rip,
1585 (u32)((u64)svm->vmcb->save.rip >> 32), entryexit);
1586
709ddebf
JR
1587 if (npt_enabled) {
1588 int mmu_reload = 0;
1589 if ((vcpu->arch.cr0 ^ svm->vmcb->save.cr0) & X86_CR0_PG) {
1590 svm_set_cr0(vcpu, svm->vmcb->save.cr0);
1591 mmu_reload = 1;
1592 }
1593 vcpu->arch.cr0 = svm->vmcb->save.cr0;
1594 vcpu->arch.cr3 = svm->vmcb->save.cr3;
1595 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1596 if (!load_pdptrs(vcpu, vcpu->arch.cr3)) {
1597 kvm_inject_gp(vcpu, 0);
1598 return 1;
1599 }
1600 }
1601 if (mmu_reload) {
1602 kvm_mmu_reset_context(vcpu);
1603 kvm_mmu_load(vcpu);
1604 }
1605 }
1606
04d2cc77
AK
1607 kvm_reput_irq(svm);
1608
1609 if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
1610 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
1611 kvm_run->fail_entry.hardware_entry_failure_reason
1612 = svm->vmcb->control.exit_code;
1613 return 0;
1614 }
1615
a2fa3e9f 1616 if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
709ddebf
JR
1617 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR &&
1618 exit_code != SVM_EXIT_NPF)
6aa8b732
AK
1619 printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x "
1620 "exit_code 0x%x\n",
b8688d51 1621 __func__, svm->vmcb->control.exit_int_info,
6aa8b732
AK
1622 exit_code);
1623
9d8f549d 1624 if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
56919c5c 1625 || !svm_exit_handlers[exit_code]) {
6aa8b732 1626 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
364b625b 1627 kvm_run->hw.hardware_exit_reason = exit_code;
6aa8b732
AK
1628 return 0;
1629 }
1630
e756fc62 1631 return svm_exit_handlers[exit_code](svm, kvm_run);
6aa8b732
AK
1632}
1633
1634static void reload_tss(struct kvm_vcpu *vcpu)
1635{
1636 int cpu = raw_smp_processor_id();
1637
1638 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
d77c26fc 1639 svm_data->tss_desc->type = 9; /* available 32/64-bit TSS */
6aa8b732
AK
1640 load_TR_desc();
1641}
1642
e756fc62 1643static void pre_svm_run(struct vcpu_svm *svm)
6aa8b732
AK
1644{
1645 int cpu = raw_smp_processor_id();
1646
1647 struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1648
a2fa3e9f 1649 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
e756fc62 1650 if (svm->vcpu.cpu != cpu ||
a2fa3e9f 1651 svm->asid_generation != svm_data->asid_generation)
e756fc62 1652 new_asid(svm, svm_data);
6aa8b732
AK
1653}
1654
1655
85f455f7 1656static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
6aa8b732
AK
1657{
1658 struct vmcb_control_area *control;
1659
af9ca2d7
JR
1660 KVMTRACE_1D(INJ_VIRQ, &svm->vcpu, (u32)irq, handler);
1661
fa89a817 1662 ++svm->vcpu.stat.irq_injections;
e756fc62 1663 control = &svm->vmcb->control;
85f455f7 1664 control->int_vector = irq;
6aa8b732
AK
1665 control->int_ctl &= ~V_INTR_PRIO_MASK;
1666 control->int_ctl |= V_IRQ_MASK |
1667 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
1668}
1669
2a8067f1
ED
1670static void svm_set_irq(struct kvm_vcpu *vcpu, int irq)
1671{
1672 struct vcpu_svm *svm = to_svm(vcpu);
1673
1674 svm_inject_irq(svm, irq);
1675}
1676
aaacfc9a
JR
1677static void update_cr8_intercept(struct kvm_vcpu *vcpu)
1678{
1679 struct vcpu_svm *svm = to_svm(vcpu);
1680 struct vmcb *vmcb = svm->vmcb;
1681 int max_irr, tpr;
1682
1683 if (!irqchip_in_kernel(vcpu->kvm) || vcpu->arch.apic->vapic_addr)
1684 return;
1685
1686 vmcb->control.intercept_cr_write &= ~INTERCEPT_CR8_MASK;
1687
1688 max_irr = kvm_lapic_find_highest_irr(vcpu);
1689 if (max_irr == -1)
1690 return;
1691
1692 tpr = kvm_lapic_get_cr8(vcpu) << 4;
1693
1694 if (tpr >= (max_irr & 0xf0))
1695 vmcb->control.intercept_cr_write |= INTERCEPT_CR8_MASK;
1696}
1697
04d2cc77 1698static void svm_intr_assist(struct kvm_vcpu *vcpu)
6aa8b732 1699{
04d2cc77 1700 struct vcpu_svm *svm = to_svm(vcpu);
85f455f7
ED
1701 struct vmcb *vmcb = svm->vmcb;
1702 int intr_vector = -1;
1703
1704 if ((vmcb->control.exit_int_info & SVM_EVTINJ_VALID) &&
1705 ((vmcb->control.exit_int_info & SVM_EVTINJ_TYPE_MASK) == 0)) {
1706 intr_vector = vmcb->control.exit_int_info &
1707 SVM_EVTINJ_VEC_MASK;
1708 vmcb->control.exit_int_info = 0;
1709 svm_inject_irq(svm, intr_vector);
aaacfc9a 1710 goto out;
85f455f7
ED
1711 }
1712
1713 if (vmcb->control.int_ctl & V_IRQ_MASK)
aaacfc9a 1714 goto out;
85f455f7 1715
1b9778da 1716 if (!kvm_cpu_has_interrupt(vcpu))
aaacfc9a 1717 goto out;
85f455f7 1718
1371d904
AG
1719 if (!(svm->vcpu.arch.hflags & HF_GIF_MASK))
1720 goto out;
1721
85f455f7
ED
1722 if (!(vmcb->save.rflags & X86_EFLAGS_IF) ||
1723 (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
1724 (vmcb->control.event_inj & SVM_EVTINJ_VALID)) {
1725 /* unable to deliver irq, set pending irq */
f0b85051 1726 svm_set_vintr(svm);
85f455f7 1727 svm_inject_irq(svm, 0x0);
aaacfc9a 1728 goto out;
85f455f7
ED
1729 }
1730 /* Okay, we can deliver the interrupt: grab it and update PIC state. */
1b9778da 1731 intr_vector = kvm_cpu_get_interrupt(vcpu);
85f455f7 1732 svm_inject_irq(svm, intr_vector);
aaacfc9a
JR
1733out:
1734 update_cr8_intercept(vcpu);
85f455f7
ED
1735}
1736
1737static void kvm_reput_irq(struct vcpu_svm *svm)
1738{
e756fc62 1739 struct vmcb_control_area *control = &svm->vmcb->control;
6aa8b732 1740
7017fc3d
ED
1741 if ((control->int_ctl & V_IRQ_MASK)
1742 && !irqchip_in_kernel(svm->vcpu.kvm)) {
6aa8b732 1743 control->int_ctl &= ~V_IRQ_MASK;
e756fc62 1744 push_irq(&svm->vcpu, control->int_vector);
6aa8b732 1745 }
c1150d8c 1746
ad312c7c 1747 svm->vcpu.arch.interrupt_window_open =
1371d904
AG
1748 !(control->int_state & SVM_INTERRUPT_SHADOW_MASK) &&
1749 (svm->vcpu.arch.hflags & HF_GIF_MASK);
c1150d8c
DL
1750}
1751
85f455f7
ED
1752static void svm_do_inject_vector(struct vcpu_svm *svm)
1753{
1754 struct kvm_vcpu *vcpu = &svm->vcpu;
ad312c7c
ZX
1755 int word_index = __ffs(vcpu->arch.irq_summary);
1756 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
85f455f7
ED
1757 int irq = word_index * BITS_PER_LONG + bit_index;
1758
ad312c7c
ZX
1759 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
1760 if (!vcpu->arch.irq_pending[word_index])
1761 clear_bit(word_index, &vcpu->arch.irq_summary);
85f455f7
ED
1762 svm_inject_irq(svm, irq);
1763}
1764
04d2cc77 1765static void do_interrupt_requests(struct kvm_vcpu *vcpu,
c1150d8c
DL
1766 struct kvm_run *kvm_run)
1767{
04d2cc77 1768 struct vcpu_svm *svm = to_svm(vcpu);
a2fa3e9f 1769 struct vmcb_control_area *control = &svm->vmcb->control;
c1150d8c 1770
ad312c7c 1771 svm->vcpu.arch.interrupt_window_open =
c1150d8c 1772 (!(control->int_state & SVM_INTERRUPT_SHADOW_MASK) &&
1371d904
AG
1773 (svm->vmcb->save.rflags & X86_EFLAGS_IF) &&
1774 (svm->vcpu.arch.hflags & HF_GIF_MASK));
c1150d8c 1775
ad312c7c 1776 if (svm->vcpu.arch.interrupt_window_open && svm->vcpu.arch.irq_summary)
c1150d8c
DL
1777 /*
1778 * If interrupts enabled, and not blocked by sti or mov ss. Good.
1779 */
85f455f7 1780 svm_do_inject_vector(svm);
c1150d8c
DL
1781
1782 /*
1783 * Interrupts blocked. Wait for unblock.
1784 */
ad312c7c
ZX
1785 if (!svm->vcpu.arch.interrupt_window_open &&
1786 (svm->vcpu.arch.irq_summary || kvm_run->request_interrupt_window))
f0b85051
AG
1787 svm_set_vintr(svm);
1788 else
1789 svm_clear_vintr(svm);
c1150d8c
DL
1790}
1791
cbc94022
IE
1792static int svm_set_tss_addr(struct kvm *kvm, unsigned int addr)
1793{
1794 return 0;
1795}
1796
6aa8b732
AK
1797static void save_db_regs(unsigned long *db_regs)
1798{
5aff458e
AK
1799 asm volatile ("mov %%dr0, %0" : "=r"(db_regs[0]));
1800 asm volatile ("mov %%dr1, %0" : "=r"(db_regs[1]));
1801 asm volatile ("mov %%dr2, %0" : "=r"(db_regs[2]));
1802 asm volatile ("mov %%dr3, %0" : "=r"(db_regs[3]));
6aa8b732
AK
1803}
1804
1805static void load_db_regs(unsigned long *db_regs)
1806{
5aff458e
AK
1807 asm volatile ("mov %0, %%dr0" : : "r"(db_regs[0]));
1808 asm volatile ("mov %0, %%dr1" : : "r"(db_regs[1]));
1809 asm volatile ("mov %0, %%dr2" : : "r"(db_regs[2]));
1810 asm volatile ("mov %0, %%dr3" : : "r"(db_regs[3]));
6aa8b732
AK
1811}
1812
d9e368d6
AK
1813static void svm_flush_tlb(struct kvm_vcpu *vcpu)
1814{
1815 force_new_asid(vcpu);
1816}
1817
04d2cc77
AK
1818static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
1819{
1820}
1821
d7bf8221
JR
1822static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
1823{
1824 struct vcpu_svm *svm = to_svm(vcpu);
1825
1826 if (!(svm->vmcb->control.intercept_cr_write & INTERCEPT_CR8_MASK)) {
1827 int cr8 = svm->vmcb->control.int_ctl & V_TPR_MASK;
1828 kvm_lapic_set_tpr(vcpu, cr8);
1829 }
1830}
1831
649d6864
JR
1832static inline void sync_lapic_to_cr8(struct kvm_vcpu *vcpu)
1833{
1834 struct vcpu_svm *svm = to_svm(vcpu);
1835 u64 cr8;
1836
1837 if (!irqchip_in_kernel(vcpu->kvm))
1838 return;
1839
1840 cr8 = kvm_get_cr8(vcpu);
1841 svm->vmcb->control.int_ctl &= ~V_TPR_MASK;
1842 svm->vmcb->control.int_ctl |= cr8 & V_TPR_MASK;
1843}
1844
80e31d4f
AK
1845#ifdef CONFIG_X86_64
1846#define R "r"
1847#else
1848#define R "e"
1849#endif
1850
04d2cc77 1851static void svm_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
6aa8b732 1852{
a2fa3e9f 1853 struct vcpu_svm *svm = to_svm(vcpu);
6aa8b732
AK
1854 u16 fs_selector;
1855 u16 gs_selector;
1856 u16 ldt_selector;
d9e368d6 1857
5fdbf976
MT
1858 svm->vmcb->save.rax = vcpu->arch.regs[VCPU_REGS_RAX];
1859 svm->vmcb->save.rsp = vcpu->arch.regs[VCPU_REGS_RSP];
1860 svm->vmcb->save.rip = vcpu->arch.regs[VCPU_REGS_RIP];
1861
e756fc62 1862 pre_svm_run(svm);
6aa8b732 1863
649d6864
JR
1864 sync_lapic_to_cr8(vcpu);
1865
6aa8b732 1866 save_host_msrs(vcpu);
d6e88aec
AK
1867 fs_selector = kvm_read_fs();
1868 gs_selector = kvm_read_gs();
1869 ldt_selector = kvm_read_ldt();
a2fa3e9f
GH
1870 svm->host_cr2 = kvm_read_cr2();
1871 svm->host_dr6 = read_dr6();
1872 svm->host_dr7 = read_dr7();
ad312c7c 1873 svm->vmcb->save.cr2 = vcpu->arch.cr2;
709ddebf
JR
1874 /* required for live migration with NPT */
1875 if (npt_enabled)
1876 svm->vmcb->save.cr3 = vcpu->arch.cr3;
6aa8b732 1877
a2fa3e9f 1878 if (svm->vmcb->save.dr7 & 0xff) {
6aa8b732 1879 write_dr7(0);
a2fa3e9f
GH
1880 save_db_regs(svm->host_db_regs);
1881 load_db_regs(svm->db_regs);
6aa8b732 1882 }
36241b8c 1883
04d2cc77
AK
1884 clgi();
1885
1886 local_irq_enable();
36241b8c 1887
6aa8b732 1888 asm volatile (
80e31d4f
AK
1889 "push %%"R"bp; \n\t"
1890 "mov %c[rbx](%[svm]), %%"R"bx \n\t"
1891 "mov %c[rcx](%[svm]), %%"R"cx \n\t"
1892 "mov %c[rdx](%[svm]), %%"R"dx \n\t"
1893 "mov %c[rsi](%[svm]), %%"R"si \n\t"
1894 "mov %c[rdi](%[svm]), %%"R"di \n\t"
1895 "mov %c[rbp](%[svm]), %%"R"bp \n\t"
05b3e0c2 1896#ifdef CONFIG_X86_64
fb3f0f51
RR
1897 "mov %c[r8](%[svm]), %%r8 \n\t"
1898 "mov %c[r9](%[svm]), %%r9 \n\t"
1899 "mov %c[r10](%[svm]), %%r10 \n\t"
1900 "mov %c[r11](%[svm]), %%r11 \n\t"
1901 "mov %c[r12](%[svm]), %%r12 \n\t"
1902 "mov %c[r13](%[svm]), %%r13 \n\t"
1903 "mov %c[r14](%[svm]), %%r14 \n\t"
1904 "mov %c[r15](%[svm]), %%r15 \n\t"
6aa8b732
AK
1905#endif
1906
6aa8b732 1907 /* Enter guest mode */
80e31d4f
AK
1908 "push %%"R"ax \n\t"
1909 "mov %c[vmcb](%[svm]), %%"R"ax \n\t"
4ecac3fd
AK
1910 __ex(SVM_VMLOAD) "\n\t"
1911 __ex(SVM_VMRUN) "\n\t"
1912 __ex(SVM_VMSAVE) "\n\t"
80e31d4f 1913 "pop %%"R"ax \n\t"
6aa8b732
AK
1914
1915 /* Save guest registers, load host registers */
80e31d4f
AK
1916 "mov %%"R"bx, %c[rbx](%[svm]) \n\t"
1917 "mov %%"R"cx, %c[rcx](%[svm]) \n\t"
1918 "mov %%"R"dx, %c[rdx](%[svm]) \n\t"
1919 "mov %%"R"si, %c[rsi](%[svm]) \n\t"
1920 "mov %%"R"di, %c[rdi](%[svm]) \n\t"
1921 "mov %%"R"bp, %c[rbp](%[svm]) \n\t"
05b3e0c2 1922#ifdef CONFIG_X86_64
fb3f0f51
RR
1923 "mov %%r8, %c[r8](%[svm]) \n\t"
1924 "mov %%r9, %c[r9](%[svm]) \n\t"
1925 "mov %%r10, %c[r10](%[svm]) \n\t"
1926 "mov %%r11, %c[r11](%[svm]) \n\t"
1927 "mov %%r12, %c[r12](%[svm]) \n\t"
1928 "mov %%r13, %c[r13](%[svm]) \n\t"
1929 "mov %%r14, %c[r14](%[svm]) \n\t"
1930 "mov %%r15, %c[r15](%[svm]) \n\t"
6aa8b732 1931#endif
80e31d4f 1932 "pop %%"R"bp"
6aa8b732 1933 :
fb3f0f51 1934 : [svm]"a"(svm),
6aa8b732 1935 [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
ad312c7c
ZX
1936 [rbx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBX])),
1937 [rcx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RCX])),
1938 [rdx]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDX])),
1939 [rsi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RSI])),
1940 [rdi]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RDI])),
1941 [rbp]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_RBP]))
05b3e0c2 1942#ifdef CONFIG_X86_64
ad312c7c
ZX
1943 , [r8]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R8])),
1944 [r9]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R9])),
1945 [r10]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R10])),
1946 [r11]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R11])),
1947 [r12]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R12])),
1948 [r13]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R13])),
1949 [r14]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R14])),
1950 [r15]"i"(offsetof(struct vcpu_svm, vcpu.arch.regs[VCPU_REGS_R15]))
6aa8b732 1951#endif
54a08c04 1952 : "cc", "memory"
80e31d4f 1953 , R"bx", R"cx", R"dx", R"si", R"di"
54a08c04 1954#ifdef CONFIG_X86_64
54a08c04
LV
1955 , "r8", "r9", "r10", "r11" , "r12", "r13", "r14", "r15"
1956#endif
1957 );
6aa8b732 1958
a2fa3e9f
GH
1959 if ((svm->vmcb->save.dr7 & 0xff))
1960 load_db_regs(svm->host_db_regs);
6aa8b732 1961
ad312c7c 1962 vcpu->arch.cr2 = svm->vmcb->save.cr2;
5fdbf976
MT
1963 vcpu->arch.regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
1964 vcpu->arch.regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
1965 vcpu->arch.regs[VCPU_REGS_RIP] = svm->vmcb->save.rip;
6aa8b732 1966
a2fa3e9f
GH
1967 write_dr6(svm->host_dr6);
1968 write_dr7(svm->host_dr7);
1969 kvm_write_cr2(svm->host_cr2);
6aa8b732 1970
d6e88aec
AK
1971 kvm_load_fs(fs_selector);
1972 kvm_load_gs(gs_selector);
1973 kvm_load_ldt(ldt_selector);
6aa8b732
AK
1974 load_host_msrs(vcpu);
1975
1976 reload_tss(vcpu);
1977
56ba47dd
AK
1978 local_irq_disable();
1979
1980 stgi();
1981
d7bf8221
JR
1982 sync_cr8_to_lapic(vcpu);
1983
a2fa3e9f 1984 svm->next_rip = 0;
6aa8b732
AK
1985}
1986
80e31d4f
AK
1987#undef R
1988
6aa8b732
AK
1989static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
1990{
a2fa3e9f
GH
1991 struct vcpu_svm *svm = to_svm(vcpu);
1992
709ddebf
JR
1993 if (npt_enabled) {
1994 svm->vmcb->control.nested_cr3 = root;
1995 force_new_asid(vcpu);
1996 return;
1997 }
1998
a2fa3e9f 1999 svm->vmcb->save.cr3 = root;
6aa8b732 2000 force_new_asid(vcpu);
7807fa6c
AL
2001
2002 if (vcpu->fpu_active) {
a2fa3e9f
GH
2003 svm->vmcb->control.intercept_exceptions |= (1 << NM_VECTOR);
2004 svm->vmcb->save.cr0 |= X86_CR0_TS;
7807fa6c
AL
2005 vcpu->fpu_active = 0;
2006 }
6aa8b732
AK
2007}
2008
6aa8b732
AK
2009static int is_disabled(void)
2010{
6031a61c
JR
2011 u64 vm_cr;
2012
2013 rdmsrl(MSR_VM_CR, vm_cr);
2014 if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
2015 return 1;
2016
6aa8b732
AK
2017 return 0;
2018}
2019
102d8325
IM
2020static void
2021svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2022{
2023 /*
2024 * Patch in the VMMCALL instruction:
2025 */
2026 hypercall[0] = 0x0f;
2027 hypercall[1] = 0x01;
2028 hypercall[2] = 0xd9;
102d8325
IM
2029}
2030
002c7f7c
YS
2031static void svm_check_processor_compat(void *rtn)
2032{
2033 *(int *)rtn = 0;
2034}
2035
774ead3a
AK
2036static bool svm_cpu_has_accelerated_tpr(void)
2037{
2038 return false;
2039}
2040
67253af5
SY
2041static int get_npt_level(void)
2042{
2043#ifdef CONFIG_X86_64
2044 return PT64_ROOT_LEVEL;
2045#else
2046 return PT32E_ROOT_LEVEL;
2047#endif
2048}
2049
64d4d521
SY
2050static int svm_get_mt_mask_shift(void)
2051{
2052 return 0;
2053}
2054
cbdd1bea 2055static struct kvm_x86_ops svm_x86_ops = {
6aa8b732
AK
2056 .cpu_has_kvm_support = has_svm,
2057 .disabled_by_bios = is_disabled,
2058 .hardware_setup = svm_hardware_setup,
2059 .hardware_unsetup = svm_hardware_unsetup,
002c7f7c 2060 .check_processor_compatibility = svm_check_processor_compat,
6aa8b732
AK
2061 .hardware_enable = svm_hardware_enable,
2062 .hardware_disable = svm_hardware_disable,
774ead3a 2063 .cpu_has_accelerated_tpr = svm_cpu_has_accelerated_tpr,
6aa8b732
AK
2064
2065 .vcpu_create = svm_create_vcpu,
2066 .vcpu_free = svm_free_vcpu,
04d2cc77 2067 .vcpu_reset = svm_vcpu_reset,
6aa8b732 2068
04d2cc77 2069 .prepare_guest_switch = svm_prepare_guest_switch,
6aa8b732
AK
2070 .vcpu_load = svm_vcpu_load,
2071 .vcpu_put = svm_vcpu_put,
2072
2073 .set_guest_debug = svm_guest_debug,
2074 .get_msr = svm_get_msr,
2075 .set_msr = svm_set_msr,
2076 .get_segment_base = svm_get_segment_base,
2077 .get_segment = svm_get_segment,
2078 .set_segment = svm_set_segment,
2e4d2653 2079 .get_cpl = svm_get_cpl,
1747fb71 2080 .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
25c4c276 2081 .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
6aa8b732 2082 .set_cr0 = svm_set_cr0,
6aa8b732
AK
2083 .set_cr3 = svm_set_cr3,
2084 .set_cr4 = svm_set_cr4,
2085 .set_efer = svm_set_efer,
2086 .get_idt = svm_get_idt,
2087 .set_idt = svm_set_idt,
2088 .get_gdt = svm_get_gdt,
2089 .set_gdt = svm_set_gdt,
2090 .get_dr = svm_get_dr,
2091 .set_dr = svm_set_dr,
6aa8b732
AK
2092 .get_rflags = svm_get_rflags,
2093 .set_rflags = svm_set_rflags,
2094
6aa8b732 2095 .tlb_flush = svm_flush_tlb,
6aa8b732 2096
6aa8b732 2097 .run = svm_vcpu_run,
04d2cc77 2098 .handle_exit = handle_exit,
6aa8b732 2099 .skip_emulated_instruction = skip_emulated_instruction,
102d8325 2100 .patch_hypercall = svm_patch_hypercall,
2a8067f1
ED
2101 .get_irq = svm_get_irq,
2102 .set_irq = svm_set_irq,
298101da
AK
2103 .queue_exception = svm_queue_exception,
2104 .exception_injected = svm_exception_injected,
04d2cc77
AK
2105 .inject_pending_irq = svm_intr_assist,
2106 .inject_pending_vectors = do_interrupt_requests,
cbc94022
IE
2107
2108 .set_tss_addr = svm_set_tss_addr,
67253af5 2109 .get_tdp_level = get_npt_level,
64d4d521 2110 .get_mt_mask_shift = svm_get_mt_mask_shift,
6aa8b732
AK
2111};
2112
2113static int __init svm_init(void)
2114{
cb498ea2 2115 return kvm_init(&svm_x86_ops, sizeof(struct vcpu_svm),
c16f862d 2116 THIS_MODULE);
6aa8b732
AK
2117}
2118
2119static void __exit svm_exit(void)
2120{
cb498ea2 2121 kvm_exit();
6aa8b732
AK
2122}
2123
2124module_init(svm_init)
2125module_exit(svm_exit)
This page took 0.450432 seconds and 5 git commands to generate.