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.
11 #ifndef _ASM_X86_KVM_HOST_H
12 #define _ASM_X86_KVM_HOST_H
14 #include <linux/types.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>
27 #include <asm/msr-index.h>
29 #define KVM_MAX_VCPUS 254
30 #define KVM_SOFT_MAX_VCPUS 64
31 #define KVM_MEMORY_SLOTS 32
32 /* memory slots that does not exposed to userspace */
33 #define KVM_PRIVATE_MEM_SLOTS 4
34 #define KVM_MMIO_SIZE 16
36 #define KVM_PIO_PAGE_OFFSET 1
37 #define KVM_COALESCED_MMIO_PAGE_OFFSET 2
39 #define CR0_RESERVED_BITS \
40 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
41 | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
42 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
44 #define CR3_PAE_RESERVED_BITS ((X86_CR3_PWT | X86_CR3_PCD) - 1)
45 #define CR3_NONPAE_RESERVED_BITS ((PAGE_SIZE-1) & ~(X86_CR3_PWT | X86_CR3_PCD))
46 #define CR3_L_MODE_RESERVED_BITS (CR3_NONPAE_RESERVED_BITS | \
47 0xFFFFFF0000000000ULL)
48 #define CR4_RESERVED_BITS \
49 (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
50 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \
51 | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR \
52 | X86_CR4_OSXSAVE | X86_CR4_SMEP | X86_CR4_RDWRGSFS \
53 | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE))
55 #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR)
59 #define INVALID_PAGE (~(hpa_t)0)
60 #define VALID_PAGE(x) ((x) != INVALID_PAGE)
62 #define UNMAPPED_GVA (~(gpa_t)0)
64 /* KVM Hugepage definitions for x86 */
65 #define KVM_NR_PAGE_SIZES 3
66 #define KVM_HPAGE_GFN_SHIFT(x) (((x) - 1) * 9)
67 #define KVM_HPAGE_SHIFT(x) (PAGE_SHIFT + KVM_HPAGE_GFN_SHIFT(x))
68 #define KVM_HPAGE_SIZE(x) (1UL << KVM_HPAGE_SHIFT(x))
69 #define KVM_HPAGE_MASK(x) (~(KVM_HPAGE_SIZE(x) - 1))
70 #define KVM_PAGES_PER_HPAGE(x) (KVM_HPAGE_SIZE(x) / PAGE_SIZE)
88 #define SELECTOR_TI_MASK (1 << 2)
89 #define SELECTOR_RPL_MASK 0x03
93 #define KVM_PERMILLE_MMU_PAGES 20
94 #define KVM_MIN_ALLOC_MMU_PAGES 64
95 #define KVM_MMU_HASH_SHIFT 10
96 #define KVM_NUM_MMU_PAGES (1 << KVM_MMU_HASH_SHIFT)
97 #define KVM_MIN_FREE_MMU_PAGES 5
98 #define KVM_REFILL_PAGES 25
99 #define KVM_MAX_CPUID_ENTRIES 80
100 #define KVM_NR_FIXED_MTRR_REGION 88
101 #define KVM_NR_VAR_MTRR 8
103 #define ASYNC_PF_PER_VCPU 64
105 extern raw_spinlock_t kvm_lock
;
106 extern struct list_head vm_list
;
136 VCPU_EXREG_PDPTR
= NR_VCPU_REGS
,
154 #include <asm/kvm_emulate.h>
156 #define KVM_NR_MEM_OBJS 40
158 #define KVM_NR_DB_REGS 4
160 #define DR6_BD (1 << 13)
161 #define DR6_BS (1 << 14)
162 #define DR6_FIXED_1 0xffff0ff0
163 #define DR6_VOLATILE 0x0000e00f
165 #define DR7_BP_EN_MASK 0x000000ff
166 #define DR7_GE (1 << 9)
167 #define DR7_GD (1 << 13)
168 #define DR7_FIXED_1 0x00000400
169 #define DR7_VOLATILE 0xffff23ff
172 * We don't want allocation failures within the mmu code, so we preallocate
173 * enough memory for a single page fault in a cache.
175 struct kvm_mmu_memory_cache
{
177 void *objects
[KVM_NR_MEM_OBJS
];
180 #define NR_PTE_CHAIN_ENTRIES 5
182 struct kvm_pte_chain
{
183 u64
*parent_ptes
[NR_PTE_CHAIN_ENTRIES
];
184 struct hlist_node link
;
188 * kvm_mmu_page_role, below, is defined as:
190 * bits 0:3 - total guest paging levels (2-4, or zero for real mode)
191 * bits 4:7 - page table level for this shadow (1-4)
192 * bits 8:9 - page table quadrant for 2-level guests
193 * bit 16 - direct mapping of virtual to physical mapping at gfn
194 * used for real mode and two-dimensional paging
195 * bits 17:19 - common access permissions for all ptes in this shadow page
197 union kvm_mmu_page_role
{
203 unsigned pad_for_nice_hex_output
:6;
209 unsigned smep_andnot_wp
:1;
213 struct kvm_mmu_page
{
214 struct list_head link
;
215 struct hlist_node hash_link
;
218 * The following two entries are used to key the shadow page in the
222 union kvm_mmu_page_role role
;
225 /* hold the gfn of each spte inside spt */
228 * One bit set per slot which has memory
229 * in this shadow page.
231 DECLARE_BITMAP(slot_bitmap
, KVM_MEMORY_SLOTS
+ KVM_PRIVATE_MEM_SLOTS
);
233 int root_count
; /* Currently serving as active root */
234 unsigned int unsync_children
;
235 unsigned long parent_ptes
; /* Reverse mapping for parent_pte */
236 DECLARE_BITMAP(unsync_child_bitmap
, 512);
239 int clear_spte_count
;
245 struct kvm_pv_mmu_op_buffer
{
249 char buf
[512] __aligned(sizeof(long));
252 struct kvm_pio_request
{
260 * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
261 * 32-bit). The kvm_mmu structure abstracts the details of the current mmu
265 void (*new_cr3
)(struct kvm_vcpu
*vcpu
);
266 void (*set_cr3
)(struct kvm_vcpu
*vcpu
, unsigned long root
);
267 unsigned long (*get_cr3
)(struct kvm_vcpu
*vcpu
);
268 u64 (*get_pdptr
)(struct kvm_vcpu
*vcpu
, int index
);
269 int (*page_fault
)(struct kvm_vcpu
*vcpu
, gva_t gva
, u32 err
,
271 void (*inject_page_fault
)(struct kvm_vcpu
*vcpu
,
272 struct x86_exception
*fault
);
273 void (*free
)(struct kvm_vcpu
*vcpu
);
274 gpa_t (*gva_to_gpa
)(struct kvm_vcpu
*vcpu
, gva_t gva
, u32 access
,
275 struct x86_exception
*exception
);
276 gpa_t (*translate_gpa
)(struct kvm_vcpu
*vcpu
, gpa_t gpa
, u32 access
);
277 int (*sync_page
)(struct kvm_vcpu
*vcpu
,
278 struct kvm_mmu_page
*sp
);
279 void (*invlpg
)(struct kvm_vcpu
*vcpu
, gva_t gva
);
280 void (*update_pte
)(struct kvm_vcpu
*vcpu
, struct kvm_mmu_page
*sp
,
281 u64
*spte
, const void *pte
);
284 int shadow_root_level
;
285 union kvm_mmu_page_role base_role
;
290 u64 rsvd_bits_mask
[2][4];
294 u64 pdptrs
[4]; /* pae */
297 struct kvm_vcpu_arch
{
299 * rip and regs accesses must go through
300 * kvm_{register,rip}_{read,write} functions.
302 unsigned long regs
[NR_VCPU_REGS
];
307 unsigned long cr0_guest_owned_bits
;
311 unsigned long cr4_guest_owned_bits
;
316 struct kvm_lapic
*apic
; /* kernel irqchip context */
317 int32_t apic_arb_prio
;
320 u64 ia32_misc_enable_msr
;
321 bool tpr_access_reporting
;
324 * Paging state of the vcpu
326 * If the vcpu runs in guest mode with two level paging this still saves
327 * the paging mode of the l1 guest. This context is always used to
333 * Paging state of an L2 guest (used for nested npt)
335 * This context will save all necessary information to walk page tables
336 * of the an L2 guest. This context is only initialized for page table
337 * walking and not for faulting since we never handle l2 page faults on
340 struct kvm_mmu nested_mmu
;
343 * Pointer to the mmu context currently used for
344 * gva_to_gpa translations.
346 struct kvm_mmu
*walk_mmu
;
348 /* only needed in kvm_pv_mmu_op() path, but it's hot so
349 * put it here to avoid allocation */
350 struct kvm_pv_mmu_op_buffer mmu_op_buffer
;
352 struct kvm_mmu_memory_cache mmu_pte_list_desc_cache
;
353 struct kvm_mmu_memory_cache mmu_page_cache
;
354 struct kvm_mmu_memory_cache mmu_page_header_cache
;
356 gfn_t last_pt_write_gfn
;
357 int last_pt_write_count
;
358 u64
*last_pte_updated
;
361 struct fpu guest_fpu
;
364 struct kvm_pio_request pio
;
367 u8 event_exit_inst_len
;
369 struct kvm_queued_exception
{
377 struct kvm_queued_interrupt
{
383 int halt_request
; /* real mode on Intel only */
386 struct kvm_cpuid_entry2 cpuid_entries
[KVM_MAX_CPUID_ENTRIES
];
387 /* emulate context */
389 struct x86_emulate_ctxt emulate_ctxt
;
390 bool emulate_regs_need_sync_to_vcpu
;
391 bool emulate_regs_need_sync_from_vcpu
;
394 struct pvclock_vcpu_time_info hv_clock
;
395 unsigned int hw_tsc_khz
;
396 unsigned int time_offset
;
397 struct page
*time_page
;
403 struct gfn_to_hva_cache stime
;
404 struct kvm_steal_time steal
;
413 u32 tsc_catchup_mult
;
414 s8 tsc_catchup_shift
;
416 atomic_t nmi_queued
; /* unprocessed asynchronous NMIs */
417 unsigned nmi_pending
; /* NMI queued after currently running handler */
418 bool nmi_injected
; /* Trying to inject an NMI this entry */
420 struct mtrr_state_type mtrr_state
;
424 unsigned long db
[KVM_NR_DB_REGS
];
427 unsigned long eff_db
[KVM_NR_DB_REGS
];
434 /* Cache MMIO info */
439 /* used for guest single stepping over the given code position */
440 unsigned long singlestep_rip
;
442 /* fields used by HYPER-V emulation */
445 cpumask_var_t wbinvd_dirty_mask
;
449 gfn_t gfns
[roundup_pow_of_two(ASYNC_PF_PER_VCPU
)];
450 struct gfn_to_hva_cache data
;
458 unsigned int n_used_mmu_pages
;
459 unsigned int n_requested_mmu_pages
;
460 unsigned int n_max_mmu_pages
;
461 unsigned int indirect_shadow_pages
;
462 atomic_t invlpg_counter
;
463 struct hlist_head mmu_page_hash
[KVM_NUM_MMU_PAGES
];
465 * Hash table of struct kvm_mmu_page.
467 struct list_head active_mmu_pages
;
468 struct list_head assigned_dev_head
;
469 struct iommu_domain
*iommu_domain
;
471 struct kvm_pic
*vpic
;
472 struct kvm_ioapic
*vioapic
;
473 struct kvm_pit
*vpit
;
474 int vapics_in_nmi_mode
;
476 unsigned int tss_addr
;
477 struct page
*apic_access_page
;
481 struct page
*ept_identity_pagetable
;
482 bool ept_identity_pagetable_done
;
483 gpa_t ept_identity_map_addr
;
485 unsigned long irq_sources_bitmap
;
487 raw_spinlock_t tsc_write_lock
;
492 struct kvm_xen_hvm_config xen_hvm_config
;
494 /* fields used by HYPER-V emulation */
498 atomic_t reader_counter
;
500 #ifdef CONFIG_KVM_MMU_AUDIT
506 u32 mmu_shadow_zapped
;
514 u32 remote_tlb_flush
;
518 struct kvm_vcpu_stat
{
528 u32 irq_window_exits
;
529 u32 nmi_window_exits
;
532 u32 request_irq_exits
;
534 u32 host_state_reload
;
538 u32 insn_emulation_fail
;
544 struct x86_instruction_info
;
547 int (*cpu_has_kvm_support
)(void); /* __init */
548 int (*disabled_by_bios
)(void); /* __init */
549 int (*hardware_enable
)(void *dummy
);
550 void (*hardware_disable
)(void *dummy
);
551 void (*check_processor_compatibility
)(void *rtn
);
552 int (*hardware_setup
)(void); /* __init */
553 void (*hardware_unsetup
)(void); /* __exit */
554 bool (*cpu_has_accelerated_tpr
)(void);
555 void (*cpuid_update
)(struct kvm_vcpu
*vcpu
);
557 /* Create, but do not attach this VCPU */
558 struct kvm_vcpu
*(*vcpu_create
)(struct kvm
*kvm
, unsigned id
);
559 void (*vcpu_free
)(struct kvm_vcpu
*vcpu
);
560 int (*vcpu_reset
)(struct kvm_vcpu
*vcpu
);
562 void (*prepare_guest_switch
)(struct kvm_vcpu
*vcpu
);
563 void (*vcpu_load
)(struct kvm_vcpu
*vcpu
, int cpu
);
564 void (*vcpu_put
)(struct kvm_vcpu
*vcpu
);
566 void (*set_guest_debug
)(struct kvm_vcpu
*vcpu
,
567 struct kvm_guest_debug
*dbg
);
568 int (*get_msr
)(struct kvm_vcpu
*vcpu
, u32 msr_index
, u64
*pdata
);
569 int (*set_msr
)(struct kvm_vcpu
*vcpu
, u32 msr_index
, u64 data
);
570 u64 (*get_segment_base
)(struct kvm_vcpu
*vcpu
, int seg
);
571 void (*get_segment
)(struct kvm_vcpu
*vcpu
,
572 struct kvm_segment
*var
, int seg
);
573 int (*get_cpl
)(struct kvm_vcpu
*vcpu
);
574 void (*set_segment
)(struct kvm_vcpu
*vcpu
,
575 struct kvm_segment
*var
, int seg
);
576 void (*get_cs_db_l_bits
)(struct kvm_vcpu
*vcpu
, int *db
, int *l
);
577 void (*decache_cr0_guest_bits
)(struct kvm_vcpu
*vcpu
);
578 void (*decache_cr3
)(struct kvm_vcpu
*vcpu
);
579 void (*decache_cr4_guest_bits
)(struct kvm_vcpu
*vcpu
);
580 void (*set_cr0
)(struct kvm_vcpu
*vcpu
, unsigned long cr0
);
581 void (*set_cr3
)(struct kvm_vcpu
*vcpu
, unsigned long cr3
);
582 int (*set_cr4
)(struct kvm_vcpu
*vcpu
, unsigned long cr4
);
583 void (*set_efer
)(struct kvm_vcpu
*vcpu
, u64 efer
);
584 void (*get_idt
)(struct kvm_vcpu
*vcpu
, struct desc_ptr
*dt
);
585 void (*set_idt
)(struct kvm_vcpu
*vcpu
, struct desc_ptr
*dt
);
586 void (*get_gdt
)(struct kvm_vcpu
*vcpu
, struct desc_ptr
*dt
);
587 void (*set_gdt
)(struct kvm_vcpu
*vcpu
, struct desc_ptr
*dt
);
588 void (*set_dr7
)(struct kvm_vcpu
*vcpu
, unsigned long value
);
589 void (*cache_reg
)(struct kvm_vcpu
*vcpu
, enum kvm_reg reg
);
590 unsigned long (*get_rflags
)(struct kvm_vcpu
*vcpu
);
591 void (*set_rflags
)(struct kvm_vcpu
*vcpu
, unsigned long rflags
);
592 void (*fpu_activate
)(struct kvm_vcpu
*vcpu
);
593 void (*fpu_deactivate
)(struct kvm_vcpu
*vcpu
);
595 void (*tlb_flush
)(struct kvm_vcpu
*vcpu
);
597 void (*run
)(struct kvm_vcpu
*vcpu
);
598 int (*handle_exit
)(struct kvm_vcpu
*vcpu
);
599 void (*skip_emulated_instruction
)(struct kvm_vcpu
*vcpu
);
600 void (*set_interrupt_shadow
)(struct kvm_vcpu
*vcpu
, int mask
);
601 u32 (*get_interrupt_shadow
)(struct kvm_vcpu
*vcpu
, int mask
);
602 void (*patch_hypercall
)(struct kvm_vcpu
*vcpu
,
603 unsigned char *hypercall_addr
);
604 void (*set_irq
)(struct kvm_vcpu
*vcpu
);
605 void (*set_nmi
)(struct kvm_vcpu
*vcpu
);
606 void (*queue_exception
)(struct kvm_vcpu
*vcpu
, unsigned nr
,
607 bool has_error_code
, u32 error_code
,
609 void (*cancel_injection
)(struct kvm_vcpu
*vcpu
);
610 int (*interrupt_allowed
)(struct kvm_vcpu
*vcpu
);
611 int (*nmi_allowed
)(struct kvm_vcpu
*vcpu
);
612 bool (*get_nmi_mask
)(struct kvm_vcpu
*vcpu
);
613 void (*set_nmi_mask
)(struct kvm_vcpu
*vcpu
, bool masked
);
614 void (*enable_nmi_window
)(struct kvm_vcpu
*vcpu
);
615 void (*enable_irq_window
)(struct kvm_vcpu
*vcpu
);
616 void (*update_cr8_intercept
)(struct kvm_vcpu
*vcpu
, int tpr
, int irr
);
617 int (*set_tss_addr
)(struct kvm
*kvm
, unsigned int addr
);
618 int (*get_tdp_level
)(void);
619 u64 (*get_mt_mask
)(struct kvm_vcpu
*vcpu
, gfn_t gfn
, bool is_mmio
);
620 int (*get_lpage_level
)(void);
621 bool (*rdtscp_supported
)(void);
622 void (*adjust_tsc_offset
)(struct kvm_vcpu
*vcpu
, s64 adjustment
);
624 void (*set_tdp_cr3
)(struct kvm_vcpu
*vcpu
, unsigned long cr3
);
626 void (*set_supported_cpuid
)(u32 func
, struct kvm_cpuid_entry2
*entry
);
628 bool (*has_wbinvd_exit
)(void);
630 void (*set_tsc_khz
)(struct kvm_vcpu
*vcpu
, u32 user_tsc_khz
);
631 void (*write_tsc_offset
)(struct kvm_vcpu
*vcpu
, u64 offset
);
633 u64 (*compute_tsc_offset
)(struct kvm_vcpu
*vcpu
, u64 target_tsc
);
634 u64 (*read_l1_tsc
)(struct kvm_vcpu
*vcpu
);
636 void (*get_exit_info
)(struct kvm_vcpu
*vcpu
, u64
*info1
, u64
*info2
);
638 int (*check_intercept
)(struct kvm_vcpu
*vcpu
,
639 struct x86_instruction_info
*info
,
640 enum x86_intercept_stage stage
);
643 struct kvm_arch_async_pf
{
650 extern struct kvm_x86_ops
*kvm_x86_ops
;
652 int kvm_mmu_module_init(void);
653 void kvm_mmu_module_exit(void);
655 void kvm_mmu_destroy(struct kvm_vcpu
*vcpu
);
656 int kvm_mmu_create(struct kvm_vcpu
*vcpu
);
657 int kvm_mmu_setup(struct kvm_vcpu
*vcpu
);
658 void kvm_mmu_set_mask_ptes(u64 user_mask
, u64 accessed_mask
,
659 u64 dirty_mask
, u64 nx_mask
, u64 x_mask
);
661 int kvm_mmu_reset_context(struct kvm_vcpu
*vcpu
);
662 void kvm_mmu_slot_remove_write_access(struct kvm
*kvm
, int slot
);
663 void kvm_mmu_zap_all(struct kvm
*kvm
);
664 unsigned int kvm_mmu_calculate_mmu_pages(struct kvm
*kvm
);
665 void kvm_mmu_change_mmu_pages(struct kvm
*kvm
, unsigned int kvm_nr_mmu_pages
);
667 int load_pdptrs(struct kvm_vcpu
*vcpu
, struct kvm_mmu
*mmu
, unsigned long cr3
);
669 int emulator_write_phys(struct kvm_vcpu
*vcpu
, gpa_t gpa
,
670 const void *val
, int bytes
);
671 int kvm_pv_mmu_op(struct kvm_vcpu
*vcpu
, unsigned long bytes
,
672 gpa_t addr
, unsigned long *ret
);
673 u8
kvm_get_guest_memory_type(struct kvm_vcpu
*vcpu
, gfn_t gfn
);
675 extern bool tdp_enabled
;
677 u64
vcpu_tsc_khz(struct kvm_vcpu
*vcpu
);
679 /* control of guest tsc rate supported? */
680 extern bool kvm_has_tsc_control
;
681 /* minimum supported tsc_khz for guests */
682 extern u32 kvm_min_guest_tsc_khz
;
683 /* maximum supported tsc_khz for guests */
684 extern u32 kvm_max_guest_tsc_khz
;
686 enum emulation_result
{
687 EMULATE_DONE
, /* no further processing */
688 EMULATE_DO_MMIO
, /* kvm_run filled with mmio request */
689 EMULATE_FAIL
, /* can't emulate this instruction */
692 #define EMULTYPE_NO_DECODE (1 << 0)
693 #define EMULTYPE_TRAP_UD (1 << 1)
694 #define EMULTYPE_SKIP (1 << 2)
695 int x86_emulate_instruction(struct kvm_vcpu
*vcpu
, unsigned long cr2
,
696 int emulation_type
, void *insn
, int insn_len
);
698 static inline int emulate_instruction(struct kvm_vcpu
*vcpu
,
701 return x86_emulate_instruction(vcpu
, 0, emulation_type
, NULL
, 0);
704 void kvm_enable_efer_bits(u64
);
705 int kvm_get_msr(struct kvm_vcpu
*vcpu
, u32 msr_index
, u64
*data
);
706 int kvm_set_msr(struct kvm_vcpu
*vcpu
, u32 msr_index
, u64 data
);
708 struct x86_emulate_ctxt
;
710 int kvm_fast_pio_out(struct kvm_vcpu
*vcpu
, int size
, unsigned short port
);
711 void kvm_emulate_cpuid(struct kvm_vcpu
*vcpu
);
712 int kvm_emulate_halt(struct kvm_vcpu
*vcpu
);
713 int kvm_emulate_wbinvd(struct kvm_vcpu
*vcpu
);
715 void kvm_get_segment(struct kvm_vcpu
*vcpu
, struct kvm_segment
*var
, int seg
);
716 int kvm_load_segment_descriptor(struct kvm_vcpu
*vcpu
, u16 selector
, int seg
);
718 int kvm_task_switch(struct kvm_vcpu
*vcpu
, u16 tss_selector
, int reason
,
719 bool has_error_code
, u32 error_code
);
721 int kvm_set_cr0(struct kvm_vcpu
*vcpu
, unsigned long cr0
);
722 int kvm_set_cr3(struct kvm_vcpu
*vcpu
, unsigned long cr3
);
723 int kvm_set_cr4(struct kvm_vcpu
*vcpu
, unsigned long cr4
);
724 int kvm_set_cr8(struct kvm_vcpu
*vcpu
, unsigned long cr8
);
725 int kvm_set_dr(struct kvm_vcpu
*vcpu
, int dr
, unsigned long val
);
726 int kvm_get_dr(struct kvm_vcpu
*vcpu
, int dr
, unsigned long *val
);
727 unsigned long kvm_get_cr8(struct kvm_vcpu
*vcpu
);
728 void kvm_lmsw(struct kvm_vcpu
*vcpu
, unsigned long msw
);
729 void kvm_get_cs_db_l_bits(struct kvm_vcpu
*vcpu
, int *db
, int *l
);
730 int kvm_set_xcr(struct kvm_vcpu
*vcpu
, u32 index
, u64 xcr
);
732 int kvm_get_msr_common(struct kvm_vcpu
*vcpu
, u32 msr
, u64
*pdata
);
733 int kvm_set_msr_common(struct kvm_vcpu
*vcpu
, u32 msr
, u64 data
);
735 unsigned long kvm_get_rflags(struct kvm_vcpu
*vcpu
);
736 void kvm_set_rflags(struct kvm_vcpu
*vcpu
, unsigned long rflags
);
738 void kvm_queue_exception(struct kvm_vcpu
*vcpu
, unsigned nr
);
739 void kvm_queue_exception_e(struct kvm_vcpu
*vcpu
, unsigned nr
, u32 error_code
);
740 void kvm_requeue_exception(struct kvm_vcpu
*vcpu
, unsigned nr
);
741 void kvm_requeue_exception_e(struct kvm_vcpu
*vcpu
, unsigned nr
, u32 error_code
);
742 void kvm_inject_page_fault(struct kvm_vcpu
*vcpu
, struct x86_exception
*fault
);
743 int kvm_read_guest_page_mmu(struct kvm_vcpu
*vcpu
, struct kvm_mmu
*mmu
,
744 gfn_t gfn
, void *data
, int offset
, int len
,
746 void kvm_propagate_fault(struct kvm_vcpu
*vcpu
, struct x86_exception
*fault
);
747 bool kvm_require_cpl(struct kvm_vcpu
*vcpu
, int required_cpl
);
749 int kvm_pic_set_irq(void *opaque
, int irq
, int level
);
751 void kvm_inject_nmi(struct kvm_vcpu
*vcpu
);
753 int fx_init(struct kvm_vcpu
*vcpu
);
755 void kvm_mmu_flush_tlb(struct kvm_vcpu
*vcpu
);
756 void kvm_mmu_pte_write(struct kvm_vcpu
*vcpu
, gpa_t gpa
,
757 const u8
*new, int bytes
,
758 bool guest_initiated
);
759 int kvm_mmu_unprotect_page_virt(struct kvm_vcpu
*vcpu
, gva_t gva
);
760 void __kvm_mmu_free_some_pages(struct kvm_vcpu
*vcpu
);
761 int kvm_mmu_load(struct kvm_vcpu
*vcpu
);
762 void kvm_mmu_unload(struct kvm_vcpu
*vcpu
);
763 void kvm_mmu_sync_roots(struct kvm_vcpu
*vcpu
);
764 gpa_t
kvm_mmu_gva_to_gpa_read(struct kvm_vcpu
*vcpu
, gva_t gva
,
765 struct x86_exception
*exception
);
766 gpa_t
kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu
*vcpu
, gva_t gva
,
767 struct x86_exception
*exception
);
768 gpa_t
kvm_mmu_gva_to_gpa_write(struct kvm_vcpu
*vcpu
, gva_t gva
,
769 struct x86_exception
*exception
);
770 gpa_t
kvm_mmu_gva_to_gpa_system(struct kvm_vcpu
*vcpu
, gva_t gva
,
771 struct x86_exception
*exception
);
773 int kvm_emulate_hypercall(struct kvm_vcpu
*vcpu
);
775 int kvm_mmu_page_fault(struct kvm_vcpu
*vcpu
, gva_t gva
, u32 error_code
,
776 void *insn
, int insn_len
);
777 void kvm_mmu_invlpg(struct kvm_vcpu
*vcpu
, gva_t gva
);
779 void kvm_enable_tdp(void);
780 void kvm_disable_tdp(void);
782 int complete_pio(struct kvm_vcpu
*vcpu
);
783 bool kvm_check_iopl(struct kvm_vcpu
*vcpu
);
785 static inline struct kvm_mmu_page
*page_header(hpa_t shadow_page
)
787 struct page
*page
= pfn_to_page(shadow_page
>> PAGE_SHIFT
);
789 return (struct kvm_mmu_page
*)page_private(page
);
792 static inline u16
kvm_read_ldt(void)
795 asm("sldt %0" : "=g"(ldt
));
799 static inline void kvm_load_ldt(u16 sel
)
801 asm("lldt %0" : : "rm"(sel
));
805 static inline unsigned long read_msr(unsigned long msr
)
814 static inline u32
get_rdx_init_val(void)
816 return 0x600; /* P6 family */
819 static inline void kvm_inject_gp(struct kvm_vcpu
*vcpu
, u32 error_code
)
821 kvm_queue_exception_e(vcpu
, GP_VECTOR
, error_code
);
824 #define TSS_IOPB_BASE_OFFSET 0x66
825 #define TSS_BASE_SIZE 0x68
826 #define TSS_IOPB_SIZE (65536 / 8)
827 #define TSS_REDIRECTION_SIZE (256 / 8)
828 #define RMODE_TSS_SIZE \
829 (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
832 TASK_SWITCH_CALL
= 0,
833 TASK_SWITCH_IRET
= 1,
835 TASK_SWITCH_GATE
= 3,
838 #define HF_GIF_MASK (1 << 0)
839 #define HF_HIF_MASK (1 << 1)
840 #define HF_VINTR_MASK (1 << 2)
841 #define HF_NMI_MASK (1 << 3)
842 #define HF_IRET_MASK (1 << 4)
843 #define HF_GUEST_MASK (1 << 5) /* VCPU is in guest-mode */
846 * Hardware virtualization extension instructions may fault if a
847 * reboot turns off virtualization while processes are running.
848 * Trap the fault and ignore the instruction if that happens.
850 asmlinkage
void kvm_spurious_fault(void);
851 extern bool kvm_rebooting
;
853 #define ____kvm_handle_fault_on_reboot(insn, cleanup_insn) \
854 "666: " insn "\n\t" \
856 ".pushsection .fixup, \"ax\" \n" \
858 cleanup_insn "\n\t" \
859 "cmpb $0, kvm_rebooting \n\t" \
861 __ASM_SIZE(push) " $666b \n\t" \
862 "call kvm_spurious_fault \n\t" \
864 ".pushsection __ex_table, \"a\" \n\t" \
865 _ASM_PTR " 666b, 667b \n\t" \
868 #define __kvm_handle_fault_on_reboot(insn) \
869 ____kvm_handle_fault_on_reboot(insn, "")
871 #define KVM_ARCH_WANT_MMU_NOTIFIER
872 int kvm_unmap_hva(struct kvm
*kvm
, unsigned long hva
);
873 int kvm_age_hva(struct kvm
*kvm
, unsigned long hva
);
874 int kvm_test_age_hva(struct kvm
*kvm
, unsigned long hva
);
875 void kvm_set_spte_hva(struct kvm
*kvm
, unsigned long hva
, pte_t pte
);
876 int cpuid_maxphyaddr(struct kvm_vcpu
*vcpu
);
877 int kvm_cpu_has_interrupt(struct kvm_vcpu
*vcpu
);
878 int kvm_arch_interrupt_allowed(struct kvm_vcpu
*vcpu
);
879 int kvm_cpu_get_interrupt(struct kvm_vcpu
*v
);
881 void kvm_define_shared_msr(unsigned index
, u32 msr
);
882 void kvm_set_shared_msr(unsigned index
, u64 val
, u64 mask
);
884 bool kvm_is_linear_rip(struct kvm_vcpu
*vcpu
, unsigned long linear_rip
);
886 void kvm_arch_async_page_not_present(struct kvm_vcpu
*vcpu
,
887 struct kvm_async_pf
*work
);
888 void kvm_arch_async_page_present(struct kvm_vcpu
*vcpu
,
889 struct kvm_async_pf
*work
);
890 void kvm_arch_async_page_ready(struct kvm_vcpu
*vcpu
,
891 struct kvm_async_pf
*work
);
892 bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu
*vcpu
);
893 extern bool kvm_find_async_pf_gfn(struct kvm_vcpu
*vcpu
, gfn_t gfn
);
895 void kvm_complete_insn_gp(struct kvm_vcpu
*vcpu
, int err
);
897 #endif /* _ASM_X86_KVM_HOST_H */