forked from crash-python/crash-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crash.sh
executable file
·299 lines (257 loc) · 7.03 KB
/
crash.sh
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
#!/bin/bash
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
usage() {
cat <<END >&2
usage: $(basename $0) [options] <vmlinux> <vmcore>
Options:
-r <dir> | --root <dir>
Use the specified directory as the root for all file searches. When
using properly configured .build-id symbolic links, this is the
best method to use as the debuginfo will be loaded automatically via
gdb without searching for filenames.
-m <dir> | --modules <dir>
Use the specified directory to search for modules
-d <dir> | --modules-debuginfo <dir>
Use the specified directory to search for module debuginfo
-D <dir> | --vmlinux-debuginfo <dir>
Use the specified directory to search for vmlinux debuginfo
-b <dir> | --build-dir <dir>
Use the specified directory as the root for all file searches. This
directory should be the root of a built kernel source tree. This is
shorthand for "-r <dir> -m . -d . -D ." and will override preceding
options.
Debugging options:
--debug
Enable noisy output for debugging the debugger
-v | --verbose
Enable verbose output for debugging the debugger
--gdb
Run the embedded gdb underneath a separate gdb instance. This is useful
for debugging issues in gdb that are seen while running crash-python.
--valgrind
Run the embedded gdb underneath valgrind. This is useful
for debugging memory leaks in gdb patches.
END
exit 1
}
TEMP=$(getopt -o 'vr:d:m:D:b:h' --long 'verbose,root:,modules-debuginfo:,modules:,vmlinux-debuginfo:,build-dir:,debug,gdb,valgrind,help' -n "$(basename $0)" -- "$@")
if [ $? -ne 0 ]; then
usage
fi
eval set -- "$TEMP"
unset TEMP
VERBOSE=False
DEBUG=False
while true; do
case "$1" in
'-r'|'--root')
if test -z "$SEARCH_DIRS"; then
SEARCH_DIRS="$2"
else
SEARCH_DIRS="$SEARCH_DIRS $2"
fi
shift 2
continue
;;
'-m'|'--modules')
if test -z "$MODULES"; then
MODULES="$2"
else
MODULES="$MODULES $2"
fi
shift 2
continue
;;
'-d'|'--modules-debuginfo')
if test -z "$MODULES_DEBUGINFO"; then
MODULES_DEBUGINFO="$2"
else
MODULES_DEBUGINFO="$MODULES_DEBUGINFO $2"
fi
shift 2
continue
;;
'-D'|'--vmlinux-debuginfo')
if test -z "$VMLINUX_DEBUGINFO"; then
VMLINUX_DEBUGINFO="$2"
else
VMLINUX_DEBUGINFO="$VMLINUX_DEBUGINFO $2"
fi
shift 2
continue
;;
'-b'|'--build-dir')
SEARCH_DIRS="$2"
VMLINUX_DEBUGINFO="."
MODULES="."
MODULES_DEBUGINFO="."
shift 2
continue
;;
'-v'|'--verbose')
VERBOSE="True"
shift
continue
;;
'--debug')
DEBUG="True"
shift
continue
;;
'--gdb')
DEBUGMODE=gdb
shift
continue
;;
'--valgrind')
DEBUGMODE=valgrind
shift
continue
;;
'-h'|'--help')
usage ;;
'--')
shift
break
;;
*)
echo "internal error [$1]" >&2
exit 1
;;
esac
done
if [ "$#" -ne 2 ]; then
usage
fi
_cleanup() {
rm -rf "$TMPDIR"
}
TMPDIR=$(mktemp -d /tmp/crash.XXXXXX)
trap _cleanup EXIT
GDBINIT="$TMPDIR/gdbinit"
set -e
GDB=
for gdb in crash-python-gdb gdb; do
if $gdb -v > /dev/null 2> /dev/null; then
GDB=$gdb
break
fi
done
if [ -z "$GDB" ]; then
echo "ERROR: gdb is not available." >&2
exit 1
fi
# If we're using crash.sh from the git repo, use the modules from the git repo
DIR="$(dirname $0)"
if [ -e "$DIR/setup.py" ]; then
pushd $DIR > /dev/null
rm -rf build/lib/crash
python3 setup.py build > /dev/null
echo "python sys.path.insert(0, '$DIR/build/lib')" >> $GDBINIT
popd > /dev/null
export CRASH_PYTHON_HELP="$DIR/docs/text"
TEST_GDBINIT="$DIR/test-gdb-compatibility.gdbinit"
for command in $(find $DIR/crash/commands/*.py); do
if test "$command" -nt "$CRASH_PYTHON_HELP"; then
echo "warning: help text documentation is out-of-date" >&2
echo "To update it, run 'make doc-help'" >&2
break
fi
done
else
export CRASH_PYTHON_HELP="/usr/share/crash-python/help"
:> $GDBINIT
TEST_GDBINIT="/usr/share/crash-python/test-gdb-compatibility.gdbinit"
fi
if ! $GDB -nx -batch -x $GDBINIT -x $TEST_GDBINIT; then
echo "fatal: crash-python cannot initialize" >&2
exit 1
fi
ZKERNEL="$1"
KERNEL="${ZKERNEL%.gz}"
if ! test -e "$ZKERNEL"; then
echo "$ZKERNEL: No such file or directory"
exit 1
fi
if test "$KERNEL" != "$ZKERNEL"; then
KERNEL="$TMPDIR/$(basename "$KERNEL")"
zcat $ZKERNEL > $KERNEL
else
KERNEL="$ZKERNEL"
fi
VMCORE=$2
for path in $SEARCH_DIRS; do
if test -n "$DFD"; then
DFD="$DFD:$path"
else
DFD="$path"
fi
done
if test -n "$DFD"; then
echo "set debug-file-directory $DFD:/usr/lib/debug" >> $GDBINIT
fi
cat << EOF >> $GDBINIT
set python print-stack full
set prompt py-crash>
set height 0
set print pretty on
python
from kdump.target import Target
target = Target(debug=False)
end
target kdumpfile $KERNEL $VMCORE
python
import sys
import traceback
try:
import crash.session
from crash.kernel import CrashKernel
except RuntimeError as e:
print("crash-python: {}, exiting".format(str(e)), file=sys.stderr)
traceback.print_exc()
sys.exit(1)
roots = None
module_path = None
module_debuginfo_path = None
vmlinux_debuginfo = None
verbose=$VERBOSE
debug=$DEBUG
s = "$SEARCH_DIRS"
if len(s) > 0:
roots = s.split(" ")
s = "$VMLINUX_DEBUGINFO"
if len(s) > 0:
vmlinux_debuginfo = s.split(" ")
s = "$MODULES"
if len(s) > 0:
module_path = s.split(" ")
s = "$MODULES_DEBUGINFO"
if len(s) > 0:
module_debuginfo_path = s.split(" ")
try:
kernel = CrashKernel(roots, vmlinux_debuginfo, module_path,
module_debuginfo_path, verbose, debug)
x = crash.session.Session(kernel, verbose=verbose, debug=debug)
print("The 'pyhelp' command will list the command extensions.")
except gdb.error as e:
print("crash-python: {}, exiting".format(str(e)), file=sys.stderr)
traceback.print_exc()
sys.exit(1)
except RuntimeError as e:
print("crash-python: Failed to open {}. {}".format("$VMCORE", str(e)),
file=sys.stderr)
traceback.print_exc()
sys.exit(1)
target.unregister()
del target
EOF
# This is how we debug gdb problems when running crash
if [ "$DEBUGMODE" = "gdb" ]; then
RUN="run -nx -q -x $GDBINIT"
echo $RUN > $TMPDIR/gdbinit-debug
gdb $GDB -nx -q -x $TMPDIR/gdbinit-debug
elif [ "$DEBUGMODE" = "valgrind" ]; then
valgrind --keep-stacktraces=alloc-and-free $GDB -nh -q -x $GDBINIT
else
$GDB -nx -q -x $GDBINIT
fi