]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/x86/include/asm/kvm_host.h
KVM: x86: bump KVM_MAX_VCPU_ID to 1023
[mirror_ubuntu-artful-kernel.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 #include <linux/pvclock_gtod.h>
26 #include <linux/clocksource.h>
27 #include <linux/irqbypass.h>
28 #include <linux/hyperv.h>
29
30 #include <asm/pvclock-abi.h>
31 #include <asm/desc.h>
32 #include <asm/mtrr.h>
33 #include <asm/msr-index.h>
34 #include <asm/asm.h>
35 #include <asm/kvm_page_track.h>
36
37 #define KVM_MAX_VCPUS 288
38 #define KVM_SOFT_MAX_VCPUS 240
39 #define KVM_MAX_VCPU_ID 1023
40 #define KVM_USER_MEM_SLOTS 509
41 /* memory slots that are not exposed to userspace */
42 #define KVM_PRIVATE_MEM_SLOTS 3
43 #define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
44
45 #define KVM_PIO_PAGE_OFFSET 1
46 #define KVM_COALESCED_MMIO_PAGE_OFFSET 2
47 #define KVM_HALT_POLL_NS_DEFAULT 400000
48
49 #define KVM_IRQCHIP_NUM_PINS KVM_IOAPIC_NUM_PINS
50
51 /* x86-specific vcpu->requests bit members */
52 #define KVM_REQ_MIGRATE_TIMER 8
53 #define KVM_REQ_REPORT_TPR_ACCESS 9
54 #define KVM_REQ_TRIPLE_FAULT 10
55 #define KVM_REQ_MMU_SYNC 11
56 #define KVM_REQ_CLOCK_UPDATE 12
57 #define KVM_REQ_DEACTIVATE_FPU 13
58 #define KVM_REQ_EVENT 14
59 #define KVM_REQ_APF_HALT 15
60 #define KVM_REQ_STEAL_UPDATE 16
61 #define KVM_REQ_NMI 17
62 #define KVM_REQ_PMU 18
63 #define KVM_REQ_PMI 19
64 #define KVM_REQ_SMI 20
65 #define KVM_REQ_MASTERCLOCK_UPDATE 21
66 #define KVM_REQ_MCLOCK_INPROGRESS 22
67 #define KVM_REQ_SCAN_IOAPIC 23
68 #define KVM_REQ_GLOBAL_CLOCK_UPDATE 24
69 #define KVM_REQ_APIC_PAGE_RELOAD 25
70 #define KVM_REQ_HV_CRASH 26
71 #define KVM_REQ_IOAPIC_EOI_EXIT 27
72 #define KVM_REQ_HV_RESET 28
73 #define KVM_REQ_HV_EXIT 29
74 #define KVM_REQ_HV_STIMER 30
75
76 #define CR0_RESERVED_BITS \
77 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
78 | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
79 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
80
81 #define CR3_L_MODE_RESERVED_BITS 0xFFFFFF0000000000ULL
82 #define CR3_PCID_INVD BIT_64(63)
83 #define CR4_RESERVED_BITS \
84 (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
85 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \
86 | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR | X86_CR4_PCIDE \
87 | X86_CR4_OSXSAVE | X86_CR4_SMEP | X86_CR4_FSGSBASE \
88 | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE | X86_CR4_SMAP \
89 | X86_CR4_PKE))
90
91 #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR)
92
93
94
95 #define INVALID_PAGE (~(hpa_t)0)
96 #define VALID_PAGE(x) ((x) != INVALID_PAGE)
97
98 #define UNMAPPED_GVA (~(gpa_t)0)
99
100 /* KVM Hugepage definitions for x86 */
101 #define KVM_NR_PAGE_SIZES 3
102 #define KVM_HPAGE_GFN_SHIFT(x) (((x) - 1) * 9)
103 #define KVM_HPAGE_SHIFT(x) (PAGE_SHIFT + KVM_HPAGE_GFN_SHIFT(x))
104 #define KVM_HPAGE_SIZE(x) (1UL << KVM_HPAGE_SHIFT(x))
105 #define KVM_HPAGE_MASK(x) (~(KVM_HPAGE_SIZE(x) - 1))
106 #define KVM_PAGES_PER_HPAGE(x) (KVM_HPAGE_SIZE(x) / PAGE_SIZE)
107
108 static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level)
109 {
110 /* KVM_HPAGE_GFN_SHIFT(PT_PAGE_TABLE_LEVEL) must be 0. */
111 return (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
112 (base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
113 }
114
115 #define KVM_PERMILLE_MMU_PAGES 20
116 #define KVM_MIN_ALLOC_MMU_PAGES 64
117 #define KVM_MMU_HASH_SHIFT 10
118 #define KVM_NUM_MMU_PAGES (1 << KVM_MMU_HASH_SHIFT)
119 #define KVM_MIN_FREE_MMU_PAGES 5
120 #define KVM_REFILL_PAGES 25
121 #define KVM_MAX_CPUID_ENTRIES 80
122 #define KVM_NR_FIXED_MTRR_REGION 88
123 #define KVM_NR_VAR_MTRR 8
124
125 #define ASYNC_PF_PER_VCPU 64
126
127 enum kvm_reg {
128 VCPU_REGS_RAX = 0,
129 VCPU_REGS_RCX = 1,
130 VCPU_REGS_RDX = 2,
131 VCPU_REGS_RBX = 3,
132 VCPU_REGS_RSP = 4,
133 VCPU_REGS_RBP = 5,
134 VCPU_REGS_RSI = 6,
135 VCPU_REGS_RDI = 7,
136 #ifdef CONFIG_X86_64
137 VCPU_REGS_R8 = 8,
138 VCPU_REGS_R9 = 9,
139 VCPU_REGS_R10 = 10,
140 VCPU_REGS_R11 = 11,
141 VCPU_REGS_R12 = 12,
142 VCPU_REGS_R13 = 13,
143 VCPU_REGS_R14 = 14,
144 VCPU_REGS_R15 = 15,
145 #endif
146 VCPU_REGS_RIP,
147 NR_VCPU_REGS
148 };
149
150 enum kvm_reg_ex {
151 VCPU_EXREG_PDPTR = NR_VCPU_REGS,
152 VCPU_EXREG_CR3,
153 VCPU_EXREG_RFLAGS,
154 VCPU_EXREG_SEGMENTS,
155 };
156
157 enum {
158 VCPU_SREG_ES,
159 VCPU_SREG_CS,
160 VCPU_SREG_SS,
161 VCPU_SREG_DS,
162 VCPU_SREG_FS,
163 VCPU_SREG_GS,
164 VCPU_SREG_TR,
165 VCPU_SREG_LDTR,
166 };
167
168 #include <asm/kvm_emulate.h>
169
170 #define KVM_NR_MEM_OBJS 40
171
172 #define KVM_NR_DB_REGS 4
173
174 #define DR6_BD (1 << 13)
175 #define DR6_BS (1 << 14)
176 #define DR6_RTM (1 << 16)
177 #define DR6_FIXED_1 0xfffe0ff0
178 #define DR6_INIT 0xffff0ff0
179 #define DR6_VOLATILE 0x0001e00f
180
181 #define DR7_BP_EN_MASK 0x000000ff
182 #define DR7_GE (1 << 9)
183 #define DR7_GD (1 << 13)
184 #define DR7_FIXED_1 0x00000400
185 #define DR7_VOLATILE 0xffff2bff
186
187 #define PFERR_PRESENT_BIT 0
188 #define PFERR_WRITE_BIT 1
189 #define PFERR_USER_BIT 2
190 #define PFERR_RSVD_BIT 3
191 #define PFERR_FETCH_BIT 4
192 #define PFERR_PK_BIT 5
193
194 #define PFERR_PRESENT_MASK (1U << PFERR_PRESENT_BIT)
195 #define PFERR_WRITE_MASK (1U << PFERR_WRITE_BIT)
196 #define PFERR_USER_MASK (1U << PFERR_USER_BIT)
197 #define PFERR_RSVD_MASK (1U << PFERR_RSVD_BIT)
198 #define PFERR_FETCH_MASK (1U << PFERR_FETCH_BIT)
199 #define PFERR_PK_MASK (1U << PFERR_PK_BIT)
200
201 /* apic attention bits */
202 #define KVM_APIC_CHECK_VAPIC 0
203 /*
204 * The following bit is set with PV-EOI, unset on EOI.
205 * We detect PV-EOI changes by guest by comparing
206 * this bit with PV-EOI in guest memory.
207 * See the implementation in apic_update_pv_eoi.
208 */
209 #define KVM_APIC_PV_EOI_PENDING 1
210
211 struct kvm_kernel_irq_routing_entry;
212
213 /*
214 * We don't want allocation failures within the mmu code, so we preallocate
215 * enough memory for a single page fault in a cache.
216 */
217 struct kvm_mmu_memory_cache {
218 int nobjs;
219 void *objects[KVM_NR_MEM_OBJS];
220 };
221
222 /*
223 * the pages used as guest page table on soft mmu are tracked by
224 * kvm_memory_slot.arch.gfn_track which is 16 bits, so the role bits used
225 * by indirect shadow page can not be more than 15 bits.
226 *
227 * Currently, we used 14 bits that are @level, @cr4_pae, @quadrant, @access,
228 * @nxe, @cr0_wp, @smep_andnot_wp and @smap_andnot_wp.
229 */
230 union kvm_mmu_page_role {
231 unsigned word;
232 struct {
233 unsigned level:4;
234 unsigned cr4_pae:1;
235 unsigned quadrant:2;
236 unsigned direct:1;
237 unsigned access:3;
238 unsigned invalid:1;
239 unsigned nxe:1;
240 unsigned cr0_wp:1;
241 unsigned smep_andnot_wp:1;
242 unsigned smap_andnot_wp:1;
243 unsigned :8;
244
245 /*
246 * This is left at the top of the word so that
247 * kvm_memslots_for_spte_role can extract it with a
248 * simple shift. While there is room, give it a whole
249 * byte so it is also faster to load it from memory.
250 */
251 unsigned smm:8;
252 };
253 };
254
255 struct kvm_rmap_head {
256 unsigned long val;
257 };
258
259 struct kvm_mmu_page {
260 struct list_head link;
261 struct hlist_node hash_link;
262
263 /*
264 * The following two entries are used to key the shadow page in the
265 * hash table.
266 */
267 gfn_t gfn;
268 union kvm_mmu_page_role role;
269
270 u64 *spt;
271 /* hold the gfn of each spte inside spt */
272 gfn_t *gfns;
273 bool unsync;
274 int root_count; /* Currently serving as active root */
275 unsigned int unsync_children;
276 struct kvm_rmap_head parent_ptes; /* rmap pointers to parent sptes */
277
278 /* The page is obsolete if mmu_valid_gen != kvm->arch.mmu_valid_gen. */
279 unsigned long mmu_valid_gen;
280
281 DECLARE_BITMAP(unsync_child_bitmap, 512);
282
283 #ifdef CONFIG_X86_32
284 /*
285 * Used out of the mmu-lock to avoid reading spte values while an
286 * update is in progress; see the comments in __get_spte_lockless().
287 */
288 int clear_spte_count;
289 #endif
290
291 /* Number of writes since the last time traversal visited this page. */
292 atomic_t write_flooding_count;
293 };
294
295 struct kvm_pio_request {
296 unsigned long count;
297 int in;
298 int port;
299 int size;
300 };
301
302 struct rsvd_bits_validate {
303 u64 rsvd_bits_mask[2][4];
304 u64 bad_mt_xwr;
305 };
306
307 /*
308 * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
309 * 32-bit). The kvm_mmu structure abstracts the details of the current mmu
310 * mode.
311 */
312 struct kvm_mmu {
313 void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long root);
314 unsigned long (*get_cr3)(struct kvm_vcpu *vcpu);
315 u64 (*get_pdptr)(struct kvm_vcpu *vcpu, int index);
316 int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err,
317 bool prefault);
318 void (*inject_page_fault)(struct kvm_vcpu *vcpu,
319 struct x86_exception *fault);
320 gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva, u32 access,
321 struct x86_exception *exception);
322 gpa_t (*translate_gpa)(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
323 struct x86_exception *exception);
324 int (*sync_page)(struct kvm_vcpu *vcpu,
325 struct kvm_mmu_page *sp);
326 void (*invlpg)(struct kvm_vcpu *vcpu, gva_t gva);
327 void (*update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
328 u64 *spte, const void *pte);
329 hpa_t root_hpa;
330 int root_level;
331 int shadow_root_level;
332 union kvm_mmu_page_role base_role;
333 bool direct_map;
334
335 /*
336 * Bitmap; bit set = permission fault
337 * Byte index: page fault error code [4:1]
338 * Bit index: pte permissions in ACC_* format
339 */
340 u8 permissions[16];
341
342 /*
343 * The pkru_mask indicates if protection key checks are needed. It
344 * consists of 16 domains indexed by page fault error code bits [4:1],
345 * with PFEC.RSVD replaced by ACC_USER_MASK from the page tables.
346 * Each domain has 2 bits which are ANDed with AD and WD from PKRU.
347 */
348 u32 pkru_mask;
349
350 u64 *pae_root;
351 u64 *lm_root;
352
353 /*
354 * check zero bits on shadow page table entries, these
355 * bits include not only hardware reserved bits but also
356 * the bits spte never used.
357 */
358 struct rsvd_bits_validate shadow_zero_check;
359
360 struct rsvd_bits_validate guest_rsvd_check;
361
362 /* Can have large pages at levels 2..last_nonleaf_level-1. */
363 u8 last_nonleaf_level;
364
365 bool nx;
366
367 u64 pdptrs[4]; /* pae */
368 };
369
370 enum pmc_type {
371 KVM_PMC_GP = 0,
372 KVM_PMC_FIXED,
373 };
374
375 struct kvm_pmc {
376 enum pmc_type type;
377 u8 idx;
378 u64 counter;
379 u64 eventsel;
380 struct perf_event *perf_event;
381 struct kvm_vcpu *vcpu;
382 };
383
384 struct kvm_pmu {
385 unsigned nr_arch_gp_counters;
386 unsigned nr_arch_fixed_counters;
387 unsigned available_event_types;
388 u64 fixed_ctr_ctrl;
389 u64 global_ctrl;
390 u64 global_status;
391 u64 global_ovf_ctrl;
392 u64 counter_bitmask[2];
393 u64 global_ctrl_mask;
394 u64 reserved_bits;
395 u8 version;
396 struct kvm_pmc gp_counters[INTEL_PMC_MAX_GENERIC];
397 struct kvm_pmc fixed_counters[INTEL_PMC_MAX_FIXED];
398 struct irq_work irq_work;
399 u64 reprogram_pmi;
400 };
401
402 struct kvm_pmu_ops;
403
404 enum {
405 KVM_DEBUGREG_BP_ENABLED = 1,
406 KVM_DEBUGREG_WONT_EXIT = 2,
407 KVM_DEBUGREG_RELOAD = 4,
408 };
409
410 struct kvm_mtrr_range {
411 u64 base;
412 u64 mask;
413 struct list_head node;
414 };
415
416 struct kvm_mtrr {
417 struct kvm_mtrr_range var_ranges[KVM_NR_VAR_MTRR];
418 mtrr_type fixed_ranges[KVM_NR_FIXED_MTRR_REGION];
419 u64 deftype;
420
421 struct list_head head;
422 };
423
424 /* Hyper-V SynIC timer */
425 struct kvm_vcpu_hv_stimer {
426 struct hrtimer timer;
427 int index;
428 u64 config;
429 u64 count;
430 u64 exp_time;
431 struct hv_message msg;
432 bool msg_pending;
433 };
434
435 /* Hyper-V synthetic interrupt controller (SynIC)*/
436 struct kvm_vcpu_hv_synic {
437 u64 version;
438 u64 control;
439 u64 msg_page;
440 u64 evt_page;
441 atomic64_t sint[HV_SYNIC_SINT_COUNT];
442 atomic_t sint_to_gsi[HV_SYNIC_SINT_COUNT];
443 DECLARE_BITMAP(auto_eoi_bitmap, 256);
444 DECLARE_BITMAP(vec_bitmap, 256);
445 bool active;
446 };
447
448 /* Hyper-V per vcpu emulation context */
449 struct kvm_vcpu_hv {
450 u64 hv_vapic;
451 s64 runtime_offset;
452 struct kvm_vcpu_hv_synic synic;
453 struct kvm_hyperv_exit exit;
454 struct kvm_vcpu_hv_stimer stimer[HV_SYNIC_STIMER_COUNT];
455 DECLARE_BITMAP(stimer_pending_bitmap, HV_SYNIC_STIMER_COUNT);
456 };
457
458 struct kvm_vcpu_arch {
459 /*
460 * rip and regs accesses must go through
461 * kvm_{register,rip}_{read,write} functions.
462 */
463 unsigned long regs[NR_VCPU_REGS];
464 u32 regs_avail;
465 u32 regs_dirty;
466
467 unsigned long cr0;
468 unsigned long cr0_guest_owned_bits;
469 unsigned long cr2;
470 unsigned long cr3;
471 unsigned long cr4;
472 unsigned long cr4_guest_owned_bits;
473 unsigned long cr8;
474 u32 hflags;
475 u64 efer;
476 u64 apic_base;
477 struct kvm_lapic *apic; /* kernel irqchip context */
478 bool apicv_active;
479 DECLARE_BITMAP(ioapic_handled_vectors, 256);
480 unsigned long apic_attention;
481 int32_t apic_arb_prio;
482 int mp_state;
483 u64 ia32_misc_enable_msr;
484 u64 smbase;
485 bool tpr_access_reporting;
486 u64 ia32_xss;
487
488 /*
489 * Paging state of the vcpu
490 *
491 * If the vcpu runs in guest mode with two level paging this still saves
492 * the paging mode of the l1 guest. This context is always used to
493 * handle faults.
494 */
495 struct kvm_mmu mmu;
496
497 /*
498 * Paging state of an L2 guest (used for nested npt)
499 *
500 * This context will save all necessary information to walk page tables
501 * of the an L2 guest. This context is only initialized for page table
502 * walking and not for faulting since we never handle l2 page faults on
503 * the host.
504 */
505 struct kvm_mmu nested_mmu;
506
507 /*
508 * Pointer to the mmu context currently used for
509 * gva_to_gpa translations.
510 */
511 struct kvm_mmu *walk_mmu;
512
513 struct kvm_mmu_memory_cache mmu_pte_list_desc_cache;
514 struct kvm_mmu_memory_cache mmu_page_cache;
515 struct kvm_mmu_memory_cache mmu_page_header_cache;
516
517 struct fpu guest_fpu;
518 u64 xcr0;
519 u64 guest_supported_xcr0;
520 u32 guest_xstate_size;
521
522 struct kvm_pio_request pio;
523 void *pio_data;
524
525 u8 event_exit_inst_len;
526
527 struct kvm_queued_exception {
528 bool pending;
529 bool has_error_code;
530 bool reinject;
531 u8 nr;
532 u32 error_code;
533 } exception;
534
535 struct kvm_queued_interrupt {
536 bool pending;
537 bool soft;
538 u8 nr;
539 } interrupt;
540
541 int halt_request; /* real mode on Intel only */
542
543 int cpuid_nent;
544 struct kvm_cpuid_entry2 cpuid_entries[KVM_MAX_CPUID_ENTRIES];
545
546 int maxphyaddr;
547
548 /* emulate context */
549
550 struct x86_emulate_ctxt emulate_ctxt;
551 bool emulate_regs_need_sync_to_vcpu;
552 bool emulate_regs_need_sync_from_vcpu;
553 int (*complete_userspace_io)(struct kvm_vcpu *vcpu);
554
555 gpa_t time;
556 struct pvclock_vcpu_time_info hv_clock;
557 unsigned int hw_tsc_khz;
558 struct gfn_to_hva_cache pv_time;
559 bool pv_time_enabled;
560 /* set guest stopped flag in pvclock flags field */
561 bool pvclock_set_guest_stopped_request;
562
563 struct {
564 u64 msr_val;
565 u64 last_steal;
566 struct gfn_to_hva_cache stime;
567 struct kvm_steal_time steal;
568 } st;
569
570 u64 last_guest_tsc;
571 u64 last_host_tsc;
572 u64 tsc_offset_adjustment;
573 u64 this_tsc_nsec;
574 u64 this_tsc_write;
575 u64 this_tsc_generation;
576 bool tsc_catchup;
577 bool tsc_always_catchup;
578 s8 virtual_tsc_shift;
579 u32 virtual_tsc_mult;
580 u32 virtual_tsc_khz;
581 s64 ia32_tsc_adjust_msr;
582 u64 tsc_scaling_ratio;
583
584 atomic_t nmi_queued; /* unprocessed asynchronous NMIs */
585 unsigned nmi_pending; /* NMI queued after currently running handler */
586 bool nmi_injected; /* Trying to inject an NMI this entry */
587 bool smi_pending; /* SMI queued after currently running handler */
588
589 struct kvm_mtrr mtrr_state;
590 u64 pat;
591
592 unsigned switch_db_regs;
593 unsigned long db[KVM_NR_DB_REGS];
594 unsigned long dr6;
595 unsigned long dr7;
596 unsigned long eff_db[KVM_NR_DB_REGS];
597 unsigned long guest_debug_dr7;
598
599 u64 mcg_cap;
600 u64 mcg_status;
601 u64 mcg_ctl;
602 u64 mcg_ext_ctl;
603 u64 *mce_banks;
604
605 /* Cache MMIO info */
606 u64 mmio_gva;
607 unsigned access;
608 gfn_t mmio_gfn;
609 u64 mmio_gen;
610
611 struct kvm_pmu pmu;
612
613 /* used for guest single stepping over the given code position */
614 unsigned long singlestep_rip;
615
616 struct kvm_vcpu_hv hyperv;
617
618 cpumask_var_t wbinvd_dirty_mask;
619
620 unsigned long last_retry_eip;
621 unsigned long last_retry_addr;
622
623 struct {
624 bool halted;
625 gfn_t gfns[roundup_pow_of_two(ASYNC_PF_PER_VCPU)];
626 struct gfn_to_hva_cache data;
627 u64 msr_val;
628 u32 id;
629 bool send_user_only;
630 } apf;
631
632 /* OSVW MSRs (AMD only) */
633 struct {
634 u64 length;
635 u64 status;
636 } osvw;
637
638 struct {
639 u64 msr_val;
640 struct gfn_to_hva_cache data;
641 } pv_eoi;
642
643 /*
644 * Indicate whether the access faults on its page table in guest
645 * which is set when fix page fault and used to detect unhandeable
646 * instruction.
647 */
648 bool write_fault_to_shadow_pgtable;
649
650 /* set at EPT violation at this point */
651 unsigned long exit_qualification;
652
653 /* pv related host specific info */
654 struct {
655 bool pv_unhalted;
656 } pv;
657
658 int pending_ioapic_eoi;
659 int pending_external_vector;
660 };
661
662 struct kvm_lpage_info {
663 int disallow_lpage;
664 };
665
666 struct kvm_arch_memory_slot {
667 struct kvm_rmap_head *rmap[KVM_NR_PAGE_SIZES];
668 struct kvm_lpage_info *lpage_info[KVM_NR_PAGE_SIZES - 1];
669 unsigned short *gfn_track[KVM_PAGE_TRACK_MAX];
670 };
671
672 /*
673 * We use as the mode the number of bits allocated in the LDR for the
674 * logical processor ID. It happens that these are all powers of two.
675 * This makes it is very easy to detect cases where the APICs are
676 * configured for multiple modes; in that case, we cannot use the map and
677 * hence cannot use kvm_irq_delivery_to_apic_fast either.
678 */
679 #define KVM_APIC_MODE_XAPIC_CLUSTER 4
680 #define KVM_APIC_MODE_XAPIC_FLAT 8
681 #define KVM_APIC_MODE_X2APIC 16
682
683 struct kvm_apic_map {
684 struct rcu_head rcu;
685 u8 mode;
686 u32 max_apic_id;
687 union {
688 struct kvm_lapic *xapic_flat_map[8];
689 struct kvm_lapic *xapic_cluster_map[16][4];
690 };
691 struct kvm_lapic *phys_map[];
692 };
693
694 /* Hyper-V emulation context */
695 struct kvm_hv {
696 u64 hv_guest_os_id;
697 u64 hv_hypercall;
698 u64 hv_tsc_page;
699
700 /* Hyper-v based guest crash (NT kernel bugcheck) parameters */
701 u64 hv_crash_param[HV_X64_MSR_CRASH_PARAMS];
702 u64 hv_crash_ctl;
703 };
704
705 struct kvm_arch {
706 unsigned int n_used_mmu_pages;
707 unsigned int n_requested_mmu_pages;
708 unsigned int n_max_mmu_pages;
709 unsigned int indirect_shadow_pages;
710 unsigned long mmu_valid_gen;
711 struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
712 /*
713 * Hash table of struct kvm_mmu_page.
714 */
715 struct list_head active_mmu_pages;
716 struct list_head zapped_obsolete_pages;
717 struct kvm_page_track_notifier_node mmu_sp_tracker;
718 struct kvm_page_track_notifier_head track_notifier_head;
719
720 struct list_head assigned_dev_head;
721 struct iommu_domain *iommu_domain;
722 bool iommu_noncoherent;
723 #define __KVM_HAVE_ARCH_NONCOHERENT_DMA
724 atomic_t noncoherent_dma_count;
725 #define __KVM_HAVE_ARCH_ASSIGNED_DEVICE
726 atomic_t assigned_device_count;
727 struct kvm_pic *vpic;
728 struct kvm_ioapic *vioapic;
729 struct kvm_pit *vpit;
730 atomic_t vapics_in_nmi_mode;
731 struct mutex apic_map_lock;
732 struct kvm_apic_map *apic_map;
733
734 unsigned int tss_addr;
735 bool apic_access_page_done;
736
737 gpa_t wall_clock;
738
739 bool ept_identity_pagetable_done;
740 gpa_t ept_identity_map_addr;
741
742 unsigned long irq_sources_bitmap;
743 s64 kvmclock_offset;
744 raw_spinlock_t tsc_write_lock;
745 u64 last_tsc_nsec;
746 u64 last_tsc_write;
747 u32 last_tsc_khz;
748 u64 cur_tsc_nsec;
749 u64 cur_tsc_write;
750 u64 cur_tsc_offset;
751 u64 cur_tsc_generation;
752 int nr_vcpus_matched_tsc;
753
754 spinlock_t pvclock_gtod_sync_lock;
755 bool use_master_clock;
756 u64 master_kernel_ns;
757 cycle_t master_cycle_now;
758 struct delayed_work kvmclock_update_work;
759 struct delayed_work kvmclock_sync_work;
760
761 struct kvm_xen_hvm_config xen_hvm_config;
762
763 /* reads protected by irq_srcu, writes by irq_lock */
764 struct hlist_head mask_notifier_list;
765
766 struct kvm_hv hyperv;
767
768 #ifdef CONFIG_KVM_MMU_AUDIT
769 int audit_point;
770 #endif
771
772 bool boot_vcpu_runs_old_kvmclock;
773 u32 bsp_vcpu_id;
774
775 u64 disabled_quirks;
776
777 bool irqchip_split;
778 u8 nr_reserved_ioapic_pins;
779
780 bool disabled_lapic_found;
781
782 /* Struct members for AVIC */
783 u32 ldr_mode;
784 struct page *avic_logical_id_table_page;
785 struct page *avic_physical_id_table_page;
786
787 bool x2apic_format;
788 bool x2apic_broadcast_quirk_disabled;
789 };
790
791 struct kvm_vm_stat {
792 u32 mmu_shadow_zapped;
793 u32 mmu_pte_write;
794 u32 mmu_pte_updated;
795 u32 mmu_pde_zapped;
796 u32 mmu_flooded;
797 u32 mmu_recycled;
798 u32 mmu_cache_miss;
799 u32 mmu_unsync;
800 u32 remote_tlb_flush;
801 u32 lpages;
802 };
803
804 struct kvm_vcpu_stat {
805 u32 pf_fixed;
806 u32 pf_guest;
807 u32 tlb_flush;
808 u32 invlpg;
809
810 u32 exits;
811 u32 io_exits;
812 u32 mmio_exits;
813 u32 signal_exits;
814 u32 irq_window_exits;
815 u32 nmi_window_exits;
816 u32 halt_exits;
817 u32 halt_successful_poll;
818 u32 halt_attempted_poll;
819 u32 halt_poll_invalid;
820 u32 halt_wakeup;
821 u32 request_irq_exits;
822 u32 irq_exits;
823 u32 host_state_reload;
824 u32 efer_reload;
825 u32 fpu_reload;
826 u32 insn_emulation;
827 u32 insn_emulation_fail;
828 u32 hypercalls;
829 u32 irq_injections;
830 u32 nmi_injections;
831 };
832
833 struct x86_instruction_info;
834
835 struct msr_data {
836 bool host_initiated;
837 u32 index;
838 u64 data;
839 };
840
841 struct kvm_lapic_irq {
842 u32 vector;
843 u16 delivery_mode;
844 u16 dest_mode;
845 bool level;
846 u16 trig_mode;
847 u32 shorthand;
848 u32 dest_id;
849 bool msi_redir_hint;
850 };
851
852 struct kvm_x86_ops {
853 int (*cpu_has_kvm_support)(void); /* __init */
854 int (*disabled_by_bios)(void); /* __init */
855 int (*hardware_enable)(void);
856 void (*hardware_disable)(void);
857 void (*check_processor_compatibility)(void *rtn);
858 int (*hardware_setup)(void); /* __init */
859 void (*hardware_unsetup)(void); /* __exit */
860 bool (*cpu_has_accelerated_tpr)(void);
861 bool (*cpu_has_high_real_mode_segbase)(void);
862 void (*cpuid_update)(struct kvm_vcpu *vcpu);
863
864 int (*vm_init)(struct kvm *kvm);
865 void (*vm_destroy)(struct kvm *kvm);
866
867 /* Create, but do not attach this VCPU */
868 struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id);
869 void (*vcpu_free)(struct kvm_vcpu *vcpu);
870 void (*vcpu_reset)(struct kvm_vcpu *vcpu, bool init_event);
871
872 void (*prepare_guest_switch)(struct kvm_vcpu *vcpu);
873 void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
874 void (*vcpu_put)(struct kvm_vcpu *vcpu);
875
876 void (*update_bp_intercept)(struct kvm_vcpu *vcpu);
877 int (*get_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr);
878 int (*set_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr);
879 u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
880 void (*get_segment)(struct kvm_vcpu *vcpu,
881 struct kvm_segment *var, int seg);
882 int (*get_cpl)(struct kvm_vcpu *vcpu);
883 void (*set_segment)(struct kvm_vcpu *vcpu,
884 struct kvm_segment *var, int seg);
885 void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
886 void (*decache_cr0_guest_bits)(struct kvm_vcpu *vcpu);
887 void (*decache_cr3)(struct kvm_vcpu *vcpu);
888 void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu);
889 void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
890 void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
891 int (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
892 void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
893 void (*get_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
894 void (*set_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
895 void (*get_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
896 void (*set_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
897 u64 (*get_dr6)(struct kvm_vcpu *vcpu);
898 void (*set_dr6)(struct kvm_vcpu *vcpu, unsigned long value);
899 void (*sync_dirty_debug_regs)(struct kvm_vcpu *vcpu);
900 void (*set_dr7)(struct kvm_vcpu *vcpu, unsigned long value);
901 void (*cache_reg)(struct kvm_vcpu *vcpu, enum kvm_reg reg);
902 unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
903 void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
904 u32 (*get_pkru)(struct kvm_vcpu *vcpu);
905 void (*fpu_activate)(struct kvm_vcpu *vcpu);
906 void (*fpu_deactivate)(struct kvm_vcpu *vcpu);
907
908 void (*tlb_flush)(struct kvm_vcpu *vcpu);
909
910 void (*run)(struct kvm_vcpu *vcpu);
911 int (*handle_exit)(struct kvm_vcpu *vcpu);
912 void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
913 void (*set_interrupt_shadow)(struct kvm_vcpu *vcpu, int mask);
914 u32 (*get_interrupt_shadow)(struct kvm_vcpu *vcpu);
915 void (*patch_hypercall)(struct kvm_vcpu *vcpu,
916 unsigned char *hypercall_addr);
917 void (*set_irq)(struct kvm_vcpu *vcpu);
918 void (*set_nmi)(struct kvm_vcpu *vcpu);
919 void (*queue_exception)(struct kvm_vcpu *vcpu, unsigned nr,
920 bool has_error_code, u32 error_code,
921 bool reinject);
922 void (*cancel_injection)(struct kvm_vcpu *vcpu);
923 int (*interrupt_allowed)(struct kvm_vcpu *vcpu);
924 int (*nmi_allowed)(struct kvm_vcpu *vcpu);
925 bool (*get_nmi_mask)(struct kvm_vcpu *vcpu);
926 void (*set_nmi_mask)(struct kvm_vcpu *vcpu, bool masked);
927 void (*enable_nmi_window)(struct kvm_vcpu *vcpu);
928 void (*enable_irq_window)(struct kvm_vcpu *vcpu);
929 void (*update_cr8_intercept)(struct kvm_vcpu *vcpu, int tpr, int irr);
930 bool (*get_enable_apicv)(void);
931 void (*refresh_apicv_exec_ctrl)(struct kvm_vcpu *vcpu);
932 void (*hwapic_irr_update)(struct kvm_vcpu *vcpu, int max_irr);
933 void (*hwapic_isr_update)(struct kvm_vcpu *vcpu, int isr);
934 void (*load_eoi_exitmap)(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap);
935 void (*set_virtual_x2apic_mode)(struct kvm_vcpu *vcpu, bool set);
936 void (*set_apic_access_page_addr)(struct kvm_vcpu *vcpu, hpa_t hpa);
937 void (*deliver_posted_interrupt)(struct kvm_vcpu *vcpu, int vector);
938 void (*sync_pir_to_irr)(struct kvm_vcpu *vcpu);
939 int (*set_tss_addr)(struct kvm *kvm, unsigned int addr);
940 int (*get_tdp_level)(void);
941 u64 (*get_mt_mask)(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio);
942 int (*get_lpage_level)(void);
943 bool (*rdtscp_supported)(void);
944 bool (*invpcid_supported)(void);
945 void (*adjust_tsc_offset_guest)(struct kvm_vcpu *vcpu, s64 adjustment);
946
947 void (*set_tdp_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
948
949 void (*set_supported_cpuid)(u32 func, struct kvm_cpuid_entry2 *entry);
950
951 bool (*has_wbinvd_exit)(void);
952
953 u64 (*read_tsc_offset)(struct kvm_vcpu *vcpu);
954 void (*write_tsc_offset)(struct kvm_vcpu *vcpu, u64 offset);
955
956 u64 (*read_l1_tsc)(struct kvm_vcpu *vcpu, u64 host_tsc);
957
958 void (*get_exit_info)(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2);
959
960 int (*check_intercept)(struct kvm_vcpu *vcpu,
961 struct x86_instruction_info *info,
962 enum x86_intercept_stage stage);
963 void (*handle_external_intr)(struct kvm_vcpu *vcpu);
964 bool (*mpx_supported)(void);
965 bool (*xsaves_supported)(void);
966
967 int (*check_nested_events)(struct kvm_vcpu *vcpu, bool external_intr);
968
969 void (*sched_in)(struct kvm_vcpu *kvm, int cpu);
970
971 /*
972 * Arch-specific dirty logging hooks. These hooks are only supposed to
973 * be valid if the specific arch has hardware-accelerated dirty logging
974 * mechanism. Currently only for PML on VMX.
975 *
976 * - slot_enable_log_dirty:
977 * called when enabling log dirty mode for the slot.
978 * - slot_disable_log_dirty:
979 * called when disabling log dirty mode for the slot.
980 * also called when slot is created with log dirty disabled.
981 * - flush_log_dirty:
982 * called before reporting dirty_bitmap to userspace.
983 * - enable_log_dirty_pt_masked:
984 * called when reenabling log dirty for the GFNs in the mask after
985 * corresponding bits are cleared in slot->dirty_bitmap.
986 */
987 void (*slot_enable_log_dirty)(struct kvm *kvm,
988 struct kvm_memory_slot *slot);
989 void (*slot_disable_log_dirty)(struct kvm *kvm,
990 struct kvm_memory_slot *slot);
991 void (*flush_log_dirty)(struct kvm *kvm);
992 void (*enable_log_dirty_pt_masked)(struct kvm *kvm,
993 struct kvm_memory_slot *slot,
994 gfn_t offset, unsigned long mask);
995 /* pmu operations of sub-arch */
996 const struct kvm_pmu_ops *pmu_ops;
997
998 /*
999 * Architecture specific hooks for vCPU blocking due to
1000 * HLT instruction.
1001 * Returns for .pre_block():
1002 * - 0 means continue to block the vCPU.
1003 * - 1 means we cannot block the vCPU since some event
1004 * happens during this period, such as, 'ON' bit in
1005 * posted-interrupts descriptor is set.
1006 */
1007 int (*pre_block)(struct kvm_vcpu *vcpu);
1008 void (*post_block)(struct kvm_vcpu *vcpu);
1009
1010 void (*vcpu_blocking)(struct kvm_vcpu *vcpu);
1011 void (*vcpu_unblocking)(struct kvm_vcpu *vcpu);
1012
1013 int (*update_pi_irte)(struct kvm *kvm, unsigned int host_irq,
1014 uint32_t guest_irq, bool set);
1015 void (*apicv_post_state_restore)(struct kvm_vcpu *vcpu);
1016
1017 int (*set_hv_timer)(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc);
1018 void (*cancel_hv_timer)(struct kvm_vcpu *vcpu);
1019
1020 void (*setup_mce)(struct kvm_vcpu *vcpu);
1021 };
1022
1023 struct kvm_arch_async_pf {
1024 u32 token;
1025 gfn_t gfn;
1026 unsigned long cr3;
1027 bool direct_map;
1028 };
1029
1030 extern struct kvm_x86_ops *kvm_x86_ops;
1031
1032 int kvm_mmu_module_init(void);
1033 void kvm_mmu_module_exit(void);
1034
1035 void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
1036 int kvm_mmu_create(struct kvm_vcpu *vcpu);
1037 void kvm_mmu_setup(struct kvm_vcpu *vcpu);
1038 void kvm_mmu_init_vm(struct kvm *kvm);
1039 void kvm_mmu_uninit_vm(struct kvm *kvm);
1040 void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
1041 u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 p_mask);
1042
1043 void kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
1044 void kvm_mmu_slot_remove_write_access(struct kvm *kvm,
1045 struct kvm_memory_slot *memslot);
1046 void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm,
1047 const struct kvm_memory_slot *memslot);
1048 void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm,
1049 struct kvm_memory_slot *memslot);
1050 void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm,
1051 struct kvm_memory_slot *memslot);
1052 void kvm_mmu_slot_set_dirty(struct kvm *kvm,
1053 struct kvm_memory_slot *memslot);
1054 void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm,
1055 struct kvm_memory_slot *slot,
1056 gfn_t gfn_offset, unsigned long mask);
1057 void kvm_mmu_zap_all(struct kvm *kvm);
1058 void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, struct kvm_memslots *slots);
1059 unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm);
1060 void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages);
1061
1062 int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3);
1063
1064 int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
1065 const void *val, int bytes);
1066
1067 struct kvm_irq_mask_notifier {
1068 void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked);
1069 int irq;
1070 struct hlist_node link;
1071 };
1072
1073 void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
1074 struct kvm_irq_mask_notifier *kimn);
1075 void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
1076 struct kvm_irq_mask_notifier *kimn);
1077 void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin,
1078 bool mask);
1079
1080 extern bool tdp_enabled;
1081
1082 u64 vcpu_tsc_khz(struct kvm_vcpu *vcpu);
1083
1084 /* control of guest tsc rate supported? */
1085 extern bool kvm_has_tsc_control;
1086 /* maximum supported tsc_khz for guests */
1087 extern u32 kvm_max_guest_tsc_khz;
1088 /* number of bits of the fractional part of the TSC scaling ratio */
1089 extern u8 kvm_tsc_scaling_ratio_frac_bits;
1090 /* maximum allowed value of TSC scaling ratio */
1091 extern u64 kvm_max_tsc_scaling_ratio;
1092 /* 1ull << kvm_tsc_scaling_ratio_frac_bits */
1093 extern u64 kvm_default_tsc_scaling_ratio;
1094
1095 extern u64 kvm_mce_cap_supported;
1096
1097 enum emulation_result {
1098 EMULATE_DONE, /* no further processing */
1099 EMULATE_USER_EXIT, /* kvm_run ready for userspace exit */
1100 EMULATE_FAIL, /* can't emulate this instruction */
1101 };
1102
1103 #define EMULTYPE_NO_DECODE (1 << 0)
1104 #define EMULTYPE_TRAP_UD (1 << 1)
1105 #define EMULTYPE_SKIP (1 << 2)
1106 #define EMULTYPE_RETRY (1 << 3)
1107 #define EMULTYPE_NO_REEXECUTE (1 << 4)
1108 int x86_emulate_instruction(struct kvm_vcpu *vcpu, unsigned long cr2,
1109 int emulation_type, void *insn, int insn_len);
1110
1111 static inline int emulate_instruction(struct kvm_vcpu *vcpu,
1112 int emulation_type)
1113 {
1114 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
1115 }
1116
1117 void kvm_enable_efer_bits(u64);
1118 bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer);
1119 int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr);
1120 int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr);
1121
1122 struct x86_emulate_ctxt;
1123
1124 int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port);
1125 void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
1126 int kvm_emulate_halt(struct kvm_vcpu *vcpu);
1127 int kvm_vcpu_halt(struct kvm_vcpu *vcpu);
1128 int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu);
1129
1130 void kvm_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg);
1131 int kvm_load_segment_descriptor(struct kvm_vcpu *vcpu, u16 selector, int seg);
1132 void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector);
1133
1134 int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
1135 int reason, bool has_error_code, u32 error_code);
1136
1137 int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
1138 int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
1139 int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1140 int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8);
1141 int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val);
1142 int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val);
1143 unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu);
1144 void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
1145 void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l);
1146 int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr);
1147
1148 int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr);
1149 int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr);
1150
1151 unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu);
1152 void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
1153 bool kvm_rdpmc(struct kvm_vcpu *vcpu);
1154
1155 void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr);
1156 void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code);
1157 void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr);
1158 void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code);
1159 void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault);
1160 int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
1161 gfn_t gfn, void *data, int offset, int len,
1162 u32 access);
1163 bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl);
1164 bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr);
1165
1166 static inline int __kvm_irq_line_state(unsigned long *irq_state,
1167 int irq_source_id, int level)
1168 {
1169 /* Logical OR for level trig interrupt */
1170 if (level)
1171 __set_bit(irq_source_id, irq_state);
1172 else
1173 __clear_bit(irq_source_id, irq_state);
1174
1175 return !!(*irq_state);
1176 }
1177
1178 int kvm_pic_set_irq(struct kvm_pic *pic, int irq, int irq_source_id, int level);
1179 void kvm_pic_clear_all(struct kvm_pic *pic, int irq_source_id);
1180
1181 void kvm_inject_nmi(struct kvm_vcpu *vcpu);
1182
1183 int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn);
1184 int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
1185 void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
1186 int kvm_mmu_load(struct kvm_vcpu *vcpu);
1187 void kvm_mmu_unload(struct kvm_vcpu *vcpu);
1188 void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu);
1189 gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
1190 struct x86_exception *exception);
1191 gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
1192 struct x86_exception *exception);
1193 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
1194 struct x86_exception *exception);
1195 gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
1196 struct x86_exception *exception);
1197 gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
1198 struct x86_exception *exception);
1199
1200 void kvm_vcpu_deactivate_apicv(struct kvm_vcpu *vcpu);
1201
1202 int kvm_emulate_hypercall(struct kvm_vcpu *vcpu);
1203
1204 int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code,
1205 void *insn, int insn_len);
1206 void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva);
1207 void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu);
1208
1209 void kvm_enable_tdp(void);
1210 void kvm_disable_tdp(void);
1211
1212 static inline gpa_t translate_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
1213 struct x86_exception *exception)
1214 {
1215 return gpa;
1216 }
1217
1218 static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
1219 {
1220 struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
1221
1222 return (struct kvm_mmu_page *)page_private(page);
1223 }
1224
1225 static inline u16 kvm_read_ldt(void)
1226 {
1227 u16 ldt;
1228 asm("sldt %0" : "=g"(ldt));
1229 return ldt;
1230 }
1231
1232 static inline void kvm_load_ldt(u16 sel)
1233 {
1234 asm("lldt %0" : : "rm"(sel));
1235 }
1236
1237 #ifdef CONFIG_X86_64
1238 static inline unsigned long read_msr(unsigned long msr)
1239 {
1240 u64 value;
1241
1242 rdmsrl(msr, value);
1243 return value;
1244 }
1245 #endif
1246
1247 static inline u32 get_rdx_init_val(void)
1248 {
1249 return 0x600; /* P6 family */
1250 }
1251
1252 static inline void kvm_inject_gp(struct kvm_vcpu *vcpu, u32 error_code)
1253 {
1254 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
1255 }
1256
1257 static inline u64 get_canonical(u64 la)
1258 {
1259 return ((int64_t)la << 16) >> 16;
1260 }
1261
1262 static inline bool is_noncanonical_address(u64 la)
1263 {
1264 #ifdef CONFIG_X86_64
1265 return get_canonical(la) != la;
1266 #else
1267 return false;
1268 #endif
1269 }
1270
1271 #define TSS_IOPB_BASE_OFFSET 0x66
1272 #define TSS_BASE_SIZE 0x68
1273 #define TSS_IOPB_SIZE (65536 / 8)
1274 #define TSS_REDIRECTION_SIZE (256 / 8)
1275 #define RMODE_TSS_SIZE \
1276 (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
1277
1278 enum {
1279 TASK_SWITCH_CALL = 0,
1280 TASK_SWITCH_IRET = 1,
1281 TASK_SWITCH_JMP = 2,
1282 TASK_SWITCH_GATE = 3,
1283 };
1284
1285 #define HF_GIF_MASK (1 << 0)
1286 #define HF_HIF_MASK (1 << 1)
1287 #define HF_VINTR_MASK (1 << 2)
1288 #define HF_NMI_MASK (1 << 3)
1289 #define HF_IRET_MASK (1 << 4)
1290 #define HF_GUEST_MASK (1 << 5) /* VCPU is in guest-mode */
1291 #define HF_SMM_MASK (1 << 6)
1292 #define HF_SMM_INSIDE_NMI_MASK (1 << 7)
1293
1294 #define __KVM_VCPU_MULTIPLE_ADDRESS_SPACE
1295 #define KVM_ADDRESS_SPACE_NUM 2
1296
1297 #define kvm_arch_vcpu_memslots_id(vcpu) ((vcpu)->arch.hflags & HF_SMM_MASK ? 1 : 0)
1298 #define kvm_memslots_for_spte_role(kvm, role) __kvm_memslots(kvm, (role).smm)
1299
1300 /*
1301 * Hardware virtualization extension instructions may fault if a
1302 * reboot turns off virtualization while processes are running.
1303 * Trap the fault and ignore the instruction if that happens.
1304 */
1305 asmlinkage void kvm_spurious_fault(void);
1306
1307 #define ____kvm_handle_fault_on_reboot(insn, cleanup_insn) \
1308 "666: " insn "\n\t" \
1309 "668: \n\t" \
1310 ".pushsection .fixup, \"ax\" \n" \
1311 "667: \n\t" \
1312 cleanup_insn "\n\t" \
1313 "cmpb $0, kvm_rebooting \n\t" \
1314 "jne 668b \n\t" \
1315 __ASM_SIZE(push) " $666b \n\t" \
1316 "call kvm_spurious_fault \n\t" \
1317 ".popsection \n\t" \
1318 _ASM_EXTABLE(666b, 667b)
1319
1320 #define __kvm_handle_fault_on_reboot(insn) \
1321 ____kvm_handle_fault_on_reboot(insn, "")
1322
1323 #define KVM_ARCH_WANT_MMU_NOTIFIER
1324 int kvm_unmap_hva(struct kvm *kvm, unsigned long hva);
1325 int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end);
1326 int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end);
1327 int kvm_test_age_hva(struct kvm *kvm, unsigned long hva);
1328 void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte);
1329 int kvm_cpu_has_injectable_intr(struct kvm_vcpu *v);
1330 int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu);
1331 int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu);
1332 int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
1333 void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event);
1334 void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu);
1335 void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
1336 unsigned long address);
1337
1338 void kvm_define_shared_msr(unsigned index, u32 msr);
1339 int kvm_set_shared_msr(unsigned index, u64 val, u64 mask);
1340
1341 u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc);
1342 u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc);
1343
1344 unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu);
1345 bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip);
1346
1347 void kvm_make_mclock_inprogress_request(struct kvm *kvm);
1348 void kvm_make_scan_ioapic_request(struct kvm *kvm);
1349
1350 void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
1351 struct kvm_async_pf *work);
1352 void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
1353 struct kvm_async_pf *work);
1354 void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
1355 struct kvm_async_pf *work);
1356 bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu);
1357 extern bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn);
1358
1359 void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err);
1360
1361 int kvm_is_in_guest(void);
1362
1363 int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size);
1364 int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size);
1365 bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu);
1366 bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu);
1367
1368 bool kvm_intr_is_single_vcpu(struct kvm *kvm, struct kvm_lapic_irq *irq,
1369 struct kvm_vcpu **dest_vcpu);
1370
1371 void kvm_set_msi_irq(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
1372 struct kvm_lapic_irq *irq);
1373
1374 static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
1375 {
1376 if (kvm_x86_ops->vcpu_blocking)
1377 kvm_x86_ops->vcpu_blocking(vcpu);
1378 }
1379
1380 static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
1381 {
1382 if (kvm_x86_ops->vcpu_unblocking)
1383 kvm_x86_ops->vcpu_unblocking(vcpu);
1384 }
1385
1386 static inline void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu) {}
1387
1388 #endif /* _ASM_X86_KVM_HOST_H */