blob: 35f6a982a0d5fdc040cfb722a071c8d707c53123 [file] [log] [blame]
Vivek Goyalb089f4a2005-06-25 14:58:15 -07001#
2# This file contains a few gdb macros (user defined commands) to extract
3# useful information from kernel crashdump (kdump) like stack traces of
4# all the processes or a particular process and trapinfo.
5#
6# These macros can be used by copying this file in .gdbinit (put in home
7# directory or current directory) or by invoking gdb command with
8# --command=<command-file-name> option
9#
10# Credits:
11# Alexander Nyberg <alexn@telia.com>
12# V Srivatsa <vatsa@in.ibm.com>
13# Maneesh Soni <maneesh@in.ibm.com>
14#
15
16define bttnobp
17 set $tasks_off=((size_t)&((struct task_struct *)0)->tasks)
Corey Minyarda0c20de2016-05-23 16:24:25 -070018 set $pid_off=((size_t)&((struct task_struct *)0)->thread_group.next)
Vivek Goyalb089f4a2005-06-25 14:58:15 -070019 set $init_t=&init_task
20 set $next_t=(((char *)($init_t->tasks).next) - $tasks_off)
Corey Minyarda0c20de2016-05-23 16:24:25 -070021 set var $stacksize = sizeof(union thread_union)
Vivek Goyalb089f4a2005-06-25 14:58:15 -070022 while ($next_t != $init_t)
23 set $next_t=(struct task_struct *)$next_t
24 printf "\npid %d; comm %s:\n", $next_t.pid, $next_t.comm
25 printf "===================\n"
Corey Minyarda0c20de2016-05-23 16:24:25 -070026 set var $stackp = $next_t.thread.sp
27 set var $stack_top = ($stackp & ~($stacksize - 1)) + $stacksize
Vivek Goyalb089f4a2005-06-25 14:58:15 -070028
29 while ($stackp < $stack_top)
30 if (*($stackp) > _stext && *($stackp) < _sinittext)
31 info symbol *($stackp)
32 end
33 set $stackp += 4
34 end
Corey Minyarda0c20de2016-05-23 16:24:25 -070035 set $next_th=(((char *)$next_t->thread_group.next) - $pid_off)
Vivek Goyalb089f4a2005-06-25 14:58:15 -070036 while ($next_th != $next_t)
37 set $next_th=(struct task_struct *)$next_th
38 printf "\npid %d; comm %s:\n", $next_t.pid, $next_t.comm
39 printf "===================\n"
Corey Minyarda0c20de2016-05-23 16:24:25 -070040 set var $stackp = $next_t.thread.sp
41 set var $stack_top = ($stackp & ~($stacksize - 1)) + stacksize
Vivek Goyalb089f4a2005-06-25 14:58:15 -070042
43 while ($stackp < $stack_top)
44 if (*($stackp) > _stext && *($stackp) < _sinittext)
45 info symbol *($stackp)
46 end
47 set $stackp += 4
48 end
Corey Minyarda0c20de2016-05-23 16:24:25 -070049 set $next_th=(((char *)$next_th->thread_group.next) - $pid_off)
Vivek Goyalb089f4a2005-06-25 14:58:15 -070050 end
51 set $next_t=(char *)($next_t->tasks.next) - $tasks_off
52 end
53end
54document bttnobp
55 dump all thread stack traces on a kernel compiled with !CONFIG_FRAME_POINTER
56end
57
Corey Minyarda0c20de2016-05-23 16:24:25 -070058define btthreadstack
59 set var $pid_task = $arg0
60
61 printf "\npid %d; comm %s:\n", $pid_task.pid, $pid_task.comm
62 printf "task struct: "
63 print $pid_task
64 printf "===================\n"
65 set var $stackp = $pid_task.thread.sp
66 set var $stacksize = sizeof(union thread_union)
67 set var $stack_top = ($stackp & ~($stacksize - 1)) + $stacksize
68 set var $stack_bot = ($stackp & ~($stacksize - 1))
69
70 set $stackp = *((unsigned long *) $stackp)
71 while (($stackp < $stack_top) && ($stackp > $stack_bot))
72 set var $addr = *(((unsigned long *) $stackp) + 1)
73 info symbol $addr
74 set $stackp = *((unsigned long *) $stackp)
75 end
76end
77document btthreadstack
78 dump a thread stack using the given task structure pointer
79end
80
81
Vivek Goyalb089f4a2005-06-25 14:58:15 -070082define btt
83 set $tasks_off=((size_t)&((struct task_struct *)0)->tasks)
Corey Minyarda0c20de2016-05-23 16:24:25 -070084 set $pid_off=((size_t)&((struct task_struct *)0)->thread_group.next)
Vivek Goyalb089f4a2005-06-25 14:58:15 -070085 set $init_t=&init_task
86 set $next_t=(((char *)($init_t->tasks).next) - $tasks_off)
87 while ($next_t != $init_t)
88 set $next_t=(struct task_struct *)$next_t
Corey Minyarda0c20de2016-05-23 16:24:25 -070089 btthreadstack $next_t
Vivek Goyalb089f4a2005-06-25 14:58:15 -070090
Corey Minyarda0c20de2016-05-23 16:24:25 -070091 set $next_th=(((char *)$next_t->thread_group.next) - $pid_off)
Vivek Goyalb089f4a2005-06-25 14:58:15 -070092 while ($next_th != $next_t)
93 set $next_th=(struct task_struct *)$next_th
Corey Minyarda0c20de2016-05-23 16:24:25 -070094 btthreadstack $next_th
95 set $next_th=(((char *)$next_th->thread_group.next) - $pid_off)
Vivek Goyalb089f4a2005-06-25 14:58:15 -070096 end
97 set $next_t=(char *)($next_t->tasks.next) - $tasks_off
98 end
99end
100document btt
101 dump all thread stack traces on a kernel compiled with CONFIG_FRAME_POINTER
102end
103
104define btpid
105 set var $pid = $arg0
106 set $tasks_off=((size_t)&((struct task_struct *)0)->tasks)
Corey Minyarda0c20de2016-05-23 16:24:25 -0700107 set $pid_off=((size_t)&((struct task_struct *)0)->thread_group.next)
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700108 set $init_t=&init_task
109 set $next_t=(((char *)($init_t->tasks).next) - $tasks_off)
110 set var $pid_task = 0
111
112 while ($next_t != $init_t)
113 set $next_t=(struct task_struct *)$next_t
114
115 if ($next_t.pid == $pid)
116 set $pid_task = $next_t
117 end
118
Corey Minyarda0c20de2016-05-23 16:24:25 -0700119 set $next_th=(((char *)$next_t->thread_group.next) - $pid_off)
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700120 while ($next_th != $next_t)
121 set $next_th=(struct task_struct *)$next_th
122 if ($next_th.pid == $pid)
123 set $pid_task = $next_th
124 end
Corey Minyarda0c20de2016-05-23 16:24:25 -0700125 set $next_th=(((char *)$next_th->thread_group.next) - $pid_off)
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700126 end
127 set $next_t=(char *)($next_t->tasks.next) - $tasks_off
128 end
129
Corey Minyarda0c20de2016-05-23 16:24:25 -0700130 btthreadstack $pid_task
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700131end
132document btpid
133 backtrace of pid
134end
135
136
137define trapinfo
138 set var $pid = $arg0
139 set $tasks_off=((size_t)&((struct task_struct *)0)->tasks)
Corey Minyarda0c20de2016-05-23 16:24:25 -0700140 set $pid_off=((size_t)&((struct task_struct *)0)->thread_group.next)
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700141 set $init_t=&init_task
142 set $next_t=(((char *)($init_t->tasks).next) - $tasks_off)
143 set var $pid_task = 0
144
145 while ($next_t != $init_t)
146 set $next_t=(struct task_struct *)$next_t
147
148 if ($next_t.pid == $pid)
149 set $pid_task = $next_t
150 end
151
Corey Minyarda0c20de2016-05-23 16:24:25 -0700152 set $next_th=(((char *)$next_t->thread_group.next) - $pid_off)
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700153 while ($next_th != $next_t)
154 set $next_th=(struct task_struct *)$next_th
155 if ($next_th.pid == $pid)
156 set $pid_task = $next_th
157 end
Corey Minyarda0c20de2016-05-23 16:24:25 -0700158 set $next_th=(((char *)$next_th->thread_group.next) - $pid_off)
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700159 end
160 set $next_t=(char *)($next_t->tasks.next) - $tasks_off
161 end
162
163 printf "Trapno %ld, cr2 0x%lx, error_code %ld\n", $pid_task.thread.trap_no, \
164 $pid_task.thread.cr2, $pid_task.thread.error_code
165
166end
167document trapinfo
168 Run info threads and lookup pid of thread #1
169 'trapinfo <pid>' will tell you by which trap & possibly
Lee Revellf18190b2006-06-26 18:30:00 +0200170 address the kernel panicked.
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700171end
Akinobu Mita8428cfe2006-01-11 12:17:30 -0800172
173
174define dmesg
175 set $i = 0
176 set $end_idx = (log_end - 1) & (log_buf_len - 1)
177
178 while ($i < logged_chars)
179 set $idx = (log_end - 1 - logged_chars + $i) & (log_buf_len - 1)
180
181 if ($idx + 100 <= $end_idx) || \
182 ($end_idx <= $idx && $idx + 100 < log_buf_len)
183 printf "%.100s", &log_buf[$idx]
184 set $i = $i + 100
185 else
186 printf "%c", log_buf[$idx]
187 set $i = $i + 1
188 end
189 end
190end
191document dmesg
192 print the kernel ring buffer
193end