NetBSD/usr.bin/ktrace/subr.c

119 lines
2.9 KiB
C
Raw Normal View History

/* $NetBSD: subr.c,v 1.18 2011/06/01 21:28:33 alnsn Exp $ */
1995-09-01 02:50:22 +04:00
1994-05-11 11:10:43 +04:00
/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
1994-05-11 11:10:43 +04:00
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
1994-05-11 11:10:43 +04:00
#ifndef lint
1995-09-01 02:50:22 +04:00
#if 0
static char sccsid[] = "@(#)subr.c 8.2 (Berkeley) 4/28/95";
#else
__RCSID("$NetBSD: subr.c,v 1.18 2011/06/01 21:28:33 alnsn Exp $");
1995-09-01 02:50:22 +04:00
#endif
1994-05-11 11:10:43 +04:00
#endif /* not lint */
#include <sys/param.h>
#include <sys/time.h>
#include <sys/uio.h>
1994-05-11 11:10:43 +04:00
#include <sys/ktrace.h>
1995-01-03 10:06:42 +03:00
1994-05-11 11:10:43 +04:00
#include <stdio.h>
1995-01-03 10:06:42 +03:00
1994-05-11 11:10:43 +04:00
#include "ktrace.h"
int
getpoints(int facs, char *s)
1994-05-11 11:10:43 +04:00
{
int fac;
int add = 1;
1994-05-11 11:10:43 +04:00
/* Make -t-x equivalent to -t+-x since that is rather more useful */
if (*s == '-' && (facs & ALL_POINTS) == 0)
facs |= DEF_POINTS;
for (;;) {
switch (*s++) {
case 0:
return facs;
case 'A':
fac = ALL_POINTS;
break;
case 'a':
fac = KTRFAC_EXEC_ARG;
break;
1994-05-11 11:10:43 +04:00
case 'c':
fac = KTRFAC_SYSCALL | KTRFAC_SYSRET;
1994-05-11 11:10:43 +04:00
break;
case 'e':
fac = KTRFAC_EMUL;
break;
case 'f':
fac = KTRFAC_EXEC_FD;
break;
case 'i':
fac = KTRFAC_GENIO;
break;
1994-05-11 11:10:43 +04:00
case 'n':
fac = KTRFAC_NAMEI;
1994-05-11 11:10:43 +04:00
break;
case 's':
fac = KTRFAC_PSIG;
1994-05-11 11:10:43 +04:00
break;
2000-12-17 19:09:40 +03:00
case 'u':
fac = KTRFAC_USER;
2000-12-17 19:09:40 +03:00
break;
case 'S':
fac = KTRFAC_MIB;
break;
case 'v':
fac = KTRFAC_EXEC_ENV;
break;
1994-05-11 11:10:43 +04:00
case 'w':
fac = KTRFAC_CSW;
1994-05-11 11:10:43 +04:00
break;
case '+':
if (!add) {
add = 1;
continue;
}
fac = DEF_POINTS;
1994-05-11 11:10:43 +04:00
break;
case '-':
add = 0;
continue;
1994-05-11 11:10:43 +04:00
default:
return (-1);
}
if (add)
facs |= fac;
else
facs &= ~fac;
1994-05-11 11:10:43 +04:00
}
}