KVM: Remove gratuitous casts from lapic.c
[linux-block.git] / drivers / kvm / kvm.h
CommitLineData
6aa8b732
AK
1#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>
06ff0d37
MR
13#include <linux/signal.h>
14#include <linux/sched.h>
6aa8b732 15#include <linux/mm.h>
15ad7146 16#include <linux/preempt.h>
e8edc6e0 17#include <asm/signal.h>
6aa8b732 18
6aa8b732 19#include <linux/kvm.h>
102d8325 20#include <linux/kvm_para.h>
6aa8b732 21
f802a307
RR
22#define CR3_PAE_RESERVED_BITS ((X86_CR3_PWT | X86_CR3_PCD) - 1)
23#define CR3_NONPAE_RESERVED_BITS ((PAGE_SIZE-1) & ~(X86_CR3_PWT | X86_CR3_PCD))
24#define CR3_L_MODE_RESERVED_BITS (CR3_NONPAE_RESERVED_BITS|0xFFFFFF0000000000ULL)
6aa8b732 25
6aa8b732 26#define KVM_GUEST_CR0_MASK \
707d92fa
RR
27 (X86_CR0_PG | X86_CR0_PE | X86_CR0_WP | X86_CR0_NE \
28 | X86_CR0_NW | X86_CR0_CD)
6aa8b732 29#define KVM_VM_CR0_ALWAYS_ON \
707d92fa
RR
30 (X86_CR0_PG | X86_CR0_PE | X86_CR0_WP | X86_CR0_NE | X86_CR0_TS \
31 | X86_CR0_MP)
6aa8b732 32#define KVM_GUEST_CR4_MASK \
66aee91a
RR
33 (X86_CR4_VME | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_PGE | X86_CR4_VMXE)
34#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
35#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
6aa8b732
AK
36
37#define INVALID_PAGE (~(hpa_t)0)
38#define UNMAPPED_GVA (~(gpa_t)0)
39
ef9254df 40#define KVM_MAX_VCPUS 4
e8207547 41#define KVM_ALIAS_SLOTS 4
2e2c618d 42#define KVM_MEMORY_SLOTS 8
82ce2c96
IE
43#define KVM_PERMILLE_MMU_PAGES 20
44#define KVM_MIN_ALLOC_MMU_PAGES 64
7494c0cc 45#define KVM_NUM_MMU_PAGES 1024
ebeace86
AK
46#define KVM_MIN_FREE_MMU_PAGES 5
47#define KVM_REFILL_PAGES 25
06465c5a 48#define KVM_MAX_CPUID_ENTRIES 40
6aa8b732 49
6aa8b732 50#define DE_VECTOR 0
7aa81cc0 51#define UD_VECTOR 6
7807fa6c 52#define NM_VECTOR 7
6aa8b732
AK
53#define DF_VECTOR 8
54#define TS_VECTOR 10
55#define NP_VECTOR 11
56#define SS_VECTOR 12
57#define GP_VECTOR 13
58#define PF_VECTOR 14
59
60#define SELECTOR_TI_MASK (1 << 2)
61#define SELECTOR_RPL_MASK 0x03
62
63#define IOPL_SHIFT 12
64
039576c0
AK
65#define KVM_PIO_PAGE_OFFSET 1
66
d9e368d6
AK
67/*
68 * vcpu->requests bit members
69 */
70#define KVM_TLB_FLUSH 0
71
6aa8b732
AK
72/*
73 * Address types:
74 *
75 * gva - guest virtual address
76 * gpa - guest physical address
77 * gfn - guest frame number
78 * hva - host virtual address
79 * hpa - host physical address
80 * hfn - host frame number
81 */
82
83typedef unsigned long gva_t;
84typedef u64 gpa_t;
85typedef unsigned long gfn_t;
86
87typedef unsigned long hva_t;
88typedef u64 hpa_t;
89typedef unsigned long hfn_t;
90
cea0f0e7
AK
91#define NR_PTE_CHAIN_ENTRIES 5
92
93struct kvm_pte_chain {
94 u64 *parent_ptes[NR_PTE_CHAIN_ENTRIES];
95 struct hlist_node link;
96};
97
98/*
99 * kvm_mmu_page_role, below, is defined as:
100 *
101 * bits 0:3 - total guest paging levels (2-4, or zero for real mode)
102 * bits 4:7 - page table level for this shadow (1-4)
103 * bits 8:9 - page table quadrant for 2-level guests
104 * bit 16 - "metaphysical" - gfn is not a real page (huge page/real mode)
d55e2cb2 105 * bits 17:19 - "access" - the user, writable, and nx bits of a huge page pde
cea0f0e7
AK
106 */
107union kvm_mmu_page_role {
108 unsigned word;
109 struct {
110 unsigned glevels : 4;
111 unsigned level : 4;
112 unsigned quadrant : 2;
113 unsigned pad_for_nice_hex_output : 6;
114 unsigned metaphysical : 1;
d55e2cb2 115 unsigned hugepage_access : 3;
cea0f0e7
AK
116 };
117};
118
6aa8b732
AK
119struct kvm_mmu_page {
120 struct list_head link;
cea0f0e7
AK
121 struct hlist_node hash_link;
122
123 /*
124 * The following two entries are used to key the shadow page in the
125 * hash table.
126 */
127 gfn_t gfn;
128 union kvm_mmu_page_role role;
129
47ad8e68 130 u64 *spt;
290fc38d
IE
131 /* hold the gfn of each spte inside spt */
132 gfn_t *gfns;
6aa8b732
AK
133 unsigned long slot_bitmap; /* One bit set per slot which has memory
134 * in this shadow page.
135 */
cea0f0e7 136 int multimapped; /* More than one parent_pte? */
3bb65a22 137 int root_count; /* Currently serving as active root */
cea0f0e7
AK
138 union {
139 u64 *parent_pte; /* !multimapped */
140 struct hlist_head parent_ptes; /* multimapped, kvm_pte_chain */
141 };
6aa8b732
AK
142};
143
6aa8b732 144struct kvm_vcpu;
c16f862d 145extern struct kmem_cache *kvm_vcpu_cache;
6aa8b732
AK
146
147/*
148 * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
149 * 32-bit). The kvm_mmu structure abstracts the details of the current mmu
150 * mode.
151 */
152struct kvm_mmu {
153 void (*new_cr3)(struct kvm_vcpu *vcpu);
154 int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err);
6aa8b732
AK
155 void (*free)(struct kvm_vcpu *vcpu);
156 gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva);
c7addb90
AK
157 void (*prefetch_page)(struct kvm_vcpu *vcpu,
158 struct kvm_mmu_page *page);
6aa8b732
AK
159 hpa_t root_hpa;
160 int root_level;
161 int shadow_root_level;
17ac10ad
AK
162
163 u64 *pae_root;
6aa8b732
AK
164};
165
290fc38d 166#define KVM_NR_MEM_OBJS 40
714b93da
AK
167
168struct kvm_mmu_memory_cache {
169 int nobjs;
170 void *objects[KVM_NR_MEM_OBJS];
171};
172
173/*
174 * We don't want allocation failures within the mmu code, so we preallocate
175 * enough memory for a single page fault in a cache.
176 */
6aa8b732
AK
177struct kvm_guest_debug {
178 int enabled;
179 unsigned long bp[4];
180 int singlestep;
181};
182
183enum {
184 VCPU_REGS_RAX = 0,
185 VCPU_REGS_RCX = 1,
186 VCPU_REGS_RDX = 2,
187 VCPU_REGS_RBX = 3,
188 VCPU_REGS_RSP = 4,
189 VCPU_REGS_RBP = 5,
190 VCPU_REGS_RSI = 6,
191 VCPU_REGS_RDI = 7,
05b3e0c2 192#ifdef CONFIG_X86_64
6aa8b732
AK
193 VCPU_REGS_R8 = 8,
194 VCPU_REGS_R9 = 9,
195 VCPU_REGS_R10 = 10,
196 VCPU_REGS_R11 = 11,
197 VCPU_REGS_R12 = 12,
198 VCPU_REGS_R13 = 13,
199 VCPU_REGS_R14 = 14,
200 VCPU_REGS_R15 = 15,
201#endif
202 NR_VCPU_REGS
203};
204
205enum {
206 VCPU_SREG_CS,
207 VCPU_SREG_DS,
208 VCPU_SREG_ES,
209 VCPU_SREG_FS,
210 VCPU_SREG_GS,
211 VCPU_SREG_SS,
212 VCPU_SREG_TR,
213 VCPU_SREG_LDTR,
214};
215
3427318f
LV
216#include "x86_emulate.h"
217
039576c0
AK
218struct kvm_pio_request {
219 unsigned long count;
220 int cur_count;
221 struct page *guest_pages[2];
222 unsigned guest_page_offset;
223 int in;
74906345 224 int port;
039576c0
AK
225 int size;
226 int string;
227 int down;
228 int rep;
229};
230
1165f5fe
AK
231struct kvm_stat {
232 u32 pf_fixed;
233 u32 pf_guest;
234 u32 tlb_flush;
235 u32 invlpg;
236
237 u32 exits;
238 u32 io_exits;
239 u32 mmio_exits;
240 u32 signal_exits;
241 u32 irq_window_exits;
242 u32 halt_exits;
b6958ce4 243 u32 halt_wakeup;
1165f5fe
AK
244 u32 request_irq_exits;
245 u32 irq_exits;
e6adf283 246 u32 light_exits;
2cc51560 247 u32 efer_reload;
1165f5fe
AK
248};
249
2eeb2e94
GH
250struct kvm_io_device {
251 void (*read)(struct kvm_io_device *this,
252 gpa_t addr,
253 int len,
254 void *val);
255 void (*write)(struct kvm_io_device *this,
256 gpa_t addr,
257 int len,
258 const void *val);
259 int (*in_range)(struct kvm_io_device *this, gpa_t addr);
260 void (*destructor)(struct kvm_io_device *this);
261
262 void *private;
263};
264
265static inline void kvm_iodevice_read(struct kvm_io_device *dev,
266 gpa_t addr,
267 int len,
268 void *val)
269{
270 dev->read(dev, addr, len, val);
271}
272
273static inline void kvm_iodevice_write(struct kvm_io_device *dev,
274 gpa_t addr,
275 int len,
276 const void *val)
277{
278 dev->write(dev, addr, len, val);
279}
280
281static inline int kvm_iodevice_inrange(struct kvm_io_device *dev, gpa_t addr)
282{
283 return dev->in_range(dev, addr);
284}
285
286static inline void kvm_iodevice_destructor(struct kvm_io_device *dev)
287{
74906345
ED
288 if (dev->destructor)
289 dev->destructor(dev);
2eeb2e94
GH
290}
291
292/*
293 * It would be nice to use something smarter than a linear search, TBD...
294 * Thankfully we dont expect many devices to register (famous last words :),
295 * so until then it will suffice. At least its abstracted so we can change
296 * in one place.
297 */
298struct kvm_io_bus {
299 int dev_count;
300#define NR_IOBUS_DEVS 6
301 struct kvm_io_device *devs[NR_IOBUS_DEVS];
302};
303
304void kvm_io_bus_init(struct kvm_io_bus *bus);
305void kvm_io_bus_destroy(struct kvm_io_bus *bus);
306struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr);
307void kvm_io_bus_register_dev(struct kvm_io_bus *bus,
308 struct kvm_io_device *dev);
309
6aa8b732
AK
310struct kvm_vcpu {
311 struct kvm *kvm;
15ad7146 312 struct preempt_notifier preempt_notifier;
dad3795d 313 int vcpu_id;
6aa8b732
AK
314 struct mutex mutex;
315 int cpu;
0cc5064d 316 u64 host_tsc;
9a2bb7f4 317 struct kvm_run *run;
c1150d8c 318 int interrupt_window_open;
d9e368d6
AK
319 int guest_mode;
320 unsigned long requests;
6aa8b732 321 unsigned long irq_summary; /* bit vector: 1 per word in irq_pending */
9eb829ce 322 DECLARE_BITMAP(irq_pending, KVM_NR_INTERRUPTS);
6aa8b732
AK
323 unsigned long regs[NR_VCPU_REGS]; /* for rsp: vcpu_load_rsp_rip() */
324 unsigned long rip; /* needs vcpu_load_rsp_rip() */
325
326 unsigned long cr0;
327 unsigned long cr2;
328 unsigned long cr3;
329 unsigned long cr4;
330 unsigned long cr8;
1342d353 331 u64 pdptrs[4]; /* pae */
6aa8b732
AK
332 u64 shadow_efer;
333 u64 apic_base;
97222cc8 334 struct kvm_lapic *apic; /* kernel irqchip context */
c5ec1534
HQ
335#define VCPU_MP_STATE_RUNNABLE 0
336#define VCPU_MP_STATE_UNINITIALIZED 1
337#define VCPU_MP_STATE_INIT_RECEIVED 2
338#define VCPU_MP_STATE_SIPI_RECEIVED 3
339#define VCPU_MP_STATE_HALTED 4
340 int mp_state;
341 int sipi_vector;
6f00e68f 342 u64 ia32_misc_enable_msr;
6aa8b732 343
6aa8b732
AK
344 struct kvm_mmu mmu;
345
714b93da
AK
346 struct kvm_mmu_memory_cache mmu_pte_chain_cache;
347 struct kvm_mmu_memory_cache mmu_rmap_desc_cache;
d3d25b04
AK
348 struct kvm_mmu_memory_cache mmu_page_cache;
349 struct kvm_mmu_memory_cache mmu_page_header_cache;
714b93da 350
86a5ba02
AK
351 gfn_t last_pt_write_gfn;
352 int last_pt_write_count;
12b7d28f 353 u64 *last_pte_updated;
86a5ba02 354
6aa8b732
AK
355 struct kvm_guest_debug guest_debug;
356
b114b080
RR
357 struct i387_fxsave_struct host_fx_image;
358 struct i387_fxsave_struct guest_fx_image;
7807fa6c 359 int fpu_active;
7702fd1f 360 int guest_fpu_loaded;
6aa8b732
AK
361
362 int mmio_needed;
363 int mmio_read_completed;
364 int mmio_is_write;
365 int mmio_size;
366 unsigned char mmio_data[8];
367 gpa_t mmio_phys_addr;
e7df56e4 368 gva_t mmio_fault_cr2;
039576c0
AK
369 struct kvm_pio_request pio;
370 void *pio_data;
b6958ce4 371 wait_queue_head_t wq;
6aa8b732 372
1961d276
AK
373 int sigset_active;
374 sigset_t sigset;
375
1165f5fe
AK
376 struct kvm_stat stat;
377
6aa8b732
AK
378 struct {
379 int active;
380 u8 save_iopl;
381 struct kvm_save_segment {
382 u16 selector;
383 unsigned long base;
384 u32 limit;
385 u32 ar;
386 } tr, es, ds, fs, gs;
387 } rmode;
72d6e5a0 388 int halt_request; /* real mode on Intel only */
06465c5a
AK
389
390 int cpuid_nent;
391 struct kvm_cpuid_entry cpuid_entries[KVM_MAX_CPUID_ENTRIES];
3427318f
LV
392
393 /* emulate context */
394
395 struct x86_emulate_ctxt emulate_ctxt;
6aa8b732
AK
396};
397
e8207547
AK
398struct kvm_mem_alias {
399 gfn_t base_gfn;
400 unsigned long npages;
401 gfn_t target_gfn;
402};
403
6aa8b732
AK
404struct kvm_memory_slot {
405 gfn_t base_gfn;
406 unsigned long npages;
407 unsigned long flags;
408 struct page **phys_mem;
290fc38d 409 unsigned long *rmap;
6aa8b732
AK
410 unsigned long *dirty_bitmap;
411};
412
413struct kvm {
11ec2804 414 struct mutex lock; /* protects everything except vcpus */
e8207547
AK
415 int naliases;
416 struct kvm_mem_alias aliases[KVM_ALIAS_SLOTS];
6aa8b732
AK
417 int nmemslots;
418 struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS];
cea0f0e7
AK
419 /*
420 * Hash table of struct kvm_mmu_page.
421 */
6aa8b732 422 struct list_head active_mmu_pages;
82ce2c96
IE
423 unsigned int n_free_mmu_pages;
424 unsigned int n_requested_mmu_pages;
425 unsigned int n_alloc_mmu_pages;
cea0f0e7 426 struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
fb3f0f51 427 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
cd4a4e53 428 unsigned long rmap_overflow;
133de902 429 struct list_head vm_list;
bccf2150 430 struct file *filp;
2eeb2e94 431 struct kvm_io_bus mmio_bus;
74906345 432 struct kvm_io_bus pio_bus;
85f455f7 433 struct kvm_pic *vpic;
1fd4f2a5 434 struct kvm_ioapic *vioapic;
932f72ad 435 int round_robin_prev_vcpu;
6aa8b732
AK
436};
437
85f455f7
ED
438static inline struct kvm_pic *pic_irqchip(struct kvm *kvm)
439{
440 return kvm->vpic;
441}
442
1fd4f2a5
ED
443static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
444{
445 return kvm->vioapic;
446}
447
85f455f7
ED
448static inline int irqchip_in_kernel(struct kvm *kvm)
449{
450 return pic_irqchip(kvm) != 0;
451}
452
6aa8b732
AK
453struct descriptor_table {
454 u16 limit;
455 unsigned long base;
456} __attribute__((packed));
457
cbdd1bea 458struct kvm_x86_ops {
6aa8b732
AK
459 int (*cpu_has_kvm_support)(void); /* __init */
460 int (*disabled_by_bios)(void); /* __init */
461 void (*hardware_enable)(void *dummy); /* __init */
462 void (*hardware_disable)(void *dummy);
002c7f7c 463 void (*check_processor_compatibility)(void *rtn);
6aa8b732
AK
464 int (*hardware_setup)(void); /* __init */
465 void (*hardware_unsetup)(void); /* __exit */
466
fb3f0f51
RR
467 /* Create, but do not attach this VCPU */
468 struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id);
6aa8b732 469 void (*vcpu_free)(struct kvm_vcpu *vcpu);
04d2cc77 470 void (*vcpu_reset)(struct kvm_vcpu *vcpu);
6aa8b732 471
04d2cc77 472 void (*prepare_guest_switch)(struct kvm_vcpu *vcpu);
15ad7146 473 void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
6aa8b732 474 void (*vcpu_put)(struct kvm_vcpu *vcpu);
774c47f1 475 void (*vcpu_decache)(struct kvm_vcpu *vcpu);
6aa8b732
AK
476
477 int (*set_guest_debug)(struct kvm_vcpu *vcpu,
478 struct kvm_debug_guest *dbg);
04d2cc77 479 void (*guest_debug_pre)(struct kvm_vcpu *vcpu);
6aa8b732
AK
480 int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
481 int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
482 u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
483 void (*get_segment)(struct kvm_vcpu *vcpu,
484 struct kvm_segment *var, int seg);
485 void (*set_segment)(struct kvm_vcpu *vcpu,
486 struct kvm_segment *var, int seg);
6aa8b732 487 void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
25c4c276 488 void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu);
6aa8b732 489 void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
6aa8b732
AK
490 void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
491 void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
492 void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
493 void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
494 void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
495 void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
496 void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
497 unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr);
498 void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value,
499 int *exception);
500 void (*cache_regs)(struct kvm_vcpu *vcpu);
501 void (*decache_regs)(struct kvm_vcpu *vcpu);
502 unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
503 void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
504
6aa8b732
AK
505 void (*tlb_flush)(struct kvm_vcpu *vcpu);
506 void (*inject_page_fault)(struct kvm_vcpu *vcpu,
507 unsigned long addr, u32 err_code);
508
509 void (*inject_gp)(struct kvm_vcpu *vcpu, unsigned err_code);
510
04d2cc77
AK
511 void (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run);
512 int (*handle_exit)(struct kvm_run *run, struct kvm_vcpu *vcpu);
6aa8b732 513 void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
102d8325
IM
514 void (*patch_hypercall)(struct kvm_vcpu *vcpu,
515 unsigned char *hypercall_addr);
2a8067f1
ED
516 int (*get_irq)(struct kvm_vcpu *vcpu);
517 void (*set_irq)(struct kvm_vcpu *vcpu, int vec);
04d2cc77
AK
518 void (*inject_pending_irq)(struct kvm_vcpu *vcpu);
519 void (*inject_pending_vectors)(struct kvm_vcpu *vcpu,
520 struct kvm_run *run);
6aa8b732
AK
521};
522
cbdd1bea 523extern struct kvm_x86_ops *kvm_x86_ops;
6aa8b732 524
f0242478
RR
525/* The guest did something we don't support. */
526#define pr_unimpl(vcpu, fmt, ...) \
527 do { \
528 if (printk_ratelimit()) \
529 printk(KERN_ERR "kvm: %i: cpu%i " fmt, \
530 current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__); \
531 } while(0)
532
6aa8b732
AK
533#define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt)
534#define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt)
535
fb3f0f51
RR
536int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
537void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
538
cbdd1bea 539int kvm_init_x86(struct kvm_x86_ops *ops, unsigned int vcpu_size,
c16f862d 540 struct module *module);
cbdd1bea 541void kvm_exit_x86(void);
6aa8b732 542
b5a33a75
AK
543int kvm_mmu_module_init(void);
544void kvm_mmu_module_exit(void);
545
6aa8b732 546void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
8018c27b
IM
547int kvm_mmu_create(struct kvm_vcpu *vcpu);
548int kvm_mmu_setup(struct kvm_vcpu *vcpu);
c7addb90 549void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte);
6aa8b732
AK
550
551int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
90cb0529
AK
552void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot);
553void kvm_mmu_zap_all(struct kvm *kvm);
82ce2c96 554void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages);
6aa8b732
AK
555
556hpa_t gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa);
557#define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
558#define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
559static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
560hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva);
039576c0 561struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva);
6aa8b732 562
6aa8b732
AK
563extern hpa_t bad_page_address;
564
290fc38d 565gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn);
954bbbc2 566struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
195aefde
IE
567int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
568 int len);
569int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
570int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
571 int offset, int len);
572int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
573 unsigned long len);
574int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
575int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732
AK
576struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
577void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
578
579enum emulation_result {
580 EMULATE_DONE, /* no further processing */
581 EMULATE_DO_MMIO, /* kvm_run filled with mmio request */
582 EMULATE_FAIL, /* can't emulate this instruction */
583};
584
585int emulate_instruction(struct kvm_vcpu *vcpu, struct kvm_run *run,
3427318f 586 unsigned long cr2, u16 error_code, int no_decode);
054b1369 587void kvm_report_emulation_failure(struct kvm_vcpu *cvpu, const char *context);
6aa8b732
AK
588void realmode_lgdt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
589void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
590void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
591 unsigned long *rflags);
592
593unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr);
594void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value,
595 unsigned long *rflags);
35f3f286
AK
596int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *data);
597int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
6aa8b732
AK
598
599struct x86_emulate_ctxt;
600
3090dd73
LV
601int kvm_emulate_pio (struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
602 int size, unsigned port);
603int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
604 int size, unsigned long count, int down,
605 gva_t address, int rep, unsigned port);
06465c5a 606void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
d3bef15f 607int kvm_emulate_halt(struct kvm_vcpu *vcpu);
6aa8b732
AK
608int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address);
609int emulate_clts(struct kvm_vcpu *vcpu);
610int emulator_get_dr(struct x86_emulate_ctxt* ctxt, int dr,
611 unsigned long *dest);
612int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
613 unsigned long value);
614
615void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
616void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr0);
617void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr0);
618void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr0);
7017fc3d 619unsigned long get_cr8(struct kvm_vcpu *vcpu);
6aa8b732 620void lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
1747fb71 621void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l);
6aa8b732 622
3bab1f5d
AK
623int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
624int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
6aa8b732
AK
625
626void fx_init(struct kvm_vcpu *vcpu);
627
6aa8b732 628void kvm_resched(struct kvm_vcpu *vcpu);
7702fd1f
AK
629void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
630void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
d9e368d6 631void kvm_flush_remote_tlbs(struct kvm *kvm);
6aa8b732 632
e7d5d76c
LV
633int emulator_read_std(unsigned long addr,
634 void *val,
635 unsigned int bytes,
636 struct kvm_vcpu *vcpu);
637int emulator_write_emulated(unsigned long addr,
638 const void *val,
639 unsigned int bytes,
640 struct kvm_vcpu *vcpu);
6aa8b732
AK
641
642unsigned long segment_base(u16 selector);
643
09072daf 644void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
fe551881 645 const u8 *new, int bytes);
a436036b 646int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
22d95b12 647void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
17c3ba9d
AK
648int kvm_mmu_load(struct kvm_vcpu *vcpu);
649void kvm_mmu_unload(struct kvm_vcpu *vcpu);
ebeace86 650
7aa81cc0
AL
651int kvm_emulate_hypercall(struct kvm_vcpu *vcpu);
652
653int kvm_fix_hypercall(struct kvm_vcpu *vcpu);
270fd9b9 654
d172fcd3
LV
655static inline void kvm_guest_enter(void)
656{
657 current->flags |= PF_VCPU;
658}
659
660static inline void kvm_guest_exit(void)
661{
662 current->flags &= ~PF_VCPU;
663}
664
ebeace86
AK
665static inline int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
666 u32 error_code)
667{
ebeace86
AK
668 return vcpu->mmu.page_fault(vcpu, gva, error_code);
669}
da4a00f0 670
22d95b12
AK
671static inline void kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
672{
673 if (unlikely(vcpu->kvm->n_free_mmu_pages < KVM_MIN_FREE_MMU_PAGES))
674 __kvm_mmu_free_some_pages(vcpu);
675}
676
17c3ba9d
AK
677static inline int kvm_mmu_reload(struct kvm_vcpu *vcpu)
678{
679 if (likely(vcpu->mmu.root_hpa != INVALID_PAGE))
680 return 0;
681
682 return kvm_mmu_load(vcpu);
683}
684
a9058ecd
AK
685static inline int is_long_mode(struct kvm_vcpu *vcpu)
686{
687#ifdef CONFIG_X86_64
688 return vcpu->shadow_efer & EFER_LME;
689#else
690 return 0;
691#endif
692}
693
6aa8b732
AK
694static inline int is_pae(struct kvm_vcpu *vcpu)
695{
66aee91a 696 return vcpu->cr4 & X86_CR4_PAE;
6aa8b732
AK
697}
698
699static inline int is_pse(struct kvm_vcpu *vcpu)
700{
66aee91a 701 return vcpu->cr4 & X86_CR4_PSE;
6aa8b732
AK
702}
703
704static inline int is_paging(struct kvm_vcpu *vcpu)
705{
707d92fa 706 return vcpu->cr0 & X86_CR0_PG;
6aa8b732
AK
707}
708
709static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
710{
711 return slot - kvm->memslots;
712}
713
714static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
715{
716 struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
717
5972e953 718 return (struct kvm_mmu_page *)page_private(page);
6aa8b732
AK
719}
720
721static inline u16 read_fs(void)
722{
723 u16 seg;
724 asm ("mov %%fs, %0" : "=g"(seg));
725 return seg;
726}
727
728static inline u16 read_gs(void)
729{
730 u16 seg;
731 asm ("mov %%gs, %0" : "=g"(seg));
732 return seg;
733}
734
735static inline u16 read_ldt(void)
736{
737 u16 ldt;
738 asm ("sldt %0" : "=g"(ldt));
739 return ldt;
740}
741
742static inline void load_fs(u16 sel)
743{
744 asm ("mov %0, %%fs" : : "rm"(sel));
745}
746
747static inline void load_gs(u16 sel)
748{
749 asm ("mov %0, %%gs" : : "rm"(sel));
750}
751
752#ifndef load_ldt
753static inline void load_ldt(u16 sel)
754{
a0610ddf 755 asm ("lldt %0" : : "rm"(sel));
6aa8b732
AK
756}
757#endif
758
759static inline void get_idt(struct descriptor_table *table)
760{
761 asm ("sidt %0" : "=m"(*table));
762}
763
764static inline void get_gdt(struct descriptor_table *table)
765{
766 asm ("sgdt %0" : "=m"(*table));
767}
768
769static inline unsigned long read_tr_base(void)
770{
771 u16 tr;
772 asm ("str %0" : "=g"(tr));
773 return segment_base(tr);
774}
775
05b3e0c2 776#ifdef CONFIG_X86_64
6aa8b732
AK
777static inline unsigned long read_msr(unsigned long msr)
778{
779 u64 value;
780
781 rdmsrl(msr, value);
782 return value;
783}
784#endif
785
b114b080 786static inline void fx_save(struct i387_fxsave_struct *image)
6aa8b732
AK
787{
788 asm ("fxsave (%0)":: "r" (image));
789}
790
b114b080 791static inline void fx_restore(struct i387_fxsave_struct *image)
6aa8b732
AK
792{
793 asm ("fxrstor (%0)":: "r" (image));
794}
795
796static inline void fpu_init(void)
797{
798 asm ("finit");
799}
800
801static inline u32 get_rdx_init_val(void)
802{
803 return 0x600; /* P6 family */
804}
805
806#define ASM_VMX_VMCLEAR_RAX ".byte 0x66, 0x0f, 0xc7, 0x30"
807#define ASM_VMX_VMLAUNCH ".byte 0x0f, 0x01, 0xc2"
808#define ASM_VMX_VMRESUME ".byte 0x0f, 0x01, 0xc3"
809#define ASM_VMX_VMPTRLD_RAX ".byte 0x0f, 0xc7, 0x30"
810#define ASM_VMX_VMREAD_RDX_RAX ".byte 0x0f, 0x78, 0xd0"
811#define ASM_VMX_VMWRITE_RAX_RDX ".byte 0x0f, 0x79, 0xd0"
812#define ASM_VMX_VMWRITE_RSP_RDX ".byte 0x0f, 0x79, 0xd4"
813#define ASM_VMX_VMXOFF ".byte 0x0f, 0x01, 0xc4"
814#define ASM_VMX_VMXON_RAX ".byte 0xf3, 0x0f, 0xc7, 0x30"
815
816#define MSR_IA32_TIME_STAMP_COUNTER 0x010
817
818#define TSS_IOPB_BASE_OFFSET 0x66
819#define TSS_BASE_SIZE 0x68
820#define TSS_IOPB_SIZE (65536 / 8)
821#define TSS_REDIRECTION_SIZE (256 / 8)
822#define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
823
6aa8b732 824#endif