Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 2 | #ifndef LINUX_KEXEC_H |
| 3 | #define LINUX_KEXEC_H |
| 4 | |
Geoff Levand | cf2df63 | 2015-02-17 13:45:56 -0800 | [diff] [blame] | 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) |
Geoff Levand | b28c2ee | 2015-02-17 13:45:58 -0800 | [diff] [blame] | 14 | #define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE) |
Geoff Levand | cf2df63 | 2015-02-17 13:45:56 -0800 | [diff] [blame] | 15 | |
| 16 | #if !defined(__ASSEMBLY__) |
| 17 | |
Hari Bathini | 692f66f | 2017-05-08 15:56:18 -0700 | [diff] [blame] | 18 | #include <linux/crash_core.h> |
Russell King | 43546d8 | 2016-08-02 14:06:04 -0700 | [diff] [blame] | 19 | #include <asm/io.h> |
| 20 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 21 | #include <uapi/linux/kexec.h> |
maximilian attems | 29a5c67 | 2012-05-31 16:26:27 -0700 | [diff] [blame] | 22 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 23 | #ifdef CONFIG_KEXEC_CORE |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 24 | #include <linux/list.h> |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 25 | #include <linux/compat.h> |
Haren Myneni | 9c15e85 | 2006-02-10 01:51:05 -0800 | [diff] [blame] | 26 | #include <linux/ioport.h> |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 27 | #include <linux/module.h> |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 28 | #include <asm/kexec.h> |
| 29 | |
| 30 | /* Verify architecture specific macros are defined */ |
| 31 | |
| 32 | #ifndef KEXEC_SOURCE_MEMORY_LIMIT |
| 33 | #error KEXEC_SOURCE_MEMORY_LIMIT not defined |
| 34 | #endif |
| 35 | |
| 36 | #ifndef KEXEC_DESTINATION_MEMORY_LIMIT |
| 37 | #error KEXEC_DESTINATION_MEMORY_LIMIT not defined |
| 38 | #endif |
| 39 | |
| 40 | #ifndef KEXEC_CONTROL_MEMORY_LIMIT |
| 41 | #error KEXEC_CONTROL_MEMORY_LIMIT not defined |
| 42 | #endif |
| 43 | |
Martin Schwidefsky | 7e01b5a | 2015-04-16 14:47:33 +0200 | [diff] [blame] | 44 | #ifndef KEXEC_CONTROL_MEMORY_GFP |
Russell King | dc5ccca | 2016-08-02 14:05:54 -0700 | [diff] [blame] | 45 | #define KEXEC_CONTROL_MEMORY_GFP (GFP_KERNEL | __GFP_NORETRY) |
Martin Schwidefsky | 7e01b5a | 2015-04-16 14:47:33 +0200 | [diff] [blame] | 46 | #endif |
| 47 | |
Huang Ying | 163f687 | 2008-08-15 00:40:22 -0700 | [diff] [blame] | 48 | #ifndef KEXEC_CONTROL_PAGE_SIZE |
| 49 | #error KEXEC_CONTROL_PAGE_SIZE not defined |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 50 | #endif |
| 51 | |
| 52 | #ifndef KEXEC_ARCH |
| 53 | #error KEXEC_ARCH not defined |
| 54 | #endif |
| 55 | |
Michael Holzheu | 3d214fa | 2011-10-30 15:16:36 +0100 | [diff] [blame] | 56 | #ifndef KEXEC_CRASH_CONTROL_MEMORY_LIMIT |
| 57 | #define KEXEC_CRASH_CONTROL_MEMORY_LIMIT KEXEC_CONTROL_MEMORY_LIMIT |
| 58 | #endif |
| 59 | |
Michael Holzheu | 558df72 | 2011-10-30 15:16:43 +0100 | [diff] [blame] | 60 | #ifndef KEXEC_CRASH_MEM_ALIGN |
| 61 | #define KEXEC_CRASH_MEM_ALIGN PAGE_SIZE |
| 62 | #endif |
| 63 | |
Hari Bathini | 692f66f | 2017-05-08 15:56:18 -0700 | [diff] [blame] | 64 | #define KEXEC_CORE_NOTE_NAME CRASH_CORE_NOTE_NAME |
| 65 | |
Simon Horman | 6672f76 | 2007-05-08 00:28:22 -0700 | [diff] [blame] | 66 | /* |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 67 | * This structure is used to hold the arguments that are used when loading |
| 68 | * kernel binaries. |
| 69 | */ |
| 70 | |
| 71 | typedef unsigned long kimage_entry_t; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 72 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 73 | struct kexec_segment { |
Vivek Goyal | 815d570 | 2014-08-08 14:25:52 -0700 | [diff] [blame] | 74 | /* |
| 75 | * This pointer can point to user memory if kexec_load() system |
| 76 | * call is used or will point to kernel memory if |
| 77 | * kexec_file_load() system call is used. |
| 78 | * |
| 79 | * Use ->buf when expecting to deal with user memory and use ->kbuf |
| 80 | * when expecting to deal with kernel memory. |
| 81 | */ |
| 82 | union { |
| 83 | void __user *buf; |
| 84 | void *kbuf; |
| 85 | }; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 86 | size_t bufsz; |
maximilian attems | 29a5c67 | 2012-05-31 16:26:27 -0700 | [diff] [blame] | 87 | unsigned long mem; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 88 | size_t memsz; |
| 89 | }; |
| 90 | |
| 91 | #ifdef CONFIG_COMPAT |
| 92 | struct compat_kexec_segment { |
| 93 | compat_uptr_t buf; |
| 94 | compat_size_t bufsz; |
| 95 | compat_ulong_t mem; /* User space sees this as a (void *) ... */ |
| 96 | compat_size_t memsz; |
| 97 | }; |
| 98 | #endif |
| 99 | |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 100 | #ifdef CONFIG_KEXEC_FILE |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 101 | struct purgatory_info { |
Philipp Rudo | 65c225d | 2018-04-13 15:36:17 -0700 | [diff] [blame] | 102 | /* |
| 103 | * Pointer to elf header at the beginning of kexec_purgatory. |
| 104 | * Note: kexec_purgatory is read only |
| 105 | */ |
| 106 | const Elf_Ehdr *ehdr; |
| 107 | /* |
| 108 | * Temporary, modifiable buffer for sechdrs used for relocation. |
| 109 | * This memory can be freed post image load. |
| 110 | */ |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 111 | Elf_Shdr *sechdrs; |
| 112 | /* |
Philipp Rudo | 65c225d | 2018-04-13 15:36:17 -0700 | [diff] [blame] | 113 | * Temporary, modifiable buffer for stripped purgatory used for |
| 114 | * relocation. This memory can be freed post image load. |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 115 | */ |
| 116 | void *purgatory_buf; |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 117 | }; |
| 118 | |
Philipp Rudo | ee6ebed | 2018-04-13 15:36:10 -0700 | [diff] [blame] | 119 | struct kimage; |
| 120 | |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 121 | typedef int (kexec_probe_t)(const char *kernel_buf, unsigned long kernel_size); |
| 122 | typedef void *(kexec_load_t)(struct kimage *image, char *kernel_buf, |
| 123 | unsigned long kernel_len, char *initrd, |
| 124 | unsigned long initrd_len, char *cmdline, |
| 125 | unsigned long cmdline_len); |
| 126 | typedef int (kexec_cleanup_t)(void *loader_data); |
| 127 | |
| 128 | #ifdef CONFIG_KEXEC_VERIFY_SIG |
| 129 | typedef int (kexec_verify_sig_t)(const char *kernel_buf, |
| 130 | unsigned long kernel_len); |
| 131 | #endif |
| 132 | |
| 133 | struct kexec_file_ops { |
| 134 | kexec_probe_t *probe; |
| 135 | kexec_load_t *load; |
| 136 | kexec_cleanup_t *cleanup; |
| 137 | #ifdef CONFIG_KEXEC_VERIFY_SIG |
| 138 | kexec_verify_sig_t *verify_sig; |
| 139 | #endif |
| 140 | }; |
Thiago Jung Bauermann | 60fe391 | 2016-11-29 23:45:47 +1100 | [diff] [blame] | 141 | |
AKASHI Takahiro | 9ec4ece | 2018-04-13 15:35:49 -0700 | [diff] [blame] | 142 | extern const struct kexec_file_ops * const kexec_file_loaders[]; |
| 143 | |
| 144 | int kexec_image_probe_default(struct kimage *image, void *buf, |
| 145 | unsigned long buf_len); |
AKASHI Takahiro | 92a98a2 | 2018-11-15 14:52:41 +0900 | [diff] [blame] | 146 | int kexec_image_post_load_cleanup_default(struct kimage *image); |
AKASHI Takahiro | 9ec4ece | 2018-04-13 15:35:49 -0700 | [diff] [blame] | 147 | |
AKASHI Takahiro | b6664ba | 2018-11-15 14:52:42 +0900 | [diff] [blame] | 148 | /* |
| 149 | * If kexec_buf.mem is set to this value, kexec_locate_mem_hole() |
| 150 | * will try to allocate free memory. Arch may overwrite it. |
| 151 | */ |
| 152 | #ifndef KEXEC_BUF_MEM_UNKNOWN |
| 153 | #define KEXEC_BUF_MEM_UNKNOWN 0 |
| 154 | #endif |
| 155 | |
Thiago Jung Bauermann | 60fe391 | 2016-11-29 23:45:47 +1100 | [diff] [blame] | 156 | /** |
| 157 | * struct kexec_buf - parameters for finding a place for a buffer in memory |
| 158 | * @image: kexec image in which memory to search. |
| 159 | * @buffer: Contents which will be copied to the allocated memory. |
| 160 | * @bufsz: Size of @buffer. |
| 161 | * @mem: On return will have address of the buffer in memory. |
| 162 | * @memsz: Size for the buffer in memory. |
| 163 | * @buf_align: Minimum alignment needed. |
| 164 | * @buf_min: The buffer can't be placed below this address. |
| 165 | * @buf_max: The buffer can't be placed above this address. |
| 166 | * @top_down: Allocate from top of memory. |
| 167 | */ |
| 168 | struct kexec_buf { |
| 169 | struct kimage *image; |
Thiago Jung Bauermann | ec2b9bf | 2016-11-29 23:45:48 +1100 | [diff] [blame] | 170 | void *buffer; |
Thiago Jung Bauermann | 60fe391 | 2016-11-29 23:45:47 +1100 | [diff] [blame] | 171 | unsigned long bufsz; |
| 172 | unsigned long mem; |
| 173 | unsigned long memsz; |
| 174 | unsigned long buf_align; |
| 175 | unsigned long buf_min; |
| 176 | unsigned long buf_max; |
| 177 | bool top_down; |
| 178 | }; |
| 179 | |
Philipp Rudo | 3be3f61 | 2018-04-13 15:36:43 -0700 | [diff] [blame] | 180 | int kexec_load_purgatory(struct kimage *image, struct kexec_buf *kbuf); |
| 181 | int kexec_purgatory_get_set_symbol(struct kimage *image, const char *name, |
| 182 | void *buf, unsigned int size, |
| 183 | bool get_value); |
| 184 | void *kexec_purgatory_get_symbol_addr(struct kimage *image, const char *name); |
| 185 | |
Yi Wang | 89f579c | 2018-11-22 10:04:09 +0800 | [diff] [blame] | 186 | void * __weak arch_kexec_kernel_image_load(struct kimage *image); |
Philipp Rudo | 8aec395 | 2018-04-13 15:36:24 -0700 | [diff] [blame] | 187 | int __weak arch_kexec_apply_relocations_add(struct purgatory_info *pi, |
| 188 | Elf_Shdr *section, |
| 189 | const Elf_Shdr *relsec, |
| 190 | const Elf_Shdr *symtab); |
| 191 | int __weak arch_kexec_apply_relocations(struct purgatory_info *pi, |
| 192 | Elf_Shdr *section, |
| 193 | const Elf_Shdr *relsec, |
| 194 | const Elf_Shdr *symtab); |
| 195 | |
Thiago Jung Bauermann | ec2b9bf | 2016-11-29 23:45:48 +1100 | [diff] [blame] | 196 | extern int kexec_add_buffer(struct kexec_buf *kbuf); |
Thiago Jung Bauermann | e2e806f | 2016-11-29 23:45:49 +1100 | [diff] [blame] | 197 | int kexec_locate_mem_hole(struct kexec_buf *kbuf); |
AKASHI Takahiro | babac4a | 2018-04-13 15:36:06 -0700 | [diff] [blame] | 198 | |
| 199 | /* Alignment required for elf header segment */ |
| 200 | #define ELF_CORE_HEADER_ALIGN 4096 |
| 201 | |
| 202 | struct crash_mem_range { |
| 203 | u64 start, end; |
| 204 | }; |
| 205 | |
| 206 | struct crash_mem { |
| 207 | unsigned int max_nr_ranges; |
| 208 | unsigned int nr_ranges; |
| 209 | struct crash_mem_range ranges[0]; |
| 210 | }; |
| 211 | |
| 212 | extern int crash_exclude_mem_range(struct crash_mem *mem, |
| 213 | unsigned long long mstart, |
| 214 | unsigned long long mend); |
| 215 | extern int crash_prepare_elf64_headers(struct crash_mem *mem, int kernel_map, |
| 216 | void **addr, unsigned long *sz); |
Thiago Jung Bauermann | 60fe391 | 2016-11-29 23:45:47 +1100 | [diff] [blame] | 217 | #endif /* CONFIG_KEXEC_FILE */ |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 218 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 219 | struct kimage { |
| 220 | kimage_entry_t head; |
| 221 | kimage_entry_t *entry; |
| 222 | kimage_entry_t *last_entry; |
| 223 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 224 | unsigned long start; |
| 225 | struct page *control_code_page; |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 226 | struct page *swap_page; |
Xunlei Pang | 1229384 | 2017-07-12 14:33:21 -0700 | [diff] [blame] | 227 | void *vmcoreinfo_data_copy; /* locates in the crash memory */ |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 228 | |
| 229 | unsigned long nr_segments; |
| 230 | struct kexec_segment segment[KEXEC_SEGMENT_MAX]; |
| 231 | |
| 232 | struct list_head control_pages; |
| 233 | struct list_head dest_pages; |
Vivek Goyal | 7d3e2bc | 2014-08-08 14:25:43 -0700 | [diff] [blame] | 234 | struct list_head unusable_pages; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 235 | |
| 236 | /* Address of next control page to allocate for crash kernels. */ |
| 237 | unsigned long control_page; |
| 238 | |
| 239 | /* Flags to indicate special processing */ |
| 240 | unsigned int type : 1; |
| 241 | #define KEXEC_TYPE_DEFAULT 0 |
| 242 | #define KEXEC_TYPE_CRASH 1 |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 243 | unsigned int preserve_context : 1; |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 244 | /* If set, we are using file mode kexec syscall */ |
| 245 | unsigned int file_mode:1; |
Huang Ying | 92be3d6 | 2008-10-31 09:48:08 +0800 | [diff] [blame] | 246 | |
| 247 | #ifdef ARCH_HAS_KIMAGE_ARCH |
| 248 | struct kimage_arch arch; |
| 249 | #endif |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 250 | |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 251 | #ifdef CONFIG_KEXEC_FILE |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 252 | /* Additional fields for file based kexec syscall */ |
| 253 | void *kernel_buf; |
| 254 | unsigned long kernel_buf_len; |
| 255 | |
| 256 | void *initrd_buf; |
| 257 | unsigned long initrd_buf_len; |
| 258 | |
| 259 | char *cmdline_buf; |
| 260 | unsigned long cmdline_buf_len; |
| 261 | |
| 262 | /* File operations provided by image loader */ |
AKASHI Takahiro | 9ec4ece | 2018-04-13 15:35:49 -0700 | [diff] [blame] | 263 | const struct kexec_file_ops *fops; |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 264 | |
| 265 | /* Image loader handling the kernel can store a pointer here */ |
| 266 | void *image_loader_data; |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 267 | |
| 268 | /* Information for loading purgatory */ |
| 269 | struct purgatory_info purgatory_info; |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 270 | #endif |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 271 | }; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 272 | |
| 273 | /* kexec interface functions */ |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 274 | extern void machine_kexec(struct kimage *image); |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 275 | extern int machine_kexec_prepare(struct kimage *image); |
| 276 | extern void machine_kexec_cleanup(struct kimage *image); |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 277 | extern int kernel_kexec(void); |
Maneesh Soni | 72414d3 | 2005-06-25 14:58:28 -0700 | [diff] [blame] | 278 | extern struct page *kimage_alloc_control_pages(struct kimage *image, |
| 279 | unsigned int order); |
Hidehiro Kawai | 7bbee5c | 2015-12-14 11:19:11 +0100 | [diff] [blame] | 280 | extern void __crash_kexec(struct pt_regs *); |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 281 | extern void crash_kexec(struct pt_regs *); |
| 282 | int kexec_should_crash(struct task_struct *); |
Petr Tesarik | 21db79e | 2016-08-02 14:06:16 -0700 | [diff] [blame] | 283 | int kexec_crash_loaded(void); |
Magnus Damm | 85916f8 | 2006-12-06 20:40:41 -0800 | [diff] [blame] | 284 | void crash_save_cpu(struct pt_regs *regs, int cpu); |
Xunlei Pang | 1229384 | 2017-07-12 14:33:21 -0700 | [diff] [blame] | 285 | extern int kimage_crash_copy_vmcoreinfo(struct kimage *image); |
Ken'ichi Ohmichi | fd59d23 | 2007-10-16 23:27:27 -0700 | [diff] [blame] | 286 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 287 | extern struct kimage *kexec_image; |
Jeff Moyer | c330dda | 2006-06-23 02:05:07 -0700 | [diff] [blame] | 288 | extern struct kimage *kexec_crash_image; |
Kees Cook | 7984754 | 2014-01-23 15:55:59 -0800 | [diff] [blame] | 289 | extern int kexec_load_disabled; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 290 | |
Zou Nan hai | a7956113 | 2006-12-07 09:51:35 -0800 | [diff] [blame] | 291 | #ifndef kexec_flush_icache_page |
| 292 | #define kexec_flush_icache_page(page) |
| 293 | #endif |
| 294 | |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 295 | /* List of defined/legal kexec flags */ |
| 296 | #ifndef CONFIG_KEXEC_JUMP |
| 297 | #define KEXEC_FLAGS KEXEC_ON_CRASH |
| 298 | #else |
| 299 | #define KEXEC_FLAGS (KEXEC_ON_CRASH | KEXEC_PRESERVE_CONTEXT) |
| 300 | #endif |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 301 | |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 302 | /* List of defined/legal kexec file flags */ |
| 303 | #define KEXEC_FILE_FLAGS (KEXEC_FILE_UNLOAD | KEXEC_FILE_ON_CRASH | \ |
| 304 | KEXEC_FILE_NO_INITRAMFS) |
| 305 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 306 | /* Location of a reserved region to hold the crash kernel. |
| 307 | */ |
| 308 | extern struct resource crashk_res; |
Yinghai Lu | 0212f91 | 2013-01-24 12:20:11 -0800 | [diff] [blame] | 309 | extern struct resource crashk_low_res; |
Tejun Heo | 43cf38e | 2010-02-02 14:38:57 +0900 | [diff] [blame] | 310 | extern note_buf_t __percpu *crash_notes; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 311 | |
Khalid Aziz | 4fc9bbf | 2013-11-27 15:19:25 -0700 | [diff] [blame] | 312 | /* flag to track if kexec reboot is in progress */ |
| 313 | extern bool kexec_in_progress; |
| 314 | |
Amerigo Wang | 06a7f71 | 2009-12-15 16:47:46 -0800 | [diff] [blame] | 315 | int crash_shrink_memory(unsigned long new_size); |
| 316 | size_t crash_get_memory_size(void); |
Anton Blanchard | c0bb9e4 | 2010-08-25 10:22:58 +1000 | [diff] [blame] | 317 | void crash_free_reserved_phys_range(unsigned long begin, unsigned long end); |
Zou Nan hai | a7956113 | 2006-12-07 09:51:35 -0800 | [diff] [blame] | 318 | |
Xunlei Pang | 9b492cf | 2016-05-23 16:24:10 -0700 | [diff] [blame] | 319 | void arch_kexec_protect_crashkres(void); |
| 320 | void arch_kexec_unprotect_crashkres(void); |
Dave Young | a43cac0 | 2015-09-09 15:38:51 -0700 | [diff] [blame] | 321 | |
Russell King | 43546d8 | 2016-08-02 14:06:04 -0700 | [diff] [blame] | 322 | #ifndef page_to_boot_pfn |
| 323 | static inline unsigned long page_to_boot_pfn(struct page *page) |
| 324 | { |
| 325 | return page_to_pfn(page); |
| 326 | } |
| 327 | #endif |
| 328 | |
| 329 | #ifndef boot_pfn_to_page |
| 330 | static inline struct page *boot_pfn_to_page(unsigned long boot_pfn) |
| 331 | { |
| 332 | return pfn_to_page(boot_pfn); |
| 333 | } |
| 334 | #endif |
| 335 | |
| 336 | #ifndef phys_to_boot_phys |
| 337 | static inline unsigned long phys_to_boot_phys(phys_addr_t phys) |
| 338 | { |
| 339 | return phys; |
| 340 | } |
| 341 | #endif |
| 342 | |
| 343 | #ifndef boot_phys_to_phys |
| 344 | static inline phys_addr_t boot_phys_to_phys(unsigned long boot_phys) |
| 345 | { |
| 346 | return boot_phys; |
| 347 | } |
| 348 | #endif |
| 349 | |
| 350 | static inline unsigned long virt_to_boot_phys(void *addr) |
| 351 | { |
| 352 | return phys_to_boot_phys(__pa((unsigned long)addr)); |
| 353 | } |
| 354 | |
| 355 | static inline void *boot_phys_to_virt(unsigned long entry) |
| 356 | { |
| 357 | return phys_to_virt(boot_phys_to_phys(entry)); |
| 358 | } |
| 359 | |
Tom Lendacky | bba4ed0 | 2017-07-17 16:10:28 -0500 | [diff] [blame] | 360 | #ifndef arch_kexec_post_alloc_pages |
| 361 | static inline int arch_kexec_post_alloc_pages(void *vaddr, unsigned int pages, gfp_t gfp) { return 0; } |
| 362 | #endif |
| 363 | |
| 364 | #ifndef arch_kexec_pre_free_pages |
| 365 | static inline void arch_kexec_pre_free_pages(void *vaddr, unsigned int pages) { } |
| 366 | #endif |
| 367 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 368 | #else /* !CONFIG_KEXEC_CORE */ |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 369 | struct pt_regs; |
| 370 | struct task_struct; |
Hidehiro Kawai | 7bbee5c | 2015-12-14 11:19:11 +0100 | [diff] [blame] | 371 | static inline void __crash_kexec(struct pt_regs *regs) { } |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 372 | static inline void crash_kexec(struct pt_regs *regs) { } |
| 373 | static inline int kexec_should_crash(struct task_struct *p) { return 0; } |
Petr Tesarik | 21db79e | 2016-08-02 14:06:16 -0700 | [diff] [blame] | 374 | static inline int kexec_crash_loaded(void) { return 0; } |
Vitaly Kuznetsov | 2b94ed2 | 2015-08-01 16:08:06 -0700 | [diff] [blame] | 375 | #define kexec_in_progress false |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 376 | #endif /* CONFIG_KEXEC_CORE */ |
Geoff Levand | cf2df63 | 2015-02-17 13:45:56 -0800 | [diff] [blame] | 377 | |
| 378 | #endif /* !defined(__ASSEBMLY__) */ |
| 379 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 380 | #endif /* LINUX_KEXEC_H */ |