Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
e84a2a4
Documentation
arch
alpha
arc
arm
arm64
avr32
blackfin
c6x
cris
frv
hexagon
ia64
m32r
m68k
metag
microblaze
mips
mn10300
openrisc
parisc
powerpc
s390
score
sh
sparc
tile
um
configs
drivers
include
kernel
skas
Makefile
asm-offsets.c
config.c.in
dyn.lds.S
early_printk.c
exec.c
exitcode.c
gmon_syms.c
gprof_syms.c
initrd.c
irq.c
ksyms.c
maccess.c
mem.c
physmem.c
process.c
ptrace.c
reboot.c
sigio.c
signal.c
smp.c
syscall.c
sysrq.c
time.c
tlb.c
trap.c
um_arch.c
umid.c
uml.lds.S
vmlinux.lds.S
os-Linux
scripts
sys-ia64
sys-ppc
.gitignore
Kconfig.char
Kconfig.common
Kconfig.debug
Kconfig.net
Kconfig.rest
Kconfig.um
Makefile
Makefile-ia64
Makefile-os-Linux
Makefile-ppc
Makefile-skas
unicore32
x86
xtensa
.gitignore
Kconfig
block
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
REPORTING-BUGS
Breadcrumbs
linux
/
arch
/
um
/
kernel
/
sysrq.c
Blame
Blame
Latest commit
History
History
98 lines (85 loc) · 2.4 KB
Breadcrumbs
linux
/
arch
/
um
/
kernel
/
sysrq.c
Top
File metadata and controls
Code
Blame
98 lines (85 loc) · 2.4 KB
Raw
/* * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Copyright (C) 2013 Richard Weinberger <richrd@nod.at> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <linux/kallsyms.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/sched.h> #include <asm/sysrq.h> #include <os.h> struct stack_frame { struct stack_frame *next_frame; unsigned long return_address; }; static void do_stack_trace(unsigned long *sp, unsigned long bp) { int reliable; unsigned long addr; struct stack_frame *frame = (struct stack_frame *)bp; printk(KERN_INFO "Call Trace:\n"); while (((long) sp & (THREAD_SIZE-1)) != 0) { addr = *sp; if (__kernel_text_address(addr)) { reliable = 0; if ((unsigned long) sp == bp + sizeof(long)) { frame = frame ? frame->next_frame : NULL; bp = (unsigned long)frame; reliable = 1; } printk(KERN_INFO " [<%08lx>]", addr); printk(KERN_CONT " %s", reliable ? "" : "? "); print_symbol(KERN_CONT "%s", addr); printk(KERN_CONT "\n"); } sp++; } printk(KERN_INFO "\n"); } static unsigned long get_frame_pointer(struct task_struct *task, struct pt_regs *segv_regs) { if (!task || task == current) return segv_regs ? PT_REGS_BP(segv_regs) : current_bp(); else return KSTK_EBP(task); } static unsigned long *get_stack_pointer(struct task_struct *task, struct pt_regs *segv_regs) { if (!task || task == current) return segv_regs ? (unsigned long *)PT_REGS_SP(segv_regs) : current_sp(); else return (unsigned long *)KSTK_ESP(task); } void show_stack(struct task_struct *task, unsigned long *stack) { unsigned long *sp = stack, bp = 0; struct pt_regs *segv_regs = current->thread.segv_regs; int i; if (!segv_regs && os_is_signal_stack()) { printk(KERN_ERR "Received SIGSEGV in SIGSEGV handler," " aborting stack trace!\n"); return; } #ifdef CONFIG_FRAME_POINTER bp = get_frame_pointer(task, segv_regs); #endif if (!stack) sp = get_stack_pointer(task, segv_regs); printk(KERN_INFO "Stack:\n"); stack = sp; for (i = 0; i < 3 * STACKSLOTS_PER_LINE; i++) { if (kstack_end(stack)) break; if (i && ((i % STACKSLOTS_PER_LINE) == 0)) printk(KERN_CONT "\n"); printk(KERN_CONT " %08lx", *stack++); } printk(KERN_CONT "\n"); do_stack_trace(sp, bp); }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
You can’t perform that action at this time.