blob: 4664fc1871de68606995e4c998d710bf278e572e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Vivek Goyal60e64d42005-06-25 14:58:19 -07002#ifndef LINUX_CRASH_DUMP_H
3#define LINUX_CRASH_DUMP_H
4
Vivek Goyal60e64d42005-06-25 14:58:19 -07005#include <linux/kexec.h>
Vivek Goyal60e64d42005-06-25 14:58:19 -07006#include <linux/proc_fs.h>
Fabio Estevam1f536b92012-01-12 17:20:20 -08007#include <linux/elf.h>
Rahul Lakkireddy27242732018-05-02 15:17:17 +05308#include <uapi/linux/vmcore.h>
Vivek Goyal60e64d42005-06-25 14:58:19 -07009
Qais Yousef5a610fc2014-01-14 17:56:41 -080010#include <asm/pgtable.h> /* for pgprot_t */
11
Yaowei Bai2650cb02018-02-06 15:41:38 -080012#ifdef CONFIG_CRASH_DUMP
Vivek Goyal666bfdd2005-06-25 14:58:21 -070013#define ELFCORE_ADDR_MAX (-1ULL)
Simon Horman85a0ee32008-10-18 20:28:29 -070014#define ELFCORE_ADDR_ERR (-2ULL)
Ingo Molnar36ac2612008-07-26 11:22:33 +020015
Vivek Goyal2030eae2005-06-25 14:58:20 -070016extern unsigned long long elfcorehdr_addr;
Michael Holzheud3bf37952011-10-30 15:16:37 +010017extern unsigned long long elfcorehdr_size;
Ingo Molnar36ac2612008-07-26 11:22:33 +020018
Bjorn Helgaas5ab03ac2014-10-13 18:59:41 -060019extern int elfcorehdr_alloc(unsigned long long *addr, unsigned long long *size);
20extern void elfcorehdr_free(unsigned long long addr);
21extern ssize_t elfcorehdr_read(char *buf, size_t count, u64 *ppos);
22extern ssize_t elfcorehdr_read_notes(char *buf, size_t count, u64 *ppos);
23extern int remap_oldmem_pfn_range(struct vm_area_struct *vma,
24 unsigned long from, unsigned long pfn,
25 unsigned long size, pgprot_t prot);
Michael Holzheube8a8d02013-09-11 14:24:49 -070026
Vivek Goyal60e64d42005-06-25 14:58:19 -070027extern ssize_t copy_oldmem_page(unsigned long, char *, size_t,
28 unsigned long, int);
Lianbo Jiang992b6492018-09-30 16:37:41 +080029extern ssize_t copy_oldmem_page_encrypted(unsigned long pfn, char *buf,
30 size_t csize, unsigned long offset,
31 int userbuf);
32
Rashika Kheria82e07032014-04-07 15:38:50 -070033void vmcore_cleanup(void);
Vivek Goyal666bfdd2005-06-25 14:58:21 -070034
Ian Campbell79e03012007-05-02 19:27:09 +020035/* Architecture code defines this if there are other possible ELF
36 * machine types, e.g. on bi-arch capable hardware. */
37#ifndef vmcore_elf_check_arch_cross
38#define vmcore_elf_check_arch_cross(x) 0
39#endif
40
Mika Westerberg9833c392010-11-19 09:29:24 +010041/*
42 * Architecture code can redefine this if there are any special checks
Daniel Wagnere55d5312016-02-11 13:36:54 +010043 * needed for 32-bit ELF or 64-bit ELF vmcores. In case of 32-bit
44 * only architecture, vmcore_elf64_check_arch can be set to zero.
Mika Westerberg9833c392010-11-19 09:29:24 +010045 */
Daniel Wagnere55d5312016-02-11 13:36:54 +010046#ifndef vmcore_elf32_check_arch
47#define vmcore_elf32_check_arch(x) elf_check_arch(x)
48#endif
49
Mika Westerberg9833c392010-11-19 09:29:24 +010050#ifndef vmcore_elf64_check_arch
51#define vmcore_elf64_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x))
52#endif
Ian Campbell79e03012007-05-02 19:27:09 +020053
Vivek Goyal57cac4d2008-10-18 20:28:25 -070054/*
55 * is_kdump_kernel() checks whether this kernel is booting after a panic of
56 * previous kernel or not. This is determined by checking if previous kernel
57 * has passed the elf core header address on command line.
58 *
59 * This is not just a test if CONFIG_CRASH_DUMP is enabled or not. It will
Yaowei Bai2650cb02018-02-06 15:41:38 -080060 * return true if CONFIG_CRASH_DUMP=y and if kernel is booting after a panic
61 * of previous kernel.
Vivek Goyal57cac4d2008-10-18 20:28:25 -070062 */
63
Yaowei Bai2650cb02018-02-06 15:41:38 -080064static inline bool is_kdump_kernel(void)
Chandru95b68de2008-07-25 01:47:55 -070065{
Yaowei Bai2650cb02018-02-06 15:41:38 -080066 return elfcorehdr_addr != ELFCORE_ADDR_MAX;
Chandru95b68de2008-07-25 01:47:55 -070067}
Simon Horman85a0ee32008-10-18 20:28:29 -070068
69/* is_vmcore_usable() checks if the kernel is booting after a panic and
70 * the vmcore region is usable.
71 *
72 * This makes use of the fact that due to alignment -2ULL is not
73 * a valid pointer, much in the vain of IS_ERR(), except
74 * dealing directly with an unsigned long long rather than a pointer.
75 */
76
77static inline int is_vmcore_usable(void)
78{
79 return is_kdump_kernel() && elfcorehdr_addr != ELFCORE_ADDR_ERR ? 1 : 0;
80}
81
82/* vmcore_unusable() marks the vmcore as unusable,
83 * without disturbing the logic of is_kdump_kernel()
84 */
85
86static inline void vmcore_unusable(void)
87{
88 if (is_kdump_kernel())
89 elfcorehdr_addr = ELFCORE_ADDR_ERR;
90}
Olaf Hering997c1362011-05-26 16:25:54 -070091
92#define HAVE_OLDMEM_PFN_IS_RAM 1
93extern int register_oldmem_pfn_is_ram(int (*fn)(unsigned long pfn));
94extern void unregister_oldmem_pfn_is_ram(void);
95
Chandru95b68de2008-07-25 01:47:55 -070096#else /* !CONFIG_CRASH_DUMP */
Yaowei Bai2650cb02018-02-06 15:41:38 -080097static inline bool is_kdump_kernel(void) { return 0; }
Vivek Goyal60e64d42005-06-25 14:58:19 -070098#endif /* CONFIG_CRASH_DUMP */
Chandru95b68de2008-07-25 01:47:55 -070099
100extern unsigned long saved_max_pfn;
Rahul Lakkireddy27242732018-05-02 15:17:17 +0530101
102/* Device Dump information to be filled by drivers */
103struct vmcoredd_data {
104 char dump_name[VMCOREDD_MAX_NAME_BYTES]; /* Unique name of the dump */
105 unsigned int size; /* Size of the dump */
106 /* Driver's registered callback to be invoked to collect dump */
107 int (*vmcoredd_callback)(struct vmcoredd_data *data, void *buf);
108};
109
110#ifdef CONFIG_PROC_VMCORE_DEVICE_DUMP
111int vmcore_add_device_dump(struct vmcoredd_data *data);
112#else
113static inline int vmcore_add_device_dump(struct vmcoredd_data *data)
114{
115 return -EOPNOTSUPP;
116}
117#endif /* CONFIG_PROC_VMCORE_DEVICE_DUMP */
Thiago Jung Bauermannae7eb822019-08-06 01:49:18 -0300118
119#ifdef CONFIG_PROC_VMCORE
120ssize_t read_from_oldmem(char *buf, size_t count,
121 u64 *ppos, int userbuf,
122 bool encrypted);
123#else
124static inline ssize_t read_from_oldmem(char *buf, size_t count,
125 u64 *ppos, int userbuf,
126 bool encrypted)
127{
128 return -EOPNOTSUPP;
129}
130#endif /* CONFIG_PROC_VMCORE */
131
Vivek Goyal60e64d42005-06-25 14:58:19 -0700132#endif /* LINUX_CRASHDUMP_H */