Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 1 | #ifndef LINUX_KEXEC_H |
| 2 | #define LINUX_KEXEC_H |
| 3 | |
Geoff Levand | cf2df63 | 2015-02-17 13:45:56 -0800 | [diff] [blame] | 4 | #define IND_DESTINATION_BIT 0 |
| 5 | #define IND_INDIRECTION_BIT 1 |
| 6 | #define IND_DONE_BIT 2 |
| 7 | #define IND_SOURCE_BIT 3 |
| 8 | |
| 9 | #define IND_DESTINATION (1 << IND_DESTINATION_BIT) |
| 10 | #define IND_INDIRECTION (1 << IND_INDIRECTION_BIT) |
| 11 | #define IND_DONE (1 << IND_DONE_BIT) |
| 12 | #define IND_SOURCE (1 << IND_SOURCE_BIT) |
Geoff Levand | b28c2ee | 2015-02-17 13:45:58 -0800 | [diff] [blame] | 13 | #define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE) |
Geoff Levand | cf2df63 | 2015-02-17 13:45:56 -0800 | [diff] [blame] | 14 | |
| 15 | #if !defined(__ASSEMBLY__) |
| 16 | |
Russell King | 43546d8 | 2016-08-02 14:06:04 -0700 | [diff] [blame] | 17 | #include <asm/io.h> |
| 18 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 19 | #include <uapi/linux/kexec.h> |
maximilian attems | 29a5c67 | 2012-05-31 16:26:27 -0700 | [diff] [blame] | 20 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 21 | #ifdef CONFIG_KEXEC_CORE |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 22 | #include <linux/list.h> |
| 23 | #include <linux/linkage.h> |
| 24 | #include <linux/compat.h> |
Haren Myneni | 9c15e85 | 2006-02-10 01:51:05 -0800 | [diff] [blame] | 25 | #include <linux/ioport.h> |
Simon Horman | 6672f76 | 2007-05-08 00:28:22 -0700 | [diff] [blame] | 26 | #include <linux/elfcore.h> |
| 27 | #include <linux/elf.h> |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 28 | #include <linux/module.h> |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 29 | #include <asm/kexec.h> |
| 30 | |
| 31 | /* Verify architecture specific macros are defined */ |
| 32 | |
| 33 | #ifndef KEXEC_SOURCE_MEMORY_LIMIT |
| 34 | #error KEXEC_SOURCE_MEMORY_LIMIT not defined |
| 35 | #endif |
| 36 | |
| 37 | #ifndef KEXEC_DESTINATION_MEMORY_LIMIT |
| 38 | #error KEXEC_DESTINATION_MEMORY_LIMIT not defined |
| 39 | #endif |
| 40 | |
| 41 | #ifndef KEXEC_CONTROL_MEMORY_LIMIT |
| 42 | #error KEXEC_CONTROL_MEMORY_LIMIT not defined |
| 43 | #endif |
| 44 | |
Martin Schwidefsky | 7e01b5a | 2015-04-16 14:47:33 +0200 | [diff] [blame] | 45 | #ifndef KEXEC_CONTROL_MEMORY_GFP |
Russell King | dc5ccca | 2016-08-02 14:05:54 -0700 | [diff] [blame] | 46 | #define KEXEC_CONTROL_MEMORY_GFP (GFP_KERNEL | __GFP_NORETRY) |
Martin Schwidefsky | 7e01b5a | 2015-04-16 14:47:33 +0200 | [diff] [blame] | 47 | #endif |
| 48 | |
Huang Ying | 163f687 | 2008-08-15 00:40:22 -0700 | [diff] [blame] | 49 | #ifndef KEXEC_CONTROL_PAGE_SIZE |
| 50 | #error KEXEC_CONTROL_PAGE_SIZE not defined |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 51 | #endif |
| 52 | |
| 53 | #ifndef KEXEC_ARCH |
| 54 | #error KEXEC_ARCH not defined |
| 55 | #endif |
| 56 | |
Michael Holzheu | 3d214fa | 2011-10-30 15:16:36 +0100 | [diff] [blame] | 57 | #ifndef KEXEC_CRASH_CONTROL_MEMORY_LIMIT |
| 58 | #define KEXEC_CRASH_CONTROL_MEMORY_LIMIT KEXEC_CONTROL_MEMORY_LIMIT |
| 59 | #endif |
| 60 | |
Michael Holzheu | 558df72 | 2011-10-30 15:16:43 +0100 | [diff] [blame] | 61 | #ifndef KEXEC_CRASH_MEM_ALIGN |
| 62 | #define KEXEC_CRASH_MEM_ALIGN PAGE_SIZE |
| 63 | #endif |
| 64 | |
Simon Horman | 6672f76 | 2007-05-08 00:28:22 -0700 | [diff] [blame] | 65 | #define KEXEC_NOTE_HEAD_BYTES ALIGN(sizeof(struct elf_note), 4) |
| 66 | #define KEXEC_CORE_NOTE_NAME "CORE" |
| 67 | #define KEXEC_CORE_NOTE_NAME_BYTES ALIGN(sizeof(KEXEC_CORE_NOTE_NAME), 4) |
| 68 | #define KEXEC_CORE_NOTE_DESC_BYTES ALIGN(sizeof(struct elf_prstatus), 4) |
| 69 | /* |
| 70 | * The per-cpu notes area is a list of notes terminated by a "NULL" |
| 71 | * note header. For kdump, the code in vmcore.c runs in the context |
| 72 | * of the second kernel to combine them into one note. |
| 73 | */ |
Michael Holzheu | cb78edf | 2012-01-20 14:34:16 -0800 | [diff] [blame] | 74 | #ifndef KEXEC_NOTE_BYTES |
Simon Horman | 6672f76 | 2007-05-08 00:28:22 -0700 | [diff] [blame] | 75 | #define KEXEC_NOTE_BYTES ( (KEXEC_NOTE_HEAD_BYTES * 2) + \ |
| 76 | KEXEC_CORE_NOTE_NAME_BYTES + \ |
| 77 | KEXEC_CORE_NOTE_DESC_BYTES ) |
Michael Holzheu | cb78edf | 2012-01-20 14:34:16 -0800 | [diff] [blame] | 78 | #endif |
Simon Horman | 6672f76 | 2007-05-08 00:28:22 -0700 | [diff] [blame] | 79 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 80 | /* |
| 81 | * This structure is used to hold the arguments that are used when loading |
| 82 | * kernel binaries. |
| 83 | */ |
| 84 | |
| 85 | typedef unsigned long kimage_entry_t; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 86 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 87 | struct kexec_segment { |
Vivek Goyal | 815d570 | 2014-08-08 14:25:52 -0700 | [diff] [blame] | 88 | /* |
| 89 | * This pointer can point to user memory if kexec_load() system |
| 90 | * call is used or will point to kernel memory if |
| 91 | * kexec_file_load() system call is used. |
| 92 | * |
| 93 | * Use ->buf when expecting to deal with user memory and use ->kbuf |
| 94 | * when expecting to deal with kernel memory. |
| 95 | */ |
| 96 | union { |
| 97 | void __user *buf; |
| 98 | void *kbuf; |
| 99 | }; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 100 | size_t bufsz; |
maximilian attems | 29a5c67 | 2012-05-31 16:26:27 -0700 | [diff] [blame] | 101 | unsigned long mem; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 102 | size_t memsz; |
| 103 | }; |
| 104 | |
| 105 | #ifdef CONFIG_COMPAT |
| 106 | struct compat_kexec_segment { |
| 107 | compat_uptr_t buf; |
| 108 | compat_size_t bufsz; |
| 109 | compat_ulong_t mem; /* User space sees this as a (void *) ... */ |
| 110 | compat_size_t memsz; |
| 111 | }; |
| 112 | #endif |
| 113 | |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 114 | #ifdef CONFIG_KEXEC_FILE |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 115 | struct purgatory_info { |
| 116 | /* Pointer to elf header of read only purgatory */ |
| 117 | Elf_Ehdr *ehdr; |
| 118 | |
| 119 | /* Pointer to purgatory sechdrs which are modifiable */ |
| 120 | Elf_Shdr *sechdrs; |
| 121 | /* |
| 122 | * Temporary buffer location where purgatory is loaded and relocated |
| 123 | * This memory can be freed post image load |
| 124 | */ |
| 125 | void *purgatory_buf; |
| 126 | |
| 127 | /* Address where purgatory is finally loaded and is executed from */ |
| 128 | unsigned long purgatory_load_addr; |
| 129 | }; |
| 130 | |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 131 | typedef int (kexec_probe_t)(const char *kernel_buf, unsigned long kernel_size); |
| 132 | typedef void *(kexec_load_t)(struct kimage *image, char *kernel_buf, |
| 133 | unsigned long kernel_len, char *initrd, |
| 134 | unsigned long initrd_len, char *cmdline, |
| 135 | unsigned long cmdline_len); |
| 136 | typedef int (kexec_cleanup_t)(void *loader_data); |
| 137 | |
| 138 | #ifdef CONFIG_KEXEC_VERIFY_SIG |
| 139 | typedef int (kexec_verify_sig_t)(const char *kernel_buf, |
| 140 | unsigned long kernel_len); |
| 141 | #endif |
| 142 | |
| 143 | struct kexec_file_ops { |
| 144 | kexec_probe_t *probe; |
| 145 | kexec_load_t *load; |
| 146 | kexec_cleanup_t *cleanup; |
| 147 | #ifdef CONFIG_KEXEC_VERIFY_SIG |
| 148 | kexec_verify_sig_t *verify_sig; |
| 149 | #endif |
| 150 | }; |
Thiago Jung Bauermann | 60fe391 | 2016-11-29 23:45:47 +1100 | [diff] [blame] | 151 | |
| 152 | /** |
| 153 | * struct kexec_buf - parameters for finding a place for a buffer in memory |
| 154 | * @image: kexec image in which memory to search. |
| 155 | * @buffer: Contents which will be copied to the allocated memory. |
| 156 | * @bufsz: Size of @buffer. |
| 157 | * @mem: On return will have address of the buffer in memory. |
| 158 | * @memsz: Size for the buffer in memory. |
| 159 | * @buf_align: Minimum alignment needed. |
| 160 | * @buf_min: The buffer can't be placed below this address. |
| 161 | * @buf_max: The buffer can't be placed above this address. |
| 162 | * @top_down: Allocate from top of memory. |
| 163 | */ |
| 164 | struct kexec_buf { |
| 165 | struct kimage *image; |
Thiago Jung Bauermann | ec2b9bf | 2016-11-29 23:45:48 +1100 | [diff] [blame] | 166 | void *buffer; |
Thiago Jung Bauermann | 60fe391 | 2016-11-29 23:45:47 +1100 | [diff] [blame] | 167 | unsigned long bufsz; |
| 168 | unsigned long mem; |
| 169 | unsigned long memsz; |
| 170 | unsigned long buf_align; |
| 171 | unsigned long buf_min; |
| 172 | unsigned long buf_max; |
| 173 | bool top_down; |
| 174 | }; |
| 175 | |
| 176 | int __weak arch_kexec_walk_mem(struct kexec_buf *kbuf, |
| 177 | int (*func)(u64, u64, void *)); |
Thiago Jung Bauermann | ec2b9bf | 2016-11-29 23:45:48 +1100 | [diff] [blame] | 178 | extern int kexec_add_buffer(struct kexec_buf *kbuf); |
Thiago Jung Bauermann | e2e806f | 2016-11-29 23:45:49 +1100 | [diff] [blame] | 179 | int kexec_locate_mem_hole(struct kexec_buf *kbuf); |
Thiago Jung Bauermann | 60fe391 | 2016-11-29 23:45:47 +1100 | [diff] [blame] | 180 | #endif /* CONFIG_KEXEC_FILE */ |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 181 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 182 | struct kimage { |
| 183 | kimage_entry_t head; |
| 184 | kimage_entry_t *entry; |
| 185 | kimage_entry_t *last_entry; |
| 186 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 187 | unsigned long start; |
| 188 | struct page *control_code_page; |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 189 | struct page *swap_page; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 190 | |
| 191 | unsigned long nr_segments; |
| 192 | struct kexec_segment segment[KEXEC_SEGMENT_MAX]; |
| 193 | |
| 194 | struct list_head control_pages; |
| 195 | struct list_head dest_pages; |
Vivek Goyal | 7d3e2bc | 2014-08-08 14:25:43 -0700 | [diff] [blame] | 196 | struct list_head unusable_pages; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 197 | |
| 198 | /* Address of next control page to allocate for crash kernels. */ |
| 199 | unsigned long control_page; |
| 200 | |
| 201 | /* Flags to indicate special processing */ |
| 202 | unsigned int type : 1; |
| 203 | #define KEXEC_TYPE_DEFAULT 0 |
| 204 | #define KEXEC_TYPE_CRASH 1 |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 205 | unsigned int preserve_context : 1; |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 206 | /* If set, we are using file mode kexec syscall */ |
| 207 | unsigned int file_mode:1; |
Huang Ying | 92be3d6 | 2008-10-31 09:48:08 +0800 | [diff] [blame] | 208 | |
| 209 | #ifdef ARCH_HAS_KIMAGE_ARCH |
| 210 | struct kimage_arch arch; |
| 211 | #endif |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 212 | |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 213 | #ifdef CONFIG_KEXEC_FILE |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 214 | /* Additional fields for file based kexec syscall */ |
| 215 | void *kernel_buf; |
| 216 | unsigned long kernel_buf_len; |
| 217 | |
| 218 | void *initrd_buf; |
| 219 | unsigned long initrd_buf_len; |
| 220 | |
| 221 | char *cmdline_buf; |
| 222 | unsigned long cmdline_buf_len; |
| 223 | |
| 224 | /* File operations provided by image loader */ |
| 225 | struct kexec_file_ops *fops; |
| 226 | |
| 227 | /* Image loader handling the kernel can store a pointer here */ |
| 228 | void *image_loader_data; |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 229 | |
| 230 | /* Information for loading purgatory */ |
| 231 | struct purgatory_info purgatory_info; |
Xunlei Pang | 978e30c | 2016-01-20 15:00:36 -0800 | [diff] [blame] | 232 | #endif |
Vivek Goyal | cb10525 | 2014-08-08 14:25:57 -0700 | [diff] [blame] | 233 | }; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 234 | |
| 235 | /* kexec interface functions */ |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 236 | extern void machine_kexec(struct kimage *image); |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 237 | extern int machine_kexec_prepare(struct kimage *image); |
| 238 | extern void machine_kexec_cleanup(struct kimage *image); |
| 239 | extern asmlinkage long sys_kexec_load(unsigned long entry, |
Maneesh Soni | 72414d3 | 2005-06-25 14:58:28 -0700 | [diff] [blame] | 240 | unsigned long nr_segments, |
| 241 | struct kexec_segment __user *segments, |
| 242 | unsigned long flags); |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 243 | extern int kernel_kexec(void); |
Maneesh Soni | 72414d3 | 2005-06-25 14:58:28 -0700 | [diff] [blame] | 244 | extern struct page *kimage_alloc_control_pages(struct kimage *image, |
| 245 | unsigned int order); |
Vivek Goyal | 12db556 | 2014-08-08 14:26:04 -0700 | [diff] [blame] | 246 | extern int kexec_load_purgatory(struct kimage *image, unsigned long min, |
| 247 | unsigned long max, int top_down, |
| 248 | unsigned long *load_addr); |
| 249 | extern int kexec_purgatory_get_set_symbol(struct kimage *image, |
| 250 | const char *name, void *buf, |
| 251 | unsigned int size, bool get_value); |
| 252 | extern void *kexec_purgatory_get_symbol_addr(struct kimage *image, |
| 253 | const char *name); |
Hidehiro Kawai | 7bbee5c | 2015-12-14 11:19:11 +0100 | [diff] [blame] | 254 | extern void __crash_kexec(struct pt_regs *); |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 255 | extern void crash_kexec(struct pt_regs *); |
| 256 | int kexec_should_crash(struct task_struct *); |
Petr Tesarik | 21db79e | 2016-08-02 14:06:16 -0700 | [diff] [blame] | 257 | int kexec_crash_loaded(void); |
Magnus Damm | 85916f8 | 2006-12-06 20:40:41 -0800 | [diff] [blame] | 258 | void crash_save_cpu(struct pt_regs *regs, int cpu); |
Ken'ichi Ohmichi | fd59d23 | 2007-10-16 23:27:27 -0700 | [diff] [blame] | 259 | void crash_save_vmcoreinfo(void); |
| 260 | void arch_crash_save_vmcoreinfo(void); |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 261 | __printf(1, 2) |
| 262 | void vmcoreinfo_append_str(const char *fmt, ...); |
Russell King | dae2801 | 2016-08-02 14:06:00 -0700 | [diff] [blame] | 263 | phys_addr_t paddr_vmcoreinfo_note(void); |
Ken'ichi Ohmichi | fd59d23 | 2007-10-16 23:27:27 -0700 | [diff] [blame] | 264 | |
Bernhard Walle | c6e2bee | 2008-08-05 13:01:05 -0700 | [diff] [blame] | 265 | #define VMCOREINFO_OSRELEASE(value) \ |
| 266 | vmcoreinfo_append_str("OSRELEASE=%s\n", value) |
Ken'ichi Ohmichi | bba1f60 | 2008-02-07 00:15:22 -0800 | [diff] [blame] | 267 | #define VMCOREINFO_PAGESIZE(value) \ |
| 268 | vmcoreinfo_append_str("PAGESIZE=%ld\n", value) |
Ken'ichi Ohmichi | bcbba6c | 2007-10-16 23:27:30 -0700 | [diff] [blame] | 269 | #define VMCOREINFO_SYMBOL(name) \ |
Ken'ichi Ohmichi | fd59d23 | 2007-10-16 23:27:27 -0700 | [diff] [blame] | 270 | vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)&name) |
Ken'ichi Ohmichi | bcbba6c | 2007-10-16 23:27:30 -0700 | [diff] [blame] | 271 | #define VMCOREINFO_SIZE(name) \ |
Ken'ichi Ohmichi | d768281 | 2007-10-16 23:27:28 -0700 | [diff] [blame] | 272 | vmcoreinfo_append_str("SIZE(%s)=%lu\n", #name, \ |
Ken'ichi Ohmichi | 6cfa062 | 2007-10-16 23:27:28 -0700 | [diff] [blame] | 273 | (unsigned long)sizeof(name)) |
Ken'ichi Ohmichi | c76f860 | 2008-02-07 00:15:20 -0800 | [diff] [blame] | 274 | #define VMCOREINFO_STRUCT_SIZE(name) \ |
| 275 | vmcoreinfo_append_str("SIZE(%s)=%lu\n", #name, \ |
| 276 | (unsigned long)sizeof(struct name)) |
Ken'ichi Ohmichi | bcbba6c | 2007-10-16 23:27:30 -0700 | [diff] [blame] | 277 | #define VMCOREINFO_OFFSET(name, field) \ |
Ken'ichi Ohmichi | d768281 | 2007-10-16 23:27:28 -0700 | [diff] [blame] | 278 | vmcoreinfo_append_str("OFFSET(%s.%s)=%lu\n", #name, #field, \ |
Ken'ichi Ohmichi | 1e4f295 | 2008-02-07 00:15:22 -0800 | [diff] [blame] | 279 | (unsigned long)offsetof(struct name, field)) |
Ken'ichi Ohmichi | bcbba6c | 2007-10-16 23:27:30 -0700 | [diff] [blame] | 280 | #define VMCOREINFO_LENGTH(name, value) \ |
Ken'ichi Ohmichi | d768281 | 2007-10-16 23:27:28 -0700 | [diff] [blame] | 281 | vmcoreinfo_append_str("LENGTH(%s)=%lu\n", #name, (unsigned long)value) |
Ken'ichi Ohmichi | bcbba6c | 2007-10-16 23:27:30 -0700 | [diff] [blame] | 282 | #define VMCOREINFO_NUMBER(name) \ |
Ken'ichi Ohmichi | 6cfa062 | 2007-10-16 23:27:28 -0700 | [diff] [blame] | 283 | vmcoreinfo_append_str("NUMBER(%s)=%ld\n", #name, (long)name) |
Ken'ichi Ohmichi | bcbba6c | 2007-10-16 23:27:30 -0700 | [diff] [blame] | 284 | #define VMCOREINFO_CONFIG(name) \ |
Ken'ichi Ohmichi | fd59d23 | 2007-10-16 23:27:27 -0700 | [diff] [blame] | 285 | vmcoreinfo_append_str("CONFIG_%s=y\n", #name) |
| 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 | |
Ken'ichi Ohmichi | fd59d23 | 2007-10-16 23:27:27 -0700 | [diff] [blame] | 306 | #define VMCOREINFO_BYTES (4096) |
| 307 | #define VMCOREINFO_NOTE_NAME "VMCOREINFO" |
| 308 | #define VMCOREINFO_NOTE_NAME_BYTES ALIGN(sizeof(VMCOREINFO_NOTE_NAME), 4) |
| 309 | #define VMCOREINFO_NOTE_SIZE (KEXEC_NOTE_HEAD_BYTES*2 + VMCOREINFO_BYTES \ |
| 310 | + VMCOREINFO_NOTE_NAME_BYTES) |
| 311 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 312 | /* Location of a reserved region to hold the crash kernel. |
| 313 | */ |
| 314 | extern struct resource crashk_res; |
Yinghai Lu | 0212f91 | 2013-01-24 12:20:11 -0800 | [diff] [blame] | 315 | extern struct resource crashk_low_res; |
Simon Horman | 6672f76 | 2007-05-08 00:28:22 -0700 | [diff] [blame] | 316 | typedef u32 note_buf_t[KEXEC_NOTE_BYTES/4]; |
Tejun Heo | 43cf38e | 2010-02-02 14:38:57 +0900 | [diff] [blame] | 317 | extern note_buf_t __percpu *crash_notes; |
Ken'ichi Ohmichi | fd59d23 | 2007-10-16 23:27:27 -0700 | [diff] [blame] | 318 | extern u32 vmcoreinfo_note[VMCOREINFO_NOTE_SIZE/4]; |
Ken'ichi Ohmichi | d768281 | 2007-10-16 23:27:28 -0700 | [diff] [blame] | 319 | extern size_t vmcoreinfo_size; |
| 320 | extern size_t vmcoreinfo_max_size; |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 321 | |
Khalid Aziz | 4fc9bbf | 2013-11-27 15:19:25 -0700 | [diff] [blame] | 322 | /* flag to track if kexec reboot is in progress */ |
| 323 | extern bool kexec_in_progress; |
| 324 | |
Bernhard Walle | cba63c3 | 2007-10-18 23:40:58 -0700 | [diff] [blame] | 325 | int __init parse_crashkernel(char *cmdline, unsigned long long system_ram, |
| 326 | unsigned long long *crash_size, unsigned long long *crash_base); |
Yinghai Lu | 55a20ee | 2013-04-15 22:23:47 -0700 | [diff] [blame] | 327 | int parse_crashkernel_high(char *cmdline, unsigned long long system_ram, |
| 328 | unsigned long long *crash_size, unsigned long long *crash_base); |
Yinghai Lu | 0212f91 | 2013-01-24 12:20:11 -0800 | [diff] [blame] | 329 | int parse_crashkernel_low(char *cmdline, unsigned long long system_ram, |
| 330 | unsigned long long *crash_size, unsigned long long *crash_base); |
Amerigo Wang | 06a7f71 | 2009-12-15 16:47:46 -0800 | [diff] [blame] | 331 | int crash_shrink_memory(unsigned long new_size); |
| 332 | size_t crash_get_memory_size(void); |
Anton Blanchard | c0bb9e4 | 2010-08-25 10:22:58 +1000 | [diff] [blame] | 333 | 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] | 334 | |
Dave Young | a43cac0 | 2015-09-09 15:38:51 -0700 | [diff] [blame] | 335 | int __weak arch_kexec_kernel_image_probe(struct kimage *image, void *buf, |
| 336 | unsigned long buf_len); |
| 337 | void * __weak arch_kexec_kernel_image_load(struct kimage *image); |
| 338 | int __weak arch_kimage_file_post_load_cleanup(struct kimage *image); |
| 339 | int __weak arch_kexec_kernel_verify_sig(struct kimage *image, void *buf, |
| 340 | unsigned long buf_len); |
| 341 | int __weak arch_kexec_apply_relocations_add(const Elf_Ehdr *ehdr, |
| 342 | Elf_Shdr *sechdrs, unsigned int relsec); |
| 343 | int __weak arch_kexec_apply_relocations(const Elf_Ehdr *ehdr, Elf_Shdr *sechdrs, |
| 344 | unsigned int relsec); |
Xunlei Pang | 9b492cf | 2016-05-23 16:24:10 -0700 | [diff] [blame] | 345 | void arch_kexec_protect_crashkres(void); |
| 346 | void arch_kexec_unprotect_crashkres(void); |
Dave Young | a43cac0 | 2015-09-09 15:38:51 -0700 | [diff] [blame] | 347 | |
Russell King | 43546d8 | 2016-08-02 14:06:04 -0700 | [diff] [blame] | 348 | #ifndef page_to_boot_pfn |
| 349 | static inline unsigned long page_to_boot_pfn(struct page *page) |
| 350 | { |
| 351 | return page_to_pfn(page); |
| 352 | } |
| 353 | #endif |
| 354 | |
| 355 | #ifndef boot_pfn_to_page |
| 356 | static inline struct page *boot_pfn_to_page(unsigned long boot_pfn) |
| 357 | { |
| 358 | return pfn_to_page(boot_pfn); |
| 359 | } |
| 360 | #endif |
| 361 | |
| 362 | #ifndef phys_to_boot_phys |
| 363 | static inline unsigned long phys_to_boot_phys(phys_addr_t phys) |
| 364 | { |
| 365 | return phys; |
| 366 | } |
| 367 | #endif |
| 368 | |
| 369 | #ifndef boot_phys_to_phys |
| 370 | static inline phys_addr_t boot_phys_to_phys(unsigned long boot_phys) |
| 371 | { |
| 372 | return boot_phys; |
| 373 | } |
| 374 | #endif |
| 375 | |
| 376 | static inline unsigned long virt_to_boot_phys(void *addr) |
| 377 | { |
| 378 | return phys_to_boot_phys(__pa((unsigned long)addr)); |
| 379 | } |
| 380 | |
| 381 | static inline void *boot_phys_to_virt(unsigned long entry) |
| 382 | { |
| 383 | return phys_to_virt(boot_phys_to_phys(entry)); |
| 384 | } |
| 385 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 386 | #else /* !CONFIG_KEXEC_CORE */ |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 387 | struct pt_regs; |
| 388 | struct task_struct; |
Hidehiro Kawai | 7bbee5c | 2015-12-14 11:19:11 +0100 | [diff] [blame] | 389 | static inline void __crash_kexec(struct pt_regs *regs) { } |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 390 | static inline void crash_kexec(struct pt_regs *regs) { } |
| 391 | static inline int kexec_should_crash(struct task_struct *p) { return 0; } |
Petr Tesarik | 21db79e | 2016-08-02 14:06:16 -0700 | [diff] [blame] | 392 | static inline int kexec_crash_loaded(void) { return 0; } |
Vitaly Kuznetsov | 2b94ed2 | 2015-08-01 16:08:06 -0700 | [diff] [blame] | 393 | #define kexec_in_progress false |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 394 | #endif /* CONFIG_KEXEC_CORE */ |
Geoff Levand | cf2df63 | 2015-02-17 13:45:56 -0800 | [diff] [blame] | 395 | |
| 396 | #endif /* !defined(__ASSEBMLY__) */ |
| 397 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 398 | #endif /* LINUX_KEXEC_H */ |