KVM: MMU: remove bypass_guest_pf
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / include / asm / kvm_host.h
bloba198a5b2f04e52b17df228e4ca10a5beac8745f7
1 /*
2 * Kernel-based Virtual Machine driver for Linux
4 * This header defines architecture specific interfaces, x86 version
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
9 */
11 #ifndef _ASM_X86_KVM_HOST_H
12 #define _ASM_X86_KVM_HOST_H
14 #include <linux/types.h>
15 #include <linux/mm.h>
16 #include <linux/mmu_notifier.h>
17 #include <linux/tracepoint.h>
18 #include <linux/cpumask.h>
20 #include <linux/kvm.h>
21 #include <linux/kvm_para.h>
22 #include <linux/kvm_types.h>
24 #include <asm/pvclock-abi.h>
25 #include <asm/desc.h>
26 #include <asm/mtrr.h>
27 #include <asm/msr-index.h>
29 #define KVM_MAX_VCPUS 64
30 #define KVM_MEMORY_SLOTS 32
31 /* memory slots that does not exposed to userspace */
32 #define KVM_PRIVATE_MEM_SLOTS 4
33 #define KVM_MMIO_SIZE 16
35 #define KVM_PIO_PAGE_OFFSET 1
36 #define KVM_COALESCED_MMIO_PAGE_OFFSET 2
38 #define CR0_RESERVED_BITS \
39 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
40 | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
41 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
43 #define CR3_PAE_RESERVED_BITS ((X86_CR3_PWT | X86_CR3_PCD) - 1)
44 #define CR3_NONPAE_RESERVED_BITS ((PAGE_SIZE-1) & ~(X86_CR3_PWT | X86_CR3_PCD))
45 #define CR3_L_MODE_RESERVED_BITS (CR3_NONPAE_RESERVED_BITS | \
46 0xFFFFFF0000000000ULL)
47 #define CR4_RESERVED_BITS \
48 (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
49 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \
50 | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR \
51 | X86_CR4_OSXSAVE | X86_CR4_SMEP | X86_CR4_RDWRGSFS \
52 | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE))
54 #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR)
58 #define INVALID_PAGE (~(hpa_t)0)
59 #define VALID_PAGE(x) ((x) != INVALID_PAGE)
61 #define UNMAPPED_GVA (~(gpa_t)0)
63 /* KVM Hugepage definitions for x86 */
64 #define KVM_NR_PAGE_SIZES 3
65 #define KVM_HPAGE_GFN_SHIFT(x) (((x) - 1) * 9)
66 #define KVM_HPAGE_SHIFT(x) (PAGE_SHIFT + KVM_HPAGE_GFN_SHIFT(x))
67 #define KVM_HPAGE_SIZE(x) (1UL << KVM_HPAGE_SHIFT(x))
68 #define KVM_HPAGE_MASK(x) (~(KVM_HPAGE_SIZE(x) - 1))
69 #define KVM_PAGES_PER_HPAGE(x) (KVM_HPAGE_SIZE(x) / PAGE_SIZE)
71 #define DE_VECTOR 0
72 #define DB_VECTOR 1
73 #define BP_VECTOR 3
74 #define OF_VECTOR 4
75 #define BR_VECTOR 5
76 #define UD_VECTOR 6
77 #define NM_VECTOR 7
78 #define DF_VECTOR 8
79 #define TS_VECTOR 10
80 #define NP_VECTOR 11
81 #define SS_VECTOR 12
82 #define GP_VECTOR 13
83 #define PF_VECTOR 14
84 #define MF_VECTOR 16
85 #define MC_VECTOR 18
87 #define SELECTOR_TI_MASK (1 << 2)
88 #define SELECTOR_RPL_MASK 0x03
90 #define IOPL_SHIFT 12
92 #define KVM_PERMILLE_MMU_PAGES 20
93 #define KVM_MIN_ALLOC_MMU_PAGES 64
94 #define KVM_MMU_HASH_SHIFT 10
95 #define KVM_NUM_MMU_PAGES (1 << KVM_MMU_HASH_SHIFT)
96 #define KVM_MIN_FREE_MMU_PAGES 5
97 #define KVM_REFILL_PAGES 25
98 #define KVM_MAX_CPUID_ENTRIES 80
99 #define KVM_NR_FIXED_MTRR_REGION 88
100 #define KVM_NR_VAR_MTRR 8
102 #define ASYNC_PF_PER_VCPU 64
104 extern raw_spinlock_t kvm_lock;
105 extern struct list_head vm_list;
107 struct kvm_vcpu;
108 struct kvm;
109 struct kvm_async_pf;
111 enum kvm_reg {
112 VCPU_REGS_RAX = 0,
113 VCPU_REGS_RCX = 1,
114 VCPU_REGS_RDX = 2,
115 VCPU_REGS_RBX = 3,
116 VCPU_REGS_RSP = 4,
117 VCPU_REGS_RBP = 5,
118 VCPU_REGS_RSI = 6,
119 VCPU_REGS_RDI = 7,
120 #ifdef CONFIG_X86_64
121 VCPU_REGS_R8 = 8,
122 VCPU_REGS_R9 = 9,
123 VCPU_REGS_R10 = 10,
124 VCPU_REGS_R11 = 11,
125 VCPU_REGS_R12 = 12,
126 VCPU_REGS_R13 = 13,
127 VCPU_REGS_R14 = 14,
128 VCPU_REGS_R15 = 15,
129 #endif
130 VCPU_REGS_RIP,
131 NR_VCPU_REGS
134 enum kvm_reg_ex {
135 VCPU_EXREG_PDPTR = NR_VCPU_REGS,
136 VCPU_EXREG_CR3,
137 VCPU_EXREG_RFLAGS,
138 VCPU_EXREG_CPL,
139 VCPU_EXREG_SEGMENTS,
142 enum {
143 VCPU_SREG_ES,
144 VCPU_SREG_CS,
145 VCPU_SREG_SS,
146 VCPU_SREG_DS,
147 VCPU_SREG_FS,
148 VCPU_SREG_GS,
149 VCPU_SREG_TR,
150 VCPU_SREG_LDTR,
153 #include <asm/kvm_emulate.h>
155 #define KVM_NR_MEM_OBJS 40
157 #define KVM_NR_DB_REGS 4
159 #define DR6_BD (1 << 13)
160 #define DR6_BS (1 << 14)
161 #define DR6_FIXED_1 0xffff0ff0
162 #define DR6_VOLATILE 0x0000e00f
164 #define DR7_BP_EN_MASK 0x000000ff
165 #define DR7_GE (1 << 9)
166 #define DR7_GD (1 << 13)
167 #define DR7_FIXED_1 0x00000400
168 #define DR7_VOLATILE 0xffff23ff
171 * We don't want allocation failures within the mmu code, so we preallocate
172 * enough memory for a single page fault in a cache.
174 struct kvm_mmu_memory_cache {
175 int nobjs;
176 void *objects[KVM_NR_MEM_OBJS];
179 #define NR_PTE_CHAIN_ENTRIES 5
181 struct kvm_pte_chain {
182 u64 *parent_ptes[NR_PTE_CHAIN_ENTRIES];
183 struct hlist_node link;
187 * kvm_mmu_page_role, below, is defined as:
189 * bits 0:3 - total guest paging levels (2-4, or zero for real mode)
190 * bits 4:7 - page table level for this shadow (1-4)
191 * bits 8:9 - page table quadrant for 2-level guests
192 * bit 16 - direct mapping of virtual to physical mapping at gfn
193 * used for real mode and two-dimensional paging
194 * bits 17:19 - common access permissions for all ptes in this shadow page
196 union kvm_mmu_page_role {
197 unsigned word;
198 struct {
199 unsigned level:4;
200 unsigned cr4_pae:1;
201 unsigned quadrant:2;
202 unsigned pad_for_nice_hex_output:6;
203 unsigned direct:1;
204 unsigned access:3;
205 unsigned invalid:1;
206 unsigned nxe:1;
207 unsigned cr0_wp:1;
208 unsigned smep_andnot_wp:1;
212 struct kvm_mmu_page {
213 struct list_head link;
214 struct hlist_node hash_link;
217 * The following two entries are used to key the shadow page in the
218 * hash table.
220 gfn_t gfn;
221 union kvm_mmu_page_role role;
223 u64 *spt;
224 /* hold the gfn of each spte inside spt */
225 gfn_t *gfns;
227 * One bit set per slot which has memory
228 * in this shadow page.
230 DECLARE_BITMAP(slot_bitmap, KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS);
231 bool unsync;
232 int root_count; /* Currently serving as active root */
233 unsigned int unsync_children;
234 unsigned long parent_ptes; /* Reverse mapping for parent_pte */
235 DECLARE_BITMAP(unsync_child_bitmap, 512);
238 struct kvm_pv_mmu_op_buffer {
239 void *ptr;
240 unsigned len;
241 unsigned processed;
242 char buf[512] __aligned(sizeof(long));
245 struct kvm_pio_request {
246 unsigned long count;
247 int in;
248 int port;
249 int size;
253 * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
254 * 32-bit). The kvm_mmu structure abstracts the details of the current mmu
255 * mode.
257 struct kvm_mmu {
258 void (*new_cr3)(struct kvm_vcpu *vcpu);
259 void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long root);
260 unsigned long (*get_cr3)(struct kvm_vcpu *vcpu);
261 int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err,
262 bool prefault);
263 void (*inject_page_fault)(struct kvm_vcpu *vcpu,
264 struct x86_exception *fault);
265 void (*free)(struct kvm_vcpu *vcpu);
266 gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva, u32 access,
267 struct x86_exception *exception);
268 gpa_t (*translate_gpa)(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access);
269 int (*sync_page)(struct kvm_vcpu *vcpu,
270 struct kvm_mmu_page *sp);
271 void (*invlpg)(struct kvm_vcpu *vcpu, gva_t gva);
272 void (*update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
273 u64 *spte, const void *pte);
274 hpa_t root_hpa;
275 int root_level;
276 int shadow_root_level;
277 union kvm_mmu_page_role base_role;
278 bool direct_map;
280 u64 *pae_root;
281 u64 *lm_root;
282 u64 rsvd_bits_mask[2][4];
284 bool nx;
286 u64 pdptrs[4]; /* pae */
289 struct kvm_vcpu_arch {
291 * rip and regs accesses must go through
292 * kvm_{register,rip}_{read,write} functions.
294 unsigned long regs[NR_VCPU_REGS];
295 u32 regs_avail;
296 u32 regs_dirty;
298 unsigned long cr0;
299 unsigned long cr0_guest_owned_bits;
300 unsigned long cr2;
301 unsigned long cr3;
302 unsigned long cr4;
303 unsigned long cr4_guest_owned_bits;
304 unsigned long cr8;
305 u32 hflags;
306 u64 efer;
307 u64 apic_base;
308 struct kvm_lapic *apic; /* kernel irqchip context */
309 int32_t apic_arb_prio;
310 int mp_state;
311 int sipi_vector;
312 u64 ia32_misc_enable_msr;
313 bool tpr_access_reporting;
316 * Paging state of the vcpu
318 * If the vcpu runs in guest mode with two level paging this still saves
319 * the paging mode of the l1 guest. This context is always used to
320 * handle faults.
322 struct kvm_mmu mmu;
325 * Paging state of an L2 guest (used for nested npt)
327 * This context will save all necessary information to walk page tables
328 * of the an L2 guest. This context is only initialized for page table
329 * walking and not for faulting since we never handle l2 page faults on
330 * the host.
332 struct kvm_mmu nested_mmu;
335 * Pointer to the mmu context currently used for
336 * gva_to_gpa translations.
338 struct kvm_mmu *walk_mmu;
340 /* only needed in kvm_pv_mmu_op() path, but it's hot so
341 * put it here to avoid allocation */
342 struct kvm_pv_mmu_op_buffer mmu_op_buffer;
344 struct kvm_mmu_memory_cache mmu_pte_list_desc_cache;
345 struct kvm_mmu_memory_cache mmu_page_cache;
346 struct kvm_mmu_memory_cache mmu_page_header_cache;
348 gfn_t last_pt_write_gfn;
349 int last_pt_write_count;
350 u64 *last_pte_updated;
351 gfn_t last_pte_gfn;
353 struct fpu guest_fpu;
354 u64 xcr0;
356 struct kvm_pio_request pio;
357 void *pio_data;
359 u8 event_exit_inst_len;
361 struct kvm_queued_exception {
362 bool pending;
363 bool has_error_code;
364 bool reinject;
365 u8 nr;
366 u32 error_code;
367 } exception;
369 struct kvm_queued_interrupt {
370 bool pending;
371 bool soft;
372 u8 nr;
373 } interrupt;
375 int halt_request; /* real mode on Intel only */
377 int cpuid_nent;
378 struct kvm_cpuid_entry2 cpuid_entries[KVM_MAX_CPUID_ENTRIES];
379 /* emulate context */
381 struct x86_emulate_ctxt emulate_ctxt;
382 bool emulate_regs_need_sync_to_vcpu;
383 bool emulate_regs_need_sync_from_vcpu;
385 gpa_t time;
386 struct pvclock_vcpu_time_info hv_clock;
387 unsigned int hw_tsc_khz;
388 unsigned int time_offset;
389 struct page *time_page;
391 struct {
392 u64 msr_val;
393 u64 last_steal;
394 u64 accum_steal;
395 struct gfn_to_hva_cache stime;
396 struct kvm_steal_time steal;
397 } st;
399 u64 last_guest_tsc;
400 u64 last_kernel_ns;
401 u64 last_tsc_nsec;
402 u64 last_tsc_write;
403 u32 virtual_tsc_khz;
404 bool tsc_catchup;
405 u32 tsc_catchup_mult;
406 s8 tsc_catchup_shift;
408 bool nmi_pending;
409 bool nmi_injected;
411 struct mtrr_state_type mtrr_state;
412 u32 pat;
414 int switch_db_regs;
415 unsigned long db[KVM_NR_DB_REGS];
416 unsigned long dr6;
417 unsigned long dr7;
418 unsigned long eff_db[KVM_NR_DB_REGS];
420 u64 mcg_cap;
421 u64 mcg_status;
422 u64 mcg_ctl;
423 u64 *mce_banks;
425 /* Cache MMIO info */
426 u64 mmio_gva;
427 unsigned access;
428 gfn_t mmio_gfn;
430 /* used for guest single stepping over the given code position */
431 unsigned long singlestep_rip;
433 /* fields used by HYPER-V emulation */
434 u64 hv_vapic;
436 cpumask_var_t wbinvd_dirty_mask;
438 struct {
439 bool halted;
440 gfn_t gfns[roundup_pow_of_two(ASYNC_PF_PER_VCPU)];
441 struct gfn_to_hva_cache data;
442 u64 msr_val;
443 u32 id;
444 bool send_user_only;
445 } apf;
448 struct kvm_arch {
449 unsigned int n_used_mmu_pages;
450 unsigned int n_requested_mmu_pages;
451 unsigned int n_max_mmu_pages;
452 unsigned int indirect_shadow_pages;
453 atomic_t invlpg_counter;
454 struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
456 * Hash table of struct kvm_mmu_page.
458 struct list_head active_mmu_pages;
459 struct list_head assigned_dev_head;
460 struct iommu_domain *iommu_domain;
461 int iommu_flags;
462 struct kvm_pic *vpic;
463 struct kvm_ioapic *vioapic;
464 struct kvm_pit *vpit;
465 int vapics_in_nmi_mode;
467 unsigned int tss_addr;
468 struct page *apic_access_page;
470 gpa_t wall_clock;
472 struct page *ept_identity_pagetable;
473 bool ept_identity_pagetable_done;
474 gpa_t ept_identity_map_addr;
476 unsigned long irq_sources_bitmap;
477 s64 kvmclock_offset;
478 raw_spinlock_t tsc_write_lock;
479 u64 last_tsc_nsec;
480 u64 last_tsc_offset;
481 u64 last_tsc_write;
483 struct kvm_xen_hvm_config xen_hvm_config;
485 /* fields used by HYPER-V emulation */
486 u64 hv_guest_os_id;
487 u64 hv_hypercall;
489 #ifdef CONFIG_KVM_MMU_AUDIT
490 int audit_point;
491 #endif
494 struct kvm_vm_stat {
495 u32 mmu_shadow_zapped;
496 u32 mmu_pte_write;
497 u32 mmu_pte_updated;
498 u32 mmu_pde_zapped;
499 u32 mmu_flooded;
500 u32 mmu_recycled;
501 u32 mmu_cache_miss;
502 u32 mmu_unsync;
503 u32 remote_tlb_flush;
504 u32 lpages;
507 struct kvm_vcpu_stat {
508 u32 pf_fixed;
509 u32 pf_guest;
510 u32 tlb_flush;
511 u32 invlpg;
513 u32 exits;
514 u32 io_exits;
515 u32 mmio_exits;
516 u32 signal_exits;
517 u32 irq_window_exits;
518 u32 nmi_window_exits;
519 u32 halt_exits;
520 u32 halt_wakeup;
521 u32 request_irq_exits;
522 u32 irq_exits;
523 u32 host_state_reload;
524 u32 efer_reload;
525 u32 fpu_reload;
526 u32 insn_emulation;
527 u32 insn_emulation_fail;
528 u32 hypercalls;
529 u32 irq_injections;
530 u32 nmi_injections;
533 struct x86_instruction_info;
535 struct kvm_x86_ops {
536 int (*cpu_has_kvm_support)(void); /* __init */
537 int (*disabled_by_bios)(void); /* __init */
538 int (*hardware_enable)(void *dummy);
539 void (*hardware_disable)(void *dummy);
540 void (*check_processor_compatibility)(void *rtn);
541 int (*hardware_setup)(void); /* __init */
542 void (*hardware_unsetup)(void); /* __exit */
543 bool (*cpu_has_accelerated_tpr)(void);
544 void (*cpuid_update)(struct kvm_vcpu *vcpu);
546 /* Create, but do not attach this VCPU */
547 struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id);
548 void (*vcpu_free)(struct kvm_vcpu *vcpu);
549 int (*vcpu_reset)(struct kvm_vcpu *vcpu);
551 void (*prepare_guest_switch)(struct kvm_vcpu *vcpu);
552 void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
553 void (*vcpu_put)(struct kvm_vcpu *vcpu);
555 void (*set_guest_debug)(struct kvm_vcpu *vcpu,
556 struct kvm_guest_debug *dbg);
557 int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
558 int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
559 u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
560 void (*get_segment)(struct kvm_vcpu *vcpu,
561 struct kvm_segment *var, int seg);
562 int (*get_cpl)(struct kvm_vcpu *vcpu);
563 void (*set_segment)(struct kvm_vcpu *vcpu,
564 struct kvm_segment *var, int seg);
565 void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
566 void (*decache_cr0_guest_bits)(struct kvm_vcpu *vcpu);
567 void (*decache_cr3)(struct kvm_vcpu *vcpu);
568 void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu);
569 void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
570 void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
571 int (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
572 void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
573 void (*get_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
574 void (*set_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
575 void (*get_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
576 void (*set_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
577 void (*set_dr7)(struct kvm_vcpu *vcpu, unsigned long value);
578 void (*cache_reg)(struct kvm_vcpu *vcpu, enum kvm_reg reg);
579 unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
580 void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
581 void (*fpu_activate)(struct kvm_vcpu *vcpu);
582 void (*fpu_deactivate)(struct kvm_vcpu *vcpu);
584 void (*tlb_flush)(struct kvm_vcpu *vcpu);
586 void (*run)(struct kvm_vcpu *vcpu);
587 int (*handle_exit)(struct kvm_vcpu *vcpu);
588 void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
589 void (*set_interrupt_shadow)(struct kvm_vcpu *vcpu, int mask);
590 u32 (*get_interrupt_shadow)(struct kvm_vcpu *vcpu, int mask);
591 void (*patch_hypercall)(struct kvm_vcpu *vcpu,
592 unsigned char *hypercall_addr);
593 void (*set_irq)(struct kvm_vcpu *vcpu);
594 void (*set_nmi)(struct kvm_vcpu *vcpu);
595 void (*queue_exception)(struct kvm_vcpu *vcpu, unsigned nr,
596 bool has_error_code, u32 error_code,
597 bool reinject);
598 void (*cancel_injection)(struct kvm_vcpu *vcpu);
599 int (*interrupt_allowed)(struct kvm_vcpu *vcpu);
600 int (*nmi_allowed)(struct kvm_vcpu *vcpu);
601 bool (*get_nmi_mask)(struct kvm_vcpu *vcpu);
602 void (*set_nmi_mask)(struct kvm_vcpu *vcpu, bool masked);
603 void (*enable_nmi_window)(struct kvm_vcpu *vcpu);
604 void (*enable_irq_window)(struct kvm_vcpu *vcpu);
605 void (*update_cr8_intercept)(struct kvm_vcpu *vcpu, int tpr, int irr);
606 int (*set_tss_addr)(struct kvm *kvm, unsigned int addr);
607 int (*get_tdp_level)(void);
608 u64 (*get_mt_mask)(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio);
609 int (*get_lpage_level)(void);
610 bool (*rdtscp_supported)(void);
611 void (*adjust_tsc_offset)(struct kvm_vcpu *vcpu, s64 adjustment);
613 void (*set_tdp_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
615 void (*set_supported_cpuid)(u32 func, struct kvm_cpuid_entry2 *entry);
617 bool (*has_wbinvd_exit)(void);
619 void (*set_tsc_khz)(struct kvm_vcpu *vcpu, u32 user_tsc_khz);
620 void (*write_tsc_offset)(struct kvm_vcpu *vcpu, u64 offset);
622 u64 (*compute_tsc_offset)(struct kvm_vcpu *vcpu, u64 target_tsc);
624 void (*get_exit_info)(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2);
626 int (*check_intercept)(struct kvm_vcpu *vcpu,
627 struct x86_instruction_info *info,
628 enum x86_intercept_stage stage);
630 const struct trace_print_flags *exit_reasons_str;
633 struct kvm_arch_async_pf {
634 u32 token;
635 gfn_t gfn;
636 unsigned long cr3;
637 bool direct_map;
640 extern struct kvm_x86_ops *kvm_x86_ops;
642 int kvm_mmu_module_init(void);
643 void kvm_mmu_module_exit(void);
645 void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
646 int kvm_mmu_create(struct kvm_vcpu *vcpu);
647 int kvm_mmu_setup(struct kvm_vcpu *vcpu);
648 void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
649 u64 dirty_mask, u64 nx_mask, u64 x_mask);
651 int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
652 void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot);
653 void kvm_mmu_zap_all(struct kvm *kvm);
654 unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm);
655 void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages);
657 int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3);
659 int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
660 const void *val, int bytes);
661 int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
662 gpa_t addr, unsigned long *ret);
663 u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn);
665 extern bool tdp_enabled;
667 /* control of guest tsc rate supported? */
668 extern bool kvm_has_tsc_control;
669 /* minimum supported tsc_khz for guests */
670 extern u32 kvm_min_guest_tsc_khz;
671 /* maximum supported tsc_khz for guests */
672 extern u32 kvm_max_guest_tsc_khz;
674 enum emulation_result {
675 EMULATE_DONE, /* no further processing */
676 EMULATE_DO_MMIO, /* kvm_run filled with mmio request */
677 EMULATE_FAIL, /* can't emulate this instruction */
680 #define EMULTYPE_NO_DECODE (1 << 0)
681 #define EMULTYPE_TRAP_UD (1 << 1)
682 #define EMULTYPE_SKIP (1 << 2)
683 int x86_emulate_instruction(struct kvm_vcpu *vcpu, unsigned long cr2,
684 int emulation_type, void *insn, int insn_len);
686 static inline int emulate_instruction(struct kvm_vcpu *vcpu,
687 int emulation_type)
689 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
692 void kvm_enable_efer_bits(u64);
693 int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *data);
694 int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
696 struct x86_emulate_ctxt;
698 int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port);
699 void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
700 int kvm_emulate_halt(struct kvm_vcpu *vcpu);
701 int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu);
703 void kvm_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg);
704 int kvm_load_segment_descriptor(struct kvm_vcpu *vcpu, u16 selector, int seg);
706 int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int reason,
707 bool has_error_code, u32 error_code);
709 int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
710 int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
711 int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
712 int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8);
713 int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val);
714 int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val);
715 unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu);
716 void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
717 void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l);
718 int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr);
720 int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
721 int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
723 unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu);
724 void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
726 void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr);
727 void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code);
728 void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr);
729 void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code);
730 void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault);
731 int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
732 gfn_t gfn, void *data, int offset, int len,
733 u32 access);
734 void kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault);
735 bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl);
737 int kvm_pic_set_irq(void *opaque, int irq, int level);
739 void kvm_inject_nmi(struct kvm_vcpu *vcpu);
741 int fx_init(struct kvm_vcpu *vcpu);
743 void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu);
744 void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
745 const u8 *new, int bytes,
746 bool guest_initiated);
747 int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
748 void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
749 int kvm_mmu_load(struct kvm_vcpu *vcpu);
750 void kvm_mmu_unload(struct kvm_vcpu *vcpu);
751 void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu);
752 gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
753 struct x86_exception *exception);
754 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
755 struct x86_exception *exception);
756 gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
757 struct x86_exception *exception);
758 gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
759 struct x86_exception *exception);
761 int kvm_emulate_hypercall(struct kvm_vcpu *vcpu);
763 int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code,
764 void *insn, int insn_len);
765 void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva);
767 void kvm_enable_tdp(void);
768 void kvm_disable_tdp(void);
770 int complete_pio(struct kvm_vcpu *vcpu);
771 bool kvm_check_iopl(struct kvm_vcpu *vcpu);
773 static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
775 struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
777 return (struct kvm_mmu_page *)page_private(page);
780 static inline u16 kvm_read_ldt(void)
782 u16 ldt;
783 asm("sldt %0" : "=g"(ldt));
784 return ldt;
787 static inline void kvm_load_ldt(u16 sel)
789 asm("lldt %0" : : "rm"(sel));
792 #ifdef CONFIG_X86_64
793 static inline unsigned long read_msr(unsigned long msr)
795 u64 value;
797 rdmsrl(msr, value);
798 return value;
800 #endif
802 static inline u32 get_rdx_init_val(void)
804 return 0x600; /* P6 family */
807 static inline void kvm_inject_gp(struct kvm_vcpu *vcpu, u32 error_code)
809 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
812 #define TSS_IOPB_BASE_OFFSET 0x66
813 #define TSS_BASE_SIZE 0x68
814 #define TSS_IOPB_SIZE (65536 / 8)
815 #define TSS_REDIRECTION_SIZE (256 / 8)
816 #define RMODE_TSS_SIZE \
817 (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
819 enum {
820 TASK_SWITCH_CALL = 0,
821 TASK_SWITCH_IRET = 1,
822 TASK_SWITCH_JMP = 2,
823 TASK_SWITCH_GATE = 3,
826 #define HF_GIF_MASK (1 << 0)
827 #define HF_HIF_MASK (1 << 1)
828 #define HF_VINTR_MASK (1 << 2)
829 #define HF_NMI_MASK (1 << 3)
830 #define HF_IRET_MASK (1 << 4)
831 #define HF_GUEST_MASK (1 << 5) /* VCPU is in guest-mode */
834 * Hardware virtualization extension instructions may fault if a
835 * reboot turns off virtualization while processes are running.
836 * Trap the fault and ignore the instruction if that happens.
838 asmlinkage void kvm_spurious_fault(void);
839 extern bool kvm_rebooting;
841 #define ____kvm_handle_fault_on_reboot(insn, cleanup_insn) \
842 "666: " insn "\n\t" \
843 "668: \n\t" \
844 ".pushsection .fixup, \"ax\" \n" \
845 "667: \n\t" \
846 cleanup_insn "\n\t" \
847 "cmpb $0, kvm_rebooting \n\t" \
848 "jne 668b \n\t" \
849 __ASM_SIZE(push) " $666b \n\t" \
850 "call kvm_spurious_fault \n\t" \
851 ".popsection \n\t" \
852 ".pushsection __ex_table, \"a\" \n\t" \
853 _ASM_PTR " 666b, 667b \n\t" \
854 ".popsection"
856 #define __kvm_handle_fault_on_reboot(insn) \
857 ____kvm_handle_fault_on_reboot(insn, "")
859 #define KVM_ARCH_WANT_MMU_NOTIFIER
860 int kvm_unmap_hva(struct kvm *kvm, unsigned long hva);
861 int kvm_age_hva(struct kvm *kvm, unsigned long hva);
862 int kvm_test_age_hva(struct kvm *kvm, unsigned long hva);
863 void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte);
864 int cpuid_maxphyaddr(struct kvm_vcpu *vcpu);
865 int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu);
866 int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu);
867 int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
869 void kvm_define_shared_msr(unsigned index, u32 msr);
870 void kvm_set_shared_msr(unsigned index, u64 val, u64 mask);
872 bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip);
874 void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
875 struct kvm_async_pf *work);
876 void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
877 struct kvm_async_pf *work);
878 void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
879 struct kvm_async_pf *work);
880 bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu);
881 extern bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn);
883 void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err);
885 #endif /* _ASM_X86_KVM_HOST_H */