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