blob: c9481ebcbc0cab09429bde237f21e41cc7dcb061 [file] [log] [blame]
Eric W. Biedermandc009d92005-06-25 14:57:52 -07001#ifndef LINUX_KEXEC_H
2#define LINUX_KEXEC_H
3
Geoff Levandcf2df632015-02-17 13:45:56 -08004#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 Levandb28c2ee2015-02-17 13:45:58 -080013#define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE)
Geoff Levandcf2df632015-02-17 13:45:56 -080014
15#if !defined(__ASSEMBLY__)
16
Hari Bathini692f66f2017-05-08 15:56:18 -070017#include <linux/crash_core.h>
Russell King43546d82016-08-02 14:06:04 -070018#include <asm/io.h>
19
David Howells607ca462012-10-13 10:46:48 +010020#include <uapi/linux/kexec.h>
maximilian attems29a5c672012-05-31 16:26:27 -070021
Dave Young2965faa2015-09-09 15:38:55 -070022#ifdef CONFIG_KEXEC_CORE
Eric W. Biedermandc009d92005-06-25 14:57:52 -070023#include <linux/list.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070024#include <linux/compat.h>
Haren Myneni9c15e852006-02-10 01:51:05 -080025#include <linux/ioport.h>
Vivek Goyal12db5562014-08-08 14:26:04 -070026#include <linux/module.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070027#include <asm/kexec.h>
28
29/* Verify architecture specific macros are defined */
30
31#ifndef KEXEC_SOURCE_MEMORY_LIMIT
32#error KEXEC_SOURCE_MEMORY_LIMIT not defined
33#endif
34
35#ifndef KEXEC_DESTINATION_MEMORY_LIMIT
36#error KEXEC_DESTINATION_MEMORY_LIMIT not defined
37#endif
38
39#ifndef KEXEC_CONTROL_MEMORY_LIMIT
40#error KEXEC_CONTROL_MEMORY_LIMIT not defined
41#endif
42
Martin Schwidefsky7e01b5a2015-04-16 14:47:33 +020043#ifndef KEXEC_CONTROL_MEMORY_GFP
Russell Kingdc5ccca2016-08-02 14:05:54 -070044#define KEXEC_CONTROL_MEMORY_GFP (GFP_KERNEL | __GFP_NORETRY)
Martin Schwidefsky7e01b5a2015-04-16 14:47:33 +020045#endif
46
Huang Ying163f6872008-08-15 00:40:22 -070047#ifndef KEXEC_CONTROL_PAGE_SIZE
48#error KEXEC_CONTROL_PAGE_SIZE not defined
Eric W. Biedermandc009d92005-06-25 14:57:52 -070049#endif
50
51#ifndef KEXEC_ARCH
52#error KEXEC_ARCH not defined
53#endif
54
Michael Holzheu3d214fa2011-10-30 15:16:36 +010055#ifndef KEXEC_CRASH_CONTROL_MEMORY_LIMIT
56#define KEXEC_CRASH_CONTROL_MEMORY_LIMIT KEXEC_CONTROL_MEMORY_LIMIT
57#endif
58
Michael Holzheu558df722011-10-30 15:16:43 +010059#ifndef KEXEC_CRASH_MEM_ALIGN
60#define KEXEC_CRASH_MEM_ALIGN PAGE_SIZE
61#endif
62
Hari Bathini692f66f2017-05-08 15:56:18 -070063#define KEXEC_CORE_NOTE_NAME CRASH_CORE_NOTE_NAME
64
Simon Horman6672f762007-05-08 00:28:22 -070065/*
66 * The per-cpu notes area is a list of notes terminated by a "NULL"
67 * note header. For kdump, the code in vmcore.c runs in the context
68 * of the second kernel to combine them into one note.
69 */
Michael Holzheucb78edf2012-01-20 14:34:16 -080070#ifndef KEXEC_NOTE_BYTES
Hari Bathini692f66f2017-05-08 15:56:18 -070071#define KEXEC_NOTE_BYTES CRASH_CORE_NOTE_BYTES
Michael Holzheucb78edf2012-01-20 14:34:16 -080072#endif
Simon Horman6672f762007-05-08 00:28:22 -070073
Eric W. Biedermandc009d92005-06-25 14:57:52 -070074/*
75 * This structure is used to hold the arguments that are used when loading
76 * kernel binaries.
77 */
78
79typedef unsigned long kimage_entry_t;
Eric W. Biedermandc009d92005-06-25 14:57:52 -070080
Eric W. Biedermandc009d92005-06-25 14:57:52 -070081struct kexec_segment {
Vivek Goyal815d5702014-08-08 14:25:52 -070082 /*
83 * This pointer can point to user memory if kexec_load() system
84 * call is used or will point to kernel memory if
85 * kexec_file_load() system call is used.
86 *
87 * Use ->buf when expecting to deal with user memory and use ->kbuf
88 * when expecting to deal with kernel memory.
89 */
90 union {
91 void __user *buf;
92 void *kbuf;
93 };
Eric W. Biedermandc009d92005-06-25 14:57:52 -070094 size_t bufsz;
maximilian attems29a5c672012-05-31 16:26:27 -070095 unsigned long mem;
Eric W. Biedermandc009d92005-06-25 14:57:52 -070096 size_t memsz;
97};
98
99#ifdef CONFIG_COMPAT
100struct compat_kexec_segment {
101 compat_uptr_t buf;
102 compat_size_t bufsz;
103 compat_ulong_t mem; /* User space sees this as a (void *) ... */
104 compat_size_t memsz;
105};
106#endif
107
Xunlei Pang978e30c2016-01-20 15:00:36 -0800108#ifdef CONFIG_KEXEC_FILE
Vivek Goyal12db5562014-08-08 14:26:04 -0700109struct purgatory_info {
110 /* Pointer to elf header of read only purgatory */
111 Elf_Ehdr *ehdr;
112
113 /* Pointer to purgatory sechdrs which are modifiable */
114 Elf_Shdr *sechdrs;
115 /*
116 * Temporary buffer location where purgatory is loaded and relocated
117 * This memory can be freed post image load
118 */
119 void *purgatory_buf;
120
121 /* Address where purgatory is finally loaded and is executed from */
122 unsigned long purgatory_load_addr;
123};
124
Xunlei Pang978e30c2016-01-20 15:00:36 -0800125typedef int (kexec_probe_t)(const char *kernel_buf, unsigned long kernel_size);
126typedef void *(kexec_load_t)(struct kimage *image, char *kernel_buf,
127 unsigned long kernel_len, char *initrd,
128 unsigned long initrd_len, char *cmdline,
129 unsigned long cmdline_len);
130typedef int (kexec_cleanup_t)(void *loader_data);
131
132#ifdef CONFIG_KEXEC_VERIFY_SIG
133typedef int (kexec_verify_sig_t)(const char *kernel_buf,
134 unsigned long kernel_len);
135#endif
136
137struct kexec_file_ops {
138 kexec_probe_t *probe;
139 kexec_load_t *load;
140 kexec_cleanup_t *cleanup;
141#ifdef CONFIG_KEXEC_VERIFY_SIG
142 kexec_verify_sig_t *verify_sig;
143#endif
144};
Thiago Jung Bauermann60fe3912016-11-29 23:45:47 +1100145
146/**
147 * struct kexec_buf - parameters for finding a place for a buffer in memory
148 * @image: kexec image in which memory to search.
149 * @buffer: Contents which will be copied to the allocated memory.
150 * @bufsz: Size of @buffer.
151 * @mem: On return will have address of the buffer in memory.
152 * @memsz: Size for the buffer in memory.
153 * @buf_align: Minimum alignment needed.
154 * @buf_min: The buffer can't be placed below this address.
155 * @buf_max: The buffer can't be placed above this address.
156 * @top_down: Allocate from top of memory.
157 */
158struct kexec_buf {
159 struct kimage *image;
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100160 void *buffer;
Thiago Jung Bauermann60fe3912016-11-29 23:45:47 +1100161 unsigned long bufsz;
162 unsigned long mem;
163 unsigned long memsz;
164 unsigned long buf_align;
165 unsigned long buf_min;
166 unsigned long buf_max;
167 bool top_down;
168};
169
170int __weak arch_kexec_walk_mem(struct kexec_buf *kbuf,
171 int (*func)(u64, u64, void *));
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100172extern int kexec_add_buffer(struct kexec_buf *kbuf);
Thiago Jung Bauermanne2e806f2016-11-29 23:45:49 +1100173int kexec_locate_mem_hole(struct kexec_buf *kbuf);
Thiago Jung Bauermann60fe3912016-11-29 23:45:47 +1100174#endif /* CONFIG_KEXEC_FILE */
Xunlei Pang978e30c2016-01-20 15:00:36 -0800175
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700176struct kimage {
177 kimage_entry_t head;
178 kimage_entry_t *entry;
179 kimage_entry_t *last_entry;
180
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700181 unsigned long start;
182 struct page *control_code_page;
Huang Ying3ab83522008-07-25 19:45:07 -0700183 struct page *swap_page;
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700184
185 unsigned long nr_segments;
186 struct kexec_segment segment[KEXEC_SEGMENT_MAX];
187
188 struct list_head control_pages;
189 struct list_head dest_pages;
Vivek Goyal7d3e2bc2014-08-08 14:25:43 -0700190 struct list_head unusable_pages;
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700191
192 /* Address of next control page to allocate for crash kernels. */
193 unsigned long control_page;
194
195 /* Flags to indicate special processing */
196 unsigned int type : 1;
197#define KEXEC_TYPE_DEFAULT 0
198#define KEXEC_TYPE_CRASH 1
Huang Ying3ab83522008-07-25 19:45:07 -0700199 unsigned int preserve_context : 1;
Vivek Goyalcb105252014-08-08 14:25:57 -0700200 /* If set, we are using file mode kexec syscall */
201 unsigned int file_mode:1;
Huang Ying92be3d62008-10-31 09:48:08 +0800202
203#ifdef ARCH_HAS_KIMAGE_ARCH
204 struct kimage_arch arch;
205#endif
Vivek Goyalcb105252014-08-08 14:25:57 -0700206
Xunlei Pang978e30c2016-01-20 15:00:36 -0800207#ifdef CONFIG_KEXEC_FILE
Vivek Goyalcb105252014-08-08 14:25:57 -0700208 /* Additional fields for file based kexec syscall */
209 void *kernel_buf;
210 unsigned long kernel_buf_len;
211
212 void *initrd_buf;
213 unsigned long initrd_buf_len;
214
215 char *cmdline_buf;
216 unsigned long cmdline_buf_len;
217
218 /* File operations provided by image loader */
219 struct kexec_file_ops *fops;
220
221 /* Image loader handling the kernel can store a pointer here */
222 void *image_loader_data;
Vivek Goyal12db5562014-08-08 14:26:04 -0700223
224 /* Information for loading purgatory */
225 struct purgatory_info purgatory_info;
Xunlei Pang978e30c2016-01-20 15:00:36 -0800226#endif
Vivek Goyalcb105252014-08-08 14:25:57 -0700227};
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700228
229/* kexec interface functions */
Huang Ying3ab83522008-07-25 19:45:07 -0700230extern void machine_kexec(struct kimage *image);
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700231extern int machine_kexec_prepare(struct kimage *image);
232extern void machine_kexec_cleanup(struct kimage *image);
233extern asmlinkage long sys_kexec_load(unsigned long entry,
Maneesh Soni72414d32005-06-25 14:58:28 -0700234 unsigned long nr_segments,
235 struct kexec_segment __user *segments,
236 unsigned long flags);
Huang Ying3ab83522008-07-25 19:45:07 -0700237extern int kernel_kexec(void);
Maneesh Soni72414d32005-06-25 14:58:28 -0700238extern struct page *kimage_alloc_control_pages(struct kimage *image,
239 unsigned int order);
Vivek Goyal12db5562014-08-08 14:26:04 -0700240extern int kexec_load_purgatory(struct kimage *image, unsigned long min,
241 unsigned long max, int top_down,
242 unsigned long *load_addr);
243extern int kexec_purgatory_get_set_symbol(struct kimage *image,
244 const char *name, void *buf,
245 unsigned int size, bool get_value);
246extern void *kexec_purgatory_get_symbol_addr(struct kimage *image,
247 const char *name);
Hidehiro Kawai7bbee5c2015-12-14 11:19:11 +0100248extern void __crash_kexec(struct pt_regs *);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700249extern void crash_kexec(struct pt_regs *);
250int kexec_should_crash(struct task_struct *);
Petr Tesarik21db79e2016-08-02 14:06:16 -0700251int kexec_crash_loaded(void);
Magnus Damm85916f82006-12-06 20:40:41 -0800252void crash_save_cpu(struct pt_regs *regs, int cpu);
Ken'ichi Ohmichifd59d232007-10-16 23:27:27 -0700253
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700254extern struct kimage *kexec_image;
Jeff Moyerc330dda2006-06-23 02:05:07 -0700255extern struct kimage *kexec_crash_image;
Kees Cook79847542014-01-23 15:55:59 -0800256extern int kexec_load_disabled;
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700257
Zou Nan haia79561132006-12-07 09:51:35 -0800258#ifndef kexec_flush_icache_page
259#define kexec_flush_icache_page(page)
260#endif
261
Huang Ying3ab83522008-07-25 19:45:07 -0700262/* List of defined/legal kexec flags */
263#ifndef CONFIG_KEXEC_JUMP
264#define KEXEC_FLAGS KEXEC_ON_CRASH
265#else
266#define KEXEC_FLAGS (KEXEC_ON_CRASH | KEXEC_PRESERVE_CONTEXT)
267#endif
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700268
Vivek Goyalcb105252014-08-08 14:25:57 -0700269/* List of defined/legal kexec file flags */
270#define KEXEC_FILE_FLAGS (KEXEC_FILE_UNLOAD | KEXEC_FILE_ON_CRASH | \
271 KEXEC_FILE_NO_INITRAMFS)
272
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700273/* Location of a reserved region to hold the crash kernel.
274 */
275extern struct resource crashk_res;
Yinghai Lu0212f912013-01-24 12:20:11 -0800276extern struct resource crashk_low_res;
Tejun Heo43cf38e2010-02-02 14:38:57 +0900277extern note_buf_t __percpu *crash_notes;
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700278
Khalid Aziz4fc9bbf2013-11-27 15:19:25 -0700279/* flag to track if kexec reboot is in progress */
280extern bool kexec_in_progress;
281
Amerigo Wang06a7f712009-12-15 16:47:46 -0800282int crash_shrink_memory(unsigned long new_size);
283size_t crash_get_memory_size(void);
Anton Blanchardc0bb9e42010-08-25 10:22:58 +1000284void crash_free_reserved_phys_range(unsigned long begin, unsigned long end);
Zou Nan haia79561132006-12-07 09:51:35 -0800285
Dave Younga43cac02015-09-09 15:38:51 -0700286int __weak arch_kexec_kernel_image_probe(struct kimage *image, void *buf,
287 unsigned long buf_len);
288void * __weak arch_kexec_kernel_image_load(struct kimage *image);
289int __weak arch_kimage_file_post_load_cleanup(struct kimage *image);
290int __weak arch_kexec_kernel_verify_sig(struct kimage *image, void *buf,
291 unsigned long buf_len);
292int __weak arch_kexec_apply_relocations_add(const Elf_Ehdr *ehdr,
293 Elf_Shdr *sechdrs, unsigned int relsec);
294int __weak arch_kexec_apply_relocations(const Elf_Ehdr *ehdr, Elf_Shdr *sechdrs,
295 unsigned int relsec);
Xunlei Pang9b492cf2016-05-23 16:24:10 -0700296void arch_kexec_protect_crashkres(void);
297void arch_kexec_unprotect_crashkres(void);
Dave Younga43cac02015-09-09 15:38:51 -0700298
Russell King43546d82016-08-02 14:06:04 -0700299#ifndef page_to_boot_pfn
300static inline unsigned long page_to_boot_pfn(struct page *page)
301{
302 return page_to_pfn(page);
303}
304#endif
305
306#ifndef boot_pfn_to_page
307static inline struct page *boot_pfn_to_page(unsigned long boot_pfn)
308{
309 return pfn_to_page(boot_pfn);
310}
311#endif
312
313#ifndef phys_to_boot_phys
314static inline unsigned long phys_to_boot_phys(phys_addr_t phys)
315{
316 return phys;
317}
318#endif
319
320#ifndef boot_phys_to_phys
321static inline phys_addr_t boot_phys_to_phys(unsigned long boot_phys)
322{
323 return boot_phys;
324}
325#endif
326
327static inline unsigned long virt_to_boot_phys(void *addr)
328{
329 return phys_to_boot_phys(__pa((unsigned long)addr));
330}
331
332static inline void *boot_phys_to_virt(unsigned long entry)
333{
334 return phys_to_virt(boot_phys_to_phys(entry));
335}
336
Dave Young2965faa2015-09-09 15:38:55 -0700337#else /* !CONFIG_KEXEC_CORE */
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700338struct pt_regs;
339struct task_struct;
Hidehiro Kawai7bbee5c2015-12-14 11:19:11 +0100340static inline void __crash_kexec(struct pt_regs *regs) { }
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700341static inline void crash_kexec(struct pt_regs *regs) { }
342static inline int kexec_should_crash(struct task_struct *p) { return 0; }
Petr Tesarik21db79e2016-08-02 14:06:16 -0700343static inline int kexec_crash_loaded(void) { return 0; }
Vitaly Kuznetsov2b94ed22015-08-01 16:08:06 -0700344#define kexec_in_progress false
Dave Young2965faa2015-09-09 15:38:55 -0700345#endif /* CONFIG_KEXEC_CORE */
Geoff Levandcf2df632015-02-17 13:45:56 -0800346
347#endif /* !defined(__ASSEBMLY__) */
348
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700349#endif /* LINUX_KEXEC_H */