blob: 41634fde8e13f0e594520bdde5f7be066e9cd57e [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001#ifndef __KVM_H
2#define __KVM_H
3
4/*
5 * This work is licensed under the terms of the GNU GPL, version 2. See
6 * the COPYING file in the top-level directory.
7 */
8
9#include <linux/types.h>
10#include <linux/list.h>
11#include <linux/mutex.h>
12#include <linux/spinlock.h>
13#include <linux/mm.h>
14
15#include "vmx.h"
16#include <linux/kvm.h>
Ingo Molnar102d8322007-02-19 14:37:47 +020017#include <linux/kvm_para.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080018
19#define CR0_PE_MASK (1ULL << 0)
20#define CR0_TS_MASK (1ULL << 3)
21#define CR0_NE_MASK (1ULL << 5)
22#define CR0_WP_MASK (1ULL << 16)
23#define CR0_NW_MASK (1ULL << 29)
24#define CR0_CD_MASK (1ULL << 30)
25#define CR0_PG_MASK (1ULL << 31)
26
27#define CR3_WPT_MASK (1ULL << 3)
28#define CR3_PCD_MASK (1ULL << 4)
29
30#define CR3_RESEVED_BITS 0x07ULL
31#define CR3_L_MODE_RESEVED_BITS (~((1ULL << 40) - 1) | 0x0fe7ULL)
32#define CR3_FLAGS_MASK ((1ULL << 5) - 1)
33
34#define CR4_VME_MASK (1ULL << 0)
35#define CR4_PSE_MASK (1ULL << 4)
36#define CR4_PAE_MASK (1ULL << 5)
37#define CR4_PGE_MASK (1ULL << 7)
38#define CR4_VMXE_MASK (1ULL << 13)
39
40#define KVM_GUEST_CR0_MASK \
41 (CR0_PG_MASK | CR0_PE_MASK | CR0_WP_MASK | CR0_NE_MASK \
42 | CR0_NW_MASK | CR0_CD_MASK)
43#define KVM_VM_CR0_ALWAYS_ON \
44 (CR0_PG_MASK | CR0_PE_MASK | CR0_WP_MASK | CR0_NE_MASK)
45#define KVM_GUEST_CR4_MASK \
46 (CR4_PSE_MASK | CR4_PAE_MASK | CR4_PGE_MASK | CR4_VMXE_MASK | CR4_VME_MASK)
47#define KVM_PMODE_VM_CR4_ALWAYS_ON (CR4_VMXE_MASK | CR4_PAE_MASK)
48#define KVM_RMODE_VM_CR4_ALWAYS_ON (CR4_VMXE_MASK | CR4_PAE_MASK | CR4_VME_MASK)
49
50#define INVALID_PAGE (~(hpa_t)0)
51#define UNMAPPED_GVA (~(gpa_t)0)
52
53#define KVM_MAX_VCPUS 1
Avi Kivitye8207542007-03-30 16:54:30 +030054#define KVM_ALIAS_SLOTS 4
Avi Kivity6aa8b732006-12-10 02:21:36 -080055#define KVM_MEMORY_SLOTS 4
56#define KVM_NUM_MMU_PAGES 256
Avi Kivityebeace82007-01-05 16:36:47 -080057#define KVM_MIN_FREE_MMU_PAGES 5
58#define KVM_REFILL_PAGES 25
Avi Kivity06465c52007-02-28 20:46:53 +020059#define KVM_MAX_CPUID_ENTRIES 40
Avi Kivity6aa8b732006-12-10 02:21:36 -080060
61#define FX_IMAGE_SIZE 512
62#define FX_IMAGE_ALIGN 16
63#define FX_BUF_SIZE (2 * FX_IMAGE_SIZE + FX_IMAGE_ALIGN)
64
65#define DE_VECTOR 0
Anthony Liguori7807fa62007-04-23 09:17:21 -050066#define NM_VECTOR 7
Avi Kivity6aa8b732006-12-10 02:21:36 -080067#define DF_VECTOR 8
68#define TS_VECTOR 10
69#define NP_VECTOR 11
70#define SS_VECTOR 12
71#define GP_VECTOR 13
72#define PF_VECTOR 14
73
74#define SELECTOR_TI_MASK (1 << 2)
75#define SELECTOR_RPL_MASK 0x03
76
77#define IOPL_SHIFT 12
78
Avi Kivity039576c2007-03-20 12:46:50 +020079#define KVM_PIO_PAGE_OFFSET 1
80
Avi Kivity6aa8b732006-12-10 02:21:36 -080081/*
82 * Address types:
83 *
84 * gva - guest virtual address
85 * gpa - guest physical address
86 * gfn - guest frame number
87 * hva - host virtual address
88 * hpa - host physical address
89 * hfn - host frame number
90 */
91
92typedef unsigned long gva_t;
93typedef u64 gpa_t;
94typedef unsigned long gfn_t;
95
96typedef unsigned long hva_t;
97typedef u64 hpa_t;
98typedef unsigned long hfn_t;
99
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800100#define NR_PTE_CHAIN_ENTRIES 5
101
102struct kvm_pte_chain {
103 u64 *parent_ptes[NR_PTE_CHAIN_ENTRIES];
104 struct hlist_node link;
105};
106
107/*
108 * kvm_mmu_page_role, below, is defined as:
109 *
110 * bits 0:3 - total guest paging levels (2-4, or zero for real mode)
111 * bits 4:7 - page table level for this shadow (1-4)
112 * bits 8:9 - page table quadrant for 2-level guests
113 * bit 16 - "metaphysical" - gfn is not a real page (huge page/real mode)
Avi Kivityd28c6cf2007-03-23 09:55:25 +0200114 * bits 17:18 - "access" - the user and writable bits of a huge page pde
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800115 */
116union kvm_mmu_page_role {
117 unsigned word;
118 struct {
119 unsigned glevels : 4;
120 unsigned level : 4;
121 unsigned quadrant : 2;
122 unsigned pad_for_nice_hex_output : 6;
123 unsigned metaphysical : 1;
Avi Kivityd28c6cf2007-03-23 09:55:25 +0200124 unsigned hugepage_access : 2;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800125 };
126};
127
Avi Kivity6aa8b732006-12-10 02:21:36 -0800128struct kvm_mmu_page {
129 struct list_head link;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800130 struct hlist_node hash_link;
131
132 /*
133 * The following two entries are used to key the shadow page in the
134 * hash table.
135 */
136 gfn_t gfn;
137 union kvm_mmu_page_role role;
138
Avi Kivity6aa8b732006-12-10 02:21:36 -0800139 hpa_t page_hpa;
140 unsigned long slot_bitmap; /* One bit set per slot which has memory
141 * in this shadow page.
142 */
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800143 int multimapped; /* More than one parent_pte? */
Avi Kivity3bb65a22007-01-05 16:36:51 -0800144 int root_count; /* Currently serving as active root */
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800145 union {
146 u64 *parent_pte; /* !multimapped */
147 struct hlist_head parent_ptes; /* multimapped, kvm_pte_chain */
148 };
Avi Kivity6aa8b732006-12-10 02:21:36 -0800149};
150
151struct vmcs {
152 u32 revision_id;
153 u32 abort;
154 char data[0];
155};
156
157#define vmx_msr_entry kvm_msr_entry
158
159struct kvm_vcpu;
160
161/*
162 * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
163 * 32-bit). The kvm_mmu structure abstracts the details of the current mmu
164 * mode.
165 */
166struct kvm_mmu {
167 void (*new_cr3)(struct kvm_vcpu *vcpu);
168 int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800169 void (*free)(struct kvm_vcpu *vcpu);
170 gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva);
171 hpa_t root_hpa;
172 int root_level;
173 int shadow_root_level;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800174
175 u64 *pae_root;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800176};
177
Avi Kivity714b93d2007-01-05 16:36:53 -0800178#define KVM_NR_MEM_OBJS 20
179
180struct kvm_mmu_memory_cache {
181 int nobjs;
182 void *objects[KVM_NR_MEM_OBJS];
183};
184
185/*
186 * We don't want allocation failures within the mmu code, so we preallocate
187 * enough memory for a single page fault in a cache.
188 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800189struct kvm_guest_debug {
190 int enabled;
191 unsigned long bp[4];
192 int singlestep;
193};
194
195enum {
196 VCPU_REGS_RAX = 0,
197 VCPU_REGS_RCX = 1,
198 VCPU_REGS_RDX = 2,
199 VCPU_REGS_RBX = 3,
200 VCPU_REGS_RSP = 4,
201 VCPU_REGS_RBP = 5,
202 VCPU_REGS_RSI = 6,
203 VCPU_REGS_RDI = 7,
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800204#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800205 VCPU_REGS_R8 = 8,
206 VCPU_REGS_R9 = 9,
207 VCPU_REGS_R10 = 10,
208 VCPU_REGS_R11 = 11,
209 VCPU_REGS_R12 = 12,
210 VCPU_REGS_R13 = 13,
211 VCPU_REGS_R14 = 14,
212 VCPU_REGS_R15 = 15,
213#endif
214 NR_VCPU_REGS
215};
216
217enum {
218 VCPU_SREG_CS,
219 VCPU_SREG_DS,
220 VCPU_SREG_ES,
221 VCPU_SREG_FS,
222 VCPU_SREG_GS,
223 VCPU_SREG_SS,
224 VCPU_SREG_TR,
225 VCPU_SREG_LDTR,
226};
227
Avi Kivity039576c2007-03-20 12:46:50 +0200228struct kvm_pio_request {
229 unsigned long count;
230 int cur_count;
231 struct page *guest_pages[2];
232 unsigned guest_page_offset;
233 int in;
234 int size;
235 int string;
236 int down;
237 int rep;
238};
239
Avi Kivity1165f5f2007-04-19 17:27:43 +0300240struct kvm_stat {
241 u32 pf_fixed;
242 u32 pf_guest;
243 u32 tlb_flush;
244 u32 invlpg;
245
246 u32 exits;
247 u32 io_exits;
248 u32 mmio_exits;
249 u32 signal_exits;
250 u32 irq_window_exits;
251 u32 halt_exits;
252 u32 request_irq_exits;
253 u32 irq_exits;
254};
255
Avi Kivity6aa8b732006-12-10 02:21:36 -0800256struct kvm_vcpu {
257 struct kvm *kvm;
258 union {
259 struct vmcs *vmcs;
260 struct vcpu_svm *svm;
261 };
262 struct mutex mutex;
263 int cpu;
264 int launched;
Avi Kivity0cc50642007-03-25 12:07:27 +0200265 u64 host_tsc;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200266 struct kvm_run *run;
Dor Laorc1150d82007-01-05 16:36:24 -0800267 int interrupt_window_open;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800268 unsigned long irq_summary; /* bit vector: 1 per word in irq_pending */
269#define NR_IRQ_WORDS KVM_IRQ_BITMAP_SIZE(unsigned long)
270 unsigned long irq_pending[NR_IRQ_WORDS];
271 unsigned long regs[NR_VCPU_REGS]; /* for rsp: vcpu_load_rsp_rip() */
272 unsigned long rip; /* needs vcpu_load_rsp_rip() */
273
274 unsigned long cr0;
275 unsigned long cr2;
276 unsigned long cr3;
Ingo Molnar102d8322007-02-19 14:37:47 +0200277 gpa_t para_state_gpa;
278 struct page *para_state_page;
279 gpa_t hypercall_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800280 unsigned long cr4;
281 unsigned long cr8;
Avi Kivity1342d352007-01-05 16:36:39 -0800282 u64 pdptrs[4]; /* pae */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800283 u64 shadow_efer;
284 u64 apic_base;
Avi Kivity6f00e682007-01-26 00:56:40 -0800285 u64 ia32_misc_enable_msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800286 int nmsrs;
287 struct vmx_msr_entry *guest_msrs;
288 struct vmx_msr_entry *host_msrs;
289
290 struct list_head free_pages;
291 struct kvm_mmu_page page_header_buf[KVM_NUM_MMU_PAGES];
292 struct kvm_mmu mmu;
293
Avi Kivity714b93d2007-01-05 16:36:53 -0800294 struct kvm_mmu_memory_cache mmu_pte_chain_cache;
295 struct kvm_mmu_memory_cache mmu_rmap_desc_cache;
296
Avi Kivity86a5ba02007-01-05 16:36:50 -0800297 gfn_t last_pt_write_gfn;
298 int last_pt_write_count;
299
Avi Kivity6aa8b732006-12-10 02:21:36 -0800300 struct kvm_guest_debug guest_debug;
301
302 char fx_buf[FX_BUF_SIZE];
303 char *host_fx_image;
304 char *guest_fx_image;
Anthony Liguori7807fa62007-04-23 09:17:21 -0500305 int fpu_active;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800306
307 int mmio_needed;
308 int mmio_read_completed;
309 int mmio_is_write;
310 int mmio_size;
311 unsigned char mmio_data[8];
312 gpa_t mmio_phys_addr;
Avi Kivitye7df56e2007-03-14 15:54:54 +0200313 gva_t mmio_fault_cr2;
Avi Kivity039576c2007-03-20 12:46:50 +0200314 struct kvm_pio_request pio;
315 void *pio_data;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800316
Avi Kivity1961d272007-03-05 19:46:05 +0200317 int sigset_active;
318 sigset_t sigset;
319
Avi Kivity1165f5f2007-04-19 17:27:43 +0300320 struct kvm_stat stat;
321
Avi Kivity6aa8b732006-12-10 02:21:36 -0800322 struct {
323 int active;
324 u8 save_iopl;
325 struct kvm_save_segment {
326 u16 selector;
327 unsigned long base;
328 u32 limit;
329 u32 ar;
330 } tr, es, ds, fs, gs;
331 } rmode;
Avi Kivity06465c52007-02-28 20:46:53 +0200332
333 int cpuid_nent;
334 struct kvm_cpuid_entry cpuid_entries[KVM_MAX_CPUID_ENTRIES];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800335};
336
Avi Kivitye8207542007-03-30 16:54:30 +0300337struct kvm_mem_alias {
338 gfn_t base_gfn;
339 unsigned long npages;
340 gfn_t target_gfn;
341};
342
Avi Kivity6aa8b732006-12-10 02:21:36 -0800343struct kvm_memory_slot {
344 gfn_t base_gfn;
345 unsigned long npages;
346 unsigned long flags;
347 struct page **phys_mem;
348 unsigned long *dirty_bitmap;
349};
350
351struct kvm {
352 spinlock_t lock; /* protects everything except vcpus */
Avi Kivitye8207542007-03-30 16:54:30 +0300353 int naliases;
354 struct kvm_mem_alias aliases[KVM_ALIAS_SLOTS];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800355 int nmemslots;
356 struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS];
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800357 /*
358 * Hash table of struct kvm_mmu_page.
359 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800360 struct list_head active_mmu_pages;
Avi Kivityebeace82007-01-05 16:36:47 -0800361 int n_free_mmu_pages;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800362 struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800363 struct kvm_vcpu vcpus[KVM_MAX_VCPUS];
364 int memory_config_version;
365 int busy;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800366 unsigned long rmap_overflow;
Avi Kivity133de902007-02-12 00:54:44 -0800367 struct list_head vm_list;
Avi Kivitybccf2152007-02-21 18:04:26 +0200368 struct file *filp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800369};
370
Avi Kivity6aa8b732006-12-10 02:21:36 -0800371struct descriptor_table {
372 u16 limit;
373 unsigned long base;
374} __attribute__((packed));
375
376struct kvm_arch_ops {
377 int (*cpu_has_kvm_support)(void); /* __init */
378 int (*disabled_by_bios)(void); /* __init */
379 void (*hardware_enable)(void *dummy); /* __init */
380 void (*hardware_disable)(void *dummy);
381 int (*hardware_setup)(void); /* __init */
382 void (*hardware_unsetup)(void); /* __exit */
383
384 int (*vcpu_create)(struct kvm_vcpu *vcpu);
385 void (*vcpu_free)(struct kvm_vcpu *vcpu);
386
Avi Kivitybccf2152007-02-21 18:04:26 +0200387 void (*vcpu_load)(struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800388 void (*vcpu_put)(struct kvm_vcpu *vcpu);
Avi Kivity774c47f2007-02-12 00:54:47 -0800389 void (*vcpu_decache)(struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800390
391 int (*set_guest_debug)(struct kvm_vcpu *vcpu,
392 struct kvm_debug_guest *dbg);
393 int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
394 int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
395 u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
396 void (*get_segment)(struct kvm_vcpu *vcpu,
397 struct kvm_segment *var, int seg);
398 void (*set_segment)(struct kvm_vcpu *vcpu,
399 struct kvm_segment *var, int seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800400 void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
Anthony Liguori25c4c272007-04-27 09:29:21 +0300401 void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800402 void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800403 void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
404 void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
405 void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
406 void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
407 void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
408 void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
409 void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
410 unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr);
411 void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value,
412 int *exception);
413 void (*cache_regs)(struct kvm_vcpu *vcpu);
414 void (*decache_regs)(struct kvm_vcpu *vcpu);
415 unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
416 void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
417
418 void (*invlpg)(struct kvm_vcpu *vcpu, gva_t addr);
419 void (*tlb_flush)(struct kvm_vcpu *vcpu);
420 void (*inject_page_fault)(struct kvm_vcpu *vcpu,
421 unsigned long addr, u32 err_code);
422
423 void (*inject_gp)(struct kvm_vcpu *vcpu, unsigned err_code);
424
425 int (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run);
426 int (*vcpu_setup)(struct kvm_vcpu *vcpu);
427 void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
Ingo Molnar102d8322007-02-19 14:37:47 +0200428 void (*patch_hypercall)(struct kvm_vcpu *vcpu,
429 unsigned char *hypercall_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800430};
431
Avi Kivity6aa8b732006-12-10 02:21:36 -0800432extern struct kvm_arch_ops *kvm_arch_ops;
433
434#define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt)
435#define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt)
436
437int kvm_init_arch(struct kvm_arch_ops *ops, struct module *module);
438void kvm_exit_arch(void);
439
Avi Kivityb5a33a72007-04-15 16:31:09 +0300440int kvm_mmu_module_init(void);
441void kvm_mmu_module_exit(void);
442
Avi Kivity6aa8b732006-12-10 02:21:36 -0800443void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
Ingo Molnar8018c272006-12-29 16:50:01 -0800444int kvm_mmu_create(struct kvm_vcpu *vcpu);
445int kvm_mmu_setup(struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800446
447int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -0800448void kvm_mmu_slot_remove_write_access(struct kvm_vcpu *vcpu, int slot);
Dor Laore0fa8262007-03-30 13:06:33 +0300449void kvm_mmu_zap_all(struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800450
451hpa_t gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa);
452#define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
453#define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
454static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
455hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva);
Avi Kivity039576c2007-03-20 12:46:50 +0200456struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800457
458void kvm_emulator_want_group7_invlpg(void);
459
460extern hpa_t bad_page_address;
461
Avi Kivity954bbbc22007-03-30 14:02:32 +0300462struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800463struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
464void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
465
466enum emulation_result {
467 EMULATE_DONE, /* no further processing */
468 EMULATE_DO_MMIO, /* kvm_run filled with mmio request */
469 EMULATE_FAIL, /* can't emulate this instruction */
470};
471
472int emulate_instruction(struct kvm_vcpu *vcpu, struct kvm_run *run,
473 unsigned long cr2, u16 error_code);
474void realmode_lgdt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
475void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
476void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
477 unsigned long *rflags);
478
479unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr);
480void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value,
481 unsigned long *rflags);
482
483struct x86_emulate_ctxt;
484
Avi Kivity039576c2007-03-20 12:46:50 +0200485int kvm_setup_pio(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
486 int size, unsigned long count, int string, int down,
487 gva_t address, int rep, unsigned port);
Avi Kivity06465c52007-02-28 20:46:53 +0200488void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800489int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address);
490int emulate_clts(struct kvm_vcpu *vcpu);
491int emulator_get_dr(struct x86_emulate_ctxt* ctxt, int dr,
492 unsigned long *dest);
493int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
494 unsigned long value);
495
496void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
497void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr0);
498void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr0);
499void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr0);
500void lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
501
Avi Kivity3bab1f52006-12-29 16:49:48 -0800502int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
503int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800504
505void fx_init(struct kvm_vcpu *vcpu);
506
507void load_msrs(struct vmx_msr_entry *e, int n);
508void save_msrs(struct vmx_msr_entry *e, int n);
509void kvm_resched(struct kvm_vcpu *vcpu);
510
511int kvm_read_guest(struct kvm_vcpu *vcpu,
512 gva_t addr,
513 unsigned long size,
514 void *dest);
515
516int kvm_write_guest(struct kvm_vcpu *vcpu,
517 gva_t addr,
518 unsigned long size,
519 void *data);
520
521unsigned long segment_base(u16 selector);
522
Avi Kivityda4a00f2007-01-05 16:36:44 -0800523void kvm_mmu_pre_write(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes);
524void kvm_mmu_post_write(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes);
Avi Kivitya4360362007-01-05 16:36:45 -0800525int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
Avi Kivityebeace82007-01-05 16:36:47 -0800526void kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
527
Avi Kivity270fd9b2007-02-19 14:37:47 +0200528int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run);
529
Avi Kivityebeace82007-01-05 16:36:47 -0800530static inline int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
531 u32 error_code)
532{
533 if (unlikely(vcpu->kvm->n_free_mmu_pages < KVM_MIN_FREE_MMU_PAGES))
534 kvm_mmu_free_some_pages(vcpu);
535 return vcpu->mmu.page_fault(vcpu, gva, error_code);
536}
Avi Kivityda4a00f2007-01-05 16:36:44 -0800537
Avi Kivitya9058ec2006-12-29 16:49:37 -0800538static inline int is_long_mode(struct kvm_vcpu *vcpu)
539{
540#ifdef CONFIG_X86_64
541 return vcpu->shadow_efer & EFER_LME;
542#else
543 return 0;
544#endif
545}
546
Avi Kivity6aa8b732006-12-10 02:21:36 -0800547static inline int is_pae(struct kvm_vcpu *vcpu)
548{
549 return vcpu->cr4 & CR4_PAE_MASK;
550}
551
552static inline int is_pse(struct kvm_vcpu *vcpu)
553{
554 return vcpu->cr4 & CR4_PSE_MASK;
555}
556
557static inline int is_paging(struct kvm_vcpu *vcpu)
558{
559 return vcpu->cr0 & CR0_PG_MASK;
560}
561
562static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
563{
564 return slot - kvm->memslots;
565}
566
567static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
568{
569 struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
570
Markus Rechberger5972e952007-02-19 14:37:47 +0200571 return (struct kvm_mmu_page *)page_private(page);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800572}
573
574static inline u16 read_fs(void)
575{
576 u16 seg;
577 asm ("mov %%fs, %0" : "=g"(seg));
578 return seg;
579}
580
581static inline u16 read_gs(void)
582{
583 u16 seg;
584 asm ("mov %%gs, %0" : "=g"(seg));
585 return seg;
586}
587
588static inline u16 read_ldt(void)
589{
590 u16 ldt;
591 asm ("sldt %0" : "=g"(ldt));
592 return ldt;
593}
594
595static inline void load_fs(u16 sel)
596{
597 asm ("mov %0, %%fs" : : "rm"(sel));
598}
599
600static inline void load_gs(u16 sel)
601{
602 asm ("mov %0, %%gs" : : "rm"(sel));
603}
604
605#ifndef load_ldt
606static inline void load_ldt(u16 sel)
607{
S.Caglar Onura0610dd2007-02-12 00:54:34 -0800608 asm ("lldt %0" : : "rm"(sel));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800609}
610#endif
611
612static inline void get_idt(struct descriptor_table *table)
613{
614 asm ("sidt %0" : "=m"(*table));
615}
616
617static inline void get_gdt(struct descriptor_table *table)
618{
619 asm ("sgdt %0" : "=m"(*table));
620}
621
622static inline unsigned long read_tr_base(void)
623{
624 u16 tr;
625 asm ("str %0" : "=g"(tr));
626 return segment_base(tr);
627}
628
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800629#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800630static inline unsigned long read_msr(unsigned long msr)
631{
632 u64 value;
633
634 rdmsrl(msr, value);
635 return value;
636}
637#endif
638
639static inline void fx_save(void *image)
640{
641 asm ("fxsave (%0)":: "r" (image));
642}
643
644static inline void fx_restore(void *image)
645{
646 asm ("fxrstor (%0)":: "r" (image));
647}
648
649static inline void fpu_init(void)
650{
651 asm ("finit");
652}
653
654static inline u32 get_rdx_init_val(void)
655{
656 return 0x600; /* P6 family */
657}
658
659#define ASM_VMX_VMCLEAR_RAX ".byte 0x66, 0x0f, 0xc7, 0x30"
660#define ASM_VMX_VMLAUNCH ".byte 0x0f, 0x01, 0xc2"
661#define ASM_VMX_VMRESUME ".byte 0x0f, 0x01, 0xc3"
662#define ASM_VMX_VMPTRLD_RAX ".byte 0x0f, 0xc7, 0x30"
663#define ASM_VMX_VMREAD_RDX_RAX ".byte 0x0f, 0x78, 0xd0"
664#define ASM_VMX_VMWRITE_RAX_RDX ".byte 0x0f, 0x79, 0xd0"
665#define ASM_VMX_VMWRITE_RSP_RDX ".byte 0x0f, 0x79, 0xd4"
666#define ASM_VMX_VMXOFF ".byte 0x0f, 0x01, 0xc4"
667#define ASM_VMX_VMXON_RAX ".byte 0xf3, 0x0f, 0xc7, 0x30"
668
669#define MSR_IA32_TIME_STAMP_COUNTER 0x010
670
671#define TSS_IOPB_BASE_OFFSET 0x66
672#define TSS_BASE_SIZE 0x68
673#define TSS_IOPB_SIZE (65536 / 8)
674#define TSS_REDIRECTION_SIZE (256 / 8)
675#define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
676
Avi Kivity6aa8b732006-12-10 02:21:36 -0800677#endif