Update.
[platform/upstream/glibc.git] / debug / catchsegv.sh
1 #! /bin/sh
2
3 # Copyright (C) 1998 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
5 # Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6
7 # The GNU C Library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Library General Public License as
9 # published by the Free Software Foundation; either version 2 of the
10 # License, or (at your option) any later version.
11
12 # The GNU C Library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Library General Public License for more details.
16
17 # You should have received a copy of the GNU Library General Public
18 # License along with the GNU C Library; see the file COPYING.LIB.  If not,
19 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
21
22 if test $# -eq 0; then
23   echo "$0: missing programm name" >&2
24   echo "Try \`$0 --help' for more information." >&2
25   exit 1
26 fi
27
28 prog="$1"
29 shift
30
31 if test $# -eq 0; then
32   case "$prog" in
33     --h | --he | --hel | --help)
34       echo 'Usage: catchsegv PROGRAM ARGS...'
35       echo '  --help      print this help, then exit'
36       echo '  --version   print version number, then exit'
37       echo "Report bugs using the \`glibcbug' script to <bugs@gnu.org>."
38       exit 0
39       ;;
40     --v | --ve | --ver | --vers | --versi | --versio | --version)
41       echo 'catchsegv (GNU libc) @VERSION@'
42       echo 'Copyright (C) 1998 Free Software Foundation, Inc.
43 This is free software; see the source for copying conditions.  There is NO
44 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
45 Written by Ulrich Drepper.'
46       exit 0
47       ;;
48     *)
49       ;;
50   esac
51 fi
52
53 segv_output=`basename "$prog"`.segv.$$
54
55 # Redirect stderr to avoid termination message from shell.
56 (exec 3>&2 2>/dev/null
57 LD_PRELOAD=${LD_PRELOAD:+${LD_PRELOAD}:}@SLIB@/libSegFault.so \
58 SEGFAULT_USE_ALTSTACK=1 \
59 SEGFAULT_OUTPUT_NAME=$segv_output \
60 "$prog" ${1+"$@"} 2>&3 3>&-)
61 exval=$?
62
63 # Check for signal termination.
64 if test $exval -gt 128 && test -f "$segv_output"; then
65   # The program caught a signal.  The output is in the file with the
66   # name we have in SEGFAULT_OUTPUT_NAME.  In the output the names of
67   # functions in shared objects are available, but names in the static
68   # part of the program are not.  We use addr2line to get this information.
69   case $prog in
70   */*) ;;
71   *)
72     old_IFS=$IFS
73     IFS=:
74     for p in $PATH; do
75       test -n "$p" || p=.
76       if test -f "$p/$prog"; then
77         prog=$p/$prog
78       break
79       fi
80     done
81     IFS=$old_IFS
82     ;;
83   esac
84   sed '/Backtrace/q' "$segv_output"
85   sed '1,/Backtrace/d' "$segv_output" |
86   (while read line; do
87      case "$line" in
88        [*) addr=`echo "$line" | sed 's/^\[\(.*\)\]$/\1/'`
89            complete=`addr2line -f -e "$prog" $addr 2>/dev/null`
90            if test $? -eq 0; then
91              echo "`echo "$complete"|sed 'N;s/\(.*\)\n\(.*\)/\2(\1)/;'`$line"
92            else
93              echo "$line"
94            fi
95            ;;
96         *) echo "$line"
97            ;;
98      esac
99    done)
100    rm -f "$segv_output"
101 fi
102
103 exit $exval