xref: /freebsd/usr.bin/truss/main.c (revision d37ea99837e6ad50837fd9fe1771ddf1c3ba6002)
1 /*
2  * Copryight 1997 Sean Eric Fagan
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  * 3. All advertising materials mentioning features or use of this software
13  *    must display the following acknowledgement:
14  *	This product includes software developed by Sean Eric Fagan
15  * 4. Neither the name of the author may be used to endorse or promote
16  *    products derived from this software without specific prior written
17  *    permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 
35 /*
36  * The main module for truss.  Suprisingly simple, but, then, the other
37  * files handle the bulk of the work.  And, of course, the kernel has to
38  * do a lot of the work :).
39  */
40 
41 #include <sys/param.h>
42 #include <sys/ioctl.h>
43 #include <sys/pioctl.h>
44 #include <sys/types.h>
45 #include <sys/time.h>
46 #include <sys/resource.h>
47 
48 #include <err.h>
49 #include <errno.h>
50 #include <fcntl.h>
51 #include <signal.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <time.h>
56 #include <unistd.h>
57 
58 #include "truss.h"
59 #include "extern.h"
60 
61 /*
62  * It's difficult to parameterize this because it must be
63  * accessible in a signal handler.
64  */
65 
66 int Procfd;
67 
68 static __inline void
69 usage(void)
70 {
71   fprintf(stderr, "%s\n%s\n",
72 	"usage: truss [-faedDS] [-o file] -p pid",
73 	"       truss [-faedDS] [-o file] command [args]");
74   exit(1);
75 }
76 
77 /*
78  * WARNING! "FreeBSD a.out" must be first, or set_etype will not
79  * work correctly.
80  */
81 struct ex_types {
82   const char *type;
83   void (*enter_syscall)(struct trussinfo *, int);
84   long (*exit_syscall)(struct trussinfo *, int);
85 } ex_types[] = {
86 #ifdef __alpha__
87   { "FreeBSD ELF", alpha_syscall_entry, alpha_syscall_exit },
88 #endif
89 #ifdef __amd64__
90   { "FreeBSD ELF64", amd64_syscall_entry, amd64_syscall_exit },
91 #endif
92 #ifdef __i386__
93   { "FreeBSD a.out", i386_syscall_entry, i386_syscall_exit },
94   { "FreeBSD ELF", i386_syscall_entry, i386_syscall_exit },
95   { "FreeBSD ELF32", i386_syscall_entry, i386_syscall_exit },
96   { "Linux ELF", i386_linux_syscall_entry, i386_linux_syscall_exit },
97 #endif
98 #ifdef __ia64__
99   { "FreeBSD ELF64", ia64_syscall_entry, ia64_syscall_exit },
100 #endif
101 #ifdef __sparc64__
102   { "FreeBSD ELF64", sparc64_syscall_entry, sparc64_syscall_exit },
103 #endif
104   { 0, 0, 0 },
105 };
106 
107 /*
108  * Set the execution type.  This is called after every exec, and when
109  * a process is first monitored.  The procfs pseudo-file "etype" has
110  * the execution module type -- see /proc/curproc/etype for an example.
111  */
112 
113 static struct ex_types *
114 set_etype(struct trussinfo *trussinfo) {
115   struct ex_types *funcs;
116   char etype[24];
117   char progt[32];
118   int fd;
119 
120   sprintf(etype, "/proc/%d/etype", trussinfo->pid);
121   if ((fd = open(etype, O_RDONLY)) == -1) {
122     strcpy(progt, "FreeBSD a.out");
123   } else {
124     int len = read(fd, progt, sizeof(progt));
125     progt[len-1] = '\0';
126     close(fd);
127   }
128 
129   for (funcs = ex_types; funcs->type; funcs++)
130     if (!strcmp(funcs->type, progt))
131       break;
132 
133   if (funcs->type == NULL) {
134     funcs = &ex_types[0];
135     warn("execution type %s is not supported -- using %s",
136       progt, funcs->type);
137   }
138   return funcs;
139 }
140 
141 int
142 main(int ac, char **av) {
143   int c;
144   int i;
145   char **command;
146   struct procfs_status pfs;
147   struct ex_types *funcs;
148   int in_exec = 0;
149   char *fname = NULL;
150   int sigexit = 0;
151   struct trussinfo *trussinfo;
152 
153   /* Initialize the trussinfo struct */
154   trussinfo = (struct trussinfo *)malloc(sizeof(struct trussinfo));
155   if (trussinfo == NULL)
156     errx(1, "malloc() failed");
157   bzero(trussinfo, sizeof(struct trussinfo));
158   trussinfo->outfile = stderr;
159 
160   while ((c = getopt(ac, av, "p:o:faedDS")) != -1) {
161     switch (c) {
162     case 'p':	/* specified pid */
163       trussinfo->pid = atoi(optarg);
164       break;
165     case 'f': /* Follow fork()'s */
166       trussinfo->flags |= FOLLOWFORKS;
167       break;
168     case 'a': /* Print execve() argument strings. */
169       trussinfo->flags |= EXECVEARGS;
170       break;
171     case 'e': /* Print execve() environment strings. */
172       trussinfo->flags |= EXECVEENVS;
173       break;
174     case 'd': /* Absolute timestamps */
175       trussinfo->flags |= ABSOLUTETIMESTAMPS;
176       break;
177     case 'D': /* Relative timestamps */
178       trussinfo->flags |= RELATIVETIMESTAMPS;
179       break;
180     case 'o':	/* Specified output file */
181       fname = optarg;
182       break;
183     case 'S':	/* Don't trace signals */
184       trussinfo->flags |= NOSIGS;
185       break;
186     default:
187       usage();
188     }
189   }
190 
191   ac -= optind; av += optind;
192   if ((trussinfo->pid == 0 && ac == 0) || (trussinfo->pid != 0 && ac != 0))
193     usage();
194 
195   if (fname != NULL) { /* Use output file */
196     if ((trussinfo->outfile = fopen(fname, "w")) == NULL)
197       errx(1, "cannot open %s", fname);
198   }
199 
200   /*
201    * If truss starts the process itself, it will ignore some signals --
202    * they should be passed off to the process, which may or may not
203    * exit.  If, however, we are examining an already-running process,
204    * then we restore the event mask on these same signals.
205    */
206 
207   if (trussinfo->pid == 0) {	/* Start a command ourselves */
208     command = av;
209     trussinfo->pid = setup_and_wait(command);
210     signal(SIGINT, SIG_IGN);
211     signal(SIGTERM, SIG_IGN);
212     signal(SIGQUIT, SIG_IGN);
213   } else {
214     signal(SIGINT, restore_proc);
215     signal(SIGTERM, restore_proc);
216     signal(SIGQUIT, restore_proc);
217   }
218 
219 
220   /*
221    * At this point, if we started the process, it is stopped waiting to
222    * be woken up, either in exit() or in execve().
223    */
224 
225 START_TRACE:
226   Procfd = start_tracing(
227 		trussinfo->pid, S_EXEC | S_SCE | S_SCX | S_CORE | S_EXIT |
228 		((trussinfo->flags & NOSIGS) ? 0 : S_SIG),
229 		((trussinfo->flags & FOLLOWFORKS) ? PF_FORK : 0));
230   if (Procfd == -1)
231     return 0;
232 
233   pfs.why = 0;
234 
235   funcs = set_etype(trussinfo);
236   /*
237    * At this point, it's a simple loop, waiting for the process to
238    * stop, finding out why, printing out why, and then continuing it.
239    * All of the grunt work is done in the support routines.
240    */
241 
242   clock_gettime(CLOCK_REALTIME, &trussinfo->start_time);
243 
244   do {
245     int val = 0;
246 
247     if (ioctl(Procfd, PIOCWAIT, &pfs) == -1)
248       warn("PIOCWAIT top of loop");
249     else {
250       switch(i = pfs.why) {
251       case S_SCE:
252 	funcs->enter_syscall(trussinfo, pfs.val);
253 	clock_gettime(CLOCK_REALTIME, &trussinfo->before);
254 	break;
255       case S_SCX:
256 	clock_gettime(CLOCK_REALTIME, &trussinfo->after);
257 	/*
258 	 * This is so we don't get two messages for an exec -- one
259 	 * for the S_EXEC, and one for the syscall exit.  It also,
260 	 * conveniently, ensures that the first message printed out
261 	 * isn't the return-from-syscall used to create the process.
262 	 */
263 
264 	if (in_exec) {
265 	  in_exec = 0;
266 	  break;
267 	}
268 
269 	if (trussinfo->in_fork && (trussinfo->flags & FOLLOWFORKS)) {
270 	  int childpid;
271 
272 	  trussinfo->in_fork = 0;
273 	  childpid = funcs->exit_syscall(trussinfo, pfs.val);
274 
275 	  /*
276 	   * Fork a new copy of ourself to trace the child of the
277 	   * original traced process.
278 	   */
279 	  if (fork() == 0) {
280 	    trussinfo->pid = childpid;
281 	    goto START_TRACE;
282 	  }
283 	  break;
284 	}
285 	funcs->exit_syscall(trussinfo, pfs.val);
286 	break;
287       case S_SIG:
288 	fprintf(trussinfo->outfile, "SIGNAL %lu\n", pfs.val);
289 	sigexit = pfs.val;
290 	break;
291       case S_EXIT:
292 	fprintf (trussinfo->outfile, "process exit, rval = %lu\n", pfs.val);
293 	break;
294       case S_EXEC:
295 	funcs = set_etype(trussinfo);
296 	in_exec = 1;
297 	break;
298       default:
299 	fprintf (trussinfo->outfile, "Process stopped because of:  %d\n", i);
300 	break;
301       }
302     }
303     if (ioctl(Procfd, PIOCCONT, val) == -1) {
304       if (kill(trussinfo->pid, 0) == -1 && errno == ESRCH)
305 	break;
306       else
307 	warn("PIOCCONT");
308     }
309   } while (pfs.why != S_EXIT);
310   fflush(trussinfo->outfile);
311   if (sigexit) {
312     struct rlimit rlp;
313 
314     rlp.rlim_cur = 0;
315     rlp.rlim_max = 0;
316     setrlimit(RLIMIT_CORE, &rlp);
317     (void) signal(sigexit, SIG_DFL);
318     (void) kill(getpid(), sigexit);
319   }
320   return 0;
321 }
322