blob: f378cb786f1b1904dc5730f47a7fa33a23972826 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002#ifndef LINUX_KEXEC_H
3#define LINUX_KEXEC_H
4
Geoff Levandcf2df632015-02-17 13:45:56 -08005#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 Levandb28c2ee2015-02-17 13:45:58 -080014#define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE)
Geoff Levandcf2df632015-02-17 13:45:56 -080015
16#if !defined(__ASSEMBLY__)
17
Hari Bathini692f66f2017-05-08 15:56:18 -070018#include <linux/crash_core.h>
Russell King43546d82016-08-02 14:06:04 -070019#include <asm/io.h>
20
David Howells607ca462012-10-13 10:46:48 +010021#include <uapi/linux/kexec.h>
maximilian attems29a5c672012-05-31 16:26:27 -070022
Dave Young2965faa2015-09-09 15:38:55 -070023#ifdef CONFIG_KEXEC_CORE
Eric W. Biedermandc009d92005-06-25 14:57:52 -070024#include <linux/list.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070025#include <linux/compat.h>
Haren Myneni9c15e852006-02-10 01:51:05 -080026#include <linux/ioport.h>
Vivek Goyal12db5562014-08-08 14:26:04 -070027#include <linux/module.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070028#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 Schwidefsky7e01b5a2015-04-16 14:47:33 +020044#ifndef KEXEC_CONTROL_MEMORY_GFP
Russell Kingdc5ccca2016-08-02 14:05:54 -070045#define KEXEC_CONTROL_MEMORY_GFP (GFP_KERNEL | __GFP_NORETRY)
Martin Schwidefsky7e01b5a2015-04-16 14:47:33 +020046#endif
47
Huang Ying163f6872008-08-15 00:40:22 -070048#ifndef KEXEC_CONTROL_PAGE_SIZE
49#error KEXEC_CONTROL_PAGE_SIZE not defined
Eric W. Biedermandc009d92005-06-25 14:57:52 -070050#endif
51
52#ifndef KEXEC_ARCH
53#error KEXEC_ARCH not defined
54#endif
55
Michael Holzheu3d214fa2011-10-30 15:16:36 +010056#ifndef KEXEC_CRASH_CONTROL_MEMORY_LIMIT
57#define KEXEC_CRASH_CONTROL_MEMORY_LIMIT KEXEC_CONTROL_MEMORY_LIMIT
58#endif
59
Michael Holzheu558df722011-10-30 15:16:43 +010060#ifndef KEXEC_CRASH_MEM_ALIGN
61#define KEXEC_CRASH_MEM_ALIGN PAGE_SIZE
62#endif
63
Hari Bathini692f66f2017-05-08 15:56:18 -070064#define KEXEC_CORE_NOTE_NAME CRASH_CORE_NOTE_NAME
65
Simon Horman6672f762007-05-08 00:28:22 -070066/*
Eric W. Biedermandc009d92005-06-25 14:57:52 -070067 * This structure is used to hold the arguments that are used when loading
68 * kernel binaries.
69 */
70
71typedef unsigned long kimage_entry_t;
Eric W. Biedermandc009d92005-06-25 14:57:52 -070072
Eric W. Biedermandc009d92005-06-25 14:57:52 -070073struct kexec_segment {
Vivek Goyal815d5702014-08-08 14:25:52 -070074 /*
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. Biedermandc009d92005-06-25 14:57:52 -070086 size_t bufsz;
maximilian attems29a5c672012-05-31 16:26:27 -070087 unsigned long mem;
Eric W. Biedermandc009d92005-06-25 14:57:52 -070088 size_t memsz;
89};
90
91#ifdef CONFIG_COMPAT
92struct 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 Pang978e30c2016-01-20 15:00:36 -0800100#ifdef CONFIG_KEXEC_FILE
Vivek Goyal12db5562014-08-08 14:26:04 -0700101struct purgatory_info {
Philipp Rudo65c225d2018-04-13 15:36:17 -0700102 /*
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 Goyal12db5562014-08-08 14:26:04 -0700111 Elf_Shdr *sechdrs;
112 /*
Philipp Rudo65c225d2018-04-13 15:36:17 -0700113 * Temporary, modifiable buffer for stripped purgatory used for
114 * relocation. This memory can be freed post image load.
Vivek Goyal12db5562014-08-08 14:26:04 -0700115 */
116 void *purgatory_buf;
Vivek Goyal12db5562014-08-08 14:26:04 -0700117};
118
Philipp Rudoee6ebed2018-04-13 15:36:10 -0700119struct kimage;
120
Xunlei Pang978e30c2016-01-20 15:00:36 -0800121typedef int (kexec_probe_t)(const char *kernel_buf, unsigned long kernel_size);
122typedef 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);
126typedef int (kexec_cleanup_t)(void *loader_data);
127
128#ifdef CONFIG_KEXEC_VERIFY_SIG
129typedef int (kexec_verify_sig_t)(const char *kernel_buf,
130 unsigned long kernel_len);
131#endif
132
133struct 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 Bauermann60fe3912016-11-29 23:45:47 +1100141
AKASHI Takahiro9ec4ece2018-04-13 15:35:49 -0700142extern const struct kexec_file_ops * const kexec_file_loaders[];
143
144int kexec_image_probe_default(struct kimage *image, void *buf,
145 unsigned long buf_len);
AKASHI Takahiro92a98a22018-11-15 14:52:41 +0900146int kexec_image_post_load_cleanup_default(struct kimage *image);
AKASHI Takahiro9ec4ece2018-04-13 15:35:49 -0700147
AKASHI Takahirob6664ba2018-11-15 14:52:42 +0900148/*
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 Bauermann60fe3912016-11-29 23:45:47 +1100156/**
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 */
168struct kexec_buf {
169 struct kimage *image;
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100170 void *buffer;
Thiago Jung Bauermann60fe3912016-11-29 23:45:47 +1100171 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 Rudo3be3f612018-04-13 15:36:43 -0700180int kexec_load_purgatory(struct kimage *image, struct kexec_buf *kbuf);
181int kexec_purgatory_get_set_symbol(struct kimage *image, const char *name,
182 void *buf, unsigned int size,
183 bool get_value);
184void *kexec_purgatory_get_symbol_addr(struct kimage *image, const char *name);
185
Philipp Rudo8aec3952018-04-13 15:36:24 -0700186int __weak arch_kexec_apply_relocations_add(struct purgatory_info *pi,
187 Elf_Shdr *section,
188 const Elf_Shdr *relsec,
189 const Elf_Shdr *symtab);
190int __weak arch_kexec_apply_relocations(struct purgatory_info *pi,
191 Elf_Shdr *section,
192 const Elf_Shdr *relsec,
193 const Elf_Shdr *symtab);
194
Thiago Jung Bauermann60fe3912016-11-29 23:45:47 +1100195int __weak arch_kexec_walk_mem(struct kexec_buf *kbuf,
Tom Lendacky1d2e7332017-10-20 09:30:51 -0500196 int (*func)(struct resource *, void *));
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100197extern int kexec_add_buffer(struct kexec_buf *kbuf);
Thiago Jung Bauermanne2e806f2016-11-29 23:45:49 +1100198int kexec_locate_mem_hole(struct kexec_buf *kbuf);
AKASHI Takahirobabac4a2018-04-13 15:36:06 -0700199
200/* Alignment required for elf header segment */
201#define ELF_CORE_HEADER_ALIGN 4096
202
203struct crash_mem_range {
204 u64 start, end;
205};
206
207struct crash_mem {
208 unsigned int max_nr_ranges;
209 unsigned int nr_ranges;
210 struct crash_mem_range ranges[0];
211};
212
213extern int crash_exclude_mem_range(struct crash_mem *mem,
214 unsigned long long mstart,
215 unsigned long long mend);
216extern int crash_prepare_elf64_headers(struct crash_mem *mem, int kernel_map,
217 void **addr, unsigned long *sz);
Thiago Jung Bauermann60fe3912016-11-29 23:45:47 +1100218#endif /* CONFIG_KEXEC_FILE */
Xunlei Pang978e30c2016-01-20 15:00:36 -0800219
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700220struct kimage {
221 kimage_entry_t head;
222 kimage_entry_t *entry;
223 kimage_entry_t *last_entry;
224
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700225 unsigned long start;
226 struct page *control_code_page;
Huang Ying3ab83522008-07-25 19:45:07 -0700227 struct page *swap_page;
Xunlei Pang12293842017-07-12 14:33:21 -0700228 void *vmcoreinfo_data_copy; /* locates in the crash memory */
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700229
230 unsigned long nr_segments;
231 struct kexec_segment segment[KEXEC_SEGMENT_MAX];
232
233 struct list_head control_pages;
234 struct list_head dest_pages;
Vivek Goyal7d3e2bc2014-08-08 14:25:43 -0700235 struct list_head unusable_pages;
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700236
237 /* Address of next control page to allocate for crash kernels. */
238 unsigned long control_page;
239
240 /* Flags to indicate special processing */
241 unsigned int type : 1;
242#define KEXEC_TYPE_DEFAULT 0
243#define KEXEC_TYPE_CRASH 1
Huang Ying3ab83522008-07-25 19:45:07 -0700244 unsigned int preserve_context : 1;
Vivek Goyalcb105252014-08-08 14:25:57 -0700245 /* If set, we are using file mode kexec syscall */
246 unsigned int file_mode:1;
Huang Ying92be3d62008-10-31 09:48:08 +0800247
248#ifdef ARCH_HAS_KIMAGE_ARCH
249 struct kimage_arch arch;
250#endif
Vivek Goyalcb105252014-08-08 14:25:57 -0700251
Xunlei Pang978e30c2016-01-20 15:00:36 -0800252#ifdef CONFIG_KEXEC_FILE
Vivek Goyalcb105252014-08-08 14:25:57 -0700253 /* Additional fields for file based kexec syscall */
254 void *kernel_buf;
255 unsigned long kernel_buf_len;
256
257 void *initrd_buf;
258 unsigned long initrd_buf_len;
259
260 char *cmdline_buf;
261 unsigned long cmdline_buf_len;
262
263 /* File operations provided by image loader */
AKASHI Takahiro9ec4ece2018-04-13 15:35:49 -0700264 const struct kexec_file_ops *fops;
Vivek Goyalcb105252014-08-08 14:25:57 -0700265
266 /* Image loader handling the kernel can store a pointer here */
267 void *image_loader_data;
Vivek Goyal12db5562014-08-08 14:26:04 -0700268
269 /* Information for loading purgatory */
270 struct purgatory_info purgatory_info;
Xunlei Pang978e30c2016-01-20 15:00:36 -0800271#endif
Vivek Goyalcb105252014-08-08 14:25:57 -0700272};
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700273
274/* kexec interface functions */
Huang Ying3ab83522008-07-25 19:45:07 -0700275extern void machine_kexec(struct kimage *image);
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700276extern int machine_kexec_prepare(struct kimage *image);
277extern void machine_kexec_cleanup(struct kimage *image);
Huang Ying3ab83522008-07-25 19:45:07 -0700278extern int kernel_kexec(void);
Maneesh Soni72414d32005-06-25 14:58:28 -0700279extern struct page *kimage_alloc_control_pages(struct kimage *image,
280 unsigned int order);
Hidehiro Kawai7bbee5c2015-12-14 11:19:11 +0100281extern void __crash_kexec(struct pt_regs *);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700282extern void crash_kexec(struct pt_regs *);
283int kexec_should_crash(struct task_struct *);
Petr Tesarik21db79e2016-08-02 14:06:16 -0700284int kexec_crash_loaded(void);
Magnus Damm85916f82006-12-06 20:40:41 -0800285void crash_save_cpu(struct pt_regs *regs, int cpu);
Xunlei Pang12293842017-07-12 14:33:21 -0700286extern int kimage_crash_copy_vmcoreinfo(struct kimage *image);
Ken'ichi Ohmichifd59d232007-10-16 23:27:27 -0700287
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700288extern struct kimage *kexec_image;
Jeff Moyerc330dda2006-06-23 02:05:07 -0700289extern struct kimage *kexec_crash_image;
Kees Cook79847542014-01-23 15:55:59 -0800290extern int kexec_load_disabled;
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700291
Zou Nan haia79561132006-12-07 09:51:35 -0800292#ifndef kexec_flush_icache_page
293#define kexec_flush_icache_page(page)
294#endif
295
Huang Ying3ab83522008-07-25 19:45:07 -0700296/* List of defined/legal kexec flags */
297#ifndef CONFIG_KEXEC_JUMP
298#define KEXEC_FLAGS KEXEC_ON_CRASH
299#else
300#define KEXEC_FLAGS (KEXEC_ON_CRASH | KEXEC_PRESERVE_CONTEXT)
301#endif
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700302
Vivek Goyalcb105252014-08-08 14:25:57 -0700303/* List of defined/legal kexec file flags */
304#define KEXEC_FILE_FLAGS (KEXEC_FILE_UNLOAD | KEXEC_FILE_ON_CRASH | \
305 KEXEC_FILE_NO_INITRAMFS)
306
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700307/* Location of a reserved region to hold the crash kernel.
308 */
309extern struct resource crashk_res;
Yinghai Lu0212f912013-01-24 12:20:11 -0800310extern struct resource crashk_low_res;
Tejun Heo43cf38e2010-02-02 14:38:57 +0900311extern note_buf_t __percpu *crash_notes;
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700312
Khalid Aziz4fc9bbf2013-11-27 15:19:25 -0700313/* flag to track if kexec reboot is in progress */
314extern bool kexec_in_progress;
315
Amerigo Wang06a7f712009-12-15 16:47:46 -0800316int crash_shrink_memory(unsigned long new_size);
317size_t crash_get_memory_size(void);
Anton Blanchardc0bb9e42010-08-25 10:22:58 +1000318void crash_free_reserved_phys_range(unsigned long begin, unsigned long end);
Zou Nan haia79561132006-12-07 09:51:35 -0800319
Xunlei Pang9b492cf2016-05-23 16:24:10 -0700320void arch_kexec_protect_crashkres(void);
321void arch_kexec_unprotect_crashkres(void);
Dave Younga43cac02015-09-09 15:38:51 -0700322
Russell King43546d82016-08-02 14:06:04 -0700323#ifndef page_to_boot_pfn
324static inline unsigned long page_to_boot_pfn(struct page *page)
325{
326 return page_to_pfn(page);
327}
328#endif
329
330#ifndef boot_pfn_to_page
331static inline struct page *boot_pfn_to_page(unsigned long boot_pfn)
332{
333 return pfn_to_page(boot_pfn);
334}
335#endif
336
337#ifndef phys_to_boot_phys
338static inline unsigned long phys_to_boot_phys(phys_addr_t phys)
339{
340 return phys;
341}
342#endif
343
344#ifndef boot_phys_to_phys
345static inline phys_addr_t boot_phys_to_phys(unsigned long boot_phys)
346{
347 return boot_phys;
348}
349#endif
350
351static inline unsigned long virt_to_boot_phys(void *addr)
352{
353 return phys_to_boot_phys(__pa((unsigned long)addr));
354}
355
356static inline void *boot_phys_to_virt(unsigned long entry)
357{
358 return phys_to_virt(boot_phys_to_phys(entry));
359}
360
Tom Lendackybba4ed02017-07-17 16:10:28 -0500361#ifndef arch_kexec_post_alloc_pages
362static inline int arch_kexec_post_alloc_pages(void *vaddr, unsigned int pages, gfp_t gfp) { return 0; }
363#endif
364
365#ifndef arch_kexec_pre_free_pages
366static inline void arch_kexec_pre_free_pages(void *vaddr, unsigned int pages) { }
367#endif
368
Dave Young2965faa2015-09-09 15:38:55 -0700369#else /* !CONFIG_KEXEC_CORE */
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700370struct pt_regs;
371struct task_struct;
Hidehiro Kawai7bbee5c2015-12-14 11:19:11 +0100372static inline void __crash_kexec(struct pt_regs *regs) { }
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700373static inline void crash_kexec(struct pt_regs *regs) { }
374static inline int kexec_should_crash(struct task_struct *p) { return 0; }
Petr Tesarik21db79e2016-08-02 14:06:16 -0700375static inline int kexec_crash_loaded(void) { return 0; }
Vitaly Kuznetsov2b94ed22015-08-01 16:08:06 -0700376#define kexec_in_progress false
Dave Young2965faa2015-09-09 15:38:55 -0700377#endif /* CONFIG_KEXEC_CORE */
Geoff Levandcf2df632015-02-17 13:45:56 -0800378
379#endif /* !defined(__ASSEBMLY__) */
380
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700381#endif /* LINUX_KEXEC_H */