blob: a992e6ca2f1c0dd36dad530606f16290bce48fd9 [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
5#ifdef CONFIG_CRASH_DUMP
6#include <linux/kexec.h>
Vivek Goyal60e64d42005-06-25 14:58:19 -07007#include <linux/proc_fs.h>
Fabio Estevam1f536b92012-01-12 17:20:20 -08008#include <linux/elf.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
Vivek Goyal666bfdd2005-06-25 14:58:21 -070012#define ELFCORE_ADDR_MAX (-1ULL)
Simon Horman85a0ee32008-10-18 20:28:29 -070013#define ELFCORE_ADDR_ERR (-2ULL)
Ingo Molnar36ac2612008-07-26 11:22:33 +020014
Vivek Goyal2030eae2005-06-25 14:58:20 -070015extern unsigned long long elfcorehdr_addr;
Michael Holzheud3bf37952011-10-30 15:16:37 +010016extern unsigned long long elfcorehdr_size;
Ingo Molnar36ac2612008-07-26 11:22:33 +020017
Bjorn Helgaas5ab03ac2014-10-13 18:59:41 -060018extern int elfcorehdr_alloc(unsigned long long *addr, unsigned long long *size);
19extern void elfcorehdr_free(unsigned long long addr);
20extern ssize_t elfcorehdr_read(char *buf, size_t count, u64 *ppos);
21extern ssize_t elfcorehdr_read_notes(char *buf, size_t count, u64 *ppos);
22extern int remap_oldmem_pfn_range(struct vm_area_struct *vma,
23 unsigned long from, unsigned long pfn,
24 unsigned long size, pgprot_t prot);
Michael Holzheube8a8d02013-09-11 14:24:49 -070025
Vivek Goyal60e64d42005-06-25 14:58:19 -070026extern ssize_t copy_oldmem_page(unsigned long, char *, size_t,
27 unsigned long, int);
Rashika Kheria82e07032014-04-07 15:38:50 -070028void vmcore_cleanup(void);
Vivek Goyal666bfdd2005-06-25 14:58:21 -070029
Ian Campbell79e03012007-05-02 19:27:09 +020030/* Architecture code defines this if there are other possible ELF
31 * machine types, e.g. on bi-arch capable hardware. */
32#ifndef vmcore_elf_check_arch_cross
33#define vmcore_elf_check_arch_cross(x) 0
34#endif
35
Mika Westerberg9833c392010-11-19 09:29:24 +010036/*
37 * Architecture code can redefine this if there are any special checks
Daniel Wagnere55d5312016-02-11 13:36:54 +010038 * needed for 32-bit ELF or 64-bit ELF vmcores. In case of 32-bit
39 * only architecture, vmcore_elf64_check_arch can be set to zero.
Mika Westerberg9833c392010-11-19 09:29:24 +010040 */
Daniel Wagnere55d5312016-02-11 13:36:54 +010041#ifndef vmcore_elf32_check_arch
42#define vmcore_elf32_check_arch(x) elf_check_arch(x)
43#endif
44
Mika Westerberg9833c392010-11-19 09:29:24 +010045#ifndef vmcore_elf64_check_arch
46#define vmcore_elf64_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x))
47#endif
Ian Campbell79e03012007-05-02 19:27:09 +020048
Vivek Goyal57cac4d2008-10-18 20:28:25 -070049/*
50 * is_kdump_kernel() checks whether this kernel is booting after a panic of
51 * previous kernel or not. This is determined by checking if previous kernel
52 * has passed the elf core header address on command line.
53 *
54 * This is not just a test if CONFIG_CRASH_DUMP is enabled or not. It will
55 * return 1 if CONFIG_CRASH_DUMP=y and if kernel is booting after a panic of
56 * previous kernel.
57 */
58
Chandru95b68de2008-07-25 01:47:55 -070059static inline int is_kdump_kernel(void)
60{
61 return (elfcorehdr_addr != ELFCORE_ADDR_MAX) ? 1 : 0;
62}
Simon Horman85a0ee32008-10-18 20:28:29 -070063
64/* is_vmcore_usable() checks if the kernel is booting after a panic and
65 * the vmcore region is usable.
66 *
67 * This makes use of the fact that due to alignment -2ULL is not
68 * a valid pointer, much in the vain of IS_ERR(), except
69 * dealing directly with an unsigned long long rather than a pointer.
70 */
71
72static inline int is_vmcore_usable(void)
73{
74 return is_kdump_kernel() && elfcorehdr_addr != ELFCORE_ADDR_ERR ? 1 : 0;
75}
76
77/* vmcore_unusable() marks the vmcore as unusable,
78 * without disturbing the logic of is_kdump_kernel()
79 */
80
81static inline void vmcore_unusable(void)
82{
83 if (is_kdump_kernel())
84 elfcorehdr_addr = ELFCORE_ADDR_ERR;
85}
Olaf Hering997c1362011-05-26 16:25:54 -070086
87#define HAVE_OLDMEM_PFN_IS_RAM 1
88extern int register_oldmem_pfn_is_ram(int (*fn)(unsigned long pfn));
89extern void unregister_oldmem_pfn_is_ram(void);
90
Chandru95b68de2008-07-25 01:47:55 -070091#else /* !CONFIG_CRASH_DUMP */
92static inline int is_kdump_kernel(void) { return 0; }
Vivek Goyal60e64d42005-06-25 14:58:19 -070093#endif /* CONFIG_CRASH_DUMP */
Chandru95b68de2008-07-25 01:47:55 -070094
95extern unsigned long saved_max_pfn;
Vivek Goyal60e64d42005-06-25 14:58:19 -070096#endif /* LINUX_CRASHDUMP_H */