xref: /linux/arch/x86/include/asm/kvm_host.h (revision 35c08038cbdc14d9d638c32d5663e043d607a314)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Kernel-based Virtual Machine driver for Linux
4  *
5  * This header defines architecture specific interfaces, x86 version
6  */
7 
8 #ifndef _ASM_X86_KVM_HOST_H
9 #define _ASM_X86_KVM_HOST_H
10 
11 #include <linux/types.h>
12 #include <linux/mm.h>
13 #include <linux/mmu_notifier.h>
14 #include <linux/tracepoint.h>
15 #include <linux/cpumask.h>
16 #include <linux/irq_work.h>
17 #include <linux/irq.h>
18 #include <linux/workqueue.h>
19 
20 #include <linux/kvm.h>
21 #include <linux/kvm_para.h>
22 #include <linux/kvm_types.h>
23 #include <linux/perf_event.h>
24 #include <linux/pvclock_gtod.h>
25 #include <linux/clocksource.h>
26 #include <linux/irqbypass.h>
27 #include <linux/kfifo.h>
28 #include <linux/sched/vhost_task.h>
29 #include <linux/call_once.h>
30 #include <linux/atomic.h>
31 
32 #include <asm/apic.h>
33 #include <asm/pvclock-abi.h>
34 #include <asm/debugreg.h>
35 #include <asm/desc.h>
36 #include <asm/mtrr.h>
37 #include <asm/msr-index.h>
38 #include <asm/msr.h>
39 #include <asm/asm.h>
40 #include <asm/irq_remapping.h>
41 #include <asm/kvm_page_track.h>
42 #include <asm/kvm_vcpu_regs.h>
43 #include <asm/virt.h>
44 
45 #include <hyperv/hvhdk.h>
46 
47 #define __KVM_HAVE_ARCH_VCPU_DEBUGFS
48 
49 /*
50  * CONFIG_KVM_MAX_NR_VCPUS is defined iff CONFIG_KVM!=n, provide a dummy max if
51  * KVM is disabled (arbitrarily use the default from CONFIG_KVM_MAX_NR_VCPUS).
52  */
53 #ifdef CONFIG_KVM_MAX_NR_VCPUS
54 #define KVM_MAX_VCPUS CONFIG_KVM_MAX_NR_VCPUS
55 #else
56 #define KVM_MAX_VCPUS 1024
57 #endif
58 
59 /*
60  * In x86, the VCPU ID corresponds to the APIC ID, and APIC IDs
61  * might be larger than the actual number of VCPUs because the
62  * APIC ID encodes CPU topology information.
63  *
64  * In the worst case, we'll need less than one extra bit for the
65  * Core ID, and less than one extra bit for the Package (Die) ID,
66  * so ratio of 4 should be enough.
67  */
68 #define KVM_VCPU_ID_RATIO 4
69 #define KVM_MAX_VCPU_IDS (KVM_MAX_VCPUS * KVM_VCPU_ID_RATIO)
70 
71 /* memory slots that are not exposed to userspace */
72 #define KVM_INTERNAL_MEM_SLOTS 3
73 
74 #define KVM_HALT_POLL_NS_DEFAULT 200000
75 
76 #define KVM_IRQCHIP_NUM_PINS  KVM_IOAPIC_NUM_PINS
77 
78 #define KVM_DIRTY_LOG_MANUAL_CAPS   (KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE | \
79 					KVM_DIRTY_LOG_INITIALLY_SET)
80 
81 #define KVM_BUS_LOCK_DETECTION_VALID_MODE	(KVM_BUS_LOCK_DETECTION_OFF | \
82 						 KVM_BUS_LOCK_DETECTION_EXIT)
83 
84 #define KVM_X86_NOTIFY_VMEXIT_VALID_BITS	(KVM_X86_NOTIFY_VMEXIT_ENABLED | \
85 						 KVM_X86_NOTIFY_VMEXIT_USER)
86 
87 /* x86-specific vcpu->requests bit members */
88 #define KVM_REQ_MIGRATE_TIMER		KVM_ARCH_REQ(0)
89 #define KVM_REQ_REPORT_TPR_ACCESS	KVM_ARCH_REQ(1)
90 #define KVM_REQ_TRIPLE_FAULT		KVM_ARCH_REQ(2)
91 #define KVM_REQ_MMU_SYNC		KVM_ARCH_REQ(3)
92 #define KVM_REQ_CLOCK_UPDATE		KVM_ARCH_REQ(4)
93 #define KVM_REQ_LOAD_MMU_PGD		KVM_ARCH_REQ(5)
94 #define KVM_REQ_EVENT			KVM_ARCH_REQ(6)
95 #define KVM_REQ_APF_HALT		KVM_ARCH_REQ(7)
96 #define KVM_REQ_STEAL_UPDATE		KVM_ARCH_REQ(8)
97 #define KVM_REQ_NMI			KVM_ARCH_REQ(9)
98 #define KVM_REQ_PMU			KVM_ARCH_REQ(10)
99 #define KVM_REQ_PMI			KVM_ARCH_REQ(11)
100 #ifdef CONFIG_KVM_SMM
101 #define KVM_REQ_SMI			KVM_ARCH_REQ(12)
102 #endif
103 #define KVM_REQ_MASTERCLOCK_UPDATE	KVM_ARCH_REQ(13)
104 #define KVM_REQ_MCLOCK_INPROGRESS \
105 	KVM_ARCH_REQ_FLAGS(14, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
106 #define KVM_REQ_SCAN_IOAPIC \
107 	KVM_ARCH_REQ_FLAGS(15, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
108 #define KVM_REQ_GLOBAL_CLOCK_UPDATE	KVM_ARCH_REQ(16)
109 #define KVM_REQ_APIC_PAGE_RELOAD \
110 	KVM_ARCH_REQ_FLAGS(17, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
111 #define KVM_REQ_HV_CRASH		KVM_ARCH_REQ(18)
112 #define KVM_REQ_IOAPIC_EOI_EXIT		KVM_ARCH_REQ(19)
113 #define KVM_REQ_HV_RESET		KVM_ARCH_REQ(20)
114 #define KVM_REQ_HV_EXIT			KVM_ARCH_REQ(21)
115 #define KVM_REQ_HV_STIMER		KVM_ARCH_REQ(22)
116 #define KVM_REQ_LOAD_EOI_EXITMAP	KVM_ARCH_REQ(23)
117 #define KVM_REQ_GET_NESTED_STATE_PAGES	KVM_ARCH_REQ(24)
118 #define KVM_REQ_APICV_UPDATE \
119 	KVM_ARCH_REQ_FLAGS(25, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
120 #define KVM_REQ_TLB_FLUSH_CURRENT	KVM_ARCH_REQ(26)
121 #define KVM_REQ_TLB_FLUSH_GUEST \
122 	KVM_ARCH_REQ_FLAGS(27, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
123 #define KVM_REQ_APF_READY		KVM_ARCH_REQ(28)
124 #define KVM_REQ_RECALC_INTERCEPTS	KVM_ARCH_REQ(29)
125 #define KVM_REQ_UPDATE_CPU_DIRTY_LOGGING \
126 	KVM_ARCH_REQ_FLAGS(30, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
127 #define KVM_REQ_MMU_FREE_OBSOLETE_ROOTS \
128 	KVM_ARCH_REQ_FLAGS(31, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
129 #define KVM_REQ_HV_TLB_FLUSH \
130 	KVM_ARCH_REQ_FLAGS(32, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
131 #define KVM_REQ_UPDATE_PROTECTED_GUEST_STATE \
132 	KVM_ARCH_REQ_FLAGS(34, KVM_REQUEST_WAIT)
133 
134 #define CR0_RESERVED_BITS                                               \
135 	(~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
136 			  | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
137 			  | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
138 
139 #define CR4_RESERVED_BITS                                               \
140 	(~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
141 			  | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE     \
142 			  | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR | X86_CR4_PCIDE \
143 			  | X86_CR4_OSXSAVE | X86_CR4_SMEP | X86_CR4_FSGSBASE \
144 			  | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_VMXE \
145 			  | X86_CR4_SMAP | X86_CR4_PKE | X86_CR4_UMIP \
146 			  | X86_CR4_LAM_SUP | X86_CR4_CET))
147 
148 #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR)
149 
150 
151 
152 #define INVALID_PAGE (~(hpa_t)0)
153 #define VALID_PAGE(x) ((x) != INVALID_PAGE)
154 
155 /* KVM Hugepage definitions for x86 */
156 #define KVM_MAX_HUGEPAGE_LEVEL	PG_LEVEL_1G
157 #define KVM_NR_PAGE_SIZES	(KVM_MAX_HUGEPAGE_LEVEL - PG_LEVEL_4K + 1)
158 #define KVM_HPAGE_GFN_SHIFT(x)	(((x) - 1) * 9)
159 #define KVM_HPAGE_SHIFT(x)	(PAGE_SHIFT + KVM_HPAGE_GFN_SHIFT(x))
160 #define KVM_HPAGE_SIZE(x)	(1UL << KVM_HPAGE_SHIFT(x))
161 #define KVM_HPAGE_MASK(x)	(~(KVM_HPAGE_SIZE(x) - 1))
162 #define KVM_PAGES_PER_HPAGE(x)	(KVM_HPAGE_SIZE(x) / PAGE_SIZE)
163 
164 #define KVM_MEMSLOT_PAGES_TO_MMU_PAGES_RATIO 50
165 #define KVM_MIN_ALLOC_MMU_PAGES 64UL
166 #define KVM_MMU_HASH_SHIFT 12
167 #define KVM_NUM_MMU_PAGES (1 << KVM_MMU_HASH_SHIFT)
168 #define KVM_MIN_FREE_MMU_PAGES 5
169 #define KVM_REFILL_PAGES 25
170 #define KVM_MAX_CPUID_ENTRIES 256
171 #define KVM_NR_VAR_MTRR 8
172 
173 #define ASYNC_PF_PER_VCPU 64
174 
175 enum kvm_reg {
176 	VCPU_REGS_RAX = __VCPU_REGS_RAX,
177 	VCPU_REGS_RCX = __VCPU_REGS_RCX,
178 	VCPU_REGS_RDX = __VCPU_REGS_RDX,
179 	VCPU_REGS_RBX = __VCPU_REGS_RBX,
180 	VCPU_REGS_RSP = __VCPU_REGS_RSP,
181 	VCPU_REGS_RBP = __VCPU_REGS_RBP,
182 	VCPU_REGS_RSI = __VCPU_REGS_RSI,
183 	VCPU_REGS_RDI = __VCPU_REGS_RDI,
184 #ifdef CONFIG_X86_64
185 	VCPU_REGS_R8  = __VCPU_REGS_R8,
186 	VCPU_REGS_R9  = __VCPU_REGS_R9,
187 	VCPU_REGS_R10 = __VCPU_REGS_R10,
188 	VCPU_REGS_R11 = __VCPU_REGS_R11,
189 	VCPU_REGS_R12 = __VCPU_REGS_R12,
190 	VCPU_REGS_R13 = __VCPU_REGS_R13,
191 	VCPU_REGS_R14 = __VCPU_REGS_R14,
192 	VCPU_REGS_R15 = __VCPU_REGS_R15,
193 #endif
194 	NR_VCPU_GENERAL_PURPOSE_REGS,
195 
196 	VCPU_REG_RIP = NR_VCPU_GENERAL_PURPOSE_REGS,
197 
198 	VCPU_REG_PDPTR,
199 	VCPU_REG_CR0,
200 	/*
201 	 * Alias AMD's ERAPS (not a real register) to CR3 so that common code
202 	 * can trigger emulation of the RAP (Return Address Predictor) with
203 	 * minimal support required in common code.  Piggyback CR3 as the RAP
204 	 * is cleared on writes to CR3, i.e. marking CR3 dirty will naturally
205 	 * mark ERAPS dirty as well.
206 	 */
207 	VCPU_REG_CR3,
208 	VCPU_REG_ERAPS = VCPU_REG_CR3,
209 	VCPU_REG_CR4,
210 	VCPU_REG_RFLAGS,
211 	VCPU_REG_SEGMENTS,
212 	VCPU_REG_EXIT_INFO_1,
213 	VCPU_REG_EXIT_INFO_2,
214 
215 	NR_VCPU_TOTAL_REGS,
216 };
217 
218 enum {
219 	VCPU_SREG_ES,
220 	VCPU_SREG_CS,
221 	VCPU_SREG_SS,
222 	VCPU_SREG_DS,
223 	VCPU_SREG_FS,
224 	VCPU_SREG_GS,
225 	VCPU_SREG_TR,
226 	VCPU_SREG_LDTR,
227 };
228 
229 enum exit_fastpath_completion {
230 	EXIT_FASTPATH_NONE,
231 	EXIT_FASTPATH_REENTER_GUEST,
232 	EXIT_FASTPATH_EXIT_HANDLED,
233 	EXIT_FASTPATH_EXIT_USERSPACE,
234 };
235 typedef enum exit_fastpath_completion fastpath_t;
236 
237 struct x86_emulate_ctxt;
238 struct x86_exception;
239 union kvm_smram;
240 enum x86_intercept;
241 enum x86_intercept_stage;
242 
243 #define KVM_NR_DB_REGS	4
244 
245 #define DR6_BUS_LOCK   (1 << 11)
246 #define DR6_BD		(1 << 13)
247 #define DR6_BS		(1 << 14)
248 #define DR6_BT		(1 << 15)
249 #define DR6_RTM		(1 << 16)
250 /*
251  * DR6_ACTIVE_LOW combines fixed-1 and active-low bits.
252  * We can regard all the bits in DR6_FIXED_1 as active_low bits;
253  * they will never be 0 for now, but when they are defined
254  * in the future it will require no code change.
255  *
256  * DR6_ACTIVE_LOW is also used as the init/reset value for DR6.
257  */
258 #define DR6_ACTIVE_LOW	0xffff0ff0
259 #define DR6_VOLATILE	0x0001e80f
260 #define DR6_FIXED_1	(DR6_ACTIVE_LOW & ~DR6_VOLATILE)
261 
262 #define DR7_BP_EN_MASK	0x000000ff
263 #define DR7_GE		(1 << 9)
264 #define DR7_GD		(1 << 13)
265 #define DR7_VOLATILE	0xffff2bff
266 
267 #define KVM_GUESTDBG_VALID_MASK \
268 	(KVM_GUESTDBG_ENABLE | \
269 	KVM_GUESTDBG_SINGLESTEP | \
270 	KVM_GUESTDBG_USE_HW_BP | \
271 	KVM_GUESTDBG_USE_SW_BP | \
272 	KVM_GUESTDBG_INJECT_BP | \
273 	KVM_GUESTDBG_INJECT_DB | \
274 	KVM_GUESTDBG_BLOCKIRQ)
275 
276 #define PFERR_PRESENT_MASK	BIT(0)
277 #define PFERR_WRITE_MASK	BIT(1)
278 #define PFERR_USER_MASK		BIT(2)
279 #define PFERR_RSVD_MASK		BIT(3)
280 #define PFERR_FETCH_MASK	BIT(4)
281 #define PFERR_PK_MASK		BIT(5)
282 #define PFERR_SS_MASK		BIT(6)
283 #define PFERR_SGX_MASK		BIT(15)
284 #define PFERR_GUEST_RMP_MASK	BIT_ULL(31)
285 #define PFERR_GUEST_FINAL_MASK	BIT_ULL(32)
286 #define PFERR_GUEST_PAGE_MASK	BIT_ULL(33)
287 #define PFERR_GUEST_ENC_MASK	BIT_ULL(34)
288 #define PFERR_GUEST_SIZEM_MASK	BIT_ULL(35)
289 #define PFERR_GUEST_VMPL_MASK	BIT_ULL(36)
290 
291 /*
292  * IMPLICIT_ACCESS is a KVM-defined flag used to correctly perform SMAP checks
293  * when emulating instructions that triggers implicit access.
294  */
295 #define PFERR_IMPLICIT_ACCESS	BIT_ULL(48)
296 /*
297  * PRIVATE_ACCESS is a KVM-defined flag us to indicate that a fault occurred
298  * when the guest was accessing private memory.
299  */
300 #define PFERR_PRIVATE_ACCESS   BIT_ULL(49)
301 #define PFERR_SYNTHETIC_MASK   (PFERR_IMPLICIT_ACCESS | PFERR_PRIVATE_ACCESS)
302 
303 /* apic attention bits */
304 #define KVM_APIC_CHECK_VAPIC	0
305 /*
306  * The following bit is set with PV-EOI, unset on EOI.
307  * We detect PV-EOI changes by guest by comparing
308  * this bit with PV-EOI in guest memory.
309  * See the implementation in apic_update_pv_eoi.
310  */
311 #define KVM_APIC_PV_EOI_PENDING	1
312 
313 struct kvm_kernel_irqfd;
314 struct kvm_kernel_irq_routing_entry;
315 
316 /*
317  * kvm_mmu_page_role tracks the properties of a shadow page (where shadow page
318  * also includes TDP pages) to determine whether or not a page can be used in
319  * the given MMU context.  This is a subset of the overall kvm_cpu_role to
320  * minimize the size of kvm_memory_slot.arch.gfn_write_track, i.e. allows
321  * allocating 2 bytes per gfn instead of 4 bytes per gfn.
322  *
323  * Upper-level shadow pages having gptes are tracked for write-protection via
324  * gfn_write_track.  As above, gfn_write_track is a 16 bit counter, so KVM must
325  * not create more than 2^16-1 upper-level shadow pages at a single gfn,
326  * otherwise gfn_write_track will overflow and explosions will ensue.
327  *
328  * A unique shadow page (SP) for a gfn is created if and only if an existing SP
329  * cannot be reused.  The ability to reuse a SP is tracked by its role, which
330  * incorporates various mode bits and properties of the SP.  Roughly speaking,
331  * the number of unique SPs that can theoretically be created is 2^n, where n
332  * is the number of bits that are used to compute the role.
333  *
334  * But, even though there are 21 bits in the mask below, not all combinations
335  * of modes and flags are possible:
336  *
337  *   - invalid shadow pages are not accounted, mirror pages are not shadowed,
338  *     so the bits are effectively 19.
339  *
340  *   - quadrant will only be used if has_4_byte_gpte=1 (non-PAE paging);
341  *     execonly and ad_disabled are only used for nested EPT which has
342  *     has_4_byte_gpte=0.  Therefore, 2 bits are always unused.
343  *
344  *   - the 4 bits of level are effectively limited to the values 2/3/4/5,
345  *     as 4k SPs are not tracked (allowed to go unsync).  In addition non-PAE
346  *     paging has exactly one upper level, making level completely redundant
347  *     when has_4_byte_gpte=1.
348  *
349  *   - on top of this, smap_andnot_wp is only set if cr0_wp=0,
350  *     therefore these two bits only give rise to 3 possibilities.
351  *
352  * Therefore, the maximum number of possible upper-level shadow pages for a
353  * single gfn is a bit less than 2^14.
354  */
355 union kvm_mmu_page_role {
356 	u32 word;
357 	struct {
358 		unsigned level:4;
359 		unsigned has_4_byte_gpte:1;
360 		unsigned quadrant:2;
361 		unsigned direct:1;
362 		unsigned access:4;
363 		unsigned invalid:1;
364 		unsigned efer_nx:1;
365 		unsigned cr0_wp:1;
366 		unsigned smap_andnot_wp:1;
367 		unsigned ad_disabled:1;
368 		unsigned guest_mode:1;
369 		unsigned passthrough:1;
370 		unsigned is_mirror:1;
371 
372 		/*
373 		 * cr4_smep is also set for EPT MBEC.  Because it affects
374 		 * which pages are considered non-present (bit 10 additionally
375 		 * must be zero if MBEC is on) it has to be in the base role.
376 		 * It also has to be in the base role for AMD GMET because
377 		 * kernel-executable pages need to have U=0 with GMET enabled.
378 		 */
379 		unsigned cr4_smep:1;
380 
381 		unsigned:3;
382 
383 		/*
384 		 * This is left at the top of the word so that
385 		 * kvm_memslots_for_spte_role can extract it with a
386 		 * simple shift.  While there is room, give it a whole
387 		 * byte so it is also faster to load it from memory.
388 		 */
389 		unsigned smm:8;
390 	};
391 };
392 
393 /*
394  * kvm_mmu_extended_role complements kvm_mmu_page_role, tracking properties
395  * relevant to the current MMU configuration.   When loading CR0, CR4, or EFER,
396  * including on nested transitions, if nothing in the full role changes then
397  * MMU re-configuration can be skipped. @valid bit is set on first usage so we
398  * don't treat all-zero structure as valid data.
399  *
400  * The properties that are tracked in the extended role but not the page role
401  * are for things that either (a) do not affect the validity of the shadow page
402  * or (b) are indirectly reflected in the shadow page's role.  For example,
403  * CR4.PKE only affects permission checks for software walks of the guest page
404  * tables (because KVM doesn't support Protection Keys with shadow paging), and
405  * CR0.PG, CR4.PAE, and CR4.PSE are indirectly reflected in role.level.
406  *
407  * Note, SMAP is not redundant with smap_andnot_wp in the page role.  If
408  * CR0.WP=1, KVM can reuse shadow pages for the guest regardless of SMAP,
409  * but the MMU's permission checks for software walks need to be SMAP
410  * aware regardless of CR0.WP.
411  */
412 union kvm_mmu_extended_role {
413 	u32 word;
414 	struct {
415 		unsigned int valid:1;
416 		unsigned int execonly:1;
417 		unsigned int cr4_pse:1;
418 		unsigned int cr4_pke:1;
419 		unsigned int cr4_smap:1;
420 		unsigned int cr4_la57:1;
421 		unsigned int efer_lma:1;
422 
423 		/*
424 		 * True if either CR4.SMEP or EFER.NXE are set.  For AMD NPT
425 		 * this is the "real" host CR4.SMEP whereas cr4_smep is
426 		 * actually GMET.
427 		 */
428 		unsigned int has_pferr_fetch:1;
429 	};
430 };
431 
432 union kvm_cpu_role {
433 	u64 as_u64;
434 	struct {
435 		union kvm_mmu_page_role base;
436 		union kvm_mmu_extended_role ext;
437 	};
438 };
439 
440 struct kvm_rmap_head {
441 	atomic_long_t val;
442 };
443 
444 struct kvm_pio_request {
445 	unsigned long count;
446 	int in;
447 	int port;
448 	int size;
449 };
450 
451 #define PT64_ROOT_MAX_LEVEL 5
452 
453 struct rsvd_bits_validate {
454 	u64 rsvd_bits_mask[2][PT64_ROOT_MAX_LEVEL];
455 	u64 bad_mt_xwr;
456 };
457 
458 struct kvm_mmu_root_info {
459 	gpa_t pgd;
460 	hpa_t hpa;
461 };
462 
463 #define KVM_MMU_ROOT_INFO_INVALID \
464 	((struct kvm_mmu_root_info) { .pgd = INVALID_PAGE, .hpa = INVALID_PAGE })
465 
466 #define KVM_MMU_NUM_PREV_ROOTS 3
467 
468 #define KVM_MMU_ROOT_CURRENT		BIT(0)
469 #define KVM_MMU_ROOT_PREVIOUS(i)	BIT(1+i)
470 #define KVM_MMU_ROOTS_ALL		(BIT(1 + KVM_MMU_NUM_PREV_ROOTS) - 1)
471 
472 #define KVM_HAVE_MMU_RWLOCK
473 
474 struct kvm_mmu_page;
475 struct kvm_page_fault;
476 
477 /*
478  * x86 supports 4 paging modes (5-level 64-bit, 4-level 64-bit, 3-level 32-bit,
479  * and 2-level 32-bit).  The kvm_mmu structure abstracts the details of the
480  * current mmu mode.
481  */
482 struct kvm_mmu {
483 	unsigned long (*get_guest_pgd)(struct kvm_vcpu *vcpu);
484 	u64 (*get_pdptr)(struct kvm_vcpu *vcpu, int index);
485 	int (*page_fault)(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault);
486 	void (*inject_page_fault)(struct kvm_vcpu *vcpu,
487 				  struct x86_exception *fault);
488 	gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
489 			    gpa_t gva_or_gpa, u64 access,
490 			    struct x86_exception *exception);
491 	int (*sync_spte)(struct kvm_vcpu *vcpu,
492 			 struct kvm_mmu_page *sp, int i);
493 	struct kvm_mmu_root_info root;
494 	hpa_t mirror_root_hpa;
495 	union kvm_cpu_role cpu_role;
496 	union kvm_mmu_page_role root_role;
497 
498 	/*
499 	* The pkru_mask indicates if protection key checks are needed.  It
500 	* consists of 16 domains indexed by page fault error code bits [4:1],
501 	* with PFEC.RSVD replaced by ACC_USER_MASK from the page tables.
502 	* Each domain has 2 bits which are ANDed with AD and WD from PKRU.
503 	*/
504 	u32 pkru_mask;
505 
506 	struct kvm_mmu_root_info prev_roots[KVM_MMU_NUM_PREV_ROOTS];
507 
508 	/*
509 	 * Bitmap; bit set = permission fault
510 	 * Byte index: page fault error code [4:1]
511 	 * Bit index: pte permissions in ACC_* format
512 	 */
513 	u16 permissions[16];
514 
515 	u64 *pae_root;
516 	u64 *pml4_root;
517 	u64 *pml5_root;
518 
519 	/*
520 	 * check zero bits on shadow page table entries, these
521 	 * bits include not only hardware reserved bits but also
522 	 * the bits spte never used.
523 	 */
524 	struct rsvd_bits_validate shadow_zero_check;
525 
526 	struct rsvd_bits_validate guest_rsvd_check;
527 
528 	u64 pdptrs[4]; /* pae */
529 };
530 
531 enum pmc_type {
532 	KVM_PMC_GP = 0,
533 	KVM_PMC_FIXED,
534 };
535 
536 struct kvm_pmc {
537 	enum pmc_type type;
538 	u8 idx;
539 	bool is_paused;
540 	bool intr;
541 	/*
542 	 * Base value of the PMC counter, relative to the *consumed* count in
543 	 * the associated perf_event.  This value includes counter updates from
544 	 * the perf_event and emulated_count since the last time the counter
545 	 * was reprogrammed, but it is *not* the current value as seen by the
546 	 * guest or userspace.
547 	 *
548 	 * The count is relative to the associated perf_event so that KVM
549 	 * doesn't need to reprogram the perf_event every time the guest writes
550 	 * to the counter.
551 	 */
552 	u64 counter;
553 	/*
554 	 * PMC events triggered by KVM emulation that haven't been fully
555 	 * processed, i.e. haven't undergone overflow detection.
556 	 */
557 	u64 emulated_counter;
558 	u64 eventsel;
559 	u64 eventsel_hw;
560 	struct perf_event *perf_event;
561 	struct kvm_vcpu *vcpu;
562 	/*
563 	 * only for creating or reusing perf_event,
564 	 * eventsel value for general purpose counters,
565 	 * ctrl value for fixed counters.
566 	 */
567 	u64 current_config;
568 };
569 
570 /* More counters may conflict with other existing Architectural MSRs */
571 #define KVM_MAX(a, b)	((a) >= (b) ? (a) : (b))
572 #define KVM_MAX_NR_INTEL_GP_COUNTERS	8
573 #define KVM_MAX_NR_AMD_GP_COUNTERS	6
574 #define KVM_MAX_NR_GP_COUNTERS		KVM_MAX(KVM_MAX_NR_INTEL_GP_COUNTERS, \
575 						KVM_MAX_NR_AMD_GP_COUNTERS)
576 
577 #define KVM_MAX_NR_INTEL_FIXED_COUNTERS	3
578 #define KVM_MAX_NR_AMD_FIXED_COUNTERS	0
579 #define KVM_MAX_NR_FIXED_COUNTERS	KVM_MAX(KVM_MAX_NR_INTEL_FIXED_COUNTERS, \
580 						KVM_MAX_NR_AMD_FIXED_COUNTERS)
581 
582 struct kvm_pmu {
583 	u8 version;
584 	unsigned nr_arch_gp_counters;
585 	unsigned nr_arch_fixed_counters;
586 	unsigned available_event_types;
587 	u64 fixed_ctr_ctrl;
588 	u64 fixed_ctr_ctrl_hw;
589 	u64 fixed_ctr_ctrl_rsvd;
590 	u64 global_ctrl;
591 	u64 global_status;
592 	u64 counter_bitmask[2];
593 	u64 global_ctrl_rsvd;
594 	u64 global_status_rsvd;
595 	u64 reserved_bits;
596 	u64 raw_event_mask;
597 	struct kvm_pmc gp_counters[KVM_MAX_NR_GP_COUNTERS];
598 	struct kvm_pmc fixed_counters[KVM_MAX_NR_FIXED_COUNTERS];
599 
600 	/*
601 	 * Overlay the bitmap with a 64-bit atomic so that all bits can be
602 	 * set in a single access, e.g. to reprogram all counters when the PMU
603 	 * filter changes.
604 	 */
605 	union {
606 		DECLARE_BITMAP(reprogram_pmi, X86_PMC_IDX_MAX);
607 		atomic64_t __reprogram_pmi;
608 	};
609 	DECLARE_BITMAP(all_valid_pmc_idx, X86_PMC_IDX_MAX);
610 	DECLARE_BITMAP(pmc_in_use, X86_PMC_IDX_MAX);
611 
612 	DECLARE_BITMAP(pmc_counting_instructions, X86_PMC_IDX_MAX);
613 	DECLARE_BITMAP(pmc_counting_branches, X86_PMC_IDX_MAX);
614 
615 	u64 ds_area;
616 	u64 pebs_enable;
617 	u64 pebs_enable_rsvd;
618 	u64 pebs_data_cfg;
619 	u64 pebs_data_cfg_rsvd;
620 
621 	/*
622 	 * If a guest counter is cross-mapped to host counter with different
623 	 * index, its PEBS capability will be temporarily disabled.
624 	 *
625 	 * The user should make sure that this mask is updated
626 	 * after disabling interrupts and before perf_guest_get_msrs();
627 	 */
628 	u64 host_cross_mapped_mask;
629 
630 	/*
631 	 * The gate to release perf_events not marked in
632 	 * pmc_in_use only once in a vcpu time slice.
633 	 */
634 	bool need_cleanup;
635 
636 	/*
637 	 * The total number of programmed perf_events and it helps to avoid
638 	 * redundant check before cleanup if guest don't use vPMU at all.
639 	 */
640 	u8 event_count;
641 };
642 
643 struct kvm_pmu_ops;
644 
645 enum {
646 	KVM_DEBUGREG_BP_ENABLED		= BIT(0),
647 	KVM_DEBUGREG_WONT_EXIT		= BIT(1),
648 	/*
649 	 * Guest debug registers (DR0-3, DR6 and DR7) are saved/restored by
650 	 * hardware on exit from or enter to guest. KVM needn't switch them.
651 	 * DR0-3, DR6 and DR7 are set to their architectural INIT value on VM
652 	 * exit, host values need to be restored.
653 	 */
654 	KVM_DEBUGREG_AUTO_SWITCH	= BIT(2),
655 };
656 
657 struct kvm_mtrr {
658 	u64 var[KVM_NR_VAR_MTRR * 2];
659 	u64 fixed_64k;
660 	u64 fixed_16k[2];
661 	u64 fixed_4k[8];
662 	u64 deftype;
663 };
664 
665 /* Hyper-V SynIC timer */
666 struct kvm_vcpu_hv_stimer {
667 	struct hrtimer timer;
668 	int index;
669 	union hv_stimer_config config;
670 	u64 count;
671 	u64 exp_time;
672 	struct hv_message msg;
673 	bool msg_pending;
674 };
675 
676 /* Hyper-V synthetic interrupt controller (SynIC)*/
677 struct kvm_vcpu_hv_synic {
678 	u64 version;
679 	u64 control;
680 	u64 msg_page;
681 	u64 evt_page;
682 	atomic64_t sint[HV_SYNIC_SINT_COUNT];
683 	atomic_t sint_to_gsi[HV_SYNIC_SINT_COUNT];
684 	DECLARE_BITMAP(auto_eoi_bitmap, 256);
685 	DECLARE_BITMAP(vec_bitmap, 256);
686 	bool active;
687 	bool dont_zero_synic_pages;
688 };
689 
690 /* The maximum number of entries on the TLB flush fifo. */
691 #define KVM_HV_TLB_FLUSH_FIFO_SIZE (16)
692 /*
693  * Note: the following 'magic' entry is made up by KVM to avoid putting
694  * anything besides GVA on the TLB flush fifo. It is theoretically possible
695  * to observe a request to flush 4095 PFNs starting from 0xfffffffffffff000
696  * which will look identical. KVM's action to 'flush everything' instead of
697  * flushing these particular addresses is, however, fully legitimate as
698  * flushing more than requested is always OK.
699  */
700 #define KVM_HV_TLB_FLUSHALL_ENTRY  ((u64)-1)
701 
702 enum hv_tlb_flush_fifos {
703 	HV_L1_TLB_FLUSH_FIFO,
704 	HV_L2_TLB_FLUSH_FIFO,
705 	HV_NR_TLB_FLUSH_FIFOS,
706 };
707 
708 struct kvm_vcpu_hv_tlb_flush_fifo {
709 	spinlock_t write_lock;
710 	DECLARE_KFIFO(entries, u64, KVM_HV_TLB_FLUSH_FIFO_SIZE);
711 };
712 
713 /* Hyper-V per vcpu emulation context */
714 struct kvm_vcpu_hv {
715 	struct kvm_vcpu *vcpu;
716 	u32 vp_index;
717 	u64 hv_vapic;
718 	s64 runtime_offset;
719 	struct kvm_vcpu_hv_synic synic;
720 	struct kvm_hyperv_exit exit;
721 	struct kvm_vcpu_hv_stimer stimer[HV_SYNIC_STIMER_COUNT];
722 	DECLARE_BITMAP(stimer_pending_bitmap, HV_SYNIC_STIMER_COUNT);
723 	bool enforce_cpuid;
724 	struct {
725 		u32 features_eax; /* HYPERV_CPUID_FEATURES.EAX */
726 		u32 features_ebx; /* HYPERV_CPUID_FEATURES.EBX */
727 		u32 features_edx; /* HYPERV_CPUID_FEATURES.EDX */
728 		u32 enlightenments_eax; /* HYPERV_CPUID_ENLIGHTMENT_INFO.EAX */
729 		u32 enlightenments_ebx; /* HYPERV_CPUID_ENLIGHTMENT_INFO.EBX */
730 		u32 syndbg_cap_eax; /* HYPERV_CPUID_SYNDBG_PLATFORM_CAPABILITIES.EAX */
731 		u32 nested_eax; /* HYPERV_CPUID_NESTED_FEATURES.EAX */
732 		u32 nested_ebx; /* HYPERV_CPUID_NESTED_FEATURES.EBX */
733 	} cpuid_cache;
734 
735 	struct kvm_vcpu_hv_tlb_flush_fifo tlb_flush_fifo[HV_NR_TLB_FLUSH_FIFOS];
736 
737 	/*
738 	 * Preallocated buffers for handling hypercalls that pass sparse vCPU
739 	 * sets (for high vCPU counts, they're too large to comfortably fit on
740 	 * the stack).
741 	 */
742 	u64 sparse_banks[HV_MAX_SPARSE_VCPU_BANKS];
743 	DECLARE_BITMAP(vcpu_mask, KVM_MAX_VCPUS);
744 
745 	struct hv_vp_assist_page vp_assist_page;
746 
747 	struct {
748 		u64 pa_page_gpa;
749 		u64 vm_id;
750 		u32 vp_id;
751 	} nested;
752 };
753 
754 struct kvm_hypervisor_cpuid {
755 	u32 base;
756 	u32 limit;
757 };
758 
759 #ifdef CONFIG_KVM_XEN
760 /* Xen HVM per vcpu emulation context */
761 struct kvm_vcpu_xen {
762 	u64 hypercall_rip;
763 	u32 current_runstate;
764 	u8 upcall_vector;
765 	struct gfn_to_pfn_cache vcpu_info_cache;
766 	struct gfn_to_pfn_cache vcpu_time_info_cache;
767 	struct gfn_to_pfn_cache runstate_cache;
768 	struct gfn_to_pfn_cache runstate2_cache;
769 	u64 last_steal;
770 	u64 runstate_entry_time;
771 	u64 runstate_times[4];
772 	unsigned long evtchn_pending_sel;
773 	u32 vcpu_id; /* The Xen / ACPI vCPU ID */
774 	u32 timer_virq;
775 	u64 timer_expires; /* In guest epoch */
776 	atomic_t timer_pending;
777 	struct hrtimer timer;
778 	int poll_evtchn;
779 	struct timer_list poll_timer;
780 	struct kvm_hypervisor_cpuid cpuid;
781 };
782 #endif
783 
784 struct kvm_queued_exception {
785 	bool pending;
786 	bool injected;
787 	bool has_error_code;
788 	u8 vector;
789 	u32 error_code;
790 	unsigned long payload;
791 	bool has_payload;
792 };
793 
794 /*
795  * Hardware-defined CPUID leafs that are either scattered by the kernel or are
796  * unknown to the kernel, but need to be directly used by KVM.  Note, these
797  * word values conflict with the kernel's "bug" caps, but KVM doesn't use those.
798  */
799 enum kvm_only_cpuid_leafs {
800 	CPUID_12_EAX	 = NCAPINTS,
801 	CPUID_7_1_EDX,
802 	CPUID_8000_0007_EDX,
803 	CPUID_8000_0022_EAX,
804 	CPUID_7_2_EDX,
805 	CPUID_24_0_EBX,
806 	CPUID_8000_0021_ECX,
807 	CPUID_7_1_ECX,
808 	CPUID_1E_1_EAX,
809 	CPUID_24_1_ECX,
810 	NR_KVM_CPU_CAPS,
811 
812 	NKVMCAPINTS = NR_KVM_CPU_CAPS - NCAPINTS,
813 };
814 
815 struct kvm_vcpu_arch {
816 	/*
817 	 * rip and regs accesses must go through
818 	 * kvm_{register,rip}_{read,write} functions.
819 	 */
820 	unsigned long regs[NR_VCPU_GENERAL_PURPOSE_REGS];
821 	unsigned long rip;
822 	DECLARE_BITMAP(regs_avail, NR_VCPU_TOTAL_REGS);
823 	DECLARE_BITMAP(regs_dirty, NR_VCPU_TOTAL_REGS);
824 
825 	unsigned long cr0;
826 	unsigned long cr0_guest_owned_bits;
827 	unsigned long cr2;
828 	unsigned long cr3;
829 	unsigned long cr4;
830 	unsigned long cr4_guest_owned_bits;
831 	unsigned long cr4_guest_rsvd_bits;
832 	unsigned long cr8;
833 	u32 host_pkru;
834 	u32 pkru;
835 	u32 hflags;
836 	u64 efer;
837 	u64 host_debugctl;
838 	u64 apic_base;
839 	struct kvm_lapic *apic;    /* kernel irqchip context */
840 	bool load_eoi_exitmap_pending;
841 	DECLARE_BITMAP(ioapic_handled_vectors, 256);
842 	unsigned long apic_attention;
843 	int32_t apic_arb_prio;
844 	int mp_state;
845 	u64 ia32_misc_enable_msr;
846 	u64 smbase;
847 	u64 smi_count;
848 	bool at_instruction_boundary;
849 	bool tpr_access_reporting;
850 	bool xfd_no_write_intercept;
851 	u64 microcode_version;
852 	u64 arch_capabilities;
853 	u64 perf_capabilities;
854 
855 	/*
856 	 * Paging state of the vcpu
857 	 *
858 	 * If the vcpu runs in guest mode with two level paging this still saves
859 	 * the paging mode of the l1 guest. This context is always used to
860 	 * handle faults.
861 	 */
862 	struct kvm_mmu *mmu;
863 
864 	/* Non-nested MMU for L1 */
865 	struct kvm_mmu root_mmu;
866 
867 	/* L1 MMU when running nested */
868 	struct kvm_mmu guest_mmu;
869 
870 	/*
871 	 * Paging state of an L2 guest (used for nested npt)
872 	 *
873 	 * This context will save all necessary information to walk page tables
874 	 * of an L2 guest. This context is only initialized for page table
875 	 * walking and not for faulting since we never handle l2 page faults on
876 	 * the host.
877 	 */
878 	struct kvm_mmu nested_mmu;
879 
880 	/*
881 	 * Pointer to the mmu context currently used for
882 	 * gva_to_gpa translations.
883 	 */
884 	struct kvm_mmu *walk_mmu;
885 
886 	struct kvm_mmu_memory_cache mmu_pte_list_desc_cache;
887 	struct kvm_mmu_memory_cache mmu_shadow_page_cache;
888 	struct kvm_mmu_memory_cache mmu_shadowed_info_cache;
889 	struct kvm_mmu_memory_cache mmu_page_header_cache;
890 	/*
891 	 * This cache is to allocate external page table. E.g. private EPT used
892 	 * by the TDX module.
893 	 */
894 	struct kvm_mmu_memory_cache mmu_external_spt_cache;
895 
896 	/*
897 	 * QEMU userspace and the guest each have their own FPU state.
898 	 * In vcpu_run, we switch between the user and guest FPU contexts.
899 	 * While running a VCPU, the VCPU thread will have the guest FPU
900 	 * context.
901 	 *
902 	 * Note that while the PKRU state lives inside the fpu registers,
903 	 * it is switched out separately at VMENTER and VMEXIT time. The
904 	 * "guest_fpstate" state here contains the guest FPU context, with the
905 	 * host PRKU bits.
906 	 */
907 	struct fpu_guest guest_fpu;
908 
909 	u64 xcr0;
910 	u64 guest_supported_xcr0;
911 	u64 ia32_xss;
912 	u64 guest_supported_xss;
913 
914 	struct kvm_pio_request pio;
915 	void *pio_data;
916 	void *sev_pio_data;
917 	unsigned sev_pio_count;
918 
919 	u8 event_exit_inst_len;
920 
921 	bool exception_from_userspace;
922 
923 	/* Exceptions to be injected to the guest. */
924 	struct kvm_queued_exception exception;
925 	/* Exception VM-Exits to be synthesized to L1. */
926 	struct kvm_queued_exception exception_vmexit;
927 
928 	struct kvm_queued_interrupt {
929 		bool injected;
930 		bool soft;
931 		u8 nr;
932 	} interrupt;
933 
934 	int halt_request; /* real mode on Intel only */
935 
936 	int cpuid_nent;
937 	struct kvm_cpuid_entry2 *cpuid_entries;
938 	bool cpuid_dynamic_bits_dirty;
939 	bool is_amd_compatible;
940 
941 	/*
942 	 * cpu_caps holds the effective guest capabilities, i.e. the features
943 	 * the vCPU is allowed to use.  Typically, but not always, features can
944 	 * be used by the guest if and only if both KVM and userspace want to
945 	 * expose the feature to the guest.
946 	 *
947 	 * A common exception is for virtualization holes, i.e. when KVM can't
948 	 * prevent the guest from using a feature, in which case the vCPU "has"
949 	 * the feature regardless of what KVM or userspace desires.
950 	 *
951 	 * Note, features that don't require KVM involvement in any way are
952 	 * NOT enforced/sanitized by KVM, i.e. are taken verbatim from the
953 	 * guest CPUID provided by userspace.
954 	 */
955 	u32 cpu_caps[NR_KVM_CPU_CAPS];
956 
957 	u64 reserved_gpa_bits;
958 	int maxphyaddr;
959 
960 	/* emulate context */
961 
962 	struct x86_emulate_ctxt *emulate_ctxt;
963 	bool emulate_regs_need_sync_to_vcpu;
964 	bool emulate_regs_need_sync_from_vcpu;
965 	int (*complete_userspace_io)(struct kvm_vcpu *vcpu);
966 	unsigned long cui_linear_rip;
967 	int cui_rdmsr_imm_reg;
968 
969 	gpa_t time;
970 	s8  pvclock_tsc_shift;
971 	u32 pvclock_tsc_mul;
972 	unsigned int hw_tsc_khz;
973 	struct gfn_to_pfn_cache pv_time;
974 	/* set guest stopped flag in pvclock flags field */
975 	bool pvclock_set_guest_stopped_request;
976 
977 	struct {
978 		u8 preempted;
979 		u64 msr_val;
980 		u64 last_steal;
981 		struct gfn_to_hva_cache cache;
982 	} st;
983 
984 	u64 l1_tsc_offset;
985 	u64 tsc_offset; /* current tsc offset */
986 	u64 last_guest_tsc;
987 	u64 last_host_tsc;
988 	u64 tsc_offset_adjustment;
989 	u64 this_tsc_nsec;
990 	u64 this_tsc_write;
991 	u64 this_tsc_generation;
992 	bool tsc_catchup;
993 	bool tsc_always_catchup;
994 	s8 virtual_tsc_shift;
995 	u32 virtual_tsc_mult;
996 	u32 virtual_tsc_khz;
997 	s64 ia32_tsc_adjust_msr;
998 	u64 msr_ia32_power_ctl;
999 	u64 l1_tsc_scaling_ratio;
1000 	u64 tsc_scaling_ratio; /* current scaling ratio */
1001 
1002 	atomic_t nmi_queued;  /* unprocessed asynchronous NMIs */
1003 	/* Number of NMIs pending injection, not including hardware vNMIs. */
1004 	unsigned int nmi_pending;
1005 	bool nmi_injected;    /* Trying to inject an NMI this entry */
1006 	bool smi_pending;    /* SMI queued after currently running handler */
1007 	u8 handling_intr_from_guest;
1008 
1009 	struct kvm_mtrr mtrr_state;
1010 	u64 pat;
1011 
1012 	unsigned switch_db_regs;
1013 	unsigned long db[KVM_NR_DB_REGS];
1014 	unsigned long dr6;
1015 	unsigned long dr7;
1016 	unsigned long eff_db[KVM_NR_DB_REGS];
1017 	unsigned long guest_debug_dr7;
1018 	u64 msr_platform_info;
1019 	u64 msr_misc_features_enables;
1020 
1021 	u64 mcg_cap;
1022 	u64 mcg_status;
1023 	u64 mcg_ctl;
1024 	u64 mcg_ext_ctl;
1025 	u64 *mce_banks;
1026 	u64 *mci_ctl2_banks;
1027 
1028 	/* Cache MMIO info */
1029 	u64 mmio_gva;
1030 	unsigned mmio_access;
1031 	gfn_t mmio_gfn;
1032 	u64 mmio_gen;
1033 
1034 	struct kvm_pmu pmu;
1035 
1036 	/* used for guest single stepping over the given code position */
1037 	unsigned long singlestep_rip;
1038 
1039 #ifdef CONFIG_KVM_HYPERV
1040 	bool hyperv_enabled;
1041 	struct kvm_vcpu_hv *hyperv;
1042 #endif
1043 #ifdef CONFIG_KVM_XEN
1044 	struct kvm_vcpu_xen xen;
1045 #endif
1046 	cpumask_var_t wbinvd_dirty_mask;
1047 
1048 	unsigned long last_retry_eip;
1049 	unsigned long last_retry_addr;
1050 
1051 	struct {
1052 		bool halted;
1053 		gfn_t gfns[ASYNC_PF_PER_VCPU];
1054 		struct gfn_to_hva_cache data;
1055 		u64 msr_en_val; /* MSR_KVM_ASYNC_PF_EN */
1056 		u64 msr_int_val; /* MSR_KVM_ASYNC_PF_INT */
1057 		u16 vec;
1058 		u32 id;
1059 		u32 host_apf_flags;
1060 		bool pageready_pending;
1061 	} apf;
1062 
1063 	/* OSVW MSRs (AMD only) */
1064 	struct {
1065 		u64 length;
1066 		u64 status;
1067 	} osvw;
1068 
1069 	struct {
1070 		u64 msr_val;
1071 		struct gfn_to_hva_cache data;
1072 	} pv_eoi;
1073 
1074 	u64 msr_kvm_poll_control;
1075 
1076 	/* pv related host specific info */
1077 	struct {
1078 		bool pv_unhalted;
1079 	} pv;
1080 
1081 	int pending_ioapic_eoi;
1082 	int pending_external_vector;
1083 	int highest_stale_pending_ioapic_eoi;
1084 
1085 	/* be preempted when it's in kernel-mode(cpl=0) */
1086 	bool preempted_in_kernel;
1087 
1088 	/* Host CPU on which VM-entry was most recently attempted */
1089 	int last_vmentry_cpu;
1090 
1091 	/* AMD MSRC001_0015 Hardware Configuration */
1092 	u64 msr_hwcr;
1093 
1094 	/* pv related cpuid info */
1095 	struct {
1096 		/*
1097 		 * value of the eax register in the KVM_CPUID_FEATURES CPUID
1098 		 * leaf.
1099 		 */
1100 		u32 features;
1101 
1102 		/*
1103 		 * indicates whether pv emulation should be disabled if features
1104 		 * are not present in the guest's cpuid
1105 		 */
1106 		bool enforce;
1107 	} pv_cpuid;
1108 
1109 	/* Protected Guests */
1110 	bool guest_state_protected;
1111 	bool guest_tsc_protected;
1112 
1113 	/*
1114 	 * Set when PDPTS were loaded directly by the userspace without
1115 	 * reading the guest memory
1116 	 */
1117 	bool pdptrs_from_userspace;
1118 
1119 	/*
1120 	 * Set if an emulated nested VM-Enter to L2 is pending completion.  KVM
1121 	 * must not synthesize a VM-Exit to L1 before entering L2, as VM-Exits
1122 	 * can only occur at instruction boundaries.  The only exception is
1123 	 * VMX's "notify" exits, which exist in large part to break the CPU out
1124 	 * of infinite ucode loops, but can corrupt vCPU state in the process!
1125 	 *
1126 	 * For all intents and purposes, this is a boolean, but it's tracked as
1127 	 * a u8 so that KVM can detect when userspace may have stuffed vCPU
1128 	 * state and generated an architecturally-impossible VM-Exit.
1129 	 */
1130 #define KVM_NESTED_RUN_PENDING			1
1131 #define KVM_NESTED_RUN_PENDING_UNTRUSTED	2
1132 	u8 nested_run_pending;
1133 
1134 #if IS_ENABLED(CONFIG_HYPERV)
1135 	hpa_t hv_root_tdp;
1136 #endif
1137 };
1138 
1139 struct kvm_lpage_info {
1140 	int disallow_lpage;
1141 };
1142 
1143 struct kvm_arch_memory_slot {
1144 	struct kvm_rmap_head *rmap[KVM_NR_PAGE_SIZES];
1145 	struct kvm_lpage_info *lpage_info[KVM_NR_PAGE_SIZES - 1];
1146 	unsigned short *gfn_write_track;
1147 };
1148 
1149 /*
1150  * Track the mode of the optimized logical map, as the rules for decoding the
1151  * destination vary per mode.  Enabling the optimized logical map requires all
1152  * software-enabled local APIs to be in the same mode, each addressable APIC to
1153  * be mapped to only one MDA, and each MDA to map to at most one APIC.
1154  */
1155 enum kvm_apic_logical_mode {
1156 	/* All local APICs are software disabled. */
1157 	KVM_APIC_MODE_SW_DISABLED,
1158 	/* All software enabled local APICs in xAPIC cluster addressing mode. */
1159 	KVM_APIC_MODE_XAPIC_CLUSTER,
1160 	/* All software enabled local APICs in xAPIC flat addressing mode. */
1161 	KVM_APIC_MODE_XAPIC_FLAT,
1162 	/* All software enabled local APICs in x2APIC mode. */
1163 	KVM_APIC_MODE_X2APIC,
1164 	/*
1165 	 * Optimized map disabled, e.g. not all local APICs in the same logical
1166 	 * mode, same logical ID assigned to multiple APICs, etc.
1167 	 */
1168 	KVM_APIC_MODE_MAP_DISABLED,
1169 };
1170 
1171 struct kvm_apic_map {
1172 	struct rcu_head rcu;
1173 	enum kvm_apic_logical_mode logical_mode;
1174 	u32 max_apic_id;
1175 	union {
1176 		struct kvm_lapic *xapic_flat_map[8];
1177 		struct kvm_lapic *xapic_cluster_map[16][4];
1178 	};
1179 	struct kvm_lapic *phys_map[];
1180 };
1181 
1182 /* Hyper-V synthetic debugger (SynDbg)*/
1183 struct kvm_hv_syndbg {
1184 	struct {
1185 		u64 control;
1186 		u64 status;
1187 		u64 send_page;
1188 		u64 recv_page;
1189 		u64 pending_page;
1190 	} control;
1191 	u64 options;
1192 };
1193 
1194 /* Current state of Hyper-V TSC page clocksource */
1195 enum hv_tsc_page_status {
1196 	/* TSC page was not set up or disabled */
1197 	HV_TSC_PAGE_UNSET = 0,
1198 	/* TSC page MSR was written by the guest, update pending */
1199 	HV_TSC_PAGE_GUEST_CHANGED,
1200 	/* TSC page update was triggered from the host side */
1201 	HV_TSC_PAGE_HOST_CHANGED,
1202 	/* TSC page was properly set up and is currently active  */
1203 	HV_TSC_PAGE_SET,
1204 	/* TSC page was set up with an inaccessible GPA */
1205 	HV_TSC_PAGE_BROKEN,
1206 };
1207 
1208 #ifdef CONFIG_KVM_HYPERV
1209 /* Hyper-V emulation context */
1210 struct kvm_hv {
1211 	struct mutex hv_lock;
1212 	u64 hv_guest_os_id;
1213 	u64 hv_hypercall;
1214 	u64 hv_tsc_page;
1215 	enum hv_tsc_page_status hv_tsc_page_status;
1216 
1217 	/* Hyper-v based guest crash (NT kernel bugcheck) parameters */
1218 	u64 hv_crash_param[HV_X64_MSR_CRASH_PARAMS];
1219 	u64 hv_crash_ctl;
1220 
1221 	struct ms_hyperv_tsc_page tsc_ref;
1222 
1223 	struct idr conn_to_evt;
1224 
1225 	u64 hv_reenlightenment_control;
1226 	u64 hv_tsc_emulation_control;
1227 	u64 hv_tsc_emulation_status;
1228 	u64 hv_invtsc_control;
1229 
1230 	/* How many vCPUs have VP index != vCPU index */
1231 	atomic_t num_mismatched_vp_indexes;
1232 
1233 	/*
1234 	 * How many SynICs use 'AutoEOI' feature
1235 	 * (protected by arch.apicv_update_lock)
1236 	 */
1237 	unsigned int synic_auto_eoi_used;
1238 
1239 	struct kvm_hv_syndbg hv_syndbg;
1240 
1241 	bool xsaves_xsavec_checked;
1242 };
1243 #endif
1244 
1245 struct msr_bitmap_range {
1246 	u32 flags;
1247 	u32 nmsrs;
1248 	u32 base;
1249 	unsigned long *bitmap;
1250 };
1251 
1252 #ifdef CONFIG_KVM_XEN
1253 /* Xen emulation context */
1254 struct kvm_xen {
1255 	struct mutex xen_lock;
1256 	u32 xen_version;
1257 	bool long_mode;
1258 	bool runstate_update_flag;
1259 	u8 upcall_vector;
1260 	struct gfn_to_pfn_cache shinfo_cache;
1261 	struct idr evtchn_ports;
1262 	unsigned long poll_mask[BITS_TO_LONGS(KVM_MAX_VCPUS)];
1263 
1264 	struct kvm_xen_hvm_config hvm_config;
1265 };
1266 #endif
1267 
1268 enum kvm_irqchip_mode {
1269 	KVM_IRQCHIP_NONE,
1270 #ifdef CONFIG_KVM_IOAPIC
1271 	KVM_IRQCHIP_KERNEL,       /* created with KVM_CREATE_IRQCHIP */
1272 #endif
1273 	KVM_IRQCHIP_SPLIT,        /* created with KVM_CAP_SPLIT_IRQCHIP */
1274 };
1275 
1276 enum kvm_suppress_eoi_broadcast_mode {
1277 	KVM_SUPPRESS_EOI_BROADCAST_QUIRKED, /* Legacy behavior */
1278 	KVM_SUPPRESS_EOI_BROADCAST_ENABLED, /* Enable Suppress EOI broadcast */
1279 	KVM_SUPPRESS_EOI_BROADCAST_DISABLED /* Disable Suppress EOI broadcast */
1280 };
1281 
1282 struct kvm_x86_msr_filter {
1283 	u8 count;
1284 	bool default_allow:1;
1285 	struct msr_bitmap_range ranges[16];
1286 };
1287 
1288 struct kvm_x86_pmu_event_filter {
1289 	__u32 action;
1290 	__u32 nevents;
1291 	__u32 fixed_counter_bitmap;
1292 	__u32 flags;
1293 	__u32 nr_includes;
1294 	__u32 nr_excludes;
1295 	__u64 *includes;
1296 	__u64 *excludes;
1297 	__u64 events[] __counted_by(nevents);
1298 };
1299 
1300 enum kvm_apicv_inhibit {
1301 
1302 	/********************************************************************/
1303 	/* INHIBITs that are relevant to both Intel's APICv and AMD's AVIC. */
1304 	/********************************************************************/
1305 
1306 	/*
1307 	 * APIC acceleration is disabled by a module parameter
1308 	 * and/or not supported in hardware.
1309 	 */
1310 	APICV_INHIBIT_REASON_DISABLED,
1311 
1312 	/*
1313 	 * APIC acceleration is inhibited because AutoEOI feature is
1314 	 * being used by a HyperV guest.
1315 	 */
1316 	APICV_INHIBIT_REASON_HYPERV,
1317 
1318 	/*
1319 	 * APIC acceleration is inhibited because the userspace didn't yet
1320 	 * enable the kernel/split irqchip.
1321 	 */
1322 	APICV_INHIBIT_REASON_ABSENT,
1323 
1324 	/* APIC acceleration is inhibited because KVM_GUESTDBG_BLOCKIRQ
1325 	 * (out of band, debug measure of blocking all interrupts on this vCPU)
1326 	 * was enabled, to avoid AVIC/APICv bypassing it.
1327 	 */
1328 	APICV_INHIBIT_REASON_BLOCKIRQ,
1329 
1330 	/*
1331 	 * APICv is disabled because not all vCPUs have a 1:1 mapping between
1332 	 * APIC ID and vCPU, _and_ KVM is not applying its x2APIC hotplug hack.
1333 	 */
1334 	APICV_INHIBIT_REASON_PHYSICAL_ID_ALIASED,
1335 
1336 	/*
1337 	 * For simplicity, the APIC acceleration is inhibited
1338 	 * first time either APIC ID or APIC base are changed by the guest
1339 	 * from their reset values.
1340 	 */
1341 	APICV_INHIBIT_REASON_APIC_ID_MODIFIED,
1342 	APICV_INHIBIT_REASON_APIC_BASE_MODIFIED,
1343 
1344 	/******************************************************/
1345 	/* INHIBITs that are relevant only to the AMD's AVIC. */
1346 	/******************************************************/
1347 
1348 	/*
1349 	 * AVIC is inhibited on a vCPU because it runs a nested guest.
1350 	 *
1351 	 * This is needed because unlike APICv, the peers of this vCPU
1352 	 * cannot use the doorbell mechanism to signal interrupts via AVIC when
1353 	 * a vCPU runs nested.
1354 	 */
1355 	APICV_INHIBIT_REASON_NESTED,
1356 
1357 	/*
1358 	 * On SVM, the wait for the IRQ window is implemented with pending vIRQ,
1359 	 * which cannot be injected when the AVIC is enabled, thus AVIC
1360 	 * is inhibited while KVM waits for IRQ window.
1361 	 */
1362 	APICV_INHIBIT_REASON_IRQWIN,
1363 
1364 	/*
1365 	 * PIT (i8254) 're-inject' mode, relies on EOI intercept,
1366 	 * which AVIC doesn't support for edge triggered interrupts.
1367 	 */
1368 	APICV_INHIBIT_REASON_PIT_REINJ,
1369 
1370 	/*
1371 	 * AVIC is disabled because SEV doesn't support it.
1372 	 */
1373 	APICV_INHIBIT_REASON_SEV,
1374 
1375 	/*
1376 	 * AVIC is disabled because not all vCPUs with a valid LDR have a 1:1
1377 	 * mapping between logical ID and vCPU.
1378 	 */
1379 	APICV_INHIBIT_REASON_LOGICAL_ID_ALIASED,
1380 
1381 	/*
1382 	 * AVIC is disabled because the vCPU's APIC ID is beyond the max
1383 	 * supported by AVIC/x2AVIC, i.e. the vCPU is unaddressable.
1384 	 */
1385 	APICV_INHIBIT_REASON_PHYSICAL_ID_TOO_BIG,
1386 
1387 	NR_APICV_INHIBIT_REASONS,
1388 };
1389 
1390 #define __APICV_INHIBIT_REASON(reason)			\
1391 	{ BIT(APICV_INHIBIT_REASON_##reason), #reason }
1392 
1393 #define APICV_INHIBIT_REASONS				\
1394 	__APICV_INHIBIT_REASON(DISABLED),		\
1395 	__APICV_INHIBIT_REASON(HYPERV),			\
1396 	__APICV_INHIBIT_REASON(ABSENT),			\
1397 	__APICV_INHIBIT_REASON(BLOCKIRQ),		\
1398 	__APICV_INHIBIT_REASON(PHYSICAL_ID_ALIASED),	\
1399 	__APICV_INHIBIT_REASON(APIC_ID_MODIFIED),	\
1400 	__APICV_INHIBIT_REASON(APIC_BASE_MODIFIED),	\
1401 	__APICV_INHIBIT_REASON(NESTED),			\
1402 	__APICV_INHIBIT_REASON(IRQWIN),			\
1403 	__APICV_INHIBIT_REASON(PIT_REINJ),		\
1404 	__APICV_INHIBIT_REASON(SEV),			\
1405 	__APICV_INHIBIT_REASON(LOGICAL_ID_ALIASED),	\
1406 	__APICV_INHIBIT_REASON(PHYSICAL_ID_TOO_BIG)
1407 
1408 struct kvm_possible_nx_huge_pages {
1409 	/*
1410 	 * A list of kvm_mmu_page structs that, if zapped, could possibly be
1411 	 * replaced by an NX huge page.  A shadow page is on this list if its
1412 	 * existence disallows an NX huge page (nx_huge_page_disallowed is set)
1413 	 * and there are no other conditions that prevent a huge page, e.g.
1414 	 * the backing host page is huge, dirtly logging is not enabled for its
1415 	 * memslot, etc...  Note, zapping shadow pages on this list doesn't
1416 	 * guarantee an NX huge page will be created in its stead, e.g. if the
1417 	 * guest attempts to execute from the region then KVM obviously can't
1418 	 * create an NX huge page (without hanging the guest).
1419 	 */
1420 	struct list_head pages;
1421 	u64 nr_pages;
1422 };
1423 
1424 enum kvm_mmu_type {
1425 	KVM_SHADOW_MMU,
1426 #ifdef CONFIG_X86_64
1427 	KVM_TDP_MMU,
1428 #endif
1429 	KVM_NR_MMU_TYPES,
1430 };
1431 
1432 struct kvm_arch {
1433 	unsigned long n_used_mmu_pages;
1434 	unsigned long n_requested_mmu_pages;
1435 	unsigned long n_max_mmu_pages;
1436 	unsigned int indirect_shadow_pages;
1437 	u8 mmu_valid_gen;
1438 	u8 vm_type;
1439 	bool has_private_mem;
1440 	bool has_protected_state;
1441 	bool has_protected_eoi;
1442 	bool pre_fault_allowed;
1443 	struct hlist_head *mmu_page_hash;
1444 	struct list_head active_mmu_pages;
1445 	struct kvm_possible_nx_huge_pages possible_nx_huge_pages[KVM_NR_MMU_TYPES];
1446 #ifdef CONFIG_KVM_EXTERNAL_WRITE_TRACKING
1447 	struct kvm_page_track_notifier_head track_notifier_head;
1448 #endif
1449 	/*
1450 	 * Protects marking pages unsync during page faults, as TDP MMU page
1451 	 * faults only take mmu_lock for read.  For simplicity, the unsync
1452 	 * pages lock is always taken when marking pages unsync regardless of
1453 	 * whether mmu_lock is held for read or write.
1454 	 */
1455 	spinlock_t mmu_unsync_pages_lock;
1456 
1457 	u64 shadow_mmio_value;
1458 
1459 #define __KVM_HAVE_ARCH_NONCOHERENT_DMA
1460 	atomic_t noncoherent_dma_count;
1461 	unsigned long nr_possible_bypass_irqs;
1462 
1463 #ifdef CONFIG_KVM_IOAPIC
1464 	struct kvm_pic *vpic;
1465 	struct kvm_ioapic *vioapic;
1466 	struct kvm_pit *vpit;
1467 #endif
1468 	atomic_t vapics_in_nmi_mode;
1469 
1470 	struct mutex apic_map_lock;
1471 	struct kvm_apic_map __rcu *apic_map;
1472 	atomic_t apic_map_dirty;
1473 
1474 	bool apic_access_memslot_enabled;
1475 	bool apic_access_memslot_inhibited;
1476 
1477 	/*
1478 	 * Force apicv_update_lock and apicv_nr_irq_window_req to reside in a
1479 	 * dedicated cacheline.  They are write-mostly, whereas most everything
1480 	 * else in kvm_arch is read-mostly.  Note that apicv_inhibit_reasons is
1481 	 * read-mostly: toggling VM-wide inhibits is rare; _checking_ for
1482 	 * inhibits is common.
1483 	 */
1484 	____cacheline_aligned
1485 	/*
1486 	 * Protects apicv_inhibit_reasons and apicv_nr_irq_window_req (with an
1487 	 * asterisk, see kvm_inc_or_dec_irq_window_inhibit() for details).
1488 	 */
1489 	struct rw_semaphore apicv_update_lock;
1490 	atomic_t apicv_nr_irq_window_req;
1491 	____cacheline_aligned
1492 
1493 	unsigned long apicv_inhibit_reasons;
1494 
1495 	gpa_t wall_clock;
1496 
1497 	u64 disabled_exits;
1498 
1499 	s64 kvmclock_offset;
1500 
1501 	/*
1502 	 * This also protects nr_vcpus_matched_tsc which is read from a
1503 	 * preemption-disabled region, so it must be a raw spinlock.
1504 	 */
1505 	raw_spinlock_t tsc_write_lock;
1506 	u64 last_tsc_nsec;
1507 	u64 last_tsc_write;
1508 	u32 last_tsc_khz;
1509 	u64 last_tsc_offset;
1510 	u64 cur_tsc_nsec;
1511 	u64 cur_tsc_write;
1512 	u64 cur_tsc_offset;
1513 	u64 cur_tsc_generation;
1514 	int nr_vcpus_matched_tsc;
1515 
1516 	u32 default_tsc_khz;
1517 	bool user_set_tsc;
1518 	u64 apic_bus_cycle_ns;
1519 
1520 	seqcount_raw_spinlock_t pvclock_sc;
1521 	bool use_master_clock;
1522 	u64 master_kernel_ns;
1523 	u64 master_cycle_now;
1524 
1525 #ifdef CONFIG_KVM_HYPERV
1526 	struct kvm_hv hyperv;
1527 #endif
1528 
1529 #ifdef CONFIG_KVM_XEN
1530 	struct kvm_xen xen;
1531 #endif
1532 
1533 	bool backwards_tsc_observed;
1534 	bool boot_vcpu_runs_old_kvmclock;
1535 	u32 bsp_vcpu_id;
1536 
1537 	u64 disabled_quirks;
1538 
1539 	enum kvm_irqchip_mode irqchip_mode;
1540 	u8 nr_reserved_ioapic_pins;
1541 
1542 	bool disabled_lapic_found;
1543 
1544 	bool x2apic_format;
1545 	bool x2apic_broadcast_quirk_disabled;
1546 	enum kvm_suppress_eoi_broadcast_mode suppress_eoi_broadcast_mode;
1547 
1548 	bool has_mapped_host_mmio;
1549 	bool guest_can_read_msr_platform_info;
1550 	bool exception_payload_enabled;
1551 
1552 	bool triple_fault_event;
1553 
1554 	bool bus_lock_detection_enabled;
1555 	bool enable_pmu;
1556 	bool created_mediated_pmu;
1557 
1558 	u32 notify_window;
1559 	u32 notify_vmexit_flags;
1560 	/*
1561 	 * If exit_on_emulation_error is set, and the in-kernel instruction
1562 	 * emulator fails to emulate an instruction, allow userspace
1563 	 * the opportunity to look at it.
1564 	 */
1565 	bool exit_on_emulation_error;
1566 
1567 	/* Deflect RDMSR and WRMSR to user space when they trigger a #GP */
1568 	u32 user_space_msr_mask;
1569 	struct kvm_x86_msr_filter __rcu *msr_filter;
1570 
1571 	u32 hypercall_exit_enabled;
1572 
1573 	/* Guest can access the SGX PROVISIONKEY. */
1574 	bool sgx_provisioning_allowed;
1575 
1576 	struct kvm_x86_pmu_event_filter __rcu *pmu_event_filter;
1577 	struct vhost_task *nx_huge_page_recovery_thread;
1578 	u64 nx_huge_page_last;
1579 	struct once nx_once;
1580 
1581 #ifdef CONFIG_X86_64
1582 #ifdef CONFIG_KVM_PROVE_MMU
1583 	/*
1584 	 * The number of TDP MMU pages across all roots.  Used only to sanity
1585 	 * check that KVM isn't leaking TDP MMU pages.
1586 	 */
1587 	atomic64_t tdp_mmu_pages;
1588 #endif
1589 
1590 	/*
1591 	 * List of struct kvm_mmu_pages being used as roots.
1592 	 * All struct kvm_mmu_pages in the list should have
1593 	 * tdp_mmu_page set.
1594 	 *
1595 	 * For reads, this list is protected by:
1596 	 *	RCU alone or
1597 	 *	the MMU lock in read mode + RCU or
1598 	 *	the MMU lock in write mode
1599 	 *
1600 	 * For writes, this list is protected by tdp_mmu_pages_lock; see
1601 	 * below for the details.
1602 	 *
1603 	 * Roots will remain in the list until their tdp_mmu_root_count
1604 	 * drops to zero, at which point the thread that decremented the
1605 	 * count to zero should removed the root from the list and clean
1606 	 * it up, freeing the root after an RCU grace period.
1607 	 */
1608 	struct list_head tdp_mmu_roots;
1609 
1610 	/*
1611 	 * Protects accesses to the following fields when the MMU lock
1612 	 * is held in read mode:
1613 	 *  - tdp_mmu_roots (above)
1614 	 *  - the link field of kvm_mmu_page structs used by the TDP MMU
1615 	 *  - possible_nx_huge_pages[KVM_TDP_MMU];
1616 	 *  - the possible_nx_huge_page_link field of kvm_mmu_page structs used
1617 	 *    by the TDP MMU
1618 	 * Because the lock is only taken within the MMU lock, strictly
1619 	 * speaking it is redundant to acquire this lock when the thread
1620 	 * holds the MMU lock in write mode.  However it often simplifies
1621 	 * the code to do so.
1622 	 */
1623 	spinlock_t tdp_mmu_pages_lock;
1624 #endif /* CONFIG_X86_64 */
1625 
1626 	/*
1627 	 * If set, at least one shadow root has been allocated. This flag
1628 	 * is used as one input when determining whether certain memslot
1629 	 * related allocations are necessary.
1630 	 */
1631 	bool shadow_root_allocated;
1632 
1633 #ifdef CONFIG_KVM_EXTERNAL_WRITE_TRACKING
1634 	/*
1635 	 * If set, the VM has (or had) an external write tracking user, and
1636 	 * thus all write tracking metadata has been allocated, even if KVM
1637 	 * itself isn't using write tracking.
1638 	 */
1639 	bool external_write_tracking_enabled;
1640 #endif
1641 
1642 #if IS_ENABLED(CONFIG_HYPERV)
1643 	hpa_t	hv_root_tdp;
1644 	spinlock_t hv_root_tdp_lock;
1645 	struct hv_partition_assist_pg *hv_pa_pg;
1646 #endif
1647 	/*
1648 	 * VM-scope maximum vCPU ID. Used to determine the size of structures
1649 	 * that increase along with the maximum vCPU ID, in which case, using
1650 	 * the global KVM_MAX_VCPU_IDS may lead to significant memory waste.
1651 	 */
1652 	u32 max_vcpu_ids;
1653 
1654 	bool disable_nx_huge_pages;
1655 
1656 	/*
1657 	 * Memory caches used to allocate shadow pages when performing eager
1658 	 * page splitting. No need for a shadowed_info_cache since eager page
1659 	 * splitting only allocates direct shadow pages.
1660 	 *
1661 	 * Protected by kvm->slots_lock.
1662 	 */
1663 	struct kvm_mmu_memory_cache split_shadow_page_cache;
1664 	struct kvm_mmu_memory_cache split_page_header_cache;
1665 
1666 	/*
1667 	 * Memory cache used to allocate pte_list_desc structs while splitting
1668 	 * huge pages. In the worst case, to split one huge page, 512
1669 	 * pte_list_desc structs are needed to add each lower level leaf sptep
1670 	 * to the rmap plus 1 to extend the parent_ptes rmap of the lower level
1671 	 * page table.
1672 	 *
1673 	 * Protected by kvm->slots_lock.
1674 	 */
1675 #define SPLIT_DESC_CACHE_MIN_NR_OBJECTS (SPTE_ENT_PER_PAGE + 1)
1676 	struct kvm_mmu_memory_cache split_desc_cache;
1677 
1678 	gfn_t gfn_direct_bits;
1679 
1680 	/*
1681 	 * Size of the CPU's dirty log buffer, i.e. VMX's PML buffer. A Zero
1682 	 * value indicates CPU dirty logging is unsupported or disabled in
1683 	 * current VM.
1684 	 */
1685 	int cpu_dirty_log_size;
1686 };
1687 
1688 struct kvm_vm_stat {
1689 	struct kvm_vm_stat_generic generic;
1690 	u64 mmu_shadow_zapped;
1691 	u64 mmu_pte_write;
1692 	u64 mmu_pde_zapped;
1693 	u64 mmu_flooded;
1694 	u64 mmu_recycled;
1695 	u64 mmu_cache_miss;
1696 	u64 mmu_unsync;
1697 	union {
1698 		struct {
1699 			atomic64_t pages_4k;
1700 			atomic64_t pages_2m;
1701 			atomic64_t pages_1g;
1702 		};
1703 		atomic64_t pages[KVM_NR_PAGE_SIZES];
1704 	};
1705 	u64 nx_lpage_splits;
1706 	u64 max_mmu_page_hash_collisions;
1707 	u64 max_mmu_rmap_size;
1708 };
1709 
1710 struct kvm_vcpu_stat {
1711 	struct kvm_vcpu_stat_generic generic;
1712 	u64 pf_taken;
1713 	u64 pf_fixed;
1714 	u64 pf_emulate;
1715 	u64 pf_spurious;
1716 	u64 pf_fast;
1717 	u64 pf_mmio_spte_created;
1718 	u64 pf_guest;
1719 	u64 tlb_flush;
1720 	u64 invlpg;
1721 
1722 	u64 exits;
1723 	u64 io_exits;
1724 	u64 mmio_exits;
1725 	u64 signal_exits;
1726 	u64 irq_window_exits;
1727 	u64 nmi_window_exits;
1728 	u64 l1d_flush;
1729 	u64 halt_exits;
1730 	u64 request_irq_exits;
1731 	u64 irq_exits;
1732 	u64 host_state_reload;
1733 	u64 fpu_reload;
1734 	u64 insn_emulation;
1735 	u64 insn_emulation_fail;
1736 	u64 hypercalls;
1737 	u64 irq_injections;
1738 	u64 nmi_injections;
1739 	u64 req_event;
1740 	u64 nested_run;
1741 	u64 directed_yield_attempted;
1742 	u64 directed_yield_successful;
1743 	u64 preemption_reported;
1744 	u64 preemption_other;
1745 	u64 guest_mode;
1746 	u64 notify_window_exits;
1747 };
1748 
1749 struct x86_instruction_info;
1750 
1751 struct msr_data {
1752 	bool host_initiated;
1753 	u32 index;
1754 	u64 data;
1755 };
1756 
1757 struct kvm_lapic_irq {
1758 	u32 vector;
1759 	u16 delivery_mode;
1760 	u16 dest_mode;
1761 	bool level;
1762 	u16 trig_mode;
1763 	u32 shorthand;
1764 	u32 dest_id;
1765 	bool msi_redir_hint;
1766 };
1767 
1768 static inline u16 kvm_lapic_irq_dest_mode(bool dest_mode_logical)
1769 {
1770 	return dest_mode_logical ? APIC_DEST_LOGICAL : APIC_DEST_PHYSICAL;
1771 }
1772 
1773 enum kvm_x86_run_flags {
1774 	KVM_RUN_FORCE_IMMEDIATE_EXIT	= BIT(0),
1775 	KVM_RUN_LOAD_GUEST_DR6		= BIT(1),
1776 	KVM_RUN_LOAD_DEBUGCTL		= BIT(2),
1777 };
1778 
1779 struct kvm_x86_ops {
1780 	const char *name;
1781 
1782 	int (*check_processor_compatibility)(void);
1783 
1784 	int (*enable_virtualization_cpu)(void);
1785 	void (*disable_virtualization_cpu)(void);
1786 	cpu_emergency_virt_cb *emergency_disable_virtualization_cpu;
1787 
1788 	void (*hardware_unsetup)(void);
1789 	bool (*has_emulated_msr)(struct kvm *kvm, u32 index);
1790 	void (*vcpu_after_set_cpuid)(struct kvm_vcpu *vcpu);
1791 
1792 	unsigned int vm_size;
1793 	int (*vm_init)(struct kvm *kvm);
1794 	void (*vm_destroy)(struct kvm *kvm);
1795 	void (*vm_pre_destroy)(struct kvm *kvm);
1796 
1797 	/* Create, but do not attach this VCPU */
1798 	int (*vcpu_precreate)(struct kvm *kvm);
1799 	int (*vcpu_create)(struct kvm_vcpu *vcpu);
1800 	void (*vcpu_free)(struct kvm_vcpu *vcpu);
1801 	void (*vcpu_reset)(struct kvm_vcpu *vcpu, bool init_event);
1802 
1803 	void (*prepare_switch_to_guest)(struct kvm_vcpu *vcpu);
1804 	void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
1805 	void (*vcpu_put)(struct kvm_vcpu *vcpu);
1806 
1807 	/*
1808 	 * Mask of DEBUGCTL bits that are owned by the host, i.e. that need to
1809 	 * match the host's value even while the guest is active.
1810 	 */
1811 	const u64 HOST_OWNED_DEBUGCTL;
1812 
1813 	void (*update_exception_bitmap)(struct kvm_vcpu *vcpu);
1814 	int (*get_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr);
1815 	int (*set_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr);
1816 	u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
1817 	void (*get_segment)(struct kvm_vcpu *vcpu,
1818 			    struct kvm_segment *var, int seg);
1819 	int (*get_cpl)(struct kvm_vcpu *vcpu);
1820 	int (*get_cpl_no_cache)(struct kvm_vcpu *vcpu);
1821 	void (*set_segment)(struct kvm_vcpu *vcpu,
1822 			    struct kvm_segment *var, int seg);
1823 	void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
1824 	bool (*is_valid_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
1825 	void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
1826 	void (*post_set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
1827 	bool (*is_valid_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
1828 	void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
1829 	int (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
1830 	void (*get_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
1831 	void (*set_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
1832 	void (*get_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
1833 	void (*set_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt);
1834 	void (*sync_dirty_debug_regs)(struct kvm_vcpu *vcpu);
1835 	void (*set_dr7)(struct kvm_vcpu *vcpu, unsigned long value);
1836 	void (*cache_reg)(struct kvm_vcpu *vcpu, enum kvm_reg reg);
1837 	unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
1838 	void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
1839 	bool (*get_if_flag)(struct kvm_vcpu *vcpu);
1840 
1841 	void (*flush_tlb_all)(struct kvm_vcpu *vcpu);
1842 	void (*flush_tlb_current)(struct kvm_vcpu *vcpu);
1843 #if IS_ENABLED(CONFIG_HYPERV)
1844 	int  (*flush_remote_tlbs)(struct kvm *kvm);
1845 	int  (*flush_remote_tlbs_range)(struct kvm *kvm, gfn_t gfn,
1846 					gfn_t nr_pages);
1847 #endif
1848 
1849 	/*
1850 	 * Flush any TLB entries associated with the given GVA.
1851 	 * Does not need to flush GPA->HPA mappings.
1852 	 * Can potentially get non-canonical addresses through INVLPGs, which
1853 	 * the implementation may choose to ignore if appropriate.
1854 	 */
1855 	void (*flush_tlb_gva)(struct kvm_vcpu *vcpu, gva_t addr);
1856 
1857 	/*
1858 	 * Flush any TLB entries created by the guest.  Like tlb_flush_gva(),
1859 	 * does not need to flush GPA->HPA mappings.
1860 	 */
1861 	void (*flush_tlb_guest)(struct kvm_vcpu *vcpu);
1862 
1863 	int (*vcpu_pre_run)(struct kvm_vcpu *vcpu);
1864 	enum exit_fastpath_completion (*vcpu_run)(struct kvm_vcpu *vcpu,
1865 						  u64 run_flags);
1866 	int (*handle_exit)(struct kvm_vcpu *vcpu,
1867 		enum exit_fastpath_completion exit_fastpath);
1868 	int (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
1869 	void (*update_emulated_instruction)(struct kvm_vcpu *vcpu);
1870 	void (*set_interrupt_shadow)(struct kvm_vcpu *vcpu, int mask);
1871 	u32 (*get_interrupt_shadow)(struct kvm_vcpu *vcpu);
1872 	void (*patch_hypercall)(struct kvm_vcpu *vcpu,
1873 				unsigned char *hypercall_addr);
1874 	void (*inject_irq)(struct kvm_vcpu *vcpu, bool reinjected);
1875 	void (*inject_nmi)(struct kvm_vcpu *vcpu);
1876 	void (*inject_exception)(struct kvm_vcpu *vcpu);
1877 	void (*cancel_injection)(struct kvm_vcpu *vcpu);
1878 	int (*interrupt_allowed)(struct kvm_vcpu *vcpu, bool for_injection);
1879 	int (*nmi_allowed)(struct kvm_vcpu *vcpu, bool for_injection);
1880 	bool (*get_nmi_mask)(struct kvm_vcpu *vcpu);
1881 	void (*set_nmi_mask)(struct kvm_vcpu *vcpu, bool masked);
1882 	/* Whether or not a virtual NMI is pending in hardware. */
1883 	bool (*is_vnmi_pending)(struct kvm_vcpu *vcpu);
1884 	/*
1885 	 * Attempt to pend a virtual NMI in hardware.  Returns %true on success
1886 	 * to allow using static_call_ret0 as the fallback.
1887 	 */
1888 	bool (*set_vnmi_pending)(struct kvm_vcpu *vcpu);
1889 	void (*enable_nmi_window)(struct kvm_vcpu *vcpu);
1890 	void (*enable_irq_window)(struct kvm_vcpu *vcpu);
1891 	void (*update_cr8_intercept)(struct kvm_vcpu *vcpu, int tpr, int irr);
1892 
1893 	const bool x2apic_icr_is_split;
1894 	const unsigned long required_apicv_inhibits;
1895 	bool allow_apicv_in_x2apic_without_x2apic_virtualization;
1896 	void (*refresh_apicv_exec_ctrl)(struct kvm_vcpu *vcpu);
1897 	void (*hwapic_isr_update)(struct kvm_vcpu *vcpu, int isr);
1898 	void (*load_eoi_exitmap)(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap);
1899 	void (*set_virtual_apic_mode)(struct kvm_vcpu *vcpu);
1900 	void (*set_apic_access_page_addr)(struct kvm_vcpu *vcpu);
1901 	void (*deliver_interrupt)(struct kvm_lapic *apic, int delivery_mode,
1902 				  int trig_mode, int vector);
1903 	int (*sync_pir_to_irr)(struct kvm_vcpu *vcpu);
1904 	int (*set_tss_addr)(struct kvm *kvm, unsigned int addr);
1905 	int (*set_identity_map_addr)(struct kvm *kvm, u64 ident_addr);
1906 	u8 (*get_mt_mask)(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio);
1907 	bool (*tdp_has_smep)(struct kvm *kvm);
1908 
1909 	void (*load_mmu_pgd)(struct kvm_vcpu *vcpu, hpa_t root_hpa,
1910 			     int root_level);
1911 
1912 	/* Update external mapping with page table link. */
1913 	int (*link_external_spt)(struct kvm *kvm, gfn_t gfn, enum pg_level level,
1914 				void *external_spt);
1915 	/* Update the external page table from spte getting set. */
1916 	int (*set_external_spte)(struct kvm *kvm, gfn_t gfn, enum pg_level level,
1917 				 u64 mirror_spte);
1918 
1919 	/* Update external page tables for page table about to be freed. */
1920 	int (*free_external_spt)(struct kvm *kvm, gfn_t gfn, enum pg_level level,
1921 				 void *external_spt);
1922 
1923 	/* Update external page table from spte getting removed, and flush TLB. */
1924 	void (*remove_external_spte)(struct kvm *kvm, gfn_t gfn, enum pg_level level,
1925 				     u64 mirror_spte);
1926 
1927 	bool (*has_wbinvd_exit)(void);
1928 
1929 	u64 (*get_l2_tsc_offset)(struct kvm_vcpu *vcpu);
1930 	u64 (*get_l2_tsc_multiplier)(struct kvm_vcpu *vcpu);
1931 	void (*write_tsc_offset)(struct kvm_vcpu *vcpu);
1932 	void (*write_tsc_multiplier)(struct kvm_vcpu *vcpu);
1933 
1934 	/*
1935 	 * Retrieve somewhat arbitrary exit/entry information.  Intended to
1936 	 * be used only from within tracepoints or error paths.
1937 	 */
1938 	void (*get_exit_info)(struct kvm_vcpu *vcpu, u32 *reason,
1939 			      u64 *info1, u64 *info2,
1940 			      u32 *intr_info, u32 *error_code);
1941 
1942 	void (*get_entry_info)(struct kvm_vcpu *vcpu,
1943 			       u32 *intr_info, u32 *error_code);
1944 
1945 	int (*check_intercept)(struct kvm_vcpu *vcpu,
1946 			       struct x86_instruction_info *info,
1947 			       enum x86_intercept_stage stage,
1948 			       struct x86_exception *exception);
1949 	void (*handle_exit_irqoff)(struct kvm_vcpu *vcpu);
1950 
1951 	void (*update_cpu_dirty_logging)(struct kvm_vcpu *vcpu);
1952 
1953 	const struct kvm_x86_nested_ops *nested_ops;
1954 
1955 	void (*vcpu_blocking)(struct kvm_vcpu *vcpu);
1956 	void (*vcpu_unblocking)(struct kvm_vcpu *vcpu);
1957 
1958 	int (*pi_update_irte)(struct kvm_kernel_irqfd *irqfd, struct kvm *kvm,
1959 			      unsigned int host_irq, uint32_t guest_irq,
1960 			      struct kvm_vcpu *vcpu, u32 vector);
1961 	void (*pi_start_bypass)(struct kvm *kvm);
1962 	void (*apicv_pre_state_restore)(struct kvm_vcpu *vcpu);
1963 	void (*apicv_post_state_restore)(struct kvm_vcpu *vcpu);
1964 	bool (*dy_apicv_has_pending_interrupt)(struct kvm_vcpu *vcpu);
1965 	bool (*protected_apic_has_interrupt)(struct kvm_vcpu *vcpu);
1966 
1967 	int (*set_hv_timer)(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
1968 			    bool *expired);
1969 	void (*cancel_hv_timer)(struct kvm_vcpu *vcpu);
1970 
1971 	void (*setup_mce)(struct kvm_vcpu *vcpu);
1972 
1973 #ifdef CONFIG_KVM_SMM
1974 	int (*smi_allowed)(struct kvm_vcpu *vcpu, bool for_injection);
1975 	int (*enter_smm)(struct kvm_vcpu *vcpu, union kvm_smram *smram);
1976 	int (*leave_smm)(struct kvm_vcpu *vcpu, const union kvm_smram *smram);
1977 	void (*enable_smi_window)(struct kvm_vcpu *vcpu);
1978 #endif
1979 
1980 	int (*dev_get_attr)(u32 group, u64 attr, u64 *val);
1981 	int (*mem_enc_ioctl)(struct kvm *kvm, void __user *argp);
1982 	int (*vcpu_mem_enc_ioctl)(struct kvm_vcpu *vcpu, void __user *argp);
1983 	int (*vcpu_mem_enc_unlocked_ioctl)(struct kvm_vcpu *vcpu, void __user *argp);
1984 	int (*mem_enc_register_region)(struct kvm *kvm, struct kvm_enc_region *argp);
1985 	int (*mem_enc_unregister_region)(struct kvm *kvm, struct kvm_enc_region *argp);
1986 	int (*vm_copy_enc_context_from)(struct kvm *kvm, unsigned int source_fd);
1987 	int (*vm_move_enc_context_from)(struct kvm *kvm, unsigned int source_fd);
1988 	void (*guest_memory_reclaimed)(struct kvm *kvm);
1989 
1990 	int (*get_feature_msr)(u32 msr, u64 *data);
1991 
1992 	int (*check_emulate_instruction)(struct kvm_vcpu *vcpu, int emul_type,
1993 					 void *insn, int insn_len);
1994 
1995 	bool (*apic_init_signal_blocked)(struct kvm_vcpu *vcpu);
1996 	int (*enable_l2_tlb_flush)(struct kvm_vcpu *vcpu);
1997 
1998 	void (*migrate_timers)(struct kvm_vcpu *vcpu);
1999 	void (*recalc_intercepts)(struct kvm_vcpu *vcpu);
2000 	int (*complete_emulated_msr)(struct kvm_vcpu *vcpu, int err);
2001 
2002 	void (*vcpu_deliver_sipi_vector)(struct kvm_vcpu *vcpu, u8 vector);
2003 
2004 	/*
2005 	 * Returns vCPU specific APICv inhibit reasons
2006 	 */
2007 	unsigned long (*vcpu_get_apicv_inhibit_reasons)(struct kvm_vcpu *vcpu);
2008 
2009 	gva_t (*get_untagged_addr)(struct kvm_vcpu *vcpu, gva_t gva, unsigned int flags);
2010 	void *(*alloc_apic_backing_page)(struct kvm_vcpu *vcpu);
2011 	int (*gmem_prepare)(struct kvm *kvm, kvm_pfn_t pfn, gfn_t gfn, int max_order);
2012 	void (*gmem_invalidate)(kvm_pfn_t start, kvm_pfn_t end);
2013 	int (*gmem_max_mapping_level)(struct kvm *kvm, kvm_pfn_t pfn, bool is_private);
2014 };
2015 
2016 struct kvm_x86_nested_ops {
2017 	void (*leave_nested)(struct kvm_vcpu *vcpu);
2018 	bool (*is_exception_vmexit)(struct kvm_vcpu *vcpu, u8 vector,
2019 				    u32 error_code);
2020 	int (*check_events)(struct kvm_vcpu *vcpu);
2021 	bool (*has_events)(struct kvm_vcpu *vcpu, bool for_injection);
2022 	void (*triple_fault)(struct kvm_vcpu *vcpu);
2023 	int (*get_state)(struct kvm_vcpu *vcpu,
2024 			 struct kvm_nested_state __user *user_kvm_nested_state,
2025 			 unsigned user_data_size);
2026 	int (*set_state)(struct kvm_vcpu *vcpu,
2027 			 struct kvm_nested_state __user *user_kvm_nested_state,
2028 			 struct kvm_nested_state *kvm_state);
2029 	bool (*get_nested_state_pages)(struct kvm_vcpu *vcpu);
2030 	int (*write_log_dirty)(struct kvm_vcpu *vcpu, gpa_t l2_gpa);
2031 	gpa_t (*translate_nested_gpa)(struct kvm_vcpu *vcpu, gpa_t gpa,
2032 				      u64 access,
2033 				      struct x86_exception *exception,
2034 				      u64 pte_access);
2035 
2036 	int (*enable_evmcs)(struct kvm_vcpu *vcpu,
2037 			    uint16_t *vmcs_version);
2038 	uint16_t (*get_evmcs_version)(struct kvm_vcpu *vcpu);
2039 	void (*hv_inject_synthetic_vmexit_post_tlb_flush)(struct kvm_vcpu *vcpu);
2040 };
2041 
2042 struct kvm_x86_init_ops {
2043 	int (*hardware_setup)(void);
2044 	unsigned int (*handle_intel_pt_intr)(void);
2045 
2046 	struct kvm_x86_ops *runtime_ops;
2047 	struct kvm_pmu_ops *pmu_ops;
2048 };
2049 
2050 struct kvm_arch_async_pf {
2051 	u32 token;
2052 	gfn_t gfn;
2053 	unsigned long cr3;
2054 	bool direct_map;
2055 	u64 error_code;
2056 };
2057 
2058 extern u32 __read_mostly kvm_nr_uret_msrs;
2059 extern bool __read_mostly allow_smaller_maxphyaddr;
2060 extern bool __read_mostly enable_apicv;
2061 extern bool __read_mostly enable_ipiv;
2062 extern bool __read_mostly enable_device_posted_irqs;
2063 extern struct kvm_x86_ops kvm_x86_ops;
2064 
2065 #define kvm_x86_call(func) static_call(kvm_x86_##func)
2066 #define kvm_pmu_call(func) static_call(kvm_x86_pmu_##func)
2067 
2068 #define KVM_X86_OP(func) \
2069 	DECLARE_STATIC_CALL(kvm_x86_##func, *(((struct kvm_x86_ops *)0)->func));
2070 #define KVM_X86_OP_OPTIONAL KVM_X86_OP
2071 #define KVM_X86_OP_OPTIONAL_RET0 KVM_X86_OP
2072 #include <asm/kvm-x86-ops.h>
2073 
2074 int kvm_x86_vendor_init(struct kvm_x86_init_ops *ops);
2075 void kvm_x86_vendor_exit(void);
2076 
2077 #define __KVM_HAVE_ARCH_VM_ALLOC
2078 static inline struct kvm *kvm_arch_alloc_vm(void)
2079 {
2080 	return kvzalloc(kvm_x86_ops.vm_size, GFP_KERNEL_ACCOUNT);
2081 }
2082 
2083 #define __KVM_HAVE_ARCH_VM_FREE
2084 void kvm_arch_free_vm(struct kvm *kvm);
2085 
2086 #if IS_ENABLED(CONFIG_HYPERV)
2087 #define __KVM_HAVE_ARCH_FLUSH_REMOTE_TLBS
2088 static inline int kvm_arch_flush_remote_tlbs(struct kvm *kvm)
2089 {
2090 	if (kvm_x86_ops.flush_remote_tlbs &&
2091 	    !kvm_x86_call(flush_remote_tlbs)(kvm))
2092 		return 0;
2093 	else
2094 		return -ENOTSUPP;
2095 }
2096 
2097 #define __KVM_HAVE_ARCH_FLUSH_REMOTE_TLBS_RANGE
2098 static inline int kvm_arch_flush_remote_tlbs_range(struct kvm *kvm, gfn_t gfn,
2099 						   u64 nr_pages)
2100 {
2101 	if (!kvm_x86_ops.flush_remote_tlbs_range)
2102 		return -EOPNOTSUPP;
2103 
2104 	return kvm_x86_call(flush_remote_tlbs_range)(kvm, gfn, nr_pages);
2105 }
2106 #endif /* CONFIG_HYPERV */
2107 
2108 enum kvm_intr_type {
2109 	/* Values are arbitrary, but must be non-zero. */
2110 	KVM_HANDLING_IRQ = 1,
2111 	KVM_HANDLING_NMI,
2112 };
2113 
2114 /* Enable perf NMI and timer modes to work, and minimise false positives. */
2115 #define kvm_arch_pmi_in_guest(vcpu) \
2116 	((vcpu) && (vcpu)->arch.handling_intr_from_guest && \
2117 	 (!!in_nmi() == ((vcpu)->arch.handling_intr_from_guest == KVM_HANDLING_NMI)))
2118 
2119 void __init kvm_mmu_x86_module_init(void);
2120 int kvm_mmu_vendor_module_init(void);
2121 void kvm_mmu_vendor_module_exit(void);
2122 
2123 void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
2124 int kvm_mmu_create(struct kvm_vcpu *vcpu);
2125 int kvm_mmu_init_vm(struct kvm *kvm);
2126 void kvm_mmu_uninit_vm(struct kvm *kvm);
2127 
2128 void kvm_mmu_init_memslot_memory_attributes(struct kvm *kvm,
2129 					    struct kvm_memory_slot *slot);
2130 
2131 void kvm_mmu_after_set_cpuid(struct kvm_vcpu *vcpu);
2132 void kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
2133 void kvm_mmu_slot_remove_write_access(struct kvm *kvm,
2134 				      const struct kvm_memory_slot *memslot,
2135 				      int start_level);
2136 void kvm_mmu_slot_try_split_huge_pages(struct kvm *kvm,
2137 				       const struct kvm_memory_slot *memslot,
2138 				       int target_level);
2139 void kvm_mmu_try_split_huge_pages(struct kvm *kvm,
2140 				  const struct kvm_memory_slot *memslot,
2141 				  u64 start, u64 end,
2142 				  int target_level);
2143 void kvm_mmu_recover_huge_pages(struct kvm *kvm,
2144 				const struct kvm_memory_slot *memslot);
2145 void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm,
2146 				   const struct kvm_memory_slot *memslot);
2147 void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, u64 gen);
2148 void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned long kvm_nr_mmu_pages);
2149 void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end);
2150 
2151 int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3);
2152 
2153 extern bool tdp_enabled;
2154 
2155 u64 vcpu_tsc_khz(struct kvm_vcpu *vcpu);
2156 
2157 /*
2158  * EMULTYPE_NO_DECODE - Set when re-emulating an instruction (after completing
2159  *			userspace I/O) to indicate that the emulation context
2160  *			should be reused as is, i.e. skip initialization of
2161  *			emulation context, instruction fetch and decode.
2162  *
2163  * EMULTYPE_TRAP_UD - Set when emulating an intercepted #UD from hardware.
2164  *		      Indicates that only select instructions (tagged with
2165  *		      EmulateOnUD) should be emulated (to minimize the emulator
2166  *		      attack surface).  See also EMULTYPE_TRAP_UD_FORCED.
2167  *
2168  * EMULTYPE_SKIP - Set when emulating solely to skip an instruction, i.e. to
2169  *		   decode the instruction length.  For use *only* by
2170  *		   kvm_x86_ops.skip_emulated_instruction() implementations if
2171  *		   EMULTYPE_COMPLETE_USER_EXIT is not set.
2172  *
2173  * EMULTYPE_ALLOW_RETRY_PF - Set when the emulator should resume the guest to
2174  *			     retry native execution under certain conditions,
2175  *			     Can only be set in conjunction with EMULTYPE_PF.
2176  *
2177  * EMULTYPE_TRAP_UD_FORCED - Set when emulating an intercepted #UD that was
2178  *			     triggered by KVM's magic "force emulation" prefix,
2179  *			     which is opt in via module param (off by default).
2180  *			     Bypasses EmulateOnUD restriction despite emulating
2181  *			     due to an intercepted #UD (see EMULTYPE_TRAP_UD).
2182  *			     Used to test the full emulator from userspace.
2183  *
2184  * EMULTYPE_VMWARE_GP - Set when emulating an intercepted #GP for VMware
2185  *			backdoor emulation, which is opt in via module param.
2186  *			VMware backdoor emulation handles select instructions
2187  *			and reinjects the #GP for all other cases.
2188  *
2189  * EMULTYPE_PF - Set when an intercepted #PF triggers the emulation, in which case
2190  *		 the CR2/GPA value pass on the stack is valid.
2191  *
2192  * EMULTYPE_COMPLETE_USER_EXIT - Set when the emulator should update interruptibility
2193  *				 state and inject single-step #DBs after skipping
2194  *				 an instruction (after completing userspace I/O).
2195  *
2196  * EMULTYPE_WRITE_PF_TO_SP - Set when emulating an intercepted page fault that
2197  *			     is attempting to write a gfn that contains one or
2198  *			     more of the PTEs used to translate the write itself,
2199  *			     and the owning page table is being shadowed by KVM.
2200  *			     If emulation of the faulting instruction fails and
2201  *			     this flag is set, KVM will exit to userspace instead
2202  *			     of retrying emulation as KVM cannot make forward
2203  *			     progress.
2204  *
2205  *			     If emulation fails for a write to guest page tables,
2206  *			     KVM unprotects (zaps) the shadow page for the target
2207  *			     gfn and resumes the guest to retry the non-emulatable
2208  *			     instruction (on hardware).  Unprotecting the gfn
2209  *			     doesn't allow forward progress for a self-changing
2210  *			     access because doing so also zaps the translation for
2211  *			     the gfn, i.e. retrying the instruction will hit a
2212  *			     !PRESENT fault, which results in a new shadow page
2213  *			     and sends KVM back to square one.
2214  *
2215  * EMULTYPE_SKIP_SOFT_INT - Set in combination with EMULTYPE_SKIP to only skip
2216  *                          an instruction if it could generate a given software
2217  *                          interrupt, which must be encoded via
2218  *                          EMULTYPE_SET_SOFT_INT_VECTOR().
2219  */
2220 #define EMULTYPE_NO_DECODE	    (1 << 0)
2221 #define EMULTYPE_TRAP_UD	    (1 << 1)
2222 #define EMULTYPE_SKIP		    (1 << 2)
2223 #define EMULTYPE_ALLOW_RETRY_PF	    (1 << 3)
2224 #define EMULTYPE_TRAP_UD_FORCED	    (1 << 4)
2225 #define EMULTYPE_VMWARE_GP	    (1 << 5)
2226 #define EMULTYPE_PF		    (1 << 6)
2227 #define EMULTYPE_COMPLETE_USER_EXIT (1 << 7)
2228 #define EMULTYPE_WRITE_PF_TO_SP	    (1 << 8)
2229 #define EMULTYPE_SKIP_SOFT_INT	    (1 << 9)
2230 
2231 #define EMULTYPE_SET_SOFT_INT_VECTOR(v)	((u32)((v) & 0xff) << 16)
2232 #define EMULTYPE_GET_SOFT_INT_VECTOR(e)	(((e) >> 16) & 0xff)
2233 
2234 static inline bool kvm_can_emulate_event_vectoring(int emul_type)
2235 {
2236 	return !(emul_type & EMULTYPE_PF);
2237 }
2238 
2239 int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type);
2240 int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
2241 					void *insn, int insn_len);
2242 void __kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu,
2243 					  u64 *data, u8 ndata);
2244 void kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu);
2245 
2246 void kvm_prepare_event_vectoring_exit(struct kvm_vcpu *vcpu, gpa_t gpa);
2247 void kvm_prepare_unexpected_reason_exit(struct kvm_vcpu *vcpu, u64 exit_reason);
2248 
2249 void kvm_enable_efer_bits(u64);
2250 bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer);
2251 int kvm_emulate_msr_read(struct kvm_vcpu *vcpu, u32 index, u64 *data);
2252 int kvm_emulate_msr_write(struct kvm_vcpu *vcpu, u32 index, u64 data);
2253 int __kvm_emulate_msr_read(struct kvm_vcpu *vcpu, u32 index, u64 *data);
2254 int __kvm_emulate_msr_write(struct kvm_vcpu *vcpu, u32 index, u64 data);
2255 int kvm_msr_read(struct kvm_vcpu *vcpu, u32 index, u64 *data);
2256 int kvm_msr_write(struct kvm_vcpu *vcpu, u32 index, u64 data);
2257 int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu);
2258 int kvm_emulate_rdmsr_imm(struct kvm_vcpu *vcpu, u32 msr, int reg);
2259 int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu);
2260 int kvm_emulate_wrmsr_imm(struct kvm_vcpu *vcpu, u32 msr, int reg);
2261 int kvm_emulate_as_nop(struct kvm_vcpu *vcpu);
2262 int kvm_emulate_invd(struct kvm_vcpu *vcpu);
2263 int kvm_emulate_mwait(struct kvm_vcpu *vcpu);
2264 int kvm_handle_invalid_op(struct kvm_vcpu *vcpu);
2265 int kvm_emulate_monitor(struct kvm_vcpu *vcpu);
2266 
2267 int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in);
2268 int kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
2269 int kvm_emulate_halt(struct kvm_vcpu *vcpu);
2270 int kvm_emulate_halt_noskip(struct kvm_vcpu *vcpu);
2271 int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu);
2272 int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu);
2273 
2274 void kvm_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg);
2275 void kvm_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg);
2276 int kvm_load_segment_descriptor(struct kvm_vcpu *vcpu, u16 selector, int seg);
2277 void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector);
2278 
2279 int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
2280 		    int reason, bool has_error_code, u32 error_code);
2281 
2282 void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0);
2283 void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4);
2284 int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
2285 int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
2286 int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
2287 int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8);
2288 int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val);
2289 unsigned long kvm_get_dr(struct kvm_vcpu *vcpu, int dr);
2290 unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu);
2291 void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
2292 int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr);
2293 int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu);
2294 
2295 int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr);
2296 int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr);
2297 
2298 unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu);
2299 void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
2300 int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu);
2301 
2302 void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr);
2303 void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code);
2304 void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr, unsigned long payload);
2305 void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned int nr,
2306 			   bool has_error_code, u32 error_code);
2307 void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault);
2308 void kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
2309 				    struct x86_exception *fault);
2310 bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl);
2311 bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr);
2312 
2313 static inline int __kvm_irq_line_state(unsigned long *irq_state,
2314 				       int irq_source_id, int level)
2315 {
2316 	/* Logical OR for level trig interrupt */
2317 	if (level)
2318 		__set_bit(irq_source_id, irq_state);
2319 	else
2320 		__clear_bit(irq_source_id, irq_state);
2321 
2322 	return !!(*irq_state);
2323 }
2324 
2325 void kvm_inject_nmi(struct kvm_vcpu *vcpu);
2326 int kvm_get_nr_pending_nmis(struct kvm_vcpu *vcpu);
2327 
2328 void kvm_update_dr7(struct kvm_vcpu *vcpu);
2329 
2330 bool __kvm_mmu_unprotect_gfn_and_retry(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
2331 				       bool always_retry);
2332 
2333 static inline bool kvm_mmu_unprotect_gfn_and_retry(struct kvm_vcpu *vcpu,
2334 						   gpa_t cr2_or_gpa)
2335 {
2336 	return __kvm_mmu_unprotect_gfn_and_retry(vcpu, cr2_or_gpa, false);
2337 }
2338 
2339 void kvm_mmu_free_roots(struct kvm *kvm, struct kvm_mmu *mmu,
2340 			ulong roots_to_free);
2341 void kvm_mmu_free_guest_mode_roots(struct kvm *kvm, struct kvm_mmu *mmu);
2342 gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
2343 			      struct x86_exception *exception);
2344 gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
2345 			       struct x86_exception *exception);
2346 gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
2347 				struct x86_exception *exception);
2348 
2349 bool kvm_apicv_activated(struct kvm *kvm);
2350 bool kvm_vcpu_apicv_activated(struct kvm_vcpu *vcpu);
2351 void __kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu);
2352 void __kvm_set_or_clear_apicv_inhibit(struct kvm *kvm,
2353 				      enum kvm_apicv_inhibit reason, bool set);
2354 void kvm_set_or_clear_apicv_inhibit(struct kvm *kvm,
2355 				    enum kvm_apicv_inhibit reason, bool set);
2356 
2357 static inline void kvm_set_apicv_inhibit(struct kvm *kvm,
2358 					 enum kvm_apicv_inhibit reason)
2359 {
2360 	kvm_set_or_clear_apicv_inhibit(kvm, reason, true);
2361 }
2362 
2363 static inline void kvm_clear_apicv_inhibit(struct kvm *kvm,
2364 					   enum kvm_apicv_inhibit reason)
2365 {
2366 	kvm_set_or_clear_apicv_inhibit(kvm, reason, false);
2367 }
2368 
2369 void kvm_inc_or_dec_irq_window_inhibit(struct kvm *kvm, bool inc);
2370 
2371 static inline void kvm_inc_apicv_irq_window_req(struct kvm *kvm)
2372 {
2373 	kvm_inc_or_dec_irq_window_inhibit(kvm, true);
2374 }
2375 
2376 static inline void kvm_dec_apicv_irq_window_req(struct kvm *kvm)
2377 {
2378 	kvm_inc_or_dec_irq_window_inhibit(kvm, false);
2379 }
2380 
2381 int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa, u64 error_code,
2382 		       void *insn, int insn_len);
2383 void kvm_mmu_print_sptes(struct kvm_vcpu *vcpu, gpa_t gpa, const char *msg);
2384 void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva);
2385 void kvm_mmu_invalidate_addr(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
2386 			     u64 addr, unsigned long roots);
2387 void kvm_mmu_invpcid_gva(struct kvm_vcpu *vcpu, gva_t gva, unsigned long pcid);
2388 void kvm_mmu_new_pgd(struct kvm_vcpu *vcpu, gpa_t new_pgd);
2389 
2390 void kvm_configure_mmu(bool enable_tdp, int tdp_forced_root_level,
2391 		       int tdp_max_root_level, int tdp_huge_page_level);
2392 
2393 
2394 #ifdef CONFIG_KVM_GENERIC_MEMORY_ATTRIBUTES
2395 #define kvm_arch_has_private_mem(kvm) ((kvm)->arch.has_private_mem)
2396 #endif
2397 
2398 #define kvm_arch_has_readonly_mem(kvm) (!(kvm)->arch.has_protected_state)
2399 
2400 static inline u16 kvm_read_ldt(void)
2401 {
2402 	u16 ldt;
2403 	asm("sldt %0" : "=g"(ldt));
2404 	return ldt;
2405 }
2406 
2407 static inline void kvm_load_ldt(u16 sel)
2408 {
2409 	asm("lldt %0" : : "rm"(sel));
2410 }
2411 
2412 #ifdef CONFIG_X86_64
2413 static inline unsigned long read_msr(unsigned long msr)
2414 {
2415 	u64 value;
2416 
2417 	rdmsrq(msr, value);
2418 	return value;
2419 }
2420 #endif
2421 
2422 static inline void kvm_inject_gp(struct kvm_vcpu *vcpu, u32 error_code)
2423 {
2424 	kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
2425 }
2426 
2427 #define TSS_IOPB_BASE_OFFSET 0x66
2428 #define TSS_BASE_SIZE 0x68
2429 #define TSS_IOPB_SIZE (65536 / 8)
2430 #define TSS_REDIRECTION_SIZE (256 / 8)
2431 #define RMODE_TSS_SIZE							\
2432 	(TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
2433 
2434 enum {
2435 	TASK_SWITCH_CALL = 0,
2436 	TASK_SWITCH_IRET = 1,
2437 	TASK_SWITCH_JMP = 2,
2438 	TASK_SWITCH_GATE = 3,
2439 };
2440 
2441 #define HF_GUEST_MASK		(1 << 0) /* VCPU is in guest-mode */
2442 
2443 #ifdef CONFIG_KVM_SMM
2444 #define HF_SMM_MASK		(1 << 1)
2445 #define HF_SMM_INSIDE_NMI_MASK	(1 << 2)
2446 
2447 # define KVM_MAX_NR_ADDRESS_SPACES	2
2448 /* SMM is currently unsupported for guests with private memory. */
2449 # define kvm_arch_nr_memslot_as_ids(kvm) (kvm_arch_has_private_mem(kvm) ? 1 : 2)
2450 # define kvm_arch_vcpu_memslots_id(vcpu) ((vcpu)->arch.hflags & HF_SMM_MASK ? 1 : 0)
2451 # define kvm_memslots_for_spte_role(kvm, role) __kvm_memslots(kvm, (role).smm)
2452 #else
2453 # define kvm_memslots_for_spte_role(kvm, role) __kvm_memslots(kvm, 0)
2454 #endif
2455 
2456 int kvm_cpu_has_injectable_intr(struct kvm_vcpu *v);
2457 int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu);
2458 int kvm_cpu_has_extint(struct kvm_vcpu *v);
2459 int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu);
2460 int kvm_cpu_get_extint(struct kvm_vcpu *v);
2461 int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
2462 void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event);
2463 
2464 int kvm_pv_send_ipi(struct kvm *kvm, unsigned long ipi_bitmap_low,
2465 		    unsigned long ipi_bitmap_high, u32 min,
2466 		    unsigned long icr, int op_64_bit);
2467 
2468 int kvm_add_user_return_msr(u32 msr);
2469 int kvm_find_user_return_msr(u32 msr);
2470 int kvm_set_user_return_msr(unsigned index, u64 val, u64 mask);
2471 u64 kvm_get_user_return_msr(unsigned int slot);
2472 
2473 static inline bool kvm_is_supported_user_return_msr(u32 msr)
2474 {
2475 	return kvm_find_user_return_msr(msr) >= 0;
2476 }
2477 
2478 u64 kvm_scale_tsc(u64 tsc, u64 ratio);
2479 u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc);
2480 u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier);
2481 u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier);
2482 
2483 unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu);
2484 bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip);
2485 
2486 void kvm_make_scan_ioapic_request(struct kvm *kvm);
2487 void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
2488 				       unsigned long *vcpu_bitmap);
2489 
2490 bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
2491 				     struct kvm_async_pf *work);
2492 void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
2493 				 struct kvm_async_pf *work);
2494 void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
2495 			       struct kvm_async_pf *work);
2496 void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu);
2497 bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu);
2498 extern bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn);
2499 
2500 int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu);
2501 int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err);
2502 
2503 void __user *__x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
2504 				     u32 size);
2505 bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu);
2506 bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu);
2507 
2508 static inline bool kvm_irq_is_postable(struct kvm_lapic_irq *irq)
2509 {
2510 	/* We can only post Fixed and LowPrio IRQs */
2511 	return (irq->delivery_mode == APIC_DM_FIXED ||
2512 		irq->delivery_mode == APIC_DM_LOWEST);
2513 }
2514 
2515 static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu)
2516 {
2517 	kvm_x86_call(vcpu_blocking)(vcpu);
2518 }
2519 
2520 static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
2521 {
2522 	kvm_x86_call(vcpu_unblocking)(vcpu);
2523 }
2524 
2525 static inline int kvm_cpu_get_apicid(int mps_cpu)
2526 {
2527 #ifdef CONFIG_X86_LOCAL_APIC
2528 	return default_cpu_present_to_apicid(mps_cpu);
2529 #else
2530 	WARN_ON_ONCE(1);
2531 	return BAD_APICID;
2532 #endif
2533 }
2534 
2535 int memslot_rmap_alloc(struct kvm_memory_slot *slot, unsigned long npages);
2536 
2537 #define KVM_CLOCK_VALID_FLAGS						\
2538 	(KVM_CLOCK_TSC_STABLE | KVM_CLOCK_REALTIME | KVM_CLOCK_HOST_TSC)
2539 
2540 #define KVM_X86_VALID_QUIRKS			\
2541 	(KVM_X86_QUIRK_LINT0_REENABLED |	\
2542 	 KVM_X86_QUIRK_CD_NW_CLEARED |		\
2543 	 KVM_X86_QUIRK_LAPIC_MMIO_HOLE |	\
2544 	 KVM_X86_QUIRK_OUT_7E_INC_RIP |		\
2545 	 KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT |	\
2546 	 KVM_X86_QUIRK_FIX_HYPERCALL_INSN |	\
2547 	 KVM_X86_QUIRK_MWAIT_NEVER_UD_FAULTS |	\
2548 	 KVM_X86_QUIRK_SLOT_ZAP_ALL |		\
2549 	 KVM_X86_QUIRK_STUFF_FEATURE_MSRS |	\
2550 	 KVM_X86_QUIRK_IGNORE_GUEST_PAT |	\
2551 	 KVM_X86_QUIRK_VMCS12_ALLOW_FREEZE_IN_SMM)
2552 
2553 #define KVM_X86_CONDITIONAL_QUIRKS		\
2554 	(KVM_X86_QUIRK_CD_NW_CLEARED |		\
2555 	 KVM_X86_QUIRK_IGNORE_GUEST_PAT)
2556 
2557 /*
2558  * KVM previously used a u32 field in kvm_run to indicate the hypercall was
2559  * initiated from long mode. KVM now sets bit 0 to indicate long mode, but the
2560  * remaining 31 lower bits must be 0 to preserve ABI.
2561  */
2562 #define KVM_EXIT_HYPERCALL_MBZ		GENMASK_ULL(31, 1)
2563 
2564 static inline bool kvm_arch_has_irq_bypass(void)
2565 {
2566 	return enable_device_posted_irqs;
2567 }
2568 
2569 #endif /* _ASM_X86_KVM_HOST_H */
2570