r19128: - make the gdb_backtrace script more portable
authorStefan Metzmacher <metze@samba.org>
Fri, 6 Oct 2006 13:23:42 +0000 (13:23 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:20:37 +0000 (14:20 -0500)
- try /proc/${PID}/exe first
- fallback to the binary given on the commandline
- fallback searching the binary with 'which' from the
  commandline argument
- use 'ladebug' debugger on Tru64

metze
(This used to be commit f792a9532d0e263984c37d32bcf059b955e20b2c)

source4/script/gdb_backtrace

index bff70c389aa5c2e2f1c822dead21eb728ae0802a..0e593764ff516a010210f71c9fae3a53f2e957f2 100755 (executable)
@@ -1,33 +1,82 @@
 #!/bin/sh
 
+BASENAME=`basename $0`
+
 if [ -n "$VALGRIND" -o -n "$SMBD_VALGRIND" ]; then
-    echo "Not running gdb under valgrind"
-    exit 1
+       echo "${BASENAME}: Not running debugger under valgrind"
+       exit 1
 fi
 
 # we want everything on stderr, so the program is not disturbed
 exec 1>&2
 
+BASENAME=`basename $0`
+UNAME=`uname`
+
 PID=$1
-PROG=$2
+BINARY=$2
+
+test x"${PID}" = x"" && {
+       echo "Usage: ${BASENAME} <pid> [<binary>]"
+       exit 1
+}
+
+DB_LIST="gdb"
+case "${UNAME}" in
+       #
+       # on Tru64 we need to try ladebug first
+       # because gdb crashes itself...
+       #
+       OSF1)
+               DB_LIST="ladebug ${DB_LIST}"
+       ;;
+esac
+
+for DB in ${DB_LIST}; do
+       DB_BIN=`which ${DB} 2>/dev/null`
+       test x"${DB_BIN}" != x"" && {
+               break
+       }
+done
+
+test x"${DB_BIN}" = x"" && {
+       echo "${BASENAME}: ERROR: No debugger found."
+       exit 1
+}
+
+#
+# we first try to use /proc/${PID}/exe
+# then fallback to the binary from the commandline
+# then we search for the commandline argument with
+# 'which'
+#
+test -f "/proc/${PID}/exe" && BINARY="/proc/${PID}/exe"
+test x"${BINARY}" = x"" && BINARY="/proc/${PID}/exe"
+test -f "${BINARY}" || BINARY=`which ${BINARY}`
+
+test -f "${BINARY}" || {
+       echo "${BASENAME}: ERROR: Cannot find binary '${BINARY}'."
+       exit 1
+}
 
-TMPFILE=/tmp/gdb.$$
-cat << EOF  > $TMPFILE
+echo "${BASENAME}: Trying to use ${DB_BIN} on ${BINARY} on PID ${PID}"
+
+BATCHFILE=/tmp/gdb_backtrace.$$
+case "${DB}" in
+       ladebug)
+cat << EOF  > ${BATCHFILE}
+where
+quit
+EOF
+       ${DB_BIN} -c "${BATCHFILE}" -pid "${PID}" "${BINARY}"
+       ;;
+       gdb)
+cat << EOF  > ${BATCHFILE}
 set height 1000
 bt full
 quit
 EOF
-
-if [ ! -f $PROG ]; then
-    PROG=`which $PROG`
-fi
-if [ ! -f $PROG ]; then
-    PROG=/proc/$PID/exe
-fi
-if [ ! -f $PROG ]; then
-    echo "Unable to find binary"
-    exit 1
-fi
-
-gdb -batch -x $TMPFILE $PROG $PID < /dev/null 
-/bin/rm -f $TMPFILE
+       ${DB_BIN} -x "${BATCHFILE}" "${BINARY}" "${PID}"
+       ;;
+esac
+/bin/rm -f ${BATCHFILE}