Make ktrace(1) build cleanly at WARNS level 6 by completely rethinking the

way in which it handles the -C, -c, -g and -p options.

MFC after:	3 weeks
This commit is contained in:
Dag-Erling Smørgrav 2011-10-18 08:26:12 +00:00
parent 16352ac84a
commit 99afdfe58d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226504
2 changed files with 73 additions and 40 deletions

View File

@ -5,6 +5,4 @@ PROG= ktrace
SRCS= ktrace.c subr.c SRCS= ktrace.c subr.c
MLINKS= ktrace.1 trace.1 MLINKS= ktrace.1 trace.1
WARNS?= 4
.include <bsd.prog.mk> .include <bsd.prog.mk>

View File

@ -43,14 +43,15 @@ static char sccsid[] = "@(#)ktrace.c 8.1 (Berkeley) 6/6/93";
__FBSDID("$FreeBSD$"); __FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/stat.h>
#include <sys/file.h> #include <sys/file.h>
#include <sys/stat.h>
#include <sys/time.h> #include <sys/time.h>
#include <sys/errno.h>
#include <sys/uio.h> #include <sys/uio.h>
#include <sys/ktrace.h> #include <sys/ktrace.h>
#include <err.h> #include <err.h>
#include <errno.h>
#include <inttypes.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
@ -59,21 +60,22 @@ __FBSDID("$FreeBSD$");
static char def_tracefile[] = DEF_TRACEFILE; static char def_tracefile[] = DEF_TRACEFILE;
static enum clear { NOTSET, CLEAR, CLEARALL } clear = NOTSET;
static int pid;
static void no_ktrace(int); static void no_ktrace(int);
static int rpid(char *); static void set_pid_clear(const char *, enum clear);
static void usage(void); static void usage(void);
int int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
enum { NOTSET, CLEAR, CLEARALL } clear; int append, ch, fd, inherit, ops, trpoints;
int append, ch, fd, inherit, ops, pid, pidset, trpoints;
const char *tracefile; const char *tracefile;
mode_t omask; mode_t omask;
struct stat sb; struct stat sb;
clear = NOTSET; append = ops = inherit = 0;
append = ops = pidset = inherit = 0;
trpoints = DEF_POINTS; trpoints = DEF_POINTS;
tracefile = def_tracefile; tracefile = def_tracefile;
while ((ch = getopt(argc,argv,"aCcdf:g:ip:t:")) != -1) while ((ch = getopt(argc,argv,"aCcdf:g:ip:t:")) != -1)
@ -82,11 +84,10 @@ main(int argc, char *argv[])
append = 1; append = 1;
break; break;
case 'C': case 'C':
clear = CLEARALL; set_pid_clear("1", CLEARALL);
pidset = 1;
break; break;
case 'c': case 'c':
clear = CLEAR; set_pid_clear(NULL, CLEAR);
break; break;
case 'd': case 'd':
ops |= KTRFLAG_DESCEND; ops |= KTRFLAG_DESCEND;
@ -95,15 +96,14 @@ main(int argc, char *argv[])
tracefile = optarg; tracefile = optarg;
break; break;
case 'g': case 'g':
pid = -rpid(optarg); set_pid_clear(optarg, NOTSET);
pidset = 1; pid = -pid;
break; break;
case 'i': case 'i':
inherit = 1; inherit = 1;
break; break;
case 'p': case 'p':
pid = rpid(optarg); set_pid_clear(optarg, NOTSET);
pidset = 1;
break; break;
case 't': case 't':
trpoints = getpoints(optarg); trpoints = getpoints(optarg);
@ -115,12 +115,19 @@ main(int argc, char *argv[])
default: default:
usage(); usage();
} }
argv += optind; argv += optind;
argc -= optind; argc -= optind;
if ((pidset && *argv) || (!pidset && clear == NOTSET && !*argv)) /* must have either -[Cc], a pid or a command */
if (clear == NOTSET && pid == 0 && argc == 0)
usage(); usage();
/* can't have both a pid and a command */
/* (note that -C sets pid to 1) */
if (pid != 0 && argc > 0) {
usage();
}
if (inherit) if (inherit)
trpoints |= KTRFAC_INHERIT; trpoints |= KTRFAC_INHERIT;
@ -129,10 +136,9 @@ main(int argc, char *argv[])
if (clear == CLEARALL) { if (clear == CLEARALL) {
ops = KTROP_CLEAR | KTRFLAG_DESCEND; ops = KTROP_CLEAR | KTRFLAG_DESCEND;
trpoints = ALL_POINTS; trpoints = ALL_POINTS;
pid = 1; } else {
} else ops |= pid ? KTROP_CLEAR : KTROP_CLEARFILE;
ops |= pidset ? KTROP_CLEAR : KTROP_CLEARFILE; }
if (ktrace(tracefile, ops, trpoints, pid) < 0) if (ktrace(tracefile, ops, trpoints, pid) < 0)
err(1, "%s", tracefile); err(1, "%s", tracefile);
exit(0); exit(0);
@ -160,46 +166,75 @@ main(int argc, char *argv[])
trpoints |= PROC_ABI_POINTS; trpoints |= PROC_ABI_POINTS;
if (*argv) { if (argc > 0) {
if (ktrace(tracefile, ops, trpoints, getpid()) < 0) if (ktrace(tracefile, ops, trpoints, getpid()) < 0)
err(1, "%s", tracefile); err(1, "%s", tracefile);
execvp(argv[0], &argv[0]); execvp(*argv, argv);
err(1, "exec of '%s' failed", argv[0]); err(1, "exec of '%s' failed", *argv);
} }
else if (ktrace(tracefile, ops, trpoints, pid) < 0) if (ktrace(tracefile, ops, trpoints, pid) < 0)
err(1, "%s", tracefile); err(1, "%s", tracefile);
exit(0); exit(0);
} }
static int static void
rpid(char *p) set_pid_clear(const char *p, enum clear cl)
{ {
static int first; intmax_t n;
char *e;
if (first++) { if (clear != NOTSET && cl != NOTSET) {
/* either -c and -C or either of them twice */
warnx("only one -c or -C flag is permitted");
usage();
}
if ((clear == CLEARALL && p != NULL) || (cl == CLEARALL && pid != 0)) {
/* both -C and a pid or pgid */
warnx("the -C flag may not be combined with -g or -p");
usage();
}
if (p != NULL && pid != 0) {
/* either -p and -g or either of them twice */
warnx("only one -g or -p flag is permitted"); warnx("only one -g or -p flag is permitted");
usage(); usage();
} }
if (!*p) { if (p != NULL) {
warnx("illegal process id"); errno = 0;
usage(); n = strtoimax(p, &e, 10);
/*
* 1) not a number, or outside the range of an intmax_t
* 2) inside the range of intmax_t but outside the range
* of an int, keeping in mind that the pid may be
* negated if it's actually a pgid.
*/
if (*e != '\0' || n < 1 || errno == ERANGE ||
n > (intmax_t)INT_MAX || n > -(intmax_t)INT_MIN) {
warnx("invalid process or group id");
usage();
}
pid = n;
} }
return(atoi(p)); if (cl != NOTSET)
if ((clear = cl) == CLEARALL)
pid = 1;
} }
static void static void
usage(void) usage(void)
{ {
(void)fprintf(stderr, "%s\n%s\n",
"usage: ktrace [-aCcdi] [-f trfile] [-g pgrp | -p pid] [-t trstr]", fprintf(stderr, "%s\n%s\n",
" ktrace [-adi] [-f trfile] [-t trstr] command"); "usage: ktrace [-aCcdi] [-f trfile] [-g pgrp | -p pid] [-t trstr]",
" ktrace [-adi] [-f trfile] [-t trstr] command");
exit(1); exit(1);
} }
static void static void
no_ktrace(int sig __unused) no_ktrace(int sig __unused)
{ {
(void)fprintf(stderr,
"error:\tktrace() system call not supported in the running kernel\n\tre-compile kernel with 'options KTRACE'\n"); fprintf(stderr, "error:\t%s\n\t%s\n",
"ktrace() system call not supported in the running kernel",
"re-compile kernel with 'options KTRACE'");
exit(1); exit(1);
} }