Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef LINUX_CRASH_CORE_H
3#define LINUX_CRASH_CORE_H
4
5#include <linux/linkage.h>
6#include <linux/elfcore.h>
7#include <linux/elf.h>
8
9struct kimage;
10
11struct crash_mem {
12 unsigned int max_nr_ranges;
13 unsigned int nr_ranges;
14 struct range ranges[] __counted_by(max_nr_ranges);
15};
16
17#ifdef CONFIG_CRASH_DUMP
18
19int crash_shrink_memory(unsigned long new_size);
20ssize_t crash_get_memory_size(void);
21
22#ifndef arch_kexec_protect_crashkres
23/*
24 * Protection mechanism for crashkernel reserved memory after
25 * the kdump kernel is loaded.
26 *
27 * Provide an empty default implementation here -- architecture
28 * code may override this
29 */
30static inline void arch_kexec_protect_crashkres(void) { }
31#endif
32
33#ifndef arch_kexec_unprotect_crashkres
34static inline void arch_kexec_unprotect_crashkres(void) { }
35#endif
36
37#ifndef arch_crash_handle_hotplug_event
38static inline void arch_crash_handle_hotplug_event(struct kimage *image, void *arg) { }
39#endif
40
41int crash_check_hotplug_support(void);
42
43#ifndef arch_crash_hotplug_support
44static inline int arch_crash_hotplug_support(struct kimage *image, unsigned long kexec_flags)
45{
46 return 0;
47}
48#endif
49
50#ifndef crash_get_elfcorehdr_size
51static inline unsigned int crash_get_elfcorehdr_size(void) { return 0; }
52#endif
53
54/* Alignment required for elf header segment */
55#define ELF_CORE_HEADER_ALIGN 4096
56
57extern int crash_exclude_mem_range(struct crash_mem *mem,
58 unsigned long long mstart,
59 unsigned long long mend);
60extern int crash_prepare_elf64_headers(struct crash_mem *mem, int need_kernel_map,
61 void **addr, unsigned long *sz);
62
63struct kimage;
64struct kexec_segment;
65
66#define KEXEC_CRASH_HP_NONE 0
67#define KEXEC_CRASH_HP_ADD_CPU 1
68#define KEXEC_CRASH_HP_REMOVE_CPU 2
69#define KEXEC_CRASH_HP_ADD_MEMORY 3
70#define KEXEC_CRASH_HP_REMOVE_MEMORY 4
71#define KEXEC_CRASH_HP_INVALID_CPU -1U
72
73extern void __crash_kexec(struct pt_regs *regs);
74extern void crash_kexec(struct pt_regs *regs);
75int kexec_should_crash(struct task_struct *p);
76int kexec_crash_loaded(void);
77void crash_save_cpu(struct pt_regs *regs, int cpu);
78extern int kimage_crash_copy_vmcoreinfo(struct kimage *image);
79
80#else /* !CONFIG_CRASH_DUMP*/
81struct pt_regs;
82struct task_struct;
83struct kimage;
84static inline void __crash_kexec(struct pt_regs *regs) { }
85static inline void crash_kexec(struct pt_regs *regs) { }
86static inline int kexec_should_crash(struct task_struct *p) { return 0; }
87static inline int kexec_crash_loaded(void) { return 0; }
88static inline void crash_save_cpu(struct pt_regs *regs, int cpu) {};
89static inline int kimage_crash_copy_vmcoreinfo(struct kimage *image) { return 0; };
90#endif /* CONFIG_CRASH_DUMP*/
91
92#ifdef CONFIG_CRASH_DM_CRYPT
93int crash_load_dm_crypt_keys(struct kimage *image);
94ssize_t dm_crypt_keys_read(char *buf, size_t count, u64 *ppos);
95#else
96static inline int crash_load_dm_crypt_keys(struct kimage *image) {return 0; }
97#endif
98
99#endif /* LINUX_CRASH_CORE_H */