1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef LINUX_KEXEC_H 3 #define LINUX_KEXEC_H 4 5 #define IND_DESTINATION_BIT 0 6 #define IND_INDIRECTION_BIT 1 7 #define IND_DONE_BIT 2 8 #define IND_SOURCE_BIT 3 9 10 #define IND_DESTINATION (1 << IND_DESTINATION_BIT) 11 #define IND_INDIRECTION (1 << IND_INDIRECTION_BIT) 12 #define IND_DONE (1 << IND_DONE_BIT) 13 #define IND_SOURCE (1 << IND_SOURCE_BIT) 14 #define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE) 15 16 #if !defined(__ASSEMBLY__) 17 18 #include <linux/vmcore_info.h> 19 #include <linux/crash_reserve.h> 20 #include <asm/io.h> 21 #include <linux/range.h> 22 23 #include <uapi/linux/kexec.h> 24 #include <linux/verification.h> 25 26 extern note_buf_t __percpu *crash_notes; 27 28 #ifdef CONFIG_KEXEC_CORE 29 #include <linux/list.h> 30 #include <linux/compat.h> 31 #include <linux/ioport.h> 32 #include <linux/module.h> 33 #include <linux/highmem.h> 34 #include <asm/kexec.h> 35 #include <linux/crash_core.h> 36 37 /* Verify architecture specific macros are defined */ 38 39 #ifndef KEXEC_SOURCE_MEMORY_LIMIT 40 #error KEXEC_SOURCE_MEMORY_LIMIT not defined 41 #endif 42 43 #ifndef KEXEC_DESTINATION_MEMORY_LIMIT 44 #error KEXEC_DESTINATION_MEMORY_LIMIT not defined 45 #endif 46 47 #ifndef KEXEC_CONTROL_MEMORY_LIMIT 48 #error KEXEC_CONTROL_MEMORY_LIMIT not defined 49 #endif 50 51 #ifndef KEXEC_CONTROL_MEMORY_GFP 52 #define KEXEC_CONTROL_MEMORY_GFP (GFP_KERNEL | __GFP_NORETRY) 53 #endif 54 55 #ifndef KEXEC_CONTROL_PAGE_SIZE 56 #error KEXEC_CONTROL_PAGE_SIZE not defined 57 #endif 58 59 #ifndef KEXEC_ARCH 60 #error KEXEC_ARCH not defined 61 #endif 62 63 #ifndef KEXEC_CRASH_CONTROL_MEMORY_LIMIT 64 #define KEXEC_CRASH_CONTROL_MEMORY_LIMIT KEXEC_CONTROL_MEMORY_LIMIT 65 #endif 66 67 #ifndef KEXEC_CRASH_MEM_ALIGN 68 #define KEXEC_CRASH_MEM_ALIGN PAGE_SIZE 69 #endif 70 71 #define KEXEC_CORE_NOTE_NAME CRASH_CORE_NOTE_NAME 72 73 /* 74 * This structure is used to hold the arguments that are used when loading 75 * kernel binaries. 76 */ 77 78 typedef unsigned long kimage_entry_t; 79 80 struct kexec_segment { 81 /* 82 * This pointer can point to user memory if kexec_load() system 83 * call is used or will point to kernel memory if 84 * kexec_file_load() system call is used. 85 * 86 * Use ->buf when expecting to deal with user memory and use ->kbuf 87 * when expecting to deal with kernel memory. 88 */ 89 union { 90 void __user *buf; 91 void *kbuf; 92 }; 93 size_t bufsz; 94 unsigned long mem; 95 size_t memsz; 96 }; 97 98 #ifdef CONFIG_COMPAT 99 struct compat_kexec_segment { 100 compat_uptr_t buf; 101 compat_size_t bufsz; 102 compat_ulong_t mem; /* User space sees this as a (void *) ... */ 103 compat_size_t memsz; 104 }; 105 #endif 106 107 #ifdef CONFIG_KEXEC_FILE 108 struct purgatory_info { 109 /* 110 * Pointer to elf header at the beginning of kexec_purgatory. 111 * Note: kexec_purgatory is read only 112 */ 113 const Elf_Ehdr *ehdr; 114 /* 115 * Temporary, modifiable buffer for sechdrs used for relocation. 116 * This memory can be freed post image load. 117 */ 118 Elf_Shdr *sechdrs; 119 /* 120 * Temporary, modifiable buffer for stripped purgatory used for 121 * relocation. This memory can be freed post image load. 122 */ 123 void *purgatory_buf; 124 }; 125 126 struct kimage; 127 128 typedef int (kexec_probe_t)(const char *kernel_buf, unsigned long kernel_size); 129 typedef void *(kexec_load_t)(struct kimage *image, char *kernel_buf, 130 unsigned long kernel_len, char *initrd, 131 unsigned long initrd_len, char *cmdline, 132 unsigned long cmdline_len); 133 typedef int (kexec_cleanup_t)(void *loader_data); 134 135 #ifdef CONFIG_KEXEC_SIG 136 typedef int (kexec_verify_sig_t)(const char *kernel_buf, 137 unsigned long kernel_len); 138 #endif 139 140 struct kexec_file_ops { 141 kexec_probe_t *probe; 142 kexec_load_t *load; 143 kexec_cleanup_t *cleanup; 144 #ifdef CONFIG_KEXEC_SIG 145 kexec_verify_sig_t *verify_sig; 146 #endif 147 }; 148 149 extern const struct kexec_file_ops * const kexec_file_loaders[]; 150 151 int kexec_image_probe_default(struct kimage *image, void *buf, 152 unsigned long buf_len); 153 int kexec_image_post_load_cleanup_default(struct kimage *image); 154 155 /* 156 * If kexec_buf.mem is set to this value, kexec_locate_mem_hole() 157 * will try to allocate free memory. Arch may overwrite it. 158 */ 159 #ifndef KEXEC_BUF_MEM_UNKNOWN 160 #define KEXEC_BUF_MEM_UNKNOWN 0 161 #endif 162 163 /** 164 * struct kexec_buf - parameters for finding a place for a buffer in memory 165 * @image: kexec image in which memory to search. 166 * @buffer: Contents which will be copied to the allocated memory. 167 * @bufsz: Size of @buffer. 168 * @mem: On return will have address of the buffer in memory. 169 * @memsz: Size for the buffer in memory. 170 * @buf_align: Minimum alignment needed. 171 * @buf_min: The buffer can't be placed below this address. 172 * @buf_max: The buffer can't be placed above this address. 173 * @top_down: Allocate from top of memory. 174 */ 175 struct kexec_buf { 176 struct kimage *image; 177 void *buffer; 178 unsigned long bufsz; 179 unsigned long mem; 180 unsigned long memsz; 181 unsigned long buf_align; 182 unsigned long buf_min; 183 unsigned long buf_max; 184 bool top_down; 185 }; 186 187 int kexec_load_purgatory(struct kimage *image, struct kexec_buf *kbuf); 188 int kexec_purgatory_get_set_symbol(struct kimage *image, const char *name, 189 void *buf, unsigned int size, 190 bool get_value); 191 void *kexec_purgatory_get_symbol_addr(struct kimage *image, const char *name); 192 193 #ifndef arch_kexec_kernel_image_probe 194 static inline int 195 arch_kexec_kernel_image_probe(struct kimage *image, void *buf, unsigned long buf_len) 196 { 197 return kexec_image_probe_default(image, buf, buf_len); 198 } 199 #endif 200 201 #ifndef arch_kimage_file_post_load_cleanup 202 static inline int arch_kimage_file_post_load_cleanup(struct kimage *image) 203 { 204 return kexec_image_post_load_cleanup_default(image); 205 } 206 #endif 207 208 #ifndef arch_check_excluded_range 209 static inline int arch_check_excluded_range(struct kimage *image, 210 unsigned long start, 211 unsigned long end) 212 { 213 return 0; 214 } 215 #endif 216 217 #ifdef CONFIG_KEXEC_SIG 218 #ifdef CONFIG_SIGNED_PE_FILE_VERIFICATION 219 int kexec_kernel_verify_pe_sig(const char *kernel, unsigned long kernel_len); 220 #endif 221 #endif 222 223 extern int kexec_add_buffer(struct kexec_buf *kbuf); 224 int kexec_locate_mem_hole(struct kexec_buf *kbuf); 225 226 #ifndef arch_kexec_locate_mem_hole 227 /** 228 * arch_kexec_locate_mem_hole - Find free memory to place the segments. 229 * @kbuf: Parameters for the memory search. 230 * 231 * On success, kbuf->mem will have the start address of the memory region found. 232 * 233 * Return: 0 on success, negative errno on error. 234 */ 235 static inline int arch_kexec_locate_mem_hole(struct kexec_buf *kbuf) 236 { 237 return kexec_locate_mem_hole(kbuf); 238 } 239 #endif 240 241 #ifndef arch_kexec_apply_relocations_add 242 /* 243 * arch_kexec_apply_relocations_add - apply relocations of type RELA 244 * @pi: Purgatory to be relocated. 245 * @section: Section relocations applying to. 246 * @relsec: Section containing RELAs. 247 * @symtab: Corresponding symtab. 248 * 249 * Return: 0 on success, negative errno on error. 250 */ 251 static inline int 252 arch_kexec_apply_relocations_add(struct purgatory_info *pi, Elf_Shdr *section, 253 const Elf_Shdr *relsec, const Elf_Shdr *symtab) 254 { 255 pr_err("RELA relocation unsupported.\n"); 256 return -ENOEXEC; 257 } 258 #endif 259 260 #ifndef arch_kexec_apply_relocations 261 /* 262 * arch_kexec_apply_relocations - apply relocations of type REL 263 * @pi: Purgatory to be relocated. 264 * @section: Section relocations applying to. 265 * @relsec: Section containing RELs. 266 * @symtab: Corresponding symtab. 267 * 268 * Return: 0 on success, negative errno on error. 269 */ 270 static inline int 271 arch_kexec_apply_relocations(struct purgatory_info *pi, Elf_Shdr *section, 272 const Elf_Shdr *relsec, const Elf_Shdr *symtab) 273 { 274 pr_err("REL relocation unsupported.\n"); 275 return -ENOEXEC; 276 } 277 #endif 278 #endif /* CONFIG_KEXEC_FILE */ 279 280 #ifdef CONFIG_KEXEC_ELF 281 struct kexec_elf_info { 282 /* 283 * Where the ELF binary contents are kept. 284 * Memory managed by the user of the struct. 285 */ 286 const char *buffer; 287 288 const struct elfhdr *ehdr; 289 const struct elf_phdr *proghdrs; 290 }; 291 292 int kexec_build_elf_info(const char *buf, size_t len, struct elfhdr *ehdr, 293 struct kexec_elf_info *elf_info); 294 295 int kexec_elf_load(struct kimage *image, struct elfhdr *ehdr, 296 struct kexec_elf_info *elf_info, 297 struct kexec_buf *kbuf, 298 unsigned long *lowest_load_addr); 299 300 void kexec_free_elf_info(struct kexec_elf_info *elf_info); 301 int kexec_elf_probe(const char *buf, unsigned long len); 302 #endif 303 struct kimage { 304 kimage_entry_t head; 305 kimage_entry_t *entry; 306 kimage_entry_t *last_entry; 307 308 unsigned long start; 309 struct page *control_code_page; 310 struct page *swap_page; 311 void *vmcoreinfo_data_copy; /* locates in the crash memory */ 312 313 unsigned long nr_segments; 314 struct kexec_segment segment[KEXEC_SEGMENT_MAX]; 315 316 struct list_head control_pages; 317 struct list_head dest_pages; 318 struct list_head unusable_pages; 319 320 /* Address of next control page to allocate for crash kernels. */ 321 unsigned long control_page; 322 323 /* Flags to indicate special processing */ 324 unsigned int type : 1; 325 #define KEXEC_TYPE_DEFAULT 0 326 #define KEXEC_TYPE_CRASH 1 327 unsigned int preserve_context : 1; 328 /* If set, we are using file mode kexec syscall */ 329 unsigned int file_mode:1; 330 #ifdef CONFIG_CRASH_HOTPLUG 331 /* If set, it is safe to update kexec segments that are 332 * excluded from SHA calculation. 333 */ 334 unsigned int hotplug_support:1; 335 #endif 336 337 #ifdef ARCH_HAS_KIMAGE_ARCH 338 struct kimage_arch arch; 339 #endif 340 341 #ifdef CONFIG_KEXEC_FILE 342 /* Additional fields for file based kexec syscall */ 343 void *kernel_buf; 344 unsigned long kernel_buf_len; 345 346 void *initrd_buf; 347 unsigned long initrd_buf_len; 348 349 char *cmdline_buf; 350 unsigned long cmdline_buf_len; 351 352 /* File operations provided by image loader */ 353 const struct kexec_file_ops *fops; 354 355 /* Image loader handling the kernel can store a pointer here */ 356 void *image_loader_data; 357 358 /* Information for loading purgatory */ 359 struct purgatory_info purgatory_info; 360 #endif 361 362 #ifdef CONFIG_CRASH_HOTPLUG 363 int hp_action; 364 int elfcorehdr_index; 365 bool elfcorehdr_updated; 366 #endif 367 368 #ifdef CONFIG_IMA_KEXEC 369 /* Virtual address of IMA measurement buffer for kexec syscall */ 370 void *ima_buffer; 371 372 phys_addr_t ima_buffer_addr; 373 size_t ima_buffer_size; 374 #endif 375 376 /* Core ELF header buffer */ 377 void *elf_headers; 378 unsigned long elf_headers_sz; 379 unsigned long elf_load_addr; 380 }; 381 382 /* kexec interface functions */ 383 extern void machine_kexec(struct kimage *image); 384 extern int machine_kexec_prepare(struct kimage *image); 385 extern void machine_kexec_cleanup(struct kimage *image); 386 extern int kernel_kexec(void); 387 extern struct page *kimage_alloc_control_pages(struct kimage *image, 388 unsigned int order); 389 390 #ifndef machine_kexec_post_load 391 static inline int machine_kexec_post_load(struct kimage *image) { return 0; } 392 #endif 393 394 extern struct kimage *kexec_image; 395 extern struct kimage *kexec_crash_image; 396 397 bool kexec_load_permitted(int kexec_image_type); 398 399 #ifndef kexec_flush_icache_page 400 #define kexec_flush_icache_page(page) 401 #endif 402 403 /* List of defined/legal kexec flags */ 404 #ifndef CONFIG_KEXEC_JUMP 405 #define KEXEC_FLAGS (KEXEC_ON_CRASH | KEXEC_UPDATE_ELFCOREHDR | KEXEC_CRASH_HOTPLUG_SUPPORT) 406 #else 407 #define KEXEC_FLAGS (KEXEC_ON_CRASH | KEXEC_PRESERVE_CONTEXT | KEXEC_UPDATE_ELFCOREHDR | \ 408 KEXEC_CRASH_HOTPLUG_SUPPORT) 409 #endif 410 411 /* List of defined/legal kexec file flags */ 412 #define KEXEC_FILE_FLAGS (KEXEC_FILE_UNLOAD | KEXEC_FILE_ON_CRASH | \ 413 KEXEC_FILE_NO_INITRAMFS | KEXEC_FILE_DEBUG) 414 415 /* flag to track if kexec reboot is in progress */ 416 extern bool kexec_in_progress; 417 418 #ifndef page_to_boot_pfn 419 static inline unsigned long page_to_boot_pfn(struct page *page) 420 { 421 return page_to_pfn(page); 422 } 423 #endif 424 425 #ifndef boot_pfn_to_page 426 static inline struct page *boot_pfn_to_page(unsigned long boot_pfn) 427 { 428 return pfn_to_page(boot_pfn); 429 } 430 #endif 431 432 #ifndef phys_to_boot_phys 433 static inline unsigned long phys_to_boot_phys(phys_addr_t phys) 434 { 435 return phys; 436 } 437 #endif 438 439 #ifndef boot_phys_to_phys 440 static inline phys_addr_t boot_phys_to_phys(unsigned long boot_phys) 441 { 442 return boot_phys; 443 } 444 #endif 445 446 #ifndef crash_free_reserved_phys_range 447 static inline void crash_free_reserved_phys_range(unsigned long begin, unsigned long end) 448 { 449 unsigned long addr; 450 451 for (addr = begin; addr < end; addr += PAGE_SIZE) 452 free_reserved_page(boot_pfn_to_page(addr >> PAGE_SHIFT)); 453 } 454 #endif 455 456 static inline unsigned long virt_to_boot_phys(void *addr) 457 { 458 return phys_to_boot_phys(__pa((unsigned long)addr)); 459 } 460 461 static inline void *boot_phys_to_virt(unsigned long entry) 462 { 463 return phys_to_virt(boot_phys_to_phys(entry)); 464 } 465 466 #ifndef arch_kexec_post_alloc_pages 467 static inline int arch_kexec_post_alloc_pages(void *vaddr, unsigned int pages, gfp_t gfp) { return 0; } 468 #endif 469 470 #ifndef arch_kexec_pre_free_pages 471 static inline void arch_kexec_pre_free_pages(void *vaddr, unsigned int pages) { } 472 #endif 473 474 extern bool kexec_file_dbg_print; 475 476 #define kexec_dprintk(fmt, arg...) \ 477 do { if (kexec_file_dbg_print) pr_info(fmt, ##arg); } while (0) 478 479 #else /* !CONFIG_KEXEC_CORE */ 480 struct pt_regs; 481 struct task_struct; 482 static inline void __crash_kexec(struct pt_regs *regs) { } 483 static inline void crash_kexec(struct pt_regs *regs) { } 484 static inline int kexec_should_crash(struct task_struct *p) { return 0; } 485 static inline int kexec_crash_loaded(void) { return 0; } 486 #define kexec_in_progress false 487 #endif /* CONFIG_KEXEC_CORE */ 488 489 #ifdef CONFIG_KEXEC_SIG 490 void set_kexec_sig_enforced(void); 491 #else 492 static inline void set_kexec_sig_enforced(void) {} 493 #endif 494 495 #endif /* !defined(__ASSEBMLY__) */ 496 497 #endif /* LINUX_KEXEC_H */ 498