Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.bin / ktrace / ktrace.c
1 /*-
2  * Copyright (c) 1988, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * @(#) Copyright (c) 1988, 1993 The Regents of the University of California.  All rights reserved.
34  * @(#)ktrace.c 8.1 (Berkeley) 6/6/93
35  * $FreeBSD: src/usr.bin/ktrace/ktrace.c,v 1.12.2.3 2001/07/11 00:29:27 mikeh Exp $
36  * $DragonFly: src/usr.bin/ktrace/ktrace.c,v 1.2 2003/06/17 04:29:27 dillon Exp $
37  */
38
39 #include <sys/param.h>
40 #include <sys/stat.h>
41 #include <sys/file.h>
42 #include <sys/time.h>
43 #include <sys/errno.h>
44 #include <sys/uio.h>
45 #include <sys/ktrace.h>
46
47 #include <err.h>
48 #include <stdio.h>
49 #include <unistd.h>
50
51 #include "ktrace.h"
52
53 void no_ktrace __P((int));
54 void usage __P((void));
55
56 main(argc, argv)
57         int argc;
58         char **argv;
59 {
60         enum { NOTSET, CLEAR, CLEARALL } clear;
61         int append, ch, fd, inherit, ops, pid, pidset, trpoints;
62         char *tracefile;
63         mode_t omask;
64         struct stat sb;
65
66         clear = NOTSET;
67         append = ops = pidset = inherit = 0;
68         trpoints = DEF_POINTS;
69         tracefile = DEF_TRACEFILE;
70         while ((ch = getopt(argc,argv,"aCcdf:g:ip:t:")) != -1)
71                 switch((char)ch) {
72                 case 'a':
73                         append = 1;
74                         break;
75                 case 'C':
76                         clear = CLEARALL;
77                         pidset = 1;
78                         break;
79                 case 'c':
80                         clear = CLEAR;
81                         break;
82                 case 'd':
83                         ops |= KTRFLAG_DESCEND;
84                         break;
85                 case 'f':
86                         tracefile = optarg;
87                         break;
88                 case 'g':
89                         pid = -rpid(optarg);
90                         pidset = 1;
91                         break;
92                 case 'i':
93                         inherit = 1;
94                         break;
95                 case 'p':
96                         pid = rpid(optarg);
97                         pidset = 1;
98                         break;
99                 case 't':
100                         trpoints = getpoints(optarg);
101                         if (trpoints < 0) {
102                                 warnx("unknown facility in %s", optarg);
103                                 usage();
104                         }
105                         break;
106                 default:
107                         usage();
108                 }
109         argv += optind;
110         argc -= optind;
111         
112         if (pidset && *argv || !pidset && !*argv)
113                 usage();
114                         
115         if (inherit)
116                 trpoints |= KTRFAC_INHERIT;
117
118         (void)signal(SIGSYS, no_ktrace);
119         if (clear != NOTSET) {
120                 if (clear == CLEARALL) {
121                         ops = KTROP_CLEAR | KTRFLAG_DESCEND;
122                         trpoints = ALL_POINTS;
123                         pid = 1;
124                 } else
125                         ops |= pidset ? KTROP_CLEAR : KTROP_CLEARFILE;
126
127                 if (ktrace(tracefile, ops, trpoints, pid) < 0)
128                         err(1, "%s", tracefile);
129                 exit(0);
130         }
131
132         omask = umask(S_IRWXG|S_IRWXO);
133         if (append) {
134                 if ((fd = open(tracefile, O_CREAT | O_WRONLY, DEFFILEMODE)) < 0)
135                         err(1, "%s", tracefile);
136                 if (fstat(fd, &sb) != 0 || sb.st_uid != getuid())
137                         errx(1, "Refuse to append to %s not owned by you.",
138                             tracefile);
139         } else {
140                 if (unlink(tracefile) == -1 && errno != ENOENT)
141                         err(1, "unlink %s", tracefile);
142                 if ((fd = open(tracefile, O_CREAT | O_EXCL | O_WRONLY,
143                     DEFFILEMODE)) < 0)
144                         err(1, "%s", tracefile);
145         }
146         (void)umask(omask);
147         (void)close(fd);
148
149         if (*argv) { 
150                 if (ktrace(tracefile, ops, trpoints, getpid()) < 0)
151                         err(1, "%s", tracefile);
152                 execvp(argv[0], &argv[0]);
153                 err(1, "exec of '%s' failed", argv[0]);
154         }
155         else if (ktrace(tracefile, ops, trpoints, pid) < 0)
156                 err(1, "%s", tracefile);
157         exit(0);
158 }
159
160 rpid(p)
161         char *p;
162 {
163         static int first;
164
165         if (first++) {
166                 warnx("only one -g or -p flag is permitted.");
167                 usage();
168         }
169         if (!*p) {
170                 warnx("illegal process id.");
171                 usage();
172         }
173         return(atoi(p));
174 }
175
176 void
177 usage()
178 {
179         (void)fprintf(stderr, "%s\n%s\n",
180 "usage: ktrace [-aCcdi] [-f trfile] [-g pgrp | -p pid] [-t cnisuw]",
181 "       ktrace [-adi] [-f trfile] [-t cnisuw] command");
182         exit(1);
183 }
184
185 void
186 no_ktrace(sig)
187         int sig;
188 {
189         (void)fprintf(stderr,
190 "error:\tktrace() system call not supported in the running kernel\n\tre-compile kernel with 'options KTRACE'\n");
191         exit(1);
192 }