KVM: Move apic timer interrupt backlog processing to common code
[deliverable/linux.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 410 unsigned long *dirty_bitmap;
6fc138d2 411 int user_alloc; /* user allocated memory */
6aa8b732
AK
412};
413
414struct kvm {
11ec2804 415 struct mutex lock; /* protects everything except vcpus */
e8207547
AK
416 int naliases;
417 struct kvm_mem_alias aliases[KVM_ALIAS_SLOTS];
6aa8b732
AK
418 int nmemslots;
419 struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS];
cea0f0e7
AK
420 /*
421 * Hash table of struct kvm_mmu_page.
422 */
6aa8b732 423 struct list_head active_mmu_pages;
82ce2c96
IE
424 unsigned int n_free_mmu_pages;
425 unsigned int n_requested_mmu_pages;
426 unsigned int n_alloc_mmu_pages;
cea0f0e7 427 struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
fb3f0f51 428 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
cd4a4e53 429 unsigned long rmap_overflow;
133de902 430 struct list_head vm_list;
bccf2150 431 struct file *filp;
2eeb2e94 432 struct kvm_io_bus mmio_bus;
74906345 433 struct kvm_io_bus pio_bus;
85f455f7 434 struct kvm_pic *vpic;
1fd4f2a5 435 struct kvm_ioapic *vioapic;
932f72ad 436 int round_robin_prev_vcpu;
6aa8b732
AK
437};
438
85f455f7
ED
439static inline struct kvm_pic *pic_irqchip(struct kvm *kvm)
440{
441 return kvm->vpic;
442}
443
1fd4f2a5
ED
444static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
445{
446 return kvm->vioapic;
447}
448
85f455f7
ED
449static inline int irqchip_in_kernel(struct kvm *kvm)
450{
451 return pic_irqchip(kvm) != 0;
452}
453
6aa8b732
AK
454struct descriptor_table {
455 u16 limit;
456 unsigned long base;
457} __attribute__((packed));
458
cbdd1bea 459struct kvm_x86_ops {
6aa8b732
AK
460 int (*cpu_has_kvm_support)(void); /* __init */
461 int (*disabled_by_bios)(void); /* __init */
462 void (*hardware_enable)(void *dummy); /* __init */
463 void (*hardware_disable)(void *dummy);
002c7f7c 464 void (*check_processor_compatibility)(void *rtn);
6aa8b732
AK
465 int (*hardware_setup)(void); /* __init */
466 void (*hardware_unsetup)(void); /* __exit */
467
fb3f0f51
RR
468 /* Create, but do not attach this VCPU */
469 struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id);
6aa8b732 470 void (*vcpu_free)(struct kvm_vcpu *vcpu);
04d2cc77 471 void (*vcpu_reset)(struct kvm_vcpu *vcpu);
6aa8b732 472
04d2cc77 473 void (*prepare_guest_switch)(struct kvm_vcpu *vcpu);
15ad7146 474 void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
6aa8b732 475 void (*vcpu_put)(struct kvm_vcpu *vcpu);
774c47f1 476 void (*vcpu_decache)(struct kvm_vcpu *vcpu);
6aa8b732
AK
477
478 int (*set_guest_debug)(struct kvm_vcpu *vcpu,
479 struct kvm_debug_guest *dbg);
04d2cc77 480 void (*guest_debug_pre)(struct kvm_vcpu *vcpu);
6aa8b732
AK
481 int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
482 int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
483 u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
484 void (*get_segment)(struct kvm_vcpu *vcpu,
485 struct kvm_segment *var, int seg);
486 void (*set_segment)(struct kvm_vcpu *vcpu,
487 struct kvm_segment *var, int seg);
6aa8b732 488 void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
25c4c276 489 void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu);
6aa8b732 490 void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
6aa8b732
AK
491 void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
492 void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
493 void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
494 void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
495 void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
496 void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
497 void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
498 unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr);
499 void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value,
500 int *exception);
501 void (*cache_regs)(struct kvm_vcpu *vcpu);
502 void (*decache_regs)(struct kvm_vcpu *vcpu);
503 unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
504 void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
505
6aa8b732
AK
506 void (*tlb_flush)(struct kvm_vcpu *vcpu);
507 void (*inject_page_fault)(struct kvm_vcpu *vcpu,
508 unsigned long addr, u32 err_code);
509
510 void (*inject_gp)(struct kvm_vcpu *vcpu, unsigned err_code);
511
04d2cc77
AK
512 void (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run);
513 int (*handle_exit)(struct kvm_run *run, struct kvm_vcpu *vcpu);
6aa8b732 514 void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
102d8325
IM
515 void (*patch_hypercall)(struct kvm_vcpu *vcpu,
516 unsigned char *hypercall_addr);
2a8067f1
ED
517 int (*get_irq)(struct kvm_vcpu *vcpu);
518 void (*set_irq)(struct kvm_vcpu *vcpu, int vec);
04d2cc77
AK
519 void (*inject_pending_irq)(struct kvm_vcpu *vcpu);
520 void (*inject_pending_vectors)(struct kvm_vcpu *vcpu,
521 struct kvm_run *run);
6aa8b732
AK
522};
523
cbdd1bea 524extern struct kvm_x86_ops *kvm_x86_ops;
6aa8b732 525
f0242478
RR
526/* The guest did something we don't support. */
527#define pr_unimpl(vcpu, fmt, ...) \
528 do { \
529 if (printk_ratelimit()) \
530 printk(KERN_ERR "kvm: %i: cpu%i " fmt, \
531 current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__); \
d77c26fc 532 } while (0)
f0242478 533
6aa8b732
AK
534#define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt)
535#define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt)
536
fb3f0f51
RR
537int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
538void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
539
313a3dc7
CO
540void vcpu_load(struct kvm_vcpu *vcpu);
541void vcpu_put(struct kvm_vcpu *vcpu);
542
543
cbdd1bea 544int kvm_init_x86(struct kvm_x86_ops *ops, unsigned int vcpu_size,
c16f862d 545 struct module *module);
cbdd1bea 546void kvm_exit_x86(void);
6aa8b732 547
b5a33a75
AK
548int kvm_mmu_module_init(void);
549void kvm_mmu_module_exit(void);
550
6aa8b732 551void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
8018c27b
IM
552int kvm_mmu_create(struct kvm_vcpu *vcpu);
553int kvm_mmu_setup(struct kvm_vcpu *vcpu);
c7addb90 554void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte);
6aa8b732
AK
555
556int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
90cb0529
AK
557void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot);
558void kvm_mmu_zap_all(struct kvm *kvm);
82ce2c96 559void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages);
6aa8b732 560
4a4c9924 561hpa_t gpa_to_hpa(struct kvm *kvm, gpa_t gpa);
6aa8b732
AK
562#define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
563#define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
564static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
565hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva);
039576c0 566struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva);
6aa8b732 567
6aa8b732
AK
568extern hpa_t bad_page_address;
569
290fc38d 570gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn);
954bbbc2 571struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
195aefde
IE
572int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
573 int len);
574int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
575int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
576 int offset, int len);
577int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
578 unsigned long len);
579int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
580int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732
AK
581struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
582void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
583
584enum emulation_result {
585 EMULATE_DONE, /* no further processing */
586 EMULATE_DO_MMIO, /* kvm_run filled with mmio request */
587 EMULATE_FAIL, /* can't emulate this instruction */
588};
589
590int emulate_instruction(struct kvm_vcpu *vcpu, struct kvm_run *run,
3427318f 591 unsigned long cr2, u16 error_code, int no_decode);
054b1369 592void kvm_report_emulation_failure(struct kvm_vcpu *cvpu, const char *context);
6aa8b732
AK
593void realmode_lgdt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
594void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
595void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
596 unsigned long *rflags);
597
598unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr);
599void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value,
600 unsigned long *rflags);
35f3f286
AK
601int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *data);
602int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
6aa8b732
AK
603
604struct x86_emulate_ctxt;
605
d77c26fc 606int kvm_emulate_pio(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
3090dd73
LV
607 int size, unsigned port);
608int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
609 int size, unsigned long count, int down,
610 gva_t address, int rep, unsigned port);
06465c5a 611void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
d3bef15f 612int kvm_emulate_halt(struct kvm_vcpu *vcpu);
6aa8b732
AK
613int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address);
614int emulate_clts(struct kvm_vcpu *vcpu);
d77c26fc 615int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
6aa8b732
AK
616 unsigned long *dest);
617int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
618 unsigned long value);
619
620void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
621void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr0);
622void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr0);
623void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr0);
7017fc3d 624unsigned long get_cr8(struct kvm_vcpu *vcpu);
6aa8b732 625void lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
1747fb71 626void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l);
6aa8b732 627
3bab1f5d
AK
628int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
629int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
6aa8b732
AK
630
631void fx_init(struct kvm_vcpu *vcpu);
632
6aa8b732 633void kvm_resched(struct kvm_vcpu *vcpu);
7702fd1f
AK
634void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
635void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
d9e368d6 636void kvm_flush_remote_tlbs(struct kvm *kvm);
6aa8b732 637
e7d5d76c 638int emulator_read_std(unsigned long addr,
d77c26fc 639 void *val,
e7d5d76c
LV
640 unsigned int bytes,
641 struct kvm_vcpu *vcpu);
642int emulator_write_emulated(unsigned long addr,
643 const void *val,
644 unsigned int bytes,
645 struct kvm_vcpu *vcpu);
6aa8b732
AK
646
647unsigned long segment_base(u16 selector);
648
09072daf 649void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
fe551881 650 const u8 *new, int bytes);
a436036b 651int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
22d95b12 652void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
17c3ba9d
AK
653int kvm_mmu_load(struct kvm_vcpu *vcpu);
654void kvm_mmu_unload(struct kvm_vcpu *vcpu);
ebeace86 655
7aa81cc0
AL
656int kvm_emulate_hypercall(struct kvm_vcpu *vcpu);
657
658int kvm_fix_hypercall(struct kvm_vcpu *vcpu);
270fd9b9 659
043405e1
CO
660long kvm_arch_dev_ioctl(struct file *filp,
661 unsigned int ioctl, unsigned long arg);
313a3dc7
CO
662long kvm_arch_vcpu_ioctl(struct file *filp,
663 unsigned int ioctl, unsigned long arg);
664void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
665void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
666
043405e1
CO
667__init void kvm_arch_init(void);
668
d172fcd3
LV
669static inline void kvm_guest_enter(void)
670{
671 current->flags |= PF_VCPU;
672}
673
674static inline void kvm_guest_exit(void)
675{
676 current->flags &= ~PF_VCPU;
677}
678
ebeace86
AK
679static inline int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
680 u32 error_code)
681{
ebeace86
AK
682 return vcpu->mmu.page_fault(vcpu, gva, error_code);
683}
da4a00f0 684
22d95b12
AK
685static inline void kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
686{
687 if (unlikely(vcpu->kvm->n_free_mmu_pages < KVM_MIN_FREE_MMU_PAGES))
688 __kvm_mmu_free_some_pages(vcpu);
689}
690
17c3ba9d
AK
691static inline int kvm_mmu_reload(struct kvm_vcpu *vcpu)
692{
693 if (likely(vcpu->mmu.root_hpa != INVALID_PAGE))
694 return 0;
695
696 return kvm_mmu_load(vcpu);
697}
698
a9058ecd
AK
699static inline int is_long_mode(struct kvm_vcpu *vcpu)
700{
701#ifdef CONFIG_X86_64
702 return vcpu->shadow_efer & EFER_LME;
703#else
704 return 0;
705#endif
706}
707
6aa8b732
AK
708static inline int is_pae(struct kvm_vcpu *vcpu)
709{
66aee91a 710 return vcpu->cr4 & X86_CR4_PAE;
6aa8b732
AK
711}
712
713static inline int is_pse(struct kvm_vcpu *vcpu)
714{
66aee91a 715 return vcpu->cr4 & X86_CR4_PSE;
6aa8b732
AK
716}
717
718static inline int is_paging(struct kvm_vcpu *vcpu)
719{
707d92fa 720 return vcpu->cr0 & X86_CR0_PG;
6aa8b732
AK
721}
722
723static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
724{
725 return slot - kvm->memslots;
726}
727
728static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
729{
730 struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
731
5972e953 732 return (struct kvm_mmu_page *)page_private(page);
6aa8b732
AK
733}
734
735static inline u16 read_fs(void)
736{
737 u16 seg;
d77c26fc 738 asm("mov %%fs, %0" : "=g"(seg));
6aa8b732
AK
739 return seg;
740}
741
742static inline u16 read_gs(void)
743{
744 u16 seg;
d77c26fc 745 asm("mov %%gs, %0" : "=g"(seg));
6aa8b732
AK
746 return seg;
747}
748
749static inline u16 read_ldt(void)
750{
751 u16 ldt;
d77c26fc 752 asm("sldt %0" : "=g"(ldt));
6aa8b732
AK
753 return ldt;
754}
755
756static inline void load_fs(u16 sel)
757{
d77c26fc 758 asm("mov %0, %%fs" : : "rm"(sel));
6aa8b732
AK
759}
760
761static inline void load_gs(u16 sel)
762{
d77c26fc 763 asm("mov %0, %%gs" : : "rm"(sel));
6aa8b732
AK
764}
765
766#ifndef load_ldt
767static inline void load_ldt(u16 sel)
768{
d77c26fc 769 asm("lldt %0" : : "rm"(sel));
6aa8b732
AK
770}
771#endif
772
773static inline void get_idt(struct descriptor_table *table)
774{
d77c26fc 775 asm("sidt %0" : "=m"(*table));
6aa8b732
AK
776}
777
778static inline void get_gdt(struct descriptor_table *table)
779{
d77c26fc 780 asm("sgdt %0" : "=m"(*table));
6aa8b732
AK
781}
782
783static inline unsigned long read_tr_base(void)
784{
785 u16 tr;
d77c26fc 786 asm("str %0" : "=g"(tr));
6aa8b732
AK
787 return segment_base(tr);
788}
789
05b3e0c2 790#ifdef CONFIG_X86_64
6aa8b732
AK
791static inline unsigned long read_msr(unsigned long msr)
792{
793 u64 value;
794
795 rdmsrl(msr, value);
796 return value;
797}
798#endif
799
b114b080 800static inline void fx_save(struct i387_fxsave_struct *image)
6aa8b732 801{
d77c26fc 802 asm("fxsave (%0)":: "r" (image));
6aa8b732
AK
803}
804
b114b080 805static inline void fx_restore(struct i387_fxsave_struct *image)
6aa8b732 806{
d77c26fc 807 asm("fxrstor (%0)":: "r" (image));
6aa8b732
AK
808}
809
810static inline void fpu_init(void)
811{
d77c26fc 812 asm("finit");
6aa8b732
AK
813}
814
815static inline u32 get_rdx_init_val(void)
816{
817 return 0x600; /* P6 family */
818}
819
820#define ASM_VMX_VMCLEAR_RAX ".byte 0x66, 0x0f, 0xc7, 0x30"
821#define ASM_VMX_VMLAUNCH ".byte 0x0f, 0x01, 0xc2"
822#define ASM_VMX_VMRESUME ".byte 0x0f, 0x01, 0xc3"
823#define ASM_VMX_VMPTRLD_RAX ".byte 0x0f, 0xc7, 0x30"
824#define ASM_VMX_VMREAD_RDX_RAX ".byte 0x0f, 0x78, 0xd0"
825#define ASM_VMX_VMWRITE_RAX_RDX ".byte 0x0f, 0x79, 0xd0"
826#define ASM_VMX_VMWRITE_RSP_RDX ".byte 0x0f, 0x79, 0xd4"
827#define ASM_VMX_VMXOFF ".byte 0x0f, 0x01, 0xc4"
828#define ASM_VMX_VMXON_RAX ".byte 0xf3, 0x0f, 0xc7, 0x30"
829
830#define MSR_IA32_TIME_STAMP_COUNTER 0x010
831
832#define TSS_IOPB_BASE_OFFSET 0x66
833#define TSS_BASE_SIZE 0x68
834#define TSS_IOPB_SIZE (65536 / 8)
835#define TSS_REDIRECTION_SIZE (256 / 8)
836#define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
837
6aa8b732 838#endif
This page took 0.234723 seconds and 5 git commands to generate.