]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/kvm/kvm.h
KVM: Support assigning userspace memory to the guest
[mirror_ubuntu-hirsute-kernel.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
cbdd1bea 540int kvm_init_x86(struct kvm_x86_ops *ops, unsigned int vcpu_size,
c16f862d 541 struct module *module);
cbdd1bea 542void kvm_exit_x86(void);
6aa8b732 543
b5a33a75
AK
544int kvm_mmu_module_init(void);
545void kvm_mmu_module_exit(void);
546
6aa8b732 547void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
8018c27b
IM
548int kvm_mmu_create(struct kvm_vcpu *vcpu);
549int kvm_mmu_setup(struct kvm_vcpu *vcpu);
c7addb90 550void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte);
6aa8b732
AK
551
552int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
90cb0529
AK
553void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot);
554void kvm_mmu_zap_all(struct kvm *kvm);
82ce2c96 555void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages);
6aa8b732
AK
556
557hpa_t gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa);
558#define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
559#define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
560static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
561hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva);
039576c0 562struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva);
6aa8b732 563
6aa8b732
AK
564extern hpa_t bad_page_address;
565
290fc38d 566gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn);
954bbbc2 567struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
195aefde
IE
568int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
569 int len);
570int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
571int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
572 int offset, int len);
573int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
574 unsigned long len);
575int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
576int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732
AK
577struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
578void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
579
580enum emulation_result {
581 EMULATE_DONE, /* no further processing */
582 EMULATE_DO_MMIO, /* kvm_run filled with mmio request */
583 EMULATE_FAIL, /* can't emulate this instruction */
584};
585
586int emulate_instruction(struct kvm_vcpu *vcpu, struct kvm_run *run,
3427318f 587 unsigned long cr2, u16 error_code, int no_decode);
054b1369 588void kvm_report_emulation_failure(struct kvm_vcpu *cvpu, const char *context);
6aa8b732
AK
589void realmode_lgdt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
590void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
591void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
592 unsigned long *rflags);
593
594unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr);
595void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value,
596 unsigned long *rflags);
35f3f286
AK
597int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *data);
598int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
6aa8b732
AK
599
600struct x86_emulate_ctxt;
601
d77c26fc 602int kvm_emulate_pio(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
3090dd73
LV
603 int size, unsigned port);
604int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
605 int size, unsigned long count, int down,
606 gva_t address, int rep, unsigned port);
06465c5a 607void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
d3bef15f 608int kvm_emulate_halt(struct kvm_vcpu *vcpu);
6aa8b732
AK
609int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address);
610int emulate_clts(struct kvm_vcpu *vcpu);
d77c26fc 611int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
6aa8b732
AK
612 unsigned long *dest);
613int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
614 unsigned long value);
615
616void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
617void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr0);
618void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr0);
619void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr0);
7017fc3d 620unsigned long get_cr8(struct kvm_vcpu *vcpu);
6aa8b732 621void lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
1747fb71 622void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l);
6aa8b732 623
3bab1f5d
AK
624int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
625int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
6aa8b732
AK
626
627void fx_init(struct kvm_vcpu *vcpu);
628
6aa8b732 629void kvm_resched(struct kvm_vcpu *vcpu);
7702fd1f
AK
630void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
631void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
d9e368d6 632void kvm_flush_remote_tlbs(struct kvm *kvm);
6aa8b732 633
e7d5d76c 634int emulator_read_std(unsigned long addr,
d77c26fc 635 void *val,
e7d5d76c
LV
636 unsigned int bytes,
637 struct kvm_vcpu *vcpu);
638int emulator_write_emulated(unsigned long addr,
639 const void *val,
640 unsigned int bytes,
641 struct kvm_vcpu *vcpu);
6aa8b732
AK
642
643unsigned long segment_base(u16 selector);
644
09072daf 645void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
fe551881 646 const u8 *new, int bytes);
a436036b 647int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
22d95b12 648void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
17c3ba9d
AK
649int kvm_mmu_load(struct kvm_vcpu *vcpu);
650void kvm_mmu_unload(struct kvm_vcpu *vcpu);
ebeace86 651
7aa81cc0
AL
652int kvm_emulate_hypercall(struct kvm_vcpu *vcpu);
653
654int kvm_fix_hypercall(struct kvm_vcpu *vcpu);
270fd9b9 655
d172fcd3
LV
656static inline void kvm_guest_enter(void)
657{
658 current->flags |= PF_VCPU;
659}
660
661static inline void kvm_guest_exit(void)
662{
663 current->flags &= ~PF_VCPU;
664}
665
ebeace86
AK
666static inline int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
667 u32 error_code)
668{
ebeace86
AK
669 return vcpu->mmu.page_fault(vcpu, gva, error_code);
670}
da4a00f0 671
22d95b12
AK
672static inline void kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
673{
674 if (unlikely(vcpu->kvm->n_free_mmu_pages < KVM_MIN_FREE_MMU_PAGES))
675 __kvm_mmu_free_some_pages(vcpu);
676}
677
17c3ba9d
AK
678static inline int kvm_mmu_reload(struct kvm_vcpu *vcpu)
679{
680 if (likely(vcpu->mmu.root_hpa != INVALID_PAGE))
681 return 0;
682
683 return kvm_mmu_load(vcpu);
684}
685
a9058ecd
AK
686static inline int is_long_mode(struct kvm_vcpu *vcpu)
687{
688#ifdef CONFIG_X86_64
689 return vcpu->shadow_efer & EFER_LME;
690#else
691 return 0;
692#endif
693}
694
6aa8b732
AK
695static inline int is_pae(struct kvm_vcpu *vcpu)
696{
66aee91a 697 return vcpu->cr4 & X86_CR4_PAE;
6aa8b732
AK
698}
699
700static inline int is_pse(struct kvm_vcpu *vcpu)
701{
66aee91a 702 return vcpu->cr4 & X86_CR4_PSE;
6aa8b732
AK
703}
704
705static inline int is_paging(struct kvm_vcpu *vcpu)
706{
707d92fa 707 return vcpu->cr0 & X86_CR0_PG;
6aa8b732
AK
708}
709
710static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
711{
712 return slot - kvm->memslots;
713}
714
715static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
716{
717 struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
718
5972e953 719 return (struct kvm_mmu_page *)page_private(page);
6aa8b732
AK
720}
721
722static inline u16 read_fs(void)
723{
724 u16 seg;
d77c26fc 725 asm("mov %%fs, %0" : "=g"(seg));
6aa8b732
AK
726 return seg;
727}
728
729static inline u16 read_gs(void)
730{
731 u16 seg;
d77c26fc 732 asm("mov %%gs, %0" : "=g"(seg));
6aa8b732
AK
733 return seg;
734}
735
736static inline u16 read_ldt(void)
737{
738 u16 ldt;
d77c26fc 739 asm("sldt %0" : "=g"(ldt));
6aa8b732
AK
740 return ldt;
741}
742
743static inline void load_fs(u16 sel)
744{
d77c26fc 745 asm("mov %0, %%fs" : : "rm"(sel));
6aa8b732
AK
746}
747
748static inline void load_gs(u16 sel)
749{
d77c26fc 750 asm("mov %0, %%gs" : : "rm"(sel));
6aa8b732
AK
751}
752
753#ifndef load_ldt
754static inline void load_ldt(u16 sel)
755{
d77c26fc 756 asm("lldt %0" : : "rm"(sel));
6aa8b732
AK
757}
758#endif
759
760static inline void get_idt(struct descriptor_table *table)
761{
d77c26fc 762 asm("sidt %0" : "=m"(*table));
6aa8b732
AK
763}
764
765static inline void get_gdt(struct descriptor_table *table)
766{
d77c26fc 767 asm("sgdt %0" : "=m"(*table));
6aa8b732
AK
768}
769
770static inline unsigned long read_tr_base(void)
771{
772 u16 tr;
d77c26fc 773 asm("str %0" : "=g"(tr));
6aa8b732
AK
774 return segment_base(tr);
775}
776
05b3e0c2 777#ifdef CONFIG_X86_64
6aa8b732
AK
778static inline unsigned long read_msr(unsigned long msr)
779{
780 u64 value;
781
782 rdmsrl(msr, value);
783 return value;
784}
785#endif
786
b114b080 787static inline void fx_save(struct i387_fxsave_struct *image)
6aa8b732 788{
d77c26fc 789 asm("fxsave (%0)":: "r" (image));
6aa8b732
AK
790}
791
b114b080 792static inline void fx_restore(struct i387_fxsave_struct *image)
6aa8b732 793{
d77c26fc 794 asm("fxrstor (%0)":: "r" (image));
6aa8b732
AK
795}
796
797static inline void fpu_init(void)
798{
d77c26fc 799 asm("finit");
6aa8b732
AK
800}
801
802static inline u32 get_rdx_init_val(void)
803{
804 return 0x600; /* P6 family */
805}
806
807#define ASM_VMX_VMCLEAR_RAX ".byte 0x66, 0x0f, 0xc7, 0x30"
808#define ASM_VMX_VMLAUNCH ".byte 0x0f, 0x01, 0xc2"
809#define ASM_VMX_VMRESUME ".byte 0x0f, 0x01, 0xc3"
810#define ASM_VMX_VMPTRLD_RAX ".byte 0x0f, 0xc7, 0x30"
811#define ASM_VMX_VMREAD_RDX_RAX ".byte 0x0f, 0x78, 0xd0"
812#define ASM_VMX_VMWRITE_RAX_RDX ".byte 0x0f, 0x79, 0xd0"
813#define ASM_VMX_VMWRITE_RSP_RDX ".byte 0x0f, 0x79, 0xd4"
814#define ASM_VMX_VMXOFF ".byte 0x0f, 0x01, 0xc4"
815#define ASM_VMX_VMXON_RAX ".byte 0xf3, 0x0f, 0xc7, 0x30"
816
817#define MSR_IA32_TIME_STAMP_COUNTER 0x010
818
819#define TSS_IOPB_BASE_OFFSET 0x66
820#define TSS_BASE_SIZE 0x68
821#define TSS_IOPB_SIZE (65536 / 8)
822#define TSS_REDIRECTION_SIZE (256 / 8)
823#define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
824
6aa8b732 825#endif