Vegard Nossum | a656c8e | 2008-07-22 21:27:11 +0200 | [diff] [blame] | 1 | /* |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2 | * Kernel-based Virtual Machine driver for Linux |
| 3 | * |
| 4 | * This header defines architecture specific interfaces, x86 version |
| 5 | * |
| 6 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 7 | * the COPYING file in the top-level directory. |
| 8 | * |
| 9 | */ |
| 10 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 11 | #ifndef _ASM_X86_KVM_HOST_H |
| 12 | #define _ASM_X86_KVM_HOST_H |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 13 | |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 14 | #include <linux/types.h> |
| 15 | #include <linux/mm.h> |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 16 | #include <linux/mmu_notifier.h> |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 17 | #include <linux/tracepoint.h> |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 18 | #include <linux/cpumask.h> |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 19 | #include <linux/irq_work.h> |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 20 | |
| 21 | #include <linux/kvm.h> |
| 22 | #include <linux/kvm_para.h> |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 23 | #include <linux/kvm_types.h> |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 24 | #include <linux/perf_event.h> |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 25 | #include <linux/pvclock_gtod.h> |
| 26 | #include <linux/clocksource.h> |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 27 | #include <linux/irqbypass.h> |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 28 | |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 29 | #include <asm/pvclock-abi.h> |
Hollis Blanchard | e01a1b5 | 2007-12-03 15:30:25 -0600 | [diff] [blame] | 30 | #include <asm/desc.h> |
Sheng Yang | 0bed3b5 | 2008-10-09 16:01:54 +0800 | [diff] [blame] | 31 | #include <asm/mtrr.h> |
Alexander Graf | 9962d03 | 2008-11-25 20:17:02 +0100 | [diff] [blame] | 32 | #include <asm/msr-index.h> |
H. Peter Anvin | 3ee8972 | 2012-04-20 13:41:59 -0700 | [diff] [blame] | 33 | #include <asm/asm.h> |
Hollis Blanchard | e01a1b5 | 2007-12-03 15:30:25 -0600 | [diff] [blame] | 34 | |
Chegu Vinod | cbf6435 | 2013-04-27 18:31:04 -0700 | [diff] [blame] | 35 | #define KVM_MAX_VCPUS 255 |
Marcelo Tosatti | a59cb29 | 2012-02-03 12:28:31 -0200 | [diff] [blame] | 36 | #define KVM_SOFT_MAX_VCPUS 160 |
Igor Mammedov | 1d4e7e3 | 2014-11-06 15:52:47 +0000 | [diff] [blame] | 37 | #define KVM_USER_MEM_SLOTS 509 |
Alex Williamson | 0743247 | 2012-12-10 10:33:15 -0700 | [diff] [blame] | 38 | /* memory slots that are not exposed to userspace */ |
| 39 | #define KVM_PRIVATE_MEM_SLOTS 3 |
Alex Williamson | bbacc0c | 2012-12-10 10:33:09 -0700 | [diff] [blame] | 40 | #define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS) |
Xiao Guangrong | 93a5cef | 2011-11-24 17:37:48 +0800 | [diff] [blame] | 41 | |
Avi Kivity | 69a9f69 | 2008-03-21 12:38:23 +0200 | [diff] [blame] | 42 | #define KVM_PIO_PAGE_OFFSET 1 |
Laurent Vivier | 542472b | 2008-05-30 16:05:55 +0200 | [diff] [blame] | 43 | #define KVM_COALESCED_MMIO_PAGE_OFFSET 2 |
David Hildenbrand | 920552b | 2015-09-18 12:34:53 +0200 | [diff] [blame] | 44 | #define KVM_HALT_POLL_NS_DEFAULT 500000 |
Avi Kivity | 69a9f69 | 2008-03-21 12:38:23 +0200 | [diff] [blame] | 45 | |
Alexander Graf | 8175e5b | 2013-04-15 10:42:33 +0200 | [diff] [blame] | 46 | #define KVM_IRQCHIP_NUM_PINS KVM_IOAPIC_NUM_PINS |
| 47 | |
Joerg Roedel | cfec82c | 2011-04-04 12:39:28 +0200 | [diff] [blame] | 48 | #define CR0_RESERVED_BITS \ |
| 49 | (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \ |
| 50 | | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \ |
| 51 | | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG)) |
| 52 | |
Nadav Amit | 346874c | 2014-04-18 03:35:09 +0300 | [diff] [blame] | 53 | #define CR3_L_MODE_RESERVED_BITS 0xFFFFFF0000000000ULL |
Borislav Petkov | cfaa790 | 2015-01-15 09:44:56 +0100 | [diff] [blame] | 54 | #define CR3_PCID_INVD BIT_64(63) |
Joerg Roedel | cfec82c | 2011-04-04 12:39:28 +0200 | [diff] [blame] | 55 | #define CR4_RESERVED_BITS \ |
| 56 | (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\ |
| 57 | | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \ |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 58 | | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR | X86_CR4_PCIDE \ |
H. Peter Anvin | afcbf13 | 2013-04-27 16:37:47 -0700 | [diff] [blame] | 59 | | X86_CR4_OSXSAVE | X86_CR4_SMEP | X86_CR4_FSGSBASE \ |
Feng Wu | 56d6efc | 2014-04-01 17:46:33 +0800 | [diff] [blame] | 60 | | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE | X86_CR4_SMAP)) |
Joerg Roedel | cfec82c | 2011-04-04 12:39:28 +0200 | [diff] [blame] | 61 | |
| 62 | #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR) |
| 63 | |
| 64 | |
Zhang Xiantao | cd6e8f8 | 2007-11-19 14:33:37 +0800 | [diff] [blame] | 65 | |
Zhang Xiantao | cd6e8f8 | 2007-11-19 14:33:37 +0800 | [diff] [blame] | 66 | #define INVALID_PAGE (~(hpa_t)0) |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 67 | #define VALID_PAGE(x) ((x) != INVALID_PAGE) |
| 68 | |
Zhang Xiantao | cd6e8f8 | 2007-11-19 14:33:37 +0800 | [diff] [blame] | 69 | #define UNMAPPED_GVA (~(gpa_t)0) |
| 70 | |
Joerg Roedel | ec04b26 | 2009-06-19 15:16:23 +0200 | [diff] [blame] | 71 | /* KVM Hugepage definitions for x86 */ |
Joerg Roedel | 04326ca | 2009-07-27 16:30:47 +0200 | [diff] [blame] | 72 | #define KVM_NR_PAGE_SIZES 3 |
Joerg Roedel | 8285541 | 2010-07-01 16:00:11 +0200 | [diff] [blame] | 73 | #define KVM_HPAGE_GFN_SHIFT(x) (((x) - 1) * 9) |
| 74 | #define KVM_HPAGE_SHIFT(x) (PAGE_SHIFT + KVM_HPAGE_GFN_SHIFT(x)) |
Joerg Roedel | ec04b26 | 2009-06-19 15:16:23 +0200 | [diff] [blame] | 75 | #define KVM_HPAGE_SIZE(x) (1UL << KVM_HPAGE_SHIFT(x)) |
| 76 | #define KVM_HPAGE_MASK(x) (~(KVM_HPAGE_SIZE(x) - 1)) |
| 77 | #define KVM_PAGES_PER_HPAGE(x) (KVM_HPAGE_SIZE(x) / PAGE_SIZE) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 78 | |
Christoffer Dall | 6d9d41e | 2013-10-02 14:22:28 -0700 | [diff] [blame] | 79 | static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level) |
| 80 | { |
| 81 | /* KVM_HPAGE_GFN_SHIFT(PT_PAGE_TABLE_LEVEL) must be 0. */ |
| 82 | return (gfn >> KVM_HPAGE_GFN_SHIFT(level)) - |
| 83 | (base_gfn >> KVM_HPAGE_GFN_SHIFT(level)); |
| 84 | } |
| 85 | |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 86 | #define KVM_PERMILLE_MMU_PAGES 20 |
| 87 | #define KVM_MIN_ALLOC_MMU_PAGES 64 |
Dong, Eddie | 1ae0a13 | 2008-01-07 13:20:25 +0200 | [diff] [blame] | 88 | #define KVM_MMU_HASH_SHIFT 10 |
| 89 | #define KVM_NUM_MMU_PAGES (1 << KVM_MMU_HASH_SHIFT) |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 90 | #define KVM_MIN_FREE_MMU_PAGES 5 |
| 91 | #define KVM_REFILL_PAGES 25 |
Andre Przywara | 73c1160 | 2010-12-01 12:17:44 +0100 | [diff] [blame] | 92 | #define KVM_MAX_CPUID_ENTRIES 80 |
Sheng Yang | 0bed3b5 | 2008-10-09 16:01:54 +0800 | [diff] [blame] | 93 | #define KVM_NR_FIXED_MTRR_REGION 88 |
Paolo Bonzini | 0d234da | 2014-08-18 16:39:48 +0200 | [diff] [blame] | 94 | #define KVM_NR_VAR_MTRR 8 |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 95 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 96 | #define ASYNC_PF_PER_VCPU 64 |
| 97 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 98 | enum kvm_reg { |
Zhang Xiantao | 2b3ccfa | 2007-11-19 14:56:05 +0800 | [diff] [blame] | 99 | VCPU_REGS_RAX = 0, |
| 100 | VCPU_REGS_RCX = 1, |
| 101 | VCPU_REGS_RDX = 2, |
| 102 | VCPU_REGS_RBX = 3, |
| 103 | VCPU_REGS_RSP = 4, |
| 104 | VCPU_REGS_RBP = 5, |
| 105 | VCPU_REGS_RSI = 6, |
| 106 | VCPU_REGS_RDI = 7, |
| 107 | #ifdef CONFIG_X86_64 |
| 108 | VCPU_REGS_R8 = 8, |
| 109 | VCPU_REGS_R9 = 9, |
| 110 | VCPU_REGS_R10 = 10, |
| 111 | VCPU_REGS_R11 = 11, |
| 112 | VCPU_REGS_R12 = 12, |
| 113 | VCPU_REGS_R13 = 13, |
| 114 | VCPU_REGS_R14 = 14, |
| 115 | VCPU_REGS_R15 = 15, |
| 116 | #endif |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 117 | VCPU_REGS_RIP, |
Zhang Xiantao | 2b3ccfa | 2007-11-19 14:56:05 +0800 | [diff] [blame] | 118 | NR_VCPU_REGS |
| 119 | }; |
| 120 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 121 | enum kvm_reg_ex { |
| 122 | VCPU_EXREG_PDPTR = NR_VCPU_REGS, |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 123 | VCPU_EXREG_CR3, |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 124 | VCPU_EXREG_RFLAGS, |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 125 | VCPU_EXREG_SEGMENTS, |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 126 | }; |
| 127 | |
Zhang Xiantao | 2b3ccfa | 2007-11-19 14:56:05 +0800 | [diff] [blame] | 128 | enum { |
Zhang Xiantao | 2b3ccfa | 2007-11-19 14:56:05 +0800 | [diff] [blame] | 129 | VCPU_SREG_ES, |
Avi Kivity | 81609e3 | 2008-05-27 16:26:01 +0300 | [diff] [blame] | 130 | VCPU_SREG_CS, |
| 131 | VCPU_SREG_SS, |
| 132 | VCPU_SREG_DS, |
Zhang Xiantao | 2b3ccfa | 2007-11-19 14:56:05 +0800 | [diff] [blame] | 133 | VCPU_SREG_FS, |
| 134 | VCPU_SREG_GS, |
Zhang Xiantao | 2b3ccfa | 2007-11-19 14:56:05 +0800 | [diff] [blame] | 135 | VCPU_SREG_TR, |
| 136 | VCPU_SREG_LDTR, |
| 137 | }; |
| 138 | |
Avi Kivity | 56e8231 | 2009-08-12 15:04:37 +0300 | [diff] [blame] | 139 | #include <asm/kvm_emulate.h> |
Zhang Xiantao | 2b3ccfa | 2007-11-19 14:56:05 +0800 | [diff] [blame] | 140 | |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 141 | #define KVM_NR_MEM_OBJS 40 |
| 142 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 143 | #define KVM_NR_DB_REGS 4 |
| 144 | |
| 145 | #define DR6_BD (1 << 13) |
| 146 | #define DR6_BS (1 << 14) |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 147 | #define DR6_RTM (1 << 16) |
| 148 | #define DR6_FIXED_1 0xfffe0ff0 |
| 149 | #define DR6_INIT 0xffff0ff0 |
| 150 | #define DR6_VOLATILE 0x0001e00f |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 151 | |
| 152 | #define DR7_BP_EN_MASK 0x000000ff |
| 153 | #define DR7_GE (1 << 9) |
| 154 | #define DR7_GD (1 << 13) |
| 155 | #define DR7_FIXED_1 0x00000400 |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 156 | #define DR7_VOLATILE 0xffff2bff |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 157 | |
Nadav Amit | c205fb7 | 2014-12-25 02:52:16 +0200 | [diff] [blame] | 158 | #define PFERR_PRESENT_BIT 0 |
| 159 | #define PFERR_WRITE_BIT 1 |
| 160 | #define PFERR_USER_BIT 2 |
| 161 | #define PFERR_RSVD_BIT 3 |
| 162 | #define PFERR_FETCH_BIT 4 |
| 163 | |
| 164 | #define PFERR_PRESENT_MASK (1U << PFERR_PRESENT_BIT) |
| 165 | #define PFERR_WRITE_MASK (1U << PFERR_WRITE_BIT) |
| 166 | #define PFERR_USER_MASK (1U << PFERR_USER_BIT) |
| 167 | #define PFERR_RSVD_MASK (1U << PFERR_RSVD_BIT) |
| 168 | #define PFERR_FETCH_MASK (1U << PFERR_FETCH_BIT) |
| 169 | |
Gleb Natapov | 4138377 | 2012-04-19 14:06:29 +0300 | [diff] [blame] | 170 | /* apic attention bits */ |
| 171 | #define KVM_APIC_CHECK_VAPIC 0 |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 172 | /* |
| 173 | * The following bit is set with PV-EOI, unset on EOI. |
| 174 | * We detect PV-EOI changes by guest by comparing |
| 175 | * this bit with PV-EOI in guest memory. |
| 176 | * See the implementation in apic_update_pv_eoi. |
| 177 | */ |
| 178 | #define KVM_APIC_PV_EOI_PENDING 1 |
Gleb Natapov | 4138377 | 2012-04-19 14:06:29 +0300 | [diff] [blame] | 179 | |
Feng Wu | d84f1e0 | 2015-09-18 22:29:49 +0800 | [diff] [blame] | 180 | struct kvm_kernel_irq_routing_entry; |
| 181 | |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 182 | /* |
| 183 | * We don't want allocation failures within the mmu code, so we preallocate |
| 184 | * enough memory for a single page fault in a cache. |
| 185 | */ |
| 186 | struct kvm_mmu_memory_cache { |
| 187 | int nobjs; |
| 188 | void *objects[KVM_NR_MEM_OBJS]; |
| 189 | }; |
| 190 | |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 191 | union kvm_mmu_page_role { |
| 192 | unsigned word; |
| 193 | struct { |
Joe Perches | 7d76b4d | 2008-03-23 01:02:34 -0700 | [diff] [blame] | 194 | unsigned level:4; |
Avi Kivity | 5b7e010 | 2010-04-14 19:20:03 +0300 | [diff] [blame] | 195 | unsigned cr4_pae:1; |
Joe Perches | 7d76b4d | 2008-03-23 01:02:34 -0700 | [diff] [blame] | 196 | unsigned quadrant:2; |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 197 | unsigned direct:1; |
Joe Perches | 7d76b4d | 2008-03-23 01:02:34 -0700 | [diff] [blame] | 198 | unsigned access:3; |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 199 | unsigned invalid:1; |
Avi Kivity | 9645bb56 | 2009-03-31 11:31:54 +0300 | [diff] [blame] | 200 | unsigned nxe:1; |
Avi Kivity | 3dbe141 | 2010-05-12 11:48:18 +0300 | [diff] [blame] | 201 | unsigned cr0_wp:1; |
Avi Kivity | 411c588 | 2011-06-06 16:11:54 +0300 | [diff] [blame] | 202 | unsigned smep_andnot_wp:1; |
Xiao Guangrong | 0be0226 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 203 | unsigned smap_andnot_wp:1; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 204 | unsigned :8; |
| 205 | |
| 206 | /* |
| 207 | * This is left at the top of the word so that |
| 208 | * kvm_memslots_for_spte_role can extract it with a |
| 209 | * simple shift. While there is room, give it a whole |
| 210 | * byte so it is also faster to load it from memory. |
| 211 | */ |
| 212 | unsigned smm:8; |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 213 | }; |
| 214 | }; |
| 215 | |
| 216 | struct kvm_mmu_page { |
| 217 | struct list_head link; |
| 218 | struct hlist_node hash_link; |
| 219 | |
| 220 | /* |
| 221 | * The following two entries are used to key the shadow page in the |
| 222 | * hash table. |
| 223 | */ |
| 224 | gfn_t gfn; |
| 225 | union kvm_mmu_page_role role; |
| 226 | |
| 227 | u64 *spt; |
| 228 | /* hold the gfn of each spte inside spt */ |
| 229 | gfn_t *gfns; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 230 | bool unsync; |
Xiao Guangrong | 0571d36 | 2010-04-16 21:27:54 +0800 | [diff] [blame] | 231 | int root_count; /* Currently serving as active root */ |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 232 | unsigned int unsync_children; |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 233 | unsigned long parent_ptes; /* Reverse mapping for parent_pte */ |
Xiao Guangrong | f6f8ade | 2013-06-19 17:09:24 +0800 | [diff] [blame] | 234 | |
| 235 | /* The page is obsolete if mmu_valid_gen != kvm->arch.mmu_valid_gen. */ |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 236 | unsigned long mmu_valid_gen; |
Xiao Guangrong | f6f8ade | 2013-06-19 17:09:24 +0800 | [diff] [blame] | 237 | |
Marcelo Tosatti | 0074ff6 | 2008-09-23 13:18:40 -0300 | [diff] [blame] | 238 | DECLARE_BITMAP(unsync_child_bitmap, 512); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 239 | |
| 240 | #ifdef CONFIG_X86_32 |
Xiao Guangrong | accaefe | 2013-06-19 17:09:20 +0800 | [diff] [blame] | 241 | /* |
| 242 | * Used out of the mmu-lock to avoid reading spte values while an |
| 243 | * update is in progress; see the comments in __get_spte_lockless(). |
| 244 | */ |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 245 | int clear_spte_count; |
| 246 | #endif |
| 247 | |
Xiao Guangrong | 0cbf8e4 | 2013-06-19 17:09:21 +0800 | [diff] [blame] | 248 | /* Number of writes since the last time traversal visited this page. */ |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 249 | int write_flooding_count; |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 250 | }; |
| 251 | |
Avi Kivity | 1c08364 | 2009-01-04 12:39:07 +0200 | [diff] [blame] | 252 | struct kvm_pio_request { |
| 253 | unsigned long count; |
Avi Kivity | 1c08364 | 2009-01-04 12:39:07 +0200 | [diff] [blame] | 254 | int in; |
| 255 | int port; |
| 256 | int size; |
Avi Kivity | 1c08364 | 2009-01-04 12:39:07 +0200 | [diff] [blame] | 257 | }; |
| 258 | |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 259 | struct rsvd_bits_validate { |
| 260 | u64 rsvd_bits_mask[2][4]; |
| 261 | u64 bad_mt_xwr; |
| 262 | }; |
| 263 | |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 264 | /* |
| 265 | * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level |
| 266 | * 32-bit). The kvm_mmu structure abstracts the details of the current mmu |
| 267 | * mode. |
| 268 | */ |
| 269 | struct kvm_mmu { |
Joerg Roedel | f43addd | 2010-09-10 17:30:40 +0200 | [diff] [blame] | 270 | void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long root); |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 271 | unsigned long (*get_cr3)(struct kvm_vcpu *vcpu); |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 272 | u64 (*get_pdptr)(struct kvm_vcpu *vcpu, int index); |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 273 | int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err, |
| 274 | bool prefault); |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 275 | void (*inject_page_fault)(struct kvm_vcpu *vcpu, |
| 276 | struct x86_exception *fault); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 277 | gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva, u32 access, |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 278 | struct x86_exception *exception); |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 279 | gpa_t (*translate_gpa)(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access, |
| 280 | struct x86_exception *exception); |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 281 | int (*sync_page)(struct kvm_vcpu *vcpu, |
Xiao Guangrong | a4a8e6f | 2010-11-19 17:04:03 +0800 | [diff] [blame] | 282 | struct kvm_mmu_page *sp); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 283 | void (*invlpg)(struct kvm_vcpu *vcpu, gva_t gva); |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 284 | void (*update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 285 | u64 *spte, const void *pte); |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 286 | hpa_t root_hpa; |
| 287 | int root_level; |
| 288 | int shadow_root_level; |
Avi Kivity | a770f6f | 2008-12-21 19:20:09 +0200 | [diff] [blame] | 289 | union kvm_mmu_page_role base_role; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 290 | bool direct_map; |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 291 | |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 292 | /* |
| 293 | * Bitmap; bit set = permission fault |
| 294 | * Byte index: page fault error code [4:1] |
| 295 | * Bit index: pte permissions in ACC_* format |
| 296 | */ |
| 297 | u8 permissions[16]; |
| 298 | |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 299 | u64 *pae_root; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 300 | u64 *lm_root; |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 301 | |
| 302 | /* |
| 303 | * check zero bits on shadow page table entries, these |
| 304 | * bits include not only hardware reserved bits but also |
| 305 | * the bits spte never used. |
| 306 | */ |
| 307 | struct rsvd_bits_validate shadow_zero_check; |
| 308 | |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 309 | struct rsvd_bits_validate guest_rsvd_check; |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 310 | |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 311 | /* |
| 312 | * Bitmap: bit set = last pte in walk |
| 313 | * index[0:1]: level (zero-based) |
| 314 | * index[2]: pte.ps |
| 315 | */ |
| 316 | u8 last_pte_bitmap; |
| 317 | |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 318 | bool nx; |
| 319 | |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 320 | u64 pdptrs[4]; /* pae */ |
Zhang Xiantao | d657a98 | 2007-12-14 09:41:22 +0800 | [diff] [blame] | 321 | }; |
| 322 | |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 323 | enum pmc_type { |
| 324 | KVM_PMC_GP = 0, |
| 325 | KVM_PMC_FIXED, |
| 326 | }; |
| 327 | |
| 328 | struct kvm_pmc { |
| 329 | enum pmc_type type; |
| 330 | u8 idx; |
| 331 | u64 counter; |
| 332 | u64 eventsel; |
| 333 | struct perf_event *perf_event; |
| 334 | struct kvm_vcpu *vcpu; |
| 335 | }; |
| 336 | |
| 337 | struct kvm_pmu { |
| 338 | unsigned nr_arch_gp_counters; |
| 339 | unsigned nr_arch_fixed_counters; |
| 340 | unsigned available_event_types; |
| 341 | u64 fixed_ctr_ctrl; |
| 342 | u64 global_ctrl; |
| 343 | u64 global_status; |
| 344 | u64 global_ovf_ctrl; |
| 345 | u64 counter_bitmask[2]; |
| 346 | u64 global_ctrl_mask; |
Andi Kleen | 103af0a | 2013-07-18 15:57:02 -0700 | [diff] [blame] | 347 | u64 reserved_bits; |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 348 | u8 version; |
Robert Richter | 15c7ad5 | 2012-06-20 20:46:33 +0200 | [diff] [blame] | 349 | struct kvm_pmc gp_counters[INTEL_PMC_MAX_GENERIC]; |
| 350 | struct kvm_pmc fixed_counters[INTEL_PMC_MAX_FIXED]; |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 351 | struct irq_work irq_work; |
| 352 | u64 reprogram_pmi; |
| 353 | }; |
| 354 | |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 355 | struct kvm_pmu_ops; |
| 356 | |
Paolo Bonzini | 360b948 | 2014-02-21 09:55:56 +0100 | [diff] [blame] | 357 | enum { |
| 358 | KVM_DEBUGREG_BP_ENABLED = 1, |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 359 | KVM_DEBUGREG_WONT_EXIT = 2, |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 360 | KVM_DEBUGREG_RELOAD = 4, |
Paolo Bonzini | 360b948 | 2014-02-21 09:55:56 +0100 | [diff] [blame] | 361 | }; |
| 362 | |
Xiao Guangrong | 86fd527 | 2015-06-15 16:55:27 +0800 | [diff] [blame] | 363 | struct kvm_mtrr_range { |
| 364 | u64 base; |
| 365 | u64 mask; |
Xiao Guangrong | 19efffa | 2015-06-15 16:55:31 +0800 | [diff] [blame] | 366 | struct list_head node; |
Xiao Guangrong | 86fd527 | 2015-06-15 16:55:27 +0800 | [diff] [blame] | 367 | }; |
| 368 | |
Xiao Guangrong | 70109e7 | 2015-06-15 16:55:24 +0800 | [diff] [blame] | 369 | struct kvm_mtrr { |
Xiao Guangrong | 86fd527 | 2015-06-15 16:55:27 +0800 | [diff] [blame] | 370 | struct kvm_mtrr_range var_ranges[KVM_NR_VAR_MTRR]; |
Xiao Guangrong | 70109e7 | 2015-06-15 16:55:24 +0800 | [diff] [blame] | 371 | mtrr_type fixed_ranges[KVM_NR_FIXED_MTRR_REGION]; |
Xiao Guangrong | 10fac2d | 2015-06-15 16:55:26 +0800 | [diff] [blame] | 372 | u64 deftype; |
Xiao Guangrong | 19efffa | 2015-06-15 16:55:31 +0800 | [diff] [blame] | 373 | |
| 374 | struct list_head head; |
Xiao Guangrong | 70109e7 | 2015-06-15 16:55:24 +0800 | [diff] [blame] | 375 | }; |
| 376 | |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 377 | /* Hyper-V per vcpu emulation context */ |
| 378 | struct kvm_vcpu_hv { |
| 379 | u64 hv_vapic; |
Andrey Smetanin | 9eec50b | 2015-09-16 12:29:50 +0300 | [diff] [blame] | 380 | s64 runtime_offset; |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 381 | }; |
| 382 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 383 | struct kvm_vcpu_arch { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 384 | /* |
| 385 | * rip and regs accesses must go through |
| 386 | * kvm_{register,rip}_{read,write} functions. |
| 387 | */ |
| 388 | unsigned long regs[NR_VCPU_REGS]; |
| 389 | u32 regs_avail; |
| 390 | u32 regs_dirty; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 391 | |
| 392 | unsigned long cr0; |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 393 | unsigned long cr0_guest_owned_bits; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 394 | unsigned long cr2; |
| 395 | unsigned long cr3; |
| 396 | unsigned long cr4; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 397 | unsigned long cr4_guest_owned_bits; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 398 | unsigned long cr8; |
Alexander Graf | 1371d90 | 2008-11-25 20:17:04 +0100 | [diff] [blame] | 399 | u32 hflags; |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 400 | u64 efer; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 401 | u64 apic_base; |
| 402 | struct kvm_lapic *apic; /* kernel irqchip context */ |
Paolo Bonzini | 3bb345f | 2015-07-29 10:43:18 +0200 | [diff] [blame] | 403 | u64 eoi_exit_bitmap[4]; |
Gleb Natapov | 4138377 | 2012-04-19 14:06:29 +0300 | [diff] [blame] | 404 | unsigned long apic_attention; |
Gleb Natapov | e103571 | 2009-03-05 16:34:59 +0200 | [diff] [blame] | 405 | int32_t apic_arb_prio; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 406 | int mp_state; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 407 | u64 ia32_misc_enable_msr; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 408 | u64 smbase; |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 409 | bool tpr_access_reporting; |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 410 | u64 ia32_xss; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 411 | |
Joerg Roedel | 14dfe85 | 2010-09-10 17:30:49 +0200 | [diff] [blame] | 412 | /* |
| 413 | * Paging state of the vcpu |
| 414 | * |
| 415 | * If the vcpu runs in guest mode with two level paging this still saves |
| 416 | * the paging mode of the l1 guest. This context is always used to |
| 417 | * handle faults. |
| 418 | */ |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 419 | struct kvm_mmu mmu; |
Joerg Roedel | 8df25a3 | 2010-09-10 17:30:46 +0200 | [diff] [blame] | 420 | |
| 421 | /* |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 422 | * Paging state of an L2 guest (used for nested npt) |
| 423 | * |
| 424 | * This context will save all necessary information to walk page tables |
| 425 | * of the an L2 guest. This context is only initialized for page table |
| 426 | * walking and not for faulting since we never handle l2 page faults on |
| 427 | * the host. |
| 428 | */ |
| 429 | struct kvm_mmu nested_mmu; |
| 430 | |
| 431 | /* |
Joerg Roedel | 14dfe85 | 2010-09-10 17:30:49 +0200 | [diff] [blame] | 432 | * Pointer to the mmu context currently used for |
| 433 | * gva_to_gpa translations. |
| 434 | */ |
| 435 | struct kvm_mmu *walk_mmu; |
| 436 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 437 | struct kvm_mmu_memory_cache mmu_pte_list_desc_cache; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 438 | struct kvm_mmu_memory_cache mmu_page_cache; |
| 439 | struct kvm_mmu_memory_cache mmu_page_header_cache; |
| 440 | |
Sheng Yang | 9891883 | 2010-05-17 17:08:28 +0800 | [diff] [blame] | 441 | struct fpu guest_fpu; |
Liang Li | c447e76 | 2015-05-21 04:41:25 +0800 | [diff] [blame] | 442 | bool eager_fpu; |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 443 | u64 xcr0; |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 444 | u64 guest_supported_xcr0; |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 445 | u32 guest_xstate_size; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 446 | |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 447 | struct kvm_pio_request pio; |
| 448 | void *pio_data; |
| 449 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 450 | u8 event_exit_inst_len; |
| 451 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 452 | struct kvm_queued_exception { |
| 453 | bool pending; |
| 454 | bool has_error_code; |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 455 | bool reinject; |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 456 | u8 nr; |
| 457 | u32 error_code; |
| 458 | } exception; |
| 459 | |
Avi Kivity | 937a7ea | 2008-07-03 15:17:01 +0300 | [diff] [blame] | 460 | struct kvm_queued_interrupt { |
| 461 | bool pending; |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 462 | bool soft; |
Avi Kivity | 937a7ea | 2008-07-03 15:17:01 +0300 | [diff] [blame] | 463 | u8 nr; |
| 464 | } interrupt; |
| 465 | |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 466 | int halt_request; /* real mode on Intel only */ |
| 467 | |
| 468 | int cpuid_nent; |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 469 | struct kvm_cpuid_entry2 cpuid_entries[KVM_MAX_CPUID_ENTRIES]; |
Eugene Korenevsky | 5a4f55c | 2015-03-29 23:56:12 +0300 | [diff] [blame] | 470 | |
| 471 | int maxphyaddr; |
| 472 | |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 473 | /* emulate context */ |
| 474 | |
| 475 | struct x86_emulate_ctxt emulate_ctxt; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 476 | bool emulate_regs_need_sync_to_vcpu; |
| 477 | bool emulate_regs_need_sync_from_vcpu; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 478 | int (*complete_userspace_io)(struct kvm_vcpu *vcpu); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 479 | |
| 480 | gpa_t time; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 481 | struct pvclock_vcpu_time_info hv_clock; |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 482 | unsigned int hw_tsc_khz; |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 483 | struct gfn_to_hva_cache pv_time; |
| 484 | bool pv_time_enabled; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 485 | /* set guest stopped flag in pvclock flags field */ |
| 486 | bool pvclock_set_guest_stopped_request; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 487 | |
| 488 | struct { |
| 489 | u64 msr_val; |
| 490 | u64 last_steal; |
| 491 | u64 accum_steal; |
| 492 | struct gfn_to_hva_cache stime; |
| 493 | struct kvm_steal_time steal; |
| 494 | } st; |
| 495 | |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 496 | u64 last_guest_tsc; |
Zachary Amsden | 6f526ec | 2012-02-03 15:43:54 -0200 | [diff] [blame] | 497 | u64 last_host_tsc; |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 498 | u64 tsc_offset_adjustment; |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 499 | u64 this_tsc_nsec; |
| 500 | u64 this_tsc_write; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 501 | u64 this_tsc_generation; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 502 | bool tsc_catchup; |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 503 | bool tsc_always_catchup; |
| 504 | s8 virtual_tsc_shift; |
| 505 | u32 virtual_tsc_mult; |
| 506 | u32 virtual_tsc_khz; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 507 | s64 ia32_tsc_adjust_msr; |
Haozhong Zhang | ad721883 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 508 | u64 tsc_scaling_ratio; |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 509 | |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 510 | atomic_t nmi_queued; /* unprocessed asynchronous NMIs */ |
| 511 | unsigned nmi_pending; /* NMI queued after currently running handler */ |
| 512 | bool nmi_injected; /* Trying to inject an NMI this entry */ |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 513 | bool smi_pending; /* SMI queued after currently running handler */ |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 514 | |
Xiao Guangrong | 70109e7 | 2015-06-15 16:55:24 +0800 | [diff] [blame] | 515 | struct kvm_mtrr mtrr_state; |
Paolo Bonzini | 7cb060a | 2014-06-19 11:40:18 +0200 | [diff] [blame] | 516 | u64 pat; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 517 | |
Paolo Bonzini | 360b948 | 2014-02-21 09:55:56 +0100 | [diff] [blame] | 518 | unsigned switch_db_regs; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 519 | unsigned long db[KVM_NR_DB_REGS]; |
| 520 | unsigned long dr6; |
| 521 | unsigned long dr7; |
| 522 | unsigned long eff_db[KVM_NR_DB_REGS]; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 523 | unsigned long guest_debug_dr7; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 524 | |
| 525 | u64 mcg_cap; |
| 526 | u64 mcg_status; |
| 527 | u64 mcg_ctl; |
| 528 | u64 *mce_banks; |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 529 | |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 530 | /* Cache MMIO info */ |
| 531 | u64 mmio_gva; |
| 532 | unsigned access; |
| 533 | gfn_t mmio_gfn; |
David Matlack | 56f17dd | 2014-08-18 15:46:07 -0700 | [diff] [blame] | 534 | u64 mmio_gen; |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 535 | |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 536 | struct kvm_pmu pmu; |
| 537 | |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 538 | /* used for guest single stepping over the given code position */ |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 539 | unsigned long singlestep_rip; |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 540 | |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 541 | struct kvm_vcpu_hv hyperv; |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 542 | |
| 543 | cpumask_var_t wbinvd_dirty_mask; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 544 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 545 | unsigned long last_retry_eip; |
| 546 | unsigned long last_retry_addr; |
| 547 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 548 | struct { |
| 549 | bool halted; |
| 550 | gfn_t gfns[roundup_pow_of_two(ASYNC_PF_PER_VCPU)]; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 551 | struct gfn_to_hva_cache data; |
| 552 | u64 msr_val; |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 553 | u32 id; |
Gleb Natapov | 6adba52 | 2010-10-14 11:22:55 +0200 | [diff] [blame] | 554 | bool send_user_only; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 555 | } apf; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 556 | |
| 557 | /* OSVW MSRs (AMD only) */ |
| 558 | struct { |
| 559 | u64 length; |
| 560 | u64 status; |
| 561 | } osvw; |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 562 | |
| 563 | struct { |
| 564 | u64 msr_val; |
| 565 | struct gfn_to_hva_cache data; |
| 566 | } pv_eoi; |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 567 | |
| 568 | /* |
| 569 | * Indicate whether the access faults on its page table in guest |
| 570 | * which is set when fix page fault and used to detect unhandeable |
| 571 | * instruction. |
| 572 | */ |
| 573 | bool write_fault_to_shadow_pgtable; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 574 | |
| 575 | /* set at EPT violation at this point */ |
| 576 | unsigned long exit_qualification; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 577 | |
| 578 | /* pv related host specific info */ |
| 579 | struct { |
| 580 | bool pv_unhalted; |
| 581 | } pv; |
Steve Rutherford | 7543a63 | 2015-07-29 23:21:41 -0700 | [diff] [blame] | 582 | |
| 583 | int pending_ioapic_eoi; |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 584 | int pending_external_vector; |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 585 | }; |
| 586 | |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 587 | struct kvm_lpage_info { |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 588 | int write_count; |
| 589 | }; |
| 590 | |
| 591 | struct kvm_arch_memory_slot { |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 592 | unsigned long *rmap[KVM_NR_PAGE_SIZES]; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 593 | struct kvm_lpage_info *lpage_info[KVM_NR_PAGE_SIZES - 1]; |
| 594 | }; |
| 595 | |
Radim Krčmář | 3548a25 | 2015-02-12 19:41:33 +0100 | [diff] [blame] | 596 | /* |
| 597 | * We use as the mode the number of bits allocated in the LDR for the |
| 598 | * logical processor ID. It happens that these are all powers of two. |
| 599 | * This makes it is very easy to detect cases where the APICs are |
| 600 | * configured for multiple modes; in that case, we cannot use the map and |
| 601 | * hence cannot use kvm_irq_delivery_to_apic_fast either. |
| 602 | */ |
| 603 | #define KVM_APIC_MODE_XAPIC_CLUSTER 4 |
| 604 | #define KVM_APIC_MODE_XAPIC_FLAT 8 |
| 605 | #define KVM_APIC_MODE_X2APIC 16 |
| 606 | |
Gleb Natapov | 1e08ec4 | 2012-09-13 17:19:24 +0300 | [diff] [blame] | 607 | struct kvm_apic_map { |
| 608 | struct rcu_head rcu; |
Radim Krčmář | 3548a25 | 2015-02-12 19:41:33 +0100 | [diff] [blame] | 609 | u8 mode; |
Gleb Natapov | 1e08ec4 | 2012-09-13 17:19:24 +0300 | [diff] [blame] | 610 | struct kvm_lapic *phys_map[256]; |
| 611 | /* first index is cluster id second is cpu id in a cluster */ |
| 612 | struct kvm_lapic *logical_map[16][16]; |
| 613 | }; |
| 614 | |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 615 | /* Hyper-V emulation context */ |
| 616 | struct kvm_hv { |
| 617 | u64 hv_guest_os_id; |
| 618 | u64 hv_hypercall; |
| 619 | u64 hv_tsc_page; |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 620 | |
| 621 | /* Hyper-v based guest crash (NT kernel bugcheck) parameters */ |
| 622 | u64 hv_crash_param[HV_X64_MSR_CRASH_PARAMS]; |
| 623 | u64 hv_crash_ctl; |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 624 | }; |
| 625 | |
Marcelo Tosatti | fef9cce | 2009-12-23 14:35:17 -0200 | [diff] [blame] | 626 | struct kvm_arch { |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 627 | unsigned int n_used_mmu_pages; |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 628 | unsigned int n_requested_mmu_pages; |
Dave Hansen | 39de71e | 2010-08-19 18:11:14 -0700 | [diff] [blame] | 629 | unsigned int n_max_mmu_pages; |
Xiao Guangrong | 332b207 | 2011-05-15 23:20:27 +0800 | [diff] [blame] | 630 | unsigned int indirect_shadow_pages; |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 631 | unsigned long mmu_valid_gen; |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 632 | struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES]; |
| 633 | /* |
| 634 | * Hash table of struct kvm_mmu_page. |
| 635 | */ |
| 636 | struct list_head active_mmu_pages; |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 637 | struct list_head zapped_obsolete_pages; |
| 638 | |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 639 | struct list_head assigned_dev_head; |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 640 | struct iommu_domain *iommu_domain; |
Alex Williamson | d96eb2c | 2013-10-30 11:02:23 -0600 | [diff] [blame] | 641 | bool iommu_noncoherent; |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 642 | #define __KVM_HAVE_ARCH_NONCOHERENT_DMA |
| 643 | atomic_t noncoherent_dma_count; |
Paolo Bonzini | 5544eb9 | 2015-07-07 15:41:58 +0200 | [diff] [blame] | 644 | #define __KVM_HAVE_ARCH_ASSIGNED_DEVICE |
| 645 | atomic_t assigned_device_count; |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 646 | struct kvm_pic *vpic; |
| 647 | struct kvm_ioapic *vioapic; |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 648 | struct kvm_pit *vpit; |
Radim Krčmář | 4272013 | 2015-07-01 15:31:49 +0200 | [diff] [blame] | 649 | atomic_t vapics_in_nmi_mode; |
Gleb Natapov | 1e08ec4 | 2012-09-13 17:19:24 +0300 | [diff] [blame] | 650 | struct mutex apic_map_lock; |
| 651 | struct kvm_apic_map *apic_map; |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 652 | |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 653 | unsigned int tss_addr; |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 654 | bool apic_access_page_done; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 655 | |
| 656 | gpa_t wall_clock; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 657 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 658 | bool ept_identity_pagetable_done; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 659 | gpa_t ept_identity_map_addr; |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 660 | |
| 661 | unsigned long irq_sources_bitmap; |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 662 | s64 kvmclock_offset; |
Jan Kiszka | 038f8c1 | 2011-02-04 10:49:11 +0100 | [diff] [blame] | 663 | raw_spinlock_t tsc_write_lock; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 664 | u64 last_tsc_nsec; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 665 | u64 last_tsc_write; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 666 | u32 last_tsc_khz; |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 667 | u64 cur_tsc_nsec; |
| 668 | u64 cur_tsc_write; |
| 669 | u64 cur_tsc_offset; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 670 | u64 cur_tsc_generation; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 671 | int nr_vcpus_matched_tsc; |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 672 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 673 | spinlock_t pvclock_gtod_sync_lock; |
| 674 | bool use_master_clock; |
| 675 | u64 master_kernel_ns; |
| 676 | cycle_t master_cycle_now; |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 677 | struct delayed_work kvmclock_update_work; |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 678 | struct delayed_work kvmclock_sync_work; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 679 | |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 680 | struct kvm_xen_hvm_config xen_hvm_config; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 681 | |
Paolo Bonzini | 6ef768f | 2014-11-20 13:45:31 +0100 | [diff] [blame] | 682 | /* reads protected by irq_srcu, writes by irq_lock */ |
| 683 | struct hlist_head mask_notifier_list; |
| 684 | |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 685 | struct kvm_hv hyperv; |
Xiao Guangrong | b034cf0 | 2010-12-23 16:08:35 +0800 | [diff] [blame] | 686 | |
| 687 | #ifdef CONFIG_KVM_MMU_AUDIT |
| 688 | int audit_point; |
| 689 | #endif |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 690 | |
| 691 | bool boot_vcpu_runs_old_kvmclock; |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 692 | u32 bsp_vcpu_id; |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 693 | |
| 694 | u64 disabled_quirks; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 695 | |
| 696 | bool irqchip_split; |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 697 | u8 nr_reserved_ioapic_pins; |
Zhang Xiantao | d69fb81 | 2007-12-14 09:54:20 +0800 | [diff] [blame] | 698 | }; |
| 699 | |
Zhang Xiantao | 0711456 | 2007-12-14 10:23:23 +0800 | [diff] [blame] | 700 | struct kvm_vm_stat { |
| 701 | u32 mmu_shadow_zapped; |
| 702 | u32 mmu_pte_write; |
| 703 | u32 mmu_pte_updated; |
| 704 | u32 mmu_pde_zapped; |
| 705 | u32 mmu_flooded; |
| 706 | u32 mmu_recycled; |
Avi Kivity | dfc5aa0 | 2007-12-18 19:47:18 +0200 | [diff] [blame] | 707 | u32 mmu_cache_miss; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 708 | u32 mmu_unsync; |
Zhang Xiantao | 0711456 | 2007-12-14 10:23:23 +0800 | [diff] [blame] | 709 | u32 remote_tlb_flush; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 710 | u32 lpages; |
Zhang Xiantao | 0711456 | 2007-12-14 10:23:23 +0800 | [diff] [blame] | 711 | }; |
| 712 | |
Zhang Xiantao | 77b4c25 | 2007-12-14 09:49:26 +0800 | [diff] [blame] | 713 | struct kvm_vcpu_stat { |
| 714 | u32 pf_fixed; |
| 715 | u32 pf_guest; |
| 716 | u32 tlb_flush; |
| 717 | u32 invlpg; |
| 718 | |
| 719 | u32 exits; |
| 720 | u32 io_exits; |
| 721 | u32 mmio_exits; |
| 722 | u32 signal_exits; |
| 723 | u32 irq_window_exits; |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 724 | u32 nmi_window_exits; |
Zhang Xiantao | 77b4c25 | 2007-12-14 09:49:26 +0800 | [diff] [blame] | 725 | u32 halt_exits; |
Paolo Bonzini | f781951 | 2015-02-04 18:20:58 +0100 | [diff] [blame] | 726 | u32 halt_successful_poll; |
Paolo Bonzini | 62bea5b | 2015-09-15 18:27:57 +0200 | [diff] [blame] | 727 | u32 halt_attempted_poll; |
Zhang Xiantao | 77b4c25 | 2007-12-14 09:49:26 +0800 | [diff] [blame] | 728 | u32 halt_wakeup; |
| 729 | u32 request_irq_exits; |
| 730 | u32 irq_exits; |
| 731 | u32 host_state_reload; |
| 732 | u32 efer_reload; |
| 733 | u32 fpu_reload; |
| 734 | u32 insn_emulation; |
| 735 | u32 insn_emulation_fail; |
Amit Shah | f11c3a8 | 2008-02-21 01:00:30 +0530 | [diff] [blame] | 736 | u32 hypercalls; |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 737 | u32 irq_injections; |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 738 | u32 nmi_injections; |
Zhang Xiantao | 77b4c25 | 2007-12-14 09:49:26 +0800 | [diff] [blame] | 739 | }; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 740 | |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 741 | struct x86_instruction_info; |
| 742 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 743 | struct msr_data { |
| 744 | bool host_initiated; |
| 745 | u32 index; |
| 746 | u64 data; |
| 747 | }; |
| 748 | |
Paolo Bonzini | cb5281a | 2014-12-17 18:17:20 +0100 | [diff] [blame] | 749 | struct kvm_lapic_irq { |
| 750 | u32 vector; |
Paolo Bonzini | b7cb223 | 2015-04-21 14:57:05 +0200 | [diff] [blame] | 751 | u16 delivery_mode; |
| 752 | u16 dest_mode; |
| 753 | bool level; |
| 754 | u16 trig_mode; |
Paolo Bonzini | cb5281a | 2014-12-17 18:17:20 +0100 | [diff] [blame] | 755 | u32 shorthand; |
| 756 | u32 dest_id; |
James Sullivan | 93bbf0b | 2015-03-18 19:26:03 -0600 | [diff] [blame] | 757 | bool msi_redir_hint; |
Paolo Bonzini | cb5281a | 2014-12-17 18:17:20 +0100 | [diff] [blame] | 758 | }; |
| 759 | |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 760 | struct kvm_x86_ops { |
| 761 | int (*cpu_has_kvm_support)(void); /* __init */ |
| 762 | int (*disabled_by_bios)(void); /* __init */ |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 763 | int (*hardware_enable)(void); |
| 764 | void (*hardware_disable)(void); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 765 | void (*check_processor_compatibility)(void *rtn); |
| 766 | int (*hardware_setup)(void); /* __init */ |
| 767 | void (*hardware_unsetup)(void); /* __exit */ |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 768 | bool (*cpu_has_accelerated_tpr)(void); |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 769 | bool (*cpu_has_high_real_mode_segbase)(void); |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 770 | void (*cpuid_update)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 771 | |
| 772 | /* Create, but do not attach this VCPU */ |
| 773 | struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id); |
| 774 | void (*vcpu_free)(struct kvm_vcpu *vcpu); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 775 | void (*vcpu_reset)(struct kvm_vcpu *vcpu, bool init_event); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 776 | |
| 777 | void (*prepare_guest_switch)(struct kvm_vcpu *vcpu); |
| 778 | void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu); |
| 779 | void (*vcpu_put)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 780 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 781 | void (*update_db_bp_intercept)(struct kvm_vcpu *vcpu); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 782 | int (*get_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr); |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 783 | int (*set_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 784 | u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg); |
| 785 | void (*get_segment)(struct kvm_vcpu *vcpu, |
| 786 | struct kvm_segment *var, int seg); |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 787 | int (*get_cpl)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 788 | void (*set_segment)(struct kvm_vcpu *vcpu, |
| 789 | struct kvm_segment *var, int seg); |
| 790 | void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l); |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 791 | void (*decache_cr0_guest_bits)(struct kvm_vcpu *vcpu); |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 792 | void (*decache_cr3)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 793 | void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu); |
| 794 | void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0); |
| 795 | void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3); |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 796 | int (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 797 | void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 798 | void (*get_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt); |
| 799 | void (*set_idt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt); |
| 800 | void (*get_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt); |
| 801 | void (*set_gdt)(struct kvm_vcpu *vcpu, struct desc_ptr *dt); |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 802 | u64 (*get_dr6)(struct kvm_vcpu *vcpu); |
| 803 | void (*set_dr6)(struct kvm_vcpu *vcpu, unsigned long value); |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 804 | void (*sync_dirty_debug_regs)(struct kvm_vcpu *vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 805 | void (*set_dr7)(struct kvm_vcpu *vcpu, unsigned long value); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 806 | void (*cache_reg)(struct kvm_vcpu *vcpu, enum kvm_reg reg); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 807 | unsigned long (*get_rflags)(struct kvm_vcpu *vcpu); |
| 808 | void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags); |
Paolo Bonzini | 0fdd74f | 2015-05-20 11:33:43 +0200 | [diff] [blame] | 809 | void (*fpu_activate)(struct kvm_vcpu *vcpu); |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 810 | void (*fpu_deactivate)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 811 | |
| 812 | void (*tlb_flush)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 813 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 814 | void (*run)(struct kvm_vcpu *vcpu); |
| 815 | int (*handle_exit)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 816 | void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu); |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 817 | void (*set_interrupt_shadow)(struct kvm_vcpu *vcpu, int mask); |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 818 | u32 (*get_interrupt_shadow)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 819 | void (*patch_hypercall)(struct kvm_vcpu *vcpu, |
| 820 | unsigned char *hypercall_addr); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 821 | void (*set_irq)(struct kvm_vcpu *vcpu); |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 822 | void (*set_nmi)(struct kvm_vcpu *vcpu); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 823 | void (*queue_exception)(struct kvm_vcpu *vcpu, unsigned nr, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 824 | bool has_error_code, u32 error_code, |
| 825 | bool reinject); |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 826 | void (*cancel_injection)(struct kvm_vcpu *vcpu); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 827 | int (*interrupt_allowed)(struct kvm_vcpu *vcpu); |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 828 | int (*nmi_allowed)(struct kvm_vcpu *vcpu); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 829 | bool (*get_nmi_mask)(struct kvm_vcpu *vcpu); |
| 830 | void (*set_nmi_mask)(struct kvm_vcpu *vcpu, bool masked); |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 831 | void (*enable_nmi_window)(struct kvm_vcpu *vcpu); |
| 832 | void (*enable_irq_window)(struct kvm_vcpu *vcpu); |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 833 | void (*update_cr8_intercept)(struct kvm_vcpu *vcpu, int tpr, int irr); |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 834 | int (*cpu_uses_apicv)(struct kvm_vcpu *vcpu); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 835 | void (*hwapic_irr_update)(struct kvm_vcpu *vcpu, int max_irr); |
| 836 | void (*hwapic_isr_update)(struct kvm *kvm, int isr); |
Paolo Bonzini | 3bb345f | 2015-07-29 10:43:18 +0200 | [diff] [blame] | 837 | void (*load_eoi_exitmap)(struct kvm_vcpu *vcpu); |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 838 | void (*set_virtual_x2apic_mode)(struct kvm_vcpu *vcpu, bool set); |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 839 | void (*set_apic_access_page_addr)(struct kvm_vcpu *vcpu, hpa_t hpa); |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 840 | void (*deliver_posted_interrupt)(struct kvm_vcpu *vcpu, int vector); |
| 841 | void (*sync_pir_to_irr)(struct kvm_vcpu *vcpu); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 842 | int (*set_tss_addr)(struct kvm *kvm, unsigned int addr); |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 843 | int (*get_tdp_level)(void); |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 844 | u64 (*get_mt_mask)(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio); |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 845 | int (*get_lpage_level)(void); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 846 | bool (*rdtscp_supported)(void); |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 847 | bool (*invpcid_supported)(void); |
Haozhong Zhang | 58ea676 | 2015-10-20 15:39:06 +0800 | [diff] [blame^] | 848 | void (*adjust_tsc_offset_guest)(struct kvm_vcpu *vcpu, s64 adjustment); |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 849 | |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 850 | void (*set_tdp_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3); |
| 851 | |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 852 | void (*set_supported_cpuid)(u32 func, struct kvm_cpuid_entry2 *entry); |
| 853 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 854 | bool (*has_wbinvd_exit)(void); |
| 855 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 856 | u64 (*read_tsc_offset)(struct kvm_vcpu *vcpu); |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 857 | void (*write_tsc_offset)(struct kvm_vcpu *vcpu, u64 offset); |
| 858 | |
Marcelo Tosatti | 886b470 | 2012-11-27 23:28:58 -0200 | [diff] [blame] | 859 | u64 (*read_l1_tsc)(struct kvm_vcpu *vcpu, u64 host_tsc); |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 860 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 861 | void (*get_exit_info)(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2); |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 862 | |
| 863 | int (*check_intercept)(struct kvm_vcpu *vcpu, |
| 864 | struct x86_instruction_info *info, |
| 865 | enum x86_intercept_stage stage); |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 866 | void (*handle_external_intr)(struct kvm_vcpu *vcpu); |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 867 | bool (*mpx_supported)(void); |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 868 | bool (*xsaves_supported)(void); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 869 | |
| 870 | int (*check_nested_events)(struct kvm_vcpu *vcpu, bool external_intr); |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 871 | |
| 872 | void (*sched_in)(struct kvm_vcpu *kvm, int cpu); |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 873 | |
| 874 | /* |
| 875 | * Arch-specific dirty logging hooks. These hooks are only supposed to |
| 876 | * be valid if the specific arch has hardware-accelerated dirty logging |
| 877 | * mechanism. Currently only for PML on VMX. |
| 878 | * |
| 879 | * - slot_enable_log_dirty: |
| 880 | * called when enabling log dirty mode for the slot. |
| 881 | * - slot_disable_log_dirty: |
| 882 | * called when disabling log dirty mode for the slot. |
| 883 | * also called when slot is created with log dirty disabled. |
| 884 | * - flush_log_dirty: |
| 885 | * called before reporting dirty_bitmap to userspace. |
| 886 | * - enable_log_dirty_pt_masked: |
| 887 | * called when reenabling log dirty for the GFNs in the mask after |
| 888 | * corresponding bits are cleared in slot->dirty_bitmap. |
| 889 | */ |
| 890 | void (*slot_enable_log_dirty)(struct kvm *kvm, |
| 891 | struct kvm_memory_slot *slot); |
| 892 | void (*slot_disable_log_dirty)(struct kvm *kvm, |
| 893 | struct kvm_memory_slot *slot); |
| 894 | void (*flush_log_dirty)(struct kvm *kvm); |
| 895 | void (*enable_log_dirty_pt_masked)(struct kvm *kvm, |
| 896 | struct kvm_memory_slot *slot, |
| 897 | gfn_t offset, unsigned long mask); |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 898 | /* pmu operations of sub-arch */ |
| 899 | const struct kvm_pmu_ops *pmu_ops; |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 900 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 901 | /* |
| 902 | * Architecture specific hooks for vCPU blocking due to |
| 903 | * HLT instruction. |
| 904 | * Returns for .pre_block(): |
| 905 | * - 0 means continue to block the vCPU. |
| 906 | * - 1 means we cannot block the vCPU since some event |
| 907 | * happens during this period, such as, 'ON' bit in |
| 908 | * posted-interrupts descriptor is set. |
| 909 | */ |
| 910 | int (*pre_block)(struct kvm_vcpu *vcpu); |
| 911 | void (*post_block)(struct kvm_vcpu *vcpu); |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 912 | int (*update_pi_irte)(struct kvm *kvm, unsigned int host_irq, |
| 913 | uint32_t guest_irq, bool set); |
Zhang Xiantao | ea4a5ff | 2007-11-19 14:40:47 +0800 | [diff] [blame] | 914 | }; |
| 915 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 916 | struct kvm_arch_async_pf { |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 917 | u32 token; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 918 | gfn_t gfn; |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 919 | unsigned long cr3; |
Xiao Guangrong | c4806ac | 2010-11-12 14:49:55 +0800 | [diff] [blame] | 920 | bool direct_map; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 921 | }; |
| 922 | |
Zhang Xiantao | 97896d0 | 2007-11-14 20:09:30 +0800 | [diff] [blame] | 923 | extern struct kvm_x86_ops *kvm_x86_ops; |
| 924 | |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 925 | int kvm_mmu_module_init(void); |
| 926 | void kvm_mmu_module_exit(void); |
| 927 | |
| 928 | void kvm_mmu_destroy(struct kvm_vcpu *vcpu); |
| 929 | int kvm_mmu_create(struct kvm_vcpu *vcpu); |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 930 | void kvm_mmu_setup(struct kvm_vcpu *vcpu); |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 931 | void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 932 | u64 dirty_mask, u64 nx_mask, u64 x_mask); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 933 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 934 | void kvm_mmu_reset_context(struct kvm_vcpu *vcpu); |
Kai Huang | 1c91cad4 | 2015-01-28 10:54:26 +0800 | [diff] [blame] | 935 | void kvm_mmu_slot_remove_write_access(struct kvm *kvm, |
| 936 | struct kvm_memory_slot *memslot); |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 937 | void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 938 | const struct kvm_memory_slot *memslot); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 939 | void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm, |
| 940 | struct kvm_memory_slot *memslot); |
| 941 | void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm, |
| 942 | struct kvm_memory_slot *memslot); |
| 943 | void kvm_mmu_slot_set_dirty(struct kvm *kvm, |
| 944 | struct kvm_memory_slot *memslot); |
| 945 | void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm, |
| 946 | struct kvm_memory_slot *slot, |
| 947 | gfn_t gfn_offset, unsigned long mask); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 948 | void kvm_mmu_zap_all(struct kvm *kvm); |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 949 | void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, struct kvm_memslots *slots); |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 950 | unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 951 | void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages); |
| 952 | |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 953 | int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3); |
Joerg Roedel | cc4b687 | 2008-02-07 13:47:43 +0100 | [diff] [blame] | 954 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 955 | int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa, |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 956 | const void *val, int bytes); |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 957 | |
Paolo Bonzini | 6ef768f | 2014-11-20 13:45:31 +0100 | [diff] [blame] | 958 | struct kvm_irq_mask_notifier { |
| 959 | void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked); |
| 960 | int irq; |
| 961 | struct hlist_node link; |
| 962 | }; |
| 963 | |
| 964 | void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq, |
| 965 | struct kvm_irq_mask_notifier *kimn); |
| 966 | void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq, |
| 967 | struct kvm_irq_mask_notifier *kimn); |
| 968 | void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin, |
| 969 | bool mask); |
| 970 | |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 971 | extern bool tdp_enabled; |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 972 | |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 973 | u64 vcpu_tsc_khz(struct kvm_vcpu *vcpu); |
| 974 | |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 975 | /* control of guest tsc rate supported? */ |
| 976 | extern bool kvm_has_tsc_control; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 977 | /* maximum supported tsc_khz for guests */ |
| 978 | extern u32 kvm_max_guest_tsc_khz; |
Haozhong Zhang | bc9b961 | 2015-10-20 15:39:01 +0800 | [diff] [blame] | 979 | /* number of bits of the fractional part of the TSC scaling ratio */ |
| 980 | extern u8 kvm_tsc_scaling_ratio_frac_bits; |
| 981 | /* maximum allowed value of TSC scaling ratio */ |
| 982 | extern u64 kvm_max_tsc_scaling_ratio; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 983 | |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 984 | enum emulation_result { |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 985 | EMULATE_DONE, /* no further processing */ |
| 986 | EMULATE_USER_EXIT, /* kvm_run ready for userspace exit */ |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 987 | EMULATE_FAIL, /* can't emulate this instruction */ |
| 988 | }; |
| 989 | |
Sheng Yang | 571008d | 2008-01-02 14:49:22 +0800 | [diff] [blame] | 990 | #define EMULTYPE_NO_DECODE (1 << 0) |
| 991 | #define EMULTYPE_TRAP_UD (1 << 1) |
Gleb Natapov | ba8afb6 | 2009-04-12 13:36:57 +0300 | [diff] [blame] | 992 | #define EMULTYPE_SKIP (1 << 2) |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 993 | #define EMULTYPE_RETRY (1 << 3) |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 994 | #define EMULTYPE_NO_REEXECUTE (1 << 4) |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 995 | int x86_emulate_instruction(struct kvm_vcpu *vcpu, unsigned long cr2, |
| 996 | int emulation_type, void *insn, int insn_len); |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 997 | |
| 998 | static inline int emulate_instruction(struct kvm_vcpu *vcpu, |
| 999 | int emulation_type) |
| 1000 | { |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 1001 | return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0); |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 1002 | } |
| 1003 | |
Joerg Roedel | f2b4b7d | 2008-01-31 14:57:37 +0100 | [diff] [blame] | 1004 | void kvm_enable_efer_bits(u64); |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1005 | bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 1006 | int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr); |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1007 | int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1008 | |
| 1009 | struct x86_emulate_ctxt; |
| 1010 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 1011 | int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1012 | void kvm_emulate_cpuid(struct kvm_vcpu *vcpu); |
| 1013 | int kvm_emulate_halt(struct kvm_vcpu *vcpu); |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 1014 | int kvm_vcpu_halt(struct kvm_vcpu *vcpu); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 1015 | int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1016 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 1017 | void kvm_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg); |
Gleb Natapov | c697518 | 2010-02-18 12:15:01 +0200 | [diff] [blame] | 1018 | int kvm_load_segment_descriptor(struct kvm_vcpu *vcpu, u16 selector, int seg); |
Paolo Bonzini | 2b4a273 | 2014-11-24 14:35:24 +0100 | [diff] [blame] | 1019 | void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector); |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 1020 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 1021 | int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index, |
| 1022 | int reason, bool has_error_code, u32 error_code); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 1023 | |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 1024 | int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0); |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 1025 | int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3); |
Avi Kivity | a83b29c | 2010-06-10 17:02:15 +0300 | [diff] [blame] | 1026 | int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 1027 | int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1028 | int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val); |
| 1029 | int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val); |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 1030 | unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu); |
| 1031 | void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1032 | void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 1033 | int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1034 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 1035 | int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr); |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1036 | int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1037 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 1038 | unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu); |
| 1039 | void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags); |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 1040 | bool kvm_rdpmc(struct kvm_vcpu *vcpu); |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 1041 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 1042 | void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr); |
| 1043 | void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code); |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 1044 | void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr); |
| 1045 | void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code); |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 1046 | void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault); |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 1047 | int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, |
| 1048 | gfn_t gfn, void *data, int offset, int len, |
| 1049 | u32 access); |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 1050 | bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl); |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 1051 | bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 1052 | |
Michael S. Tsirkin | 1a577b72 | 2012-07-19 13:45:20 +0300 | [diff] [blame] | 1053 | static inline int __kvm_irq_line_state(unsigned long *irq_state, |
| 1054 | int irq_source_id, int level) |
| 1055 | { |
| 1056 | /* Logical OR for level trig interrupt */ |
| 1057 | if (level) |
| 1058 | __set_bit(irq_source_id, irq_state); |
| 1059 | else |
| 1060 | __clear_bit(irq_source_id, irq_state); |
| 1061 | |
| 1062 | return !!(*irq_state); |
| 1063 | } |
| 1064 | |
| 1065 | int kvm_pic_set_irq(struct kvm_pic *pic, int irq, int irq_source_id, int level); |
| 1066 | void kvm_pic_clear_all(struct kvm_pic *pic, int irq_source_id); |
Xiantao Zhang | 3de42dc | 2008-10-06 13:48:45 +0800 | [diff] [blame] | 1067 | |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 1068 | void kvm_inject_nmi(struct kvm_vcpu *vcpu); |
| 1069 | |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1070 | void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa, |
Xiao Guangrong | f57f2ef | 2011-09-22 16:56:39 +0800 | [diff] [blame] | 1071 | const u8 *new, int bytes); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 1072 | int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1073 | int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva); |
| 1074 | void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu); |
| 1075 | int kvm_mmu_load(struct kvm_vcpu *vcpu); |
| 1076 | void kvm_mmu_unload(struct kvm_vcpu *vcpu); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 1077 | void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu); |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 1078 | gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access, |
| 1079 | struct x86_exception *exception); |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 1080 | gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva, |
| 1081 | struct x86_exception *exception); |
| 1082 | gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva, |
| 1083 | struct x86_exception *exception); |
| 1084 | gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva, |
| 1085 | struct x86_exception *exception); |
| 1086 | gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva, |
| 1087 | struct x86_exception *exception); |
Zhang Xiantao | 54f1585 | 2007-11-19 15:24:28 +0800 | [diff] [blame] | 1088 | |
| 1089 | int kvm_emulate_hypercall(struct kvm_vcpu *vcpu); |
| 1090 | |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 1091 | int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code, |
| 1092 | void *insn, int insn_len); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 1093 | void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva); |
Paolo Bonzini | d8d173d | 2013-10-02 16:56:11 +0200 | [diff] [blame] | 1094 | void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu); |
Zhang Xiantao | 34c16ee | 2007-10-20 15:34:38 +0800 | [diff] [blame] | 1095 | |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 1096 | void kvm_enable_tdp(void); |
Joerg Roedel | 5f4cb66 | 2008-07-14 20:36:36 +0200 | [diff] [blame] | 1097 | void kvm_disable_tdp(void); |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 1098 | |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 1099 | static inline gpa_t translate_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access, |
| 1100 | struct x86_exception *exception) |
Xiao Guangrong | e459e32 | 2011-11-28 20:42:16 +0800 | [diff] [blame] | 1101 | { |
| 1102 | return gpa; |
| 1103 | } |
| 1104 | |
Zhang Xiantao | ec6d273 | 2007-11-19 15:08:31 +0800 | [diff] [blame] | 1105 | static inline struct kvm_mmu_page *page_header(hpa_t shadow_page) |
| 1106 | { |
| 1107 | struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT); |
| 1108 | |
| 1109 | return (struct kvm_mmu_page *)page_private(page); |
| 1110 | } |
| 1111 | |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1112 | static inline u16 kvm_read_ldt(void) |
Zhang Xiantao | ec6d273 | 2007-11-19 15:08:31 +0800 | [diff] [blame] | 1113 | { |
| 1114 | u16 ldt; |
| 1115 | asm("sldt %0" : "=g"(ldt)); |
| 1116 | return ldt; |
| 1117 | } |
| 1118 | |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1119 | static inline void kvm_load_ldt(u16 sel) |
Zhang Xiantao | ec6d273 | 2007-11-19 15:08:31 +0800 | [diff] [blame] | 1120 | { |
| 1121 | asm("lldt %0" : : "rm"(sel)); |
| 1122 | } |
Zhang Xiantao | ec6d273 | 2007-11-19 15:08:31 +0800 | [diff] [blame] | 1123 | |
Zhang Xiantao | ec6d273 | 2007-11-19 15:08:31 +0800 | [diff] [blame] | 1124 | #ifdef CONFIG_X86_64 |
| 1125 | static inline unsigned long read_msr(unsigned long msr) |
| 1126 | { |
| 1127 | u64 value; |
| 1128 | |
| 1129 | rdmsrl(msr, value); |
| 1130 | return value; |
| 1131 | } |
| 1132 | #endif |
| 1133 | |
Zhang Xiantao | ec6d273 | 2007-11-19 15:08:31 +0800 | [diff] [blame] | 1134 | static inline u32 get_rdx_init_val(void) |
| 1135 | { |
| 1136 | return 0x600; /* P6 family */ |
| 1137 | } |
| 1138 | |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 1139 | static inline void kvm_inject_gp(struct kvm_vcpu *vcpu, u32 error_code) |
| 1140 | { |
| 1141 | kvm_queue_exception_e(vcpu, GP_VECTOR, error_code); |
| 1142 | } |
| 1143 | |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1144 | static inline u64 get_canonical(u64 la) |
| 1145 | { |
| 1146 | return ((int64_t)la << 16) >> 16; |
| 1147 | } |
| 1148 | |
| 1149 | static inline bool is_noncanonical_address(u64 la) |
| 1150 | { |
| 1151 | #ifdef CONFIG_X86_64 |
| 1152 | return get_canonical(la) != la; |
| 1153 | #else |
| 1154 | return false; |
| 1155 | #endif |
| 1156 | } |
| 1157 | |
Zhang Xiantao | ec6d273 | 2007-11-19 15:08:31 +0800 | [diff] [blame] | 1158 | #define TSS_IOPB_BASE_OFFSET 0x66 |
| 1159 | #define TSS_BASE_SIZE 0x68 |
| 1160 | #define TSS_IOPB_SIZE (65536 / 8) |
| 1161 | #define TSS_REDIRECTION_SIZE (256 / 8) |
Joe Perches | 7d76b4d | 2008-03-23 01:02:34 -0700 | [diff] [blame] | 1162 | #define RMODE_TSS_SIZE \ |
| 1163 | (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1) |
Hollis Blanchard | 53e0aa7 | 2007-12-03 16:15:26 -0600 | [diff] [blame] | 1164 | |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 1165 | enum { |
| 1166 | TASK_SWITCH_CALL = 0, |
| 1167 | TASK_SWITCH_IRET = 1, |
| 1168 | TASK_SWITCH_JMP = 2, |
| 1169 | TASK_SWITCH_GATE = 3, |
| 1170 | }; |
| 1171 | |
Alexander Graf | 1371d90 | 2008-11-25 20:17:04 +0100 | [diff] [blame] | 1172 | #define HF_GIF_MASK (1 << 0) |
Alexander Graf | 3d6368e | 2008-11-25 20:17:07 +0100 | [diff] [blame] | 1173 | #define HF_HIF_MASK (1 << 1) |
| 1174 | #define HF_VINTR_MASK (1 << 2) |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 1175 | #define HF_NMI_MASK (1 << 3) |
Gleb Natapov | 44c1143 | 2009-05-11 13:35:52 +0300 | [diff] [blame] | 1176 | #define HF_IRET_MASK (1 << 4) |
Joerg Roedel | ec9e60b | 2010-11-29 17:51:47 +0100 | [diff] [blame] | 1177 | #define HF_GUEST_MASK (1 << 5) /* VCPU is in guest-mode */ |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 1178 | #define HF_SMM_MASK (1 << 6) |
| 1179 | #define HF_SMM_INSIDE_NMI_MASK (1 << 7) |
Alexander Graf | 1371d90 | 2008-11-25 20:17:04 +0100 | [diff] [blame] | 1180 | |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1181 | #define __KVM_VCPU_MULTIPLE_ADDRESS_SPACE |
| 1182 | #define KVM_ADDRESS_SPACE_NUM 2 |
| 1183 | |
| 1184 | #define kvm_arch_vcpu_memslots_id(vcpu) ((vcpu)->arch.hflags & HF_SMM_MASK ? 1 : 0) |
| 1185 | #define kvm_memslots_for_spte_role(kvm, role) __kvm_memslots(kvm, (role).smm) |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1186 | |
| 1187 | /* |
| 1188 | * Hardware virtualization extension instructions may fault if a |
| 1189 | * reboot turns off virtualization while processes are running. |
| 1190 | * Trap the fault and ignore the instruction if that happens. |
| 1191 | */ |
Avi Kivity | b7c4145 | 2010-12-02 17:52:50 +0200 | [diff] [blame] | 1192 | asmlinkage void kvm_spurious_fault(void); |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1193 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1194 | #define ____kvm_handle_fault_on_reboot(insn, cleanup_insn) \ |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1195 | "666: " insn "\n\t" \ |
Avi Kivity | b7c4145 | 2010-12-02 17:52:50 +0200 | [diff] [blame] | 1196 | "668: \n\t" \ |
Eduardo Habkost | 18b13e5 | 2008-08-19 20:00:08 -0300 | [diff] [blame] | 1197 | ".pushsection .fixup, \"ax\" \n" \ |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1198 | "667: \n\t" \ |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1199 | cleanup_insn "\n\t" \ |
Avi Kivity | b7c4145 | 2010-12-02 17:52:50 +0200 | [diff] [blame] | 1200 | "cmpb $0, kvm_rebooting \n\t" \ |
| 1201 | "jne 668b \n\t" \ |
Avi Kivity | 8ceed347 | 2008-08-14 21:25:47 +0300 | [diff] [blame] | 1202 | __ASM_SIZE(push) " $666b \n\t" \ |
Avi Kivity | b7c4145 | 2010-12-02 17:52:50 +0200 | [diff] [blame] | 1203 | "call kvm_spurious_fault \n\t" \ |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1204 | ".popsection \n\t" \ |
H. Peter Anvin | 3ee8972 | 2012-04-20 13:41:59 -0700 | [diff] [blame] | 1205 | _ASM_EXTABLE(666b, 667b) |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1206 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1207 | #define __kvm_handle_fault_on_reboot(insn) \ |
| 1208 | ____kvm_handle_fault_on_reboot(insn, "") |
| 1209 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1210 | #define KVM_ARCH_WANT_MMU_NOTIFIER |
| 1211 | int kvm_unmap_hva(struct kvm *kvm, unsigned long hva); |
Takuya Yoshikawa | b3ae209 | 2012-07-02 17:56:33 +0900 | [diff] [blame] | 1212 | int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end); |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 1213 | int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end); |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1214 | int kvm_test_age_hva(struct kvm *kvm, unsigned long hva); |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1215 | void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 1216 | int kvm_cpu_has_injectable_intr(struct kvm_vcpu *v); |
Gleb Natapov | a1b3710 | 2009-07-09 15:33:52 +0300 | [diff] [blame] | 1217 | int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu); |
| 1218 | int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu); |
Gleb Natapov | 0b71785 | 2009-07-09 15:33:53 +0300 | [diff] [blame] | 1219 | int kvm_cpu_get_interrupt(struct kvm_vcpu *v); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 1220 | void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event); |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 1221 | void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu); |
Tang Chen | fe71557a | 2014-09-24 15:57:57 +0800 | [diff] [blame] | 1222 | void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm, |
| 1223 | unsigned long address); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1224 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 1225 | void kvm_define_shared_msr(unsigned index, u32 msr); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 1226 | int kvm_set_shared_msr(unsigned index, u64 val, u64 mask); |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 1227 | |
Haozhong Zhang | 35181e8 | 2015-10-20 15:39:03 +0800 | [diff] [blame] | 1228 | u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc); |
| 1229 | |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 1230 | unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu); |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 1231 | bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip); |
| 1232 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 1233 | void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu, |
| 1234 | struct kvm_async_pf *work); |
| 1235 | void kvm_arch_async_page_present(struct kvm_vcpu *vcpu, |
| 1236 | struct kvm_async_pf *work); |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 1237 | void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, |
| 1238 | struct kvm_async_pf *work); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 1239 | bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 1240 | extern bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn); |
| 1241 | |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 1242 | void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err); |
| 1243 | |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 1244 | int kvm_is_in_guest(void); |
| 1245 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 1246 | int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size); |
| 1247 | int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size); |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 1248 | bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu); |
| 1249 | bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 1250 | |
Feng Wu | 8feb4a0 | 2015-09-18 22:29:47 +0800 | [diff] [blame] | 1251 | bool kvm_intr_is_single_vcpu(struct kvm *kvm, struct kvm_lapic_irq *irq, |
| 1252 | struct kvm_vcpu **dest_vcpu); |
| 1253 | |
Feng Wu | d84f1e0 | 2015-09-18 22:29:49 +0800 | [diff] [blame] | 1254 | void kvm_set_msi_irq(struct kvm_kernel_irq_routing_entry *e, |
| 1255 | struct kvm_lapic_irq *irq); |
Paolo Bonzini | 197a4f4 | 2015-11-04 16:24:17 +0100 | [diff] [blame] | 1256 | |
Christoffer Dall | 3217f7c | 2015-08-27 16:41:15 +0200 | [diff] [blame] | 1257 | static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {} |
| 1258 | static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {} |
| 1259 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1260 | #endif /* _ASM_X86_KVM_HOST_H */ |