OSDN Git Service

KVM: x86: Export svm/vmx exit code and vector code to userspace
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / arch / x86 / include / asm / kvm_host.h
1 /*
2  * Kernel-based Virtual Machine driver for Linux
3  *
4  * This header defines architecture specific interfaces, x86 version
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2.  See
7  * the COPYING file in the top-level directory.
8  *
9  */
10
11 #ifndef _ASM_X86_KVM_HOST_H
12 #define _ASM_X86_KVM_HOST_H
13
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>
19 #include <linux/irq_work.h>
20
21 #include <linux/kvm.h>
22 #include <linux/kvm_para.h>
23 #include <linux/kvm_types.h>
24 #include <linux/perf_event.h>
25
26 #include <asm/pvclock-abi.h>
27 #include <asm/desc.h>
28 #include <asm/mtrr.h>
29 #include <asm/msr-index.h>
30 #include <asm/asm.h>
31
32 #define KVM_MAX_VCPUS 254
33 #define KVM_SOFT_MAX_VCPUS 160
34 #define KVM_MEMORY_SLOTS 32
35 /* memory slots that does not exposed to userspace */
36 #define KVM_PRIVATE_MEM_SLOTS 4
37 #define KVM_MEM_SLOTS_NUM (KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
38
39 #define KVM_MMIO_SIZE 16
40
41 #define KVM_PIO_PAGE_OFFSET 1
42 #define KVM_COALESCED_MMIO_PAGE_OFFSET 2
43
44 #define CR0_RESERVED_BITS                                               \
45         (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
46                           | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
47                           | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
48
49 #define CR3_PAE_RESERVED_BITS ((X86_CR3_PWT | X86_CR3_PCD) - 1)
50 #define CR3_NONPAE_RESERVED_BITS ((PAGE_SIZE-1) & ~(X86_CR3_PWT | X86_CR3_PCD))
51 #define CR3_PCID_ENABLED_RESERVED_BITS 0xFFFFFF0000000000ULL
52 #define CR3_L_MODE_RESERVED_BITS (CR3_NONPAE_RESERVED_BITS |    \
53                                   0xFFFFFF0000000000ULL)
54 #define CR4_RESERVED_BITS                                               \
55         (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
56                           | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE     \
57                           | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR | X86_CR4_PCIDE \
58                           | X86_CR4_OSXSAVE | X86_CR4_SMEP | X86_CR4_RDWRGSFS \
59                           | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE))
60
61 #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR)
62
63
64
65 #define INVALID_PAGE (~(hpa_t)0)
66 #define VALID_PAGE(x) ((x) != INVALID_PAGE)
67
68 #define UNMAPPED_GVA (~(gpa_t)0)
69
70 /* KVM Hugepage definitions for x86 */
71 #define KVM_NR_PAGE_SIZES       3
72 #define KVM_HPAGE_GFN_SHIFT(x)  (((x) - 1) * 9)
73 #define KVM_HPAGE_SHIFT(x)      (PAGE_SHIFT + KVM_HPAGE_GFN_SHIFT(x))
74 #define KVM_HPAGE_SIZE(x)       (1UL << KVM_HPAGE_SHIFT(x))
75 #define KVM_HPAGE_MASK(x)       (~(KVM_HPAGE_SIZE(x) - 1))
76 #define KVM_PAGES_PER_HPAGE(x)  (KVM_HPAGE_SIZE(x) / PAGE_SIZE)
77
78 #define SELECTOR_TI_MASK (1 << 2)
79 #define SELECTOR_RPL_MASK 0x03
80
81 #define IOPL_SHIFT 12
82
83 #define KVM_PERMILLE_MMU_PAGES 20
84 #define KVM_MIN_ALLOC_MMU_PAGES 64
85 #define KVM_MMU_HASH_SHIFT 10
86 #define KVM_NUM_MMU_PAGES (1 << KVM_MMU_HASH_SHIFT)
87 #define KVM_MIN_FREE_MMU_PAGES 5
88 #define KVM_REFILL_PAGES 25
89 #define KVM_MAX_CPUID_ENTRIES 80
90 #define KVM_NR_FIXED_MTRR_REGION 88
91 #define KVM_NR_VAR_MTRR 8
92
93 #define ASYNC_PF_PER_VCPU 64
94
95 extern raw_spinlock_t kvm_lock;
96 extern struct list_head vm_list;
97
98 struct kvm_vcpu;
99 struct kvm;
100 struct kvm_async_pf;
101
102 enum kvm_reg {
103         VCPU_REGS_RAX = 0,
104         VCPU_REGS_RCX = 1,
105         VCPU_REGS_RDX = 2,
106         VCPU_REGS_RBX = 3,
107         VCPU_REGS_RSP = 4,
108         VCPU_REGS_RBP = 5,
109         VCPU_REGS_RSI = 6,
110         VCPU_REGS_RDI = 7,
111 #ifdef CONFIG_X86_64
112         VCPU_REGS_R8 = 8,
113         VCPU_REGS_R9 = 9,
114         VCPU_REGS_R10 = 10,
115         VCPU_REGS_R11 = 11,
116         VCPU_REGS_R12 = 12,
117         VCPU_REGS_R13 = 13,
118         VCPU_REGS_R14 = 14,
119         VCPU_REGS_R15 = 15,
120 #endif
121         VCPU_REGS_RIP,
122         NR_VCPU_REGS
123 };
124
125 enum kvm_reg_ex {
126         VCPU_EXREG_PDPTR = NR_VCPU_REGS,
127         VCPU_EXREG_CR3,
128         VCPU_EXREG_RFLAGS,
129         VCPU_EXREG_CPL,
130         VCPU_EXREG_SEGMENTS,
131 };
132
133 enum {
134         VCPU_SREG_ES,
135         VCPU_SREG_CS,
136         VCPU_SREG_SS,
137         VCPU_SREG_DS,
138         VCPU_SREG_FS,
139         VCPU_SREG_GS,
140         VCPU_SREG_TR,
141         VCPU_SREG_LDTR,
142 };
143
144 #include <asm/kvm_emulate.h>
145
146 #define KVM_NR_MEM_OBJS 40
147
148 #define KVM_NR_DB_REGS  4
149
150 #define DR6_BD          (1 << 13)
151 #define DR6_BS          (1 << 14)
152 #define DR6_FIXED_1     0xffff0ff0
153 #define DR6_VOLATILE    0x0000e00f
154
155 #define DR7_BP_EN_MASK  0x000000ff
156 #define DR7_GE          (1 << 9)
157 #define DR7_GD          (1 << 13)
158 #define DR7_FIXED_1     0x00000400
159 #define DR7_VOLATILE    0xffff23ff
160
161 /* apic attention bits */
162 #define KVM_APIC_CHECK_VAPIC    0
163 /*
164  * The following bit is set with PV-EOI, unset on EOI.
165  * We detect PV-EOI changes by guest by comparing
166  * this bit with PV-EOI in guest memory.
167  * See the implementation in apic_update_pv_eoi.
168  */
169 #define KVM_APIC_PV_EOI_PENDING 1
170
171 /*
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.
174  */
175 struct kvm_mmu_memory_cache {
176         int nobjs;
177         void *objects[KVM_NR_MEM_OBJS];
178 };
179
180 /*
181  * kvm_mmu_page_role, below, is defined as:
182  *
183  *   bits 0:3 - total guest paging levels (2-4, or zero for real mode)
184  *   bits 4:7 - page table level for this shadow (1-4)
185  *   bits 8:9 - page table quadrant for 2-level guests
186  *   bit   16 - direct mapping of virtual to physical mapping at gfn
187  *              used for real mode and two-dimensional paging
188  *   bits 17:19 - common access permissions for all ptes in this shadow page
189  */
190 union kvm_mmu_page_role {
191         unsigned word;
192         struct {
193                 unsigned level:4;
194                 unsigned cr4_pae:1;
195                 unsigned quadrant:2;
196                 unsigned pad_for_nice_hex_output:6;
197                 unsigned direct:1;
198                 unsigned access:3;
199                 unsigned invalid:1;
200                 unsigned nxe:1;
201                 unsigned cr0_wp:1;
202                 unsigned smep_andnot_wp:1;
203         };
204 };
205
206 struct kvm_mmu_page {
207         struct list_head link;
208         struct hlist_node hash_link;
209
210         /*
211          * The following two entries are used to key the shadow page in the
212          * hash table.
213          */
214         gfn_t gfn;
215         union kvm_mmu_page_role role;
216
217         u64 *spt;
218         /* hold the gfn of each spte inside spt */
219         gfn_t *gfns;
220         /*
221          * One bit set per slot which has memory
222          * in this shadow page.
223          */
224         DECLARE_BITMAP(slot_bitmap, KVM_MEM_SLOTS_NUM);
225         bool unsync;
226         int root_count;          /* Currently serving as active root */
227         unsigned int unsync_children;
228         unsigned long parent_ptes;      /* Reverse mapping for parent_pte */
229         DECLARE_BITMAP(unsync_child_bitmap, 512);
230
231 #ifdef CONFIG_X86_32
232         int clear_spte_count;
233 #endif
234
235         int write_flooding_count;
236 };
237
238 struct kvm_pio_request {
239         unsigned long count;
240         int in;
241         int port;
242         int size;
243 };
244
245 /*
246  * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
247  * 32-bit).  The kvm_mmu structure abstracts the details of the current mmu
248  * mode.
249  */
250 struct kvm_mmu {
251         void (*new_cr3)(struct kvm_vcpu *vcpu);
252         void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long root);
253         unsigned long (*get_cr3)(struct kvm_vcpu *vcpu);
254         u64 (*get_pdptr)(struct kvm_vcpu *vcpu, int index);
255         int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err,
256                           bool prefault);
257         void (*inject_page_fault)(struct kvm_vcpu *vcpu,
258                                   struct x86_exception *fault);
259         void (*free)(struct kvm_vcpu *vcpu);
260         gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva, u32 access,
261                             struct x86_exception *exception);
262         gpa_t (*translate_gpa)(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access);
263         int (*sync_page)(struct kvm_vcpu *vcpu,
264                          struct kvm_mmu_page *sp);
265         void (*invlpg)(struct kvm_vcpu *vcpu, gva_t gva);
266         void (*update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
267                            u64 *spte, const void *pte);
268         hpa_t root_hpa;
269         int root_level;
270         int shadow_root_level;
271         union kvm_mmu_page_role base_role;
272         bool direct_map;
273
274         u64 *pae_root;
275         u64 *lm_root;
276         u64 rsvd_bits_mask[2][4];
277
278         bool nx;
279
280         u64 pdptrs[4]; /* pae */
281 };
282
283 enum pmc_type {
284         KVM_PMC_GP = 0,
285         KVM_PMC_FIXED,
286 };
287
288 struct kvm_pmc {
289         enum pmc_type type;
290         u8 idx;
291         u64 counter;
292         u64 eventsel;
293         struct perf_event *perf_event;
294         struct kvm_vcpu *vcpu;
295 };
296
297 struct kvm_pmu {
298         unsigned nr_arch_gp_counters;
299         unsigned nr_arch_fixed_counters;
300         unsigned available_event_types;
301         u64 fixed_ctr_ctrl;
302         u64 global_ctrl;
303         u64 global_status;
304         u64 global_ovf_ctrl;
305         u64 counter_bitmask[2];
306         u64 global_ctrl_mask;
307         u8 version;
308         struct kvm_pmc gp_counters[INTEL_PMC_MAX_GENERIC];
309         struct kvm_pmc fixed_counters[INTEL_PMC_MAX_FIXED];
310         struct irq_work irq_work;
311         u64 reprogram_pmi;
312 };
313
314 struct kvm_vcpu_arch {
315         /*
316          * rip and regs accesses must go through
317          * kvm_{register,rip}_{read,write} functions.
318          */
319         unsigned long regs[NR_VCPU_REGS];
320         u32 regs_avail;
321         u32 regs_dirty;
322
323         unsigned long cr0;
324         unsigned long cr0_guest_owned_bits;
325         unsigned long cr2;
326         unsigned long cr3;
327         unsigned long cr4;
328         unsigned long cr4_guest_owned_bits;
329         unsigned long cr8;
330         u32 hflags;
331         u64 efer;
332         u64 apic_base;
333         struct kvm_lapic *apic;    /* kernel irqchip context */
334         unsigned long apic_attention;
335         int32_t apic_arb_prio;
336         int mp_state;
337         int sipi_vector;
338         u64 ia32_misc_enable_msr;
339         bool tpr_access_reporting;
340
341         /*
342          * Paging state of the vcpu
343          *
344          * If the vcpu runs in guest mode with two level paging this still saves
345          * the paging mode of the l1 guest. This context is always used to
346          * handle faults.
347          */
348         struct kvm_mmu mmu;
349
350         /*
351          * Paging state of an L2 guest (used for nested npt)
352          *
353          * This context will save all necessary information to walk page tables
354          * of the an L2 guest. This context is only initialized for page table
355          * walking and not for faulting since we never handle l2 page faults on
356          * the host.
357          */
358         struct kvm_mmu nested_mmu;
359
360         /*
361          * Pointer to the mmu context currently used for
362          * gva_to_gpa translations.
363          */
364         struct kvm_mmu *walk_mmu;
365
366         struct kvm_mmu_memory_cache mmu_pte_list_desc_cache;
367         struct kvm_mmu_memory_cache mmu_page_cache;
368         struct kvm_mmu_memory_cache mmu_page_header_cache;
369
370         struct fpu guest_fpu;
371         u64 xcr0;
372
373         struct kvm_pio_request pio;
374         void *pio_data;
375
376         u8 event_exit_inst_len;
377
378         struct kvm_queued_exception {
379                 bool pending;
380                 bool has_error_code;
381                 bool reinject;
382                 u8 nr;
383                 u32 error_code;
384         } exception;
385
386         struct kvm_queued_interrupt {
387                 bool pending;
388                 bool soft;
389                 u8 nr;
390         } interrupt;
391
392         int halt_request; /* real mode on Intel only */
393
394         int cpuid_nent;
395         struct kvm_cpuid_entry2 cpuid_entries[KVM_MAX_CPUID_ENTRIES];
396         /* emulate context */
397
398         struct x86_emulate_ctxt emulate_ctxt;
399         bool emulate_regs_need_sync_to_vcpu;
400         bool emulate_regs_need_sync_from_vcpu;
401
402         gpa_t time;
403         struct pvclock_vcpu_time_info hv_clock;
404         unsigned int hw_tsc_khz;
405         unsigned int time_offset;
406         struct page *time_page;
407
408         struct {
409                 u64 msr_val;
410                 u64 last_steal;
411                 u64 accum_steal;
412                 struct gfn_to_hva_cache stime;
413                 struct kvm_steal_time steal;
414         } st;
415
416         u64 last_guest_tsc;
417         u64 last_kernel_ns;
418         u64 last_host_tsc;
419         u64 tsc_offset_adjustment;
420         u64 this_tsc_nsec;
421         u64 this_tsc_write;
422         u8  this_tsc_generation;
423         bool tsc_catchup;
424         bool tsc_always_catchup;
425         s8 virtual_tsc_shift;
426         u32 virtual_tsc_mult;
427         u32 virtual_tsc_khz;
428
429         atomic_t nmi_queued;  /* unprocessed asynchronous NMIs */
430         unsigned nmi_pending; /* NMI queued after currently running handler */
431         bool nmi_injected;    /* Trying to inject an NMI this entry */
432
433         struct mtrr_state_type mtrr_state;
434         u32 pat;
435
436         int switch_db_regs;
437         unsigned long db[KVM_NR_DB_REGS];
438         unsigned long dr6;
439         unsigned long dr7;
440         unsigned long eff_db[KVM_NR_DB_REGS];
441
442         u64 mcg_cap;
443         u64 mcg_status;
444         u64 mcg_ctl;
445         u64 *mce_banks;
446
447         /* Cache MMIO info */
448         u64 mmio_gva;
449         unsigned access;
450         gfn_t mmio_gfn;
451
452         struct kvm_pmu pmu;
453
454         /* used for guest single stepping over the given code position */
455         unsigned long singlestep_rip;
456
457         /* fields used by HYPER-V emulation */
458         u64 hv_vapic;
459
460         cpumask_var_t wbinvd_dirty_mask;
461
462         unsigned long last_retry_eip;
463         unsigned long last_retry_addr;
464
465         struct {
466                 bool halted;
467                 gfn_t gfns[roundup_pow_of_two(ASYNC_PF_PER_VCPU)];
468                 struct gfn_to_hva_cache data;
469                 u64 msr_val;
470                 u32 id;
471                 bool send_user_only;
472         } apf;
473
474         /* OSVW MSRs (AMD only) */
475         struct {
476                 u64 length;
477                 u64 status;
478         } osvw;
479
480         struct {
481                 u64 msr_val;
482                 struct gfn_to_hva_cache data;
483         } pv_eoi;
484 };
485
486 struct kvm_lpage_info {
487         unsigned long rmap_pde;
488         int write_count;
489 };
490
491 struct kvm_arch_memory_slot {
492         struct kvm_lpage_info *lpage_info[KVM_NR_PAGE_SIZES - 1];
493 };
494
495 struct kvm_arch {
496         unsigned int n_used_mmu_pages;
497         unsigned int n_requested_mmu_pages;
498         unsigned int n_max_mmu_pages;
499         unsigned int indirect_shadow_pages;
500         struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
501         /*
502          * Hash table of struct kvm_mmu_page.
503          */
504         struct list_head active_mmu_pages;
505         struct list_head assigned_dev_head;
506         struct iommu_domain *iommu_domain;
507         int iommu_flags;
508         struct kvm_pic *vpic;
509         struct kvm_ioapic *vioapic;
510         struct kvm_pit *vpit;
511         int vapics_in_nmi_mode;
512
513         unsigned int tss_addr;
514         struct page *apic_access_page;
515
516         gpa_t wall_clock;
517
518         struct page *ept_identity_pagetable;
519         bool ept_identity_pagetable_done;
520         gpa_t ept_identity_map_addr;
521
522         unsigned long irq_sources_bitmap;
523         s64 kvmclock_offset;
524         raw_spinlock_t tsc_write_lock;
525         u64 last_tsc_nsec;
526         u64 last_tsc_write;
527         u32 last_tsc_khz;
528         u64 cur_tsc_nsec;
529         u64 cur_tsc_write;
530         u64 cur_tsc_offset;
531         u8  cur_tsc_generation;
532
533         struct kvm_xen_hvm_config xen_hvm_config;
534
535         /* fields used by HYPER-V emulation */
536         u64 hv_guest_os_id;
537         u64 hv_hypercall;
538
539         #ifdef CONFIG_KVM_MMU_AUDIT
540         int audit_point;
541         #endif
542 };
543
544 struct kvm_vm_stat {
545         u32 mmu_shadow_zapped;
546         u32 mmu_pte_write;
547         u32 mmu_pte_updated;
548         u32 mmu_pde_zapped;
549         u32 mmu_flooded;
550         u32 mmu_recycled;
551         u32 mmu_cache_miss;
552         u32 mmu_unsync;
553         u32 remote_tlb_flush;
554         u32 lpages;
555 };
556
557 struct kvm_vcpu_stat {
558         u32 pf_fixed;
559         u32 pf_guest;
560         u32 tlb_flush;
561         u32 invlpg;
562
563         u32 exits;
564         u32 io_exits;
565         u32 mmio_exits;
566         u32 signal_exits;
567         u32 irq_window_exits;
568         u32 nmi_window_exits;
569         u32 halt_exits;
570         u32 halt_wakeup;
571         u32 request_irq_exits;
572         u32 irq_exits;
573         u32 host_state_reload;
574         u32 efer_reload;
575         u32 fpu_reload;
576         u32 insn_emulation;
577         u32 insn_emulation_fail;
578         u32 hypercalls;
579         u32 irq_injections;
580         u32 nmi_injections;
581 };
582
583 struct x86_instruction_info;
584
585 struct kvm_x86_ops {
586         int (*cpu_has_kvm_support)(void);          /* __init */
587         int (*disabled_by_bios)(void);             /* __init */
588         int (*hardware_enable)(void *dummy);
589         void (*hardware_disable)(void *dummy);
590         void (*check_processor_compatibility)(void *rtn);
591         int (*hardware_setup)(void);               /* __init */
592         void (*hardware_unsetup)(void);            /* __exit */
593         bool (*cpu_has_accelerated_tpr)(void);
594         void (*cpuid_update)(struct kvm_vcpu *vcpu);
595
596         /* Create, but do not attach this VCPU */
597         struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id);
598         void (*vcpu_free)(struct kvm_vcpu *vcpu);
599         int (*vcpu_reset)(struct kvm_vcpu *vcpu);
600
601         void (*prepare_guest_switch)(struct kvm_vcpu *vcpu);
602         void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
603         void (*vcpu_put)(struct kvm_vcpu *vcpu);
604
605         void (*set_guest_debug)(struct kvm_vcpu *vcpu,
606                                 struct kvm_guest_debug *dbg);
607         int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
608         int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
609         u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
610         void (*get_segment)(struct kvm_vcpu *vcpu,
611                             struct kvm_segment *var, int seg);
612         int (*get_cpl)(struct kvm_vcpu *vcpu);
613         void (*set_segment)(struct kvm_vcpu *vcpu,
614                             struct kvm_segment *var, int seg);
615         void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
616         void (*decache_cr0_guest_bits)(struct kvm_vcpu *vcpu);
617         void (*decache_cr3)(struct kvm_vcpu *vcpu);
618         void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu);
619         void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
620         void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
621         int (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
622         void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
623         void (*get_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
624         void (*set_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
625         void (*get_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
626         void (*set_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
627         void (*set_dr7)(struct kvm_vcpu *vcpu, unsigned long value);
628         void (*cache_reg)(struct kvm_vcpu *vcpu, enum kvm_reg reg);
629         unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
630         void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
631         void (*fpu_activate)(struct kvm_vcpu *vcpu);
632         void (*fpu_deactivate)(struct kvm_vcpu *vcpu);
633
634         void (*tlb_flush)(struct kvm_vcpu *vcpu);
635
636         void (*run)(struct kvm_vcpu *vcpu);
637         int (*handle_exit)(struct kvm_vcpu *vcpu);
638         void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
639         void (*set_interrupt_shadow)(struct kvm_vcpu *vcpu, int mask);
640         u32 (*get_interrupt_shadow)(struct kvm_vcpu *vcpu, int mask);
641         void (*patch_hypercall)(struct kvm_vcpu *vcpu,
642                                 unsigned char *hypercall_addr);
643         void (*set_irq)(struct kvm_vcpu *vcpu);
644         void (*set_nmi)(struct kvm_vcpu *vcpu);
645         void (*queue_exception)(struct kvm_vcpu *vcpu, unsigned nr,
646                                 bool has_error_code, u32 error_code,
647                                 bool reinject);
648         void (*cancel_injection)(struct kvm_vcpu *vcpu);
649         int (*interrupt_allowed)(struct kvm_vcpu *vcpu);
650         int (*nmi_allowed)(struct kvm_vcpu *vcpu);
651         bool (*get_nmi_mask)(struct kvm_vcpu *vcpu);
652         void (*set_nmi_mask)(struct kvm_vcpu *vcpu, bool masked);
653         void (*enable_nmi_window)(struct kvm_vcpu *vcpu);
654         void (*enable_irq_window)(struct kvm_vcpu *vcpu);
655         void (*update_cr8_intercept)(struct kvm_vcpu *vcpu, int tpr, int irr);
656         int (*set_tss_addr)(struct kvm *kvm, unsigned int addr);
657         int (*get_tdp_level)(void);
658         u64 (*get_mt_mask)(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio);
659         int (*get_lpage_level)(void);
660         bool (*rdtscp_supported)(void);
661         bool (*invpcid_supported)(void);
662         void (*adjust_tsc_offset)(struct kvm_vcpu *vcpu, s64 adjustment, bool host);
663
664         void (*set_tdp_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
665
666         void (*set_supported_cpuid)(u32 func, struct kvm_cpuid_entry2 *entry);
667
668         bool (*has_wbinvd_exit)(void);
669
670         void (*set_tsc_khz)(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale);
671         void (*write_tsc_offset)(struct kvm_vcpu *vcpu, u64 offset);
672
673         u64 (*compute_tsc_offset)(struct kvm_vcpu *vcpu, u64 target_tsc);
674         u64 (*read_l1_tsc)(struct kvm_vcpu *vcpu);
675
676         void (*get_exit_info)(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2);
677
678         int (*check_intercept)(struct kvm_vcpu *vcpu,
679                                struct x86_instruction_info *info,
680                                enum x86_intercept_stage stage);
681 };
682
683 struct kvm_arch_async_pf {
684         u32 token;
685         gfn_t gfn;
686         unsigned long cr3;
687         bool direct_map;
688 };
689
690 extern struct kvm_x86_ops *kvm_x86_ops;
691
692 static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
693                                            s64 adjustment)
694 {
695         kvm_x86_ops->adjust_tsc_offset(vcpu, adjustment, false);
696 }
697
698 static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
699 {
700         kvm_x86_ops->adjust_tsc_offset(vcpu, adjustment, true);
701 }
702
703 int kvm_mmu_module_init(void);
704 void kvm_mmu_module_exit(void);
705
706 void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
707 int kvm_mmu_create(struct kvm_vcpu *vcpu);
708 int kvm_mmu_setup(struct kvm_vcpu *vcpu);
709 void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
710                 u64 dirty_mask, u64 nx_mask, u64 x_mask);
711
712 int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
713 void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot);
714 void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
715                                      struct kvm_memory_slot *slot,
716                                      gfn_t gfn_offset, unsigned long mask);
717 void kvm_mmu_zap_all(struct kvm *kvm);
718 unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm);
719 void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages);
720
721 int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3);
722
723 int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
724                           const void *val, int bytes);
725 u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn);
726
727 extern bool tdp_enabled;
728
729 u64 vcpu_tsc_khz(struct kvm_vcpu *vcpu);
730
731 /* control of guest tsc rate supported? */
732 extern bool kvm_has_tsc_control;
733 /* minimum supported tsc_khz for guests */
734 extern u32  kvm_min_guest_tsc_khz;
735 /* maximum supported tsc_khz for guests */
736 extern u32  kvm_max_guest_tsc_khz;
737
738 enum emulation_result {
739         EMULATE_DONE,       /* no further processing */
740         EMULATE_DO_MMIO,      /* kvm_run filled with mmio request */
741         EMULATE_FAIL,         /* can't emulate this instruction */
742 };
743
744 #define EMULTYPE_NO_DECODE          (1 << 0)
745 #define EMULTYPE_TRAP_UD            (1 << 1)
746 #define EMULTYPE_SKIP               (1 << 2)
747 #define EMULTYPE_RETRY              (1 << 3)
748 int x86_emulate_instruction(struct kvm_vcpu *vcpu, unsigned long cr2,
749                             int emulation_type, void *insn, int insn_len);
750
751 static inline int emulate_instruction(struct kvm_vcpu *vcpu,
752                         int emulation_type)
753 {
754         return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
755 }
756
757 void kvm_enable_efer_bits(u64);
758 int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *data);
759 int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
760
761 struct x86_emulate_ctxt;
762
763 int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port);
764 void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
765 int kvm_emulate_halt(struct kvm_vcpu *vcpu);
766 int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu);
767
768 void kvm_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg);
769 int kvm_load_segment_descriptor(struct kvm_vcpu *vcpu, u16 selector, int seg);
770
771 int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
772                     int reason, bool has_error_code, u32 error_code);
773
774 int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
775 int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
776 int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
777 int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8);
778 int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val);
779 int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val);
780 unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu);
781 void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
782 void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l);
783 int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr);
784
785 int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
786 int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
787
788 unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu);
789 void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
790 bool kvm_rdpmc(struct kvm_vcpu *vcpu);
791
792 void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr);
793 void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code);
794 void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr);
795 void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code);
796 void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault);
797 int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
798                             gfn_t gfn, void *data, int offset, int len,
799                             u32 access);
800 void kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault);
801 bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl);
802
803 static inline int __kvm_irq_line_state(unsigned long *irq_state,
804                                        int irq_source_id, int level)
805 {
806         /* Logical OR for level trig interrupt */
807         if (level)
808                 __set_bit(irq_source_id, irq_state);
809         else
810                 __clear_bit(irq_source_id, irq_state);
811
812         return !!(*irq_state);
813 }
814
815 int kvm_pic_set_irq(struct kvm_pic *pic, int irq, int irq_source_id, int level);
816 void kvm_pic_clear_all(struct kvm_pic *pic, int irq_source_id);
817
818 void kvm_inject_nmi(struct kvm_vcpu *vcpu);
819
820 int fx_init(struct kvm_vcpu *vcpu);
821
822 void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu);
823 void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
824                        const u8 *new, int bytes);
825 int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn);
826 int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
827 void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
828 int kvm_mmu_load(struct kvm_vcpu *vcpu);
829 void kvm_mmu_unload(struct kvm_vcpu *vcpu);
830 void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu);
831 gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access);
832 gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
833                               struct x86_exception *exception);
834 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
835                                struct x86_exception *exception);
836 gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
837                                struct x86_exception *exception);
838 gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
839                                 struct x86_exception *exception);
840
841 int kvm_emulate_hypercall(struct kvm_vcpu *vcpu);
842
843 int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code,
844                        void *insn, int insn_len);
845 void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva);
846
847 void kvm_enable_tdp(void);
848 void kvm_disable_tdp(void);
849
850 int complete_pio(struct kvm_vcpu *vcpu);
851 bool kvm_check_iopl(struct kvm_vcpu *vcpu);
852
853 static inline gpa_t translate_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access)
854 {
855         return gpa;
856 }
857
858 static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
859 {
860         struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
861
862         return (struct kvm_mmu_page *)page_private(page);
863 }
864
865 static inline u16 kvm_read_ldt(void)
866 {
867         u16 ldt;
868         asm("sldt %0" : "=g"(ldt));
869         return ldt;
870 }
871
872 static inline void kvm_load_ldt(u16 sel)
873 {
874         asm("lldt %0" : : "rm"(sel));
875 }
876
877 #ifdef CONFIG_X86_64
878 static inline unsigned long read_msr(unsigned long msr)
879 {
880         u64 value;
881
882         rdmsrl(msr, value);
883         return value;
884 }
885 #endif
886
887 static inline u32 get_rdx_init_val(void)
888 {
889         return 0x600; /* P6 family */
890 }
891
892 static inline void kvm_inject_gp(struct kvm_vcpu *vcpu, u32 error_code)
893 {
894         kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
895 }
896
897 #define TSS_IOPB_BASE_OFFSET 0x66
898 #define TSS_BASE_SIZE 0x68
899 #define TSS_IOPB_SIZE (65536 / 8)
900 #define TSS_REDIRECTION_SIZE (256 / 8)
901 #define RMODE_TSS_SIZE                                                  \
902         (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
903
904 enum {
905         TASK_SWITCH_CALL = 0,
906         TASK_SWITCH_IRET = 1,
907         TASK_SWITCH_JMP = 2,
908         TASK_SWITCH_GATE = 3,
909 };
910
911 #define HF_GIF_MASK             (1 << 0)
912 #define HF_HIF_MASK             (1 << 1)
913 #define HF_VINTR_MASK           (1 << 2)
914 #define HF_NMI_MASK             (1 << 3)
915 #define HF_IRET_MASK            (1 << 4)
916 #define HF_GUEST_MASK           (1 << 5) /* VCPU is in guest-mode */
917
918 /*
919  * Hardware virtualization extension instructions may fault if a
920  * reboot turns off virtualization while processes are running.
921  * Trap the fault and ignore the instruction if that happens.
922  */
923 asmlinkage void kvm_spurious_fault(void);
924 extern bool kvm_rebooting;
925
926 #define ____kvm_handle_fault_on_reboot(insn, cleanup_insn)      \
927         "666: " insn "\n\t" \
928         "668: \n\t"                           \
929         ".pushsection .fixup, \"ax\" \n" \
930         "667: \n\t" \
931         cleanup_insn "\n\t"                   \
932         "cmpb $0, kvm_rebooting \n\t"         \
933         "jne 668b \n\t"                       \
934         __ASM_SIZE(push) " $666b \n\t"        \
935         "call kvm_spurious_fault \n\t"        \
936         ".popsection \n\t" \
937         _ASM_EXTABLE(666b, 667b)
938
939 #define __kvm_handle_fault_on_reboot(insn)              \
940         ____kvm_handle_fault_on_reboot(insn, "")
941
942 #define KVM_ARCH_WANT_MMU_NOTIFIER
943 int kvm_unmap_hva(struct kvm *kvm, unsigned long hva);
944 int kvm_age_hva(struct kvm *kvm, unsigned long hva);
945 int kvm_test_age_hva(struct kvm *kvm, unsigned long hva);
946 void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte);
947 int cpuid_maxphyaddr(struct kvm_vcpu *vcpu);
948 int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu);
949 int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu);
950 int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
951
952 void kvm_define_shared_msr(unsigned index, u32 msr);
953 void kvm_set_shared_msr(unsigned index, u64 val, u64 mask);
954
955 bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip);
956
957 void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
958                                      struct kvm_async_pf *work);
959 void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
960                                  struct kvm_async_pf *work);
961 void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
962                                struct kvm_async_pf *work);
963 bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu);
964 extern bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn);
965
966 void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err);
967
968 int kvm_is_in_guest(void);
969
970 void kvm_pmu_init(struct kvm_vcpu *vcpu);
971 void kvm_pmu_destroy(struct kvm_vcpu *vcpu);
972 void kvm_pmu_reset(struct kvm_vcpu *vcpu);
973 void kvm_pmu_cpuid_update(struct kvm_vcpu *vcpu);
974 bool kvm_pmu_msr(struct kvm_vcpu *vcpu, u32 msr);
975 int kvm_pmu_get_msr(struct kvm_vcpu *vcpu, u32 msr, u64 *data);
976 int kvm_pmu_set_msr(struct kvm_vcpu *vcpu, u32 msr, u64 data);
977 int kvm_pmu_read_pmc(struct kvm_vcpu *vcpu, unsigned pmc, u64 *data);
978 void kvm_handle_pmu_event(struct kvm_vcpu *vcpu);
979 void kvm_deliver_pmi(struct kvm_vcpu *vcpu);
980
981 #endif /* _ASM_X86_KVM_HOST_H */