ustd: fix opening mode of pidfile to support writing to fifos
[ust.git] / usttrace
... / ...
CommitLineData
1#!/bin/bash
2
3# usttrace by Pierre-Marc Fournier 2009
4# Distributed under the GPLv2.
5
6USTTRACE_DIR="$(dirname $0)"
7if [ -x "${USTTRACE_DIR}/ustd/ustd" ] ; then
8 # Use the not installed libraries instead
9 USTD="${USTTRACE_DIR}/ustd/ustd"
10 LIBINTERFORK_PATH="${USTTRACE_DIR}/libinterfork/.libs/libinterfork.so"
11 LIBMALLOCWRAP_PATH="${USTTRACE_DIR}/libmallocwrap/.libs/libmallocwrap.so"
12 LIBUST_PATH="${USTTRACE_DIR}/libust/.libs/libust.so"
13else
14 # Use the libraries that the dynamic link finds
15 USTD="ustd"
16 LIBINTERFORK_PATH="libinterfork.so"
17 LIBMALLOCWRAP_PATH="libmallocwrap.so"
18 LIBUST_PATH="libust.so"
19fi
20
21BASE_TRACE_DIR="${HOME}/.usttraces"
22
23function usage () {
24 echo "usage: $0 OPTIONS COMMAND" 2>/dev/stderr
25 echo "" 2>/dev/stderr
26 echo "Options:" 2>/dev/stderr
27 echo " -l Runtime link with UST library." 2>/dev/stderr
28 echo " (Needed only if program was not linked at compile time with libust.)" 2>/dev/stderr
29 echo " -L Add path to ust libraries to LD_LIBRARY_PATH." 2>/dev/stderr
30 echo " -m Instrument malloc calls." 2>/dev/stderr
31 echo " -f Also trace forked processes." 2>/dev/stderr
32 echo " -s Use system-wide daemon instead of creating one for this session." 2>/dev/stderr
33}
34
35function error() {
36 echo "$0: error: $1" 2>/dev/stderr
37}
38
39while getopts ":hlLmfs" options; do
40 case $options in
41 l) arg_preload_libust=1;;
42 L) arg_ld_std_ust=1;;
43 m) arg_preload_malloc=1;;
44 f) arg_preload_fork=1;;
45 s) arg_syswide_daemon=1;;
46 h) usage;
47 exit 0;;
48 \?) usage
49 exit 1;;
50 *) usage
51 exit 1;;
52 esac
53done
54shift $(($OPTIND - 1))
55
56if [ ! -x "$USTD" -a ! -x "$(which ustd 2>/dev/null)" ];
57then
58 error "specified path to ustd not executable ($USTD)"
59 exit 1
60fi
61
62# Prepare vars
63CMD=$*
64
65# Validate input
66if [ -z "$HOME" ];
67then
68 error "no home specified"
69fi
70
71if [ -z "$CMD" ];
72then
73 error "no command specified"
74 usage;
75 exit 1
76fi
77
78# Create directory for trace output
79DATESTRING="$(hostname)-$(date +%Y%m%d%H%M%S)"
80OUTDIR="$BASE_TRACE_DIR/$DATESTRING"
81mkdir -p "$OUTDIR"
82
83# Choose socket path
84SOCKPATH="/tmp/ust-sock-$$"
85
86if [ "$arg_syswide_daemon" != "1" ];
87then
88 pidfilepath="/tmp/usttrace-$USER-$(date +%Y%m%d%H%M%S%N)-ustd-pid"
89 mkfifo -m 0600 "$pidfilepath"
90 # Start daemon
91 $USTD --pidfile "$pidfilepath" -s "$SOCKPATH" -o "$OUTDIR" >"$OUTDIR/ustd.log" 2>&1 &
92 USTDPID="$(<$pidfilepath)"
93 export UST_DAEMON_SOCKET="$SOCKPATH"
94fi
95
96# Establish the environment for the command
97(
98 export UST_TRACE=1
99 export UST_AUTOPROBE=1
100
101 if [ "$arg_preload_libust" = "1" ];
102 then
103 if [ -n "${LIBUST_PATH%libust.so}" ] ; then
104 export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${LIBUST_PATH%libust.so}"
105 fi
106 export LD_PRELOAD="$LD_PRELOAD:$LIBUST_PATH"
107 fi
108
109 if [ "$arg_ld_std_ust" = "1" ];
110 then
111 if [ -n "$${LIBUST_PATH%libust.so}" ] ; then
112 export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${LIBUST_PATH%libust.so}"
113 fi
114 fi
115
116 if [ "$arg_preload_malloc" = "1" ];
117 then
118 export LD_PRELOAD="$LD_PRELOAD:$LIBMALLOCWRAP_PATH"
119 fi
120
121 if [ "$arg_preload_fork" = "1" ];
122 then
123 export LD_PRELOAD="$LD_PRELOAD:$LIBINTERFORK_PATH"
124 fi
125
126# Install a handler for SIGIO. This is the signal that will be sent by ustd to
127# the traced program to trigger the creation of its listener thread. However,
128# it is possible that the SIGIO will be sent after the shell fork, but before
129# the exec of the command. If this handler isn't there, bash might terminate
130# because of a unhandled signal.
131
132# Execute the command
133 $CMD 2>&1
134) | tee "$OUTDIR/app.log"
135
136## Because of the keepalive mechanism, we're sure that by the time
137## we get here, the daemon is connected to all the buffers that still exist.
138## Therefore we can politely ask it to die when it's done.
139
140if [ "$arg_syswide_daemon" != "1" ];
141then
142 # Tell the daemon to die
143 kill -SIGTERM "$USTDPID"
144
145 echo "Waiting for ustd to shutdown..."
146 wait "$USTDPID"
147
148 rm "$pidfilepath"
149fi
150
151echo "Trace was output in: " $OUTDIR
This page took 0.022316 seconds and 4 git commands to generate.