mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
crash: split vmcoreinfo exporting code out from crash_core.c
Now move the relevant codes into separate files: kernel/crash_reserve.c, include/linux/crash_reserve.h. And add config item CRASH_RESERVE to control its enabling. And also update the old ifdeffery of CONFIG_CRASH_CORE, including of <linux/crash_core.h> and config item dependency on CRASH_CORE accordingly. And also do renaming as follows: - arch/xxx/kernel/{crash_core.c => vmcore_info.c} because they are only related to vmcoreinfo exporting on x86, arm64, riscv. And also Remove config item CRASH_CORE, and rely on CONFIG_KEXEC_CORE to decide if build in crash_core.c. [yang.lee@linux.alibaba.com: remove duplicated include in vmcore_info.c] Link: https://lkml.kernel.org/r/20240126005744.16561-1-yang.lee@linux.alibaba.com Link: https://lkml.kernel.org/r/20240124051254.67105-3-bhe@redhat.com Signed-off-by: Baoquan He <bhe@redhat.com> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com> Acked-by: Hari Bathini <hbathini@linux.ibm.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Eric W. Biederman <ebiederm@xmission.com> Cc: Pingfan Liu <piliu@redhat.com> Cc: Klara Modin <klarasmodin@gmail.com> Cc: Michael Kelley <mhklinux@outlook.com> Cc: Nathan Chancellor <nathan@kernel.org> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Yang Li <yang.lee@linux.alibaba.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
85fcde402d
commit
443cbaf9e2
@ -66,7 +66,7 @@ obj-$(CONFIG_KEXEC_FILE) += machine_kexec_file.o kexec_image.o
|
|||||||
obj-$(CONFIG_ARM64_RELOC_TEST) += arm64-reloc-test.o
|
obj-$(CONFIG_ARM64_RELOC_TEST) += arm64-reloc-test.o
|
||||||
arm64-reloc-test-y := reloc_test_core.o reloc_test_syms.o
|
arm64-reloc-test-y := reloc_test_core.o reloc_test_syms.o
|
||||||
obj-$(CONFIG_CRASH_DUMP) += crash_dump.o
|
obj-$(CONFIG_CRASH_DUMP) += crash_dump.o
|
||||||
obj-$(CONFIG_CRASH_CORE) += crash_core.o
|
obj-$(CONFIG_VMCORE_INFO) += vmcore_info.o
|
||||||
obj-$(CONFIG_ARM_SDE_INTERFACE) += sdei.o
|
obj-$(CONFIG_ARM_SDE_INTERFACE) += sdei.o
|
||||||
obj-$(CONFIG_ARM64_PTR_AUTH) += pointer_auth.o
|
obj-$(CONFIG_ARM64_PTR_AUTH) += pointer_auth.o
|
||||||
obj-$(CONFIG_ARM64_MTE) += mte.o
|
obj-$(CONFIG_ARM64_MTE) += mte.o
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* Copyright (C) Huawei Futurewei Technologies.
|
* Copyright (C) Huawei Futurewei Technologies.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/crash_core.h>
|
#include <linux/vmcore_info.h>
|
||||||
#include <asm/cpufeature.h>
|
#include <asm/cpufeature.h>
|
||||||
#include <asm/memory.h>
|
#include <asm/memory.h>
|
||||||
#include <asm/pgtable-hwdef.h>
|
#include <asm/pgtable-hwdef.h>
|
@ -690,7 +690,7 @@ config ARCH_SELECTS_CRASH_DUMP
|
|||||||
config FA_DUMP
|
config FA_DUMP
|
||||||
bool "Firmware-assisted dump"
|
bool "Firmware-assisted dump"
|
||||||
depends on PPC64 && (PPC_RTAS || PPC_POWERNV)
|
depends on PPC64 && (PPC_RTAS || PPC_POWERNV)
|
||||||
select CRASH_CORE
|
select VMCORE_INFO
|
||||||
select CRASH_RESERVE
|
select CRASH_RESERVE
|
||||||
select CRASH_DUMP
|
select CRASH_DUMP
|
||||||
help
|
help
|
||||||
|
@ -109,7 +109,7 @@ int ppc_do_canonicalize_irqs;
|
|||||||
EXPORT_SYMBOL(ppc_do_canonicalize_irqs);
|
EXPORT_SYMBOL(ppc_do_canonicalize_irqs);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_CRASH_CORE
|
#ifdef CONFIG_VMCORE_INFO
|
||||||
/* This keeps a track of which one is the crashing cpu. */
|
/* This keeps a track of which one is the crashing cpu. */
|
||||||
int crashing_cpu = -1;
|
int crashing_cpu = -1;
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#include <linux/kobject.h>
|
#include <linux/kobject.h>
|
||||||
#include <linux/sysfs.h>
|
#include <linux/sysfs.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/crash_core.h>
|
#include <linux/vmcore_info.h>
|
||||||
#include <linux/of.h>
|
#include <linux/of.h>
|
||||||
|
|
||||||
#include <asm/page.h>
|
#include <asm/page.h>
|
||||||
|
@ -92,7 +92,7 @@ obj-$(CONFIG_KGDB) += kgdb.o
|
|||||||
obj-$(CONFIG_KEXEC_CORE) += kexec_relocate.o crash_save_regs.o machine_kexec.o
|
obj-$(CONFIG_KEXEC_CORE) += kexec_relocate.o crash_save_regs.o machine_kexec.o
|
||||||
obj-$(CONFIG_KEXEC_FILE) += elf_kexec.o machine_kexec_file.o
|
obj-$(CONFIG_KEXEC_FILE) += elf_kexec.o machine_kexec_file.o
|
||||||
obj-$(CONFIG_CRASH_DUMP) += crash_dump.o
|
obj-$(CONFIG_CRASH_DUMP) += crash_dump.o
|
||||||
obj-$(CONFIG_CRASH_CORE) += crash_core.o
|
obj-$(CONFIG_VMCORE_INFO) += vmcore_info.o
|
||||||
|
|
||||||
obj-$(CONFIG_JUMP_LABEL) += jump_label.o
|
obj-$(CONFIG_JUMP_LABEL) += jump_label.o
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-only
|
// SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
#include <linux/crash_core.h>
|
#include <linux/vmcore_info.h>
|
||||||
#include <linux/pagemap.h>
|
#include <linux/pagemap.h>
|
||||||
|
|
||||||
void arch_crash_save_vmcoreinfo(void)
|
void arch_crash_save_vmcoreinfo(void)
|
@ -98,7 +98,7 @@ obj-$(CONFIG_FTRACE_SYSCALLS) += ftrace.o
|
|||||||
obj-$(CONFIG_X86_TSC) += trace_clock.o
|
obj-$(CONFIG_X86_TSC) += trace_clock.o
|
||||||
obj-$(CONFIG_TRACING) += trace.o
|
obj-$(CONFIG_TRACING) += trace.o
|
||||||
obj-$(CONFIG_RETHOOK) += rethook.o
|
obj-$(CONFIG_RETHOOK) += rethook.o
|
||||||
obj-$(CONFIG_CRASH_CORE) += crash_core_$(BITS).o
|
obj-$(CONFIG_VMCORE_INFO) += vmcore_info_$(BITS).o
|
||||||
obj-$(CONFIG_KEXEC_CORE) += machine_kexec_$(BITS).o
|
obj-$(CONFIG_KEXEC_CORE) += machine_kexec_$(BITS).o
|
||||||
obj-$(CONFIG_KEXEC_CORE) += relocate_kernel_$(BITS).o crash.o
|
obj-$(CONFIG_KEXEC_CORE) += relocate_kernel_$(BITS).o crash.o
|
||||||
obj-$(CONFIG_KEXEC_FILE) += kexec-bzimage64.o
|
obj-$(CONFIG_KEXEC_FILE) += kexec-bzimage64.o
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-only
|
// SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
#include <linux/crash_core.h>
|
#include <linux/vmcore_info.h>
|
||||||
#include <linux/pgtable.h>
|
#include <linux/pgtable.h>
|
||||||
|
|
||||||
#include <asm/setup.h>
|
#include <asm/setup.h>
|
@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-only
|
// SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
#include <linux/crash_core.h>
|
#include <linux/vmcore_info.h>
|
||||||
#include <linux/pgtable.h>
|
#include <linux/pgtable.h>
|
||||||
|
|
||||||
#include <asm/setup.h>
|
#include <asm/setup.h>
|
@ -37,7 +37,7 @@
|
|||||||
#include <uapi/linux/qemu_fw_cfg.h>
|
#include <uapi/linux/qemu_fw_cfg.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/crash_dump.h>
|
#include <linux/crash_dump.h>
|
||||||
#include <linux/crash_core.h>
|
#include <linux/vmcore_info.h>
|
||||||
|
|
||||||
MODULE_AUTHOR("Gabriel L. Somlo <somlo@cmu.edu>");
|
MODULE_AUTHOR("Gabriel L. Somlo <somlo@cmu.edu>");
|
||||||
MODULE_DESCRIPTION("QEMU fw_cfg sysfs support");
|
MODULE_DESCRIPTION("QEMU fw_cfg sysfs support");
|
||||||
@ -67,7 +67,7 @@ static void fw_cfg_sel_endianness(u16 key)
|
|||||||
iowrite16(key, fw_cfg_reg_ctrl);
|
iowrite16(key, fw_cfg_reg_ctrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_CRASH_CORE
|
#ifdef CONFIG_VMCORE_INFO
|
||||||
static inline bool fw_cfg_dma_enabled(void)
|
static inline bool fw_cfg_dma_enabled(void)
|
||||||
{
|
{
|
||||||
return (fw_cfg_rev & FW_CFG_VERSION_DMA) && fw_cfg_reg_dma;
|
return (fw_cfg_rev & FW_CFG_VERSION_DMA) && fw_cfg_reg_dma;
|
||||||
@ -156,7 +156,7 @@ static ssize_t fw_cfg_read_blob(u16 key,
|
|||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_CRASH_CORE
|
#ifdef CONFIG_VMCORE_INFO
|
||||||
/* write chunk of given fw_cfg blob (caller responsible for sanity-check) */
|
/* write chunk of given fw_cfg blob (caller responsible for sanity-check) */
|
||||||
static ssize_t fw_cfg_write_blob(u16 key,
|
static ssize_t fw_cfg_write_blob(u16 key,
|
||||||
void *buf, loff_t pos, size_t count)
|
void *buf, loff_t pos, size_t count)
|
||||||
@ -195,7 +195,7 @@ end:
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_CRASH_CORE */
|
#endif /* CONFIG_VMCORE_INFO */
|
||||||
|
|
||||||
/* clean up fw_cfg device i/o */
|
/* clean up fw_cfg device i/o */
|
||||||
static void fw_cfg_io_cleanup(void)
|
static void fw_cfg_io_cleanup(void)
|
||||||
@ -319,7 +319,7 @@ struct fw_cfg_sysfs_entry {
|
|||||||
struct list_head list;
|
struct list_head list;
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_CRASH_CORE
|
#ifdef CONFIG_VMCORE_INFO
|
||||||
static ssize_t fw_cfg_write_vmcoreinfo(const struct fw_cfg_file *f)
|
static ssize_t fw_cfg_write_vmcoreinfo(const struct fw_cfg_file *f)
|
||||||
{
|
{
|
||||||
static struct fw_cfg_vmcoreinfo *data;
|
static struct fw_cfg_vmcoreinfo *data;
|
||||||
@ -343,7 +343,7 @@ static ssize_t fw_cfg_write_vmcoreinfo(const struct fw_cfg_file *f)
|
|||||||
kfree(data);
|
kfree(data);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_CRASH_CORE */
|
#endif /* CONFIG_VMCORE_INFO */
|
||||||
|
|
||||||
/* get fw_cfg_sysfs_entry from kobject member */
|
/* get fw_cfg_sysfs_entry from kobject member */
|
||||||
static inline struct fw_cfg_sysfs_entry *to_entry(struct kobject *kobj)
|
static inline struct fw_cfg_sysfs_entry *to_entry(struct kobject *kobj)
|
||||||
@ -583,7 +583,7 @@ static int fw_cfg_register_file(const struct fw_cfg_file *f)
|
|||||||
int err;
|
int err;
|
||||||
struct fw_cfg_sysfs_entry *entry;
|
struct fw_cfg_sysfs_entry *entry;
|
||||||
|
|
||||||
#ifdef CONFIG_CRASH_CORE
|
#ifdef CONFIG_VMCORE_INFO
|
||||||
if (fw_cfg_dma_enabled() &&
|
if (fw_cfg_dma_enabled() &&
|
||||||
strcmp(f->name, FW_CFG_VMCOREINFO_FILENAME) == 0 &&
|
strcmp(f->name, FW_CFG_VMCOREINFO_FILENAME) == 0 &&
|
||||||
!is_kdump_kernel()) {
|
!is_kdump_kernel()) {
|
||||||
|
@ -32,7 +32,7 @@ config PROC_FS
|
|||||||
config PROC_KCORE
|
config PROC_KCORE
|
||||||
bool "/proc/kcore support" if !ARM
|
bool "/proc/kcore support" if !ARM
|
||||||
depends on PROC_FS && MMU
|
depends on PROC_FS && MMU
|
||||||
select CRASH_CORE
|
select VMCORE_INFO
|
||||||
help
|
help
|
||||||
Provides a virtual ELF core file of the live kernel. This can
|
Provides a virtual ELF core file of the live kernel. This can
|
||||||
be read with gdb and other ELF tools. No modifications can be
|
be read with gdb and other ELF tools. No modifications can be
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
* Safe accesses to vmalloc/direct-mapped discontiguous areas, Kanoj Sarcar <kanoj@sgi.com>
|
* Safe accesses to vmalloc/direct-mapped discontiguous areas, Kanoj Sarcar <kanoj@sgi.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/crash_core.h>
|
#include <linux/vmcore_info.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
#include <linux/proc_fs.h>
|
#include <linux/proc_fs.h>
|
||||||
#include <linux/kcore.h>
|
#include <linux/kcore.h>
|
||||||
|
@ -11,7 +11,7 @@ int build_id_parse(struct vm_area_struct *vma, unsigned char *build_id,
|
|||||||
__u32 *size);
|
__u32 *size);
|
||||||
int build_id_parse_buf(const void *buf, unsigned char *build_id, u32 buf_size);
|
int build_id_parse_buf(const void *buf, unsigned char *build_id, u32 buf_size);
|
||||||
|
|
||||||
#if IS_ENABLED(CONFIG_STACKTRACE_BUILD_ID) || IS_ENABLED(CONFIG_CRASH_CORE)
|
#if IS_ENABLED(CONFIG_STACKTRACE_BUILD_ID) || IS_ENABLED(CONFIG_VMCORE_INFO)
|
||||||
extern unsigned char vmlinux_build_id[BUILD_ID_SIZE_MAX];
|
extern unsigned char vmlinux_build_id[BUILD_ID_SIZE_MAX];
|
||||||
void init_vmlinux_build_id(void);
|
void init_vmlinux_build_id(void);
|
||||||
#else
|
#else
|
||||||
|
@ -6,79 +6,6 @@
|
|||||||
#include <linux/elfcore.h>
|
#include <linux/elfcore.h>
|
||||||
#include <linux/elf.h>
|
#include <linux/elf.h>
|
||||||
|
|
||||||
#define CRASH_CORE_NOTE_NAME "CORE"
|
|
||||||
#define CRASH_CORE_NOTE_HEAD_BYTES ALIGN(sizeof(struct elf_note), 4)
|
|
||||||
#define CRASH_CORE_NOTE_NAME_BYTES ALIGN(sizeof(CRASH_CORE_NOTE_NAME), 4)
|
|
||||||
#define CRASH_CORE_NOTE_DESC_BYTES ALIGN(sizeof(struct elf_prstatus), 4)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The per-cpu notes area is a list of notes terminated by a "NULL"
|
|
||||||
* note header. For kdump, the code in vmcore.c runs in the context
|
|
||||||
* of the second kernel to combine them into one note.
|
|
||||||
*/
|
|
||||||
#define CRASH_CORE_NOTE_BYTES ((CRASH_CORE_NOTE_HEAD_BYTES * 2) + \
|
|
||||||
CRASH_CORE_NOTE_NAME_BYTES + \
|
|
||||||
CRASH_CORE_NOTE_DESC_BYTES)
|
|
||||||
|
|
||||||
#define VMCOREINFO_BYTES PAGE_SIZE
|
|
||||||
#define VMCOREINFO_NOTE_NAME "VMCOREINFO"
|
|
||||||
#define VMCOREINFO_NOTE_NAME_BYTES ALIGN(sizeof(VMCOREINFO_NOTE_NAME), 4)
|
|
||||||
#define VMCOREINFO_NOTE_SIZE ((CRASH_CORE_NOTE_HEAD_BYTES * 2) + \
|
|
||||||
VMCOREINFO_NOTE_NAME_BYTES + \
|
|
||||||
VMCOREINFO_BYTES)
|
|
||||||
|
|
||||||
typedef u32 note_buf_t[CRASH_CORE_NOTE_BYTES/4];
|
|
||||||
/* Per cpu memory for storing cpu states in case of system crash. */
|
|
||||||
extern note_buf_t __percpu *crash_notes;
|
|
||||||
|
|
||||||
void crash_update_vmcoreinfo_safecopy(void *ptr);
|
|
||||||
void crash_save_vmcoreinfo(void);
|
|
||||||
void arch_crash_save_vmcoreinfo(void);
|
|
||||||
__printf(1, 2)
|
|
||||||
void vmcoreinfo_append_str(const char *fmt, ...);
|
|
||||||
phys_addr_t paddr_vmcoreinfo_note(void);
|
|
||||||
|
|
||||||
#define VMCOREINFO_OSRELEASE(value) \
|
|
||||||
vmcoreinfo_append_str("OSRELEASE=%s\n", value)
|
|
||||||
#define VMCOREINFO_BUILD_ID() \
|
|
||||||
({ \
|
|
||||||
static_assert(sizeof(vmlinux_build_id) == 20); \
|
|
||||||
vmcoreinfo_append_str("BUILD-ID=%20phN\n", vmlinux_build_id); \
|
|
||||||
})
|
|
||||||
|
|
||||||
#define VMCOREINFO_PAGESIZE(value) \
|
|
||||||
vmcoreinfo_append_str("PAGESIZE=%ld\n", value)
|
|
||||||
#define VMCOREINFO_SYMBOL(name) \
|
|
||||||
vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)&name)
|
|
||||||
#define VMCOREINFO_SYMBOL_ARRAY(name) \
|
|
||||||
vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)name)
|
|
||||||
#define VMCOREINFO_SIZE(name) \
|
|
||||||
vmcoreinfo_append_str("SIZE(%s)=%lu\n", #name, \
|
|
||||||
(unsigned long)sizeof(name))
|
|
||||||
#define VMCOREINFO_STRUCT_SIZE(name) \
|
|
||||||
vmcoreinfo_append_str("SIZE(%s)=%lu\n", #name, \
|
|
||||||
(unsigned long)sizeof(struct name))
|
|
||||||
#define VMCOREINFO_OFFSET(name, field) \
|
|
||||||
vmcoreinfo_append_str("OFFSET(%s.%s)=%lu\n", #name, #field, \
|
|
||||||
(unsigned long)offsetof(struct name, field))
|
|
||||||
#define VMCOREINFO_TYPE_OFFSET(name, field) \
|
|
||||||
vmcoreinfo_append_str("OFFSET(%s.%s)=%lu\n", #name, #field, \
|
|
||||||
(unsigned long)offsetof(name, field))
|
|
||||||
#define VMCOREINFO_LENGTH(name, value) \
|
|
||||||
vmcoreinfo_append_str("LENGTH(%s)=%lu\n", #name, (unsigned long)value)
|
|
||||||
#define VMCOREINFO_NUMBER(name) \
|
|
||||||
vmcoreinfo_append_str("NUMBER(%s)=%ld\n", #name, (long)name)
|
|
||||||
#define VMCOREINFO_CONFIG(name) \
|
|
||||||
vmcoreinfo_append_str("CONFIG_%s=y\n", #name)
|
|
||||||
|
|
||||||
extern unsigned char *vmcoreinfo_data;
|
|
||||||
extern size_t vmcoreinfo_size;
|
|
||||||
extern u32 *vmcoreinfo_note;
|
|
||||||
|
|
||||||
Elf_Word *append_elf_note(Elf_Word *buf, char *name, unsigned int type,
|
|
||||||
void *data, size_t data_len);
|
|
||||||
void final_note(Elf_Word *buf);
|
|
||||||
|
|
||||||
/* Alignment required for elf header segment */
|
/* Alignment required for elf header segment */
|
||||||
#define ELF_CORE_HEADER_ALIGN 4096
|
#define ELF_CORE_HEADER_ALIGN 4096
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
#if !defined(__ASSEMBLY__)
|
#if !defined(__ASSEMBLY__)
|
||||||
|
|
||||||
#include <linux/crash_core.h>
|
#include <linux/crash_core.h>
|
||||||
|
#include <linux/vmcore_info.h>
|
||||||
#include <linux/crash_reserve.h>
|
#include <linux/crash_reserve.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <linux/range.h>
|
#include <linux/range.h>
|
||||||
|
81
include/linux/vmcore_info.h
Normal file
81
include/linux/vmcore_info.h
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
|
#ifndef LINUX_VMCORE_INFO_H
|
||||||
|
#define LINUX_VMCORE_INFO_H
|
||||||
|
|
||||||
|
#include <linux/linkage.h>
|
||||||
|
#include <linux/elfcore.h>
|
||||||
|
#include <linux/elf.h>
|
||||||
|
|
||||||
|
#define CRASH_CORE_NOTE_NAME "CORE"
|
||||||
|
#define CRASH_CORE_NOTE_HEAD_BYTES ALIGN(sizeof(struct elf_note), 4)
|
||||||
|
#define CRASH_CORE_NOTE_NAME_BYTES ALIGN(sizeof(CRASH_CORE_NOTE_NAME), 4)
|
||||||
|
#define CRASH_CORE_NOTE_DESC_BYTES ALIGN(sizeof(struct elf_prstatus), 4)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The per-cpu notes area is a list of notes terminated by a "NULL"
|
||||||
|
* note header. For kdump, the code in vmcore.c runs in the context
|
||||||
|
* of the second kernel to combine them into one note.
|
||||||
|
*/
|
||||||
|
#define CRASH_CORE_NOTE_BYTES ((CRASH_CORE_NOTE_HEAD_BYTES * 2) + \
|
||||||
|
CRASH_CORE_NOTE_NAME_BYTES + \
|
||||||
|
CRASH_CORE_NOTE_DESC_BYTES)
|
||||||
|
|
||||||
|
#define VMCOREINFO_BYTES PAGE_SIZE
|
||||||
|
#define VMCOREINFO_NOTE_NAME "VMCOREINFO"
|
||||||
|
#define VMCOREINFO_NOTE_NAME_BYTES ALIGN(sizeof(VMCOREINFO_NOTE_NAME), 4)
|
||||||
|
#define VMCOREINFO_NOTE_SIZE ((CRASH_CORE_NOTE_HEAD_BYTES * 2) + \
|
||||||
|
VMCOREINFO_NOTE_NAME_BYTES + \
|
||||||
|
VMCOREINFO_BYTES)
|
||||||
|
|
||||||
|
typedef u32 note_buf_t[CRASH_CORE_NOTE_BYTES/4];
|
||||||
|
/* Per cpu memory for storing cpu states in case of system crash. */
|
||||||
|
extern note_buf_t __percpu *crash_notes;
|
||||||
|
|
||||||
|
void crash_update_vmcoreinfo_safecopy(void *ptr);
|
||||||
|
void crash_save_vmcoreinfo(void);
|
||||||
|
void arch_crash_save_vmcoreinfo(void);
|
||||||
|
__printf(1, 2)
|
||||||
|
void vmcoreinfo_append_str(const char *fmt, ...);
|
||||||
|
phys_addr_t paddr_vmcoreinfo_note(void);
|
||||||
|
|
||||||
|
#define VMCOREINFO_OSRELEASE(value) \
|
||||||
|
vmcoreinfo_append_str("OSRELEASE=%s\n", value)
|
||||||
|
#define VMCOREINFO_BUILD_ID() \
|
||||||
|
({ \
|
||||||
|
static_assert(sizeof(vmlinux_build_id) == 20); \
|
||||||
|
vmcoreinfo_append_str("BUILD-ID=%20phN\n", vmlinux_build_id); \
|
||||||
|
})
|
||||||
|
|
||||||
|
#define VMCOREINFO_PAGESIZE(value) \
|
||||||
|
vmcoreinfo_append_str("PAGESIZE=%ld\n", value)
|
||||||
|
#define VMCOREINFO_SYMBOL(name) \
|
||||||
|
vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)&name)
|
||||||
|
#define VMCOREINFO_SYMBOL_ARRAY(name) \
|
||||||
|
vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)name)
|
||||||
|
#define VMCOREINFO_SIZE(name) \
|
||||||
|
vmcoreinfo_append_str("SIZE(%s)=%lu\n", #name, \
|
||||||
|
(unsigned long)sizeof(name))
|
||||||
|
#define VMCOREINFO_STRUCT_SIZE(name) \
|
||||||
|
vmcoreinfo_append_str("SIZE(%s)=%lu\n", #name, \
|
||||||
|
(unsigned long)sizeof(struct name))
|
||||||
|
#define VMCOREINFO_OFFSET(name, field) \
|
||||||
|
vmcoreinfo_append_str("OFFSET(%s.%s)=%lu\n", #name, #field, \
|
||||||
|
(unsigned long)offsetof(struct name, field))
|
||||||
|
#define VMCOREINFO_TYPE_OFFSET(name, field) \
|
||||||
|
vmcoreinfo_append_str("OFFSET(%s.%s)=%lu\n", #name, #field, \
|
||||||
|
(unsigned long)offsetof(name, field))
|
||||||
|
#define VMCOREINFO_LENGTH(name, value) \
|
||||||
|
vmcoreinfo_append_str("LENGTH(%s)=%lu\n", #name, (unsigned long)value)
|
||||||
|
#define VMCOREINFO_NUMBER(name) \
|
||||||
|
vmcoreinfo_append_str("NUMBER(%s)=%ld\n", #name, (long)name)
|
||||||
|
#define VMCOREINFO_CONFIG(name) \
|
||||||
|
vmcoreinfo_append_str("CONFIG_%s=y\n", #name)
|
||||||
|
|
||||||
|
extern unsigned char *vmcoreinfo_data;
|
||||||
|
extern size_t vmcoreinfo_size;
|
||||||
|
extern u32 *vmcoreinfo_note;
|
||||||
|
|
||||||
|
Elf_Word *append_elf_note(Elf_Word *buf, char *name, unsigned int type,
|
||||||
|
void *data, size_t data_len);
|
||||||
|
void final_note(Elf_Word *buf);
|
||||||
|
#endif /* LINUX_VMCORE_INFO_H */
|
@ -5,11 +5,11 @@ menu "Kexec and crash features"
|
|||||||
config CRASH_RESERVE
|
config CRASH_RESERVE
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config CRASH_CORE
|
config VMCORE_INFO
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config KEXEC_CORE
|
config KEXEC_CORE
|
||||||
select CRASH_CORE
|
select VMCORE_INFO
|
||||||
select CRASH_RESERVE
|
select CRASH_RESERVE
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
@ -68,9 +68,9 @@ obj-$(CONFIG_MODULE_SIG_FORMAT) += module_signature.o
|
|||||||
obj-$(CONFIG_KALLSYMS) += kallsyms.o
|
obj-$(CONFIG_KALLSYMS) += kallsyms.o
|
||||||
obj-$(CONFIG_KALLSYMS_SELFTEST) += kallsyms_selftest.o
|
obj-$(CONFIG_KALLSYMS_SELFTEST) += kallsyms_selftest.o
|
||||||
obj-$(CONFIG_BSD_PROCESS_ACCT) += acct.o
|
obj-$(CONFIG_BSD_PROCESS_ACCT) += acct.o
|
||||||
obj-$(CONFIG_CRASH_CORE) += crash_core.o
|
obj-$(CONFIG_VMCORE_INFO) += vmcore_info.o
|
||||||
obj-$(CONFIG_CRASH_RESERVE) += crash_reserve.o
|
obj-$(CONFIG_CRASH_RESERVE) += crash_reserve.o
|
||||||
obj-$(CONFIG_KEXEC_CORE) += kexec_core.o
|
obj-$(CONFIG_KEXEC_CORE) += kexec_core.o crash_core.o
|
||||||
obj-$(CONFIG_KEXEC) += kexec.o
|
obj-$(CONFIG_KEXEC) += kexec.o
|
||||||
obj-$(CONFIG_KEXEC_FILE) += kexec_file.o
|
obj-$(CONFIG_KEXEC_FILE) += kexec_file.o
|
||||||
obj-$(CONFIG_KEXEC_ELF) += kexec_elf.o
|
obj-$(CONFIG_KEXEC_ELF) += kexec_elf.o
|
||||||
|
@ -26,14 +26,6 @@
|
|||||||
/* Per cpu memory for storing cpu states in case of system crash. */
|
/* Per cpu memory for storing cpu states in case of system crash. */
|
||||||
note_buf_t __percpu *crash_notes;
|
note_buf_t __percpu *crash_notes;
|
||||||
|
|
||||||
/* vmcoreinfo stuff */
|
|
||||||
unsigned char *vmcoreinfo_data;
|
|
||||||
size_t vmcoreinfo_size;
|
|
||||||
u32 *vmcoreinfo_note;
|
|
||||||
|
|
||||||
/* trusted vmcoreinfo, e.g. we can make a copy in the crash memory */
|
|
||||||
static unsigned char *vmcoreinfo_data_safecopy;
|
|
||||||
|
|
||||||
int crash_prepare_elf64_headers(struct crash_mem *mem, int need_kernel_map,
|
int crash_prepare_elf64_headers(struct crash_mem *mem, int need_kernel_map,
|
||||||
void **addr, unsigned long *sz)
|
void **addr, unsigned long *sz)
|
||||||
{
|
{
|
||||||
@ -195,204 +187,6 @@ int crash_exclude_mem_range(struct crash_mem *mem,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
Elf_Word *append_elf_note(Elf_Word *buf, char *name, unsigned int type,
|
|
||||||
void *data, size_t data_len)
|
|
||||||
{
|
|
||||||
struct elf_note *note = (struct elf_note *)buf;
|
|
||||||
|
|
||||||
note->n_namesz = strlen(name) + 1;
|
|
||||||
note->n_descsz = data_len;
|
|
||||||
note->n_type = type;
|
|
||||||
buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf_Word));
|
|
||||||
memcpy(buf, name, note->n_namesz);
|
|
||||||
buf += DIV_ROUND_UP(note->n_namesz, sizeof(Elf_Word));
|
|
||||||
memcpy(buf, data, data_len);
|
|
||||||
buf += DIV_ROUND_UP(data_len, sizeof(Elf_Word));
|
|
||||||
|
|
||||||
return buf;
|
|
||||||
}
|
|
||||||
|
|
||||||
void final_note(Elf_Word *buf)
|
|
||||||
{
|
|
||||||
memset(buf, 0, sizeof(struct elf_note));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void update_vmcoreinfo_note(void)
|
|
||||||
{
|
|
||||||
u32 *buf = vmcoreinfo_note;
|
|
||||||
|
|
||||||
if (!vmcoreinfo_size)
|
|
||||||
return;
|
|
||||||
buf = append_elf_note(buf, VMCOREINFO_NOTE_NAME, 0, vmcoreinfo_data,
|
|
||||||
vmcoreinfo_size);
|
|
||||||
final_note(buf);
|
|
||||||
}
|
|
||||||
|
|
||||||
void crash_update_vmcoreinfo_safecopy(void *ptr)
|
|
||||||
{
|
|
||||||
if (ptr)
|
|
||||||
memcpy(ptr, vmcoreinfo_data, vmcoreinfo_size);
|
|
||||||
|
|
||||||
vmcoreinfo_data_safecopy = ptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
void crash_save_vmcoreinfo(void)
|
|
||||||
{
|
|
||||||
if (!vmcoreinfo_note)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Use the safe copy to generate vmcoreinfo note if have */
|
|
||||||
if (vmcoreinfo_data_safecopy)
|
|
||||||
vmcoreinfo_data = vmcoreinfo_data_safecopy;
|
|
||||||
|
|
||||||
vmcoreinfo_append_str("CRASHTIME=%lld\n", ktime_get_real_seconds());
|
|
||||||
update_vmcoreinfo_note();
|
|
||||||
}
|
|
||||||
|
|
||||||
void vmcoreinfo_append_str(const char *fmt, ...)
|
|
||||||
{
|
|
||||||
va_list args;
|
|
||||||
char buf[0x50];
|
|
||||||
size_t r;
|
|
||||||
|
|
||||||
va_start(args, fmt);
|
|
||||||
r = vscnprintf(buf, sizeof(buf), fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
|
|
||||||
r = min(r, (size_t)VMCOREINFO_BYTES - vmcoreinfo_size);
|
|
||||||
|
|
||||||
memcpy(&vmcoreinfo_data[vmcoreinfo_size], buf, r);
|
|
||||||
|
|
||||||
vmcoreinfo_size += r;
|
|
||||||
|
|
||||||
WARN_ONCE(vmcoreinfo_size == VMCOREINFO_BYTES,
|
|
||||||
"vmcoreinfo data exceeds allocated size, truncating");
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* provide an empty default implementation here -- architecture
|
|
||||||
* code may override this
|
|
||||||
*/
|
|
||||||
void __weak arch_crash_save_vmcoreinfo(void)
|
|
||||||
{}
|
|
||||||
|
|
||||||
phys_addr_t __weak paddr_vmcoreinfo_note(void)
|
|
||||||
{
|
|
||||||
return __pa(vmcoreinfo_note);
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(paddr_vmcoreinfo_note);
|
|
||||||
|
|
||||||
static int __init crash_save_vmcoreinfo_init(void)
|
|
||||||
{
|
|
||||||
vmcoreinfo_data = (unsigned char *)get_zeroed_page(GFP_KERNEL);
|
|
||||||
if (!vmcoreinfo_data) {
|
|
||||||
pr_warn("Memory allocation for vmcoreinfo_data failed\n");
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
|
|
||||||
vmcoreinfo_note = alloc_pages_exact(VMCOREINFO_NOTE_SIZE,
|
|
||||||
GFP_KERNEL | __GFP_ZERO);
|
|
||||||
if (!vmcoreinfo_note) {
|
|
||||||
free_page((unsigned long)vmcoreinfo_data);
|
|
||||||
vmcoreinfo_data = NULL;
|
|
||||||
pr_warn("Memory allocation for vmcoreinfo_note failed\n");
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
|
|
||||||
VMCOREINFO_OSRELEASE(init_uts_ns.name.release);
|
|
||||||
VMCOREINFO_BUILD_ID();
|
|
||||||
VMCOREINFO_PAGESIZE(PAGE_SIZE);
|
|
||||||
|
|
||||||
VMCOREINFO_SYMBOL(init_uts_ns);
|
|
||||||
VMCOREINFO_OFFSET(uts_namespace, name);
|
|
||||||
VMCOREINFO_SYMBOL(node_online_map);
|
|
||||||
#ifdef CONFIG_MMU
|
|
||||||
VMCOREINFO_SYMBOL_ARRAY(swapper_pg_dir);
|
|
||||||
#endif
|
|
||||||
VMCOREINFO_SYMBOL(_stext);
|
|
||||||
vmcoreinfo_append_str("NUMBER(VMALLOC_START)=0x%lx\n", (unsigned long) VMALLOC_START);
|
|
||||||
|
|
||||||
#ifndef CONFIG_NUMA
|
|
||||||
VMCOREINFO_SYMBOL(mem_map);
|
|
||||||
VMCOREINFO_SYMBOL(contig_page_data);
|
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SPARSEMEM
|
|
||||||
VMCOREINFO_SYMBOL_ARRAY(mem_section);
|
|
||||||
VMCOREINFO_LENGTH(mem_section, NR_SECTION_ROOTS);
|
|
||||||
VMCOREINFO_STRUCT_SIZE(mem_section);
|
|
||||||
VMCOREINFO_OFFSET(mem_section, section_mem_map);
|
|
||||||
VMCOREINFO_NUMBER(SECTION_SIZE_BITS);
|
|
||||||
VMCOREINFO_NUMBER(MAX_PHYSMEM_BITS);
|
|
||||||
#endif
|
|
||||||
VMCOREINFO_STRUCT_SIZE(page);
|
|
||||||
VMCOREINFO_STRUCT_SIZE(pglist_data);
|
|
||||||
VMCOREINFO_STRUCT_SIZE(zone);
|
|
||||||
VMCOREINFO_STRUCT_SIZE(free_area);
|
|
||||||
VMCOREINFO_STRUCT_SIZE(list_head);
|
|
||||||
VMCOREINFO_SIZE(nodemask_t);
|
|
||||||
VMCOREINFO_OFFSET(page, flags);
|
|
||||||
VMCOREINFO_OFFSET(page, _refcount);
|
|
||||||
VMCOREINFO_OFFSET(page, mapping);
|
|
||||||
VMCOREINFO_OFFSET(page, lru);
|
|
||||||
VMCOREINFO_OFFSET(page, _mapcount);
|
|
||||||
VMCOREINFO_OFFSET(page, private);
|
|
||||||
VMCOREINFO_OFFSET(page, compound_head);
|
|
||||||
VMCOREINFO_OFFSET(pglist_data, node_zones);
|
|
||||||
VMCOREINFO_OFFSET(pglist_data, nr_zones);
|
|
||||||
#ifdef CONFIG_FLATMEM
|
|
||||||
VMCOREINFO_OFFSET(pglist_data, node_mem_map);
|
|
||||||
#endif
|
|
||||||
VMCOREINFO_OFFSET(pglist_data, node_start_pfn);
|
|
||||||
VMCOREINFO_OFFSET(pglist_data, node_spanned_pages);
|
|
||||||
VMCOREINFO_OFFSET(pglist_data, node_id);
|
|
||||||
VMCOREINFO_OFFSET(zone, free_area);
|
|
||||||
VMCOREINFO_OFFSET(zone, vm_stat);
|
|
||||||
VMCOREINFO_OFFSET(zone, spanned_pages);
|
|
||||||
VMCOREINFO_OFFSET(free_area, free_list);
|
|
||||||
VMCOREINFO_OFFSET(list_head, next);
|
|
||||||
VMCOREINFO_OFFSET(list_head, prev);
|
|
||||||
VMCOREINFO_LENGTH(zone.free_area, NR_PAGE_ORDERS);
|
|
||||||
log_buf_vmcoreinfo_setup();
|
|
||||||
VMCOREINFO_LENGTH(free_area.free_list, MIGRATE_TYPES);
|
|
||||||
VMCOREINFO_NUMBER(NR_FREE_PAGES);
|
|
||||||
VMCOREINFO_NUMBER(PG_lru);
|
|
||||||
VMCOREINFO_NUMBER(PG_private);
|
|
||||||
VMCOREINFO_NUMBER(PG_swapcache);
|
|
||||||
VMCOREINFO_NUMBER(PG_swapbacked);
|
|
||||||
VMCOREINFO_NUMBER(PG_slab);
|
|
||||||
#ifdef CONFIG_MEMORY_FAILURE
|
|
||||||
VMCOREINFO_NUMBER(PG_hwpoison);
|
|
||||||
#endif
|
|
||||||
VMCOREINFO_NUMBER(PG_head_mask);
|
|
||||||
#define PAGE_BUDDY_MAPCOUNT_VALUE (~PG_buddy)
|
|
||||||
VMCOREINFO_NUMBER(PAGE_BUDDY_MAPCOUNT_VALUE);
|
|
||||||
#ifdef CONFIG_HUGETLB_PAGE
|
|
||||||
VMCOREINFO_NUMBER(PG_hugetlb);
|
|
||||||
#define PAGE_OFFLINE_MAPCOUNT_VALUE (~PG_offline)
|
|
||||||
VMCOREINFO_NUMBER(PAGE_OFFLINE_MAPCOUNT_VALUE);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_KALLSYMS
|
|
||||||
VMCOREINFO_SYMBOL(kallsyms_names);
|
|
||||||
VMCOREINFO_SYMBOL(kallsyms_num_syms);
|
|
||||||
VMCOREINFO_SYMBOL(kallsyms_token_table);
|
|
||||||
VMCOREINFO_SYMBOL(kallsyms_token_index);
|
|
||||||
#ifdef CONFIG_KALLSYMS_BASE_RELATIVE
|
|
||||||
VMCOREINFO_SYMBOL(kallsyms_offsets);
|
|
||||||
VMCOREINFO_SYMBOL(kallsyms_relative_base);
|
|
||||||
#else
|
|
||||||
VMCOREINFO_SYMBOL(kallsyms_addresses);
|
|
||||||
#endif /* CONFIG_KALLSYMS_BASE_RELATIVE */
|
|
||||||
#endif /* CONFIG_KALLSYMS */
|
|
||||||
|
|
||||||
arch_crash_save_vmcoreinfo();
|
|
||||||
update_vmcoreinfo_note();
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
subsys_initcall(crash_save_vmcoreinfo_init);
|
|
||||||
|
|
||||||
static int __init crash_notes_memory_init(void)
|
static int __init crash_notes_memory_init(void)
|
||||||
{
|
{
|
||||||
/* Allocate memory for saving cpu registers. */
|
/* Allocate memory for saving cpu registers. */
|
||||||
|
@ -154,7 +154,7 @@ KERNEL_ATTR_RW(kexec_crash_size);
|
|||||||
|
|
||||||
#endif /* CONFIG_KEXEC_CORE */
|
#endif /* CONFIG_KEXEC_CORE */
|
||||||
|
|
||||||
#ifdef CONFIG_CRASH_CORE
|
#ifdef CONFIG_VMCORE_INFO
|
||||||
|
|
||||||
static ssize_t vmcoreinfo_show(struct kobject *kobj,
|
static ssize_t vmcoreinfo_show(struct kobject *kobj,
|
||||||
struct kobj_attribute *attr, char *buf)
|
struct kobj_attribute *attr, char *buf)
|
||||||
@ -177,7 +177,7 @@ KERNEL_ATTR_RO(crash_elfcorehdr_size);
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* CONFIG_CRASH_CORE */
|
#endif /* CONFIG_VMCORE_INFO */
|
||||||
|
|
||||||
/* whether file capabilities are enabled */
|
/* whether file capabilities are enabled */
|
||||||
static ssize_t fscaps_show(struct kobject *kobj,
|
static ssize_t fscaps_show(struct kobject *kobj,
|
||||||
@ -265,7 +265,7 @@ static struct attribute * kernel_attrs[] = {
|
|||||||
&kexec_crash_loaded_attr.attr,
|
&kexec_crash_loaded_attr.attr,
|
||||||
&kexec_crash_size_attr.attr,
|
&kexec_crash_size_attr.attr,
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_CRASH_CORE
|
#ifdef CONFIG_VMCORE_INFO
|
||||||
&vmcoreinfo_attr.attr,
|
&vmcoreinfo_attr.attr,
|
||||||
#ifdef CONFIG_CRASH_HOTPLUG
|
#ifdef CONFIG_CRASH_HOTPLUG
|
||||||
&crash_elfcorehdr_size_attr.attr,
|
&crash_elfcorehdr_size_attr.attr,
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#include <linux/security.h>
|
#include <linux/security.h>
|
||||||
#include <linux/memblock.h>
|
#include <linux/memblock.h>
|
||||||
#include <linux/syscalls.h>
|
#include <linux/syscalls.h>
|
||||||
#include <linux/crash_core.h>
|
#include <linux/vmcore_info.h>
|
||||||
#include <linux/ratelimit.h>
|
#include <linux/ratelimit.h>
|
||||||
#include <linux/kmsg_dump.h>
|
#include <linux/kmsg_dump.h>
|
||||||
#include <linux/syslog.h>
|
#include <linux/syslog.h>
|
||||||
@ -951,7 +951,7 @@ const struct file_operations kmsg_fops = {
|
|||||||
.release = devkmsg_release,
|
.release = devkmsg_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_CRASH_CORE
|
#ifdef CONFIG_VMCORE_INFO
|
||||||
/*
|
/*
|
||||||
* This appends the listed symbols to /proc/vmcore
|
* This appends the listed symbols to /proc/vmcore
|
||||||
*
|
*
|
||||||
|
230
kernel/vmcore_info.c
Normal file
230
kernel/vmcore_info.c
Normal file
@ -0,0 +1,230 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
/*
|
||||||
|
* crash.c - kernel crash support code.
|
||||||
|
* Copyright (C) 2002-2004 Eric Biederman <ebiederm@xmission.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <linux/buildid.h>
|
||||||
|
#include <linux/init.h>
|
||||||
|
#include <linux/utsname.h>
|
||||||
|
#include <linux/vmalloc.h>
|
||||||
|
#include <linux/sizes.h>
|
||||||
|
#include <linux/kexec.h>
|
||||||
|
#include <linux/memory.h>
|
||||||
|
#include <linux/cpuhotplug.h>
|
||||||
|
#include <linux/memblock.h>
|
||||||
|
#include <linux/kmemleak.h>
|
||||||
|
|
||||||
|
#include <asm/page.h>
|
||||||
|
#include <asm/sections.h>
|
||||||
|
|
||||||
|
#include <crypto/sha1.h>
|
||||||
|
|
||||||
|
#include "kallsyms_internal.h"
|
||||||
|
#include "kexec_internal.h"
|
||||||
|
|
||||||
|
/* vmcoreinfo stuff */
|
||||||
|
unsigned char *vmcoreinfo_data;
|
||||||
|
size_t vmcoreinfo_size;
|
||||||
|
u32 *vmcoreinfo_note;
|
||||||
|
|
||||||
|
/* trusted vmcoreinfo, e.g. we can make a copy in the crash memory */
|
||||||
|
static unsigned char *vmcoreinfo_data_safecopy;
|
||||||
|
|
||||||
|
Elf_Word *append_elf_note(Elf_Word *buf, char *name, unsigned int type,
|
||||||
|
void *data, size_t data_len)
|
||||||
|
{
|
||||||
|
struct elf_note *note = (struct elf_note *)buf;
|
||||||
|
|
||||||
|
note->n_namesz = strlen(name) + 1;
|
||||||
|
note->n_descsz = data_len;
|
||||||
|
note->n_type = type;
|
||||||
|
buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf_Word));
|
||||||
|
memcpy(buf, name, note->n_namesz);
|
||||||
|
buf += DIV_ROUND_UP(note->n_namesz, sizeof(Elf_Word));
|
||||||
|
memcpy(buf, data, data_len);
|
||||||
|
buf += DIV_ROUND_UP(data_len, sizeof(Elf_Word));
|
||||||
|
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
|
||||||
|
void final_note(Elf_Word *buf)
|
||||||
|
{
|
||||||
|
memset(buf, 0, sizeof(struct elf_note));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void update_vmcoreinfo_note(void)
|
||||||
|
{
|
||||||
|
u32 *buf = vmcoreinfo_note;
|
||||||
|
|
||||||
|
if (!vmcoreinfo_size)
|
||||||
|
return;
|
||||||
|
buf = append_elf_note(buf, VMCOREINFO_NOTE_NAME, 0, vmcoreinfo_data,
|
||||||
|
vmcoreinfo_size);
|
||||||
|
final_note(buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
void crash_update_vmcoreinfo_safecopy(void *ptr)
|
||||||
|
{
|
||||||
|
if (ptr)
|
||||||
|
memcpy(ptr, vmcoreinfo_data, vmcoreinfo_size);
|
||||||
|
|
||||||
|
vmcoreinfo_data_safecopy = ptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
void crash_save_vmcoreinfo(void)
|
||||||
|
{
|
||||||
|
if (!vmcoreinfo_note)
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Use the safe copy to generate vmcoreinfo note if have */
|
||||||
|
if (vmcoreinfo_data_safecopy)
|
||||||
|
vmcoreinfo_data = vmcoreinfo_data_safecopy;
|
||||||
|
|
||||||
|
vmcoreinfo_append_str("CRASHTIME=%lld\n", ktime_get_real_seconds());
|
||||||
|
update_vmcoreinfo_note();
|
||||||
|
}
|
||||||
|
|
||||||
|
void vmcoreinfo_append_str(const char *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
char buf[0x50];
|
||||||
|
size_t r;
|
||||||
|
|
||||||
|
va_start(args, fmt);
|
||||||
|
r = vscnprintf(buf, sizeof(buf), fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
|
||||||
|
r = min(r, (size_t)VMCOREINFO_BYTES - vmcoreinfo_size);
|
||||||
|
|
||||||
|
memcpy(&vmcoreinfo_data[vmcoreinfo_size], buf, r);
|
||||||
|
|
||||||
|
vmcoreinfo_size += r;
|
||||||
|
|
||||||
|
WARN_ONCE(vmcoreinfo_size == VMCOREINFO_BYTES,
|
||||||
|
"vmcoreinfo data exceeds allocated size, truncating");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* provide an empty default implementation here -- architecture
|
||||||
|
* code may override this
|
||||||
|
*/
|
||||||
|
void __weak arch_crash_save_vmcoreinfo(void)
|
||||||
|
{}
|
||||||
|
|
||||||
|
phys_addr_t __weak paddr_vmcoreinfo_note(void)
|
||||||
|
{
|
||||||
|
return __pa(vmcoreinfo_note);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(paddr_vmcoreinfo_note);
|
||||||
|
|
||||||
|
static int __init crash_save_vmcoreinfo_init(void)
|
||||||
|
{
|
||||||
|
vmcoreinfo_data = (unsigned char *)get_zeroed_page(GFP_KERNEL);
|
||||||
|
if (!vmcoreinfo_data) {
|
||||||
|
pr_warn("Memory allocation for vmcoreinfo_data failed\n");
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
vmcoreinfo_note = alloc_pages_exact(VMCOREINFO_NOTE_SIZE,
|
||||||
|
GFP_KERNEL | __GFP_ZERO);
|
||||||
|
if (!vmcoreinfo_note) {
|
||||||
|
free_page((unsigned long)vmcoreinfo_data);
|
||||||
|
vmcoreinfo_data = NULL;
|
||||||
|
pr_warn("Memory allocation for vmcoreinfo_note failed\n");
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
VMCOREINFO_OSRELEASE(init_uts_ns.name.release);
|
||||||
|
VMCOREINFO_BUILD_ID();
|
||||||
|
VMCOREINFO_PAGESIZE(PAGE_SIZE);
|
||||||
|
|
||||||
|
VMCOREINFO_SYMBOL(init_uts_ns);
|
||||||
|
VMCOREINFO_OFFSET(uts_namespace, name);
|
||||||
|
VMCOREINFO_SYMBOL(node_online_map);
|
||||||
|
#ifdef CONFIG_MMU
|
||||||
|
VMCOREINFO_SYMBOL_ARRAY(swapper_pg_dir);
|
||||||
|
#endif
|
||||||
|
VMCOREINFO_SYMBOL(_stext);
|
||||||
|
vmcoreinfo_append_str("NUMBER(VMALLOC_START)=0x%lx\n", (unsigned long) VMALLOC_START);
|
||||||
|
|
||||||
|
#ifndef CONFIG_NUMA
|
||||||
|
VMCOREINFO_SYMBOL(mem_map);
|
||||||
|
VMCOREINFO_SYMBOL(contig_page_data);
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SPARSEMEM
|
||||||
|
VMCOREINFO_SYMBOL_ARRAY(mem_section);
|
||||||
|
VMCOREINFO_LENGTH(mem_section, NR_SECTION_ROOTS);
|
||||||
|
VMCOREINFO_STRUCT_SIZE(mem_section);
|
||||||
|
VMCOREINFO_OFFSET(mem_section, section_mem_map);
|
||||||
|
VMCOREINFO_NUMBER(SECTION_SIZE_BITS);
|
||||||
|
VMCOREINFO_NUMBER(MAX_PHYSMEM_BITS);
|
||||||
|
#endif
|
||||||
|
VMCOREINFO_STRUCT_SIZE(page);
|
||||||
|
VMCOREINFO_STRUCT_SIZE(pglist_data);
|
||||||
|
VMCOREINFO_STRUCT_SIZE(zone);
|
||||||
|
VMCOREINFO_STRUCT_SIZE(free_area);
|
||||||
|
VMCOREINFO_STRUCT_SIZE(list_head);
|
||||||
|
VMCOREINFO_SIZE(nodemask_t);
|
||||||
|
VMCOREINFO_OFFSET(page, flags);
|
||||||
|
VMCOREINFO_OFFSET(page, _refcount);
|
||||||
|
VMCOREINFO_OFFSET(page, mapping);
|
||||||
|
VMCOREINFO_OFFSET(page, lru);
|
||||||
|
VMCOREINFO_OFFSET(page, _mapcount);
|
||||||
|
VMCOREINFO_OFFSET(page, private);
|
||||||
|
VMCOREINFO_OFFSET(page, compound_head);
|
||||||
|
VMCOREINFO_OFFSET(pglist_data, node_zones);
|
||||||
|
VMCOREINFO_OFFSET(pglist_data, nr_zones);
|
||||||
|
#ifdef CONFIG_FLATMEM
|
||||||
|
VMCOREINFO_OFFSET(pglist_data, node_mem_map);
|
||||||
|
#endif
|
||||||
|
VMCOREINFO_OFFSET(pglist_data, node_start_pfn);
|
||||||
|
VMCOREINFO_OFFSET(pglist_data, node_spanned_pages);
|
||||||
|
VMCOREINFO_OFFSET(pglist_data, node_id);
|
||||||
|
VMCOREINFO_OFFSET(zone, free_area);
|
||||||
|
VMCOREINFO_OFFSET(zone, vm_stat);
|
||||||
|
VMCOREINFO_OFFSET(zone, spanned_pages);
|
||||||
|
VMCOREINFO_OFFSET(free_area, free_list);
|
||||||
|
VMCOREINFO_OFFSET(list_head, next);
|
||||||
|
VMCOREINFO_OFFSET(list_head, prev);
|
||||||
|
VMCOREINFO_LENGTH(zone.free_area, NR_PAGE_ORDERS);
|
||||||
|
log_buf_vmcoreinfo_setup();
|
||||||
|
VMCOREINFO_LENGTH(free_area.free_list, MIGRATE_TYPES);
|
||||||
|
VMCOREINFO_NUMBER(NR_FREE_PAGES);
|
||||||
|
VMCOREINFO_NUMBER(PG_lru);
|
||||||
|
VMCOREINFO_NUMBER(PG_private);
|
||||||
|
VMCOREINFO_NUMBER(PG_swapcache);
|
||||||
|
VMCOREINFO_NUMBER(PG_swapbacked);
|
||||||
|
VMCOREINFO_NUMBER(PG_slab);
|
||||||
|
#ifdef CONFIG_MEMORY_FAILURE
|
||||||
|
VMCOREINFO_NUMBER(PG_hwpoison);
|
||||||
|
#endif
|
||||||
|
VMCOREINFO_NUMBER(PG_head_mask);
|
||||||
|
#define PAGE_BUDDY_MAPCOUNT_VALUE (~PG_buddy)
|
||||||
|
VMCOREINFO_NUMBER(PAGE_BUDDY_MAPCOUNT_VALUE);
|
||||||
|
#ifdef CONFIG_HUGETLB_PAGE
|
||||||
|
VMCOREINFO_NUMBER(PG_hugetlb);
|
||||||
|
#define PAGE_OFFLINE_MAPCOUNT_VALUE (~PG_offline)
|
||||||
|
VMCOREINFO_NUMBER(PAGE_OFFLINE_MAPCOUNT_VALUE);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_KALLSYMS
|
||||||
|
VMCOREINFO_SYMBOL(kallsyms_names);
|
||||||
|
VMCOREINFO_SYMBOL(kallsyms_num_syms);
|
||||||
|
VMCOREINFO_SYMBOL(kallsyms_token_table);
|
||||||
|
VMCOREINFO_SYMBOL(kallsyms_token_index);
|
||||||
|
#ifdef CONFIG_KALLSYMS_BASE_RELATIVE
|
||||||
|
VMCOREINFO_SYMBOL(kallsyms_offsets);
|
||||||
|
VMCOREINFO_SYMBOL(kallsyms_relative_base);
|
||||||
|
#else
|
||||||
|
VMCOREINFO_SYMBOL(kallsyms_addresses);
|
||||||
|
#endif /* CONFIG_KALLSYMS_BASE_RELATIVE */
|
||||||
|
#endif /* CONFIG_KALLSYMS */
|
||||||
|
|
||||||
|
arch_crash_save_vmcoreinfo();
|
||||||
|
update_vmcoreinfo_note();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
subsys_initcall(crash_save_vmcoreinfo_init);
|
@ -174,7 +174,7 @@ int build_id_parse_buf(const void *buf, unsigned char *build_id, u32 buf_size)
|
|||||||
return parse_build_id_buf(build_id, NULL, buf, buf_size);
|
return parse_build_id_buf(build_id, NULL, buf, buf_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if IS_ENABLED(CONFIG_STACKTRACE_BUILD_ID) || IS_ENABLED(CONFIG_CRASH_CORE)
|
#if IS_ENABLED(CONFIG_STACKTRACE_BUILD_ID) || IS_ENABLED(CONFIG_VMCORE_INFO)
|
||||||
unsigned char vmlinux_build_id[BUILD_ID_SIZE_MAX] __ro_after_init;
|
unsigned char vmlinux_build_id[BUILD_ID_SIZE_MAX] __ro_after_init;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user