1 // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 3 * Interrupt descriptor table related code 4 */ 5 #include <linux/interrupt.h> 6 7 #include <asm/cpu_entry_area.h> 8 #include <asm/set_memory.h> 9 #include <asm/traps.h> 10 #include <asm/proto.h> 11 #include <asm/desc.h> 12 #include <asm/hw_irq.h> 13 #include <asm/ia32.h> 14 #include <asm/idtentry.h> 15 16 #define DPL0 0x0 17 #define DPL3 0x3 18 19 #define DEFAULT_STACK 0 20 21 #define G(_vector, _addr, _ist, _type, _dpl, _ 22 { 23 .vector = _vector, 24 .bits.ist = _ist, 25 .bits.type = _type, 26 .bits.dpl = _dpl, 27 .bits.p = 1, 28 .addr = _addr, 29 .segment = _segment, 30 } 31 32 /* Interrupt gate */ 33 #define INTG(_vector, _addr) 34 G(_vector, _addr, DEFAULT_STACK, GATE_ 35 36 /* System interrupt gate */ 37 #define SYSG(_vector, _addr) 38 G(_vector, _addr, DEFAULT_STACK, GATE_ 39 40 #ifdef CONFIG_X86_64 41 /* 42 * Interrupt gate with interrupt stack. The _i 43 * the tss.ist[] array, but for the descriptor 44 */ 45 #define ISTG(_vector, _addr, _ist) 46 G(_vector, _addr, _ist + 1, GATE_INTER 47 #else 48 #define ISTG(_vector, _addr, _ist) INTG(_ 49 #endif 50 51 /* Task gate */ 52 #define TSKG(_vector, _gdt) 53 G(_vector, NULL, DEFAULT_STACK, GATE_T 54 55 #define IDT_TABLE_SIZE (IDT_ENTRIES * 56 57 static bool idt_setup_done __initdata; 58 59 /* 60 * Early traps running on the DEFAULT_STACK be 61 * stacks work only after cpu_init(). 62 */ 63 static const __initconst struct idt_data early 64 INTG(X86_TRAP_DB, asm_ex 65 SYSG(X86_TRAP_BP, asm_ex 66 67 #ifdef CONFIG_X86_32 68 /* 69 * Not possible on 64-bit. See idt_set 70 */ 71 INTG(X86_TRAP_PF, asm_ex 72 #endif 73 #ifdef CONFIG_INTEL_TDX_GUEST 74 INTG(X86_TRAP_VE, asm_ex 75 #endif 76 }; 77 78 /* 79 * The default IDT entries which are set up in 80 * cpu_init() is invoked. Interrupt stacks can 81 * the traps which use them are reinitialized 82 * set up TSS. 83 */ 84 static const __initconst struct idt_data def_i 85 INTG(X86_TRAP_DE, asm_ex 86 ISTG(X86_TRAP_NMI, asm_ex 87 INTG(X86_TRAP_BR, asm_ex 88 INTG(X86_TRAP_UD, asm_ex 89 INTG(X86_TRAP_NM, asm_ex 90 INTG(X86_TRAP_OLD_MF, asm_ex 91 INTG(X86_TRAP_TS, asm_ex 92 INTG(X86_TRAP_NP, asm_ex 93 INTG(X86_TRAP_SS, asm_ex 94 INTG(X86_TRAP_GP, asm_ex 95 INTG(X86_TRAP_SPURIOUS, asm_ex 96 INTG(X86_TRAP_MF, asm_ex 97 INTG(X86_TRAP_AC, asm_ex 98 INTG(X86_TRAP_XF, asm_ex 99 100 #ifdef CONFIG_X86_32 101 TSKG(X86_TRAP_DF, GDT_EN 102 #else 103 ISTG(X86_TRAP_DF, asm_ex 104 #endif 105 ISTG(X86_TRAP_DB, asm_ex 106 107 #ifdef CONFIG_X86_MCE 108 ISTG(X86_TRAP_MC, asm_ex 109 #endif 110 111 #ifdef CONFIG_X86_CET 112 INTG(X86_TRAP_CP, asm_ex 113 #endif 114 115 #ifdef CONFIG_AMD_MEM_ENCRYPT 116 ISTG(X86_TRAP_VC, asm_ex 117 #endif 118 119 SYSG(X86_TRAP_OF, asm_ex 120 }; 121 122 static const struct idt_data ia32_idt[] __init 123 #if defined(CONFIG_IA32_EMULATION) 124 SYSG(IA32_SYSCALL_VECTOR, asm_in 125 #elif defined(CONFIG_X86_32) 126 SYSG(IA32_SYSCALL_VECTOR, entry_ 127 #endif 128 }; 129 130 /* 131 * The APIC and SMP idt entries 132 */ 133 static const __initconst struct idt_data apic_ 134 #ifdef CONFIG_SMP 135 INTG(RESCHEDULE_VECTOR, 136 INTG(CALL_FUNCTION_VECTOR, 137 INTG(CALL_FUNCTION_SINGLE_VECTOR, 138 INTG(REBOOT_VECTOR, 139 #endif 140 141 #ifdef CONFIG_X86_THERMAL_VECTOR 142 INTG(THERMAL_APIC_VECTOR, 143 #endif 144 145 #ifdef CONFIG_X86_MCE_THRESHOLD 146 INTG(THRESHOLD_APIC_VECTOR, 147 #endif 148 149 #ifdef CONFIG_X86_MCE_AMD 150 INTG(DEFERRED_ERROR_VECTOR, 151 #endif 152 153 #ifdef CONFIG_X86_LOCAL_APIC 154 INTG(LOCAL_TIMER_VECTOR, 155 INTG(X86_PLATFORM_IPI_VECTOR, 156 # if IS_ENABLED(CONFIG_KVM) 157 INTG(POSTED_INTR_VECTOR, 158 INTG(POSTED_INTR_WAKEUP_VECTOR, 159 INTG(POSTED_INTR_NESTED_VECTOR, 160 # endif 161 # ifdef CONFIG_IRQ_WORK 162 INTG(IRQ_WORK_VECTOR, 163 # endif 164 INTG(SPURIOUS_APIC_VECTOR, 165 INTG(ERROR_APIC_VECTOR, 166 # ifdef CONFIG_X86_POSTED_MSI 167 INTG(POSTED_MSI_NOTIFICATION_VECTOR, 168 # endif 169 #endif 170 }; 171 172 /* Must be page-aligned because the real IDT i 173 static gate_desc idt_table[IDT_ENTRIES] __page 174 175 static struct desc_ptr idt_descr __ro_after_in 176 .size = IDT_TABLE_SIZE - 1, 177 .address = (unsigned long) idt_ 178 }; 179 180 void load_current_idt(void) 181 { 182 lockdep_assert_irqs_disabled(); 183 load_idt(&idt_descr); 184 } 185 186 #ifdef CONFIG_X86_F00F_BUG 187 bool idt_is_f00f_address(unsigned long address 188 { 189 return ((address - idt_descr.address) 190 } 191 #endif 192 193 static __init void 194 idt_setup_from_table(gate_desc *idt, const str 195 { 196 gate_desc desc; 197 198 for (; size > 0; t++, size--) { 199 idt_init_desc(&desc, t); 200 write_idt_entry(idt, t->vector 201 if (sys) 202 set_bit(t->vector, sys 203 } 204 } 205 206 static __init void set_intr_gate(unsigned int 207 { 208 struct idt_data data; 209 210 init_idt_data(&data, n, addr); 211 212 idt_setup_from_table(idt_table, &data, 213 } 214 215 /** 216 * idt_setup_early_traps - Initialize the idt 217 * 218 * On X8664 these traps do not use interrupt s 219 * before cpu_init() is invoked and sets up TS 220 * installed after that. 221 */ 222 void __init idt_setup_early_traps(void) 223 { 224 idt_setup_from_table(idt_table, early_ 225 true); 226 load_idt(&idt_descr); 227 } 228 229 /** 230 * idt_setup_traps - Initialize the idt table 231 */ 232 void __init idt_setup_traps(void) 233 { 234 idt_setup_from_table(idt_table, def_id 235 236 if (ia32_enabled()) 237 idt_setup_from_table(idt_table 238 } 239 240 #ifdef CONFIG_X86_64 241 /* 242 * Early traps running on the DEFAULT_STACK be 243 * stacks work only after cpu_init(). 244 */ 245 static const __initconst struct idt_data early 246 INTG(X86_TRAP_PF, asm_ex 247 }; 248 249 /** 250 * idt_setup_early_pf - Initialize the idt tab 251 * 252 * On X8664 this does not use interrupt stacks 253 * cpu_init() is invoked and sets up TSS. The 254 * after that. 255 * 256 * Note, that X86_64 cannot install the real # 257 * idt_setup_early_traps() because the memory 258 * handler from the early_idt_handler_array to 259 * tables. 260 */ 261 void __init idt_setup_early_pf(void) 262 { 263 idt_setup_from_table(idt_table, early_ 264 ARRAY_SIZE(early_ 265 } 266 #endif 267 268 static void __init idt_map_in_cea(void) 269 { 270 /* 271 * Set the IDT descriptor to a fixed r 272 * entry area, so that the "sidt" inst 273 * location of the kernel, and to defe 274 * memory write vulnerabilities. 275 */ 276 cea_set_pte(CPU_ENTRY_AREA_RO_IDT_VADD 277 PAGE_KERNEL_RO); 278 idt_descr.address = CPU_ENTRY_AREA_RO_ 279 } 280 281 /** 282 * idt_setup_apic_and_irq_gates - Setup APIC/S 283 */ 284 void __init idt_setup_apic_and_irq_gates(void) 285 { 286 int i = FIRST_EXTERNAL_VECTOR; 287 void *entry; 288 289 idt_setup_from_table(idt_table, apic_i 290 291 for_each_clear_bit_from(i, system_vect 292 entry = irq_entries_start + ID 293 set_intr_gate(i, entry); 294 } 295 296 #ifdef CONFIG_X86_LOCAL_APIC 297 for_each_clear_bit_from(i, system_vect 298 /* 299 * Don't set the non assigned 300 * system_vectors bitmap. Othe 301 * /proc/interrupts. 302 */ 303 entry = spurious_entries_start 304 set_intr_gate(i, entry); 305 } 306 #endif 307 /* Map IDT into CPU entry area and rel 308 idt_map_in_cea(); 309 load_idt(&idt_descr); 310 311 /* Make the IDT table read only */ 312 set_memory_ro((unsigned long)&idt_tabl 313 314 idt_setup_done = true; 315 } 316 317 /** 318 * idt_setup_early_handler - Initializes the i 319 */ 320 void __init idt_setup_early_handler(void) 321 { 322 int i; 323 324 for (i = 0; i < NUM_EXCEPTION_VECTORS; 325 set_intr_gate(i, early_idt_han 326 #ifdef CONFIG_X86_32 327 for ( ; i < NR_VECTORS; i++) 328 set_intr_gate(i, early_ignore_ 329 #endif 330 load_idt(&idt_descr); 331 } 332 333 /** 334 * idt_invalidate - Invalidate interrupt descr 335 */ 336 void idt_invalidate(void) 337 { 338 static const struct desc_ptr idt = { . 339 340 load_idt(&idt); 341 } 342 343 void __init idt_install_sysvec(unsigned int n, 344 { 345 if (WARN_ON(n < FIRST_SYSTEM_VECTOR)) 346 return; 347 348 if (WARN_ON(idt_setup_done)) 349 return; 350 351 if (!WARN_ON(test_and_set_bit(n, syste 352 set_intr_gate(n, function); 353 } 354
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.