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 #ifndef lint 33 static const char rcsid[] = 34 "$FreeBSD$"; 35 #endif /* not lint */ 36 37 /* 38 * The main module for truss. Suprisingly simple, but, then, the other 39 * files handle the bulk of the work. And, of course, the kernel has to 40 * do a lot of the work :). 41 */ 42 43 #include <sys/param.h> 44 #include <sys/ioctl.h> 45 #include <sys/pioctl.h> 46 47 #include <err.h> 48 #include <errno.h> 49 #include <fcntl.h> 50 #include <signal.h> 51 #include <stdio.h> 52 #include <stdlib.h> 53 #include <string.h> 54 #include <time.h> 55 #include <unistd.h> 56 57 #include "truss.h" 58 #include "extern.h" 59 60 /* 61 * It's difficult to parameterize this because it must be 62 * accessible in a signal handler. 63 */ 64 65 int Procfd; 66 67 static __inline void 68 usage(void) 69 { 70 fprintf(stderr, "%s\n%s\n", 71 "usage: truss [-faedDS] [-o file] -p pid", 72 " truss [-faedDS] [-o file] command [args]"); 73 exit(1); 74 } 75 76 /* 77 * WARNING! "FreeBSD a.out" must be first, or set_etype will not 78 * work correctly. 79 */ 80 struct ex_types { 81 const char *type; 82 void (*enter_syscall)(struct trussinfo *, int); 83 int (*exit_syscall)(struct trussinfo *, int); 84 } ex_types[] = { 85 #ifdef __alpha__ 86 { "FreeBSD ELF", alpha_syscall_entry, alpha_syscall_exit }, 87 #endif 88 #ifdef __i386__ 89 { "FreeBSD a.out", i386_syscall_entry, i386_syscall_exit }, 90 { "FreeBSD ELF", i386_syscall_entry, i386_syscall_exit }, 91 { "FreeBSD ELF32", i386_syscall_entry, i386_syscall_exit }, 92 { "Linux ELF", i386_linux_syscall_entry, i386_linux_syscall_exit }, 93 #endif 94 #ifdef __sparc64__ 95 { "FreeBSD ELF64", sparc64_syscall_entry, sparc64_syscall_exit }, 96 #endif 97 { 0, 0, 0 }, 98 }; 99 100 /* 101 * Set the execution type. This is called after every exec, and when 102 * a process is first monitored. The procfs pseudo-file "etype" has 103 * the execution module type -- see /proc/curproc/etype for an example. 104 */ 105 106 static struct ex_types * 107 set_etype(struct trussinfo *trussinfo) { 108 struct ex_types *funcs; 109 char etype[24]; 110 char progt[32]; 111 int fd; 112 113 sprintf(etype, "/proc/%d/etype", trussinfo->pid); 114 if ((fd = open(etype, O_RDONLY)) == -1) { 115 strcpy(progt, "FreeBSD a.out"); 116 } else { 117 int len = read(fd, progt, sizeof(progt)); 118 progt[len-1] = '\0'; 119 close(fd); 120 } 121 122 for (funcs = ex_types; funcs->type; funcs++) 123 if (!strcmp(funcs->type, progt)) 124 break; 125 126 if (funcs->type == NULL) { 127 funcs = &ex_types[0]; 128 warn("Execution type %s is not supported -- using %s\n", 129 progt, funcs->type); 130 } 131 return funcs; 132 } 133 134 int 135 main(int ac, char **av) { 136 int c; 137 int i; 138 char **command; 139 struct procfs_status pfs; 140 struct ex_types *funcs; 141 int in_exec = 0; 142 char *fname = NULL; 143 int sigexit = 0; 144 struct trussinfo *trussinfo; 145 146 /* Initialize the trussinfo struct */ 147 trussinfo = (struct trussinfo *)malloc(sizeof(struct trussinfo)); 148 if (trussinfo == NULL) 149 errx(1, "malloc() failed"); 150 bzero(trussinfo, sizeof(struct trussinfo)); 151 trussinfo->outfile = stderr; 152 153 while ((c = getopt(ac, av, "p:o:faedDS")) != -1) { 154 switch (c) { 155 case 'p': /* specified pid */ 156 trussinfo->pid = atoi(optarg); 157 break; 158 case 'f': /* Follow fork()'s */ 159 trussinfo->flags |= FOLLOWFORKS; 160 break; 161 case 'a': /* Print execve() argument strings. */ 162 trussinfo->flags |= EXECVEARGS; 163 break; 164 case 'e': /* Print execve() environment strings. */ 165 trussinfo->flags |= EXECVEENVS; 166 break; 167 case 'd': /* Absolute timestamps */ 168 trussinfo->flags |= ABSOLUTETIMESTAMPS; 169 break; 170 case 'D': /* Relative timestamps */ 171 trussinfo->flags |= RELATIVETIMESTAMPS; 172 break; 173 case 'o': /* Specified output file */ 174 fname = optarg; 175 break; 176 case 'S': /* Don't trace signals */ 177 trussinfo->flags |= NOSIGS; 178 break; 179 default: 180 usage(); 181 } 182 } 183 184 ac -= optind; av += optind; 185 if ((trussinfo->pid == 0 && ac == 0) || (trussinfo->pid != 0 && ac != 0)) 186 usage(); 187 188 if (fname != NULL) { /* Use output file */ 189 if ((trussinfo->outfile = fopen(fname, "w")) == NULL) 190 errx(1, "cannot open %s", fname); 191 } 192 193 /* 194 * If truss starts the process itself, it will ignore some signals -- 195 * they should be passed off to the process, which may or may not 196 * exit. If, however, we are examining an already-running process, 197 * then we restore the event mask on these same signals. 198 */ 199 200 if (trussinfo->pid == 0) { /* Start a command ourselves */ 201 command = av; 202 trussinfo->pid = setup_and_wait(command); 203 signal(SIGINT, SIG_IGN); 204 signal(SIGTERM, SIG_IGN); 205 signal(SIGQUIT, SIG_IGN); 206 } else { 207 signal(SIGINT, restore_proc); 208 signal(SIGTERM, restore_proc); 209 signal(SIGQUIT, restore_proc); 210 } 211 212 213 /* 214 * At this point, if we started the process, it is stopped waiting to 215 * be woken up, either in exit() or in execve(). 216 */ 217 218 START_TRACE: 219 Procfd = start_tracing( 220 trussinfo->pid, S_EXEC | S_SCE | S_SCX | S_CORE | S_EXIT | 221 ((trussinfo->flags & NOSIGS) ? 0 : S_SIG), 222 ((trussinfo->flags & FOLLOWFORKS) ? PF_FORK : 0)); 223 if (Procfd == -1) 224 return 0; 225 226 pfs.why = 0; 227 228 funcs = set_etype(trussinfo); 229 /* 230 * At this point, it's a simple loop, waiting for the process to 231 * stop, finding out why, printing out why, and then continuing it. 232 * All of the grunt work is done in the support routines. 233 */ 234 235 clock_gettime(CLOCK_REALTIME, &trussinfo->start_time); 236 237 do { 238 int val = 0; 239 240 if (ioctl(Procfd, PIOCWAIT, &pfs) == -1) 241 warn("PIOCWAIT top of loop"); 242 else { 243 switch(i = pfs.why) { 244 case S_SCE: 245 funcs->enter_syscall(trussinfo, pfs.val); 246 clock_gettime(CLOCK_REALTIME, &trussinfo->before); 247 break; 248 case S_SCX: 249 clock_gettime(CLOCK_REALTIME, &trussinfo->after); 250 /* 251 * This is so we don't get two messages for an exec -- one 252 * for the S_EXEC, and one for the syscall exit. It also, 253 * conveniently, ensures that the first message printed out 254 * isn't the return-from-syscall used to create the process. 255 */ 256 257 if (in_exec) { 258 in_exec = 0; 259 break; 260 } 261 262 if (trussinfo->in_fork && (trussinfo->flags & FOLLOWFORKS)) { 263 int childpid; 264 265 trussinfo->in_fork = 0; 266 childpid = funcs->exit_syscall(trussinfo, pfs.val); 267 268 /* 269 * Fork a new copy of ourself to trace the child of the 270 * original traced process. 271 */ 272 if (fork() == 0) { 273 trussinfo->pid = childpid; 274 goto START_TRACE; 275 } 276 break; 277 } 278 funcs->exit_syscall(trussinfo, pfs.val); 279 break; 280 case S_SIG: 281 fprintf(trussinfo->outfile, "SIGNAL %lu\n", pfs.val); 282 sigexit = pfs.val; 283 break; 284 case S_EXIT: 285 fprintf (trussinfo->outfile, "process exit, rval = %lu\n", pfs.val); 286 break; 287 case S_EXEC: 288 funcs = set_etype(trussinfo); 289 in_exec = 1; 290 break; 291 default: 292 fprintf (trussinfo->outfile, "Process stopped because of: %d\n", i); 293 break; 294 } 295 } 296 if (ioctl(Procfd, PIOCCONT, val) == -1) { 297 if (kill(trussinfo->pid, 0) == -1 && errno == ESRCH) 298 break; 299 else 300 warn("PIOCCONT"); 301 } 302 } while (pfs.why != S_EXIT); 303 fflush(trussinfo->outfile); 304 if (sigexit) { 305 if (sigexit == SIGQUIT) 306 exit(sigexit); 307 (void) signal(sigexit, SIG_DFL); 308 (void) kill(getpid(), sigexit); 309 } 310 return 0; 311 } 312